diff --git a/.travis.yml b/.travis.yml index 972e75da2d..17203bb57f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,51 +1,15 @@ language: php php: - - 5.6 - - 7.0 - - 7.1 - 7.2 - - nightly - -#env: -# global: -# - DB=mysql -# matrix: -# - GLPIVER=9.1/bugfixes -# - GLPIVER=master + - 7.4 before_script: - composer self-update -# - git clone --depth=1 https://github.com/glpi-project/glpi -b $GLPIVER ../glpi && cd ../glpi -# - composer install --no-dev -# - mysql -u root -e 'create database glpitest;' -# - php tools/cliinstall.php --db=glpi-test --user=travis --tests -# - mv ../{LNAME} plugins/{LNAME} -# - cd plugins/{LNAME} - - composer install -o - + - composer install --optimize-autoloader --prefer-dist --no-interaction --no-progress --no-suggest script: - - vendor/bin/robo --no-interaction code:cs -# - mysql -u root -e 'select version();' -# - ./vendor/bin/atoum -bf tests/bootstrap.php -d tests/units/ - - -matrix: -# exclude: -# - php: 5.4 -# env: GLPIVER=master - allow_failures: - - php: nightly + - vendor/bin/robo --no-interaction code:cs --strict cache: directories: - $HOME/.composer/cache - -#notifications: -# irc: -# channels: -# - "irc.freenode.org#channel" -# on_success: change -# on_failure: always -# use_notice: true -# skip_join: true diff --git a/ajax/detail.php b/ajax/detail.php index dc319064e1..c5a8474799 100644 --- a/ajax/detail.php +++ b/ajax/detail.php @@ -54,13 +54,15 @@ "validate", ]; +$order_url = Plugin::getWebDir('order'); + foreach ($fields as $field) { $paramsaction['update'] = $field; Ajax::updateItem("show_$field", - $CFG_GLPI["root_doc"] . "/plugins/order/ajax/referencedetail.php", + "$order_url/ajax/referencedetail.php", $paramsaction, "dropdown_reference$rand"); Ajax::updateItemOnSelectEvent("dropdown_reference$rand", "show_$field", - $CFG_GLPI["root_doc"]."/plugins/order/ajax/referencedetail.php", + "$order_url/ajax/referencedetail.php", $paramsaction); } diff --git a/ajax/dropdownContact.php b/ajax/dropdownContact.php index 9c0de40fd1..8df5f6894c 100644 --- a/ajax/dropdownContact.php +++ b/ajax/dropdownContact.php @@ -77,7 +77,7 @@ if ($DB->numrows($result)) { $prev = -1; - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { if ($data["entities_id"] != $prev) { if ($prev > 0) { echo ""; diff --git a/ajax/dropdownReference.php b/ajax/dropdownReference.php index 27f09ff139..12bb782da1 100644 --- a/ajax/dropdownReference.php +++ b/ajax/dropdownReference.php @@ -48,7 +48,7 @@ $number = $DB->numrows($result); $values = [0 => Dropdown::EMPTY_VALUE]; if ($number) { - while ($data = $DB->fetch_assoc($result)) { + while ($data = $DB->fetchAssoc($result)) { $values[$data['id']] = $data['name']." - ".$data['reference_code']; } } diff --git a/ajax/dropdownSupplier.php b/ajax/dropdownSupplier.php index a5f175a3c8..f7008b0a52 100644 --- a/ajax/dropdownSupplier.php +++ b/ajax/dropdownSupplier.php @@ -49,7 +49,7 @@ $values = [0 => Dropdown::EMPTY_VALUE]; if ($number) { - while ($data = $DB->fetch_assoc($result)) { + while ($data = $DB->fetchAssoc($result)) { $values[$data['id']] = formatUserName('', '', $data['name'], $data['firstname']); } } diff --git a/ajax/referencetree.php b/ajax/referencetree.php index fd3498fd0f..6abccdf97b 100644 --- a/ajax/referencetree.php +++ b/ajax/referencetree.php @@ -38,7 +38,7 @@ Session::checkLoginUser(); if (!isset($_GET['target'])) { - $_GET['target'] = $CFG_GLPI['root_doc']."/plugins/order/front/reference.php"; + $_GET['target'] = Plugin::getWebDir('order')."/front/reference.php"; } PluginOrderReference::showSelector($_GET['target']); diff --git a/ajax/referencetreetypes.php b/ajax/referencetreetypes.php index b2e4faa575..4b55c99478 100644 --- a/ajax/referencetreetypes.php +++ b/ajax/referencetreetypes.php @@ -58,7 +58,7 @@ if ($DB->numrows($result)) { $pos = 0; - while ($row = $DB->fetch_array($result)) { + while ($row = $DB->fetchArray($result)) { $class = $row['itemtype']; $item = new $class(); $path['text'] = $item->getTypeName(); @@ -73,8 +73,8 @@ Dropdown::getDropdownName("glpi_entities", $entity)."&field[1]=80"; } - $path['href'] = $CFG_GLPI["root_doc"]. - "/plugins/order/front/$target?is_deleted=0&field[0]=3&searchtype[0]=equals&contains[0]=". + $path['href'] = Plugin::getWebDir('order'). + "/front/$target?is_deleted=0&field[0]=3&searchtype[0]=equals&contains[0]=". rawurlencode($class)."&$link&itemtype=PluginOrderReference&start=0"; // Check if node is a leaf or a folder. diff --git a/composer.json b/composer.json index 79779f9e42..92fc1bb621 100644 --- a/composer.json +++ b/composer.json @@ -1,14 +1,17 @@ { - "require-dev": { - "glpi-project/tools": "^0.1" - }, "require": { + "php": "^7.2", "masnathan/odtphp": "dev-teclib" }, + "require-dev": { + "glpi-project/tools": "^0.1" + }, "config": { + "optimize-autoloader": true, "platform": { - "php": "5.6" - } + "php": "7.2.0" + }, + "sort-packages": true }, "repositories": [ { diff --git a/composer.lock b/composer.lock index 81596d71a0..2817b6bbe0 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "49d66d688979ebbe1b75d312baa18d53", + "content-hash": "a91291239eda8ca133325a08094c24aa", "packages": [ { "name": "masnathan/odtphp", @@ -68,31 +68,31 @@ "packages-dev": [ { "name": "consolidation/annotated-command", - "version": "2.12.0", + "version": "4.1.1", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "512a2e54c98f3af377589de76c43b24652bcb789" + "reference": "efc58dc0f34a45539787c5190b41b5d2a50a08da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789", - "reference": "512a2e54c98f3af377589de76c43b24652bcb789", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/efc58dc0f34a45539787c5190b41b5d2a50a08da", + "reference": "efc58dc0f34a45539787c5190b41b5d2a50a08da", "shasum": "" }, "require": { - "consolidation/output-formatters": "^3.4", - "php": ">=5.4.5", - "psr/log": "^1", - "symfony/console": "^2.8|^3|^4", - "symfony/event-dispatcher": "^2.5|^3|^4", - "symfony/finder": "^2.5|^3|^4" + "consolidation/output-formatters": "^4.1.1", + "php": ">=7.1.3", + "psr/log": "^1|^2", + "symfony/console": "^4.4.8|^5", + "symfony/event-dispatcher": "^4.4.8|^5", + "symfony/finder": "^4.4.8|^5" }, "require-dev": { "g1a/composer-test-scenarios": "^3", - "php-coveralls/php-coveralls": "^1", + "php-coveralls/php-coveralls": "^2.2", "phpunit/phpunit": "^6", - "squizlabs/php_codesniffer": "^2.7" + "squizlabs/php_codesniffer": "^3" }, "type": "library", "extra": { @@ -106,42 +106,10 @@ "php": "7.1.3" } } - }, - "symfony2": { - "require": { - "symfony/console": "^2.8" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.36" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.4.8" - } - }, - "scenario-options": { - "create-lockfile": "false" - } - }, - "phpunit4": { - "require-dev": { - "phpunit/phpunit": "^4.8.36" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.4.8" - } - } } }, "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "4.x-dev" } }, "autoload": { @@ -160,7 +128,7 @@ } ], "description": "Initialize Symfony Console commands from annotated command class methods.", - "time": "2019-03-08T16:55:03+00:00" + "time": "2020-05-27T21:11:36+00:00" }, { "name": "consolidation/config", @@ -245,74 +213,45 @@ }, { "name": "consolidation/log", - "version": "1.1.1", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/consolidation/log.git", - "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a" + "reference": "ba0bf6af1fbd09ed4dc18fc2f27b12ceff487cbf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a", - "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a", + "url": "https://api.github.com/repos/consolidation/log/zipball/ba0bf6af1fbd09ed4dc18fc2f27b12ceff487cbf", + "reference": "ba0bf6af1fbd09ed4dc18fc2f27b12ceff487cbf", "shasum": "" }, "require": { - "php": ">=5.4.5", + "php": ">=7.1.3", "psr/log": "^1.0", - "symfony/console": "^2.8|^3|^4" + "symfony/console": "^4|^5" }, "require-dev": { "g1a/composer-test-scenarios": "^3", - "php-coveralls/php-coveralls": "^1", + "php-coveralls/php-coveralls": "^2.2", "phpunit/phpunit": "^6", - "squizlabs/php_codesniffer": "^2" + "squizlabs/php_codesniffer": "^3" }, "type": "library", "extra": { "scenarios": { "symfony4": { - "require": { - "symfony/console": "^4.0" - }, - "config": { - "platform": { - "php": "7.1.3" - } - } - }, - "symfony2": { - "require": { - "symfony/console": "^2.8" - }, "require-dev": { - "phpunit/phpunit": "^4.8.36" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.4.8" - } - } - }, - "phpunit4": { - "require-dev": { - "phpunit/phpunit": "^4.8.36" + "symfony/console": "^4" }, - "remove": [ - "php-coveralls/php-coveralls" - ], "config": { "platform": { - "php": "5.4.8" + "php": "7.1.3" } } } }, "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { @@ -331,35 +270,35 @@ } ], "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.", - "time": "2019-01-01T17:30:51+00:00" + "time": "2020-05-27T17:06:13+00:00" }, { "name": "consolidation/output-formatters", - "version": "3.5.0", + "version": "4.1.1", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "99ec998ffb697e0eada5aacf81feebfb13023605" + "reference": "9deeddd6a916d0a756b216a8b40ce1016e17c0b9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605", - "reference": "99ec998ffb697e0eada5aacf81feebfb13023605", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/9deeddd6a916d0a756b216a8b40ce1016e17c0b9", + "reference": "9deeddd6a916d0a756b216a8b40ce1016e17c0b9", "shasum": "" }, "require": { "dflydev/dot-access-data": "^1.1.0", - "php": ">=5.4.0", - "symfony/console": "^2.8|^3|^4", - "symfony/finder": "^2.5|^3|^4" + "php": ">=7.1.3", + "symfony/console": "^4|^5", + "symfony/finder": "^4|^5" }, "require-dev": { "g1a/composer-test-scenarios": "^3", - "php-coveralls/php-coveralls": "^1", - "phpunit/phpunit": "^5.7.27", - "squizlabs/php_codesniffer": "^2.7", - "symfony/var-dumper": "^2.8|^3|^4", - "victorjonsson/markdowndocs": "^1.3" + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^6", + "squizlabs/php_codesniffer": "^3", + "symfony/var-dumper": "^4", + "symfony/yaml": "^4" }, "suggest": { "symfony/var-dumper": "For using the var_dump formatter" @@ -371,49 +310,15 @@ "require": { "symfony/console": "^4.0" }, - "require-dev": { - "phpunit/phpunit": "^6" - }, "config": { "platform": { "php": "7.1.3" } } - }, - "symfony3": { - "require": { - "symfony/console": "^3.4", - "symfony/finder": "^3.4", - "symfony/var-dumper": "^3.4" - }, - "config": { - "platform": { - "php": "5.6.32" - } - } - }, - "symfony2": { - "require": { - "symfony/console": "^2.8" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.36" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.4.8" - } - }, - "scenario-options": { - "create-lockfile": "false" - } } }, "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "4.x-dev" } }, "autoload": { @@ -432,30 +337,30 @@ } ], "description": "Format text by applying transformations provided by plug-in formatters.", - "time": "2019-05-30T23:16:01+00:00" + "time": "2020-05-27T20:51:17+00:00" }, { "name": "consolidation/robo", - "version": "1.4.11", + "version": "1.4.12", "source": { "type": "git", "url": "https://github.com/consolidation/Robo.git", - "reference": "5fa1d901776a628167a325baa9db95d8edf13a80" + "reference": "eb45606f498b3426b9a98b7c85e300666a968e51" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/Robo/zipball/5fa1d901776a628167a325baa9db95d8edf13a80", - "reference": "5fa1d901776a628167a325baa9db95d8edf13a80", + "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51", + "reference": "eb45606f498b3426b9a98b7c85e300666a968e51", "shasum": "" }, "require": { - "consolidation/annotated-command": "^2.11.0", - "consolidation/config": "^1.2", - "consolidation/log": "~1", - "consolidation/output-formatters": "^3.1.13", - "consolidation/self-update": "^1", - "grasmash/yaml-expander": "^1.3", - "league/container": "^2.2", + "consolidation/annotated-command": "^2.11.0|^4.1", + "consolidation/config": "^1.2.1", + "consolidation/log": "^1.1.1|^2", + "consolidation/output-formatters": "^3.1.13|^4.1", + "consolidation/self-update": "^1.1.5", + "grasmash/yaml-expander": "^1.4", + "league/container": "^2.4.1", "php": ">=5.5.0", "symfony/console": "^2.8|^3|^4", "symfony/event-dispatcher": "^2.5|^3|^4", @@ -467,20 +372,13 @@ "codegyre/robo": "< 1.0" }, "require-dev": { - "codeception/aspect-mock": "^1|^2.1.1", - "codeception/base": "^2.3.7", - "codeception/verify": "^0.3.2", "g1a/composer-test-scenarios": "^3", - "goaop/framework": "~2.1.2", - "goaop/parser-reflection": "^1.1.0", "natxet/cssmin": "3.0.4", - "nikic/php-parser": "^3.1.5", - "patchwork/jsqueeze": "~2", + "patchwork/jsqueeze": "^2", "pear/archive_tar": "^1.4.4", "php-coveralls/php-coveralls": "^1", - "phpunit/php-code-coverage": "~2|~4", - "sebastian/comparator": "^1.2.4", - "squizlabs/php_codesniffer": "^2.8" + "phpunit/phpunit": "^5.7.27", + "squizlabs/php_codesniffer": "^3" }, "suggest": { "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch", @@ -508,8 +406,11 @@ "require": { "symfony/console": "^2.8" }, + "require-dev": { + "phpunit/phpunit": "^4.8.36" + }, "remove": [ - "goaop/framework" + "php-coveralls/php-coveralls" ], "config": { "platform": { @@ -522,7 +423,7 @@ } }, "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -541,26 +442,26 @@ } ], "description": "Modern task runner", - "time": "2019-10-29T15:50:02+00:00" + "time": "2020-02-18T17:31:26+00:00" }, { "name": "consolidation/self-update", - "version": "1.1.5", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/consolidation/self-update.git", - "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54" + "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54", - "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54", + "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4", + "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4", "shasum": "" }, "require": { "php": ">=5.5.0", - "symfony/console": "^2.8|^3|^4", - "symfony/filesystem": "^2.5|^3|^4" + "symfony/console": "^2.8|^3|^4|^5", + "symfony/filesystem": "^2.5|^3|^4|^5" }, "bin": [ "scripts/release" @@ -581,17 +482,17 @@ "MIT" ], "authors": [ - { - "name": "Greg Anderson", - "email": "greg.1.anderson@greenknowe.org" - }, { "name": "Alexander Menk", "email": "menk@mestrona.net" + }, + { + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" } ], "description": "Provides a self:update command for Symfony Console applications.", - "time": "2018-10-28T01:52:03+00:00" + "time": "2020-04-13T02:49:20+00:00" }, { "name": "container-interop/container-interop", @@ -722,16 +623,16 @@ }, { "name": "glpi-project/tools", - "version": "0.1.8", + "version": "0.1.13", "source": { "type": "git", "url": "https://github.com/glpi-project/tools.git", - "reference": "39ca503a00454e6c5d7d97bd8baff358d262a897" + "reference": "2028ecf9acd8b838cff37771dcab77ced9391f41" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/glpi-project/tools/zipball/39ca503a00454e6c5d7d97bd8baff358d262a897", - "reference": "39ca503a00454e6c5d7d97bd8baff358d262a897", + "url": "https://api.github.com/repos/glpi-project/tools/zipball/2028ecf9acd8b838cff37771dcab77ced9391f41", + "reference": "2028ecf9acd8b838cff37771dcab77ced9391f41", "shasum": "" }, "require": { @@ -768,7 +669,7 @@ "plugins", "tools" ], - "time": "2019-06-07T09:46:17+00:00" + "time": "2020-06-19T10:29:26+00:00" }, { "name": "grasmash/expander", @@ -1070,16 +971,16 @@ }, { "name": "psr/log", - "version": "1.1.2", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801" + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801", - "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801", + "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", "shasum": "" }, "require": { @@ -1113,20 +1014,20 @@ "psr", "psr-3" ], - "time": "2019-11-01T11:05:21+00:00" + "time": "2020-03-23T09:12:05+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.5.4", + "version": "3.5.5", "source": { "type": "git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "dceec07328401de6211037abbb18bda423677e26" + "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dceec07328401de6211037abbb18bda423677e26", - "reference": "dceec07328401de6211037abbb18bda423677e26", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/73e2e7f57d958e7228fce50dc0c61f58f017f9f6", + "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6", "shasum": "" }, "require": { @@ -1164,29 +1065,33 @@ "phpcs", "standards" ], - "time": "2020-01-30T22:20:29+00:00" + "time": "2020-04-17T01:09:41+00:00" }, { "name": "symfony/console", - "version": "v3.4.37", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "7c5bdd346f9d90a2d22d4e1fe61e02dc19b98f12" + "reference": "326b064d804043005526f5a0494cfb49edb59bb0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/7c5bdd346f9d90a2d22d4e1fe61e02dc19b98f12", - "reference": "7c5bdd346f9d90a2d22d4e1fe61e02dc19b98f12", + "url": "https://api.github.com/repos/symfony/console/zipball/326b064d804043005526f5a0494cfb49edb59bb0", + "reference": "326b064d804043005526f5a0494cfb49edb59bb0", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/debug": "~2.8|~3.0|~4.0", - "symfony/polyfill-mbstring": "~1.0" + "php": ">=7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php73": "^1.8", + "symfony/polyfill-php80": "^1.15", + "symfony/service-contracts": "^1.1|^2" }, "conflict": { "symfony/dependency-injection": "<3.4", + "symfony/event-dispatcher": "<4.3|>=5", + "symfony/lock": "<4.4", "symfony/process": "<3.3" }, "provide": { @@ -1194,11 +1099,12 @@ }, "require-dev": { "psr/log": "~1.0", - "symfony/config": "~3.3|~4.0", - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/event-dispatcher": "~2.8|~3.0|~4.0", - "symfony/lock": "~3.4|~4.0", - "symfony/process": "~3.3|~4.0" + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/event-dispatcher": "^4.3", + "symfony/lock": "^4.4|^5.0", + "symfony/process": "^3.4|^4.0|^5.0", + "symfony/var-dumper": "^4.3|^5.0" }, "suggest": { "psr/log": "For using the console logger", @@ -1209,7 +1115,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -1236,41 +1142,69 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2020-01-10T07:52:48+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-05-30T20:06:45+00:00" }, { - "name": "symfony/debug", - "version": "v3.4.37", + "name": "symfony/event-dispatcher", + "version": "v4.4.10", "source": { "type": "git", - "url": "https://github.com/symfony/debug.git", - "reference": "70dd18e93bb8bdf3c4db7fde832619fef9828cf8" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "a5370aaa7807c7a439b21386661ffccf3dff2866" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/70dd18e93bb8bdf3c4db7fde832619fef9828cf8", - "reference": "70dd18e93bb8bdf3c4db7fde832619fef9828cf8", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a5370aaa7807c7a439b21386661ffccf3dff2866", + "reference": "a5370aaa7807c7a439b21386661ffccf3dff2866", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "psr/log": "~1.0" + "php": ">=7.1.3", + "symfony/event-dispatcher-contracts": "^1.1" }, "conflict": { - "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" + "symfony/dependency-injection": "<3.4" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "1.1" }, "require-dev": { - "symfony/http-kernel": "~2.8|~3.0|~4.0" + "psr/log": "~1.0", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/expression-language": "^3.4|^4.0|^5.0", + "symfony/http-foundation": "^3.4|^4.0|^5.0", + "symfony/service-contracts": "^1.1|^2", + "symfony/stopwatch": "^3.4|^4.0|^5.0" + }, + "suggest": { + "symfony/dependency-injection": "", + "symfony/http-kernel": "" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Debug\\": "" + "Symfony\\Component\\EventDispatcher\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -1290,54 +1224,55 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Debug Component", + "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2020-01-08T16:36:15+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-05-20T08:37:50+00:00" }, { - "name": "symfony/event-dispatcher", - "version": "v3.4.37", + "name": "symfony/event-dispatcher-contracts", + "version": "v1.1.7", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "79ede8f2836e5ec910ebb325bde40f987244baa8" + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/79ede8f2836e5ec910ebb325bde40f987244baa8", - "reference": "79ede8f2836e5ec910ebb325bde40f987244baa8", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18", + "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" - }, - "conflict": { - "symfony/dependency-injection": "<3.3" - }, - "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~2.8|~3.0|~4.0", - "symfony/dependency-injection": "~3.3|~4.0", - "symfony/expression-language": "~2.8|~3.0|~4.0", - "symfony/stopwatch": "~2.8|~3.0|~4.0" + "php": "^7.1.3" }, "suggest": { - "symfony/dependency-injection": "", - "symfony/http-kernel": "" + "psr/event-dispatcher": "", + "symfony/event-dispatcher-implementation": "" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "1.1-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Symfony\\Contracts\\EventDispatcher\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -1345,40 +1280,48 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony EventDispatcher Component", + "description": "Generic abstractions related to dispatching event", "homepage": "https://symfony.com", - "time": "2020-01-04T12:05:51+00:00" + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "time": "2019-09-17T09:54:03+00:00" }, { "name": "symfony/filesystem", - "version": "v3.4.37", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "0a0d3b4bda11aa3a0464531c40e681e184e75628" + "reference": "b27f491309db5757816db672b256ea2e03677d30" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/0a0d3b4bda11aa3a0464531c40e681e184e75628", - "reference": "0a0d3b4bda11aa3a0464531c40e681e184e75628", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30", + "reference": "b27f491309db5757816db672b256ea2e03677d30", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", + "php": ">=7.1.3", "symfony/polyfill-ctype": "~1.8" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -1405,29 +1348,43 @@ ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", - "time": "2020-01-17T08:50:08+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-05-30T18:50:54+00:00" }, { "name": "symfony/finder", - "version": "v3.4.37", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "a90a9d3b9f458a5cdeabfa4090b20c000ca3962f" + "reference": "5729f943f9854c5781984ed4907bbb817735776b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/a90a9d3b9f458a5cdeabfa4090b20c000ca3962f", - "reference": "a90a9d3b9f458a5cdeabfa4090b20c000ca3962f", + "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b", + "reference": "5729f943f9854c5781984ed4907bbb817735776b", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": "^7.1.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -1454,20 +1411,34 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2020-01-01T11:03:25+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-03-27T16:54:36+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.13.1", + "version": "v1.17.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "f8f0b461be3385e56d6de3dbb5a0df24c0c275e3" + "reference": "2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f8f0b461be3385e56d6de3dbb5a0df24c0c275e3", - "reference": "f8f0b461be3385e56d6de3dbb5a0df24c0c275e3", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d", + "reference": "2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d", "shasum": "" }, "require": { @@ -1479,7 +1450,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.13-dev" + "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -1512,20 +1487,34 @@ "polyfill", "portable" ], - "time": "2019-11-27T13:56:44+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-06-06T08:46:27+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.13.1", + "version": "v1.17.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f" + "reference": "7110338d81ce1cbc3e273136e4574663627037a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7b4aab9743c30be783b73de055d24a39cf4b954f", - "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7110338d81ce1cbc3e273136e4574663627037a7", + "reference": "7110338d81ce1cbc3e273136e4574663627037a7", "shasum": "" }, "require": { @@ -1537,7 +1526,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.13-dev" + "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -1571,29 +1564,199 @@ "portable", "shim" ], - "time": "2019-11-27T14:18:11+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-06-06T08:46:27+00:00" + }, + { + "name": "symfony/polyfill-php73", + "version": "v1.17.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php73.git", + "reference": "fa0837fe02d617d31fbb25f990655861bb27bd1a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fa0837fe02d617d31fbb25f990655861bb27bd1a", + "reference": "fa0837fe02d617d31fbb25f990655861bb27bd1a", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php73\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-06-06T08:46:27+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.17.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4a5b6bba3259902e386eb80dd1956181ee90b5b2", + "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2", + "shasum": "" + }, + "require": { + "php": ">=7.0.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-06-06T08:46:27+00:00" }, { "name": "symfony/process", - "version": "v3.4.37", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "5b9d2bcffe4678911a4c941c00b7c161252cf09a" + "reference": "c714958428a85c86ab97e3a0c96db4c4f381b7f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/5b9d2bcffe4678911a4c941c00b7c161252cf09a", - "reference": "5b9d2bcffe4678911a4c941c00b7c161252cf09a", + "url": "https://api.github.com/repos/symfony/process/zipball/c714958428a85c86ab97e3a0c96db4c4f381b7f5", + "reference": "c714958428a85c86ab97e3a0c96db4c4f381b7f5", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": "^7.1.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -1620,31 +1783,103 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2020-01-01T11:03:25+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-05-30T20:06:45+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v1.1.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "ffc7f5692092df31515df2a5ecf3b7302b3ddacf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/ffc7f5692092df31515df2a5ecf3b7302b3ddacf", + "reference": "ffc7f5692092df31515df2a5ecf3b7302b3ddacf", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "psr/container": "^1.0" + }, + "suggest": { + "symfony/service-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "time": "2019-10-14T12:27:06+00:00" }, { "name": "symfony/yaml", - "version": "v3.4.37", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "aa46bc2233097d5212332c907f9911533acfbf80" + "reference": "c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/aa46bc2233097d5212332c907f9911533acfbf80", - "reference": "aa46bc2233097d5212332c907f9911533acfbf80", + "url": "https://api.github.com/repos/symfony/yaml/zipball/c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a", + "reference": "c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", + "php": ">=7.1.3", "symfony/polyfill-ctype": "~1.8" }, "conflict": { "symfony/console": "<3.4" }, "require-dev": { - "symfony/console": "~3.4|~4.0" + "symfony/console": "^3.4|^4.0|^5.0" }, "suggest": { "symfony/console": "For validating YAML files using the lint command" @@ -1652,7 +1887,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -1679,7 +1914,21 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2020-01-13T08:00:59+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-05-20T08:37:50+00:00" } ], "aliases": [], @@ -1689,9 +1938,12 @@ }, "prefer-stable": false, "prefer-lowest": false, - "platform": [], + "platform": { + "php": "^7.2" + }, "platform-dev": [], "platform-overrides": { - "php": "5.6" - } + "php": "7.2.0" + }, + "plugin-api-version": "1.1.0" } diff --git a/front/order.form.php b/front/order.form.php index 8a2352ed9d..3ef01cf3fa 100644 --- a/front/order.form.php +++ b/front/order.form.php @@ -339,7 +339,7 @@ $_POST['old_price_taxfree'], $_POST['old_discount'] ); - while ($item = $DB->fetch_array($datas)) { + while ($item = $DB->fetchArray($datas)) { $input = [ 'item_id' => $item['id'], 'plugin_order_analyticnatures_id' => $_POST['plugin_order_analyticnatures_id'], @@ -353,7 +353,7 @@ $_POST['old_plugin_order_references_id'], $_POST['old_price_taxfree'], $_POST['old_discount']); - while ($item = $DB->fetch_array($data)) { + while ($item = $DB->fetchArray($data)) { $pluginOrderOrder_Item->updatePrice_taxfree([ 'item_id' => $item['id'], 'price_taxfree' => $_POST['price_taxfree'], @@ -372,7 +372,7 @@ $_POST['old_plugin_order_references_id'], $price, $_POST['old_discount']); - while ($item = $DB->fetch_array($data)) { + while ($item = $DB->fetchArray($data)) { $pluginOrderOrder_Item->updateDiscount([ 'item_id' => $item['id'], 'discount' => $_POST['discount'], diff --git a/generate/custom.php.example b/generate/custom.php.example index 59d5de2763..9289c0609a 100644 --- a/generate/custom.php.example +++ b/generate/custom.php.example @@ -107,7 +107,7 @@ function plugin_order_getCustomFieldsForODT($ID, $odttemplates_id, $odf, $signat $listeArticles = []; $result = $PluginOrderOrder_Item->queryDetail($ID); $num = $DB->numrows($result); - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { $quantity = $PluginOrderOrder_Item->getTotalQuantityByRefAndDiscount($ID, $data["id"], $data["price_taxfree"], $data["discount"]); diff --git a/hook.php b/hook.php index 240accaa11..ddfa832aee 100644 --- a/hook.php +++ b/hook.php @@ -34,7 +34,7 @@ * @return boolean */ function plugin_order_install() { - foreach (glob(GLPI_ROOT . '/plugins/order/inc/*.php') as $file) { + foreach (glob(PLUGIN_ORDER_DIR . '/inc/*.php') as $file) { //Do not load datainjection files (not needed and avoid missing class error message) if (!preg_match('/injection.class.php/', $file)) { include_once ($file); @@ -62,7 +62,7 @@ function plugin_order_install() { foreach ($classes as $class) { if ($plug = isPluginItemType($class)) { $plugname = strtolower($plug['plugin']); - $dir = GLPI_ROOT."/plugins/$plugname/inc/"; + $dir = Plugin::getPhpDir($plugname)."/inc/"; $item = strtolower($plug['class']); if (file_exists("$dir$item.class.php")) { include_once ("$dir$item.class.php"); @@ -87,10 +87,9 @@ function plugin_order_install() { @mkdir($new_directory, 0755, true) or die(sprintf(__('%1$s %2$s'), __("Can't create folder", 'order'), $new_directory)); - $base_directory = GLPI_ROOT.'/plugins/order/'; //Copy files from the old directories to the new ones - foreach (glob($base_directory.$old_directory.'/*') as $file) { - $new_file = str_replace($base_directory.$old_directory, $new_directory, $file); + foreach (glob(PLUGIN_ORDER_DIR."/$old_directory/*") as $file) { + $new_file = str_replace(PLUGIN_ORDER_DIR."/$old_directory", $new_directory, $file); if (!file_exists($new_directory.$file)) { copy($file, $new_file) or die (sprintf(__('Cannot copy file %1$s to %2$s', 'order'), @@ -109,7 +108,7 @@ function plugin_order_install() { * @return boolean */ function plugin_order_uninstall() { - foreach (glob(GLPI_ROOT.'/plugins/order/inc/*.php') as $file) { + foreach (glob(PLUGIN_ORDER_DIR.'/inc/*.php') as $file) { //Do not load datainjection files (not needed and avoid missing class error message) if (!preg_match('/injection.class.php/', $file)) { include_once ($file); @@ -311,7 +310,7 @@ function plugin_order_giveItem($type, $ID, $data, $num) { /* display associated items with order */ case "glpi_plugin_order_references.types_id" : if ($itemtype == 'PluginOrderOther') { - $file = GLPI_ROOT."/plugins/order/inc/othertype.class.php"; + $file = PLUGIN_ORDER_DIR."/inc/othertype.class.php"; } else { $file = GLPI_ROOT."/inc/".strtolower($itemtype)."type.class.php"; } diff --git a/inc/bill.class.php b/inc/bill.class.php index 489a4eab07..235c11ef6d 100644 --- a/inc/bill.class.php +++ b/inc/bill.class.php @@ -278,7 +278,7 @@ public static function showItems(PluginOrderBill $bill) { $old_itemtype = ''; $num = 0; - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { if (!class_exists($data['itemtype'])) { continue; } @@ -343,14 +343,14 @@ public static function showOrdersItems(PluginOrderBill $bill) { $query_ref = $bill->queryRef($order->getID(), 'glpi_plugin_order_references'); $result_ref = $DB->query($query_ref); - while ($data_ref = $DB->fetch_array($result_ref)) { + while ($data_ref = $DB->fetchArray($result_ref)) { self::showOrder($data_ref, $result_ref, $canedit, $order, $reference, 'glpi_plugin_order_references'); } $query_reffree = $bill->queryRef($order->getID(), 'glpi_plugin_order_referencefrees'); $result_reffree = $DB->query($query_reffree); - while ($data_reffree = $DB->fetch_array($result_reffree)) { + while ($data_reffree = $DB->fetchArray($result_reffree)) { self::showOrder($data_reffree, $result_reffree, $canedit, $order, $reference, 'glpi_plugin_order_referencefrees'); } echo "
"; @@ -411,7 +411,7 @@ public static function showOrder($data_ref, $result_ref, $canedit, $order, $refe echo ""; $results = $order_item->queryBills($order->getID(), $data_ref['id'], $table); - while ($data = $DB->fetch_array($results)) { + while ($data = $DB->fetchArray($results)) { echo ""; if ($canedit) { echo ""; @@ -517,8 +517,8 @@ public static function install(Migration $migration) { `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT '', `number` varchar(255) COLLATE utf8_unicode_ci DEFAULT '', - `billdate` datetime DEFAULT NULL, - `validationdate` datetime DEFAULT NULL, + `billdate` timestamp NULL DEFAULT NULL, + `validationdate` timestamp NULL DEFAULT NULL, `comment` text COLLATE utf8_unicode_ci, `plugin_order_billstates_id` int(11) NOT NULL DEFAULT '0', `value` decimal(20,6) NOT NULL DEFAULT '0.000000', @@ -537,7 +537,7 @@ public static function install(Migration $migration) { //Migrate bills $bill = new PluginOrderBill(); $query = "SELECT * FROM `glpi_plugin_order_orders_suppliers`"; - foreach (getAllDatasFromTable('glpi_plugin_order_orders_suppliers') as $data) { + foreach (getAllDataFromTable('glpi_plugin_order_orders_suppliers') as $data) { if (!is_null($data['num_bill']) && $data['num_bill'] != '' && !countElementsInTable('glpi_plugin_order_bills', diff --git a/inc/link.class.php b/inc/link.class.php index 2495f1eb4e..089523d3d0 100644 --- a/inc/link.class.php +++ b/inc/link.class.php @@ -149,6 +149,7 @@ public function showItemGenerationForm($params) { if (Session::isMultiEntitiesMode() && count($_SESSION['glpiactiveentities']) > 1) { + $order_web_dir = Plugin::getWebDir('order'); echo ""; $rand = Entity::Dropdown([ 'name' => "id[$i][entities_id]", @@ -157,21 +158,21 @@ public function showItemGenerationForm($params) { ); Ajax::updateItemOnSelectEvent("dropdown_id[$i][entities_id]$rand", "show_location_by_entity_id_$i", - $CFG_GLPI["root_doc"] . "/plugins/order/ajax/linkactions.php", + "$order_web_dir/ajax/linkactions.php", ['entities' => '__VALUE__', 'action' => 'show_location_by_entity', 'id' => $i ]); Ajax::updateItemOnSelectEvent("dropdown_id[$i][entities_id]$rand", "show_group_by_entity_id_$i", - $CFG_GLPI["root_doc"] . "/plugins/order/ajax/linkactions.php", + "$order_web_dir/ajax/linkactions.php", ['entities' => '__VALUE__', 'action' => 'show_group_by_entity', 'id' => $i ]); Ajax::updateItemOnSelectEvent("dropdown_id[$i][entities_id]$rand", "show_state_by_entity_id_$i", - $CFG_GLPI["root_doc"] . "/plugins/order/ajax/linkactions.php", + "$order_web_dir/ajax/linkactions.php", ['entities' => '__VALUE__', 'action' => 'show_state_by_entity', 'id' => $i @@ -288,7 +289,7 @@ public function showOrderLink($plugin_order_orders_id) { $result_ref = $this->queryRef($plugin_order_orders_id, 'glpi_plugin_order_references'); $numref = $DB->numrows($result_ref); - while ($data_ref = $DB->fetch_array($result_ref)) { + while ($data_ref = $DB->fetchArray($result_ref)) { $link = new self(); $link->showOrderLinkItem($numref, $data_ref, $canedit, $plugin_order_orders_id, $PluginOrderOrder, 'glpi_plugin_order_references'); @@ -296,7 +297,7 @@ public function showOrderLink($plugin_order_orders_id) { $result_reffree = $this->queryRef($plugin_order_orders_id, 'glpi_plugin_order_referencefrees'); $numreffree = $DB->numrows($result_reffree); - while ($data_reffree = $DB->fetch_array($result_reffree)) { + while ($data_reffree = $DB->fetchArray($result_reffree)) { $link = new self(); $link->showOrderLinkItem($numreffree, $data_reffree, $canedit, $plugin_order_orders_id, $PluginOrderOrder, 'glpi_plugin_order_referencefrees'); @@ -364,7 +365,7 @@ public function showOrderLinkItem($numref, $data_ref, $canedit, $plugin_order_or $result = $DB->query($query); $num = $DB->numrows($result); $all_data = []; - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { $all_data[] = $data; } @@ -752,7 +753,7 @@ public function getReceptionItemName($items_id, $itemtype) { } $rand = Dropdown::showFromArray('generationActions', $actions); Ajax::updateItemOnSelectEvent("dropdown_generationActions$rand", "show_generationActions$rand", - $CFG_GLPI["root_doc"]."/plugins/order/ajax/linkactions.php", + Plugin::getWebDir('order')."/ajax/linkactions.php", ['action' => '__VALUE__', 'itemtype' => $itemtype, 'plugin_order_references_id' => $plugin_order_references_id, @@ -1342,7 +1343,7 @@ public static function copyDocuments($itemtype, $items_id, $orders_id, $entity) $item->getFromDB($items_id); $is_recursive = 0; - foreach (getAllDatasFromTable('glpi_documents_items', + foreach (getAllDataFromTable('glpi_documents_items', ['itemtype' => 'PluginOrderOrder', 'items_id' => $orders_id]) as $doc) { @@ -1350,7 +1351,7 @@ public static function copyDocuments($itemtype, $items_id, $orders_id, $entity) $document->getFromDB($doc['documents_id']); if (($document->getEntityID() != $entity && !$document->fields['is_recursive']) || !in_array($entity, getSonsOf('glpi_entities', $document->getEntityID()))) { - $found_docs = getAllDatasFromTable( + $found_docs = getAllDataFromTable( 'glpi_documents', [ 'entities_id' => $entity, diff --git a/inc/menu.class.php b/inc/menu.class.php index 9736e7ab3e..bf12696192 100644 --- a/inc/menu.class.php +++ b/inc/menu.class.php @@ -14,6 +14,7 @@ static function getMenuContent() { $menu = [ 'title' => self::getTypeName(2), 'page' => self::getSearchURL(false), + 'icon' => PluginOrderOrder::getIcon(), ]; if (PluginOrderConfig::canView()) { $menu['links']['config'] = PluginOrderConfig::getFormURL(false); @@ -23,6 +24,7 @@ static function getMenuContent() { $menu['options']['order'] = [ 'title' => PluginOrderOrder::getTypeName(2), 'page' => PluginOrderOrder::getSearchURL(false), + 'icon' => PluginOrderOrder::getIcon(), ]; if (PluginOrderOrder::canCreate()) { $menu['options']['order']['links'] = [ diff --git a/inc/order.class.php b/inc/order.class.php index efab5c00fa..6e17009b6c 100644 --- a/inc/order.class.php +++ b/inc/order.class.php @@ -714,7 +714,7 @@ public function post_addItem() { // ADD Documents $docitem = new Document_Item(); - $docs = getAllDatasFromTable( + $docs = getAllDataFromTable( "glpi_documents_items", [ 'items_id' => $this->input["_oldID"], @@ -1034,7 +1034,7 @@ public function showForm ($ID, $options = []) { $values = [0 => Dropdown::EMPTY_VALUE]; if ($number) { - while ($data = $DB->fetch_assoc($result)) { + while ($data = $DB->fetchAssoc($result)) { $values[$data['id']] = formatUserName('', '', $data['name'], $data['firstname']); } } @@ -1347,7 +1347,7 @@ public function dropdownSuppliers($myname, $value = 0, $entity_restrict = '') { echo "\n"; $prev = -1; - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { if ($data["entities_id"] != $prev) { if ($prev >= 0) { echo ""; @@ -1368,7 +1368,7 @@ public function dropdownSuppliers($myname, $value = 0, $entity_restrict = '') { } echo ""; Ajax::updateItemOnSelectEvent("suppliers_id", "show_contacts_id", - $CFG_GLPI["root_doc"]."/plugins/order/ajax/dropdownSupplier.php", + Plugin::getWebDir('order')."/ajax/dropdownSupplier.php", [ 'suppliers_id' => '__VALUE__', 'entity_restrict' => $entity_restrict, @@ -1400,7 +1400,7 @@ public function dropdownContacts($suppliers_id, $value = 0, $entity_restrict = ' if ($DB->numrows($result)) { $prev = -1; - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { if ($data["entities_id"] != $prev) { if ($prev >= 0) { echo ""; @@ -1598,7 +1598,7 @@ public function showValidationForm($orders_id) { public function showGenerationForm($ID) { global $CFG_GLPI; - echo "
"; echo "
"; echo ""; @@ -1759,7 +1759,7 @@ public function generateOrder($params) { $result = $PluginOrderOrder_Item->queryDetail($ID, 'glpi_plugin_order_references'); $num = $DB->numrows($result); - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { $quantity = $PluginOrderOrder_Item->getTotalQuantityByRefAndDiscount($ID, $data["id"], $data["price_taxfree"], $data["discount"]); @@ -1784,7 +1784,7 @@ public function generateOrder($params) { $result = $PluginOrderOrder_Item->queryDetail($ID, 'glpi_plugin_order_referencefrees'); $num = $DB->numrows($result); - while ($data=$DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { $quantity = $PluginOrderOrder_Item->getTotalQuantityByRefAndDiscount($ID, $data["id"], $data["price_taxfree"], $data["discount"]); @@ -1934,7 +1934,7 @@ public function transfer($ID, $entity) { GROUP BY plugin_order_references_id"; $result = $DB->query($query); if ($DB->numrows($result)) { - while ($detail = $DB->fetch_array($result)) { + while ($detail = $DB->fetchArray($result)) { $ref = $reference->transfer($detail["plugin_order_references_id"], $entity); } } @@ -2064,7 +2064,7 @@ public function canStillUseBudget($input) { public static function updateBillState($ID) { $all_paid = true; - $order_items = getAllDatasFromTable(PluginOrderOrder_Item::getTable(), + $order_items = getAllDataFromTable(PluginOrderOrder_Item::getTable(), ['plugin_order_orders_id' => $ID]); foreach ($order_items as $item) { if ($item['plugin_order_billstates_id'] == PluginOrderBillState::NOTPAID) { @@ -2173,7 +2173,7 @@ public static function cronComputeLateOrders($task) { $nblate = 0; $table = self::getTable(); - foreach (getAllDatasFromTable($table, ['is_template' => 0]) as $values) { + foreach (getAllDataFromTable($table, ['is_template' => 0]) as $values) { $order = new self(); $order->fields = $values; if (!$order->fields['is_late'] && $order->shouldBeAlreadyDelivered(true)) { @@ -2422,7 +2422,7 @@ public static function install(Migration $migration) { `users_id_delivery` int(11) NOT NULL default '0', `groups_id_delivery` int(11) NOT NULL default '0', `plugin_order_ordertypes_id` int (11) NOT NULL default '0' COMMENT 'RELATION to glpi_plugin_order_ordertypes (id)', - `date_mod` datetime default NULL, + `date_mod` timestamp NULL default NULL, `is_helpdesk_visible` tinyint(1) NOT NULL default '1', PRIMARY KEY (`id`), KEY `name` (`name`), @@ -2564,7 +2564,7 @@ public static function install(Migration $migration) { 'entities_id' => 'entities_id', 'is_deleted' => 'is_deleted' ]; - foreach (getAllDatasFromTable("glpi_plugin_order_budgets") as $data) { + foreach (getAllDataFromTable("glpi_plugin_order_budgets") as $data) { $tmp = []; $id = false; foreach ($matchings as $old => $new) { @@ -2645,7 +2645,7 @@ public static function install(Migration $migration) { $migration->addField($table, "groups_id_delivery", "INT(11) NOT NULL DEFAULT '0'"); //1.7.0 - $migration->addField($table, "date_mod", "datetime"); + $migration->addField($table, "date_mod", "timestamp"); $migration->addKey($table, "date_mod"); //1.7.2 @@ -2701,4 +2701,7 @@ public static function uninstall() { } + static function getIcon() { + return "fas fa-shopping-cart"; + } } diff --git a/inc/order_item.class.php b/inc/order_item.class.php index a0981a5ee9..4d75a2e6b7 100644 --- a/inc/order_item.class.php +++ b/inc/order_item.class.php @@ -383,7 +383,7 @@ public function showAddForm($plugin_order_orders_id) { $result = $DB->query($query); $itemtypeArray = ['' => Dropdown::EMPTY_VALUE]; - while (list($itemtype) = $DB->fetch_array($result)) { + while (list($itemtype) = $DB->fetchArray($result)) { $type = new $itemtype(); $itemtypeArray[$itemtype] = $type->getTypeName(); } @@ -551,7 +551,7 @@ public function showAddForm($plugin_order_orders_id) { 'myname' => 'itemtype', 'value' => 'PluginOrderOther', 'entity' => $_SESSION["glpiactive_entity"], - 'ajax_page' => $CFG_GLPI["root_doc"] . '/plugins/order/ajax/referencespecifications.php', + 'ajax_page' => Plugin::getWebDir('order') . '//ajax/referencespecifications.php', // 'class' => __CLASS__, ]; $reference = new PluginOrderReference(); @@ -564,7 +564,7 @@ public function showAddForm($plugin_order_orders_id) { $file = 'other'; $core_typefilename = GLPI_ROOT . "/inc/" . strtolower($file) . "type.class.php"; - $plugin_typefilename = GLPI_ROOT . "/plugins/order/inc/" . strtolower($file) . "type.class.php"; + $plugin_typefilename = PLUGIN_ORDER_DIR . "/inc/" . strtolower($file) . "type.class.php"; $itemtypeclass = "PluginOrderOtherType"; if (file_exists($core_typefilename) @@ -747,7 +747,7 @@ public function showFormDetail($plugin_order_orders_id) { && $order->canUpdateOrder(); Session::initNavigateListItems($this->getType(), __("Order", "order") ." = ". $order->getName()); - while ($data_ref = $DB->fetch_array($result_ref)) { + while ($data_ref = $DB->fetchArray($result_ref)) { self::getItems($rand, $data_ref, $plugin_order_orders_id, $numref, $canedit, $reference, $reception, 'glpi_plugin_order_references'); @@ -755,7 +755,7 @@ public function showFormDetail($plugin_order_orders_id) { $result_ref_free = $this->queryDetail($plugin_order_orders_id, 'glpi_plugin_order_referencefrees'); $numref_free = $DB->numrows($result_ref_free); - while ($data_ref_free = $DB->fetch_array($result_ref_free)) { + while ($data_ref_free = $DB->fetchArray($result_ref_free)) { self::getItems($rand, $data_ref_free, $plugin_order_orders_id, $numref_free, $canedit, $reference, $reception, 'glpi_plugin_order_referencefrees'); } @@ -836,7 +836,7 @@ public function getItems($rand, $data_ref, $plugin_order_orders_id, $numref, $ca echo "function showQuantity$rand() {\n"; echo "$('#quantity$rand').hide();"; echo "$('#viewaccept$rand').show();"; - Ajax::updateItemJsCode("viewquantity$rand", $CFG_GLPI["root_doc"]."/plugins/order/ajax/inputnumber.php", [ + Ajax::updateItemJsCode("viewquantity$rand", Plugin::getWebDir('order')."/ajax/inputnumber.php", [ 'maxlength' => 15, 'size' => 8, 'name' => 'quantity', @@ -925,7 +925,7 @@ public function getItems($rand, $data_ref, $plugin_order_orders_id, $numref, $ca echo "function showPricetaxfree$rand() {\n"; echo "$('#pricetaxfree$rand').hide();"; echo "$('#viewaccept$rand').show();"; - Ajax::updateItemJsCode("viewpricetaxfree$rand", $CFG_GLPI["root_doc"]."/plugins/order/ajax/inputnumber.php", [ + Ajax::updateItemJsCode("viewpricetaxfree$rand", Plugin::getWebDir('order')."/ajax/inputnumber.php", [ 'maxlength' => 15, 'size' => 8, 'name' => 'price_taxfree', @@ -951,7 +951,7 @@ public function getItems($rand, $data_ref, $plugin_order_orders_id, $numref, $ca echo "function showDiscount$rand() {\n"; echo "$('#discount$rand').hide();"; echo "$('#viewaccept$rand').show();"; - Ajax::updateItemJsCode("viewdiscount$rand", $CFG_GLPI["root_doc"]."/plugins/order/ajax/inputnumber.php", [ + Ajax::updateItemJsCode("viewdiscount$rand", Plugin::getWebDir('order')."/ajax/inputnumber.php", [ 'maxlength' => 15, 'size' => 8, 'name' => 'discount', @@ -1055,7 +1055,7 @@ public function getItems($rand, $data_ref, $plugin_order_orders_id, $numref, $ca // Initialize for detail_hideForm javascript function $hideForm = ""; - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { $rand_line = mt_rand(); Session::addToNavigateListItems($this->getType(), $data['IDD']); @@ -1104,7 +1104,7 @@ public function getItems($rand, $data_ref, $plugin_order_orders_id, $numref, $ca echo "function showDetailPricetaxfree$rand_line() {\n"; echo "$('#detail_pricetaxfree$rand_line').hide();"; echo "$('#detail_viewaccept$global_rand').show();"; - Ajax::updateItemJsCode("detail_viewpricetaxfree$rand_line", $CFG_GLPI["root_doc"]."/plugins/order/ajax/inputnumber.php", [ + Ajax::updateItemJsCode("detail_viewpricetaxfree$rand_line", Plugin::getWebDir('order')."/ajax/inputnumber.php", [ 'maxlength' => 15, 'size' => 8, 'name' => 'detail_price_taxfree['.$data["IDD"].']', @@ -1139,7 +1139,7 @@ public function getItems($rand, $data_ref, $plugin_order_orders_id, $numref, $ca echo "function showDetailDiscount$rand_line() {\n"; echo "$('#detail_discount$rand_line').hide();"; echo "$('#detail_viewaccept$global_rand').show();"; - Ajax::updateItemJsCode("detail_viewdiscount$rand_line", $CFG_GLPI["root_doc"]."/plugins/order/ajax/inputnumber.php", [ + Ajax::updateItemJsCode("detail_viewdiscount$rand_line", Plugin::getWebDir('order')."/ajax/inputnumber.php", [ 'maxlength' => 15, 'size' => 8, 'name' => 'detail_discount['.$data["IDD"].']', @@ -1265,7 +1265,7 @@ public function getAllPrices($orders_id) { FROM `".self::getTable()."` WHERE `plugin_order_orders_id` = '$orders_id' "; $result = $DB->query($query); - return $DB->fetch_array($result); + return $DB->fetchArray($result); } @@ -1280,7 +1280,7 @@ public function getOrderInfosByItem($itemtype, $items_id) { AND `$table`.`items_id` = '$items_id' "; $result = $DB->query($query); if ($DB->numrows($result)) { - return $DB->fetch_array($result); + return $DB->fetchArray($result); } else { return false; } @@ -1300,7 +1300,7 @@ public function showPluginFromItems($itemtype, $ID) { echo $order->getLink(PluginOrderOrder::canView()); echo ""; - $result = getAllDatasFromTable( + $result = getAllDataFromTable( self::getTable(), [ 'plugin_order_orders_id' => $infos['id'], @@ -1453,7 +1453,7 @@ public function updatePrices($order_items_id) { $this->fields['plugin_order_references_id'], $this->fields['price_taxfree'], $this->fields['discount']); - while ($item = $DB->fetch_array($data)) { + while ($item = $DB->fetchArray($data)) { $this->updatePrice_taxfree([ 'item_id' => $item['id'], 'price_taxfree' => $this->fields['price_taxfree'] @@ -1514,12 +1514,12 @@ public function showBillsItems(PluginOrderOrder $order) { && !$order->isPaid() && !$order->isCanceled(); $result_ref = self::queryBillsItems($order->getID(), 'glpi_plugin_order_references'); - while ($data_ref = $DB->fetch_array($result_ref)) { + while ($data_ref = $DB->fetchArray($result_ref)) { self::showBillsItemsDetail($data_ref, $result_ref, $canedit, $order, 'glpi_plugin_order_references'); } $result_reffree = self::queryBillsItems($order->getID(), 'glpi_plugin_order_referencefrees'); - while ($data_reffree = $DB->fetch_array($result_reffree)) { + while ($data_reffree = $DB->fetchArray($result_reffree)) { self::showBillsItemsDetail($data_reffree, $result_reffree, $canedit, $order, 'glpi_plugin_order_referencefrees'); } echo "
"; @@ -1605,7 +1605,7 @@ public function showBillsItemsDetail($data_ref, $result_ref, $canedit, $order, $ echo ""; $results = $this->queryBills($order->getID(), $data_ref['id'], $table); - while ($data = $DB->fetch_array($results)) { + while ($data = $DB->fetchArray($results)) { echo ""; if ($canedit) { echo ""; echo ""; - $data = getAllDatasFromTable($table, ['plugin_order_orders_id' => $ID]); + $data = getAllDataFromTable($table, ['plugin_order_orders_id' => $ID]); foreach ($data as $cur) { Session::addToNavigateListItems(__CLASS__, $cur['id']); echo Html::hidden("item[".$cur["id"]."]", ['value' => $ID]); @@ -258,7 +258,7 @@ public static function showOrderSupplierInfos($ID) { public function checkIfSupplierInfosExists($plugin_order_orders_id) { if ($plugin_order_orders_id) { - $devices = getAllDatasFromTable(self::getTable(), + $devices = getAllDataFromTable(self::getTable(), ['plugin_order_orders_id' => $plugin_order_orders_id]); if (!empty($devices)) { return true; diff --git a/inc/preference.class.php b/inc/preference.class.php index 9bb1279aa6..642c159d3f 100644 --- a/inc/preference.class.php +++ b/inc/preference.class.php @@ -61,7 +61,7 @@ public function addDefaultPreference($users_id) { * @return preference value or 0 */ public static function checkPreferenceValue($field, $users_id = 0) { - $data = getAllDatasFromTable(self::getTable(), ['users_id' => $users_id]); + $data = getAllDataFromTable(self::getTable(), ['users_id' => $users_id]); if (!empty($data)) { $first = array_pop($data); return $first[$field]; @@ -172,7 +172,7 @@ public function showForm($ID) { if (isset($this->fields["sign"]) && !empty($this->fields["sign"])) { echo ""; } diff --git a/inc/reception.class.php b/inc/reception.class.php index b99f8812a4..65934e1b92 100644 --- a/inc/reception.class.php +++ b/inc/reception.class.php @@ -79,7 +79,7 @@ public function getFromDBByOrder($plugin_order_orders_id) { if ($DB->numrows($result) != 1) { return false; } - $this->fields = $DB->fetch_assoc($result); + $this->fields = $DB->fetchAssoc($result); if (is_array($this->fields) && count($this->fields)) { return true; } else { @@ -296,7 +296,7 @@ public function showOrderReception($orders_id) { $result_ref = $order_item->queryDetail($orders_id, 'glpi_plugin_order_references'); $numref = $DB->numrows($result_ref); - while ($data_ref = $DB->fetch_array($result_ref)) { + while ($data_ref = $DB->fetchArray($result_ref)) { self::showOrderReceptionItem($data_ref, $numref, $canedit, $reference, $order_item, $orders_id, $order_order, 'glpi_plugin_order_references'); } @@ -304,7 +304,7 @@ public function showOrderReception($orders_id) { $result_reffree = $order_item->queryDetail($orders_id, 'glpi_plugin_order_referencefrees'); $numreffree = $DB->numrows($result_reffree); - while ($data_reffree = $DB->fetch_array($result_reffree)) { + while ($data_reffree = $DB->fetchArray($result_reffree)) { self::showOrderReceptionItem($data_reffree, $numreffree, $canedit, $reference, $order_item, $orders_id, $order_order, 'glpi_plugin_order_referencefrees'); } @@ -398,7 +398,7 @@ public function showOrderReceptionItem($data_ref, $numref, $canedit, $reference, $num = $DB->numrows($result); $all_data = []; - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { $all_data[] = $data; } @@ -592,7 +592,7 @@ public function dropdownReceptionActions($itemtype, $plugin_order_references_id, 'plugin_order_orders_id' => $plugin_order_orders_id, ]; Ajax::updateItemOnSelectEvent("receptionActions$rand", "show_receptionActions$rand", - $CFG_GLPI["root_doc"]."/plugins/order/ajax/receptionactions.php", + Plugin::getWebDir('order')."/ajax/receptionactions.php", $params); echo " "; } @@ -835,7 +835,7 @@ public static function updateDelivryStatus($orders_id) { $delivery_status = 0; $is_delivered = 1; //Except order to be totally delivered if ($number) { - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { if ($data["states_id"] == PluginOrderOrder::ORDER_DEVICE_DELIVRED) { $delivery_status = 1; } else { diff --git a/inc/reference.class.php b/inc/reference.class.php index f5c92ef78c..51d11de4f5 100644 --- a/inc/reference.class.php +++ b/inc/reference.class.php @@ -492,7 +492,7 @@ public function dropdownAllItems($options = []) { $number = $DB->numrows($result); if ($number) { - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { $used[] = $data["itemtype"]; } } @@ -599,7 +599,7 @@ public function showForm($id, $options = []) { 'myname' => 'itemtype', 'value' => $options["item"], 'entity' => $_SESSION["glpiactive_entity"], - 'ajax_page' => $CFG_GLPI["root_doc"].'/plugins/order/ajax/referencespecifications.php', + 'ajax_page' => Plugin::getWebDir('order').'/ajax/referencespecifications.php', 'class' => __CLASS__, ]); } @@ -819,7 +819,7 @@ public function transfer($ID, $entity) { $result = $DB->query($query); $num = $DB->numrows($result); if ($num) { - while ($dataref = $DB->fetch_array($result)) { + while ($dataref = $DB->fetchArray($result)) { $values["id"] = $dataref['id']; $values["plugin_order_references_id"] = $newid; $PluginOrderOrder_Item->update($values); @@ -839,7 +839,7 @@ public function copy($ID) { $target->fields = Toolbox::addslashes_deep($target->fields); $newID = $this->add($target->fields); - foreach (getAllDatasFromTable('glpi_plugin_order_references_suppliers', + foreach (getAllDataFromTable('glpi_plugin_order_references_suppliers', ['plugin_order_references_id' => $ID]) as $refsup) { $reference_supplier = new PluginOrderReference_Supplier(); $refsup['plugin_order_references_id'] = $newID; @@ -857,8 +857,6 @@ public function copy($ID) { * @param $target target for entity change action */ public static function showSelector($target) { - global $CFG_GLPI; - $rand = mt_rand(); Plugin::loadLang('order'); echo "
".__("Select the wanted item type", "order") @@ -870,7 +868,7 @@ public static function showSelector($target) { echo ""; return $out; @@ -1069,7 +1067,7 @@ public static function install(Migration $migration) { `is_deleted` tinyint(1) NOT NULL default '0', `is_active` tinyint(1) NOT NULL default '1', `notepad` longtext collate utf8_unicode_ci, - `date_mod` datetime default NULL, + `date_mod` timestamp NULL default NULL, PRIMARY KEY (`id`), KEY `name` (`name`), KEY `entities_id` (`entities_id`), @@ -1114,7 +1112,7 @@ public static function install(Migration $migration) { "tinyint(1) NOT NULL default '0'"); $migration->addField($table, "notepad", "longtext collate utf8_unicode_ci"); $migration->addField($table, "is_active", "TINYINT(1) NOT NULL DEFAULT '1'"); - $migration->addField($table, "date_mod", "datetime"); + $migration->addField($table, "date_mod", "timestamp"); $migration->addKey($table, "name"); $migration->addKey($table, "entities_id"); diff --git a/inc/reference_supplier.class.php b/inc/reference_supplier.class.php index 2a8ccda62e..c69712a73f 100644 --- a/inc/reference_supplier.class.php +++ b/inc/reference_supplier.class.php @@ -46,7 +46,7 @@ public static function getTypeName($nb = 0) { return __("Supplier for the reference", "order"); } - function getRawName() { + protected function computeFriendlyName() { $ref = new PluginOrderReference(); $ref->getFromDB($this->fields['plugin_order_references_id']); return sprintf(__('Supplier for the reference "%1$s"'), $ref->getName()); @@ -64,7 +64,7 @@ public function getFromDBByReference($plugin_order_references_id) { if ($DB->numrows($result) != 1) { return false; } - $this->fields = $DB->fetch_assoc($result); + $this->fields = $DB->fetchAssoc($result); if (is_array($this->fields) && count($this->fields)) { return true; } else { @@ -201,7 +201,7 @@ public function showForm ($ID, $options = []) { FROM `".self::getTable()."` WHERE `plugin_order_references_id` = '$plugin_order_references_id'"; $result = $DB->query($query); - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { $suppliers[] = $data["suppliers_id"]; } @@ -272,7 +272,7 @@ public function showReferenceManufacturers($ID) { echo ""; echo Html::hidden('plugin_order_references_id', ['value' => $ID]); - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { Session::addToNavigateListItems($this->getType(), $data['id']); echo Html::hidden("item[".$data["id"]."]", ['value' => $ID]); echo "
"; @@ -484,7 +484,7 @@ public static function showReferencesFromSupplier($ID) { echo ""; echo ""; - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { echo ""; echo ""; if ($DB->numrows($result) > 0) { - while ($data = $DB->fetch_array($result)) { + while ($data = $DB->fetchArray($result)) { Session::addToNavigateListItems(__CLASS__, $data['id']); echo Html::hidden("item[".$data["id"]."]", ['value' => $ID]); echo ""; diff --git a/locales/cs_CZ.mo b/locales/cs_CZ.mo index 4d47b1a304..3d84d95055 100644 Binary files a/locales/cs_CZ.mo and b/locales/cs_CZ.mo differ diff --git a/locales/cs_CZ.po b/locales/cs_CZ.po index a5840c4ca2..f1a2c2ee20 100644 --- a/locales/cs_CZ.po +++ b/locales/cs_CZ.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: 2019-09-16 20:01+0000\n" "Last-Translator: David Stepan \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/teclib/glpi-plugin-order/language/cs_CZ/)\n" @@ -19,42 +19,114 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" -msgstr "Odeslání objednávek" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Instalace nebo aktualizace doplňku" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" -msgstr "Datum objednávky" +#: hook.php:88 +msgid "Can't create folder" +msgstr "Složku se nepodařilo vytvořit" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" -msgstr "Místo doručení" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "Nepodařilo se zkopírovat soubor %1$s do %2$s" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "DPH" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Platební podmínky" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Stav objednávky" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Jiný typ položky" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Stav dodání" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Stav platby" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Typ platby" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "Analytická povaha" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "Sekce účtu" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Objednávky" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "Název objednávky" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "Číslo objednávky" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "Odhadované datum doručení" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Objednávka" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "Statistiky doručení objednávek" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "Datum objednávky" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "Místo doručení" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "Objednávky celkem" @@ -63,6 +135,15 @@ msgstr "Objednávky celkem" msgid "Late orders total" msgstr "Zpožděné objednávky celkem" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "Odeslání objednávek" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "Odhadované datum doručení" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -72,44 +153,20 @@ msgstr "Číslo nabídky" msgid "Delete" msgstr "Smazat" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "Podrobnosti o dodavateli" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "Správa objednávek" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "Objednávky" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "Dodavatel pro referenci" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "Produktové reference" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "Faktury" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "Objednávka je ověřena" @@ -140,9 +197,9 @@ msgid "Add reference" msgstr "Přidat referenci" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "Množství" @@ -163,417 +220,340 @@ msgstr "Odstranit referenci" msgid "No item selected" msgstr "Nebyla vybrána žádná položka" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" -msgstr "Bez DPH" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "Dodavatel pro referenci" -#: hook.php:46 -msgid "Plugin installation or upgrade" -msgstr "Instalace nebo aktualizace doplňku" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Produktové reference" -#: hook.php:88 -msgid "Can't create folder" -msgstr "Složku se nepodařilo vytvořit" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "Faktury" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" -msgstr "Nepodařilo se zkopírovat soubor %1$s do %2$s" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" +msgstr "Použít tento model" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" -msgstr "DPH" +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" +msgstr "Použít tento podpis" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" -msgstr "Platební podmínky" +#: inc/referencefree.class.php:39 +msgid "Reference free" +msgstr "Bez reference" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" -msgstr "Stav objednávky" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "Statistika doručení" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "Jiný typ položky" +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "Neurčený stav" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" -msgstr "Stav dodání" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "Kvalita dodavatele" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" -msgstr "Stav platby" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "Poznámka" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "Typ platby" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "Komentář k průzkumu" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" -msgstr "Analytická povaha" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" +msgstr "Kvalita administrativy (smlouvy, platby, korespondence, atd.)" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" -msgstr "Sekce účtu" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" +msgstr "Obchodní kvalita, schůzky, vnímavost" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "Název objednávky" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "Dostupnost kontaktů" -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "Objednávka" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" +msgstr "Kvalita zásahu dodavatele" -#: inc/referencefree.class.php:39 -msgid "Reference free" -msgstr "Bez reference" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "Spolehlivost ohlášené dostupnosti" -#: inc/config.class.php:103 -msgid "Plugin configuration" -msgstr "Nastavení zásuvného modulu" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "Celkové hodnocení dodavatele" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "Výchozí DPH" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" +msgstr "Průměrné hodnocení max. 10 (X bodů / 5)" -#: inc/config.class.php:118 -msgid "Use validation process" -msgstr "Použít ověřovací proces" +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "Kategorie dokumentu" -#: inc/config.class.php:125 -msgid "Order generation in ODT" -msgstr "Vytvoření objednávky ve formátu ODT" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "Předpona kategorie dokumentu" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" -msgstr "Zapnout hodnocení kvality dodavatele" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" +msgstr "Vytváření objednávky" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" -msgstr "Zobrazit informace o dodavateli objednávky" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "Převzít dodávku položky" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" -msgstr "Barva kterou zobrazit při překročení odhadovaného data doručení" +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "Ověření objednávky" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" -msgstr "Kopírovat dokumenty objednávky do vytvářené nové položky" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" +msgstr "Zrušit objednávku" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" -msgstr "Výchozí hlavička při přidání dokumentu k objednávce" +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "Upravit ověřenou objednávku" + +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "Vytvořit objednávku bez ověření" + +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" +msgstr "Poštovné/balné" + +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" +msgstr "Doručeno pozdě" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Skupina autora" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" msgstr "Skupina příjemce" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" -msgstr "Skrýt neaktivní rozpočty" +#: inc/order.class.php:584 +msgid "Account Section" +msgstr "Sekce účtu" -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" -msgstr "Přenášet změny rozpočtu na související položky" - -#: inc/config.class.php:212 -msgid "Display account section on order form" -msgstr "Zobrazovat sekci účtu ve formuláři objednávky" - -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" -msgstr "Ve formuláři objednávky je povinná sekce účtu" +#: inc/order.class.php:636 +msgid "Validation" +msgstr "Ověření" -#: inc/config.class.php:226 -msgid "Use free references" -msgstr "Použít volné refrence" +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "Nákupní objednávka" -#: inc/config.class.php:233 -msgid "Rename documents added in order" -msgstr "Přejmenovat dokumenty přidané v pořadí" +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "Číslo objednávky je povinné!" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" -msgstr "Automatické akce při doručení" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" +msgstr "Sekce účtu je povinná!" -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" -msgstr "Zobrazovat analytickou povahu ve formuláři položky" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." +msgstr "Datum objednávky musí být v mezích zadaných pro vybraný rozpočet." -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" -msgstr "Nastavit ve formuláři položky analytickou povahu jako povinnou" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "Bez DPH" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" -msgstr "Zapnout automatické vytváření" +#: inc/order.class.php:1096 +msgid "Due date overtaken" +msgstr "Překročen předpokládaný termín" -#: inc/config.class.php:269 -msgid "Asked" -msgstr "Poptáváno" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" +msgstr "Cena bez daně" -#: inc/config.class.php:275 -msgid "Default state" -msgstr "Výchozí stav" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" +msgstr "Cena bez daně včetně poštovného/balného" -#: inc/config.class.php:286 -msgid "Add order location to item" -msgstr "Přidat umístění objednávky k položce" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "Cena celkem" -#: inc/config.class.php:293 -msgid "Add billing details to item" -msgstr "Přidat fakturační údaje k položce" +#: inc/order.class.php:1534 +msgid "Validation process" +msgstr "Ověřovací proces" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" -msgstr "Výchozí název" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "Opravdu chcete zrušit tuto objednávku? Tato možnost je nevratná!" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" -msgstr "Výchozí sériové číslo" +#: inc/order.class.php:1560 +msgid "Validate order" +msgstr "Ověření objednávky" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "Výchozí inventární číslo" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" +msgstr "Chcete zrušit už schválené ověření?" -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "Životní cyklus objednávky" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" +msgstr "Zrušit žádost o ověření" -#: inc/config.class.php:342 -msgid "State before validation" -msgstr "Stav před ověřením" +#: inc/order.class.php:1574 +msgid "Ask for validation" +msgstr "Dotaz na ověření" -#: inc/config.class.php:352 -msgid "Waiting for validation state" -msgstr "Stav čekání na ověření" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" +msgstr "Skutečně chcete upravit objednávku?" -#: inc/config.class.php:362 -msgid "Validated order state" -msgstr "Stav ověřené objednávky" +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "Upravit objednávku" -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "Stav dodávané objednávky" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." +msgstr "Do objednávky je třeba přidat alespoň jednoho zařízení." -#: inc/config.class.php:382 -msgid "Order delivered state" -msgstr "Stav dodané objednávky" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" +msgstr "V předvolbách je třeba vybrat model." -#: inc/config.class.php:392 -msgid "Order paied state" -msgstr "Stav uhrazené objednávky" +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "Fakturační adresa" -#: inc/config.class.php:402 -msgid "Canceled order state" -msgstr "Stav zrušené objednávky" +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "Dodací adresa" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" -msgstr "Kvalita dodavatele" +#: inc/order.class.php:1726 +msgid "The" +msgstr "Ta" -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" -msgstr "Poznámka" +#: inc/order.class.php:1728 +msgid "Issuer order" +msgstr "Objednávku vystavil" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" -msgstr "Komentář k průzkumu" +#: inc/order.class.php:1746 +msgid "Recipient" +msgstr "Příjemce" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" -msgstr "Kvalita administrativy (smlouvy, platby, korespondence, atd.)" +#: inc/order.class.php:1749 +msgid "Designation" +msgstr "Označení" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" -msgstr "Obchodní kvalita, schůzky, vnímavost" +#: inc/order.class.php:1751 +msgid "Unit price" +msgstr "Cena za jednotku" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" -msgstr "Dostupnost kontaktů" +#: inc/order.class.php:1753 +msgid "Discount rate" +msgstr "Sleva" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" -msgstr "Kvalita zásahu dodavatele" +#: inc/order.class.php:1754 +msgid "Sum tax free" +msgstr "Celkem bez DPH" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" -msgstr "Spolehlivost ohlášené dostupnosti" +#: inc/order.class.php:1881 +msgid "€" +msgstr "Kč" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" -msgstr "Celkové hodnocení dodavatele" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" +msgstr "Podpis vystavitele objednávky" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" -msgstr "Průměrné hodnocení max. 10 (X bodů / 5)" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "Propojené objednávky" -#: inc/documentcategory.class.php:39 -msgid "Document category" -msgstr "Kategorie dokumentu" +#: inc/order.class.php:1994 +msgid "Unlink" +msgstr "Rozpojit" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" -msgstr "Předpona kategorie dokumentu" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." +msgstr "Celková hodnota objednávek spojených s tímto rozpočtem je větší než jeho výše." -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" -msgstr "Nemůžete odstranit tento stav" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." +msgstr "Celková hodnota objednávek spojených s tímto rozpočtem je rovna jeho výši." -#: inc/orderstate.class.php:87 -msgid "Draft" -msgstr "Návrh" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "Požadavek na ověření objednávky" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" -msgstr "Čeká na schválení" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "Objednávka ověřena" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "Ověřena" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "Zpožděné objednávky" -#: inc/orderstate.class.php:90 -msgid "Being delivered" -msgstr "Dodávána" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "Žádná položka k vytvoření" -#: inc/orderstate.class.php:91 -msgid "Delivered" -msgstr "Dodána" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "Komentář ověření" -#: inc/orderstate.class.php:92 -msgid "Canceled" -msgstr "Zrušena" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "Ověření bylo úspěšně zrušeno" -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "Uhrazena" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "Editor ověření" -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" -msgstr "Produktová reference výrobce" +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" +msgstr "Položka objednávky" -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/order_item.class.php:115 inc/order_item.class.php:369 #: inc/order_item.class.php:476 inc/order_item.class.php:801 #: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Cena za jednotku bez DPH" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "Produktová reference" - -#: inc/reference_supplier.class.php:476 -msgid "List references" -msgstr "Seznam referencí" - -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "Dodávka" - -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "Dodávka převzata" - -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "Faktura" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" -msgstr "Žádná položka k dodání" - -#: inc/reception.class.php:350 -msgid "Delivered items" -msgstr "Dodané položky" - -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" -msgstr "Převzít dodávku položky" - -#: inc/reception.class.php:609 -msgid "Waiting for delivery" -msgstr "Čeká na dodání" - -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" -msgstr "Nedostatek položek k dodání" - -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" -msgstr "Položka byla úspěšně převzata" - -#: inc/reception.class.php:784 -msgid "Item already taken delivery" -msgstr "Položka už byla převzata" - -#: inc/reception.class.php:950 -msgid "Item delivered" -msgstr "Položka dodána" - -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" -msgstr "Číslo faktury je povinné" - -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" -msgstr "Použít tento model" - -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" -msgstr "Použít tento podpis" - -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 -msgid "Order item" -msgstr "Položka objednávky" - #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "Název produktu" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "Produktová reference výrobce" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "Analytická povaha" @@ -586,6 +566,14 @@ msgstr "Některé kolonky nelze měnit, protože patří do objednávky" msgid "Add to the order from the catalog" msgstr "Přidat do objednávky z katalogu" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Produktová reference" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "Vyberte dodavatele" @@ -602,6 +590,11 @@ msgstr "Přidat referenci" msgid "An analytic nature is mandatory !" msgstr "Analytická povaha je povinná!" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "Žádná položka k dodání" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -622,12 +615,6 @@ msgstr "Opravdu chcete smazat tyto údaje? Dodané položky nebudou propojeny s msgid "Discounted price tax free" msgstr "Cena po slevě bez DPH" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "Cena celkem" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "Informace o objednávce" @@ -640,305 +627,315 @@ msgstr "Stav platby" msgid "Paid value" msgstr "Zaplacená hodnota" -#: inc/billstate.class.php:59 -msgid "Being paid" -msgstr "Zaplaceno" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Faktura" -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "Neuhrazeno" +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "Seznam referencí" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" -msgstr "Požadavek na ověření objednávky" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "Nelze vytvořit referenci bez názvu" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" -msgstr "Objednávka ověřena" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "Nelze vytvořit referenci bez typu" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" -msgstr "Zpožděné objednávky" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "Reference s tímto názvem už existuje" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" -msgstr "Žádná položka k vytvoření" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "Používané reference" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" -msgstr "Komentář ověření" +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "Kopie z" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" -msgstr "Ověření bylo úspěšně zrušeno" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "Vyberte požadovaný typ položky" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" -msgstr "Editor ověření" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "Zobrazit dle typu položky" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "Kopírovat referenci" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "Nemůžete odstranit tento stav" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "Návrh" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "Čeká na schválení" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Ověřena" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "Dodávána" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Dodána" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "Zrušena" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Uhrazena" #: inc/link.class.php:48 msgid "Generation" msgstr "Vytváření" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "Vytvořit položku" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "Propojit s existující položkou" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "Smazat propojení položky" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "Nelze propojit více položek k jednomu řádku podrobností" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "Nelze propojit položky, které nebyly dodány" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "Není přiřazena žádná položka" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "Položka byla propojena s objednávkou" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "Položka je už propojená s jinou" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "Položka byla odpojena z objednávky" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "Jeden nebo několik označených řádků nemá připojené položky" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "Položka byla vytvořena objednávkou" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "Položka byla úspěšně vybrána" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "Vytváření objednávky" - -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "Ověření objednávky" - -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "Zrušit objednávku" - -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "Upravit ověřenou objednávku" - -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "Vytvořit objednávku bez ověření" - -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "Poštovné/balné" - -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" -msgstr "Doručeno pozdě" +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "Nastavení zásuvného modulu" -#: inc/order.class.php:584 -msgid "Account Section" -msgstr "Sekce účtu" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "Výchozí DPH" -#: inc/order.class.php:636 -msgid "Validation" -msgstr "Ověření" +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "Použít ověřovací proces" -#: inc/order.class.php:642 -msgid "Purchase order" -msgstr "Nákupní objednávka" +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "Vytvoření objednávky ve formátu ODT" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" -msgstr "Číslo objednávky je povinné!" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "Zapnout hodnocení kvality dodavatele" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" -msgstr "Sekce účtu je povinná!" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "Zobrazit informace o dodavateli objednávky" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." -msgstr "Datum objednávky musí být v mezích zadaných pro vybraný rozpočet." +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "Barva kterou zobrazit při překročení odhadovaného data doručení" -#: inc/order.class.php:1096 -msgid "Due date overtaken" -msgstr "Překročen předpokládaný termín" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" +msgstr "Kopírovat dokumenty objednávky do vytvářené nové položky" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" -msgstr "Cena bez daně" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "Výchozí hlavička při přidání dokumentu k objednávce" -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" -msgstr "Cena bez daně včetně poštovného/balného" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "Skrýt neaktivní rozpočty" -#: inc/order.class.php:1534 -msgid "Validation process" -msgstr "Ověřovací proces" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" +msgstr "Přenášet změny rozpočtu na související položky" -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" -msgstr "Opravdu chcete zrušit tuto objednávku? Tato možnost je nevratná!" +#: inc/config.class.php:212 +msgid "Display account section on order form" +msgstr "Zobrazovat sekci účtu ve formuláři objednávky" -#: inc/order.class.php:1560 -msgid "Validate order" -msgstr "Ověření objednávky" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" +msgstr "Ve formuláři objednávky je povinná sekce účtu" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" -msgstr "Chcete zrušit už schválené ověření?" +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "Použít volné refrence" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" -msgstr "Zrušit žádost o ověření" +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "Přejmenovat dokumenty přidané v pořadí" -#: inc/order.class.php:1574 -msgid "Ask for validation" -msgstr "Dotaz na ověření" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "Automatické akce při doručení" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" -msgstr "Skutečně chcete upravit objednávku?" +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "Zobrazovat analytickou povahu ve formuláři položky" -#: inc/order.class.php:1582 -msgid "Edit order" -msgstr "Upravit objednávku" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "Nastavit ve formuláři položky analytickou povahu jako povinnou" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." -msgstr "Do objednávky je třeba přidat alespoň jednoho zařízení." +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "Zapnout automatické vytváření" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" -msgstr "V předvolbách je třeba vybrat model." +#: inc/config.class.php:269 +msgid "Asked" +msgstr "Poptáváno" -#: inc/order.class.php:1681 -msgid "Invoice address" -msgstr "Fakturační adresa" +#: inc/config.class.php:275 +msgid "Default state" +msgstr "Výchozí stav" -#: inc/order.class.php:1716 -msgid "Delivery address" -msgstr "Dodací adresa" +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "Přidat umístění objednávky k položce" -#: inc/order.class.php:1726 -msgid "The" -msgstr "Ta" +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "Přidat fakturační údaje k položce" -#: inc/order.class.php:1728 -msgid "Issuer order" -msgstr "Objednávku vystavil" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "Výchozí název" -#: inc/order.class.php:1746 -msgid "Recipient" -msgstr "Příjemce" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "Výchozí sériové číslo" -#: inc/order.class.php:1749 -msgid "Designation" -msgstr "Označení" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "Výchozí inventární číslo" -#: inc/order.class.php:1751 -msgid "Unit price" -msgstr "Cena za jednotku" +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "Životní cyklus objednávky" -#: inc/order.class.php:1753 -msgid "Discount rate" -msgstr "Sleva" +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "Stav před ověřením" -#: inc/order.class.php:1754 -msgid "Sum tax free" -msgstr "Celkem bez DPH" +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "Stav čekání na ověření" -#: inc/order.class.php:1881 -msgid "€" -msgstr "Kč" +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "Stav ověřené objednávky" -#: inc/order.class.php:1882 -msgid "Signature of issuing order" -msgstr "Podpis vystavitele objednávky" +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "Stav dodávané objednávky" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" -msgstr "Propojené objednávky" +#: inc/config.class.php:382 +msgid "Order delivered state" +msgstr "Stav dodané objednávky" -#: inc/order.class.php:1994 -msgid "Unlink" -msgstr "Rozpojit" +#: inc/config.class.php:392 +msgid "Order paied state" +msgstr "Stav uhrazené objednávky" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." -msgstr "Celková hodnota objednávek spojených s tímto rozpočtem je větší než jeho výše." +#: inc/config.class.php:402 +msgid "Canceled order state" +msgstr "Stav zrušené objednávky" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." -msgstr "Celková hodnota objednávek spojených s tímto rozpočtem je rovna jeho výši." +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "Číslo faktury je povinné" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" -msgstr "Statistika doručení" +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "Dodávka" -#: inc/order_supplier.class.php:309 -msgid "No specified status" -msgstr "Neurčený stav" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "Dodávka převzata" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" -msgstr "Nelze vytvořit referenci bez názvu" +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "Dodané položky" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" -msgstr "Nelze vytvořit referenci bez typu" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "Čeká na dodání" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" -msgstr "Reference s tímto názvem už existuje" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "Nedostatek položek k dodání" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" -msgstr "Používané reference" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "Položka byla úspěšně převzata" -#: inc/reference.class.php:838 -msgid "Copy of" -msgstr "Kopie z" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "Položka už byla převzata" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" -msgstr "Vyberte požadovaný typ položky" +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "Položka dodána" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" -msgstr "Zobrazit dle typu položky" +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "Zaplaceno" -#: inc/reference.class.php:993 -msgid "Copy reference" -msgstr "Kopírovat referenci" +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "Neuhrazeno" diff --git a/locales/de_DE.mo b/locales/de_DE.mo index 26e0aa040d..f62f3f4512 100644 Binary files a/locales/de_DE.mo and b/locales/de_DE.mo differ diff --git a/locales/de_DE.po b/locales/de_DE.po index 12c4913e8b..c5088fc18b 100644 --- a/locales/de_DE.po +++ b/locales/de_DE.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: 2019-10-17 12:51+0000\n" "Last-Translator: Bernd Bischof \n" "Language-Team: German (Germany) (http://www.transifex.com/teclib/glpi-plugin-order/language/de_DE/)\n" @@ -19,42 +19,114 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" -msgstr "Bestellinformationen" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Plugin installation oder upgrade" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" -msgstr "Bestelldatum" +#: hook.php:88 +msgid "Can't create folder" +msgstr "Ordner kann nicht angelegt werden" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" -msgstr "Lieferort" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "Fehler beim Kopieren von Datei %1$snach %2$s" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "MwSt" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Zahlungskonditionen" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Bestellstatus" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Other type of item" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Lieferstatus" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Rechnungsstatus" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Rechnungstyp" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Bestellungen" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "Name der Bestellung" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "Bestellnummer" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "Vorrausichtlich bis zum" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Bestellung" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "Lieferinformationen" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "Bestelldatum" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "Lieferort" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "Bestellungen insgesamt" @@ -63,6 +135,15 @@ msgstr "Bestellungen insgesamt" msgid "Late orders total" msgstr "Späten Bestellungen insgesamt" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "Bestellinformationen" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "Vorrausichtlich bis zum" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -72,44 +153,20 @@ msgstr "Angebot" msgid "Delete" msgstr "Gelöscht" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "Detail Lieferant" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "Bestellverwaltung" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "Bestellungen" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "Lieferant für eine Referenz" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "Liste der Produktreferenzen verwalten" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "Rechnungen" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "Bestellung ist freigegeben worden" @@ -140,9 +197,9 @@ msgid "Add reference" msgstr "Referenz hinzufügen" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "Menge" @@ -163,417 +220,340 @@ msgstr "Referenz entfernen" msgid "No item selected" msgstr "Kein Gerät wurde ausgewählt" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" -msgstr "keine MwSt" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "Lieferant für eine Referenz" -#: hook.php:46 -msgid "Plugin installation or upgrade" -msgstr "Plugin installation oder upgrade" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Liste der Produktreferenzen verwalten" -#: hook.php:88 -msgid "Can't create folder" -msgstr "Ordner kann nicht angelegt werden" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "Rechnungen" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" -msgstr "Fehler beim Kopieren von Datei %1$snach %2$s" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" +msgstr "Vorlage auswählen" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" -msgstr "MwSt" +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" +msgstr "Unterschrift auswählen" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" -msgstr "Zahlungskonditionen" +#: inc/referencefree.class.php:39 +msgid "Reference free" +msgstr "ohne Produktreferenz" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" -msgstr "Bestellstatus" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "Versandstatistik" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "Other type of item" +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "Nicht spezifizierter Status" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" -msgstr "Lieferstatus" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "Lieferqualität" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" -msgstr "Rechnungsstatus" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "Notiz" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "Rechnungstyp" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "Kommentar zur Umfrage" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" msgstr "" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" msgstr "" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "Name der Bestellung" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "" -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "Bestellung" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" +msgstr "" -#: inc/referencefree.class.php:39 -msgid "Reference free" -msgstr "ohne Produktreferenz" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "" -#: inc/config.class.php:103 -msgid "Plugin configuration" -msgstr "Plugin Einstellungen" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "Standard MwSt" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" +msgstr "" -#: inc/config.class.php:118 -msgid "Use validation process" -msgstr "Genehmigungsprozess benutzen" +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "Dokumenten Kategorie" -#: inc/config.class.php:125 -msgid "Order generation in ODT" -msgstr "Bestellungen in ODT generieren" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "Dokumenten Kategorie Prefix" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" -msgstr "Lieferanten Zufriedenheit aktivieren" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" +msgstr "Bestellschein erzeugen" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" -msgstr "Lieferanten Information anzeigen" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "Geräte empfangen" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" -msgstr "Farbe bei überfälliger Bestellung" +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "Bestellung freigeben" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" -msgstr "Dokumente der Bestellung kopieren, wenn Objekt erstellt wird" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" +msgstr "Bestellung stornieren" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" -msgstr "Standard Überschrift, wenn Dokument zu einer Bestllung hinzugefügt wird" +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "Freigegebene Bestellung ändern" + +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "Bestellung ohne Bestätigung erstellen" + +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" +msgstr "Versand" + +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" +msgstr "Bestellung ist verspätet" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Ersteller Gruppe" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" msgstr "Empfänger Gruppe" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" -msgstr "verstecke inaktive Budgets" - -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" -msgstr "Übermittle Budget-Änderungen an verknüpfte Geräte" +#: inc/order.class.php:584 +msgid "Account Section" +msgstr "" -#: inc/config.class.php:212 -msgid "Display account section on order form" +#: inc/order.class.php:636 +msgid "Validation" +msgstr "Freigabe" + +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "Auftrag" + +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "Die Bestellnummer ist Pflicht!" + +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" msgstr "" -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." msgstr "" -#: inc/config.class.php:226 -msgid "Use free references" -msgstr "verwende freie Artikelauswahl" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "keine MwSt" -#: inc/config.class.php:233 -msgid "Rename documents added in order" -msgstr "Dokumente in Bestellung umbenennen" +#: inc/order.class.php:1096 +msgid "Due date overtaken" +msgstr "Due date overtaken" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" -msgstr "Automatische Aktion wenn geliefert wurde" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" +msgstr "Preis ohne Steuern" -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" -msgstr "" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" +msgstr "Preis ohne Steuern mit Versand" -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" -msgstr "" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "Gesamtpreis Brutto" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" -msgstr "Aktiviere automatische Generierung" +#: inc/order.class.php:1534 +msgid "Validation process" +msgstr "Freigabeprozedur einer Bestellung" -#: inc/config.class.php:269 -msgid "Asked" -msgstr "angefragt" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "Wollen Sie diese Bestellung wirklich stornieren? Dies kann nicht rückgängig gemacht werden!" -#: inc/config.class.php:275 -msgid "Default state" -msgstr "Standardwert" +#: inc/order.class.php:1560 +msgid "Validate order" +msgstr "Bestellung freigeben" -#: inc/config.class.php:286 -msgid "Add order location to item" -msgstr "Standort zum Artikel hinzufügen" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" +msgstr "Wollen Sie den Freigabeantrag wirklich rückgängig machen?" -#: inc/config.class.php:293 -msgid "Add billing details to item" -msgstr "Rechnungsdetails hinzufügen" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" +msgstr "Freigabeantrag rückgängig machen" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" -msgstr "Stadardname" +#: inc/order.class.php:1574 +msgid "Ask for validation" +msgstr "Bestellung freigeben lassen" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" -msgstr "Standard Seriennummer" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" +msgstr "Wollen Sie die Bestellung wirklich Bearbeiten?" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "Standard Inventarnummer" +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "Bestellung bearbeiten" -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." +msgstr "Mindestens eine Bestellposition wird benötigt." -#: inc/config.class.php:342 -msgid "State before validation" -msgstr "Status vor Überprüfung" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" +msgstr "" -#: inc/config.class.php:352 -msgid "Waiting for validation state" -msgstr "Warten auf überprüfungsstatus" +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "Rechnungsadresse" -#: inc/config.class.php:362 -msgid "Validated order state" -msgstr "Bestellstatus Überprüfung" +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "Lieferadresse" -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "Bestellung wird geliefert Status" +#: inc/order.class.php:1726 +msgid "The" +msgstr "Der" -#: inc/config.class.php:382 -msgid "Order delivered state" -msgstr "Bestellung geliefert Status" +#: inc/order.class.php:1728 +msgid "Issuer order" +msgstr "Auftraggeber" -#: inc/config.class.php:392 -msgid "Order paied state" -msgstr "Bestellung bezahlt Status" +#: inc/order.class.php:1746 +msgid "Recipient" +msgstr "Empfänger" -#: inc/config.class.php:402 -msgid "Canceled order state" -msgstr "Bestellung abgebrochen" +#: inc/order.class.php:1749 +msgid "Designation" +msgstr "Beschreibung" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" -msgstr "Lieferqualität" +#: inc/order.class.php:1751 +msgid "Unit price" +msgstr "Stückpreis" -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" -msgstr "Notiz" +#: inc/order.class.php:1753 +msgid "Discount rate" +msgstr "Rabatt" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" -msgstr "Kommentar zur Umfrage" +#: inc/order.class.php:1754 +msgid "Sum tax free" +msgstr "Nettobetrag" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" -msgstr "" +#: inc/order.class.php:1881 +msgid "€" +msgstr "€" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" -msgstr "" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" +msgstr "Unterschrift des Auftraggebers" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" -msgstr "" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "Verbundene Bestellungen" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" -msgstr "" +#: inc/order.class.php:1994 +msgid "Unlink" +msgstr "Verknüpfung entfernen" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." msgstr "" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." msgstr "" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" -msgstr "" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "Freigabeantrag der Bestellung" -#: inc/documentcategory.class.php:39 -msgid "Document category" -msgstr "Dokumenten Kategorie" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "Freigabe der Bestellung" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" -msgstr "Dokumenten Kategorie Prefix" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "Nachbestellungen" -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" -msgstr "" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "Es kann kein Gerät generiert werden" -#: inc/orderstate.class.php:87 -msgid "Draft" -msgstr "In Bearbeitung" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "Kommentar der Freigabe" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" -msgstr "Freigabe pendent" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "Freigabe wurde rückgängig gemacht" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "Genehmigt" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "Bearbeiter der Validierung" -#: inc/orderstate.class.php:90 -msgid "Being delivered" -msgstr "Wird geliefert" +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" +msgstr "Bestellartikel" -#: inc/orderstate.class.php:91 -msgid "Delivered" -msgstr "Geliefert" - -#: inc/orderstate.class.php:92 -msgid "Canceled" -msgstr "Storniert" - -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "bezahlt" - -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" -msgstr "Produktreferenz des Lieferanten" - -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/order_item.class.php:115 inc/order_item.class.php:369 #: inc/order_item.class.php:476 inc/order_item.class.php:801 #: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Nettostückpreis" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "Produktreferenz" - -#: inc/reference_supplier.class.php:476 -msgid "List references" -msgstr "Liste der Referenzen" - -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "Lieferung" - -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "Empfangen" - -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "Rechnung" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" -msgstr "Kein Gerät kann empfangen werden" - -#: inc/reception.class.php:350 -msgid "Delivered items" -msgstr "Empfangene Geräte" - -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" -msgstr "Geräte empfangen" - -#: inc/reception.class.php:609 -msgid "Waiting for delivery" -msgstr "warten auf Lieferung" - -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" -msgstr "Es gibt nicht genügend zu empfangene Geräte" - -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" -msgstr "Geräte erfolgreich empfangen" - -#: inc/reception.class.php:784 -msgid "Item already taken delivery" -msgstr "Bereits empfangene Geräte" - -#: inc/reception.class.php:950 -msgid "Item delivered" -msgstr "Warenempfang" - -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" -msgstr "Eine Rechnungsnummer ist notwendig" - -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" -msgstr "Vorlage auswählen" - -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" -msgstr "Unterschrift auswählen" - -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 -msgid "Order item" -msgstr "Bestellartikel" - #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "Produktbezeichnung" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "Produktreferenz des Lieferanten" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "" @@ -586,6 +566,14 @@ msgstr "Einige Felder können nicht verändert werden: sie stammen aus einer Bes msgid "Add to the order from the catalog" msgstr "aus Produktreferenz-Katalog zur Bestellung hinzufügen" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Produktreferenz" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "Lieferanten wählen" @@ -602,6 +590,11 @@ msgstr "Produktreferenz hinzufügen" msgid "An analytic nature is mandatory !" msgstr "" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "Kein Gerät kann empfangen werden" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -622,12 +615,6 @@ msgstr "Wollen Sie wirklich diese Positionen entfernen? Bereits gelieferte Gerä msgid "Discounted price tax free" msgstr "Nettostückpreis mit Rabatt" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "Gesamtpreis Brutto" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "Informationen über die Bestellung" @@ -640,305 +627,315 @@ msgstr "Bezahlstatus" msgid "Paid value" msgstr "" -#: inc/billstate.class.php:59 -msgid "Being paid" -msgstr "wird bezahlt" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Rechnung" -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "nicht bezahlt" +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "Liste der Referenzen" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" -msgstr "Freigabeantrag der Bestellung" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "Eine Referenz ohne Namen kann nicht erzeugt werden" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" -msgstr "Freigabe der Bestellung" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "Eine Referenz ohne Typ kann nicht erzeugt werden" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" -msgstr "Nachbestellungen" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "Eine Referenz mit gleichem Namen existiert bereits" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" -msgstr "Es kann kein Gerät generiert werden" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "Aktuell benutzte Referenzen" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" -msgstr "Kommentar der Freigabe" +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "Kopie von" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" -msgstr "Freigabe wurde rückgängig gemacht" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" -msgstr "Bearbeiter der Validierung" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "Verweis kopieren" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "In Bearbeitung" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "Freigabe pendent" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Genehmigt" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "Wird geliefert" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Geliefert" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "Storniert" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "bezahlt" #: inc/link.class.php:48 msgid "Generation" msgstr "Generieren" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "Verbundene Geräte generieren" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "Mit bereits existierendem Gerät verbinden" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "Verbindung mit Gerät entfernen" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "Ein Gerät kann nicht mehreren Positionen zugewiesen werden" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "Noch nicht empfangene Geräte können nicht verbunden werden" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "Keine verbundene Geräte" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "Mit Bestellung verbundene Geräte" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "Bereits im Inventar aufgenommene Geräte" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "Von Bestellung gelöste Geräte" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "Eine oder mehrere ausgewählte Positionen wurden noch keinem Gerät zugeordnet" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "Aus Bestellung erzeugte Geräte" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "Geräte erfolgreich erzeugt" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "Bestellschein erzeugen" +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "Plugin Einstellungen" -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "Bestellung freigeben" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "Standard MwSt" -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "Bestellung stornieren" +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "Genehmigungsprozess benutzen" -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "Freigegebene Bestellung ändern" +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "Bestellungen in ODT generieren" -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "Bestellung ohne Bestätigung erstellen" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "Lieferanten Zufriedenheit aktivieren" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "Versand" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "Lieferanten Information anzeigen" -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" -msgstr "Bestellung ist verspätet" +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "Farbe bei überfälliger Bestellung" -#: inc/order.class.php:584 -msgid "Account Section" -msgstr "" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" +msgstr "Dokumente der Bestellung kopieren, wenn Objekt erstellt wird" -#: inc/order.class.php:636 -msgid "Validation" -msgstr "Freigabe" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "Standard Überschrift, wenn Dokument zu einer Bestllung hinzugefügt wird" -#: inc/order.class.php:642 -msgid "Purchase order" -msgstr "Auftrag" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "verstecke inaktive Budgets" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" -msgstr "Die Bestellnummer ist Pflicht!" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" +msgstr "Übermittle Budget-Änderungen an verknüpfte Geräte" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" +#: inc/config.class.php:212 +msgid "Display account section on order form" msgstr "" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" msgstr "" -#: inc/order.class.php:1096 -msgid "Due date overtaken" -msgstr "Due date overtaken" - -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" -msgstr "Preis ohne Steuern" - -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" -msgstr "Preis ohne Steuern mit Versand" - -#: inc/order.class.php:1534 -msgid "Validation process" -msgstr "Freigabeprozedur einer Bestellung" - -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" -msgstr "Wollen Sie diese Bestellung wirklich stornieren? Dies kann nicht rückgängig gemacht werden!" - -#: inc/order.class.php:1560 -msgid "Validate order" -msgstr "Bestellung freigeben" - -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" -msgstr "Wollen Sie den Freigabeantrag wirklich rückgängig machen?" +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "verwende freie Artikelauswahl" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" -msgstr "Freigabeantrag rückgängig machen" +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "Dokumente in Bestellung umbenennen" -#: inc/order.class.php:1574 -msgid "Ask for validation" -msgstr "Bestellung freigeben lassen" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "Automatische Aktion wenn geliefert wurde" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" -msgstr "Wollen Sie die Bestellung wirklich Bearbeiten?" +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "" -#: inc/order.class.php:1582 -msgid "Edit order" -msgstr "Bestellung bearbeiten" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." -msgstr "Mindestens eine Bestellposition wird benötigt." +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "Aktiviere automatische Generierung" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" -msgstr "" +#: inc/config.class.php:269 +msgid "Asked" +msgstr "angefragt" -#: inc/order.class.php:1681 -msgid "Invoice address" -msgstr "Rechnungsadresse" +#: inc/config.class.php:275 +msgid "Default state" +msgstr "Standardwert" -#: inc/order.class.php:1716 -msgid "Delivery address" -msgstr "Lieferadresse" +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "Standort zum Artikel hinzufügen" -#: inc/order.class.php:1726 -msgid "The" -msgstr "Der" +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "Rechnungsdetails hinzufügen" -#: inc/order.class.php:1728 -msgid "Issuer order" -msgstr "Auftraggeber" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "Stadardname" -#: inc/order.class.php:1746 -msgid "Recipient" -msgstr "Empfänger" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "Standard Seriennummer" -#: inc/order.class.php:1749 -msgid "Designation" -msgstr "Beschreibung" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "Standard Inventarnummer" -#: inc/order.class.php:1751 -msgid "Unit price" -msgstr "Stückpreis" +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "" -#: inc/order.class.php:1753 -msgid "Discount rate" -msgstr "Rabatt" +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "Status vor Überprüfung" -#: inc/order.class.php:1754 -msgid "Sum tax free" -msgstr "Nettobetrag" +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "Warten auf überprüfungsstatus" -#: inc/order.class.php:1881 -msgid "€" -msgstr "€" +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "Bestellstatus Überprüfung" -#: inc/order.class.php:1882 -msgid "Signature of issuing order" -msgstr "Unterschrift des Auftraggebers" +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "Bestellung wird geliefert Status" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" -msgstr "Verbundene Bestellungen" +#: inc/config.class.php:382 +msgid "Order delivered state" +msgstr "Bestellung geliefert Status" -#: inc/order.class.php:1994 -msgid "Unlink" -msgstr "Verknüpfung entfernen" +#: inc/config.class.php:392 +msgid "Order paied state" +msgstr "Bestellung bezahlt Status" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." -msgstr "" +#: inc/config.class.php:402 +msgid "Canceled order state" +msgstr "Bestellung abgebrochen" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." -msgstr "" +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "Eine Rechnungsnummer ist notwendig" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" -msgstr "Versandstatistik" +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "Lieferung" -#: inc/order_supplier.class.php:309 -msgid "No specified status" -msgstr "Nicht spezifizierter Status" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "Empfangen" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" -msgstr "Eine Referenz ohne Namen kann nicht erzeugt werden" +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "Empfangene Geräte" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" -msgstr "Eine Referenz ohne Typ kann nicht erzeugt werden" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "warten auf Lieferung" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" -msgstr "Eine Referenz mit gleichem Namen existiert bereits" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "Es gibt nicht genügend zu empfangene Geräte" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" -msgstr "Aktuell benutzte Referenzen" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "Geräte erfolgreich empfangen" -#: inc/reference.class.php:838 -msgid "Copy of" -msgstr "Kopie von" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "Bereits empfangene Geräte" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" -msgstr "" +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "Warenempfang" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" -msgstr "" +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "wird bezahlt" -#: inc/reference.class.php:993 -msgid "Copy reference" -msgstr "Verweis kopieren" +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "nicht bezahlt" diff --git a/locales/en_GB.mo b/locales/en_GB.mo index 3f8cba50e9..d7bc9129eb 100644 Binary files a/locales/en_GB.mo and b/locales/en_GB.mo differ diff --git a/locales/en_GB.po b/locales/en_GB.po index 07f92e583e..bab6de7fdc 100644 --- a/locales/en_GB.po +++ b/locales/en_GB.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: 2018-12-17 15:03+0000\n" "Last-Translator: Cédric Anne\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/teclib/glpi-plugin-order/language/en_GB/)\n" @@ -20,42 +20,114 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" -msgstr "Orders delivery" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Plugin installation or upgrade" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" -msgstr "Date of order" +#: hook.php:88 +msgid "Can't create folder" +msgstr "Can't create folder" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" -msgstr "Delivery location" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "Cannot copy file %1$s to %2$s" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "VAT" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Payment conditions" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Order status" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Other type of item" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Delivery status" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Bill status" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Bill type" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "Analytic nature" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "Account section" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Orders" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "Order name" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "Order number" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "Estimated due date" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Order" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "Orders delivery statistics" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "Date of order" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "Delivery location" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "Orders total" @@ -64,6 +136,15 @@ msgstr "Orders total" msgid "Late orders total" msgstr "Late orders total" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "Orders delivery" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "Estimated due date" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -73,44 +154,20 @@ msgstr "Quote number" msgid "Delete" msgstr "Delete" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "Supplier Detail" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "Orders management" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "Orders" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "Supplier for the reference" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "Products references" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "Bills" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "Order is validated" @@ -141,9 +198,9 @@ msgid "Add reference" msgstr "Add reference" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "Quantity" @@ -164,417 +221,340 @@ msgstr "Remove reference" msgid "No item selected" msgstr "No item selected" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" -msgstr "No VAT" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "Supplier for the reference" -#: hook.php:46 -msgid "Plugin installation or upgrade" -msgstr "Plugin installation or upgrade" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Products references" -#: hook.php:88 -msgid "Can't create folder" -msgstr "Can't create folder" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "Bills" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" -msgstr "Cannot copy file %1$s to %2$s" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" +msgstr "Use this model" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" -msgstr "VAT" +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" +msgstr "Use this sign" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" -msgstr "Payment conditions" +#: inc/referencefree.class.php:39 +msgid "Reference free" +msgstr "Reference free" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" -msgstr "Order status" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "Delivery statistics" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "Other type of item" +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "No specified status" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" -msgstr "Delivery status" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "Supplier quality" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" -msgstr "Bill status" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "Note" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "Bill type" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "Comment on survey" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" -msgstr "Analytic nature" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" +msgstr "Administrative followup quality (contracts, bills, mail, etc.)" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" -msgstr "Account section" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" +msgstr "Commercial followup quality, visits, responseness" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "Order name" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "Contacts availability" -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "Order" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" +msgstr "Quality of supplier intervention" -#: inc/referencefree.class.php:39 -msgid "Reference free" -msgstr "Reference free" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "Reliability about annouced delays" -#: inc/config.class.php:103 -msgid "Plugin configuration" -msgstr "Plugin configuration" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "Final supplier note" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "Default VAT" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" +msgstr "Average mark up to 10 (X points / 5)" -#: inc/config.class.php:118 -msgid "Use validation process" -msgstr "Use validation process" +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "Document category" -#: inc/config.class.php:125 -msgid "Order generation in ODT" -msgstr "Order generation in ODT" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "Document category prefix" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" -msgstr "Activate suppliers quality satisfaction" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" +msgstr "Order Generation" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" -msgstr "Display order's suppliers informations" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "Take item delivery" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" -msgstr "Color to be displayed when order due date is overtaken" +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "Order validation" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" -msgstr "Copy order documents when a new item is created" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" +msgstr "Cancel order" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" -msgstr "Default heading when adding a document to an order" +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "Edit a validated order" + +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "Generate order without validation" + +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" +msgstr "Postage" + +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" +msgstr "Order is late" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Author group" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" msgstr "Recipient group" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" -msgstr "Do not display expired budgets" +#: inc/order.class.php:584 +msgid "Account Section" +msgstr "Account Section" -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" -msgstr "Transmit budget change to linked assets" - -#: inc/config.class.php:212 -msgid "Display account section on order form" -msgstr "Display account section on order form" - -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" -msgstr "Set account section as mandatory on order form" +#: inc/order.class.php:636 +msgid "Validation" +msgstr "Validation" -#: inc/config.class.php:226 -msgid "Use free references" -msgstr "Use free references" +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "Purchase order" -#: inc/config.class.php:233 -msgid "Rename documents added in order" -msgstr "Rename documents added in order" +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "An order number is mandatory !" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" -msgstr "Automatic actions when delivery" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" +msgstr "An account section is mandatory !" -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" -msgstr "Display analytic nature on item form" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." +msgstr "The order date must be within the dates entered for the selected budget." -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" -msgstr "Set analytic nature as mandatory on item form" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "No VAT" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" -msgstr "Enable automatic generation" +#: inc/order.class.php:1096 +msgid "Due date overtaken" +msgstr "Due date overtaken" -#: inc/config.class.php:269 -msgid "Asked" -msgstr "Asked" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" +msgstr "Price tax free" -#: inc/config.class.php:275 -msgid "Default state" -msgstr "Default state" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" +msgstr "Price tax free with postage" -#: inc/config.class.php:286 -msgid "Add order location to item" -msgstr "Add order location to item" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "Price ATI" -#: inc/config.class.php:293 -msgid "Add billing details to item" -msgstr "Add billing details to item" +#: inc/order.class.php:1534 +msgid "Validation process" +msgstr "Validation process" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" -msgstr "Default name" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "Do you really want to cancel this order ? This option is irreversible !" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" -msgstr "Default serial number" +#: inc/order.class.php:1560 +msgid "Validate order" +msgstr "Validate order" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "Default inventory number" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" +msgstr "Do you want to cancel the validation approval ?" -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "Order lifecycle" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" +msgstr "Cancel ask for validation" -#: inc/config.class.php:342 -msgid "State before validation" -msgstr "State before validation" +#: inc/order.class.php:1574 +msgid "Ask for validation" +msgstr "Ask for validation" -#: inc/config.class.php:352 -msgid "Waiting for validation state" -msgstr "Waiting for validation state" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" +msgstr "Do you really want to edit the order ?" -#: inc/config.class.php:362 -msgid "Validated order state" -msgstr "Validated order state" +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "Edit order" -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "Order being delivered state" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." +msgstr "Thanks to add at least one equipment on your order." -#: inc/config.class.php:382 -msgid "Order delivered state" -msgstr "Order delivered state" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" +msgstr "Thanks to select a model into your preferences" -#: inc/config.class.php:392 -msgid "Order paied state" -msgstr "Order paied state" +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "Invoice address" -#: inc/config.class.php:402 -msgid "Canceled order state" -msgstr "Canceled order state" +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "Delivery address" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" -msgstr "Supplier quality" +#: inc/order.class.php:1726 +msgid "The" +msgstr "The" -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" -msgstr "Note" +#: inc/order.class.php:1728 +msgid "Issuer order" +msgstr "Issuer order" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" -msgstr "Comment on survey" +#: inc/order.class.php:1746 +msgid "Recipient" +msgstr "Recipient" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" -msgstr "Administrative followup quality (contracts, bills, mail, etc.)" +#: inc/order.class.php:1749 +msgid "Designation" +msgstr "Designation" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" -msgstr "Commercial followup quality, visits, responseness" +#: inc/order.class.php:1751 +msgid "Unit price" +msgstr "Unit price" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" -msgstr "Contacts availability" +#: inc/order.class.php:1753 +msgid "Discount rate" +msgstr "Discount rate" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" -msgstr "Quality of supplier intervention" +#: inc/order.class.php:1754 +msgid "Sum tax free" +msgstr "Sum tax free" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" -msgstr "Reliability about annouced delays" +#: inc/order.class.php:1881 +msgid "€" +msgstr "€" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" -msgstr "Final supplier note" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" +msgstr "Signature of issuing order" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" -msgstr "Average mark up to 10 (X points / 5)" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "Linked orders" -#: inc/documentcategory.class.php:39 -msgid "Document category" -msgstr "Document category" +#: inc/order.class.php:1994 +msgid "Unlink" +msgstr "Unlink" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" -msgstr "Document category prefix" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." +msgstr "Total orders related with this budget is greater than its value." -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" -msgstr "You cannot remove this status" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." +msgstr "Total orders related with this budget is equal to its value." -#: inc/orderstate.class.php:87 -msgid "Draft" -msgstr "Draft" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "Request order validation" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" -msgstr "Waiting for approval" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "Order validated" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "Validated" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "Late orders" -#: inc/orderstate.class.php:90 -msgid "Being delivered" -msgstr "Being delivered" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "No item to generate" -#: inc/orderstate.class.php:91 -msgid "Delivered" -msgstr "Delivered" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "Comment of validation" -#: inc/orderstate.class.php:92 -msgid "Canceled" -msgstr "Canceled" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "Validation canceled successfully" -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "Paid" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "Editor of validation" -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" -msgstr "Manufacturer's product reference" +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" +msgstr "Order item" -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/order_item.class.php:115 inc/order_item.class.php:369 #: inc/order_item.class.php:476 inc/order_item.class.php:801 #: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Unit price tax free" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "Product reference" - -#: inc/reference_supplier.class.php:476 -msgid "List references" -msgstr "List references" - -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "Delivery" - -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "Taken delivery" - -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "Bill" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" -msgstr "No item to take delivery of" - -#: inc/reception.class.php:350 -msgid "Delivered items" -msgstr "Delivered items" - -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" -msgstr "Take item delivery" - -#: inc/reception.class.php:609 -msgid "Waiting for delivery" -msgstr "Waiting for delivery" - -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" -msgstr "Not enough items to deliver" - -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" -msgstr "Item successfully taken delivery" - -#: inc/reception.class.php:784 -msgid "Item already taken delivery" -msgstr "Item already taken delivery" - -#: inc/reception.class.php:950 -msgid "Item delivered" -msgstr "Item delivered" - -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" -msgstr "A bill number is mandatory" - -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" -msgstr "Use this model" - -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" -msgstr "Use this sign" - -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 -msgid "Order item" -msgstr "Order item" - #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "Product name" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "Manufacturer's product reference" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "Analytic Nature" @@ -587,6 +567,14 @@ msgstr "Some fields cannont be modified because they belong to an order" msgid "Add to the order from the catalog" msgstr "Add to the order from the catalog" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Product reference" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "Please select a supplier" @@ -603,6 +591,11 @@ msgstr "Add the reference" msgid "An analytic nature is mandatory !" msgstr "An analytic nature is mandatory !" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "No item to take delivery of" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -623,12 +616,6 @@ msgstr "Do you really want to delete these details ? Delivered items will not be msgid "Discounted price tax free" msgstr "Discounted price tax free" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "Price ATI" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "Order informations" @@ -641,305 +628,315 @@ msgstr "Payment status" msgid "Paid value" msgstr "Paid value" -#: inc/billstate.class.php:59 -msgid "Being paid" -msgstr "Being paid" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Bill" -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "Not paid" +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "List references" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" -msgstr "Request order validation" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "Cannot create reference without a name" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" -msgstr "Order validated" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "Cannot create reference without a type" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" -msgstr "Late orders" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "A reference with the same name still exists" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" -msgstr "No item to generate" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "Reference(s) in use" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" -msgstr "Comment of validation" +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "Copy of" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" -msgstr "Validation canceled successfully" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "Select the wanted item type" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" -msgstr "Editor of validation" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "View by item type" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "Copy reference" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "You cannot remove this status" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "Draft" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "Waiting for approval" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Validated" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "Being delivered" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Delivered" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "Canceled" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Paid" #: inc/link.class.php:48 msgid "Generation" msgstr "Generation" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "Generate item" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "Link to an existing item" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "Delete item link" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "Cannot link several items to one detail line" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "Cannot link items not delivered" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "No associated item" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "Item linked to order" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "Item already linked to another one" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "Item unlink form order" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "One or several selected rows haven't linked items" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "Item generated by using order" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "Item successfully selected" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "Order Generation" - -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "Order validation" - -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "Cancel order" - -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "Edit a validated order" - -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "Generate order without validation" - -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "Postage" - -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" -msgstr "Order is late" +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "Plugin configuration" -#: inc/order.class.php:584 -msgid "Account Section" -msgstr "Account Section" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "Default VAT" -#: inc/order.class.php:636 -msgid "Validation" -msgstr "Validation" +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "Use validation process" -#: inc/order.class.php:642 -msgid "Purchase order" -msgstr "Purchase order" +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "Order generation in ODT" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" -msgstr "An order number is mandatory !" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "Activate suppliers quality satisfaction" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" -msgstr "An account section is mandatory !" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "Display order's suppliers informations" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." -msgstr "The order date must be within the dates entered for the selected budget." +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "Color to be displayed when order due date is overtaken" -#: inc/order.class.php:1096 -msgid "Due date overtaken" -msgstr "Due date overtaken" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" +msgstr "Copy order documents when a new item is created" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" -msgstr "Price tax free" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "Default heading when adding a document to an order" -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" -msgstr "Price tax free with postage" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "Do not display expired budgets" -#: inc/order.class.php:1534 -msgid "Validation process" -msgstr "Validation process" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" +msgstr "Transmit budget change to linked assets" -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" -msgstr "Do you really want to cancel this order ? This option is irreversible !" +#: inc/config.class.php:212 +msgid "Display account section on order form" +msgstr "Display account section on order form" -#: inc/order.class.php:1560 -msgid "Validate order" -msgstr "Validate order" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" +msgstr "Set account section as mandatory on order form" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" -msgstr "Do you want to cancel the validation approval ?" +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "Use free references" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" -msgstr "Cancel ask for validation" +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "Rename documents added in order" -#: inc/order.class.php:1574 -msgid "Ask for validation" -msgstr "Ask for validation" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "Automatic actions when delivery" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" -msgstr "Do you really want to edit the order ?" +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "Display analytic nature on item form" -#: inc/order.class.php:1582 -msgid "Edit order" -msgstr "Edit order" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "Set analytic nature as mandatory on item form" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." -msgstr "Thanks to add at least one equipment on your order." +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "Enable automatic generation" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" -msgstr "Thanks to select a model into your preferences" +#: inc/config.class.php:269 +msgid "Asked" +msgstr "Asked" -#: inc/order.class.php:1681 -msgid "Invoice address" -msgstr "Invoice address" +#: inc/config.class.php:275 +msgid "Default state" +msgstr "Default state" -#: inc/order.class.php:1716 -msgid "Delivery address" -msgstr "Delivery address" +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "Add order location to item" -#: inc/order.class.php:1726 -msgid "The" -msgstr "The" +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "Add billing details to item" -#: inc/order.class.php:1728 -msgid "Issuer order" -msgstr "Issuer order" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "Default name" -#: inc/order.class.php:1746 -msgid "Recipient" -msgstr "Recipient" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "Default serial number" -#: inc/order.class.php:1749 -msgid "Designation" -msgstr "Designation" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "Default inventory number" -#: inc/order.class.php:1751 -msgid "Unit price" -msgstr "Unit price" +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "Order lifecycle" -#: inc/order.class.php:1753 -msgid "Discount rate" -msgstr "Discount rate" +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "State before validation" -#: inc/order.class.php:1754 -msgid "Sum tax free" -msgstr "Sum tax free" +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "Waiting for validation state" -#: inc/order.class.php:1881 -msgid "€" -msgstr "€" +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "Validated order state" -#: inc/order.class.php:1882 -msgid "Signature of issuing order" -msgstr "Signature of issuing order" +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "Order being delivered state" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" -msgstr "Linked orders" +#: inc/config.class.php:382 +msgid "Order delivered state" +msgstr "Order delivered state" -#: inc/order.class.php:1994 -msgid "Unlink" -msgstr "Unlink" +#: inc/config.class.php:392 +msgid "Order paied state" +msgstr "Order paied state" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." -msgstr "Total orders related with this budget is greater than its value." +#: inc/config.class.php:402 +msgid "Canceled order state" +msgstr "Canceled order state" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." -msgstr "Total orders related with this budget is equal to its value." +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "A bill number is mandatory" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" -msgstr "Delivery statistics" +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "Delivery" -#: inc/order_supplier.class.php:309 -msgid "No specified status" -msgstr "No specified status" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "Taken delivery" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" -msgstr "Cannot create reference without a name" +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "Delivered items" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" -msgstr "Cannot create reference without a type" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "Waiting for delivery" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" -msgstr "A reference with the same name still exists" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "Not enough items to deliver" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" -msgstr "Reference(s) in use" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "Item successfully taken delivery" -#: inc/reference.class.php:838 -msgid "Copy of" -msgstr "Copy of" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "Item already taken delivery" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" -msgstr "Select the wanted item type" +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "Item delivered" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" -msgstr "View by item type" +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "Being paid" -#: inc/reference.class.php:993 -msgid "Copy reference" -msgstr "Copy reference" +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "Not paid" diff --git a/locales/es_ES.mo b/locales/es_ES.mo index c54ce5186d..f896822ce3 100644 Binary files a/locales/es_ES.mo and b/locales/es_ES.mo differ diff --git a/locales/es_ES.po b/locales/es_ES.po index 866e8391d1..675277fd0b 100644 --- a/locales/es_ES.po +++ b/locales/es_ES.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Alexander J. Salas B. , 2016 +# 5b63a00e0726b96d7ef35c99d5553cd0_b787b5f <8bb2d0f7e8927228f17fba8639d787be_31711>, 2016 # Johan Cwiklinski , 2016 +# Lucas , 2020 # Miguel López , 2016 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" -"PO-Revision-Date: 2018-12-17 15:03+0000\n" -"Last-Translator: Cédric Anne\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" +"PO-Revision-Date: 2020-05-22 11:27+0000\n" +"Last-Translator: Lucas \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/teclib/glpi-plugin-order/language/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,42 +21,114 @@ msgstr "" "Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" -msgstr "ordendeentrega_reporte_título" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Instalación o actualización del Plugin" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" -msgstr "Fecha de pedido" +#: hook.php:88 +msgid "Can't create folder" +msgstr "" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" -msgstr "Lugar de entrega" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "IVA" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Condiciones de pago" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Estado del pedido" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Tipo de otros materiales" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Estado de entrega" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Estado de la factura" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Tipo de factura" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Gestionar pedidos" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "Nombre del pedido" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "Número de pedido" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "Estimated due date" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Pedido" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "informacióndeentrega_reporte_título" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "Fecha de pedido" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "Lugar de entrega" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "El total de pedidos" @@ -64,6 +137,15 @@ msgstr "El total de pedidos" msgid "Late orders total" msgstr "Órdenes tardías en total" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "ordendeentrega_reporte_título" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "Estimated due date" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -73,44 +155,20 @@ msgstr "Número de presupuesto" msgid "Delete" msgstr "Suprimir" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "Detalle de proveedor" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "Gestión de Pedidos" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "Gestionar pedidos" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "Proveedor para la referencia" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "Gestionar referencias de productos" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "Facturas" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "El pedido está validado" @@ -141,9 +199,9 @@ msgid "Add reference" msgstr "Añadir referencia" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "Cantidad" @@ -164,416 +222,339 @@ msgstr "Borrar referencia" msgid "No item selected" msgstr "No hay ítems seleccionados" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" -msgstr "No IVA" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "Proveedor para la referencia" -#: hook.php:46 -msgid "Plugin installation or upgrade" -msgstr "Instalación o actualización del Plugin" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Gestionar referencias de productos" -#: hook.php:88 -msgid "Can't create folder" -msgstr "" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "Facturas" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" -msgstr "" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" +msgstr "Usar este modelo" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" -msgstr "IVA" +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" +msgstr "Utilizar esta firma" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" -msgstr "Condiciones de pago" +#: inc/referencefree.class.php:39 +msgid "Reference free" +msgstr "Añadido manualmente" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" -msgstr "Estado del pedido" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "Estadísticas de entrega" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "Tipo de otros materiales" +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "Estado no definido" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" -msgstr "Estado de entrega" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "Calidad del proveedor" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" -msgstr "Estado de la factura" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "Nota" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "Tipo de factura" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "Comentario de evaluación" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" -msgstr "" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" +msgstr "Calidad del servicio administrativo (contrato, facturas, correo...)" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" -msgstr "" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" +msgstr "Calidad del servicio comercial, frecuencia de visitas, reactividad" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "Nombre del pedido" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "Disponibilidad de los interlocutores" -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "Pedido" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" +msgstr "Calidad de los colaboradores del proveedor" -#: inc/referencefree.class.php:39 -msgid "Reference free" -msgstr "" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "Fiabilidad de los plazos de entrega anunciados" -#: inc/config.class.php:103 -msgid "Plugin configuration" -msgstr "Configuración del plugin" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "Nota global del proveedor" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "IVA predeterminado" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" +msgstr "Nota media sobre 10 (X puntos / 5)" -#: inc/config.class.php:118 -msgid "Use validation process" -msgstr "Utilizar proceso de validación" +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "Categoría del documento" -#: inc/config.class.php:125 -msgid "Order generation in ODT" -msgstr "Generación de pedido en ODT" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "Prefijo de la categoría del documento" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" -msgstr "Activar encuesta de calidad a proveedores" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" +msgstr "Generar el pedido" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" -msgstr "Visualización de información de pedidos" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "Recibir material" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" -msgstr "Color que se muestra cuando es superada la fecha límite" +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "Validar pedido" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" -msgstr "Copiar documentos del pedido cuando un nuevo item ha sido creado" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" +msgstr "Cancelar pedido" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" -msgstr "Default heading when adding a document to an order" +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "Editar un pedido validado" + +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "Generar orden sin validación" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" +msgstr "Portes" + +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" +msgstr "" + +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Grupo de autor" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" msgstr "Grupo de destinatarios" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" -msgstr "Ocultar los presupuestos inactivos" +#: inc/order.class.php:584 +msgid "Account Section" +msgstr "" -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" -msgstr "" - -#: inc/config.class.php:212 -msgid "Display account section on order form" -msgstr "" +#: inc/order.class.php:636 +msgid "Validation" +msgstr "Validación" -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" -msgstr "" +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "Orden de compra" -#: inc/config.class.php:226 -msgid "Use free references" -msgstr "" +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "El número de pedido es obligatorio!" -#: inc/config.class.php:233 -msgid "Rename documents added in order" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" msgstr "" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" -msgstr "Acciones automáticas a la entrega" - -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" -msgstr "" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." +msgstr "The order date must be within the dates entered for the selected budget." -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" -msgstr "" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "No IVA" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" -msgstr "Activar generación automática" +#: inc/order.class.php:1096 +msgid "Due date overtaken" +msgstr "Due date overtaken" -#: inc/config.class.php:269 -msgid "Asked" -msgstr "" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" +msgstr "Precio sin IVA" -#: inc/config.class.php:275 -msgid "Default state" -msgstr "Estado predeterminado" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" +msgstr "Precio + portes sin IVA" -#: inc/config.class.php:286 -msgid "Add order location to item" -msgstr "Añadir ubicación para el punto" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "Precio con IVA" -#: inc/config.class.php:293 -msgid "Add billing details to item" -msgstr "Añadir los datos de facturación a la fracción" +#: inc/order.class.php:1534 +msgid "Validation process" +msgstr "Proceso de validación" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" -msgstr "Nombre predeterminado" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "¿Quiere realmente cancelar el pedido? ¡Esta opción es irreversible!" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" -msgstr "Número de serie predeterminado" +#: inc/order.class.php:1560 +msgid "Validate order" +msgstr "Validar pedido" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "Número de inventario predeterminado" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" +msgstr "¿Quiere cancelar la validación de la aprobación?" -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "Ciclo de vida del pedido" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" +msgstr "Cancelar solicitud de validación" -#: inc/config.class.php:342 -msgid "State before validation" -msgstr "Estado antes de la validación" +#: inc/order.class.php:1574 +msgid "Ask for validation" +msgstr "Solicitar validación" -#: inc/config.class.php:352 -msgid "Waiting for validation state" -msgstr "A la espera de la validación" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" +msgstr "¿Quiere realmente editar el pedido? " -#: inc/config.class.php:362 -msgid "Validated order state" -msgstr "Pedido validado" +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "Editar pedido" -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "El pedido está entregado" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." +msgstr "Por favor, añada al menos un equipamiento a su pedido." -#: inc/config.class.php:382 -msgid "Order delivered state" -msgstr "" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" +msgstr "Por favor, seleccione un modelo en sus preferencias" -#: inc/config.class.php:392 -msgid "Order paied state" -msgstr "" +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "Dirección de facturación" -#: inc/config.class.php:402 -msgid "Canceled order state" -msgstr "Canceled order state" +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "Dirección de entrega" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" -msgstr "Calidad del proveedor" +#: inc/order.class.php:1726 +msgid "The" +msgstr "El" -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" -msgstr "Nota" +#: inc/order.class.php:1728 +msgid "Issuer order" +msgstr "Emitir pedido" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" -msgstr "Comentario de evaluación" +#: inc/order.class.php:1746 +msgid "Recipient" +msgstr "" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" -msgstr "Calidad del servicio administrativo (contrato, facturas, correo...)" +#: inc/order.class.php:1749 +msgid "Designation" +msgstr "" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" -msgstr "Calidad del servicio comercial, frecuencia de visitas, reactividad" +#: inc/order.class.php:1751 +msgid "Unit price" +msgstr "Precio unitario" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" -msgstr "Disponibilidad de los interlocutores" +#: inc/order.class.php:1753 +msgid "Discount rate" +msgstr "Porcentaje de descuento" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" -msgstr "Calidad de los colaboradores del proveedor" +#: inc/order.class.php:1754 +msgid "Sum tax free" +msgstr "Total sin IVA" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" -msgstr "Fiabilidad de los plazos de entrega anunciados" +#: inc/order.class.php:1881 +msgid "€" +msgstr "€" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" -msgstr "Nota global del proveedor" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" +msgstr "Firma para emitir el pedido" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" -msgstr "Nota media sobre 10 (X puntos / 5)" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "" -#: inc/documentcategory.class.php:39 -msgid "Document category" -msgstr "Categoría del documento" +#: inc/order.class.php:1994 +msgid "Unlink" +msgstr "" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" -msgstr "Prefijo de la categoría del documento" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." +msgstr "" -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." msgstr "" -#: inc/orderstate.class.php:87 -msgid "Draft" -msgstr "Borrador" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "Solicitar validación de pedido" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" -msgstr "Esperando aprobación" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "Pedido validado" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "Validado" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "Late orders" -#: inc/orderstate.class.php:90 -msgid "Being delivered" -msgstr "En proceso de entrega" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "No hay materiales para generar" -#: inc/orderstate.class.php:91 -msgid "Delivered" -msgstr "Entregado" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "Comentario de validación" -#: inc/orderstate.class.php:92 -msgid "Canceled" -msgstr "Cancelado" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "Validación cancelada satisfactoriamente" -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "Pagado" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "Editor de validación" -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" -msgstr "Referencia del fabricante del producto" +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" +msgstr "Añadir productos" -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/order_item.class.php:115 inc/order_item.class.php:369 #: inc/order_item.class.php:476 inc/order_item.class.php:801 #: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Precio unitario sin IVA" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "Referencia del producto" - -#: inc/reference_supplier.class.php:476 -msgid "List references" -msgstr "Listar referencias" - -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "Entrega" - -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "Recibido" - -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "Factura" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" -msgstr "No hay ítems para recibir" - -#: inc/reception.class.php:350 -msgid "Delivered items" -msgstr "Ítems entregados" - -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" -msgstr "Recibir material" - -#: inc/reception.class.php:609 -msgid "Waiting for delivery" -msgstr "Pendiente de entrega" - -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" -msgstr "No hay suficientes ítems para entregar" - -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" -msgstr "Item recibido con éxito" - -#: inc/reception.class.php:784 -msgid "Item already taken delivery" -msgstr "Item ya recibido" - -#: inc/reception.class.php:950 -msgid "Item delivered" -msgstr "Material entregado" - -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" -msgstr "Es obligatorio un número de factura" - -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" -msgstr "Usar este modelo" - -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" -msgstr "Utilizar esta firma" - -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 -msgid "Order item" -msgstr "" - #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" -msgstr "" +msgstr "Producto" + +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "Referencia del fabricante del producto" #: inc/order_item.class.php:195 msgid "Analytic Nature" @@ -585,7 +566,15 @@ msgstr "Algunos campos no se pueden modificar porque pertenecen a un pedido" #: inc/order_item.class.php:358 msgid "Add to the order from the catalog" -msgstr "" +msgstr "Añadir al pedido desde el catálogo" + +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Referencia del producto" #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" @@ -593,20 +582,25 @@ msgstr "Por favor elija un proveedor" #: inc/order_item.class.php:465 msgid "Add to the order free items" -msgstr "" +msgstr "Añadir al pedido de forma manual" #: inc/order_item.class.php:479 msgid "Add the reference" -msgstr "" +msgstr "Añadir referencia" #: inc/order_item.class.php:608 inc/order_item.class.php:621 msgid "An analytic nature is mandatory !" msgstr "" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "No hay ítems para recibir" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" -msgstr "" +msgstr "Referencia del fabricante" #: inc/order_item.class.php:808 inc/order_item.class.php:1000 #: inc/order_item.class.php:1202 @@ -623,12 +617,6 @@ msgstr "¿Realmente quiere borrar las líneas de detalle? Los ítems entregados msgid "Discounted price tax free" msgstr "Precio con descuento sin IVA" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "Precio con IVA" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "Información del pedido" @@ -641,305 +629,315 @@ msgstr "" msgid "Paid value" msgstr "" -#: inc/billstate.class.php:59 -msgid "Being paid" -msgstr "Siendo pagado" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Factura" -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "No pagado" +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "Listar referencias" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" -msgstr "Solicitar validación de pedido" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "No se puede crear una referencia sin nombre" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" -msgstr "Pedido validado" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "No se puede crear una referencia sin tipo" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" -msgstr "Late orders" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "Ya existe una referencia con ese nombre" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" -msgstr "No hay materiales para generar" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "Referencia(s) usada" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" -msgstr "Comentario de validación" +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" -msgstr "Validación cancelada satisfactoriamente" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "Seleccionar el tipo de ítem deseado" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" -msgstr "Editor de validación" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "Ver por tipo de ítem" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "Borrador" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "Esperando aprobación" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Validado" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "En proceso de entrega" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Entregado" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "Cancelado" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Pagado" #: inc/link.class.php:48 msgid "Generation" msgstr "Generación" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "Generar material" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "Vincular con material ya existente" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "Borrar vínculo con material" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "No se pueden asociar varios ítems a una sola línea de detalle" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "No se pueden asociar ítems no entregados" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "Item no asociado" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "Material vinculado a un pedido" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "Material ya enlazado a otro" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "Desvincular material del pedido" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "Una o varias filas seleccionadas no tienen ítems asociados" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "Material generado mediante un pedido" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "Item seleccionado con éxito" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "Generar el pedido" - -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "Validar pedido" - -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "Cancelar pedido" - -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "Editar un pedido validado" - -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "Generar orden sin validación" - -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "Portes" - -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" -msgstr "" - -#: inc/order.class.php:584 -msgid "Account Section" -msgstr "" +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "Configuración del plugin" -#: inc/order.class.php:636 -msgid "Validation" -msgstr "Validación" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "IVA predeterminado" -#: inc/order.class.php:642 -msgid "Purchase order" -msgstr "Orden de compra" +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "Utilizar proceso de validación" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" -msgstr "El número de pedido es obligatorio!" +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "Generación de pedido en ODT" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" -msgstr "" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "Activar encuesta de calidad a proveedores" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." -msgstr "The order date must be within the dates entered for the selected budget." +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "Visualización de información de pedidos" -#: inc/order.class.php:1096 -msgid "Due date overtaken" -msgstr "Due date overtaken" +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "Color que se muestra cuando es superada la fecha límite" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" -msgstr "Precio sin IVA" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" +msgstr "Copiar documentos del pedido cuando un nuevo item ha sido creado" -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" -msgstr "Precio + portes sin IVA" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "Default heading when adding a document to an order" -#: inc/order.class.php:1534 -msgid "Validation process" -msgstr "Proceso de validación" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "Ocultar los presupuestos inactivos" -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" -msgstr "¿Quiere realmente cancelar el pedido? ¡Esta opción es irreversible!" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" +msgstr "" -#: inc/order.class.php:1560 -msgid "Validate order" -msgstr "Validar pedido" +#: inc/config.class.php:212 +msgid "Display account section on order form" +msgstr "" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" -msgstr "¿Quiere cancelar la validación de la aprobación?" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" +msgstr "" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" -msgstr "Cancelar solicitud de validación" +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "" -#: inc/order.class.php:1574 -msgid "Ask for validation" -msgstr "Solicitar validación" +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" -msgstr "¿Quiere realmente editar el pedido? " +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "Acciones automáticas a la entrega" -#: inc/order.class.php:1582 -msgid "Edit order" -msgstr "Editar pedido" +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." -msgstr "Por favor, añada al menos un equipamiento a su pedido." +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" -msgstr "Por favor, seleccione un modelo en sus preferencias" +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "Activar generación automática" -#: inc/order.class.php:1681 -msgid "Invoice address" -msgstr "Dirección de facturación" +#: inc/config.class.php:269 +msgid "Asked" +msgstr "" -#: inc/order.class.php:1716 -msgid "Delivery address" -msgstr "Dirección de entrega" +#: inc/config.class.php:275 +msgid "Default state" +msgstr "Estado predeterminado" -#: inc/order.class.php:1726 -msgid "The" -msgstr "El" +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "Añadir ubicación para el punto" -#: inc/order.class.php:1728 -msgid "Issuer order" -msgstr "Emitir pedido" +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "Añadir los datos de facturación a la fracción" -#: inc/order.class.php:1746 -msgid "Recipient" -msgstr "" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "Nombre predeterminado" -#: inc/order.class.php:1749 -msgid "Designation" -msgstr "" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "Número de serie predeterminado" -#: inc/order.class.php:1751 -msgid "Unit price" -msgstr "Precio unitario" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "Número de inventario predeterminado" -#: inc/order.class.php:1753 -msgid "Discount rate" -msgstr "Porcentaje de descuento" +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "Ciclo de vida del pedido" -#: inc/order.class.php:1754 -msgid "Sum tax free" -msgstr "Total sin IVA" +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "Estado antes de la validación" -#: inc/order.class.php:1881 -msgid "€" -msgstr "€" +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "A la espera de la validación" -#: inc/order.class.php:1882 -msgid "Signature of issuing order" -msgstr "Firma para emitir el pedido" +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "Pedido validado" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" -msgstr "" +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "El pedido está entregado" -#: inc/order.class.php:1994 -msgid "Unlink" +#: inc/config.class.php:382 +msgid "Order delivered state" msgstr "" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." +#: inc/config.class.php:392 +msgid "Order paied state" msgstr "" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." -msgstr "" +#: inc/config.class.php:402 +msgid "Canceled order state" +msgstr "Canceled order state" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" -msgstr "Estadísticas de entrega" +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "Es obligatorio un número de factura" -#: inc/order_supplier.class.php:309 -msgid "No specified status" -msgstr "Estado no definido" +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "Entrega" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" -msgstr "No se puede crear una referencia sin nombre" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "Recibido" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" -msgstr "No se puede crear una referencia sin tipo" +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "Ítems entregados" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" -msgstr "Ya existe una referencia con ese nombre" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "Pendiente de entrega" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" -msgstr "Referencia(s) usada" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "No hay suficientes ítems para entregar" -#: inc/reference.class.php:838 -msgid "Copy of" -msgstr "" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "Item recibido con éxito" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" -msgstr "Seleccionar el tipo de ítem deseado" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "Item ya recibido" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" -msgstr "Ver por tipo de ítem" +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "Material entregado" -#: inc/reference.class.php:993 -msgid "Copy reference" -msgstr "" +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "Siendo pagado" + +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "No pagado" diff --git a/locales/fi_FI.mo b/locales/fi_FI.mo index 70994b2aba..a23d38a90c 100644 Binary files a/locales/fi_FI.mo and b/locales/fi_FI.mo differ diff --git a/locales/fi_FI.po b/locales/fi_FI.po index b5b89f054f..28f29770c5 100644 --- a/locales/fi_FI.po +++ b/locales/fi_FI.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: 2018-12-18 08:39+0000\n" "Last-Translator: Markku Vepsä\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/teclib/glpi-plugin-order/language/fi_FI/)\n" @@ -18,42 +18,114 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" -msgstr "tilausraportin_otsikko" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Liitännäisen asennus tai päivitys" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" -msgstr "Tilauspäivä" +#: hook.php:88 +msgid "Can't create folder" +msgstr "Kansiota ei voi luoda" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" -msgstr "Toimituskohde" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "Tiedostoa %1$s ei voitu kopioida kohteeseen %2$s" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "ALV" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Maksuehdot" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Tilauksen tila" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Muun tyyppinen tuote" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Toimituksen tila" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Laskun tila" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Laskun tyyppi" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "Analyyttinen luonne" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "Tili-osio" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Tilaukset" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "Tilauksen nimi" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "Tilausnumero" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "Arvioitu toimituspäivä" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Tilaus" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "toimitustietoraportin_otsikko" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "Tilauspäivä" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "Toimituskohde" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "Tilausten yhteisarvo" @@ -62,6 +134,15 @@ msgstr "Tilausten yhteisarvo" msgid "Late orders total" msgstr "Jälkitoimitusten yhteisarvo" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "tilausraportin_otsikko" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "Arvioitu toimituspäivä" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -71,44 +152,20 @@ msgstr "Viitenumero" msgid "Delete" msgstr "Poista" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "Toimittajan tiedot" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "Tilausten hallinta" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "Tilaukset" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "Toimittajan viite" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "Tuoteviittaukset" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "Laskut" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "Tilaus vahvistettu" @@ -139,9 +196,9 @@ msgid "Add reference" msgstr "Lisää viite" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "Määrä" @@ -162,417 +219,340 @@ msgstr "Poista viite" msgid "No item selected" msgstr "Kohdetta ei ole valittu" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" -msgstr "Ei arvonlisäveroa" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "Toimittajan viite" -#: hook.php:46 -msgid "Plugin installation or upgrade" -msgstr "Liitännäisen asennus tai päivitys" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Tuoteviittaukset" -#: hook.php:88 -msgid "Can't create folder" -msgstr "Kansiota ei voi luoda" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "Laskut" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" -msgstr "Tiedostoa %1$s ei voitu kopioida kohteeseen %2$s" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" +msgstr "Käytä tätä mallia" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" -msgstr "ALV" +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" +msgstr "Käytä tätä merkkiä" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" -msgstr "Maksuehdot" +#: inc/referencefree.class.php:39 +msgid "Reference free" +msgstr "Viite vapaa" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" -msgstr "Tilauksen tila" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "Toimitustiedot" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "Muun tyyppinen tuote" +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "Ei määritettyä tilaa" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" -msgstr "Toimituksen tila" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "Toimittajan laatu" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" -msgstr "Laskun tila" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "Huomautus" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "Laskun tyyppi" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "Kommentti kyselyssä" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" -msgstr "Analyyttinen luonne" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" +msgstr "Hallinnollisen seurannan laatu (sopimukset, laskut, posti jne.)" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" -msgstr "Tili-osio" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" +msgstr "Kaupallinen seuranta laatu, vierailut, reagointikyky" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "Tilauksen nimi" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "Yhteystietojen saatavuus" -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "Tilaus" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" +msgstr "Toimittajan intervention laatu" -#: inc/referencefree.class.php:39 -msgid "Reference free" -msgstr "Viite vapaa" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "Luotettavuus ilmoitetuista viiveistä" -#: inc/config.class.php:103 -msgid "Plugin configuration" -msgstr "Liitännäisen asetukset" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "Lopullinen toimittajan huomautus" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "Oletus ALV" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" +msgstr "Keskiarvo enintään 10 (X pistettä / 5)" -#: inc/config.class.php:118 -msgid "Use validation process" -msgstr "Käytä vahvistusprosessia" +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "Asiakirjaluokka" -#: inc/config.class.php:125 -msgid "Order generation in ODT" -msgstr "Tilauksen luonti tilauksen seurannassa" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "Asiakirjaluokan etuliite" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" -msgstr "Aktivoi tyytyväisyys toimittajan laatuun" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" +msgstr "Tilauksen luominen" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" -msgstr "Näytä tilausten toimittajien tiedot" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "Tuotteiden toimitus" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" -msgstr "Väri, joka näytetään, kun tilauksen määräpäivä on ohitettu" +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "Tilauksen vahvistaminen" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" -msgstr "Kopioi tilausasiakirjat, kun uusi kohde luodaan" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" +msgstr "Peruuta tilaus" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" -msgstr "Oletus otsikko, kun asiakirja lisätään tilaukseen" +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "Muokkaa vahvistettua tilausta" + +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "Luo tilaus ilman vahvistusta" + +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" +msgstr "Postikulut" + +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" +msgstr "Tilaus on myöhässä" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Tekijäryhmä" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" msgstr "Vastaanottajaryhmä" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" -msgstr "Piilota passiiviset budjetit" +#: inc/order.class.php:584 +msgid "Account Section" +msgstr "Tili-osio" -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" -msgstr "Lähetä talousarvion muutos linkitettyihin varoihin" - -#: inc/config.class.php:212 -msgid "Display account section on order form" -msgstr "Näytä tili-osio tilauslomakkeella" - -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" -msgstr "Aseta tili-osio pakolliseksi tilauslomakkeella" +#: inc/order.class.php:636 +msgid "Validation" +msgstr "Vahvistus" -#: inc/config.class.php:226 -msgid "Use free references" -msgstr "Käytä vapaita ​​viitteitä" +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "Osta tilaus" -#: inc/config.class.php:233 -msgid "Rename documents added in order" -msgstr "Uudelleennimeä tilaukseen lisättyjä asiakirjoja " +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "Tilausnumero on pakollinen !" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" -msgstr "Toimituksen automaattiset toimet" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" +msgstr "Tili-osio on pakollinen!" -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" -msgstr "Näytä analyyttinen luonne lomakkeella" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." +msgstr "Tilauspäivän on noudatettava valitulle budjetille asetettuja päivämääriä." -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" -msgstr "Aseta analyyttinen luonne pakolliseksi lomakkeella" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "Ei arvonlisäveroa" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" -msgstr "Ota automaattinen generointi käyttöön" +#: inc/order.class.php:1096 +msgid "Due date overtaken" +msgstr "Erääntymispäivä ylitetty" -#: inc/config.class.php:269 -msgid "Asked" -msgstr "Kysytty" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" +msgstr "Hinta ilman veroa" -#: inc/config.class.php:275 -msgid "Default state" -msgstr "Oletustila" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" +msgstr "Hinta ilman veroja postituskuluineen" -#: inc/config.class.php:286 -msgid "Add order location to item" -msgstr "Lisää tilauksen sijainti kohteeseen" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "Hinta veroineen" -#: inc/config.class.php:293 -msgid "Add billing details to item" -msgstr "Lisää tuotteelle laskutustiedot" +#: inc/order.class.php:1534 +msgid "Validation process" +msgstr "Vahvistusprosessi" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" -msgstr "Oletusnimi" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "Haluatko todella peruuttaa tämän tilauksen? Tämä vaihtoehto on peruuttamaton!" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" -msgstr "Oletus sarjanumero" +#: inc/order.class.php:1560 +msgid "Validate order" +msgstr "Vahvista tilaus" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "Oletus inventointinumero" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" +msgstr "Haluatko peruuttaa vahvistuksen hyväksynnän?" -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "Tilauksen elinkaari" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" +msgstr "Peruuta vahvistuskysely" -#: inc/config.class.php:342 -msgid "State before validation" -msgstr "Tila ennen vahvistusta" +#: inc/order.class.php:1574 +msgid "Ask for validation" +msgstr "Kysy vahvistusta" -#: inc/config.class.php:352 -msgid "Waiting for validation state" -msgstr "Odottaa vahvistuksen tilaa" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" +msgstr "Haluatko varmasti muokata tilausta ?" -#: inc/config.class.php:362 -msgid "Validated order state" -msgstr "Vahvista tilauksen tila" +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "Muokkaa tilausta" -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "Tilaus toimituksessa tila" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." +msgstr "Kiitos, että lisäsit vähintään yhden laitteen tilaukseesi." -#: inc/config.class.php:382 -msgid "Order delivered state" -msgstr "Tilaus toimitettu tila" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" +msgstr "Kiitos, että valitsit mallin asetuksiisi" -#: inc/config.class.php:392 -msgid "Order paied state" -msgstr "Tilaus maksettu tila" +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "Laskutusosoite" -#: inc/config.class.php:402 -msgid "Canceled order state" -msgstr "Tilaus peruttu tila" +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "Toimitusosoite" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" -msgstr "Toimittajan laatu" +#: inc/order.class.php:1726 +msgid "The" +msgstr " " -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" -msgstr "Huomautus" +#: inc/order.class.php:1728 +msgid "Issuer order" +msgstr "Liikkeellelaskijan tilaus" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" -msgstr "Kommentti kyselyssä" +#: inc/order.class.php:1746 +msgid "Recipient" +msgstr "Vastaanottaja" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" -msgstr "Hallinnollisen seurannan laatu (sopimukset, laskut, posti jne.)" +#: inc/order.class.php:1749 +msgid "Designation" +msgstr "Nimittäjä" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" -msgstr "Kaupallinen seuranta laatu, vierailut, reagointikyky" +#: inc/order.class.php:1751 +msgid "Unit price" +msgstr "Yksikköhinta" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" -msgstr "Yhteystietojen saatavuus" +#: inc/order.class.php:1753 +msgid "Discount rate" +msgstr "Alennus" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" -msgstr "Toimittajan intervention laatu" +#: inc/order.class.php:1754 +msgid "Sum tax free" +msgstr "Yhteensä ilman veroja" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" -msgstr "Luotettavuus ilmoitetuista viiveistä" +#: inc/order.class.php:1881 +msgid "€" +msgstr "€" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" -msgstr "Lopullinen toimittajan huomautus" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" +msgstr "Myöntämispäätöksen allekirjoitus" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" -msgstr "Keskiarvo enintään 10 (X pistettä / 5)" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "Linkitetyt tilaukset" -#: inc/documentcategory.class.php:39 -msgid "Document category" -msgstr "Asiakirjaluokka" +#: inc/order.class.php:1994 +msgid "Unlink" +msgstr "Linkityksen poisto" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" -msgstr "Asiakirjaluokan etuliite" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." +msgstr "Tilausten kokonaisarvo on budjettia suuremmat." -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" -msgstr "Et voi poistaa tätä tilaa" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." +msgstr "Tilausten kokonaisarvo on sama kuin budjetti." -#: inc/orderstate.class.php:87 -msgid "Draft" -msgstr "Luonnos" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "Pyydä tilauksen vahvistusta" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" -msgstr "Odottaa hyväksyntää" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "Tilaus vahvistettu" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "Vahvistettu" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "Jälkitilaukset" -#: inc/orderstate.class.php:90 -msgid "Being delivered" -msgstr "Toimitetaan" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "Ei luotavaa kohdetta" -#: inc/orderstate.class.php:91 -msgid "Delivered" -msgstr "Toimitettu" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "Vahvistuksen kommentti" -#: inc/orderstate.class.php:92 -msgid "Canceled" -msgstr "Peruttu" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "Vahvistus peruttu onnistuneesti" -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "Maksettu" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "Vahvistuksen muokkaaja" -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" -msgstr "Valmistajan tuotenumero" +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" +msgstr "Tilaa tuote" -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/order_item.class.php:115 inc/order_item.class.php:369 #: inc/order_item.class.php:476 inc/order_item.class.php:801 #: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Veroton yksikköhinta" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "Tuotteen viite" - -#: inc/reference_supplier.class.php:476 -msgid "List references" -msgstr "Luettelo viitteistä" - -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "Toimitus" - -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "Toimitetaan" - -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "Lasku" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" -msgstr "Ei toimitettavia tuotteita" - -#: inc/reception.class.php:350 -msgid "Delivered items" -msgstr "Toimitetut tuotteet" - -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" -msgstr "Tuotteiden toimitus" - -#: inc/reception.class.php:609 -msgid "Waiting for delivery" -msgstr "Odottaa toimitusta" - -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" -msgstr "Ei tarpeeksi tuotteita toimitettavaksi" - -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" -msgstr "Tuote onnistuneesti vastaanotettu" - -#: inc/reception.class.php:784 -msgid "Item already taken delivery" -msgstr "Tuote on jo vastaanotettu" - -#: inc/reception.class.php:950 -msgid "Item delivered" -msgstr "Tuote toimitettu" - -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" -msgstr "Laskun numero on pakollinen" - -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" -msgstr "Käytä tätä mallia" - -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" -msgstr "Käytä tätä merkkiä" - -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 -msgid "Order item" -msgstr "Tilaa tuote" - #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "Tuotteen nimi" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "Valmistajan tuotenumero" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "Analyyttinen luonne" @@ -585,6 +565,14 @@ msgstr "Joitakin kenttiä ei voida muuttaa, koska ne kuuluvat tilaukseen" msgid "Add to the order from the catalog" msgstr "Lisää tilaukseen luettelosta" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Tuotteen viite" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "Ole hyvä ja valitse toimittaja" @@ -601,6 +589,11 @@ msgstr "Lisää viite" msgid "An analytic nature is mandatory !" msgstr "Analyyttinen luonne on pakollinen!" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "Ei toimitettavia tuotteita" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -621,12 +614,6 @@ msgstr "Haluatko todella poistaa nämä tiedot? Toimitettuja tuotteita ei liitet msgid "Discounted price tax free" msgstr "Alennettu hinta ilman veroja" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "Hinta veroineen" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "Tilaustiedot" @@ -639,305 +626,315 @@ msgstr "Maksun tila" msgid "Paid value" msgstr "Maksettu summa" -#: inc/billstate.class.php:59 -msgid "Being paid" -msgstr "Maksettu" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Lasku" -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "Maksamaton" +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "Luettelo viitteistä" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" -msgstr "Pyydä tilauksen vahvistusta" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "Viittausta ei voi luoda ilman nimeä" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" -msgstr "Tilaus vahvistettu" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "Viittausta ei voi luoda ilman tyyppiä" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" -msgstr "Jälkitilaukset" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "Samanniminen viittaus on olemassa" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" -msgstr "Ei luotavaa kohdetta" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "Viite/viitteet käytössä" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" -msgstr "Vahvistuksen kommentti" +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "Kopio" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" -msgstr "Vahvistus peruttu onnistuneesti" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "Valitse haluttu kohteen tyyppi" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" -msgstr "Vahvistuksen muokkaaja" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "Näytä tyypin mukaan" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "Kopioi viite" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "Et voi poistaa tätä tilaa" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "Luonnos" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "Odottaa hyväksyntää" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Vahvistettu" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "Toimitetaan" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Toimitettu" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "Peruttu" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Maksettu" #: inc/link.class.php:48 msgid "Generation" msgstr "Luonti" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "Luo kohde" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "Linkki olemassa olevaan kohteeseen" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "Poista kohteen linkki" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "Useita kohteita ei voida yhdistää yhteen yksityiskohtariviin" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "Toimittamattomia tuotteita ei voida linkittää" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "Ei liittyviä kohteita" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "Tuote liitetty tilaukseen" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "Tuote on jo liitetty toiseen kohteeseen" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "Tuote poistettu tilauksesta" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "Yhdellä tai useammalla valitulla rivillä ei ole linkitettyjä kohteita" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "Tuote luotu tilauksen avulla" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "Tuote on valittu onnistuneesti" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "Tilauksen luominen" - -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "Tilauksen vahvistaminen" - -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "Peruuta tilaus" - -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "Muokkaa vahvistettua tilausta" - -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "Luo tilaus ilman vahvistusta" - -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "Postikulut" - -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" -msgstr "Tilaus on myöhässä" +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "Liitännäisen asetukset" -#: inc/order.class.php:584 -msgid "Account Section" -msgstr "Tili-osio" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "Oletus ALV" -#: inc/order.class.php:636 -msgid "Validation" -msgstr "Vahvistus" +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "Käytä vahvistusprosessia" -#: inc/order.class.php:642 -msgid "Purchase order" -msgstr "Osta tilaus" +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "Tilauksen luonti tilauksen seurannassa" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" -msgstr "Tilausnumero on pakollinen !" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "Aktivoi tyytyväisyys toimittajan laatuun" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" -msgstr "Tili-osio on pakollinen!" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "Näytä tilausten toimittajien tiedot" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." -msgstr "Tilauspäivän on noudatettava valitulle budjetille asetettuja päivämääriä." +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "Väri, joka näytetään, kun tilauksen määräpäivä on ohitettu" -#: inc/order.class.php:1096 -msgid "Due date overtaken" -msgstr "Erääntymispäivä ylitetty" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" +msgstr "Kopioi tilausasiakirjat, kun uusi kohde luodaan" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" -msgstr "Hinta ilman veroa" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "Oletus otsikko, kun asiakirja lisätään tilaukseen" -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" -msgstr "Hinta ilman veroja postituskuluineen" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "Piilota passiiviset budjetit" -#: inc/order.class.php:1534 -msgid "Validation process" -msgstr "Vahvistusprosessi" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" +msgstr "Lähetä talousarvion muutos linkitettyihin varoihin" -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" -msgstr "Haluatko todella peruuttaa tämän tilauksen? Tämä vaihtoehto on peruuttamaton!" +#: inc/config.class.php:212 +msgid "Display account section on order form" +msgstr "Näytä tili-osio tilauslomakkeella" -#: inc/order.class.php:1560 -msgid "Validate order" -msgstr "Vahvista tilaus" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" +msgstr "Aseta tili-osio pakolliseksi tilauslomakkeella" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" -msgstr "Haluatko peruuttaa vahvistuksen hyväksynnän?" +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "Käytä vapaita ​​viitteitä" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" -msgstr "Peruuta vahvistuskysely" +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "Uudelleennimeä tilaukseen lisättyjä asiakirjoja " -#: inc/order.class.php:1574 -msgid "Ask for validation" -msgstr "Kysy vahvistusta" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "Toimituksen automaattiset toimet" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" -msgstr "Haluatko varmasti muokata tilausta ?" +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "Näytä analyyttinen luonne lomakkeella" -#: inc/order.class.php:1582 -msgid "Edit order" -msgstr "Muokkaa tilausta" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "Aseta analyyttinen luonne pakolliseksi lomakkeella" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." -msgstr "Kiitos, että lisäsit vähintään yhden laitteen tilaukseesi." +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "Ota automaattinen generointi käyttöön" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" -msgstr "Kiitos, että valitsit mallin asetuksiisi" +#: inc/config.class.php:269 +msgid "Asked" +msgstr "Kysytty" -#: inc/order.class.php:1681 -msgid "Invoice address" -msgstr "Laskutusosoite" +#: inc/config.class.php:275 +msgid "Default state" +msgstr "Oletustila" -#: inc/order.class.php:1716 -msgid "Delivery address" -msgstr "Toimitusosoite" +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "Lisää tilauksen sijainti kohteeseen" -#: inc/order.class.php:1726 -msgid "The" -msgstr " " +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "Lisää tuotteelle laskutustiedot" -#: inc/order.class.php:1728 -msgid "Issuer order" -msgstr "Liikkeellelaskijan tilaus" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "Oletusnimi" -#: inc/order.class.php:1746 -msgid "Recipient" -msgstr "Vastaanottaja" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "Oletus sarjanumero" -#: inc/order.class.php:1749 -msgid "Designation" -msgstr "Nimittäjä" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "Oletus inventointinumero" -#: inc/order.class.php:1751 -msgid "Unit price" -msgstr "Yksikköhinta" +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "Tilauksen elinkaari" -#: inc/order.class.php:1753 -msgid "Discount rate" -msgstr "Alennus" +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "Tila ennen vahvistusta" -#: inc/order.class.php:1754 -msgid "Sum tax free" -msgstr "Yhteensä ilman veroja" +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "Odottaa vahvistuksen tilaa" -#: inc/order.class.php:1881 -msgid "€" -msgstr "€" +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "Vahvista tilauksen tila" -#: inc/order.class.php:1882 -msgid "Signature of issuing order" -msgstr "Myöntämispäätöksen allekirjoitus" +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "Tilaus toimituksessa tila" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" -msgstr "Linkitetyt tilaukset" +#: inc/config.class.php:382 +msgid "Order delivered state" +msgstr "Tilaus toimitettu tila" -#: inc/order.class.php:1994 -msgid "Unlink" -msgstr "Linkityksen poisto" +#: inc/config.class.php:392 +msgid "Order paied state" +msgstr "Tilaus maksettu tila" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." -msgstr "Tilausten kokonaisarvo on budjettia suuremmat." +#: inc/config.class.php:402 +msgid "Canceled order state" +msgstr "Tilaus peruttu tila" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." -msgstr "Tilausten kokonaisarvo on sama kuin budjetti." +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "Laskun numero on pakollinen" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" -msgstr "Toimitustiedot" +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "Toimitus" -#: inc/order_supplier.class.php:309 -msgid "No specified status" -msgstr "Ei määritettyä tilaa" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "Toimitetaan" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" -msgstr "Viittausta ei voi luoda ilman nimeä" +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "Toimitetut tuotteet" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" -msgstr "Viittausta ei voi luoda ilman tyyppiä" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "Odottaa toimitusta" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" -msgstr "Samanniminen viittaus on olemassa" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "Ei tarpeeksi tuotteita toimitettavaksi" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" -msgstr "Viite/viitteet käytössä" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "Tuote onnistuneesti vastaanotettu" -#: inc/reference.class.php:838 -msgid "Copy of" -msgstr "Kopio" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "Tuote on jo vastaanotettu" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" -msgstr "Valitse haluttu kohteen tyyppi" +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "Tuote toimitettu" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" -msgstr "Näytä tyypin mukaan" +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "Maksettu" -#: inc/reference.class.php:993 -msgid "Copy reference" -msgstr "Kopioi viite" +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "Maksamaton" diff --git a/locales/fr_FR.mo b/locales/fr_FR.mo index eed6980b72..e26add3b89 100644 Binary files a/locales/fr_FR.mo and b/locales/fr_FR.mo differ diff --git a/locales/fr_FR.po b/locales/fr_FR.po index e8ae27079f..e63c9b8e67 100644 --- a/locales/fr_FR.po +++ b/locales/fr_FR.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: 2018-12-17 15:03+0000\n" "Last-Translator: Cédric Anne\n" "Language-Team: French (France) (http://www.transifex.com/teclib/glpi-plugin-order/language/fr_FR/)\n" @@ -22,42 +22,114 @@ msgstr "" "Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" -msgstr "Expédition des commandes" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Installation ou mise à jour du plugin" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" -msgstr "Date commande" +#: hook.php:88 +msgid "Can't create folder" +msgstr "Impossible de créer le dossier" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" -msgstr "Lieu de livraison de la commande" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "Impossible de copier le fichier de %1$s vers %2$s" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "TVA" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Conditions de paiement" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Statut commande" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Type d'autre équipement" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Statut de la livraison" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Statut de la facture" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Type de facture" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Commandes" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "Nom de la commande" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "N° commande" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "Date de livraison estimée" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Commande" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "Statistiques d'expédition des commandes" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "Date commande" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "Lieu de livraison de la commande" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "Total des commandes" @@ -66,6 +138,15 @@ msgstr "Total des commandes" msgid "Late orders total" msgstr "Total des commandes en retard" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "Expédition des commandes" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "Date de livraison estimée" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -75,44 +156,20 @@ msgstr "N° devis" msgid "Delete" msgstr "Suppression" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "Infos Fournisseur" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "Gestion des commandes" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "Commandes" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "Fournisseur pour une référence" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "Références produits" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "Factures" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "La commande est validée" @@ -143,9 +200,9 @@ msgid "Add reference" msgstr "Ajout référence" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "Quantité" @@ -166,417 +223,340 @@ msgstr "Suppression référence" msgid "No item selected" msgstr "Aucun matériel sélectionné" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" -msgstr "Pas de TVA" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "Fournisseur pour une référence" -#: hook.php:46 -msgid "Plugin installation or upgrade" -msgstr "Installation ou mise à jour du plugin" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Références produits" -#: hook.php:88 -msgid "Can't create folder" -msgstr "Impossible de créer le dossier" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "Factures" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" -msgstr "Impossible de copier le fichier de %1$s vers %2$s" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" +msgstr "Utiliser ce modèle" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" -msgstr "TVA" +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" +msgstr "Utiliser cette signature" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" -msgstr "Conditions de paiement" +#: inc/referencefree.class.php:39 +msgid "Reference free" +msgstr "" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" -msgstr "Statut commande" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "Statistique livraison" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "Type d'autre équipement" +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "Statut non spécifié" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" -msgstr "Statut de la livraison" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "Qualité fournisseur" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" -msgstr "Statut de la facture" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "Note" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "Type de facture" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "Commentaire du Sondage" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" -msgstr "" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" +msgstr "Qualité du suivi administratif (contrat, factures, courrier...)" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" -msgstr "" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" +msgstr "Qualité du suivi commercial, fréquence des visites, réactivité" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "Nom de la commande" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "Disponibilité des interlocuteurs fournisseur" -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "Commande" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" +msgstr "Qualité des prestations collaborateurs du fournisseur" -#: inc/referencefree.class.php:39 -msgid "Reference free" -msgstr "" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "Fiabilité sur les disponibilités annoncées" -#: inc/config.class.php:103 -msgid "Plugin configuration" -msgstr "Configuration du plugin" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "Note globale du fournisseur" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "TVA par défaut" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" +msgstr "Note moyenne sur 10 (X points / 5)" -#: inc/config.class.php:118 -msgid "Use validation process" -msgstr "Utiliser le circuit de validation" +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "Catégorie de documents" -#: inc/config.class.php:125 -msgid "Order generation in ODT" -msgstr "Génération d'un bon de commande en ODT" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "Préfixe de la catégorie de documents" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" -msgstr "Activer la qualité des fournisseurs" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" +msgstr "Génération du bon de commande" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" -msgstr "Afficher les informations fournisseur de la commande" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "Réceptionner matériel" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" -msgstr "Couleur lorsque la date de livraison estimée est dépassée" +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "Valider une commande" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" -msgstr "Copier les documents de la commande à la génération d'un matériel" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" +msgstr "Annuler une commande" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" -msgstr "Rubrique par défaut pour l'ajout de documents à une commande" +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "Modifier une commande validée" + +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "Générer la commande sans validation" + +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" +msgstr "Frais de port" + +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" +msgstr "Livraison en retard" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Groupe auteur" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" msgstr "Groupe destinataire" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" -msgstr "Ne pas afficher les budgets ayant expiré" +#: inc/order.class.php:584 +msgid "Account Section" +msgstr "" -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" -msgstr "Transmettre les changements de budget aux assets associés" - -#: inc/config.class.php:212 -msgid "Display account section on order form" -msgstr "" +#: inc/order.class.php:636 +msgid "Validation" +msgstr "Validation" -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" -msgstr "" +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "Bon de commande" -#: inc/config.class.php:226 -msgid "Use free references" -msgstr "" +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "Un numéro de commande est obligatoire !" -#: inc/config.class.php:233 -msgid "Rename documents added in order" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" msgstr "" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" -msgstr "Actions automatiques lors de la réception" - -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" -msgstr "" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." +msgstr "La date de commande doit être comprise dans les dates déclarées pour le budget sélectionné." -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" -msgstr "" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "Pas de TVA" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" -msgstr "Activer la génération automatique" +#: inc/order.class.php:1096 +msgid "Due date overtaken" +msgstr "La date estimée est dépassée" -#: inc/config.class.php:269 -msgid "Asked" -msgstr "Demander" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" +msgstr "Prix Total (HT)" -#: inc/config.class.php:275 -msgid "Default state" -msgstr "Statut par défaut" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" +msgstr "Prix Total + Frais de port (HT)" -#: inc/config.class.php:286 -msgid "Add order location to item" -msgstr "Ajouter le lieu de la commande à l'élément" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "Prix Total (TTC)" -#: inc/config.class.php:293 -msgid "Add billing details to item" -msgstr "Ajouter les détails de facturation à l'élément" +#: inc/order.class.php:1534 +msgid "Validation process" +msgstr "Circuit de validation d'une commande" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" -msgstr "Nom par défaut" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "Voulez vous vraiment annuler cette commande ? Cette option est irréversible!" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" -msgstr "Numéro de série par défaut" +#: inc/order.class.php:1560 +msgid "Validate order" +msgstr "Valider la commande" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "Numéro d'inventaire par défaut" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" +msgstr "Voulez vous vraiment annuler la demande de validation ?" -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "Cycle de vie d'une commande" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" +msgstr "Annuler la demande de validation" -#: inc/config.class.php:342 -msgid "State before validation" -msgstr "Statut avant la validation" +#: inc/order.class.php:1574 +msgid "Ask for validation" +msgstr "Faire valider la commande" -#: inc/config.class.php:352 -msgid "Waiting for validation state" -msgstr "Statut en attente de validation" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" +msgstr "Voulez vous modifier le contenu de la commande ? " -#: inc/config.class.php:362 -msgid "Validated order state" -msgstr "Statut lorsque la commande est validée" +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "Modifier la commande" -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "Statut lorsqu'au moins un matériel est livré" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." +msgstr "Merci d'ajouter au moins un équipement à votre commande." -#: inc/config.class.php:382 -msgid "Order delivered state" -msgstr "Statut lorsque tous les matériels sont livrés" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" +msgstr "Merci de sélectionner un modèle dans vos préférences" -#: inc/config.class.php:392 -msgid "Order paied state" -msgstr "Statut lorsque la commande est payée" +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "Adresse de facturation" -#: inc/config.class.php:402 -msgid "Canceled order state" -msgstr "Statut lorsque la commande est annulée" +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "Adresse de livraison" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" -msgstr "Qualité fournisseur" +#: inc/order.class.php:1726 +msgid "The" +msgstr "le" -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" -msgstr "Note" +#: inc/order.class.php:1728 +msgid "Issuer order" +msgstr "Emetteur d'ordre" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" -msgstr "Commentaire du Sondage" +#: inc/order.class.php:1746 +msgid "Recipient" +msgstr "Destinataire" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" -msgstr "Qualité du suivi administratif (contrat, factures, courrier...)" +#: inc/order.class.php:1749 +msgid "Designation" +msgstr "Désignation" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" -msgstr "Qualité du suivi commercial, fréquence des visites, réactivité" +#: inc/order.class.php:1751 +msgid "Unit price" +msgstr "Prix Unitaire" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" -msgstr "Disponibilité des interlocuteurs fournisseur" +#: inc/order.class.php:1753 +msgid "Discount rate" +msgstr "Taux de remise" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" -msgstr "Qualité des prestations collaborateurs du fournisseur" +#: inc/order.class.php:1754 +msgid "Sum tax free" +msgstr "Montant HT" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" -msgstr "Fiabilité sur les disponibilités annoncées" +#: inc/order.class.php:1881 +msgid "€" +msgstr "€" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" -msgstr "Note globale du fournisseur" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" +msgstr "Signature de l’émetteur d’ordre" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" -msgstr "Note moyenne sur 10 (X points / 5)" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "Commandes liées" -#: inc/documentcategory.class.php:39 -msgid "Document category" -msgstr "Catégorie de documents" +#: inc/order.class.php:1994 +msgid "Unlink" +msgstr "Supprimer le lien" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" -msgstr "Préfixe de la catégorie de documents" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." +msgstr "Le total des commandes liées à ce budget est supérieur à sa valeur." -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" -msgstr "Vous ne pouvez pas supprimer ce statut" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." +msgstr "Le total des commandes liées à ce budget est égal à sa valeur." -#: inc/orderstate.class.php:87 -msgid "Draft" -msgstr "En cours d'édition" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "Demande de validation de la commande" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" -msgstr "En attente d'approbation" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "Commande validée" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "Validée" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "Commandes en retard" -#: inc/orderstate.class.php:90 -msgid "Being delivered" -msgstr "En cours de livraison" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "Commande totalement livrée" -#: inc/orderstate.class.php:91 -msgid "Delivered" -msgstr "Livrée" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "Commentaire de la validation" -#: inc/orderstate.class.php:92 -msgid "Canceled" -msgstr "Annulée" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "Annulation de la validation effectuée" -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "Payée" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "Editeur de la validation" -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" -msgstr "Référence produit fournisseur" +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" +msgstr "Element de la commande" -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/order_item.class.php:115 inc/order_item.class.php:369 #: inc/order_item.class.php:476 inc/order_item.class.php:801 #: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Prix unitaire (HT)" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "Référence produit" - -#: inc/reference_supplier.class.php:476 -msgid "List references" -msgstr "Liste des références" - -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "Livraison" - -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "Réceptionné" - -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "Facture" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" -msgstr "Pas de matériel à réceptionner" - -#: inc/reception.class.php:350 -msgid "Delivered items" -msgstr "Matériel(s) réceptionné(s)" - -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" -msgstr "Réceptionner matériel" - -#: inc/reception.class.php:609 -msgid "Waiting for delivery" -msgstr "En attente de livraison" - -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" -msgstr "Il n'y a pas assez de matériels à réceptionner" - -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" -msgstr "Matériel(s) réceptionné(s) avec succès" - -#: inc/reception.class.php:784 -msgid "Item already taken delivery" -msgstr "Matériel(s) déjà réceptionné(s)" - -#: inc/reception.class.php:950 -msgid "Item delivered" -msgstr "Réception matériel(s)" - -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" -msgstr "un numéro de facture est obligatoire" - -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" -msgstr "Utiliser ce modèle" - -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" -msgstr "Utiliser cette signature" - -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 -msgid "Order item" -msgstr "Element de la commande" - #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "Nom du produit" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "Référence produit fournisseur" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "" @@ -589,6 +569,14 @@ msgstr "Certains champs ne peuvent-être modifiés : ils proviennent d'une comma msgid "Add to the order from the catalog" msgstr "" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Référence produit" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "Veuillez sélectionner un fournisseur" @@ -605,6 +593,11 @@ msgstr "" msgid "An analytic nature is mandatory !" msgstr "" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "Pas de matériel à réceptionner" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -625,12 +618,6 @@ msgstr "Voulez vous vraiment supprimer ce(s) détail(s) ? Les matériels livrés msgid "Discounted price tax free" msgstr "Prix remisé (HT)" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "Prix Total (TTC)" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "Informations sur la commande" @@ -643,305 +630,315 @@ msgstr "Statut facturation" msgid "Paid value" msgstr "Valeur payée" -#: inc/billstate.class.php:59 -msgid "Being paid" -msgstr "En cours de paiement" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Facture" -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "Non payée" +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "Liste des références" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" -msgstr "Demande de validation de la commande" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "Impossible de créer une référence sans nom" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" -msgstr "Commande validée" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "Impossible de créer une référence sans type" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" -msgstr "Commandes en retard" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "Une référence du même nom existe déjà" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" -msgstr "Commande totalement livrée" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "Référence(s) actuellement utilisée(s)" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" -msgstr "Commentaire de la validation" +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "Copie de" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" -msgstr "Annulation de la validation effectuée" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "Sélectionnez le type de matériel souhaité" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" -msgstr "Editeur de la validation" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "Vue par type de matériel" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "Copier la référence" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "Vous ne pouvez pas supprimer ce statut" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "En cours d'édition" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "En attente d'approbation" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Validée" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "En cours de livraison" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Livrée" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "Annulée" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Payée" #: inc/link.class.php:48 msgid "Generation" msgstr "Génération" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "Générer matériel associé" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "Lier à un matériel existant" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "Supprimer le lien avec le matériel" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "Impossible de lier le même matériel à plusieurs lignes détail" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "Impossible de lier du matériel non réceptionné" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "Aucun matériel associé" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "Matériel lié à la commande" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "Matériel déjà lié à un objet d'inventaire" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "Matériel délié de la commande" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "Une ou plusieurs lignes sélectionnées n'ont pas de matériel associé" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "Matériel généré à partir de la commande" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "Matériel(s) généré(s) avec succès" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "Génération du bon de commande" - -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "Valider une commande" - -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "Annuler une commande" - -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "Modifier une commande validée" - -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "Générer la commande sans validation" - -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "Frais de port" - -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" -msgstr "Livraison en retard" +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "Configuration du plugin" -#: inc/order.class.php:584 -msgid "Account Section" -msgstr "" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "TVA par défaut" -#: inc/order.class.php:636 -msgid "Validation" -msgstr "Validation" +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "Utiliser le circuit de validation" -#: inc/order.class.php:642 -msgid "Purchase order" -msgstr "Bon de commande" +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "Génération d'un bon de commande en ODT" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" -msgstr "Un numéro de commande est obligatoire !" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "Activer la qualité des fournisseurs" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" -msgstr "" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "Afficher les informations fournisseur de la commande" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." -msgstr "La date de commande doit être comprise dans les dates déclarées pour le budget sélectionné." +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "Couleur lorsque la date de livraison estimée est dépassée" -#: inc/order.class.php:1096 -msgid "Due date overtaken" -msgstr "La date estimée est dépassée" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" +msgstr "Copier les documents de la commande à la génération d'un matériel" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" -msgstr "Prix Total (HT)" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "Rubrique par défaut pour l'ajout de documents à une commande" -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" -msgstr "Prix Total + Frais de port (HT)" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "Ne pas afficher les budgets ayant expiré" -#: inc/order.class.php:1534 -msgid "Validation process" -msgstr "Circuit de validation d'une commande" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" +msgstr "Transmettre les changements de budget aux assets associés" -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" -msgstr "Voulez vous vraiment annuler cette commande ? Cette option est irréversible!" +#: inc/config.class.php:212 +msgid "Display account section on order form" +msgstr "" -#: inc/order.class.php:1560 -msgid "Validate order" -msgstr "Valider la commande" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" +msgstr "" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" -msgstr "Voulez vous vraiment annuler la demande de validation ?" +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" -msgstr "Annuler la demande de validation" +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "" -#: inc/order.class.php:1574 -msgid "Ask for validation" -msgstr "Faire valider la commande" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "Actions automatiques lors de la réception" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" -msgstr "Voulez vous modifier le contenu de la commande ? " +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "" -#: inc/order.class.php:1582 -msgid "Edit order" -msgstr "Modifier la commande" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." -msgstr "Merci d'ajouter au moins un équipement à votre commande." +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "Activer la génération automatique" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" -msgstr "Merci de sélectionner un modèle dans vos préférences" +#: inc/config.class.php:269 +msgid "Asked" +msgstr "Demander" -#: inc/order.class.php:1681 -msgid "Invoice address" -msgstr "Adresse de facturation" +#: inc/config.class.php:275 +msgid "Default state" +msgstr "Statut par défaut" -#: inc/order.class.php:1716 -msgid "Delivery address" -msgstr "Adresse de livraison" +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "Ajouter le lieu de la commande à l'élément" -#: inc/order.class.php:1726 -msgid "The" -msgstr "le" +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "Ajouter les détails de facturation à l'élément" -#: inc/order.class.php:1728 -msgid "Issuer order" -msgstr "Emetteur d'ordre" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "Nom par défaut" -#: inc/order.class.php:1746 -msgid "Recipient" -msgstr "Destinataire" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "Numéro de série par défaut" -#: inc/order.class.php:1749 -msgid "Designation" -msgstr "Désignation" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "Numéro d'inventaire par défaut" -#: inc/order.class.php:1751 -msgid "Unit price" -msgstr "Prix Unitaire" +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "Cycle de vie d'une commande" -#: inc/order.class.php:1753 -msgid "Discount rate" -msgstr "Taux de remise" +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "Statut avant la validation" -#: inc/order.class.php:1754 -msgid "Sum tax free" -msgstr "Montant HT" +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "Statut en attente de validation" -#: inc/order.class.php:1881 -msgid "€" -msgstr "€" +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "Statut lorsque la commande est validée" -#: inc/order.class.php:1882 -msgid "Signature of issuing order" -msgstr "Signature de l’émetteur d’ordre" +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "Statut lorsqu'au moins un matériel est livré" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" -msgstr "Commandes liées" +#: inc/config.class.php:382 +msgid "Order delivered state" +msgstr "Statut lorsque tous les matériels sont livrés" -#: inc/order.class.php:1994 -msgid "Unlink" -msgstr "Supprimer le lien" +#: inc/config.class.php:392 +msgid "Order paied state" +msgstr "Statut lorsque la commande est payée" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." -msgstr "Le total des commandes liées à ce budget est supérieur à sa valeur." +#: inc/config.class.php:402 +msgid "Canceled order state" +msgstr "Statut lorsque la commande est annulée" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." -msgstr "Le total des commandes liées à ce budget est égal à sa valeur." +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "un numéro de facture est obligatoire" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" -msgstr "Statistique livraison" +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "Livraison" -#: inc/order_supplier.class.php:309 -msgid "No specified status" -msgstr "Statut non spécifié" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "Réceptionné" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" -msgstr "Impossible de créer une référence sans nom" +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "Matériel(s) réceptionné(s)" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" -msgstr "Impossible de créer une référence sans type" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "En attente de livraison" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" -msgstr "Une référence du même nom existe déjà" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "Il n'y a pas assez de matériels à réceptionner" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" -msgstr "Référence(s) actuellement utilisée(s)" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "Matériel(s) réceptionné(s) avec succès" -#: inc/reference.class.php:838 -msgid "Copy of" -msgstr "Copie de" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "Matériel(s) déjà réceptionné(s)" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" -msgstr "Sélectionnez le type de matériel souhaité" +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "Réception matériel(s)" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" -msgstr "Vue par type de matériel" +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "En cours de paiement" -#: inc/reference.class.php:993 -msgid "Copy reference" -msgstr "Copier la référence" +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "Non payée" diff --git a/locales/hr_HR.mo b/locales/hr_HR.mo new file mode 100644 index 0000000000..a68bf3bc06 Binary files /dev/null and b/locales/hr_HR.mo differ diff --git a/locales/hr_HR.po b/locales/hr_HR.po new file mode 100644 index 0000000000..0fda1bcc78 --- /dev/null +++ b/locales/hr_HR.po @@ -0,0 +1,940 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# milotype , 2020 +msgid "" +msgstr "" +"Project-Id-Version: GLPI Plugin - Order\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" +"PO-Revision-Date: 2020-02-12 16:42+0000\n" +"Last-Translator: milotype \n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/teclib/glpi-plugin-order/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Instalacija dodatka ili nadogradnja" + +#: hook.php:88 +msgid "Can't create folder" +msgstr "Nije moguće stvori mapu" + +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "Nije moguće kopirati datoteku %1$s u %2$s" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "PDV" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Uvjeti plaćanja" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Stanje narudžbe" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Druga vrsta predmeta" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Stanje dostave" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Stanje ulaznog računa" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Vrsta ulaznog računa" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "Svojstvo analitike" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "Odjeljak računa" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Narudžbe" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "Ime narudžbe" + +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 +#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +msgid "Order number" +msgstr "Broj narudžbe" + +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Narudžba" + +#: report/deliveryinfos/deliveryinfos.php:47 +msgid "deliveryinfos_report_title" +msgstr "Podaci o dostavi" + +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "Datum narudžbe" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "Mjesto dostave" + +#: report/deliveryinfos/deliveryinfos.php:64 +msgid "Orders total" +msgstr "Narudžbe ukupno" + +#: report/deliveryinfos/deliveryinfos.php:65 +msgid "Late orders total" +msgstr "Kasne narudžbe ukupno" + +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "Dostava narudžbe" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "Procijenjeni datum dospijeća" + +#: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 +#: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 +msgid "Quote number" +msgstr "Broj predračuna" + +#: front/order_supplier.form.php:66 +msgid "Delete" +msgstr "Brisanje" + +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 +#: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 +msgid "Supplier Detail" +msgstr "Podaci o dobavljaču" + +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 +msgid "Orders management" +msgstr "Upravljanje narudžbama" + +#: front/order.form.php:94 inc/notificationtargetorder.class.php:120 +msgid "Order is validated" +msgstr "Narudžba je provjerena" + +#: front/order.form.php:103 +msgid "Order validation successfully requested" +msgstr "Provjera narudžbe uspješno zatražena" + +#: front/order.form.php:113 +msgid "Validation query is now canceled" +msgstr "Zahtjev za provjerom je sada otkazan" + +#: front/order.form.php:123 inc/notificationtargetorder.class.php:49 +#: inc/notificationtargetorder.class.php:124 +msgid "Order canceled" +msgstr "Narudžba otkazana" + +#: front/order.form.php:134 inc/notificationtargetorder.class.php:50 +msgid "Order currently edited" +msgstr "Narudžba se trenutačno uređuje" + +#: front/order.form.php:143 front/order.form.php:218 front/order.form.php:366 +msgid "The discount pourcentage must be between 0 and 100" +msgstr "Postotak popusta mora biti između 0 i 100" + +#: front/order.form.php:147 front/order.form.php:245 front/order.form.php:265 +msgid "Add reference" +msgstr "Dodaj referencu" + +#: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 +msgid "Quantity" +msgstr "Količina" + +#: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 +#: inc/order_item.class.php:123 inc/order_item.class.php:131 +#: inc/order_item.class.php:371 inc/order_item.class.php:478 +#: inc/order_item.class.php:802 inc/order_item.class.php:1025 +#: inc/order_item.class.php:1403 +msgid "Discount (%)" +msgstr "Popust (%)" + +#: front/order.form.php:194 front/order.form.php:201 front/order.form.php:314 +#: front/order.form.php:320 +msgid "Remove reference" +msgstr "Ukloni referencu" + +#: front/order.form.php:211 inc/reception.class.php:816 +msgid "No item selected" +msgstr "Nijedan predmet nije odabran" + +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "Dobavljač za referencu" + +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Reference proizvoda" + +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "Ulazni računi" + +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" +msgstr "Koristi ovaj model" + +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" +msgstr "Koristi ovaj znak" + +#: inc/referencefree.class.php:39 +msgid "Reference free" +msgstr "Bez reference" + +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "Statistika dostave" + +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "Neodređeno stanje" + +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "Kvaliteta dobavljača" + +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "Bilješka" + +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "Komentiraj anketu" + +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" +msgstr "Kvaliteta administrativnog objavljivanja (ugovori, računi, pošta itd.)" + +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" +msgstr "Kvaliteta komercijalnog objavljivanja, posjeta, odgovora" + +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "Dostupnost kontakta" + +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" +msgstr "Kvaliteta intervencije dobavljača" + +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "Pouzdanost o najavljenim kašnjenjima" + +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "Krajnja bilješka dobavljača" + +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" +msgstr "Prosječna ocjena do 10 (X bodova / 5)" + +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "Kategorija dokumenta" + +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "Prefiks kategorije dokumenta" + +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" +msgstr "Generiranje narudžbe" + +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "Uzmi predmet dostave" + +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "Provjera narudžbe" + +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" +msgstr "Otkaži narudžbu" + +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "Uredi provjerenu narudžbu" + +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "Generiraj narudžbu bez provjere" + +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" +msgstr "Poštarina" + +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" +msgstr "Narudžba kasni" + +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 +msgid "Author group" +msgstr "Grupa autora" + +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 +msgid "Recipient group" +msgstr "Grupa primatelja" + +#: inc/order.class.php:584 +msgid "Account Section" +msgstr "Odjeljak računa" + +#: inc/order.class.php:636 +msgid "Validation" +msgstr "Provjera" + +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "Narudžba" + +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "Broj narudžbe je obavezan!" + +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" +msgstr "Odjeljak računa je obavezan!" + +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." +msgstr "Datum narudžbe mora biti unutar datuma koji su uneseni za odabrani proračun." + +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "Bez PDV-a" + +#: inc/order.class.php:1096 +msgid "Due date overtaken" +msgstr "Datum dospijeća istekao" + +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" +msgstr "Cijena bez poreza" + +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" +msgstr "Cijena bez poreza s poštarinom" + +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "Bruto cijena" + +#: inc/order.class.php:1534 +msgid "Validation process" +msgstr "Proces provjere" + +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "Stvarno želiš otkazati ovu narudžbu? Ova je opcija nepovratna!" + +#: inc/order.class.php:1560 +msgid "Validate order" +msgstr "Provjeri narudžbu" + +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" +msgstr "Želiš li otkazati odobrenje provjere?" + +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" +msgstr "Otkaži zahtjev za provjerom" + +#: inc/order.class.php:1574 +msgid "Ask for validation" +msgstr "Zatraži provjeru" + +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" +msgstr "Stvarno želiš urediti ovu narudžbu?" + +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "Uredi narudžbu" + +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." +msgstr "U svoju narudžbu dodaj barem jednu opremu." + +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" +msgstr "Odaberi jedan model u svoje postavke" + +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "Adresa računa" + +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "Adresa dostave" + +#: inc/order.class.php:1726 +msgid "The" +msgstr " " + +#: inc/order.class.php:1728 +msgid "Issuer order" +msgstr "Naručitelj" + +#: inc/order.class.php:1746 +msgid "Recipient" +msgstr "Primatelj" + +#: inc/order.class.php:1749 +msgid "Designation" +msgstr "Označivanje" + +#: inc/order.class.php:1751 +msgid "Unit price" +msgstr "Jedinična cijena" + +#: inc/order.class.php:1753 +msgid "Discount rate" +msgstr "Stopa popusta" + +#: inc/order.class.php:1754 +msgid "Sum tax free" +msgstr "Ukupno bez poreza" + +#: inc/order.class.php:1881 +msgid "€" +msgstr "kn" + +#: inc/order.class.php:1882 +msgid "Signature of issuing order" +msgstr "Potpis naručitelja" + +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "Povezane narudžbe" + +#: inc/order.class.php:1994 +msgid "Unlink" +msgstr "Odspoji" + +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." +msgstr "Ukupne narudžbe povezane s ovim proračunom veće su od njegove vrijednosti." + +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." +msgstr "Ukupne narudžbe povezane s ovim proračunom jednake su njegovoj vrijednosti." + +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "Zatraži provjeru narudžbe" + +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "Narudžba provjerena" + +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "Kasne narudžbe" + +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "Nema predmeta za generiranje" + +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "Komentar provjere" + +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "Provjera uspješno prekinuta" + +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "Autor provjere" + +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" +msgstr "Predmet narudžbe" + +#: inc/order_item.class.php:115 inc/order_item.class.php:369 +#: inc/order_item.class.php:476 inc/order_item.class.php:801 +#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 +#: inc/reference.class.php:183 +msgid "Unit price tax free" +msgstr "Jedinična cijena bez poreza" + +#: inc/order_item.class.php:160 inc/order_item.class.php:470 +msgid "Product name" +msgstr "Ime proizvoda" + +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "Proizvođačka referenca proizvoda" + +#: inc/order_item.class.php:195 +msgid "Analytic Nature" +msgstr "Svojstvo analitike" + +#: inc/order_item.class.php:253 +msgid "Some fields cannont be modified because they belong to an order" +msgstr "Neka polja nije moguće promijeniti, jer pripadaju narudžbi" + +#: inc/order_item.class.php:358 +msgid "Add to the order from the catalog" +msgstr "Dodaj narudžbi iz kataloga" + +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Referenca proizvoda" + +#: inc/order_item.class.php:452 inc/order_item.class.php:587 +msgid "Please select a supplier" +msgstr "Odaberi dobavljača" + +#: inc/order_item.class.php:465 +msgid "Add to the order free items" +msgstr "Narudžbi dodaj slobodne predmete" + +#: inc/order_item.class.php:479 +msgid "Add the reference" +msgstr "Dodaj referencu" + +#: inc/order_item.class.php:608 inc/order_item.class.php:621 +msgid "An analytic nature is mandatory !" +msgstr "Svojstvo analitike je obavezno!" + +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "Nema predmeta koji se može uzeti iz isporuke" + +#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/reference.class.php:577 +msgid "Manufacturer reference" +msgstr "Referenca proizvođaća" + +#: inc/order_item.class.php:808 inc/order_item.class.php:1000 +#: inc/order_item.class.php:1202 +msgid "Do you really want to update this item ?" +msgstr "Stvarno želiš aktualizirati ovaj predmet?" + +#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +msgid "" +"Do you really want to delete these details ? Delivered items will not be " +"linked to order !" +msgstr "Stvarno želiš izbrisati ove detalje? Dostavljeni predmeti neće biti povezani s narudžbom!" + +#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +msgid "Discounted price tax free" +msgstr "Cijena s popustom bez poreza" + +#: inc/order_item.class.php:1295 +msgid "Order informations" +msgstr "Podaci narudžbe" + +#: inc/order_item.class.php:1471 +msgid "Payment status" +msgstr "Stanje plaćanja" + +#: inc/order_item.class.php:1484 +msgid "Paid value" +msgstr "Plaćeni iznos" + +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Ulazni račun" + +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "Popis referenca" + +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "Nije moguće stvoriti referencu bez imena" + +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "Nije moguće stvoriti referencu bez vrste" + +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "Još uvijek postoji referenca s istim imenom" + +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "Korištene reference" + +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "Kopija od" + +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "Odaberi željenu vrstu predmeta" + +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "Prikaz prema vrsti predmeta" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "Kopiraj referencu" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "Ne možeš ukloniti ovo stanje" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "Skica" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "Čekanje na odobrenje" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Provjereno" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "Dostavlja se" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Dostavljeno" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "Otkazano" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Plaćeno" + +#: inc/link.class.php:48 +msgid "Generation" +msgstr "Generiranje" + +#: inc/link.class.php:75 inc/link.class.php:510 +msgid "Generate item" +msgstr "Generiraj predmet" + +#: inc/link.class.php:511 +msgid "Link to an existing item" +msgstr "Poveži s postojećim predmetom" + +#: inc/link.class.php:512 +msgid "Delete item link" +msgstr "Izbriši vezu s predmetom" + +#: inc/link.class.php:588 +msgid "Cannot link several items to one detail line" +msgstr "Nije moguće povezati mnogostruke predmete na jedan redak detalja" + +#: inc/link.class.php:599 +msgid "Cannot link items not delivered" +msgstr "Nije moguće povezati predmete koji nisu dostavljeni" + +#: inc/link.class.php:713 +msgid "No associated item" +msgstr "Nema povezanog predmeta" + +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 +msgid "Item linked to order" +msgstr "Predmet povezan s narudžbom" + +#: inc/link.class.php:1037 +msgid "Item already linked to another one" +msgstr "Predmet je već povezan s jednim drugim" + +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 +msgid "Item unlink form order" +msgstr "Odspoji predmet iz obrasca narudžbe" + +#: inc/link.class.php:1097 +msgid "One or several selected rows haven't linked items" +msgstr "Jedan ili više stupaca nema povezane predmete" + +#: inc/link.class.php:1277 inc/link.class.php:1281 +msgid "Item generated by using order" +msgstr "Predmet generiran pomoću narudžbe" + +#: inc/link.class.php:1288 +msgid "Item successfully selected" +msgstr "Predmet uspješno odabran" + +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "Konfiguracija dodatka" + +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "Standardni PDV" + +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "Koristi proces provjere" + +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "Generiranje narudžbe u ODT-u" + +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "Aktiviraj kvalitetu zadovoljstva dobavljača" + +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "Prikaži podatke o dobavljaču u narudžbi" + +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "Boja za narudžbe čiji je datum dospijeća istekao" + +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" +msgstr "Kopiraj dokumente narudžbe pri stvaranju novog predmeta" + +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "Standaradno zaglavlje prilikom dodavanja dokumenta narudžbi" + +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "Sakrij neaktivne proračune" + +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" +msgstr "Prenesi promjene proračuna na povezani inventar" + +#: inc/config.class.php:212 +msgid "Display account section on order form" +msgstr "Prikaži odjeljak računa na obrascu narudžbe" + +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" +msgstr "Postavi odjeljak računa kao obavezni podatak na obrascu narudžbe" + +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "Koristi slobodne reference" + +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "Preimenuj dokumente koji su dodani u narudžbu" + +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "Automatske radnje pri dostavi" + +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "Prikaži svojstvo analitike na obrascu predmeta" + +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "Postavi svojstvo analitike kao obavezni podatak na obrascu predmeta" + +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "Aktiviraj automatsko generiranje" + +#: inc/config.class.php:269 +msgid "Asked" +msgstr "Upitano" + +#: inc/config.class.php:275 +msgid "Default state" +msgstr "Standardno stanje" + +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "Dodaj mjesto narudžbe za predmet" + +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "Dodaj detalje o naplaćivanju za predmet" + +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "Standardno ime" + +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "Standardni serijski broj" + +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "Standardni inventarski broj" + +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "Životni vijek narudžbe" + +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "Stanje prije provjere" + +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "Stanje čekanja na provjeru" + +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "Stanje provjerene narudžbe" + +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "Stanje narudžbe koja se dostavlja" + +#: inc/config.class.php:382 +msgid "Order delivered state" +msgstr "Stanje dostavljene narudžbe" + +#: inc/config.class.php:392 +msgid "Order paied state" +msgstr "Stanje plaćene narudžbe" + +#: inc/config.class.php:402 +msgid "Canceled order state" +msgstr "Stanje otkazane narudžbe" + +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "Broj računa je obavezan" + +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "Dostava" + +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "Preuzeta dostava" + +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "Dostavljeni predmeti" + +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "Čekanje na isporuku" + +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "Nema dovoljno predmeta za dostavljanje" + +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "Predmet uspješno preuzete dostave" + +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "Predmet već preuzete dostave" + +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "Predmet dostavljen" + +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "Plaća se" + +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "Nije plaćeno" diff --git a/locales/it_IT.mo b/locales/it_IT.mo index 1c22f87cb8..e2ac08d689 100644 Binary files a/locales/it_IT.mo and b/locales/it_IT.mo differ diff --git a/locales/it_IT.po b/locales/it_IT.po index 7aacbaae6b..ba5d95cabf 100644 --- a/locales/it_IT.po +++ b/locales/it_IT.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: 2018-12-17 15:03+0000\n" "Last-Translator: Cédric Anne\n" "Language-Team: Italian (Italy) (http://www.transifex.com/teclib/glpi-plugin-order/language/it_IT/)\n" @@ -19,42 +19,114 @@ msgstr "" "Language: it_IT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Installazione o aggiornamento del plugin" + +#: hook.php:88 +msgid "Can't create folder" +msgstr "Non posso creare la cartella" + +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "Non posso copiare il file %1$s in %2$s" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "IVA" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Condizioni di pagamento" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Stato dell'ordine" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Tipo altre attrezzature" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Stato spedizione" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Stato Fattura" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Tipo di Fattura" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" msgstr "" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" -msgstr "Data dell'ordine" +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" -msgstr "Indirizzo Spedizione" +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Ordini" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "Ordine" + +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "Numero d'ordine" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "Data di scadenza prevista" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Ordine" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "Data dell'ordine" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "Indirizzo Spedizione" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "Ordini totali" @@ -63,6 +135,15 @@ msgstr "Ordini totali" msgid "Late orders total" msgstr "Ordini tardivi totali" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "Data di scadenza prevista" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -72,44 +153,20 @@ msgstr "Numero Interno" msgid "Delete" msgstr "Cancellare" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "Informazioni sul fornitore" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "Gestione ordini" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "Ordini" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "Riferimento del fornitore" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "Gestione Riferimenti Prodotti" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "Fatture" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "Ordine verificato" @@ -140,9 +197,9 @@ msgid "Add reference" msgstr "Aggiungi riferimento" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "Quantità" @@ -163,417 +220,340 @@ msgstr "Rimuovi Riferimento" msgid "No item selected" msgstr "Nessun Articolo selezionato" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" -msgstr "IVA esclusa" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "Riferimento del fornitore" -#: hook.php:46 -msgid "Plugin installation or upgrade" -msgstr "Installazione o aggiornamento del plugin" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Gestione Riferimenti Prodotti" -#: hook.php:88 -msgid "Can't create folder" -msgstr "Non posso creare la cartella" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "Fatture" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" -msgstr "Non posso copiare il file %1$s in %2$s" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" +msgstr "Usa questo modello" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" -msgstr "IVA" +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" +msgstr "Usa questa firma" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" -msgstr "Condizioni di pagamento" +#: inc/referencefree.class.php:39 +msgid "Reference free" +msgstr "" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" -msgstr "Stato dell'ordine" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "Statistiche spedizione" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "Tipo altre attrezzature" +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "Nessun status specificato" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" -msgstr "Stato spedizione" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "Qualità Fornitori" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" -msgstr "Stato Fattura" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "Note" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "Tipo di Fattura" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "Commenti al sondaggio" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" -msgstr "" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" +msgstr "Qualità monitoraggio amministrativo (contratti, fatture, corrieri...)" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" -msgstr "" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" +msgstr "Qualità monitoraggio commerciale, frequenza di visita, reattività" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "Ordine" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "Disponibilità degli interlocutori/fornitori" -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "Ordine" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" +msgstr "Qualità delle prestazioni dei collaboratori dei fornitori" -#: inc/referencefree.class.php:39 -msgid "Reference free" -msgstr "" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "Affidabilità sulle disponibilità indicate" -#: inc/config.class.php:103 -msgid "Plugin configuration" -msgstr "Configurazione Plugin" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "Voto globale sul fornitore" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "IVA predefinita" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" +msgstr "Voto medio su 10 (X punti / 5)" -#: inc/config.class.php:118 -msgid "Use validation process" -msgstr "Usa il processo di verifica" +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "Categoria del documento" -#: inc/config.class.php:125 -msgid "Order generation in ODT" -msgstr "Generazione ordine in ODT" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "Prefisso di categoria del documento" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" -msgstr "Attiva il sondaggio sulla qualità dei fornitori" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" +msgstr "Generazione Ordine" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" -msgstr "Mostra informazioni sugli ordini dei fornitori" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "Articolo preso in consegna" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" -msgstr "Colore da mostrare quando la data di scadenza dell'ordine è superata" +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "Verifica dell'ordine" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" -msgstr "Copia i documenti dell'ordine alla creazione di un nuovo elemento" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" +msgstr "Cancellazione Ordine" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" -msgstr "Intestazione predefinita quando si aggiunge un documento ad un ordine" +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "Modifica Ordine verificato" + +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "Genera l'ordine senza la verifica" + +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" +msgstr "Spedizione" + +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" +msgstr "Ordine in ritardo" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Gruppo dell'autore" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" msgstr "Gruppo del destinatario" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" -msgstr "Nascondi i budget inattivi" +#: inc/order.class.php:584 +msgid "Account Section" +msgstr "" -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" -msgstr "Invia la modifica del budget alle risorse collegate" - -#: inc/config.class.php:212 -msgid "Display account section on order form" -msgstr "" +#: inc/order.class.php:636 +msgid "Validation" +msgstr "Verifica" -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" -msgstr "" +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "Ordinazione d'acquisto" -#: inc/config.class.php:226 -msgid "Use free references" -msgstr "" +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "Il numero d'ordine è obbligatorio!" -#: inc/config.class.php:233 -msgid "Rename documents added in order" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" msgstr "" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" -msgstr "Azioni automatiche alla consegna" - -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" -msgstr "" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." +msgstr "La data dell'ordine deve essere compresa tra le date inserite per il budget selezionato." -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" -msgstr "" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "IVA esclusa" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" -msgstr "Abilita le azioni automatiche" +#: inc/order.class.php:1096 +msgid "Due date overtaken" +msgstr "Data di scadenza superata" -#: inc/config.class.php:269 -msgid "Asked" -msgstr "Richiesto" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" +msgstr "Importo senza IVA" -#: inc/config.class.php:275 -msgid "Default state" -msgstr "Stato predefinito" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" +msgstr "Importo Totale + Spedizione" -#: inc/config.class.php:286 -msgid "Add order location to item" -msgstr "Aggiungi la posizione dell'ordine all'elemento" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "Importo (iva + sconto)" -#: inc/config.class.php:293 -msgid "Add billing details to item" -msgstr "Aggiungere dati di fatturazione alla voce" +#: inc/order.class.php:1534 +msgid "Validation process" +msgstr "Processo di verifica" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" -msgstr "Nome predefinito" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "Vuoi cencellare questo ordine? L'operazione è irreversibile!" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" -msgstr "Numero di serie predefinito" +#: inc/order.class.php:1560 +msgid "Validate order" +msgstr "Verifica Ordine" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "Numero di inventario predefinito" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" +msgstr "Vuoi cancellare il processo di verifica?" -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "Ciclo di vita dell'ordine" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" +msgstr "Elimina la richiesta di verifica" -#: inc/config.class.php:342 -msgid "State before validation" -msgstr "Stato prima dell'accettazione" +#: inc/order.class.php:1574 +msgid "Ask for validation" +msgstr "Richiesta di verifica" -#: inc/config.class.php:352 -msgid "Waiting for validation state" -msgstr "In attesa di approvazione" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" +msgstr "Vuoi modificare l'ordine? " -#: inc/config.class.php:362 -msgid "Validated order state" -msgstr "Ordini approvati" +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "Modifica Ordine" -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "Ordine in consegna" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." +msgstr "Grazie per aver aggiunto attrezzature all ordine" -#: inc/config.class.php:382 -msgid "Order delivered state" -msgstr "Ordine consegnato" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" +msgstr "Grazie per aver selezionato il modello preferito" -#: inc/config.class.php:392 -msgid "Order paied state" -msgstr "Ordine saldato" +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "Indirizzo Fatturazione" -#: inc/config.class.php:402 -msgid "Canceled order state" -msgstr "Ordine annullato" +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "Indirizzo Spedizione" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" -msgstr "Qualità Fornitori" +#: inc/order.class.php:1726 +msgid "The" +msgstr "il" -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" -msgstr "Note" +#: inc/order.class.php:1728 +msgid "Issuer order" +msgstr "Emissione Ordine" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" -msgstr "Commenti al sondaggio" +#: inc/order.class.php:1746 +msgid "Recipient" +msgstr "Recipient" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" -msgstr "Qualità monitoraggio amministrativo (contratti, fatture, corrieri...)" +#: inc/order.class.php:1749 +msgid "Designation" +msgstr "Denominazione" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" -msgstr "Qualità monitoraggio commerciale, frequenza di visita, reattività" +#: inc/order.class.php:1751 +msgid "Unit price" +msgstr "Importo unitario" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" -msgstr "Disponibilità degli interlocutori/fornitori" +#: inc/order.class.php:1753 +msgid "Discount rate" +msgstr "Percentuale di sconto" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" -msgstr "Qualità delle prestazioni dei collaboratori dei fornitori" +#: inc/order.class.php:1754 +msgid "Sum tax free" +msgstr "Importo Totale (senza tasse)" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" -msgstr "Affidabilità sulle disponibilità indicate" +#: inc/order.class.php:1881 +msgid "€" +msgstr "€" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" -msgstr "Voto globale sul fornitore" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" +msgstr "Firma emettitore ordine" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" -msgstr "Voto medio su 10 (X punti / 5)" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "Ordini collegati" -#: inc/documentcategory.class.php:39 -msgid "Document category" -msgstr "Categoria del documento" +#: inc/order.class.php:1994 +msgid "Unlink" +msgstr "annulla collegamento" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" -msgstr "Prefisso di categoria del documento" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." +msgstr "Total orders related with this budget is greater than its value." -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" -msgstr "Non puoi rimuovere questo stato" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." +msgstr "Total orders related with this budget is equal to its value." -#: inc/orderstate.class.php:87 -msgid "Draft" -msgstr "In compilazione" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "Richiesta Accettazione Ordine" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" -msgstr "In approvazione" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "Ordine Accettato" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "Approvato" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "Ordini in ritardo" -#: inc/orderstate.class.php:90 -msgid "Being delivered" -msgstr "In consegna" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "Nessun Articolo Generato" -#: inc/orderstate.class.php:91 -msgid "Delivered" -msgstr "Consegnato" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "Commento alla verifica" -#: inc/orderstate.class.php:92 -msgid "Canceled" -msgstr "Annullato" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "Annullamento verifica effettuato" -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "Pagato" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "Modifica della verifica" -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" -msgstr "Riferimento prodotti per Produttore" +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" +msgstr "Ordina articolo" -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/order_item.class.php:115 inc/order_item.class.php:369 #: inc/order_item.class.php:476 inc/order_item.class.php:801 #: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Prezzo Unitario senza IVA" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "Riferimento Prodotto" - -#: inc/reference_supplier.class.php:476 -msgid "List references" -msgstr "Lista dei Riferimenti" - -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "Consegna" - -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "Ricevuta" - -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "Fattura" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" -msgstr "Nessun articolo da prendere in consegna" - -#: inc/reception.class.php:350 -msgid "Delivered items" -msgstr "Consegna Articoli" - -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" -msgstr "Articolo preso in consegna" - -#: inc/reception.class.php:609 -msgid "Waiting for delivery" -msgstr "In Attesa Spedizione" - -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" -msgstr "Nessun articolo in consegna" - -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" -msgstr "Articolo ricevuto" - -#: inc/reception.class.php:784 -msgid "Item already taken delivery" -msgstr "Articolo GIA ricevuto" - -#: inc/reception.class.php:950 -msgid "Item delivered" -msgstr "Ricezione Articoli" - -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" -msgstr "Un numero di fattura è obbligatorio" - -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" -msgstr "Usa questo modello" - -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" -msgstr "Usa questa firma" - -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 -msgid "Order item" -msgstr "Ordina articolo" - #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "Riferimento prodotti per Produttore" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "" @@ -586,6 +566,14 @@ msgstr "Alcuni elementi non possono essere modificati poichè parte di un ordine msgid "Add to the order from the catalog" msgstr "" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Riferimento Prodotto" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "Selezionare Fornitore" @@ -602,6 +590,11 @@ msgstr "" msgid "An analytic nature is mandatory !" msgstr "" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "Nessun articolo da prendere in consegna" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -622,12 +615,6 @@ msgstr "Vuoi cancellare questi dettaglii? Gli articoli consegnati non saranno co msgid "Discounted price tax free" msgstr "Importo scontato senza IVA" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "Importo (iva + sconto)" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "Informazioni Ordine" @@ -640,305 +627,315 @@ msgstr "Stato del pagamento" msgid "Paid value" msgstr "Valore pagato" -#: inc/billstate.class.php:59 -msgid "Being paid" -msgstr "In corso di pagamento" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Fattura" -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "Non pagato" +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "Lista dei Riferimenti" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" -msgstr "Richiesta Accettazione Ordine" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "Non posso creare riferimenti senza Nome" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" -msgstr "Ordine Accettato" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "Non posso creare riferimenti senza Tipo" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" -msgstr "Ordini in ritardo" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "Gia esiste un riferimento con lo stesso nome" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" -msgstr "Nessun Articolo Generato" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "Riferimenti già utilizzati" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" -msgstr "Commento alla verifica" +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "Copia di" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" -msgstr "Annullamento verifica effettuato" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "Seleziona il tipo voluto" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" -msgstr "Modifica della verifica" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "Vista per tipo" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "Copia di riferimento" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "Non puoi rimuovere questo stato" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "In compilazione" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "In approvazione" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Approvato" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "In consegna" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Consegnato" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "Annullato" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Pagato" #: inc/link.class.php:48 msgid "Generation" msgstr "Generazione" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "Carica in inventario" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "Collegamento a Entità esistente" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "Cancellazione collegamento articolo" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "Non possibile collegare più dettagli articoli in una sola linea" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "Non posso associare articoli non spediti" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "Nessun elemento Associato" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "Articolo collegato a Ordine" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "Articolo collegato ad altro Ordine" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "Articolo scollegato a ordine" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "Uno o più righe selezionate non hanno materiali associati" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "Articolo generato da ordine" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "Articolo selezionato" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "Generazione Ordine" - -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "Verifica dell'ordine" - -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "Cancellazione Ordine" - -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "Modifica Ordine verificato" - -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "Genera l'ordine senza la verifica" - -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "Spedizione" - -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" -msgstr "Ordine in ritardo" +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "Configurazione Plugin" -#: inc/order.class.php:584 -msgid "Account Section" -msgstr "" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "IVA predefinita" -#: inc/order.class.php:636 -msgid "Validation" -msgstr "Verifica" +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "Usa il processo di verifica" -#: inc/order.class.php:642 -msgid "Purchase order" -msgstr "Ordinazione d'acquisto" +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "Generazione ordine in ODT" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" -msgstr "Il numero d'ordine è obbligatorio!" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "Attiva il sondaggio sulla qualità dei fornitori" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" -msgstr "" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "Mostra informazioni sugli ordini dei fornitori" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." -msgstr "La data dell'ordine deve essere compresa tra le date inserite per il budget selezionato." +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "Colore da mostrare quando la data di scadenza dell'ordine è superata" -#: inc/order.class.php:1096 -msgid "Due date overtaken" -msgstr "Data di scadenza superata" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" +msgstr "Copia i documenti dell'ordine alla creazione di un nuovo elemento" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" -msgstr "Importo senza IVA" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "Intestazione predefinita quando si aggiunge un documento ad un ordine" -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" -msgstr "Importo Totale + Spedizione" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "Nascondi i budget inattivi" -#: inc/order.class.php:1534 -msgid "Validation process" -msgstr "Processo di verifica" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" +msgstr "Invia la modifica del budget alle risorse collegate" -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" -msgstr "Vuoi cencellare questo ordine? L'operazione è irreversibile!" +#: inc/config.class.php:212 +msgid "Display account section on order form" +msgstr "" -#: inc/order.class.php:1560 -msgid "Validate order" -msgstr "Verifica Ordine" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" +msgstr "" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" -msgstr "Vuoi cancellare il processo di verifica?" +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" -msgstr "Elimina la richiesta di verifica" +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "" -#: inc/order.class.php:1574 -msgid "Ask for validation" -msgstr "Richiesta di verifica" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "Azioni automatiche alla consegna" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" -msgstr "Vuoi modificare l'ordine? " +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "" -#: inc/order.class.php:1582 -msgid "Edit order" -msgstr "Modifica Ordine" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." -msgstr "Grazie per aver aggiunto attrezzature all ordine" +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "Abilita le azioni automatiche" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" -msgstr "Grazie per aver selezionato il modello preferito" +#: inc/config.class.php:269 +msgid "Asked" +msgstr "Richiesto" -#: inc/order.class.php:1681 -msgid "Invoice address" -msgstr "Indirizzo Fatturazione" +#: inc/config.class.php:275 +msgid "Default state" +msgstr "Stato predefinito" -#: inc/order.class.php:1716 -msgid "Delivery address" -msgstr "Indirizzo Spedizione" +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "Aggiungi la posizione dell'ordine all'elemento" -#: inc/order.class.php:1726 -msgid "The" -msgstr "il" +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "Aggiungere dati di fatturazione alla voce" -#: inc/order.class.php:1728 -msgid "Issuer order" -msgstr "Emissione Ordine" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "Nome predefinito" -#: inc/order.class.php:1746 -msgid "Recipient" -msgstr "Recipient" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "Numero di serie predefinito" -#: inc/order.class.php:1749 -msgid "Designation" -msgstr "Denominazione" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "Numero di inventario predefinito" -#: inc/order.class.php:1751 -msgid "Unit price" -msgstr "Importo unitario" +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "Ciclo di vita dell'ordine" -#: inc/order.class.php:1753 -msgid "Discount rate" -msgstr "Percentuale di sconto" +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "Stato prima dell'accettazione" -#: inc/order.class.php:1754 -msgid "Sum tax free" -msgstr "Importo Totale (senza tasse)" +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "In attesa di approvazione" -#: inc/order.class.php:1881 -msgid "€" -msgstr "€" +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "Ordini approvati" -#: inc/order.class.php:1882 -msgid "Signature of issuing order" -msgstr "Firma emettitore ordine" +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "Ordine in consegna" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" -msgstr "Ordini collegati" +#: inc/config.class.php:382 +msgid "Order delivered state" +msgstr "Ordine consegnato" -#: inc/order.class.php:1994 -msgid "Unlink" -msgstr "annulla collegamento" +#: inc/config.class.php:392 +msgid "Order paied state" +msgstr "Ordine saldato" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." -msgstr "Total orders related with this budget is greater than its value." +#: inc/config.class.php:402 +msgid "Canceled order state" +msgstr "Ordine annullato" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." -msgstr "Total orders related with this budget is equal to its value." +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "Un numero di fattura è obbligatorio" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" -msgstr "Statistiche spedizione" +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "Consegna" -#: inc/order_supplier.class.php:309 -msgid "No specified status" -msgstr "Nessun status specificato" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "Ricevuta" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" -msgstr "Non posso creare riferimenti senza Nome" +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "Consegna Articoli" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" -msgstr "Non posso creare riferimenti senza Tipo" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "In Attesa Spedizione" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" -msgstr "Gia esiste un riferimento con lo stesso nome" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "Nessun articolo in consegna" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" -msgstr "Riferimenti già utilizzati" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "Articolo ricevuto" -#: inc/reference.class.php:838 -msgid "Copy of" -msgstr "Copia di" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "Articolo GIA ricevuto" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" -msgstr "Seleziona il tipo voluto" +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "Ricezione Articoli" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" -msgstr "Vista per tipo" +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "In corso di pagamento" -#: inc/reference.class.php:993 -msgid "Copy reference" -msgstr "Copia di riferimento" +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "Non pagato" diff --git a/locales/ko_KR.mo b/locales/ko_KR.mo index 427d0632fa..eb5920a65e 100644 Binary files a/locales/ko_KR.mo and b/locales/ko_KR.mo differ diff --git a/locales/ko_KR.po b/locales/ko_KR.po index d22925d3b3..954bf3fc92 100644 --- a/locales/ko_KR.po +++ b/locales/ko_KR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: 2020-01-30 05:26+0000\n" "Last-Translator: SeongHyeon Cho \n" "Language-Team: Korean (Korea) (http://www.transifex.com/teclib/glpi-plugin-order/language/ko_KR/)\n" @@ -18,42 +18,114 @@ msgstr "" "Language: ko_KR\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" -msgstr "orderdelivery_report_title" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "플러그인 설치 또는 업그레이드" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" -msgstr "주문 일자" +#: hook.php:88 +msgid "Can't create folder" +msgstr "폴더 생성할 수 없음" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" -msgstr "배송 위치" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "파일 %1$s를 %2$s에 복사할 수 없음" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "VAT" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "결제 조건" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "주문 상태" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "품목의 다른 유형" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "배송 상태" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "청구서 상태" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "청구서 유형" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "성향 분석" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "계정 섹션" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "주문" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "주문 이름" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "주문 번호" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "예상 기한" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "주문" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "deliveryinfos_report_title" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "주문 일자" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "배송 위치" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "주문 총계" @@ -62,6 +134,15 @@ msgstr "주문 총계" msgid "Late orders total" msgstr "최근 주문 총계" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "orderdelivery_report_title" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "예상 기한" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -71,44 +152,20 @@ msgstr "견적 번호" msgid "Delete" msgstr "삭제" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "공급자 상세" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "주문 관리" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "주문" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "참조용 공급자" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "상품 참조" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "청구서" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "주문이 확인됨" @@ -139,9 +196,9 @@ msgid "Add reference" msgstr "참조 추가" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "수량" @@ -162,417 +219,340 @@ msgstr "참조 제거" msgid "No item selected" msgstr "선택된 품목 없음" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" -msgstr "VAT 없음" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "참조용 공급자" -#: hook.php:46 -msgid "Plugin installation or upgrade" -msgstr "플러그인 설치 또는 업그레이드" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "상품 참조" -#: hook.php:88 -msgid "Can't create folder" -msgstr "폴더 생성할 수 없음" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "청구서" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" -msgstr "파일 %1$s를 %2$s에 복사할 수 없음" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" +msgstr "이 모델 사용" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" -msgstr "VAT" +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" +msgstr "이 사인 사용" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" -msgstr "결제 조건" +#: inc/referencefree.class.php:39 +msgid "Reference free" +msgstr "무료 참조" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" -msgstr "주문 상태" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "배송 통계" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "품목의 다른 유형" +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "지정된 상태 없음" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" -msgstr "배송 상태" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "공급자 품질" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" -msgstr "청구서 상태" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "참고" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "청구서 유형" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "설문에 대한 의견" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" -msgstr "성향 분석" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" +msgstr "관리적 추적 품질 (연락처, 청구서, 이메일, 기타 등..)" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" -msgstr "계정 섹션" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" +msgstr "상업적 품질, 방문, 반응 추적" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "주문 이름" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "연락처 가용성" -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "주문" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" +msgstr "공급사 개입 품질" -#: inc/referencefree.class.php:39 -msgid "Reference free" -msgstr "무료 참조" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "예고된 지연에 대한 신뢰성" -#: inc/config.class.php:103 -msgid "Plugin configuration" -msgstr "플러그인 구성" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "최종 공급사 참고" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "기본 VAT" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" +msgstr "10점까지의 평균 점수 (X 점 / 5)" -#: inc/config.class.php:118 -msgid "Use validation process" -msgstr "검증 절차 사용" +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "문서 분류" -#: inc/config.class.php:125 -msgid "Order generation in ODT" -msgstr "ODT에서 주문 생성" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "문서 분류 접두어" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" -msgstr "공급자 품질 만족 활성화" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" +msgstr "주문 생성" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" -msgstr "주문의 공급자 정보 표시" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "품목 수취" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" -msgstr "주문 기한 초과 시 표시될 색상" +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "주문 확인" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" -msgstr "새 품목 생성 시 주문 문서 복사" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" +msgstr "주문 취소" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" -msgstr "주문에 문서 추가 시 기본 머릿말" +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "확인된 주문 수정" + +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "확인 없이 주문 생성" + +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" +msgstr "배송 요금" + +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" +msgstr "주문 늦음" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "작성자 그룹" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" msgstr "수취인 그룹" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" -msgstr "비활성화 예산 숨김" +#: inc/order.class.php:584 +msgid "Account Section" +msgstr "계정 섹션" -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" -msgstr "연결된 자산에 예산 변경 전송" - -#: inc/config.class.php:212 -msgid "Display account section on order form" -msgstr "주문 양식에 계정 섹션 표시" - -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" -msgstr "주문 양식에 필수 계정 섹션 설정" +#: inc/order.class.php:636 +msgid "Validation" +msgstr "확인" -#: inc/config.class.php:226 -msgid "Use free references" -msgstr "무료 참조 사용" +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "주문 구매" -#: inc/config.class.php:233 -msgid "Rename documents added in order" -msgstr "주문에 추가된 문서 이름 변경" +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "주문 번호는 필수입니다 !" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" -msgstr "배송 시 자동 동작" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" +msgstr "계정 섹션은 필수입니다 !" -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" -msgstr "품목 양식에 성향 분석 표기" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." +msgstr "주문 일자는 선택된 예산에 입력된 날짜 내이어야 합니다." -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" -msgstr "품목 양식에 필수 성향 분석 설정" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "VAT 없음" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" -msgstr "자동 생성 활성화" +#: inc/order.class.php:1096 +msgid "Due date overtaken" +msgstr "기한 초과" -#: inc/config.class.php:269 -msgid "Asked" -msgstr "질의함" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" +msgstr "세금 별도 가격" -#: inc/config.class.php:275 -msgid "Default state" -msgstr "기본 상태" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" +msgstr "배송료가 있는 세금 별도 가격" -#: inc/config.class.php:286 -msgid "Add order location to item" -msgstr "품목에 주문 위치 추가" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "가격 ATI" -#: inc/config.class.php:293 -msgid "Add billing details to item" -msgstr "품목에 청구서 상세 추가" +#: inc/order.class.php:1534 +msgid "Validation process" +msgstr "확인 처리" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" -msgstr "기본 이름" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "이 주문을 취소하시겠습니까? 이 옵션은 철회할 수 없습니다 !" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" -msgstr "기본 시리얼 번호" +#: inc/order.class.php:1560 +msgid "Validate order" +msgstr "주문 확인ㅇ" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "기본 물품 번호" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" +msgstr "검증 승인을 취소하시겠습니까 ?" -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "주문 주기" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" +msgstr "확인 요청 취소" -#: inc/config.class.php:342 -msgid "State before validation" -msgstr "검증 전 상태" +#: inc/order.class.php:1574 +msgid "Ask for validation" +msgstr "확인 요청" -#: inc/config.class.php:352 -msgid "Waiting for validation state" -msgstr "검증 상태 대기" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" +msgstr "주문을 수정하시겠습니까?" -#: inc/config.class.php:362 -msgid "Validated order state" -msgstr "검증된 주문 상태" +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "주문 수정" -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "배송됨 상태가 되야 할 주문" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." +msgstr "주문에 하나 이상의 물품을 추가해 주셔서 감사합니다." -#: inc/config.class.php:382 -msgid "Order delivered state" -msgstr "주문 배송됨 상태" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" +msgstr "참조에 모델을 선택해 주셔서 감사합니다" -#: inc/config.class.php:392 -msgid "Order paied state" -msgstr "주문 결제됨 상태" +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "배송장 주소" -#: inc/config.class.php:402 -msgid "Canceled order state" -msgstr "취소된 주문 상태" +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "배송 주소" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" -msgstr "공급자 품질" +#: inc/order.class.php:1726 +msgid "The" +msgstr "그" -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" -msgstr "참고" +#: inc/order.class.php:1728 +msgid "Issuer order" +msgstr "발급자 주문" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" -msgstr "설문에 대한 의견" +#: inc/order.class.php:1746 +msgid "Recipient" +msgstr "수취인" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" -msgstr "관리적 추적 품질 (연락처, 청구서, 이메일, 기타 등..)" +#: inc/order.class.php:1749 +msgid "Designation" +msgstr "직함" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" -msgstr "상업적 품질, 방문, 반응 추적" +#: inc/order.class.php:1751 +msgid "Unit price" +msgstr "정가" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" -msgstr "연락처 가용성" +#: inc/order.class.php:1753 +msgid "Discount rate" +msgstr "할인율" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" -msgstr "공급사 개입 품질" +#: inc/order.class.php:1754 +msgid "Sum tax free" +msgstr "면세 합계" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" -msgstr "예고된 지연에 대한 신뢰성" +#: inc/order.class.php:1881 +msgid "€" +msgstr "€" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" -msgstr "최종 공급사 참고" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" +msgstr "주문 발행 서명" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" -msgstr "10점까지의 평균 점수 (X 점 / 5)" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "연결된 주문" -#: inc/documentcategory.class.php:39 -msgid "Document category" -msgstr "문서 분류" +#: inc/order.class.php:1994 +msgid "Unlink" +msgstr "연결 해제" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" -msgstr "문서 분류 접두어" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." +msgstr "이 예산에 관련된 주문 총합은 그 값보다 커야 합니다." -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" -msgstr "이 상태를 제거할 수 없습니다" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." +msgstr "이 예산에 관련된 주문 총합은 그 값과 같아야 합니다." -#: inc/orderstate.class.php:87 -msgid "Draft" -msgstr "초안" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "주문 확인 요청" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" -msgstr "승인 대기" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "주문 확인됨" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "검증됨" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "마지막 주문" -#: inc/orderstate.class.php:90 -msgid "Being delivered" -msgstr "배송 중" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "생성할 품목 없음" -#: inc/orderstate.class.php:91 -msgid "Delivered" -msgstr "배송됨" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "검증 의견" -#: inc/orderstate.class.php:92 -msgid "Canceled" -msgstr "취소됨" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "확인이 취소됨" -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "지불됨" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "확인 편집자" -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" -msgstr "제조사 상품 참조" +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" +msgstr "주문 품목" -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/order_item.class.php:115 inc/order_item.class.php:369 #: inc/order_item.class.php:476 inc/order_item.class.php:801 #: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "단가 면세" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "상품 참조" - -#: inc/reference_supplier.class.php:476 -msgid "List references" -msgstr "참조 목록" - -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "배송" - -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "수취됨" - -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "청구서" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" -msgstr "수취할 품목 없음" - -#: inc/reception.class.php:350 -msgid "Delivered items" -msgstr "배송된 품목" - -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" -msgstr "품목 수취" - -#: inc/reception.class.php:609 -msgid "Waiting for delivery" -msgstr "배송 대기" - -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" -msgstr "배송할 품목이 충분치 않음" - -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" -msgstr "품목이 수취 되었습니다" - -#: inc/reception.class.php:784 -msgid "Item already taken delivery" -msgstr "품목이 이미 수취 되었습니다" - -#: inc/reception.class.php:950 -msgid "Item delivered" -msgstr "품목 배송됨" - -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" -msgstr "청구서 번호는 필수입니다" - -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" -msgstr "이 모델 사용" - -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" -msgstr "이 사인 사용" - -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 -msgid "Order item" -msgstr "주문 품목" - #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "상품 이름" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "제조사 상품 참조" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "성향 분석" @@ -585,6 +565,14 @@ msgstr "다른 주문에 속해 있는 일부 항목은 수정할 수 없습니 msgid "Add to the order from the catalog" msgstr "분류에서 주문 추가" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "상품 참조" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "공급사를 선택하세요" @@ -601,6 +589,11 @@ msgstr "참조 추가" msgid "An analytic nature is mandatory !" msgstr "성향 분석은 필수 입니다 !" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "수취할 품목 없음" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -621,12 +614,6 @@ msgstr "이 상세사항들을 삭제하시겠습니까? 배송된 품목들이 msgid "Discounted price tax free" msgstr "할인가 면세" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "가격 ATI" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "주문 정보" @@ -639,305 +626,315 @@ msgstr "결제 상태" msgid "Paid value" msgstr "결제된 가치" -#: inc/billstate.class.php:59 -msgid "Being paid" -msgstr "결제됨" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "청구서" -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "미 지불됨" +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "참조 목록" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" -msgstr "주문 확인 요청" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "이름이 없는 참조는 생성할 수 없음" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" -msgstr "주문 확인됨" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "유형이 없는 참조는 생성할 수 없음" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" -msgstr "마지막 주문" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "같은 이름의 참조가 존재함" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" -msgstr "생성할 품목 없음" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "사용중인 참조(들)" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" -msgstr "검증 의견" +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "복사본" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" -msgstr "확인이 취소됨" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "원하는 품목 유형 선택" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" -msgstr "확인 편집자" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "품목 유형 별 보기" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "참조 복사" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "이 상태를 제거할 수 없습니다" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "초안" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "승인 대기" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "검증됨" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "배송 중" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "배송됨" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "취소됨" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "지불됨" #: inc/link.class.php:48 msgid "Generation" msgstr "생성" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "품목 생성" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "기존 품목에 연결" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "품목 연결 삭제" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "여러 품목을 하나의 상세 항목에 연결할 수 없음" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "배송되지 않은 품목에 연결할 수 없음" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "연관된 품목 없음" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "주문에 연결된 품목" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "이미 다른 것에 연결된 품목" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "주문에서 품목 연결 해제" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "하나 이상의 선택된 행에 연결된 품목이 없습니다" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "주문을 사용하여 생성된 품목" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "품목 선택됨" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "주문 생성" - -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "주문 확인" - -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "주문 취소" - -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "확인된 주문 수정" - -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "확인 없이 주문 생성" - -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "배송 요금" - -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" -msgstr "주문 늦음" +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "플러그인 구성" -#: inc/order.class.php:584 -msgid "Account Section" -msgstr "계정 섹션" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "기본 VAT" -#: inc/order.class.php:636 -msgid "Validation" -msgstr "확인" +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "검증 절차 사용" -#: inc/order.class.php:642 -msgid "Purchase order" -msgstr "주문 구매" +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "ODT에서 주문 생성" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" -msgstr "주문 번호는 필수입니다 !" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "공급자 품질 만족 활성화" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" -msgstr "계정 섹션은 필수입니다 !" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "주문의 공급자 정보 표시" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." -msgstr "주문 일자는 선택된 예산에 입력된 날짜 내이어야 합니다." +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "주문 기한 초과 시 표시될 색상" -#: inc/order.class.php:1096 -msgid "Due date overtaken" -msgstr "기한 초과" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" +msgstr "새 품목 생성 시 주문 문서 복사" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" -msgstr "세금 별도 가격" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "주문에 문서 추가 시 기본 머릿말" -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" -msgstr "배송료가 있는 세금 별도 가격" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "비활성화 예산 숨김" -#: inc/order.class.php:1534 -msgid "Validation process" -msgstr "확인 처리" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" +msgstr "연결된 자산에 예산 변경 전송" -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" -msgstr "이 주문을 취소하시겠습니까? 이 옵션은 철회할 수 없습니다 !" +#: inc/config.class.php:212 +msgid "Display account section on order form" +msgstr "주문 양식에 계정 섹션 표시" -#: inc/order.class.php:1560 -msgid "Validate order" -msgstr "주문 확인ㅇ" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" +msgstr "주문 양식에 필수 계정 섹션 설정" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" -msgstr "검증 승인을 취소하시겠습니까 ?" +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "무료 참조 사용" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" -msgstr "확인 요청 취소" +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "주문에 추가된 문서 이름 변경" -#: inc/order.class.php:1574 -msgid "Ask for validation" -msgstr "확인 요청" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "배송 시 자동 동작" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" -msgstr "주문을 수정하시겠습니까?" +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "품목 양식에 성향 분석 표기" -#: inc/order.class.php:1582 -msgid "Edit order" -msgstr "주문 수정" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "품목 양식에 필수 성향 분석 설정" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." -msgstr "주문에 하나 이상의 물품을 추가해 주셔서 감사합니다." +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "자동 생성 활성화" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" -msgstr "참조에 모델을 선택해 주셔서 감사합니다" +#: inc/config.class.php:269 +msgid "Asked" +msgstr "질의함" -#: inc/order.class.php:1681 -msgid "Invoice address" -msgstr "배송장 주소" +#: inc/config.class.php:275 +msgid "Default state" +msgstr "기본 상태" -#: inc/order.class.php:1716 -msgid "Delivery address" -msgstr "배송 주소" +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "품목에 주문 위치 추가" -#: inc/order.class.php:1726 -msgid "The" -msgstr "그" +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "품목에 청구서 상세 추가" -#: inc/order.class.php:1728 -msgid "Issuer order" -msgstr "발급자 주문" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "기본 이름" -#: inc/order.class.php:1746 -msgid "Recipient" -msgstr "수취인" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "기본 시리얼 번호" -#: inc/order.class.php:1749 -msgid "Designation" -msgstr "직함" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "기본 물품 번호" -#: inc/order.class.php:1751 -msgid "Unit price" -msgstr "정가" +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "주문 주기" -#: inc/order.class.php:1753 -msgid "Discount rate" -msgstr "할인율" +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "검증 전 상태" -#: inc/order.class.php:1754 -msgid "Sum tax free" -msgstr "면세 합계" +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "검증 상태 대기" -#: inc/order.class.php:1881 -msgid "€" -msgstr "€" +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "검증된 주문 상태" -#: inc/order.class.php:1882 -msgid "Signature of issuing order" -msgstr "주문 발행 서명" +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "배송됨 상태가 되야 할 주문" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" -msgstr "연결된 주문" +#: inc/config.class.php:382 +msgid "Order delivered state" +msgstr "주문 배송됨 상태" -#: inc/order.class.php:1994 -msgid "Unlink" -msgstr "연결 해제" +#: inc/config.class.php:392 +msgid "Order paied state" +msgstr "주문 결제됨 상태" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." -msgstr "이 예산에 관련된 주문 총합은 그 값보다 커야 합니다." +#: inc/config.class.php:402 +msgid "Canceled order state" +msgstr "취소된 주문 상태" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." -msgstr "이 예산에 관련된 주문 총합은 그 값과 같아야 합니다." +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "청구서 번호는 필수입니다" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" -msgstr "배송 통계" +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "배송" -#: inc/order_supplier.class.php:309 -msgid "No specified status" -msgstr "지정된 상태 없음" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "수취됨" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" -msgstr "이름이 없는 참조는 생성할 수 없음" +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "배송된 품목" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" -msgstr "유형이 없는 참조는 생성할 수 없음" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "배송 대기" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" -msgstr "같은 이름의 참조가 존재함" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "배송할 품목이 충분치 않음" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" -msgstr "사용중인 참조(들)" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "품목이 수취 되었습니다" -#: inc/reference.class.php:838 -msgid "Copy of" -msgstr "복사본" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "품목이 이미 수취 되었습니다" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" -msgstr "원하는 품목 유형 선택" +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "품목 배송됨" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" -msgstr "품목 유형 별 보기" +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "결제됨" -#: inc/reference.class.php:993 -msgid "Copy reference" -msgstr "참조 복사" +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "미 지불됨" diff --git a/locales/order.pot b/locales/order.pot index 24fd147829..d13ac2d93d 100644 --- a/locales/order.pot +++ b/locales/order.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,42 +17,114 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" +#: hook.php:46 +msgid "Plugin installation or upgrade" msgstr "" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" +#: hook.php:88 +msgid "Can't create folder" msgstr "" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" msgstr "" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "" + +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" msgstr "" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "" @@ -61,6 +133,15 @@ msgstr "" msgid "Late orders total" msgstr "" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -70,44 +151,20 @@ msgstr "" msgid "Delete" msgstr "" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 inc/order.class.php:627 -#: inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "" @@ -138,8 +195,9 @@ msgid "Add reference" msgstr "" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "" @@ -160,417 +218,339 @@ msgstr "" msgid "No item selected" msgstr "" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" msgstr "" -#: hook.php:46 -msgid "Plugin installation or upgrade" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" msgstr "" -#: hook.php:88 -msgid "Can't create folder" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" msgstr "" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" msgstr "" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" msgstr "" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" +#: inc/referencefree.class.php:39 +msgid "Reference free" msgstr "" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" msgstr "" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" +#: inc/order_supplier.class.php:309 +msgid "No specified status" msgstr "" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" msgstr "" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" msgstr "" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" msgstr "" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" msgstr "" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" msgstr "" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" msgstr "" -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" msgstr "" -#: inc/referencefree.class.php:39 -msgid "Reference free" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" msgstr "" -#: inc/config.class.php:103 -msgid "Plugin configuration" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" msgstr "" -#: inc/config.class.php:106 -msgid "Default VAT" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" msgstr "" -#: inc/config.class.php:118 -msgid "Use validation process" +#: inc/documentcategory.class.php:39 +msgid "Document category" msgstr "" -#: inc/config.class.php:125 -msgid "Order generation in ODT" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" msgstr "" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" msgstr "" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" msgstr "" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" +#: inc/order.class.php:272 +msgid "Order validation" msgstr "" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" msgstr "" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" +#: inc/order.class.php:274 +msgid "Edit a validated order" msgstr "" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 -msgid "Author group" +#: inc/order.class.php:275 +msgid "Generate order without validation" msgstr "" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 -msgid "Recipient group" +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" msgstr "" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" msgstr "" -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 +msgid "Author group" msgstr "" -#: inc/config.class.php:212 -msgid "Display account section on order form" +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 +msgid "Recipient group" msgstr "" -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" +#: inc/order.class.php:584 +msgid "Account Section" msgstr "" -#: inc/config.class.php:226 -msgid "Use free references" +#: inc/order.class.php:636 +msgid "Validation" msgstr "" -#: inc/config.class.php:233 -msgid "Rename documents added in order" +#: inc/order.class.php:642 +msgid "Purchase order" msgstr "" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" +#: inc/order.class.php:684 +msgid "An order number is mandatory !" msgstr "" -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" msgstr "" -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." msgstr "" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" msgstr "" -#: inc/config.class.php:269 -msgid "Asked" +#: inc/order.class.php:1096 +msgid "Due date overtaken" msgstr "" -#: inc/config.class.php:275 -msgid "Default state" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" msgstr "" -#: inc/config.class.php:286 -msgid "Add order location to item" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" msgstr "" -#: inc/config.class.php:293 -msgid "Add billing details to item" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" msgstr "" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" +#: inc/order.class.php:1534 +msgid "Validation process" msgstr "" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" +#: inc/order.class.php:1553 +msgid "Do you really want to cancel this order ? This option is irreversible !" msgstr "" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" +#: inc/order.class.php:1560 +msgid "Validate order" msgstr "" -#: inc/config.class.php:338 -msgid "Order lifecycle" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" msgstr "" -#: inc/config.class.php:342 -msgid "State before validation" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" msgstr "" -#: inc/config.class.php:352 -msgid "Waiting for validation state" +#: inc/order.class.php:1574 +msgid "Ask for validation" msgstr "" -#: inc/config.class.php:362 -msgid "Validated order state" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" msgstr "" -#: inc/config.class.php:372 -msgid "Order being delivered state" +#: inc/order.class.php:1582 +msgid "Edit order" msgstr "" -#: inc/config.class.php:382 -msgid "Order delivered state" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." msgstr "" -#: inc/config.class.php:392 -msgid "Order paied state" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" msgstr "" -#: inc/config.class.php:402 -msgid "Canceled order state" +#: inc/order.class.php:1681 +msgid "Invoice address" msgstr "" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" +#: inc/order.class.php:1716 +msgid "Delivery address" msgstr "" -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" +#: inc/order.class.php:1726 +msgid "The" msgstr "" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" +#: inc/order.class.php:1728 +msgid "Issuer order" msgstr "" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" +#: inc/order.class.php:1746 +msgid "Recipient" msgstr "" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" +#: inc/order.class.php:1749 +msgid "Designation" msgstr "" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" +#: inc/order.class.php:1751 +msgid "Unit price" msgstr "" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" +#: inc/order.class.php:1753 +msgid "Discount rate" msgstr "" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" +#: inc/order.class.php:1754 +msgid "Sum tax free" msgstr "" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" +#: inc/order.class.php:1881 +msgid "€" msgstr "" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" msgstr "" -#: inc/documentcategory.class.php:39 -msgid "Document category" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" msgstr "" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" +#: inc/order.class.php:1994 +msgid "Unlink" msgstr "" -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." msgstr "" -#: inc/orderstate.class.php:87 -msgid "Draft" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." msgstr "" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" msgstr "" -#: inc/orderstate.class.php:89 -msgid "Validated" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" msgstr "" -#: inc/orderstate.class.php:90 -msgid "Being delivered" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" msgstr "" -#: inc/orderstate.class.php:91 -msgid "Delivered" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" msgstr "" -#: inc/orderstate.class.php:92 -msgid "Canceled" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" msgstr "" -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" msgstr "" -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "" + +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" msgstr "" -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/order_item.class.php:115 inc/order_item.class.php:369 #: inc/order_item.class.php:476 inc/order_item.class.php:801 #: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "" - -#: inc/reference_supplier.class.php:476 -msgid "List references" -msgstr "" - -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "" - -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "" - -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" -msgstr "" - -#: inc/reception.class.php:350 -msgid "Delivered items" -msgstr "" - -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" -msgstr "" - -#: inc/reception.class.php:609 -msgid "Waiting for delivery" -msgstr "" - -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" -msgstr "" - -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" -msgstr "" - -#: inc/reception.class.php:784 -msgid "Item already taken delivery" -msgstr "" - -#: inc/reception.class.php:950 -msgid "Item delivered" -msgstr "" - -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" -msgstr "" - -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" -msgstr "" - -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" -msgstr "" - -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 -msgid "Order item" -msgstr "" - #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "" @@ -583,6 +563,14 @@ msgstr "" msgid "Add to the order from the catalog" msgstr "" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "" @@ -599,6 +587,11 @@ msgstr "" msgid "An analytic nature is mandatory !" msgstr "" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -619,12 +612,6 @@ msgstr "" msgid "Discounted price tax free" msgstr "" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "" @@ -637,304 +624,315 @@ msgstr "" msgid "Paid value" msgstr "" -#: inc/billstate.class.php:59 -msgid "Being paid" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" msgstr "" -#: inc/billstate.class.php:92 -msgid "Not paid" +#: inc/reference_supplier.class.php:476 +msgid "List references" msgstr "" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" msgstr "" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" msgstr "" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" msgstr "" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" msgstr "" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" +#: inc/reference.class.php:838 +msgid "Copy of" msgstr "" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" msgstr "" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" msgstr "" #: inc/link.class.php:48 msgid "Generation" msgstr "" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "" - -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "" - -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "" - -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "" - -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "" - -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "" - -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" +#: inc/config.class.php:103 +msgid "Plugin configuration" msgstr "" -#: inc/order.class.php:584 -msgid "Account Section" +#: inc/config.class.php:106 +msgid "Default VAT" msgstr "" -#: inc/order.class.php:636 -msgid "Validation" +#: inc/config.class.php:118 +msgid "Use validation process" msgstr "" -#: inc/order.class.php:642 -msgid "Purchase order" +#: inc/config.class.php:125 +msgid "Order generation in ODT" msgstr "" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" msgstr "" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" msgstr "" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" msgstr "" -#: inc/order.class.php:1096 -msgid "Due date overtaken" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" msgstr "" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" msgstr "" -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" msgstr "" -#: inc/order.class.php:1534 -msgid "Validation process" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" msgstr "" -#: inc/order.class.php:1553 -msgid "Do you really want to cancel this order ? This option is irreversible !" +#: inc/config.class.php:212 +msgid "Display account section on order form" msgstr "" -#: inc/order.class.php:1560 -msgid "Validate order" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" msgstr "" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" +#: inc/config.class.php:226 +msgid "Use free references" msgstr "" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" +#: inc/config.class.php:233 +msgid "Rename documents added in order" msgstr "" -#: inc/order.class.php:1574 -msgid "Ask for validation" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" msgstr "" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" msgstr "" -#: inc/order.class.php:1582 -msgid "Edit order" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" msgstr "" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" msgstr "" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" +#: inc/config.class.php:269 +msgid "Asked" msgstr "" -#: inc/order.class.php:1681 -msgid "Invoice address" +#: inc/config.class.php:275 +msgid "Default state" msgstr "" -#: inc/order.class.php:1716 -msgid "Delivery address" +#: inc/config.class.php:286 +msgid "Add order location to item" msgstr "" -#: inc/order.class.php:1726 -msgid "The" +#: inc/config.class.php:293 +msgid "Add billing details to item" msgstr "" -#: inc/order.class.php:1728 -msgid "Issuer order" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" msgstr "" -#: inc/order.class.php:1746 -msgid "Recipient" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" msgstr "" -#: inc/order.class.php:1749 -msgid "Designation" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" msgstr "" -#: inc/order.class.php:1751 -msgid "Unit price" +#: inc/config.class.php:338 +msgid "Order lifecycle" msgstr "" -#: inc/order.class.php:1753 -msgid "Discount rate" +#: inc/config.class.php:342 +msgid "State before validation" msgstr "" -#: inc/order.class.php:1754 -msgid "Sum tax free" +#: inc/config.class.php:352 +msgid "Waiting for validation state" msgstr "" -#: inc/order.class.php:1881 -msgid "€" +#: inc/config.class.php:362 +msgid "Validated order state" msgstr "" -#: inc/order.class.php:1882 -msgid "Signature of issuing order" +#: inc/config.class.php:372 +msgid "Order being delivered state" msgstr "" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" +#: inc/config.class.php:382 +msgid "Order delivered state" msgstr "" -#: inc/order.class.php:1994 -msgid "Unlink" +#: inc/config.class.php:392 +msgid "Order paied state" msgstr "" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." +#: inc/config.class.php:402 +msgid "Canceled order state" msgstr "" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" msgstr "" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" +#: inc/reception.class.php:53 +msgid "Delivery" msgstr "" -#: inc/order_supplier.class.php:309 -msgid "No specified status" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" msgstr "" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" +#: inc/reception.class.php:350 +msgid "Delivered items" msgstr "" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" msgstr "" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" msgstr "" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" msgstr "" -#: inc/reference.class.php:838 -msgid "Copy of" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" msgstr "" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" +#: inc/reception.class.php:950 +msgid "Item delivered" msgstr "" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" +#: inc/billstate.class.php:59 +msgid "Being paid" msgstr "" -#: inc/reference.class.php:993 -msgid "Copy reference" +#: inc/billstate.class.php:92 +msgid "Not paid" msgstr "" diff --git a/locales/pl_PL.mo b/locales/pl_PL.mo index 027e68d8b1..b70b2ceb14 100644 Binary files a/locales/pl_PL.mo and b/locales/pl_PL.mo differ diff --git a/locales/pl_PL.po b/locales/pl_PL.po index d0901aa7b8..23c2ad533c 100644 --- a/locales/pl_PL.po +++ b/locales/pl_PL.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: 2018-12-17 15:03+0000\n" "Last-Translator: Cédric Anne\n" "Language-Team: Polish (Poland) (http://www.transifex.com/teclib/glpi-plugin-order/language/pl_PL/)\n" @@ -20,42 +20,114 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Instalacja lub aktualizacja wtyczki" + +#: hook.php:88 +msgid "Can't create folder" msgstr "" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" -msgstr "Data zamówienia" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" -msgstr "Lokalizacja dostawy" +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "VAT" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Rodzaj płatności" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Status zamówienia" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Inny typ elementu" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Status dostawy" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Status faktury" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Typ faktury" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Zamówienia" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "Nazwa zamówienia" + +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "Numer zamówienia" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "Planowany termin dostawy" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Zamówienie" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "Data zamówienia" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "Lokalizacja dostawy" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "Zamówień" @@ -64,6 +136,15 @@ msgstr "Zamówień" msgid "Late orders total" msgstr "Zamówienia przeterminowane" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "Planowany termin dostawy" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -73,44 +154,20 @@ msgstr "Numer zapytania" msgid "Delete" msgstr "Usuń" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "Szczegóły dostawcy" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "Zarządzanie zamówieniami" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "Zamówienia" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "Dostawca dla oznaczenia" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "Oznaczenia produktów" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "Faktury" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "Zamówienie jest akceptowane" @@ -141,9 +198,9 @@ msgid "Add reference" msgstr "Dodaj oznaczenie" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "Ilość" @@ -164,417 +221,340 @@ msgstr "Usuń oznaczenie" msgid "No item selected" msgstr "Nie wybrano żadnego elementu" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" -msgstr "bez VAT" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "Dostawca dla oznaczenia" -#: hook.php:46 -msgid "Plugin installation or upgrade" -msgstr "Instalacja lub aktualizacja wtyczki" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Oznaczenia produktów" -#: hook.php:88 -msgid "Can't create folder" -msgstr "" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "Faktury" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" +msgstr "Użyj tego modelu" + +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" +msgstr "Użyj tego znaku" + +#: inc/referencefree.class.php:39 +msgid "Reference free" msgstr "" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" -msgstr "VAT" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "Statystyki dostawy" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" -msgstr "Rodzaj płatności" +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "Nie określono stanu" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" -msgstr "Status zamówienia" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "Jakość dostawcy" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "Inny typ elementu" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "Notatka" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" -msgstr "Status dostawy" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" -msgstr "Status faktury" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" +msgstr "" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "Typ faktury" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" +msgstr "" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" msgstr "" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" msgstr "" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "Nazwa zamówienia" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "" -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "Zamówienie" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "" -#: inc/referencefree.class.php:39 -msgid "Reference free" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" msgstr "" -#: inc/config.class.php:103 -msgid "Plugin configuration" -msgstr "Konfiguracja wtyczki" +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "Kategoria dokumentu" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "Domyślny VAT" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "" -#: inc/config.class.php:118 -msgid "Use validation process" -msgstr "Użyj procesu zatwierdzania" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" +msgstr "Generowanie zamówienia" -#: inc/config.class.php:125 -msgid "Order generation in ODT" -msgstr "Generuj zamówienie w ODT" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "Odbiór dostawy" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" -msgstr "Aktywuj jakość dostawców" +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "Akceptacja zamówienia" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" -msgstr "Pokaż informacje o dostawcy" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" +msgstr "Anuluj zamówienie" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" -msgstr "Kolor, który ma być wyświetlony gdy zamówienie przeterminuje się" +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "Modyfikuj zatwierdzone zamówienie" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" -msgstr "" +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "Generuj zamówienie bez akceptacji" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" -msgstr "Domyślny nagłówek przy dodawaniu dokument do zamówienia" +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" +msgstr "Koszty dostawy" + +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" +msgstr "Zamówienie jest opóźnione" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Grupa autora" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" msgstr "Grupa odbiorcy" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" -msgstr "Ukryj niedostępny budżet" - -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" +#: inc/order.class.php:584 +msgid "Account Section" msgstr "" -#: inc/config.class.php:212 -msgid "Display account section on order form" -msgstr "" +#: inc/order.class.php:636 +msgid "Validation" +msgstr "Zatwierdzenie" -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" -msgstr "" +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "Wydruk zamówienia" -#: inc/config.class.php:226 -msgid "Use free references" -msgstr "" +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "Numer zamówienia jest obowiązkowy!" -#: inc/config.class.php:233 -msgid "Rename documents added in order" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" msgstr "" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" -msgstr "Automatyczne działania podczas dostawy" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." +msgstr "Data zamówienie musi zawierać się pomiędzy datami zaznaczonego budżetu." -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" -msgstr "" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "bez VAT" -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" -msgstr "" +#: inc/order.class.php:1096 +msgid "Due date overtaken" +msgstr "Termin wyprzedzenia" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" -msgstr "Włącz automatyczne generowanie" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" +msgstr "Razem netto" -#: inc/config.class.php:269 -msgid "Asked" -msgstr "" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" +msgstr "Razem netto z kosztami dostawy" -#: inc/config.class.php:275 -msgid "Default state" -msgstr "Domyślny stan" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "Wartość brutto" -#: inc/config.class.php:286 -msgid "Add order location to item" -msgstr "Dodaj lokalizację zamówienia do pozycji" +#: inc/order.class.php:1534 +msgid "Validation process" +msgstr "Proces zatwiedzania" -#: inc/config.class.php:293 -msgid "Add billing details to item" -msgstr "Dodaj informacje finansowe do pozycji" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "Czy na pewno chcesz usunąć to zamówienie? Proces jest nieodwracalny!" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" -msgstr "Domyślna nazwa" +#: inc/order.class.php:1560 +msgid "Validate order" +msgstr "Zatwierdź zamówienie" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" -msgstr "Domyślny numer seryjny" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" +msgstr "Czy chcesz anulować proces zatwierdzania?" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "Domyślny numer inwentarzowy" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" +msgstr "Anuluj prośbę o akceptację" -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "Cykl życia zamówienia" +#: inc/order.class.php:1574 +msgid "Ask for validation" +msgstr "Poproś o zatwierdzenie" -#: inc/config.class.php:342 -msgid "State before validation" -msgstr "Stan przed zatwierdzeniem" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" +msgstr "Czy na pewno chce edytować zamówienie?" -#: inc/config.class.php:352 -msgid "Waiting for validation state" -msgstr "Czekan na zatwierdzenie" +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "Edytuj zamówienie" -#: inc/config.class.php:362 -msgid "Validated order state" -msgstr "Stan za" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." +msgstr "Musisz dodać co najmniej jedną pozycję do zamówienia." -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "Stan zamówienia dostarczanego" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" +msgstr "" -#: inc/config.class.php:382 -msgid "Order delivered state" -msgstr "Stan dostawy zamówienia" +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "Dane do faktury" -#: inc/config.class.php:392 -msgid "Order paied state" -msgstr "Stan płatności zamówienia" +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "Adres dostawy" -#: inc/config.class.php:402 -msgid "Canceled order state" +#: inc/order.class.php:1726 +msgid "The" +msgstr "Ten" + +#: inc/order.class.php:1728 +msgid "Issuer order" msgstr "" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" -msgstr "Jakość dostawcy" +#: inc/order.class.php:1746 +msgid "Recipient" +msgstr "Odbiorca" -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" -msgstr "Notatka" +#: inc/order.class.php:1749 +msgid "Designation" +msgstr "Oznaczenia" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" -msgstr "" +#: inc/order.class.php:1751 +msgid "Unit price" +msgstr "Cena jednostkowa" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" -msgstr "" +#: inc/order.class.php:1753 +msgid "Discount rate" +msgstr "Rabat" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" -msgstr "" +#: inc/order.class.php:1754 +msgid "Sum tax free" +msgstr "Wartość netto" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" -msgstr "" +#: inc/order.class.php:1881 +msgid "€" +msgstr "zł" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" -msgstr "" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" +msgstr "Numer zamówienia" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" -msgstr "" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "Połączone zamówienia" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" -msgstr "" +#: inc/order.class.php:1994 +msgid "Unlink" +msgstr "Rozłącz" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." msgstr "" -#: inc/documentcategory.class.php:39 -msgid "Document category" -msgstr "Kategoria dokumentu" - -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." msgstr "" -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" -msgstr "Nie możesz usunąć tego statusu" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "Zażądaj zatwierdzenia zamówienia" -#: inc/orderstate.class.php:87 -msgid "Draft" -msgstr "Szkic" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "Zamówienie zatwierdzone" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" -msgstr "Czeka na zatwierzenie" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "Opóźnione dostawy" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "Zatwierdzone" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "Brak pozycji do wygenerowania" -#: inc/orderstate.class.php:90 -msgid "Being delivered" -msgstr "W dostawie" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "Komentarz zatwierdzającego" -#: inc/orderstate.class.php:91 -msgid "Delivered" -msgstr "Dostarczone" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "Zatwierdzenie anulowane poprawnie" -#: inc/orderstate.class.php:92 -msgid "Canceled" -msgstr "Anulowane" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "Zatwierdzający" -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "Zapłacony" +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" +msgstr "Pozycje zamówienia" -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" -msgstr "Oznaczenie produktu wg producenta" - -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/order_item.class.php:115 inc/order_item.class.php:369 #: inc/order_item.class.php:476 inc/order_item.class.php:801 #: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Cena jednostkowa netto" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "Oznaczenie produktu" - -#: inc/reference_supplier.class.php:476 -msgid "List references" -msgstr "Pokaż oznaczenia" - -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "Dostawa" - -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "Dostawa zrealizowana" - -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "Faktura" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" -msgstr "Brak pozycji do odbioru" - -#: inc/reception.class.php:350 -msgid "Delivered items" -msgstr "Dostarczone pozycje" - -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" -msgstr "Odbiór dostawy" - -#: inc/reception.class.php:609 -msgid "Waiting for delivery" -msgstr "Czeka na dostawę" - -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" -msgstr "Brak pozycji do dostawy" - -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" -msgstr "Pozycja pomyślnie odebrana" - -#: inc/reception.class.php:784 -msgid "Item already taken delivery" -msgstr "Pozycja już odebrana" - -#: inc/reception.class.php:950 -msgid "Item delivered" -msgstr "Dostarczone pozycje" - -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" -msgstr "Numer faktury jest obowiązkowy" - -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" -msgstr "Użyj tego modelu" - -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" -msgstr "Użyj tego znaku" - -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 -msgid "Order item" -msgstr "Pozycje zamówienia" - #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "Oznaczenie produktu wg producenta" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "" @@ -587,6 +567,14 @@ msgstr "Niektóre pola nie mogą być modyfikowane bo należą do zamówienia" msgid "Add to the order from the catalog" msgstr "" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Oznaczenie produktu" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "Proszę wybrać dostawcę" @@ -603,6 +591,11 @@ msgstr "" msgid "An analytic nature is mandatory !" msgstr "" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "Brak pozycji do odbioru" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -623,12 +616,6 @@ msgstr "" msgid "Discounted price tax free" msgstr "Wysokość rabatu netto" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "Wartość brutto" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "Informacje o zamówieniu" @@ -641,305 +628,315 @@ msgstr "Status płatności" msgid "Paid value" msgstr "Do zapłaty" -#: inc/billstate.class.php:59 -msgid "Being paid" -msgstr "Płacone" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Faktura" -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "Nie zapłacony" +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "Pokaż oznaczenia" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" -msgstr "Zażądaj zatwierdzenia zamówienia" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "Nie można utworzyć oznaczenia z pustą nazwą" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" -msgstr "Zamówienie zatwierdzone" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "Nie można utworzyć oznaczenia z pustym typem" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" -msgstr "Opóźnione dostawy" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "Oznaczenie produktu o podanej nazwie już istnieje" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" -msgstr "Brak pozycji do wygenerowania" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "Oznaczenia w użyciu" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" -msgstr "Komentarz zatwierdzającego" +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "Kopia" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" -msgstr "Zatwierdzenie anulowane poprawnie" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "Zaznacz żądany typ pozycji" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" -msgstr "Zatwierdzający" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "Pokaż wg typu pozycji" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "Kopiuj oznaczenie" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "Nie możesz usunąć tego statusu" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "Szkic" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "Czeka na zatwierzenie" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Zatwierdzone" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "W dostawie" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Dostarczone" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "Anulowane" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Zapłacony" #: inc/link.class.php:48 msgid "Generation" msgstr "Generowanie" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "Generuj pozycję" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "Połącz z istniejącą pozycją" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "Usuń powiązanie do pozycji" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "Brak połączonych pozycji" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "Pozycja połączona z zamówieniem" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "Pozycja już połączona z innym" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "Rozłącz pozycję z zamówieniem" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "Jeden lub więcej zaznaczonych wierszy nie są powiązane z pozycjami" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "Pozycje generowane za pomocą zamówienia" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "Pozycje pomyślne zaznaczone" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "Generowanie zamówienia" +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "Konfiguracja wtyczki" -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "Akceptacja zamówienia" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "Domyślny VAT" -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "Anuluj zamówienie" +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "Użyj procesu zatwierdzania" -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "Modyfikuj zatwierdzone zamówienie" +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "Generuj zamówienie w ODT" -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "Generuj zamówienie bez akceptacji" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "Aktywuj jakość dostawców" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "Koszty dostawy" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "Pokaż informacje o dostawcy" -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" -msgstr "Zamówienie jest opóźnione" +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "Kolor, który ma być wyświetlony gdy zamówienie przeterminuje się" -#: inc/order.class.php:584 -msgid "Account Section" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" msgstr "" -#: inc/order.class.php:636 -msgid "Validation" -msgstr "Zatwierdzenie" - -#: inc/order.class.php:642 -msgid "Purchase order" -msgstr "Wydruk zamówienia" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "Domyślny nagłówek przy dodawaniu dokument do zamówienia" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" -msgstr "Numer zamówienia jest obowiązkowy!" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "Ukryj niedostępny budżet" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" msgstr "" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." -msgstr "Data zamówienie musi zawierać się pomiędzy datami zaznaczonego budżetu." - -#: inc/order.class.php:1096 -msgid "Due date overtaken" -msgstr "Termin wyprzedzenia" - -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" -msgstr "Razem netto" - -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" -msgstr "Razem netto z kosztami dostawy" - -#: inc/order.class.php:1534 -msgid "Validation process" -msgstr "Proces zatwiedzania" - -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" -msgstr "Czy na pewno chcesz usunąć to zamówienie? Proces jest nieodwracalny!" +#: inc/config.class.php:212 +msgid "Display account section on order form" +msgstr "" -#: inc/order.class.php:1560 -msgid "Validate order" -msgstr "Zatwierdź zamówienie" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" +msgstr "" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" -msgstr "Czy chcesz anulować proces zatwierdzania?" +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" -msgstr "Anuluj prośbę o akceptację" +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "" -#: inc/order.class.php:1574 -msgid "Ask for validation" -msgstr "Poproś o zatwierdzenie" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "Automatyczne działania podczas dostawy" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" -msgstr "Czy na pewno chce edytować zamówienie?" +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "" -#: inc/order.class.php:1582 -msgid "Edit order" -msgstr "Edytuj zamówienie" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." -msgstr "Musisz dodać co najmniej jedną pozycję do zamówienia." +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "Włącz automatyczne generowanie" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" +#: inc/config.class.php:269 +msgid "Asked" msgstr "" -#: inc/order.class.php:1681 -msgid "Invoice address" -msgstr "Dane do faktury" +#: inc/config.class.php:275 +msgid "Default state" +msgstr "Domyślny stan" -#: inc/order.class.php:1716 -msgid "Delivery address" -msgstr "Adres dostawy" +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "Dodaj lokalizację zamówienia do pozycji" -#: inc/order.class.php:1726 -msgid "The" -msgstr "Ten" +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "Dodaj informacje finansowe do pozycji" -#: inc/order.class.php:1728 -msgid "Issuer order" -msgstr "" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "Domyślna nazwa" -#: inc/order.class.php:1746 -msgid "Recipient" -msgstr "Odbiorca" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "Domyślny numer seryjny" -#: inc/order.class.php:1749 -msgid "Designation" -msgstr "Oznaczenia" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "Domyślny numer inwentarzowy" -#: inc/order.class.php:1751 -msgid "Unit price" -msgstr "Cena jednostkowa" +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "Cykl życia zamówienia" -#: inc/order.class.php:1753 -msgid "Discount rate" -msgstr "Rabat" +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "Stan przed zatwierdzeniem" -#: inc/order.class.php:1754 -msgid "Sum tax free" -msgstr "Wartość netto" +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "Czekan na zatwierdzenie" -#: inc/order.class.php:1881 -msgid "€" -msgstr "zł" +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "Stan za" -#: inc/order.class.php:1882 -msgid "Signature of issuing order" -msgstr "Numer zamówienia" +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "Stan zamówienia dostarczanego" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" -msgstr "Połączone zamówienia" +#: inc/config.class.php:382 +msgid "Order delivered state" +msgstr "Stan dostawy zamówienia" -#: inc/order.class.php:1994 -msgid "Unlink" -msgstr "Rozłącz" +#: inc/config.class.php:392 +msgid "Order paied state" +msgstr "Stan płatności zamówienia" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." +#: inc/config.class.php:402 +msgid "Canceled order state" msgstr "" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." -msgstr "" +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "Numer faktury jest obowiązkowy" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" -msgstr "Statystyki dostawy" +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "Dostawa" -#: inc/order_supplier.class.php:309 -msgid "No specified status" -msgstr "Nie określono stanu" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "Dostawa zrealizowana" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" -msgstr "Nie można utworzyć oznaczenia z pustą nazwą" +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "Dostarczone pozycje" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" -msgstr "Nie można utworzyć oznaczenia z pustym typem" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "Czeka na dostawę" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" -msgstr "Oznaczenie produktu o podanej nazwie już istnieje" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "Brak pozycji do dostawy" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" -msgstr "Oznaczenia w użyciu" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "Pozycja pomyślnie odebrana" -#: inc/reference.class.php:838 -msgid "Copy of" -msgstr "Kopia" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "Pozycja już odebrana" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" -msgstr "Zaznacz żądany typ pozycji" +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "Dostarczone pozycje" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" -msgstr "Pokaż wg typu pozycji" +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "Płacone" -#: inc/reference.class.php:993 -msgid "Copy reference" -msgstr "Kopiuj oznaczenie" +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "Nie zapłacony" diff --git a/locales/pt_BR.mo b/locales/pt_BR.mo index 22b991a39e..0c3529a460 100644 Binary files a/locales/pt_BR.mo and b/locales/pt_BR.mo differ diff --git a/locales/pt_BR.po b/locales/pt_BR.po index 632c0142e2..11944058ba 100644 --- a/locales/pt_BR.po +++ b/locales/pt_BR.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: 2018-12-17 15:03+0000\n" "Last-Translator: Cédric Anne\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/teclib/glpi-plugin-order/language/pt_BR/)\n" @@ -21,42 +21,114 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" -msgstr "orderdelivery_report_title" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Instalação ou upgrade do plugin" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" -msgstr "Data da ordem de compra" +#: hook.php:88 +msgid "Can't create folder" +msgstr "" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" -msgstr "Local de entrega" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "VAT" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Formas de pagamento" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Status da compra" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Outro tipo de item" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Status da entrega" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Status da fatura" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Tipo de fatura" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Ordens de compra" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "Nome da ordem de compra" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "Número da ordem de compra" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "Data de vencimento aproximada" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Ordem de compra" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "deliveryinfos_report_title" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "Data da ordem de compra" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "Local de entrega" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "Total de ordens" @@ -65,6 +137,15 @@ msgstr "Total de ordens" msgid "Late orders total" msgstr "Total de ordens atrasadas" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "orderdelivery_report_title" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "Data de vencimento aproximada" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -74,44 +155,20 @@ msgstr "Número da cotação" msgid "Delete" msgstr "Excluir" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "Detalhes do fornecedor" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "Gerenciamento das ordens de compra" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "Ordens de compra" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "Fornecedor para referência" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "Referência de produtos" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "Faturas" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "Ordem de compra validada" @@ -142,9 +199,9 @@ msgid "Add reference" msgstr "Adicionar referência" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "Quantidade" @@ -165,417 +222,340 @@ msgstr "Remover referência" msgid "No item selected" msgstr "Nenhum item selecionado" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" -msgstr "Sem VAT" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "Fornecedor para referência" -#: hook.php:46 -msgid "Plugin installation or upgrade" -msgstr "Instalação ou upgrade do plugin" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Referência de produtos" -#: hook.php:88 -msgid "Can't create folder" -msgstr "" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "Faturas" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" +msgstr "Usar este modelo" + +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" +msgstr "Usar este sinal" + +#: inc/referencefree.class.php:39 +msgid "Reference free" msgstr "" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" -msgstr "VAT" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "Estatísticas de entrega" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" -msgstr "Formas de pagamento" +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "Sem status especificado" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" -msgstr "Status da compra" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "Qualidade do fornecedor" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "Outro tipo de item" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "Anotação" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" -msgstr "Status da entrega" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "Comentar na pesquisa" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" -msgstr "Status da fatura" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" +msgstr "Qualidade de acompanhamento administrativo (contratos, contas, mensagens, etc.)" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "Tipo de fatura" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" +msgstr "Qualidade de acompanhamento comercial (visitas, respostas)" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" -msgstr "" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "Disponibilidade de contatos" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" -msgstr "" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" +msgstr "Qualidade de intervenção de fornecedor" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "Nome da ordem de compra" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "Confiabilidade de informações de atrasos" -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "Ordem de compra" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "Última nota de fornecedor" -#: inc/referencefree.class.php:39 -msgid "Reference free" -msgstr "" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" +msgstr "Marca média acima de 10 (X pontos / 5)" -#: inc/config.class.php:103 -msgid "Plugin configuration" -msgstr "Configuração do plugin" +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "Categoria de documento" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "VAT padrão" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "Prefixo de categoria de documento" -#: inc/config.class.php:118 -msgid "Use validation process" -msgstr "Usar processo de validação" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" +msgstr "Geração de ordem de compra" -#: inc/config.class.php:125 -msgid "Order generation in ODT" -msgstr "Geração de ordem de compra em ODT" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "Pegar entrega do item" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" -msgstr "Ativar satisfação de qualidade de fornecedores" +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "Validação de ordem de compra" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" -msgstr "Exibir informações de ordens de compra de fornecedores" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" +msgstr "Cancelar ordem de compra" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" -msgstr "Cor a ser exibida quando uma ordem de compra estiver atrasada" +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "Editar uma ordem de compra validada" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" -msgstr "Copiar documentos de ordem de compra quando um novo item é criado" +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "Gerar ordem de compra sem validação" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" -msgstr "Cabeçalho padrão quando adicionar um documento a uma ordem de compra" +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" +msgstr "Postagem" + +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" +msgstr "Ordem de compra está atrasada" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Grupo remetente" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" msgstr "Grupo destinatário" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" -msgstr "Esconder orçamentos inativos" +#: inc/order.class.php:584 +msgid "Account Section" +msgstr "" -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" -msgstr "Transmitir mudanças no orçamento para ativos relacionados" - -#: inc/config.class.php:212 -msgid "Display account section on order form" -msgstr "" +#: inc/order.class.php:636 +msgid "Validation" +msgstr "Validação" -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" -msgstr "" +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "Ordem de compra" -#: inc/config.class.php:226 -msgid "Use free references" -msgstr "" +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "Um número de ordem de compra é obrigatório !" -#: inc/config.class.php:233 -msgid "Rename documents added in order" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" msgstr "" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" -msgstr "Ações automáticas na entrega" - -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" -msgstr "" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." +msgstr "A data da ordem de compra deve estar entre as datas inseridas para o orçamento selecionado." -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" -msgstr "" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "Sem VAT" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" -msgstr "Habilitar geração automática" +#: inc/order.class.php:1096 +msgid "Due date overtaken" +msgstr "Data de vencimento ultrapassada" -#: inc/config.class.php:269 -msgid "Asked" -msgstr "Pediu" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" +msgstr "Preço sem impostos" -#: inc/config.class.php:275 -msgid "Default state" -msgstr "Estado padrão" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" +msgstr "Preço sem impostos com postagem" -#: inc/config.class.php:286 -msgid "Add order location to item" -msgstr "Adicionar localização de ordem de compra ao item" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "Preço ATI" -#: inc/config.class.php:293 -msgid "Add billing details to item" -msgstr "Adicionar detalhes de conta ao item" +#: inc/order.class.php:1534 +msgid "Validation process" +msgstr "Processo de validação" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" -msgstr "Nome padrão" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "Você tem certeza que quer cancelar essa ordem de compra? Essa opção é irreversível!" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" -msgstr "Número de série padrão" +#: inc/order.class.php:1560 +msgid "Validate order" +msgstr "Validar ordem de compra" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "Número de inventário padrão" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" +msgstr "Você tem certeza que quer cancelar a aprovação?" -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "Ciclo de vida da ordem de compra" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" +msgstr "Cancelar solicitação de validação" -#: inc/config.class.php:342 -msgid "State before validation" -msgstr "Estado antes da validação" +#: inc/order.class.php:1574 +msgid "Ask for validation" +msgstr "Solicitar validação" -#: inc/config.class.php:352 -msgid "Waiting for validation state" -msgstr "Esperando validação" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" +msgstr "Você tem certeza que quer editar essa ordem de compra?" -#: inc/config.class.php:362 -msgid "Validated order state" -msgstr "Ordem de compra validada" +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "Editar ordem de compra" -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "Ordem de compra sendo entregue" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." +msgstr "Obrigado por adicionar pelo menos um equipamento a sua ordem de compra" -#: inc/config.class.php:382 -msgid "Order delivered state" -msgstr "Ordem de compra entregue" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" +msgstr "Obrigado por selecionar um modelo em suas preferências" -#: inc/config.class.php:392 -msgid "Order paied state" -msgstr "Ordem de compra Paga" +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "Endereço de Fatura" -#: inc/config.class.php:402 -msgid "Canceled order state" -msgstr "Ordem de compra cancelada" +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "Endereço de entrega" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" -msgstr "Qualidade do fornecedor" +#: inc/order.class.php:1726 +msgid "The" +msgstr "O/A" -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" -msgstr "Anotação" +#: inc/order.class.php:1728 +msgid "Issuer order" +msgstr "Ordem de emissão" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" -msgstr "Comentar na pesquisa" +#: inc/order.class.php:1746 +msgid "Recipient" +msgstr "Destinatário" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" -msgstr "Qualidade de acompanhamento administrativo (contratos, contas, mensagens, etc.)" +#: inc/order.class.php:1749 +msgid "Designation" +msgstr "Designação" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" -msgstr "Qualidade de acompanhamento comercial (visitas, respostas)" +#: inc/order.class.php:1751 +msgid "Unit price" +msgstr "Preço unitário" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" -msgstr "Disponibilidade de contatos" +#: inc/order.class.php:1753 +msgid "Discount rate" +msgstr "Taxa de desconto" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" -msgstr "Qualidade de intervenção de fornecedor" +#: inc/order.class.php:1754 +msgid "Sum tax free" +msgstr "Soma sem impostos" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" -msgstr "Confiabilidade de informações de atrasos" +#: inc/order.class.php:1881 +msgid "€" +msgstr "R$ " -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" -msgstr "Última nota de fornecedor" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" +msgstr "Assinatura de ordem de emissão" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" -msgstr "Marca média acima de 10 (X pontos / 5)" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "Relacionar ordens" -#: inc/documentcategory.class.php:39 -msgid "Document category" -msgstr "Categoria de documento" +#: inc/order.class.php:1994 +msgid "Unlink" +msgstr "Desrelacionar" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" -msgstr "Prefixo de categoria de documento" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." +msgstr "Total de ordens de compra estão acima do valor deste orçamento." -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" -msgstr "Você não pode remover esse status" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." +msgstr "Total de ordens de compra estão com mesmo valor deste orçamento." -#: inc/orderstate.class.php:87 -msgid "Draft" -msgstr "Rascunho" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "Solicitar validação da ordem de compra" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" -msgstr "Esperando aprovação" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "Ordem de compra validada" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "Validado" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "Ordens atrasadas" -#: inc/orderstate.class.php:90 -msgid "Being delivered" -msgstr "Sendo entregue" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "Sem item para gerar" -#: inc/orderstate.class.php:91 -msgid "Delivered" -msgstr "Entregue" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "Comentários da validação" -#: inc/orderstate.class.php:92 -msgid "Canceled" -msgstr "Cancelado" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "Validação cancelada com sucesso" -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "Pago" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "Editor de validação" -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" -msgstr "Referência de produto do fabricante" +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" +msgstr "Item de ordem de compra" -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/order_item.class.php:115 inc/order_item.class.php:369 #: inc/order_item.class.php:476 inc/order_item.class.php:801 #: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Preço unitário isento de impostos" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "Referência de produto" - -#: inc/reference_supplier.class.php:476 -msgid "List references" -msgstr "Lista de referências" - -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "Entrega" - -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "Entrega feita" - -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "Fatura" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" -msgstr "Nenhum item para receber entrega" - -#: inc/reception.class.php:350 -msgid "Delivered items" -msgstr "Itens entregues" - -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" -msgstr "Pegar entrega do item" - -#: inc/reception.class.php:609 -msgid "Waiting for delivery" -msgstr "Esperando entrega" - -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" -msgstr "Sem itens suficientes para entrega" - -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" -msgstr "Item entregue com sucesso" - -#: inc/reception.class.php:784 -msgid "Item already taken delivery" -msgstr "Item já entregue" - -#: inc/reception.class.php:950 -msgid "Item delivered" -msgstr "Item entregue" - -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" -msgstr "Um número de conta é obrigatório" - -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" -msgstr "Usar este modelo" - -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" -msgstr "Usar este sinal" - -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 -msgid "Order item" -msgstr "Item de ordem de compra" - #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "Referência de produto do fabricante" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "" @@ -588,6 +568,14 @@ msgstr "Alguns campos não podem ser editados pois petencem a outra ordem de com msgid "Add to the order from the catalog" msgstr "" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Referência de produto" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "Selecione um fornecedor" @@ -604,6 +592,11 @@ msgstr "" msgid "An analytic nature is mandatory !" msgstr "" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "Nenhum item para receber entrega" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -624,12 +617,6 @@ msgstr "Você realmente quer excluir estes detalhes? Itens entregues não serão msgid "Discounted price tax free" msgstr "Preço descontado sem impostos" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "Preço ATI" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "Informações de ordem de compra" @@ -642,305 +629,315 @@ msgstr "Status do pagamento" msgid "Paid value" msgstr "Valor pag" -#: inc/billstate.class.php:59 -msgid "Being paid" -msgstr "Sendo pago" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Fatura" -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "Não pago" +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "Lista de referências" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" -msgstr "Solicitar validação da ordem de compra" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "Impossível criar referência sem um nome" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" -msgstr "Ordem de compra validada" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "Impossível criar referência sem um tipo" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" -msgstr "Ordens atrasadas" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "Uma referência com o mesmo nome ainda existe" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" -msgstr "Sem item para gerar" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "Referência(s) em uso" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" -msgstr "Comentários da validação" +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "Cópia de" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" -msgstr "Validação cancelada com sucesso" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "Escolha o tipo de item desejado" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" -msgstr "Editor de validação" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "Visualizar por tipo de item" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "Referência da cópia" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "Você não pode remover esse status" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "Rascunho" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "Esperando aprovação" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Validado" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "Sendo entregue" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Entregue" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "Cancelado" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Pago" #: inc/link.class.php:48 msgid "Generation" msgstr "Geração" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "Gerar item" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "Relacionar a um item existente" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "Excluir relação de item" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "Não é possível relacionar tantos items a uma linha de detalhes" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "Não é possível vincular itens não entregues" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "Item não associado" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "Item relacionado a ordem de compra" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "Item já relacionado a outra" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "Desrelacionamento de item da ordem de compra" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "Uma das colunas selecionadas não possui itens relacionados" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "Item gerado utilizando ordem de compra" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "Item selecionado com sucesso" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "Geração de ordem de compra" - -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "Validação de ordem de compra" - -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "Cancelar ordem de compra" - -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "Editar uma ordem de compra validada" - -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "Gerar ordem de compra sem validação" - -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "Postagem" - -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" -msgstr "Ordem de compra está atrasada" +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "Configuração do plugin" -#: inc/order.class.php:584 -msgid "Account Section" -msgstr "" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "VAT padrão" -#: inc/order.class.php:636 -msgid "Validation" -msgstr "Validação" +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "Usar processo de validação" -#: inc/order.class.php:642 -msgid "Purchase order" -msgstr "Ordem de compra" +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "Geração de ordem de compra em ODT" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" -msgstr "Um número de ordem de compra é obrigatório !" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "Ativar satisfação de qualidade de fornecedores" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" -msgstr "" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "Exibir informações de ordens de compra de fornecedores" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." -msgstr "A data da ordem de compra deve estar entre as datas inseridas para o orçamento selecionado." +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "Cor a ser exibida quando uma ordem de compra estiver atrasada" -#: inc/order.class.php:1096 -msgid "Due date overtaken" -msgstr "Data de vencimento ultrapassada" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" +msgstr "Copiar documentos de ordem de compra quando um novo item é criado" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" -msgstr "Preço sem impostos" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "Cabeçalho padrão quando adicionar um documento a uma ordem de compra" -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" -msgstr "Preço sem impostos com postagem" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "Esconder orçamentos inativos" -#: inc/order.class.php:1534 -msgid "Validation process" -msgstr "Processo de validação" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" +msgstr "Transmitir mudanças no orçamento para ativos relacionados" -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" -msgstr "Você tem certeza que quer cancelar essa ordem de compra? Essa opção é irreversível!" +#: inc/config.class.php:212 +msgid "Display account section on order form" +msgstr "" -#: inc/order.class.php:1560 -msgid "Validate order" -msgstr "Validar ordem de compra" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" +msgstr "" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" -msgstr "Você tem certeza que quer cancelar a aprovação?" +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" -msgstr "Cancelar solicitação de validação" +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "" -#: inc/order.class.php:1574 -msgid "Ask for validation" -msgstr "Solicitar validação" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "Ações automáticas na entrega" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" -msgstr "Você tem certeza que quer editar essa ordem de compra?" +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "" -#: inc/order.class.php:1582 -msgid "Edit order" -msgstr "Editar ordem de compra" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." -msgstr "Obrigado por adicionar pelo menos um equipamento a sua ordem de compra" +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "Habilitar geração automática" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" -msgstr "Obrigado por selecionar um modelo em suas preferências" +#: inc/config.class.php:269 +msgid "Asked" +msgstr "Pediu" -#: inc/order.class.php:1681 -msgid "Invoice address" -msgstr "Endereço de Fatura" +#: inc/config.class.php:275 +msgid "Default state" +msgstr "Estado padrão" -#: inc/order.class.php:1716 -msgid "Delivery address" -msgstr "Endereço de entrega" +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "Adicionar localização de ordem de compra ao item" -#: inc/order.class.php:1726 -msgid "The" -msgstr "O/A" +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "Adicionar detalhes de conta ao item" -#: inc/order.class.php:1728 -msgid "Issuer order" -msgstr "Ordem de emissão" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "Nome padrão" -#: inc/order.class.php:1746 -msgid "Recipient" -msgstr "Destinatário" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "Número de série padrão" -#: inc/order.class.php:1749 -msgid "Designation" -msgstr "Designação" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "Número de inventário padrão" -#: inc/order.class.php:1751 -msgid "Unit price" -msgstr "Preço unitário" +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "Ciclo de vida da ordem de compra" -#: inc/order.class.php:1753 -msgid "Discount rate" -msgstr "Taxa de desconto" +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "Estado antes da validação" -#: inc/order.class.php:1754 -msgid "Sum tax free" -msgstr "Soma sem impostos" +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "Esperando validação" -#: inc/order.class.php:1881 -msgid "€" -msgstr "R$ " +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "Ordem de compra validada" -#: inc/order.class.php:1882 -msgid "Signature of issuing order" -msgstr "Assinatura de ordem de emissão" +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "Ordem de compra sendo entregue" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" -msgstr "Relacionar ordens" +#: inc/config.class.php:382 +msgid "Order delivered state" +msgstr "Ordem de compra entregue" -#: inc/order.class.php:1994 -msgid "Unlink" -msgstr "Desrelacionar" +#: inc/config.class.php:392 +msgid "Order paied state" +msgstr "Ordem de compra Paga" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." -msgstr "Total de ordens de compra estão acima do valor deste orçamento." +#: inc/config.class.php:402 +msgid "Canceled order state" +msgstr "Ordem de compra cancelada" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." -msgstr "Total de ordens de compra estão com mesmo valor deste orçamento." +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "Um número de conta é obrigatório" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" -msgstr "Estatísticas de entrega" +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "Entrega" -#: inc/order_supplier.class.php:309 -msgid "No specified status" -msgstr "Sem status especificado" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "Entrega feita" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" -msgstr "Impossível criar referência sem um nome" +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "Itens entregues" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" -msgstr "Impossível criar referência sem um tipo" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "Esperando entrega" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" -msgstr "Uma referência com o mesmo nome ainda existe" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "Sem itens suficientes para entrega" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" -msgstr "Referência(s) em uso" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "Item entregue com sucesso" -#: inc/reference.class.php:838 -msgid "Copy of" -msgstr "Cópia de" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "Item já entregue" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" -msgstr "Escolha o tipo de item desejado" +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "Item entregue" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" -msgstr "Visualizar por tipo de item" +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "Sendo pago" -#: inc/reference.class.php:993 -msgid "Copy reference" -msgstr "Referência da cópia" +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "Não pago" diff --git a/locales/pt_PT.mo b/locales/pt_PT.mo index 68407d8872..20e7a15f2a 100644 Binary files a/locales/pt_PT.mo and b/locales/pt_PT.mo differ diff --git a/locales/pt_PT.po b/locales/pt_PT.po index 46c5b4a5d8..6ff05df056 100644 --- a/locales/pt_PT.po +++ b/locales/pt_PT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: 2019-02-28 15:13+0000\n" "Last-Translator: Rui Melo \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/teclib/glpi-plugin-order/language/pt_PT/)\n" @@ -17,42 +17,114 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" -msgstr "entrega_relatorio_título" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Instalação ou atualização do plugin" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" -msgstr "Data do pedido" +#: hook.php:88 +msgid "Can't create folder" +msgstr "Não é possível criar uma pasta" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" -msgstr "Local de entrega" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "Não é possível copiar ficheiros %1$s para %2$s" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "IVA" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Condições de pagamento" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Pedido de status" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Outro tipo de item" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Status de entrega" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Status de conta" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Tipo de conta" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "Natureza analítica" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "Seção da conta" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Encomendas" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "Nome do pedido" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "Número de requesição" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "Data de vencimento estimada" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Pedido" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "informaçõesdeentrega_relatório_título" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "Data do pedido" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "Local de entrega" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "Total de pedidos" @@ -61,6 +133,15 @@ msgstr "Total de pedidos" msgid "Late orders total" msgstr "Total de pedidos atrasados" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "entrega_relatorio_título" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "Data de vencimento estimada" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -70,44 +151,20 @@ msgstr "Número de cotação" msgid "Delete" msgstr "Excluir" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "Detalhe do fornecedor" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "Gestão de pedidos" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "Encomendas" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "Fornecedor para a referência" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "Referências dos produtos" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "Contas" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "O pedido é validado" @@ -138,9 +195,9 @@ msgid "Add reference" msgstr "Adicionar referencia" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "Quantidade" @@ -161,417 +218,340 @@ msgstr "Remover referencia" msgid "No item selected" msgstr "Nenhum item selecionado" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" -msgstr "IVA não" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "Fornecedor para a referência" -#: hook.php:46 -msgid "Plugin installation or upgrade" -msgstr "Instalação ou atualização do plugin" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Referências dos produtos" -#: hook.php:88 -msgid "Can't create folder" -msgstr "Não é possível criar uma pasta" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "Contas" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" -msgstr "Não é possível copiar ficheiros %1$s para %2$s" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" +msgstr "Utilize este modelo" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" -msgstr "IVA" +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" +msgstr "Utilize este sinal" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" -msgstr "Condições de pagamento" +#: inc/referencefree.class.php:39 +msgid "Reference free" +msgstr "Referência livre" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" -msgstr "Pedido de status" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "Estatísticas de fornecimento" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "Outro tipo de item" +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "Nenhum status especificado" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" -msgstr "Status de entrega" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "Qualidade do fornecedor" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" -msgstr "Status de conta" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "Nota" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "Tipo de conta" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "Comentário sobre a pesquisa" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" -msgstr "Natureza analítica" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" +msgstr "Qualidade do acompanhamento administrativo (contratos, facturas, mail, etc.)" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" -msgstr "Seção da conta" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" +msgstr "Qualidade de acompanhamento comercial, visitas, responsabilidade" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "Nome do pedido" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "Disponibilidade de contactos" -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "Pedido" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" +msgstr "Qualidade da intervenção do fornecedor" -#: inc/referencefree.class.php:39 -msgid "Reference free" -msgstr "Referência livre" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "Confiabilidade sobre atrasos anunciados" -#: inc/config.class.php:103 -msgid "Plugin configuration" -msgstr "Configuração do plugin" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "Nota final do fornecedor" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "IVA padrão" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" +msgstr "Pontuação média até 10 (pontos X / 5)" -#: inc/config.class.php:118 -msgid "Use validation process" -msgstr "Utilizar processo de validação" +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "Categoria do documento" -#: inc/config.class.php:125 -msgid "Order generation in ODT" -msgstr "Geração de pedidos em ODT" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "Prefixo da categoria do documento" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" -msgstr "Ativar a satisfação da qualidade dos fornecedores" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" +msgstr "Geração de pedidos" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" -msgstr "Exibir informações do pedido dos fornecedores" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "Entrega de itens" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" -msgstr "Cor a ser exibida quando a data de vencimento do pedido é ultrapassado" +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "Validação do pedido" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" -msgstr "Copiar documentos do pedido quando um novo item é criado" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" +msgstr "Cancelar pedido" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" -msgstr "Título padrão ao adicionar um documento a um pedido" +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "Editar um pedido validada" + +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "Gerar pedido sem validação" + +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" +msgstr "Envio" + +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" +msgstr "Pedido atrasado" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Grupo de autores" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" msgstr "Grupo de destinatários" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" -msgstr "Ocultar orçamentos inativos" +#: inc/order.class.php:584 +msgid "Account Section" +msgstr "Secção de contas" -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" -msgstr "Ocultar orçamentos inativos" - -#: inc/config.class.php:212 -msgid "Display account section on order form" -msgstr "Exibir seção da conta no formulário do pedido" - -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" -msgstr "Definir seção de conta como obrigatória no formulário de pedido" +#: inc/order.class.php:636 +msgid "Validation" +msgstr "Validação" -#: inc/config.class.php:226 -msgid "Use free references" -msgstr "Use referências livres" +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "Pedido de compra" -#: inc/config.class.php:233 -msgid "Rename documents added in order" -msgstr "Renomear documentos adicionados por ordem" +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "Número de pedido é obrigatório !" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" -msgstr "Ações automáticas na entrega" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" +msgstr "Uma secção de conta é obrigatória !" -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" -msgstr "Exibir natureza analítica no formulário do item" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." +msgstr "A data da ordem deve estar dentro das datas entradas para o orçamento selecionado." -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" -msgstr "Definir a natureza analítica como obrigatória no formulário de item" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "IVA não" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" -msgstr "Permitir a geração automática" +#: inc/order.class.php:1096 +msgid "Due date overtaken" +msgstr "Data de vencimento ultrapassada" -#: inc/config.class.php:269 -msgid "Asked" -msgstr "Perguntado" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" +msgstr "Preço livre de impostos" -#: inc/config.class.php:275 -msgid "Default state" -msgstr "Estado predefinido" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" +msgstr "Preço isento de impostos com portes de envio" -#: inc/config.class.php:286 -msgid "Add order location to item" -msgstr "Adicionar local do pedido ao item" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "Preço ATI" -#: inc/config.class.php:293 -msgid "Add billing details to item" -msgstr "Adicionar detalhes de faturamento ao item" +#: inc/order.class.php:1534 +msgid "Validation process" +msgstr "Processo de validação" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" -msgstr "Nome padrão" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "Quer mesmo cancelar este pedido? Esta opção é irreversível!" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" -msgstr "Número de série padrão" +#: inc/order.class.php:1560 +msgid "Validate order" +msgstr "Validar pedido" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "Número de inventário padrão" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" +msgstr "Deseja cancelar a aprovação de validação?" -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "Ciclo de vida do pedido" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" +msgstr "Cancelar o pedido de validação" -#: inc/config.class.php:342 -msgid "State before validation" -msgstr "Estado antes da validação" +#: inc/order.class.php:1574 +msgid "Ask for validation" +msgstr "Solicitar validação" -#: inc/config.class.php:352 -msgid "Waiting for validation state" -msgstr "Aguardando estado de validação" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" +msgstr "Você realmente quer editar o pedido?" -#: inc/config.class.php:362 -msgid "Validated order state" -msgstr "Estado do pedido validado" +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "Editar pedido" -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "Estado de entrega do pedido" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." +msgstr "Obrigado por adicionar pelo menos um equipamento ao seu pedido." -#: inc/config.class.php:382 -msgid "Order delivered state" -msgstr "Estado de entrega do pedido" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" +msgstr "Obrigado por seleccionar um modelo de acordo com as suas preferências" -#: inc/config.class.php:392 -msgid "Order paied state" -msgstr "Estado de emparelhamento do pedido" +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "Endereço da fatura" -#: inc/config.class.php:402 -msgid "Canceled order state" -msgstr "Estado do pedido cancelada" +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "Endereço de entrega" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" -msgstr "Qualidade do fornecedor" +#: inc/order.class.php:1726 +msgid "The" +msgstr "A" -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" -msgstr "Nota" +#: inc/order.class.php:1728 +msgid "Issuer order" +msgstr "Pedido de emissão" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" -msgstr "Comentário sobre a pesquisa" +#: inc/order.class.php:1746 +msgid "Recipient" +msgstr "Destinatário" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" -msgstr "Qualidade do acompanhamento administrativo (contratos, facturas, mail, etc.)" +#: inc/order.class.php:1749 +msgid "Designation" +msgstr "Designação" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" -msgstr "Qualidade de acompanhamento comercial, visitas, responsabilidade" +#: inc/order.class.php:1751 +msgid "Unit price" +msgstr "Preço unitário" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" -msgstr "Disponibilidade de contactos" +#: inc/order.class.php:1753 +msgid "Discount rate" +msgstr "Taxa de desconto" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" -msgstr "Qualidade da intervenção do fornecedor" +#: inc/order.class.php:1754 +msgid "Sum tax free" +msgstr "Soma isenta de impostos" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" -msgstr "Confiabilidade sobre atrasos anunciados" +#: inc/order.class.php:1881 +msgid "€" +msgstr "€" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" -msgstr "Nota final do fornecedor" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" +msgstr "Assinatura de pedido de emissão" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" -msgstr "Pontuação média até 10 (pontos X / 5)" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "Pedidos ligadas" -#: inc/documentcategory.class.php:39 -msgid "Document category" -msgstr "Categoria do documento" +#: inc/order.class.php:1994 +msgid "Unlink" +msgstr "Sem ligação" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" -msgstr "Prefixo da categoria do documento" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." +msgstr "O total de pedidos relacionadas com este orçamento é superior ao seu valor." -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" -msgstr "Não é possível remover esse status" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." +msgstr "O total de pedidos relacionadas com este orçamento é igual ao seu valor." -#: inc/orderstate.class.php:87 -msgid "Draft" -msgstr "Rascunho" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "Requer validação do pedido" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" -msgstr "Aguardando aprovação" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "Pedido validade" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "Validação" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "Pedidos atrasadas" -#: inc/orderstate.class.php:90 -msgid "Being delivered" -msgstr "A ser entregue" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "Nenhum item a gerar" -#: inc/orderstate.class.php:91 -msgid "Delivered" -msgstr "Entregue" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "Comentário da validação" -#: inc/orderstate.class.php:92 -msgid "Canceled" -msgstr "Cancelado" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "Validação cancelada com êxito" -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "Paga" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "Editor de validação" -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" -msgstr "Referência do produto do fabricante" +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" +msgstr "Item da encomenda" -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/order_item.class.php:115 inc/order_item.class.php:369 #: inc/order_item.class.php:476 inc/order_item.class.php:801 #: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Preço unitário livre de impostos" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "Referência do produto" - -#: inc/reference_supplier.class.php:476 -msgid "List references" -msgstr "Lista de referências" - -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "Entrega" - -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "Entrega recebida" - -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "Fatura" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" -msgstr "Nenhum item para receber entrega de" - -#: inc/reception.class.php:350 -msgid "Delivered items" -msgstr "Itens entregues" - -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" -msgstr "Entrega de itens" - -#: inc/reception.class.php:609 -msgid "Waiting for delivery" -msgstr "À espera de entrega" - -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" -msgstr "Não há itens suficientes para entregar" - -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" -msgstr "Item cujo fornecimento foi feito com êxito" - -#: inc/reception.class.php:784 -msgid "Item already taken delivery" -msgstr "Item já entregue" - -#: inc/reception.class.php:950 -msgid "Item delivered" -msgstr "Item entregue" - -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" -msgstr "Um número da fatura é obrigatório" - -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" -msgstr "Utilize este modelo" - -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" -msgstr "Utilize este sinal" - -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 -msgid "Order item" -msgstr "Item da encomenda" - #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "Nome do produto" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "Referência do produto do fabricante" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "Natureza analítica" @@ -584,6 +564,14 @@ msgstr "Alguns campos não podem ser modificados porque pertencem a uma encomend msgid "Add to the order from the catalog" msgstr "Adicionar ao pedido do catálogo" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Referência do produto" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "Selecione um fornecedor" @@ -600,6 +588,11 @@ msgstr "Adicionar referencia" msgid "An analytic nature is mandatory !" msgstr "Uma natureza analítica é obrigatória!" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "Nenhum item para receber entrega de" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -620,12 +613,6 @@ msgstr "Quer realmente apagar esses detalhes? Os artigos entregues não serão l msgid "Discounted price tax free" msgstr "Preço descontado isento de impostos" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "Preço ATI" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "Informações sobre a encomenda" @@ -638,305 +625,315 @@ msgstr "Status do pagamento" msgid "Paid value" msgstr "Valor pago" -#: inc/billstate.class.php:59 -msgid "Being paid" -msgstr "A ser pago" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Fatura" -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "Não pago" +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "Lista de referências" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" -msgstr "Requer validação do pedido" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "Não é possível criar uma referência sem um nome" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" -msgstr "Pedido validade" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "Não é possível criar referência sem um tipo" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" -msgstr "Pedidos atrasadas" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "Uma referência com o mesmo nome ainda existe" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" -msgstr "Nenhum item a gerar" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "Referência(s) em uso" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" -msgstr "Comentário da validação" +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "Cópia de" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" -msgstr "Validação cancelada com êxito" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "Selecione o tipo de item desejado" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" -msgstr "Editor de validação" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "Ver por tipo de item" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "Copiar referencia" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "Não é possível remover esse status" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "Rascunho" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "Aguardando aprovação" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Validação" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "A ser entregue" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Entregue" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "Cancelado" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Paga" #: inc/link.class.php:48 msgid "Generation" msgstr "Geração" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "Gerar item" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "Ligar a um item existente" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "Eliminar ligação de item" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "Não é possível ligar vários itens a uma linha de detalhe" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "Não é possível ligar itens não entregues" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "Nenhum item associado" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "Item associado ao pedido" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "Item já ligado a outro" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "Item desassociado por meio do pedido" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "Uma ou várias linhas selecionadas não têm itens associados" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "Item gerado por meio do pedido" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "Item selecionado com sucesso" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "Geração de pedidos" - -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "Validação do pedido" - -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "Cancelar pedido" - -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "Editar um pedido validada" - -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "Gerar pedido sem validação" - -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "Envio" - -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" -msgstr "Pedido atrasado" +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "Configuração do plugin" -#: inc/order.class.php:584 -msgid "Account Section" -msgstr "Secção de contas" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "IVA padrão" -#: inc/order.class.php:636 -msgid "Validation" -msgstr "Validação" +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "Utilizar processo de validação" -#: inc/order.class.php:642 -msgid "Purchase order" -msgstr "Pedido de compra" +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "Geração de pedidos em ODT" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" -msgstr "Número de pedido é obrigatório !" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "Ativar a satisfação da qualidade dos fornecedores" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" -msgstr "Uma secção de conta é obrigatória !" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "Exibir informações do pedido dos fornecedores" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." -msgstr "A data da ordem deve estar dentro das datas entradas para o orçamento selecionado." +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "Cor a ser exibida quando a data de vencimento do pedido é ultrapassado" -#: inc/order.class.php:1096 -msgid "Due date overtaken" -msgstr "Data de vencimento ultrapassada" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" +msgstr "Copiar documentos do pedido quando um novo item é criado" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" -msgstr "Preço livre de impostos" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "Título padrão ao adicionar um documento a um pedido" -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" -msgstr "Preço isento de impostos com portes de envio" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "Ocultar orçamentos inativos" -#: inc/order.class.php:1534 -msgid "Validation process" -msgstr "Processo de validação" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" +msgstr "Ocultar orçamentos inativos" -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" -msgstr "Quer mesmo cancelar este pedido? Esta opção é irreversível!" +#: inc/config.class.php:212 +msgid "Display account section on order form" +msgstr "Exibir seção da conta no formulário do pedido" -#: inc/order.class.php:1560 -msgid "Validate order" -msgstr "Validar pedido" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" +msgstr "Definir seção de conta como obrigatória no formulário de pedido" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" -msgstr "Deseja cancelar a aprovação de validação?" +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "Use referências livres" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" -msgstr "Cancelar o pedido de validação" +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "Renomear documentos adicionados por ordem" -#: inc/order.class.php:1574 -msgid "Ask for validation" -msgstr "Solicitar validação" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "Ações automáticas na entrega" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" -msgstr "Você realmente quer editar o pedido?" +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "Exibir natureza analítica no formulário do item" -#: inc/order.class.php:1582 -msgid "Edit order" -msgstr "Editar pedido" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "Definir a natureza analítica como obrigatória no formulário de item" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." -msgstr "Obrigado por adicionar pelo menos um equipamento ao seu pedido." +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "Permitir a geração automática" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" -msgstr "Obrigado por seleccionar um modelo de acordo com as suas preferências" +#: inc/config.class.php:269 +msgid "Asked" +msgstr "Perguntado" -#: inc/order.class.php:1681 -msgid "Invoice address" -msgstr "Endereço da fatura" +#: inc/config.class.php:275 +msgid "Default state" +msgstr "Estado predefinido" -#: inc/order.class.php:1716 -msgid "Delivery address" -msgstr "Endereço de entrega" +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "Adicionar local do pedido ao item" -#: inc/order.class.php:1726 -msgid "The" -msgstr "A" +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "Adicionar detalhes de faturamento ao item" -#: inc/order.class.php:1728 -msgid "Issuer order" -msgstr "Pedido de emissão" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "Nome padrão" -#: inc/order.class.php:1746 -msgid "Recipient" -msgstr "Destinatário" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "Número de série padrão" -#: inc/order.class.php:1749 -msgid "Designation" -msgstr "Designação" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "Número de inventário padrão" -#: inc/order.class.php:1751 -msgid "Unit price" -msgstr "Preço unitário" +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "Ciclo de vida do pedido" -#: inc/order.class.php:1753 -msgid "Discount rate" -msgstr "Taxa de desconto" +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "Estado antes da validação" -#: inc/order.class.php:1754 -msgid "Sum tax free" -msgstr "Soma isenta de impostos" +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "Aguardando estado de validação" -#: inc/order.class.php:1881 -msgid "€" -msgstr "€" +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "Estado do pedido validado" -#: inc/order.class.php:1882 -msgid "Signature of issuing order" -msgstr "Assinatura de pedido de emissão" +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "Estado de entrega do pedido" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" -msgstr "Pedidos ligadas" +#: inc/config.class.php:382 +msgid "Order delivered state" +msgstr "Estado de entrega do pedido" -#: inc/order.class.php:1994 -msgid "Unlink" -msgstr "Sem ligação" +#: inc/config.class.php:392 +msgid "Order paied state" +msgstr "Estado de emparelhamento do pedido" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." -msgstr "O total de pedidos relacionadas com este orçamento é superior ao seu valor." +#: inc/config.class.php:402 +msgid "Canceled order state" +msgstr "Estado do pedido cancelada" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." -msgstr "O total de pedidos relacionadas com este orçamento é igual ao seu valor." +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "Um número da fatura é obrigatório" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" -msgstr "Estatísticas de fornecimento" +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "Entrega" -#: inc/order_supplier.class.php:309 -msgid "No specified status" -msgstr "Nenhum status especificado" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "Entrega recebida" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" -msgstr "Não é possível criar uma referência sem um nome" +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "Itens entregues" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" -msgstr "Não é possível criar referência sem um tipo" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "À espera de entrega" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" -msgstr "Uma referência com o mesmo nome ainda existe" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "Não há itens suficientes para entregar" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" -msgstr "Referência(s) em uso" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "Item cujo fornecimento foi feito com êxito" -#: inc/reference.class.php:838 -msgid "Copy of" -msgstr "Cópia de" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "Item já entregue" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" -msgstr "Selecione o tipo de item desejado" +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "Item entregue" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" -msgstr "Ver por tipo de item" +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "A ser pago" -#: inc/reference.class.php:993 -msgid "Copy reference" -msgstr "Copiar referencia" +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "Não pago" diff --git a/locales/ro_RO.mo b/locales/ro_RO.mo index 657d5659b0..a01da67c09 100644 Binary files a/locales/ro_RO.mo and b/locales/ro_RO.mo differ diff --git a/locales/ro_RO.po b/locales/ro_RO.po index 3863a7710d..87a246b98d 100644 --- a/locales/ro_RO.po +++ b/locales/ro_RO.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: 2018-12-17 15:03+0000\n" "Last-Translator: Cédric Anne\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/teclib/glpi-plugin-order/language/ro_RO/)\n" @@ -18,42 +18,114 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Instalare sau actualizare Plugin" + +#: hook.php:88 +msgid "Can't create folder" msgstr "" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" msgstr "" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "TVA" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Conditii plata" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Status Comanda" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Alt tip al elementului" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Status Livrare" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Status Factura" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Tip Factura" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" msgstr "" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Comenzi" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "Nume Comanda" + +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "Numar Comanda" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Comanda" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "" @@ -62,6 +134,15 @@ msgstr "" msgid "Late orders total" msgstr "" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -71,44 +152,20 @@ msgstr "" msgid "Delete" msgstr "Sterge" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "Detaliu Furnizor" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "Management comenzi" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "Comenzi" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "Referinte Produse" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "Facturi" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "" @@ -139,9 +196,9 @@ msgid "Add reference" msgstr "" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "Cantitate" @@ -162,417 +219,340 @@ msgstr "" msgid "No item selected" msgstr "Niciun element selectat" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" -msgstr "Fara TVA" - -#: hook.php:46 -msgid "Plugin installation or upgrade" -msgstr "Instalare sau actualizare Plugin" - -#: hook.php:88 -msgid "Can't create folder" -msgstr "" - -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" msgstr "" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" -msgstr "TVA" - -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" -msgstr "Conditii plata" - -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" -msgstr "Status Comanda" - -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "Alt tip al elementului" - -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" -msgstr "Status Livrare" - -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" -msgstr "Status Factura" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Referinte Produse" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "Tip Factura" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "Facturi" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" msgstr "" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" msgstr "" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "Nume Comanda" - -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "Comanda" - #: inc/referencefree.class.php:39 msgid "Reference free" msgstr "" -#: inc/config.class.php:103 -msgid "Plugin configuration" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" msgstr "" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "TVA implicit" +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "" -#: inc/config.class.php:118 -msgid "Use validation process" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" msgstr "" -#: inc/config.class.php:125 -msgid "Order generation in ODT" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" msgstr "" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" msgstr "" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" msgstr "" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" msgstr "" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" msgstr "" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" msgstr "" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 -msgid "Author group" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" msgstr "" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 -msgid "Recipient group" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" msgstr "" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" msgstr "" -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" +#: inc/documentcategory.class.php:39 +msgid "Document category" msgstr "" -#: inc/config.class.php:212 -msgid "Display account section on order form" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" msgstr "" -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" msgstr "" -#: inc/config.class.php:226 -msgid "Use free references" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" msgstr "" -#: inc/config.class.php:233 -msgid "Rename documents added in order" +#: inc/order.class.php:272 +msgid "Order validation" msgstr "" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" msgstr "" -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" +#: inc/order.class.php:274 +msgid "Edit a validated order" msgstr "" -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" +#: inc/order.class.php:275 +msgid "Generate order without validation" msgstr "" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" msgstr "" -#: inc/config.class.php:269 -msgid "Asked" +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" msgstr "" -#: inc/config.class.php:275 -msgid "Default state" +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 +msgid "Author group" msgstr "" -#: inc/config.class.php:286 -msgid "Add order location to item" +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 +msgid "Recipient group" msgstr "" -#: inc/config.class.php:293 -msgid "Add billing details to item" +#: inc/order.class.php:584 +msgid "Account Section" msgstr "" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" +#: inc/order.class.php:636 +msgid "Validation" msgstr "" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" +#: inc/order.class.php:642 +msgid "Purchase order" msgstr "" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "" - -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "" - -#: inc/config.class.php:342 -msgid "State before validation" +#: inc/order.class.php:684 +msgid "An order number is mandatory !" msgstr "" -#: inc/config.class.php:352 -msgid "Waiting for validation state" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" msgstr "" -#: inc/config.class.php:362 -msgid "Validated order state" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." msgstr "" -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "Fara TVA" -#: inc/config.class.php:382 -msgid "Order delivered state" +#: inc/order.class.php:1096 +msgid "Due date overtaken" msgstr "" -#: inc/config.class.php:392 -msgid "Order paied state" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" msgstr "" -#: inc/config.class.php:402 -msgid "Canceled order state" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" msgstr "" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" msgstr "" -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" +#: inc/order.class.php:1534 +msgid "Validation process" msgstr "" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" msgstr "" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" +#: inc/order.class.php:1560 +msgid "Validate order" msgstr "" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" msgstr "" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" msgstr "" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" +#: inc/order.class.php:1574 +msgid "Ask for validation" msgstr "" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" msgstr "" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" +#: inc/order.class.php:1582 +msgid "Edit order" msgstr "" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." msgstr "" -#: inc/documentcategory.class.php:39 -msgid "Document category" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" msgstr "" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" +#: inc/order.class.php:1681 +msgid "Invoice address" msgstr "" -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" +#: inc/order.class.php:1716 +msgid "Delivery address" msgstr "" -#: inc/orderstate.class.php:87 -msgid "Draft" +#: inc/order.class.php:1726 +msgid "The" msgstr "" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" +#: inc/order.class.php:1728 +msgid "Issuer order" msgstr "" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "Validat" - -#: inc/orderstate.class.php:90 -msgid "Being delivered" +#: inc/order.class.php:1746 +msgid "Recipient" msgstr "" -#: inc/orderstate.class.php:91 -msgid "Delivered" -msgstr "Livrat" - -#: inc/orderstate.class.php:92 -msgid "Canceled" +#: inc/order.class.php:1749 +msgid "Designation" msgstr "" -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "Platit" - -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" +#: inc/order.class.php:1751 +msgid "Unit price" msgstr "" -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 -#: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 -#: inc/reference.class.php:183 -msgid "Unit price tax free" +#: inc/order.class.php:1753 +msgid "Discount rate" msgstr "" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "Referinta Produs" - -#: inc/reference_supplier.class.php:476 -msgid "List references" +#: inc/order.class.php:1754 +msgid "Sum tax free" msgstr "" -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "" +#: inc/order.class.php:1881 +msgid "€" +msgstr "€" -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" msgstr "" -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "Factura" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" msgstr "" -#: inc/reception.class.php:350 -msgid "Delivered items" +#: inc/order.class.php:1994 +msgid "Unlink" msgstr "" -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." msgstr "" -#: inc/reception.class.php:609 -msgid "Waiting for delivery" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." msgstr "" -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" msgstr "" -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" msgstr "" -#: inc/reception.class.php:784 -msgid "Item already taken delivery" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" msgstr "" -#: inc/reception.class.php:950 -msgid "Item delivered" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" msgstr "" -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" msgstr "" -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" msgstr "" -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" msgstr "" #: inc/order_item.class.php:99 inc/order_item.class.php:1971 msgid "Order item" msgstr "" +#: inc/order_item.class.php:115 inc/order_item.class.php:369 +#: inc/order_item.class.php:476 inc/order_item.class.php:801 +#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 +#: inc/reference.class.php:183 +msgid "Unit price tax free" +msgstr "" + #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "" @@ -585,6 +565,14 @@ msgstr "" msgid "Add to the order from the catalog" msgstr "" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Referinta Produs" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "" @@ -601,6 +589,11 @@ msgstr "" msgid "An analytic nature is mandatory !" msgstr "" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -621,12 +614,6 @@ msgstr "" msgid "Discounted price tax free" msgstr "" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "" @@ -639,305 +626,315 @@ msgstr "" msgid "Paid value" msgstr "" -#: inc/billstate.class.php:59 -msgid "Being paid" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Factura" + +#: inc/reference_supplier.class.php:476 +msgid "List references" msgstr "" -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "Neplatit" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" msgstr "" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" msgstr "" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" msgstr "" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" +#: inc/reference.class.php:838 +msgid "Copy of" msgstr "" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" msgstr "" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" msgstr "" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "Referinta coie" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" msgstr "" +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Validat" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Livrat" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Platit" + #: inc/link.class.php:48 msgid "Generation" msgstr "" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "" - -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "" - -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "" - -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "" - -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "" - -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" +#: inc/config.class.php:103 +msgid "Plugin configuration" msgstr "" -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" -msgstr "" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "TVA implicit" -#: inc/order.class.php:584 -msgid "Account Section" +#: inc/config.class.php:118 +msgid "Use validation process" msgstr "" -#: inc/order.class.php:636 -msgid "Validation" +#: inc/config.class.php:125 +msgid "Order generation in ODT" msgstr "" -#: inc/order.class.php:642 -msgid "Purchase order" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" msgstr "" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" msgstr "" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" msgstr "" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" msgstr "" -#: inc/order.class.php:1096 -msgid "Due date overtaken" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" msgstr "" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" msgstr "" -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" msgstr "" -#: inc/order.class.php:1534 -msgid "Validation process" +#: inc/config.class.php:212 +msgid "Display account section on order form" msgstr "" -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" msgstr "" -#: inc/order.class.php:1560 -msgid "Validate order" +#: inc/config.class.php:226 +msgid "Use free references" msgstr "" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" +#: inc/config.class.php:233 +msgid "Rename documents added in order" msgstr "" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" msgstr "" -#: inc/order.class.php:1574 -msgid "Ask for validation" +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" msgstr "" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" msgstr "" -#: inc/order.class.php:1582 -msgid "Edit order" +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" msgstr "" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." +#: inc/config.class.php:269 +msgid "Asked" msgstr "" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" +#: inc/config.class.php:275 +msgid "Default state" msgstr "" -#: inc/order.class.php:1681 -msgid "Invoice address" +#: inc/config.class.php:286 +msgid "Add order location to item" msgstr "" -#: inc/order.class.php:1716 -msgid "Delivery address" +#: inc/config.class.php:293 +msgid "Add billing details to item" msgstr "" -#: inc/order.class.php:1726 -msgid "The" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" msgstr "" -#: inc/order.class.php:1728 -msgid "Issuer order" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" msgstr "" -#: inc/order.class.php:1746 -msgid "Recipient" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" msgstr "" -#: inc/order.class.php:1749 -msgid "Designation" +#: inc/config.class.php:338 +msgid "Order lifecycle" msgstr "" -#: inc/order.class.php:1751 -msgid "Unit price" +#: inc/config.class.php:342 +msgid "State before validation" msgstr "" -#: inc/order.class.php:1753 -msgid "Discount rate" +#: inc/config.class.php:352 +msgid "Waiting for validation state" msgstr "" -#: inc/order.class.php:1754 -msgid "Sum tax free" +#: inc/config.class.php:362 +msgid "Validated order state" msgstr "" -#: inc/order.class.php:1881 -msgid "€" -msgstr "€" - -#: inc/order.class.php:1882 -msgid "Signature of issuing order" +#: inc/config.class.php:372 +msgid "Order being delivered state" msgstr "" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" +#: inc/config.class.php:382 +msgid "Order delivered state" msgstr "" -#: inc/order.class.php:1994 -msgid "Unlink" +#: inc/config.class.php:392 +msgid "Order paied state" msgstr "" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." +#: inc/config.class.php:402 +msgid "Canceled order state" msgstr "" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" msgstr "" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" +#: inc/reception.class.php:53 +msgid "Delivery" msgstr "" -#: inc/order_supplier.class.php:309 -msgid "No specified status" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" msgstr "" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" +#: inc/reception.class.php:350 +msgid "Delivered items" msgstr "" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" msgstr "" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" msgstr "" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" msgstr "" -#: inc/reference.class.php:838 -msgid "Copy of" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" msgstr "" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" +#: inc/reception.class.php:950 +msgid "Item delivered" msgstr "" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" +#: inc/billstate.class.php:59 +msgid "Being paid" msgstr "" -#: inc/reference.class.php:993 -msgid "Copy reference" -msgstr "Referinta coie" +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "Neplatit" diff --git a/locales/ru_RU.mo b/locales/ru_RU.mo index 04e154bd76..3484b698e6 100644 Binary files a/locales/ru_RU.mo and b/locales/ru_RU.mo differ diff --git a/locales/ru_RU.po b/locales/ru_RU.po index 8e5a8f86d6..0123704912 100644 --- a/locales/ru_RU.po +++ b/locales/ru_RU.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: 2018-12-17 15:03+0000\n" "Last-Translator: Cédric Anne\n" "Language-Team: Russian (Russia) (http://www.transifex.com/teclib/glpi-plugin-order/language/ru_RU/)\n" @@ -20,42 +20,114 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" -msgstr "Отчет о доставке заказа" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Плагин устанавливается или обновляется" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" -msgstr "Дата заказа" +#: hook.php:88 +msgid "Can't create folder" +msgstr "" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" -msgstr "Место доставки" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "НДС" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Условия оплаты" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Статус заказа" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Другой тип товара" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Статус доставки" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Статус счета" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Тип счета" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Заказы" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "Наименование заказа" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "Номер заказа" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "Предполагаемая дата поставки" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Заказ" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "Отчет о информации о доставке" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "Дата заказа" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "Место доставки" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "Заказов всего" @@ -64,6 +136,15 @@ msgstr "Заказов всего" msgid "Late orders total" msgstr "Всего просроченных заказов" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "Отчет о доставке заказа" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "Предполагаемая дата поставки" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -73,44 +154,20 @@ msgstr "Номер цитаты" msgid "Delete" msgstr "Удалить" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "Информация о поставщике" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "Управление заказами" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "Заказы" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "Поставщик товара" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "Закупаемый товар" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "Счета" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "Заказ проверен" @@ -141,9 +198,9 @@ msgid "Add reference" msgstr "Добавить товар" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "Количество" @@ -164,417 +221,340 @@ msgstr "Удалить товар" msgid "No item selected" msgstr "Не выбран пункт" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" -msgstr "Без НДС" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "Поставщик товара" -#: hook.php:46 -msgid "Plugin installation or upgrade" -msgstr "Плагин устанавливается или обновляется" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Закупаемый товар" -#: hook.php:88 -msgid "Can't create folder" -msgstr "" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "Счета" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" +msgstr "Использовать этот шаблон" + +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" +msgstr "Используйте этот знак" + +#: inc/referencefree.class.php:39 +msgid "Reference free" msgstr "" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" -msgstr "НДС" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "Статистика доставок" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" -msgstr "Условия оплаты" +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "Не указан статус" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" -msgstr "Статус заказа" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "Качество поставщика" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "Другой тип товара" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "Примечание" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" -msgstr "Статус доставки" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "Комментарий опроса" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" -msgstr "Статус счета" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" +msgstr "Административное наблюдение за качеством (контакты, счета, письма и т.д.)" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "Тип счета" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" +msgstr "Коммерческое наблюдение за качеством, посещения, отзывчивость" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" -msgstr "" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "Доступные контакты" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" -msgstr "" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" +msgstr "Качество действий поставщика" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "Наименование заказа" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "Надежность объявленной задержки" -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "Заказ" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "Последнее примечание к поставщику" -#: inc/referencefree.class.php:39 -msgid "Reference free" -msgstr "" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" +msgstr "Средний балл до 10 (X очков / 5)" -#: inc/config.class.php:103 -msgid "Plugin configuration" -msgstr "Настройки плагина" +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "Категория документа" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "НДС по умолчанию" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "Префикс категории документов" -#: inc/config.class.php:118 -msgid "Use validation process" -msgstr "Использовать проверку заказов" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" +msgstr "Создание бланка заказа" -#: inc/config.class.php:125 -msgid "Order generation in ODT" -msgstr "Выгружать заказ в формат ODT" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "Получение товара" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" -msgstr "Включить оценку качества постащиков" +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "Проверка заказа" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" -msgstr "Отображать информацию о поставщиках" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" +msgstr "Отмена заказа" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" -msgstr "Цвет, который будет отображаться при наступлении даты истечения заказа" +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "Изменить проверенный заказ" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" -msgstr "Копировать документы заказов при создании нового товара" +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "Создать заказ без проверки" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" -msgstr "Заголовок по умолчанию при добавлении документа к заказу" +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" +msgstr "Расход на доставку" + +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" +msgstr "Опоздание заказа" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Группа автора" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" msgstr "Группа получателя" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" -msgstr "Скрыть не активные бюджеты" +#: inc/order.class.php:584 +msgid "Account Section" +msgstr "" -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" -msgstr "Передача изменений бюджета на связанные активы" - -#: inc/config.class.php:212 -msgid "Display account section on order form" -msgstr "" +#: inc/order.class.php:636 +msgid "Validation" +msgstr "Проверка" -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" -msgstr "" +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "Бланк заказа" -#: inc/config.class.php:226 -msgid "Use free references" -msgstr "" +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "Номер заказа обязателен!" -#: inc/config.class.php:233 -msgid "Rename documents added in order" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" msgstr "" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" -msgstr "Автоматические действия при доставке" - -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" -msgstr "" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." +msgstr "Выбранная дата должна быть в пределах дат выбранного бюджета." -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" -msgstr "" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "Без НДС" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" -msgstr "Включить автоматическое создание" +#: inc/order.class.php:1096 +msgid "Due date overtaken" +msgstr "Просрочен" -#: inc/config.class.php:269 -msgid "Asked" -msgstr "Запрошено" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" +msgstr "Cтоимость без налогов" -#: inc/config.class.php:275 -msgid "Default state" -msgstr "Статус по умолчанию" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" +msgstr "Общая стоимость без налогов + доставка" -#: inc/config.class.php:286 -msgid "Add order location to item" -msgstr "Добавлять местоположение заказа" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "Цена" -#: inc/config.class.php:293 -msgid "Add billing details to item" -msgstr "Добавить платежную информацию по материалу" +#: inc/order.class.php:1534 +msgid "Validation process" +msgstr "Проверяется" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" -msgstr "Наименование по умолчанию" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "Вы действительно желаете отменить этот заказ? Это действие необратимо!" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" -msgstr "Серийный номер по умолчанию" +#: inc/order.class.php:1560 +msgid "Validate order" +msgstr "Проверка заказа" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "Инвентарный номер по умолчанию" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" +msgstr "Вы желаете отменить утверждение проверки?" -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "Цикл заказа" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" +msgstr "Отменить запрос на проверку" -#: inc/config.class.php:342 -msgid "State before validation" -msgstr "Статус до проверки" +#: inc/order.class.php:1574 +msgid "Ask for validation" +msgstr "Запрос на проверку" -#: inc/config.class.php:352 -msgid "Waiting for validation state" -msgstr "Ожидание проверки статуса" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" +msgstr "Вы действительно желаете изменить заявку?" -#: inc/config.class.php:362 -msgid "Validated order state" -msgstr "Статус проверенного заказа" +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "Редактировать заказ" -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "Статус по крайней мере одного доставленого товара в заказе" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." +msgstr "Добавьте, пожалуйста, хотя бы одно оборудование к Вашему заказу." -#: inc/config.class.php:382 -msgid "Order delivered state" -msgstr "Статус доставленного заказа" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" +msgstr "Выберите, пожалуйста, модель для Вашего товара" -#: inc/config.class.php:392 -msgid "Order paied state" -msgstr "Статус оплаченного заказа" +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "Адрес выставления счета" -#: inc/config.class.php:402 -msgid "Canceled order state" -msgstr "Статус отмененного заказа" +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "Адрес доставки" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" -msgstr "Качество поставщика" +#: inc/order.class.php:1726 +msgid "The" +msgstr " " -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" -msgstr "Примечание" +#: inc/order.class.php:1728 +msgid "Issuer order" +msgstr "Отпускающий заказ" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" -msgstr "Комментарий опроса" +#: inc/order.class.php:1746 +msgid "Recipient" +msgstr "Получатель" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" -msgstr "Административное наблюдение за качеством (контакты, счета, письма и т.д.)" +#: inc/order.class.php:1749 +msgid "Designation" +msgstr "Обозначение" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" -msgstr "Коммерческое наблюдение за качеством, посещения, отзывчивость" +#: inc/order.class.php:1751 +msgid "Unit price" +msgstr "Цена за единицу" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" -msgstr "Доступные контакты" +#: inc/order.class.php:1753 +msgid "Discount rate" +msgstr "Скидка" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" -msgstr "Качество действий поставщика" +#: inc/order.class.php:1754 +msgid "Sum tax free" +msgstr "Сумма без налогов" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" -msgstr "Надежность объявленной задержки" +#: inc/order.class.php:1881 +msgid "€" +msgstr "Pуб" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" -msgstr "Последнее примечание к поставщику" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" +msgstr "Подпись о выдаче товара" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" -msgstr "Средний балл до 10 (X очков / 5)" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "Связанные заказы" -#: inc/documentcategory.class.php:39 -msgid "Document category" -msgstr "Категория документа" +#: inc/order.class.php:1994 +msgid "Unlink" +msgstr "Убрать связь" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" -msgstr "Префикс категории документов" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." +msgstr "Всего заявок связанных с этим бюджетом, превышающих его." -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" -msgstr "Вы не можете удалить этот статус" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." +msgstr "Всего заявок связанных с этим бюджетом, равных его значению." -#: inc/orderstate.class.php:87 -msgid "Draft" -msgstr "Черновик" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "Запрос на проверку заказа" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" -msgstr "Ожидание утверждения" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "Заказ проверен" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "Проверено" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "Последние заказы" -#: inc/orderstate.class.php:90 -msgid "Being delivered" -msgstr "Отправляющийся" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "Нет материала для создания" -#: inc/orderstate.class.php:91 -msgid "Delivered" -msgstr "Доставлено" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "Комментарии проверки" -#: inc/orderstate.class.php:92 -msgid "Canceled" -msgstr "Отменено" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "Проверка успешно отменена" -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "Оплачено" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "Редактировать проверку" -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" -msgstr "Артикул производителя" +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" +msgstr "Заказ товара" -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/order_item.class.php:115 inc/order_item.class.php:369 #: inc/order_item.class.php:476 inc/order_item.class.php:801 #: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Стоимость за единицу без налогов" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "Товар" - -#: inc/reference_supplier.class.php:476 -msgid "List references" -msgstr "Список товаров" - -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "Доставка" - -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "Переданные в доставку" - -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "Счет" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" -msgstr "Нет товара, чтобы принят в доставку" - -#: inc/reception.class.php:350 -msgid "Delivered items" -msgstr "Доставленные товары" - -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" -msgstr "Получение товара" - -#: inc/reception.class.php:609 -msgid "Waiting for delivery" -msgstr "Ожидание доставки" - -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" -msgstr "Не достаточно материала для доставки" - -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" -msgstr "Товар успешно принят доставкой" - -#: inc/reception.class.php:784 -msgid "Item already taken delivery" -msgstr "Товар уже принят доставкой" - -#: inc/reception.class.php:950 -msgid "Item delivered" -msgstr "Товар доставлен" - -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" -msgstr "Номер счета обязателен" - -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" -msgstr "Использовать этот шаблон" - -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" -msgstr "Используйте этот знак" - -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 -msgid "Order item" -msgstr "Заказ товара" - #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "Артикул производителя" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "" @@ -587,6 +567,14 @@ msgstr "Некоторые поля не могут быть изменены п msgid "Add to the order from the catalog" msgstr "" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Товар" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "Пожалуйста, выберите поставщика" @@ -603,6 +591,11 @@ msgstr "" msgid "An analytic nature is mandatory !" msgstr "" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "Нет товара, чтобы принят в доставку" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -623,12 +616,6 @@ msgstr "Вы действительно желаете удалить эти д msgid "Discounted price tax free" msgstr "Стоимость со скидкой без налогов" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "Цена" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "Информация о заказе" @@ -641,305 +628,315 @@ msgstr "Статус платежа" msgid "Paid value" msgstr "Сколько оплачено" -#: inc/billstate.class.php:59 -msgid "Being paid" -msgstr "В оплате" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Счет" -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "Не оплачено" +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "Список товаров" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" -msgstr "Запрос на проверку заказа" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "Не возможно создать товар без наименования" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" -msgstr "Заказ проверен" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "Не возможно создать товар без указания типа" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" -msgstr "Последние заказы" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "Товар с таким именем уже существует" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" -msgstr "Нет материала для создания" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "Товар(ы) используется" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" -msgstr "Комментарии проверки" +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "Копия" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" -msgstr "Проверка успешно отменена" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "Выберите требуемый тип материала" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" -msgstr "Редактировать проверку" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "Просмотр по типу материала" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "Копировать товар" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "Вы не можете удалить этот статус" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "Черновик" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "Ожидание утверждения" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Проверено" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "Отправляющийся" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Доставлено" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "Отменено" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Оплачено" #: inc/link.class.php:48 msgid "Generation" msgstr "Генерация" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "Создание материала" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "Ссылка на существующий товар" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "Удалить связь с товаром" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "Невозможно связать с тем же самым товаром с разной информацией" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "Не удается связать, товар не доставлен " -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "Нет связей с материалом" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "Материал связанный с заказом" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "Материал уже связан с объектом инвентаризации" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "Разорвать связь с материалом в форме заказа" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "Один или несколько выбранных строк имеют связанные элементы" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "Материал сформирован при использовании заказов" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "Материал(ы) успешно выбран(ы)" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "Создание бланка заказа" - -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "Проверка заказа" - -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "Отмена заказа" - -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "Изменить проверенный заказ" - -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "Создать заказ без проверки" - -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "Расход на доставку" - -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" -msgstr "Опоздание заказа" +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "Настройки плагина" -#: inc/order.class.php:584 -msgid "Account Section" -msgstr "" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "НДС по умолчанию" -#: inc/order.class.php:636 -msgid "Validation" -msgstr "Проверка" +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "Использовать проверку заказов" -#: inc/order.class.php:642 -msgid "Purchase order" -msgstr "Бланк заказа" +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "Выгружать заказ в формат ODT" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" -msgstr "Номер заказа обязателен!" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "Включить оценку качества постащиков" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" -msgstr "" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "Отображать информацию о поставщиках" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." -msgstr "Выбранная дата должна быть в пределах дат выбранного бюджета." +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "Цвет, который будет отображаться при наступлении даты истечения заказа" -#: inc/order.class.php:1096 -msgid "Due date overtaken" -msgstr "Просрочен" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" +msgstr "Копировать документы заказов при создании нового товара" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" -msgstr "Cтоимость без налогов" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "Заголовок по умолчанию при добавлении документа к заказу" -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" -msgstr "Общая стоимость без налогов + доставка" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "Скрыть не активные бюджеты" -#: inc/order.class.php:1534 -msgid "Validation process" -msgstr "Проверяется" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" +msgstr "Передача изменений бюджета на связанные активы" -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" -msgstr "Вы действительно желаете отменить этот заказ? Это действие необратимо!" +#: inc/config.class.php:212 +msgid "Display account section on order form" +msgstr "" -#: inc/order.class.php:1560 -msgid "Validate order" -msgstr "Проверка заказа" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" +msgstr "" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" -msgstr "Вы желаете отменить утверждение проверки?" +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" -msgstr "Отменить запрос на проверку" +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "" -#: inc/order.class.php:1574 -msgid "Ask for validation" -msgstr "Запрос на проверку" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "Автоматические действия при доставке" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" -msgstr "Вы действительно желаете изменить заявку?" +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "" -#: inc/order.class.php:1582 -msgid "Edit order" -msgstr "Редактировать заказ" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." -msgstr "Добавьте, пожалуйста, хотя бы одно оборудование к Вашему заказу." +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "Включить автоматическое создание" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" -msgstr "Выберите, пожалуйста, модель для Вашего товара" +#: inc/config.class.php:269 +msgid "Asked" +msgstr "Запрошено" -#: inc/order.class.php:1681 -msgid "Invoice address" -msgstr "Адрес выставления счета" +#: inc/config.class.php:275 +msgid "Default state" +msgstr "Статус по умолчанию" -#: inc/order.class.php:1716 -msgid "Delivery address" -msgstr "Адрес доставки" +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "Добавлять местоположение заказа" -#: inc/order.class.php:1726 -msgid "The" -msgstr " " +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "Добавить платежную информацию по материалу" -#: inc/order.class.php:1728 -msgid "Issuer order" -msgstr "Отпускающий заказ" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "Наименование по умолчанию" -#: inc/order.class.php:1746 -msgid "Recipient" -msgstr "Получатель" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "Серийный номер по умолчанию" -#: inc/order.class.php:1749 -msgid "Designation" -msgstr "Обозначение" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "Инвентарный номер по умолчанию" -#: inc/order.class.php:1751 -msgid "Unit price" -msgstr "Цена за единицу" +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "Цикл заказа" -#: inc/order.class.php:1753 -msgid "Discount rate" -msgstr "Скидка" +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "Статус до проверки" -#: inc/order.class.php:1754 -msgid "Sum tax free" -msgstr "Сумма без налогов" +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "Ожидание проверки статуса" -#: inc/order.class.php:1881 -msgid "€" -msgstr "Pуб" +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "Статус проверенного заказа" -#: inc/order.class.php:1882 -msgid "Signature of issuing order" -msgstr "Подпись о выдаче товара" +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "Статус по крайней мере одного доставленого товара в заказе" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" -msgstr "Связанные заказы" +#: inc/config.class.php:382 +msgid "Order delivered state" +msgstr "Статус доставленного заказа" -#: inc/order.class.php:1994 -msgid "Unlink" -msgstr "Убрать связь" +#: inc/config.class.php:392 +msgid "Order paied state" +msgstr "Статус оплаченного заказа" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." -msgstr "Всего заявок связанных с этим бюджетом, превышающих его." +#: inc/config.class.php:402 +msgid "Canceled order state" +msgstr "Статус отмененного заказа" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." -msgstr "Всего заявок связанных с этим бюджетом, равных его значению." +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "Номер счета обязателен" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" -msgstr "Статистика доставок" +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "Доставка" -#: inc/order_supplier.class.php:309 -msgid "No specified status" -msgstr "Не указан статус" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "Переданные в доставку" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" -msgstr "Не возможно создать товар без наименования" +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "Доставленные товары" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" -msgstr "Не возможно создать товар без указания типа" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "Ожидание доставки" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" -msgstr "Товар с таким именем уже существует" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "Не достаточно материала для доставки" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" -msgstr "Товар(ы) используется" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "Товар успешно принят доставкой" -#: inc/reference.class.php:838 -msgid "Copy of" -msgstr "Копия" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "Товар уже принят доставкой" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" -msgstr "Выберите требуемый тип материала" +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "Товар доставлен" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" -msgstr "Просмотр по типу материала" +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "В оплате" -#: inc/reference.class.php:993 -msgid "Copy reference" -msgstr "Копировать товар" +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "Не оплачено" diff --git a/locales/tr_TR.mo b/locales/tr_TR.mo index 895ccbffc3..466204af8a 100644 Binary files a/locales/tr_TR.mo and b/locales/tr_TR.mo differ diff --git a/locales/tr_TR.po b/locales/tr_TR.po index 82f931f269..ca4a0b05fa 100644 --- a/locales/tr_TR.po +++ b/locales/tr_TR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: 2019-07-30 23:49+0000\n" "Last-Translator: Kaya Zeren \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/teclib/glpi-plugin-order/language/tr_TR/)\n" @@ -18,42 +18,114 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" -msgstr "sipariskargo_rapor_basligi" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Uygulama eki yükleme ya da güncelleme" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" -msgstr "Sipariş tarihi" +#: hook.php:88 +msgid "Can't create folder" +msgstr "Klasör oluşturulamadı" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" -msgstr "Kargo konumu" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "%1$s dosyası %2$s üzerine kopyalanamadı" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "KDV" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Ödeme koşulları" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Sipariş durumu" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Diğer öge tipi" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Kargo durumu" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Faturalama durumu" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Faturalama tipi" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "İstatistik doğası" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "Hesap bölümü" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Siparişler" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "Sipariş adı" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "Sipariş numarası" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "Öngörülen bitiş tarihi" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Sipariş" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "kargobilgileri_rapor_basligi" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "Sipariş tarihi" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "Kargo konumu" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "Sipariş toplamı" @@ -62,6 +134,15 @@ msgstr "Sipariş toplamı" msgid "Late orders total" msgstr "Gecikmiş sipariş toplamı" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "sipariskargo_rapor_basligi" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "Öngörülen bitiş tarihi" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -71,44 +152,20 @@ msgstr "Teklif numarası" msgid "Delete" msgstr "Sil" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "Tedarikçi Ayrıntısı" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "Sipariş yönetimi" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "Siparişler" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "Referans için tedarikçi" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "Ürün referansları" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "Faturalar" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "Sipariş doğrulandı" @@ -139,9 +196,9 @@ msgid "Add reference" msgstr "Referans ekle" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "Adet" @@ -162,417 +219,340 @@ msgstr "Referansı sil" msgid "No item selected" msgstr "Henüz bir öge seçilmemiş" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" -msgstr "KDV yok" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "Referans için tedarikçi" -#: hook.php:46 -msgid "Plugin installation or upgrade" -msgstr "Uygulama eki yükleme ya da güncelleme" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Ürün referansları" -#: hook.php:88 -msgid "Can't create folder" -msgstr "Klasör oluşturulamadı" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" +msgstr "Faturalar" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" -msgstr "%1$s dosyası %2$s üzerine kopyalanamadı" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" +msgstr "Şu model kullanılsın" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" -msgstr "KDV" +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" +msgstr "Şu imza kullanılsın" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" -msgstr "Ödeme koşulları" +#: inc/referencefree.class.php:39 +msgid "Reference free" +msgstr "Referans özgür" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" -msgstr "Sipariş durumu" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "Kargo istatistikleri" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "Diğer öge tipi" +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "Bir durum belirtilmemiş" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" -msgstr "Kargo durumu" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "Tedarikçi kalitesi" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" -msgstr "Faturalama durumu" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "Not" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "Faturalama tipi" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "Anket açıklaması" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" -msgstr "İstatistik doğası" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" +msgstr "İdari kalite takibi (sözleşme, fatura, posta gibi)" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" -msgstr "Hesap bölümü" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" +msgstr "Ticari kalite takibi (ziyaret, iletişim, geri dönüş gibi)" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "Sipariş adı" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "Kişilere erişebilme" -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "Sipariş" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" +msgstr "Tedarikçi iletişiminin kalitesi" -#: inc/referencefree.class.php:39 -msgid "Reference free" -msgstr "Referans özgür" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "Bildirilen gecikmelerin güvenirliği" -#: inc/config.class.php:103 -msgid "Plugin configuration" -msgstr "Uygulama eki yapılandırması" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "Son tedarikçi notu" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "Varsayılan KDV" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" +msgstr "10 üzerinden ortalama değerlendirme ( X puan / 5)" -#: inc/config.class.php:118 -msgid "Use validation process" -msgstr "Doğrulama yapılsın" +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "Belge kategorisi" -#: inc/config.class.php:125 -msgid "Order generation in ODT" -msgstr "ODT üzerinde sipariş oluşturma" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "Belge kategorisi öneki" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" -msgstr "Etkin tedarikçi memnuniyeti" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" +msgstr "Sipariş Oluşturma" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" -msgstr "Sipariş tedarikçisinin bilgileri görüntülensin" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "Ögeyi kargola" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" -msgstr "Sipariş teslim tarihi geçen ögelerin görüntülenme rengi" +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "Sipariş doğrulama" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" -msgstr "Yeni öge oluşturulduğundan sipariş belgeleri kopyalansın" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" +msgstr "Siparişi iptal et" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" -msgstr "Bir belge bir siparişe eklendiğinde kullanılacak varsayılan üstbilgi" +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "Doğrulanmış bir siparişi düzenle" + +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "Doğrulamasız sipariş oluştur" + +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" +msgstr "Posta" + +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" +msgstr "Sipariş gecikmiş" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Yetkili grup" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" msgstr "Alıcı grup" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" -msgstr "Etkin olmayan bütçeler gizlensin" +#: inc/order.class.php:584 +msgid "Account Section" +msgstr "Hesap Bölümü" -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" -msgstr "Bütçe değişimini ilgili varlıklara aktar" - -#: inc/config.class.php:212 -msgid "Display account section on order form" -msgstr "Sipariş formunda hesap bölümü görüntülensin" - -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" -msgstr "Sipariş formunda hesap bölümü zorunlu olsun" +#: inc/order.class.php:636 +msgid "Validation" +msgstr "Doğrulama" -#: inc/config.class.php:226 -msgid "Use free references" -msgstr "Özgür referansları kullan" +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "Satınalma siparişi" -#: inc/config.class.php:233 -msgid "Rename documents added in order" -msgstr "Eklenen belgeleri sıraya göre yeniden adlandır" +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "Sipariş numarası zorunludur !" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" -msgstr "Kargolandığından otomatik yapılacak işlemler" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" +msgstr "Bir hesap bölümü zorunludur !" -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" -msgstr "Öge formunda istatistik doğası görüntülensin" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." +msgstr "Sipariş tarihi seçilmiş bütçe için belirtilen tarih aralığında olmalıdır." -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" -msgstr "Bu seçenek etkinleştirildiğinde, öge formunda istatistik doğası zorunlu olur" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "KDV yok" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" -msgstr "Otomatik oluşturma kullanılsın" +#: inc/order.class.php:1096 +msgid "Due date overtaken" +msgstr "Bitiş tarihi geçti" -#: inc/config.class.php:269 -msgid "Asked" -msgstr "Soruldu" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" +msgstr "Fiyat vergiden muaf" -#: inc/config.class.php:275 -msgid "Default state" -msgstr "Varsayılan durum" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" +msgstr "Fiyat vergiden muaf ve kargo dahil" -#: inc/config.class.php:286 -msgid "Add order location to item" -msgstr "Ögeye sipariş konumu ekle" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "Fiyat ATI" -#: inc/config.class.php:293 -msgid "Add billing details to item" -msgstr "Ögeye faturalama bilgileri ekle" +#: inc/order.class.php:1534 +msgid "Validation process" +msgstr "Doğrulama işlemi" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" -msgstr "Varsayılan ad" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "Bu siparişi iptal etmek istediğinize emin misiniz? Bu işlem geri alınamaz !" -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" -msgstr "Varsayılan seri numarası" +#: inc/order.class.php:1560 +msgid "Validate order" +msgstr "Siparişi doğrula" -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "Varsayılan stok numarası" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" +msgstr "Sipariş onayını iptal etmek ister misiniz ?" -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "Sipariş ömrü" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" +msgstr "Doğrulama iptali isteği" -#: inc/config.class.php:342 -msgid "State before validation" -msgstr "Doğrulama öncesi durum" +#: inc/order.class.php:1574 +msgid "Ask for validation" +msgstr "Doğrulama isteği" -#: inc/config.class.php:352 -msgid "Waiting for validation state" -msgstr "Doğrulama bekleniyor durumu" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" +msgstr "Siparişi düzenlemek istediğinize emin misiniz ?" -#: inc/config.class.php:362 -msgid "Validated order state" -msgstr "Doğrulanmış sipariş durumu" +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "Siparişi düzenle" -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "Sipariş kargolanıyor durumu" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." +msgstr "Siparişinize en az bir aygıt eklediğiniz için teşekkürler." -#: inc/config.class.php:382 -msgid "Order delivered state" -msgstr "Sipariş kargolandı durumu" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" +msgstr "Ayarlarınıza bir model seçtiğiniz için teşekkürler" -#: inc/config.class.php:392 -msgid "Order paied state" -msgstr "Sipariş ödendi durumu" +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "Fatura adresi" -#: inc/config.class.php:402 -msgid "Canceled order state" -msgstr "Sipariş iptal edildi durumu" +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "Kargo adresi" -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" -msgstr "Tedarikçi kalitesi" +#: inc/order.class.php:1726 +msgid "The" +msgstr "Öge" -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" -msgstr "Not" +#: inc/order.class.php:1728 +msgid "Issuer order" +msgstr "Yayınlayıcı siparişi" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" -msgstr "Anket açıklaması" +#: inc/order.class.php:1746 +msgid "Recipient" +msgstr "Alıcı" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" -msgstr "İdari kalite takibi (sözleşme, fatura, posta gibi)" +#: inc/order.class.php:1749 +msgid "Designation" +msgstr "Tahsis" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" -msgstr "Ticari kalite takibi (ziyaret, iletişim, geri dönüş gibi)" +#: inc/order.class.php:1751 +msgid "Unit price" +msgstr "Birim fiyatı" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" -msgstr "Kişilere erişebilme" +#: inc/order.class.php:1753 +msgid "Discount rate" +msgstr "İndirim oranı" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" -msgstr "Tedarikçi iletişiminin kalitesi" +#: inc/order.class.php:1754 +msgid "Sum tax free" +msgstr "Vergi hariç toplam" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" -msgstr "Bildirilen gecikmelerin güvenirliği" +#: inc/order.class.php:1881 +msgid "€" +msgstr "€" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" -msgstr "Son tedarikçi notu" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" +msgstr "Yayınlanmış siparişin imzası" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" -msgstr "10 üzerinden ortalama değerlendirme ( X puan / 5)" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "İlişkili siparişler" -#: inc/documentcategory.class.php:39 -msgid "Document category" -msgstr "Belge kategorisi" +#: inc/order.class.php:1994 +msgid "Unlink" +msgstr "İlişkiyi sil" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" -msgstr "Belge kategorisi öneki" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." +msgstr "Bu bütçe ile ilişkilendirilmiş siparişler bütçeyi aşıyor." -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" -msgstr "Bu durumu silemezsiniz" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." +msgstr "Bu bütçe ile ilişkilendirilmiş siparişler bütçeye denk." -#: inc/orderstate.class.php:87 -msgid "Draft" -msgstr "Taslak" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "Sipariş doğrulaması isteği" -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" -msgstr "Onay bekleyen" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "Sipariş doğrulandı" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "Doğrulanmış" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "Gecikmiş siparişler" -#: inc/orderstate.class.php:90 -msgid "Being delivered" -msgstr "Kargolanıyor" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "Oluşturulacak bir öge yok" -#: inc/orderstate.class.php:91 -msgid "Delivered" -msgstr "Kargolanmış" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "Doğrulama açıklaması" -#: inc/orderstate.class.php:92 -msgid "Canceled" -msgstr "İptal edilmiş" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "Doğrulama iptal edildi" -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "Ödendi" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "Doğrulamayı düzenleyen" -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" -msgstr "Üreticinin ürün referansı" +#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +msgid "Order item" +msgstr "Öge siparişi" -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/order_item.class.php:115 inc/order_item.class.php:369 #: inc/order_item.class.php:476 inc/order_item.class.php:801 #: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Vergisiz birim fiyat" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" -msgstr "Ürün referansı" - -#: inc/reference_supplier.class.php:476 -msgid "List references" -msgstr "Referans listesi" - -#: inc/reception.class.php:53 -msgid "Delivery" -msgstr "Kargo" - -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "Kargolandı" - -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" -msgstr "Fatura" - -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" -msgstr "Kargolanacak bir öge yok" - -#: inc/reception.class.php:350 -msgid "Delivered items" -msgstr "Kargolanan ögeler" - -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" -msgstr "Ögeyi kargola" - -#: inc/reception.class.php:609 -msgid "Waiting for delivery" -msgstr "Kargo bekliyor" - -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" -msgstr "Kargolanacak sayıda öge yok" - -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" -msgstr "Kargolandı" - -#: inc/reception.class.php:784 -msgid "Item already taken delivery" -msgstr "Öge zaten kargolanmış" - -#: inc/reception.class.php:950 -msgid "Item delivered" -msgstr "Öge kargolandı" - -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" -msgstr "Fatura numarası zorunludur" - -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" -msgstr "Şu model kullanılsın" - -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" -msgstr "Şu imza kullanılsın" - -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 -msgid "Order item" -msgstr "Öge siparişi" - #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "Ürün adı" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "Üreticinin ürün referansı" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "İstatistik Doğası" @@ -585,6 +565,14 @@ msgstr "Bir siparişe ait olduğundan bazı alanlar değiştirilemez" msgid "Add to the order from the catalog" msgstr "Katalogdan siparişe ekle" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Ürün referansı" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "Lütfen bir tedarikçi seçin" @@ -601,6 +589,11 @@ msgstr "Referans ekle" msgid "An analytic nature is mandatory !" msgstr "Bir istatistik doğası zorunludur !" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "Kargolanacak bir öge yok" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -621,12 +614,6 @@ msgstr "Bu ayrıntıları silmek istediğinize emin misiniz ? Kargolanan ögeler msgid "Discounted price tax free" msgstr "Vergisiz indirimli fiyat" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "Fiyat ATI" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "Sipariş bilgileri" @@ -639,305 +626,315 @@ msgstr "Ödeme durumu" msgid "Paid value" msgstr "Ödenen değer" -#: inc/billstate.class.php:59 -msgid "Being paid" -msgstr "Ödeniyor" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Fatura" -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "Ödenmedi" +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "Referans listesi" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" -msgstr "Sipariş doğrulaması isteği" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "Adı olmayan bir referans oluşturulamaz" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" -msgstr "Sipariş doğrulandı" +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "Tipi olmayan bir referans oluşturulamaz" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" -msgstr "Gecikmiş siparişler" +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "Aynı adlı bir referans zaten var" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" -msgstr "Oluşturulacak bir öge yok" +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "Referanslar kulanılıyor" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" -msgstr "Doğrulama açıklaması" +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "Kopya" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" -msgstr "Doğrulama iptal edildi" +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "İstenen öge tipini seçin" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" -msgstr "Doğrulamayı düzenleyen" +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "Öge tipine göre görünüm" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "Referansı kopyala" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "Bu durumu silemezsiniz" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "Taslak" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "Onay bekleyen" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Doğrulanmış" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "Kargolanıyor" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Kargolanmış" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "İptal edilmiş" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Ödendi" #: inc/link.class.php:48 msgid "Generation" msgstr "Oluşturulma" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "Öge oluştur" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "Varolan bir öge ile ilişkilendir" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "Öge ilişkisini sil" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "Bir ayrıntı satırına birkaç öge bağlanamaz" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "Kargolanmayacak ögeler bağlanamaz" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "İlişkilendirilmiş bir öge yok" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "Öge siparişle ilişkilendirildi" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "Öge zaten başka bir öge ile ilişkilendirilmiş" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "Ögenin form siparişi ile ilişkisi silindi" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "Bir ya da birkaç seçilmiş satır ögeler ile ilişkilendirilmemiş" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "Öge sipariş kullanılarak oluşturuldu" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "Öge seçildi" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "Sipariş Oluşturma" - -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "Sipariş doğrulama" - -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "Siparişi iptal et" - -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "Doğrulanmış bir siparişi düzenle" - -#: inc/order.class.php:275 -msgid "Generate order without validation" -msgstr "Doğrulamasız sipariş oluştur" - -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "Posta" - -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" -msgstr "Sipariş gecikmiş" +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "Uygulama eki yapılandırması" -#: inc/order.class.php:584 -msgid "Account Section" -msgstr "Hesap Bölümü" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "Varsayılan KDV" -#: inc/order.class.php:636 -msgid "Validation" -msgstr "Doğrulama" +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "Doğrulama yapılsın" -#: inc/order.class.php:642 -msgid "Purchase order" -msgstr "Satınalma siparişi" +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "ODT üzerinde sipariş oluşturma" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" -msgstr "Sipariş numarası zorunludur !" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "Etkin tedarikçi memnuniyeti" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" -msgstr "Bir hesap bölümü zorunludur !" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "Sipariş tedarikçisinin bilgileri görüntülensin" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." -msgstr "Sipariş tarihi seçilmiş bütçe için belirtilen tarih aralığında olmalıdır." +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "Sipariş teslim tarihi geçen ögelerin görüntülenme rengi" -#: inc/order.class.php:1096 -msgid "Due date overtaken" -msgstr "Bitiş tarihi geçti" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" +msgstr "Yeni öge oluşturulduğundan sipariş belgeleri kopyalansın" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" -msgstr "Fiyat vergiden muaf" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "Bir belge bir siparişe eklendiğinde kullanılacak varsayılan üstbilgi" -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" -msgstr "Fiyat vergiden muaf ve kargo dahil" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "Etkin olmayan bütçeler gizlensin" -#: inc/order.class.php:1534 -msgid "Validation process" -msgstr "Doğrulama işlemi" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" +msgstr "Bütçe değişimini ilgili varlıklara aktar" -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" -msgstr "Bu siparişi iptal etmek istediğinize emin misiniz? Bu işlem geri alınamaz !" +#: inc/config.class.php:212 +msgid "Display account section on order form" +msgstr "Sipariş formunda hesap bölümü görüntülensin" -#: inc/order.class.php:1560 -msgid "Validate order" -msgstr "Siparişi doğrula" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" +msgstr "Sipariş formunda hesap bölümü zorunlu olsun" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" -msgstr "Sipariş onayını iptal etmek ister misiniz ?" +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "Özgür referansları kullan" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" -msgstr "Doğrulama iptali isteği" +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "Eklenen belgeleri sıraya göre yeniden adlandır" -#: inc/order.class.php:1574 -msgid "Ask for validation" -msgstr "Doğrulama isteği" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "Kargolandığından otomatik yapılacak işlemler" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" -msgstr "Siparişi düzenlemek istediğinize emin misiniz ?" +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "Öge formunda istatistik doğası görüntülensin" -#: inc/order.class.php:1582 -msgid "Edit order" -msgstr "Siparişi düzenle" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "Bu seçenek etkinleştirildiğinde, öge formunda istatistik doğası zorunlu olur" -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." -msgstr "Siparişinize en az bir aygıt eklediğiniz için teşekkürler." +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "Otomatik oluşturma kullanılsın" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" -msgstr "Ayarlarınıza bir model seçtiğiniz için teşekkürler" +#: inc/config.class.php:269 +msgid "Asked" +msgstr "Soruldu" -#: inc/order.class.php:1681 -msgid "Invoice address" -msgstr "Fatura adresi" +#: inc/config.class.php:275 +msgid "Default state" +msgstr "Varsayılan durum" -#: inc/order.class.php:1716 -msgid "Delivery address" -msgstr "Kargo adresi" +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "Ögeye sipariş konumu ekle" -#: inc/order.class.php:1726 -msgid "The" -msgstr "Öge" +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "Ögeye faturalama bilgileri ekle" -#: inc/order.class.php:1728 -msgid "Issuer order" -msgstr "Yayınlayıcı siparişi" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "Varsayılan ad" -#: inc/order.class.php:1746 -msgid "Recipient" -msgstr "Alıcı" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "Varsayılan seri numarası" -#: inc/order.class.php:1749 -msgid "Designation" -msgstr "Tahsis" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "Varsayılan stok numarası" -#: inc/order.class.php:1751 -msgid "Unit price" -msgstr "Birim fiyatı" +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "Sipariş ömrü" -#: inc/order.class.php:1753 -msgid "Discount rate" -msgstr "İndirim oranı" +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "Doğrulama öncesi durum" -#: inc/order.class.php:1754 -msgid "Sum tax free" -msgstr "Vergi hariç toplam" +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "Doğrulama bekleniyor durumu" -#: inc/order.class.php:1881 -msgid "€" -msgstr "€" +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "Doğrulanmış sipariş durumu" -#: inc/order.class.php:1882 -msgid "Signature of issuing order" -msgstr "Yayınlanmış siparişin imzası" +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "Sipariş kargolanıyor durumu" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" -msgstr "İlişkili siparişler" +#: inc/config.class.php:382 +msgid "Order delivered state" +msgstr "Sipariş kargolandı durumu" -#: inc/order.class.php:1994 -msgid "Unlink" -msgstr "İlişkiyi sil" +#: inc/config.class.php:392 +msgid "Order paied state" +msgstr "Sipariş ödendi durumu" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." -msgstr "Bu bütçe ile ilişkilendirilmiş siparişler bütçeyi aşıyor." +#: inc/config.class.php:402 +msgid "Canceled order state" +msgstr "Sipariş iptal edildi durumu" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." -msgstr "Bu bütçe ile ilişkilendirilmiş siparişler bütçeye denk." +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "Fatura numarası zorunludur" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" -msgstr "Kargo istatistikleri" +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "Kargo" -#: inc/order_supplier.class.php:309 -msgid "No specified status" -msgstr "Bir durum belirtilmemiş" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "Kargolandı" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" -msgstr "Adı olmayan bir referans oluşturulamaz" +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "Kargolanan ögeler" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" -msgstr "Tipi olmayan bir referans oluşturulamaz" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "Kargo bekliyor" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" -msgstr "Aynı adlı bir referans zaten var" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "Kargolanacak sayıda öge yok" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" -msgstr "Referanslar kulanılıyor" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "Kargolandı" -#: inc/reference.class.php:838 -msgid "Copy of" -msgstr "Kopya" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "Öge zaten kargolanmış" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" -msgstr "İstenen öge tipini seçin" +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "Öge kargolandı" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" -msgstr "Öge tipine göre görünüm" +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "Ödeniyor" -#: inc/reference.class.php:993 -msgid "Copy reference" -msgstr "Referansı kopyala" +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "Ödenmedi" diff --git a/locales/zh_CN.mo b/locales/zh_CN.mo index 7be3bc77dd..ee42deade6 100644 Binary files a/locales/zh_CN.mo and b/locales/zh_CN.mo differ diff --git a/locales/zh_CN.po b/locales/zh_CN.po index 315792429c..4d4b42155d 100644 --- a/locales/zh_CN.po +++ b/locales/zh_CN.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-07 09:32+0000\n" +"POT-Creation-Date: 2020-07-05 10:06+0000\n" "PO-Revision-Date: 2018-12-17 15:03+0000\n" "Last-Translator: Cédric Anne\n" "Language-Team: Chinese (China) (http://www.transifex.com/teclib/glpi-plugin-order/language/zh_CN/)\n" @@ -18,42 +18,114 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" -msgstr "orderdelivery_report_title" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "" -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:75 -#: report/deliveryinfos/deliveryinfos.php:48 -#: inc/notificationtargetorder.class.php:102 -#: inc/notificationtargetorder.class.php:153 -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:307 -#: inc/order.class.php:854 -msgid "Date of order" -msgstr "订单日期" +#: hook.php:88 +msgid "Can't create folder" +msgstr "" -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:79 -#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:331 -#: inc/order.class.php:952 -msgid "Delivery location" -msgstr "交货地点" +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 +#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 +#: inc/order_item.class.php:370 inc/order_item.class.php:477 +#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 +#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 +#: inc/order.class.php:1966 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "" + +#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 +#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +msgid "Account section" +msgstr "" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "订单" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:843 inc/order_item.class.php:1296 +msgid "Order name" +msgstr "订单名称" -#: report/orderdelivery/orderdelivery.php:68 hook.php:251 +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 #: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 msgid "Order number" msgstr "订单号码" -#: report/orderdelivery/orderdelivery.php:76 -#: inc/notificationtargetorder.class.php:162 inc/order.class.php:434 -#: inc/order.class.php:1080 -msgid "Estimated due date" -msgstr "预计交期" +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:749 inc/order_item.class.php:1364 +#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "订单" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" msgstr "deliveryinfos_report_title" +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "订单日期" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:952 +msgid "Delivery location" +msgstr "交货地点" + #: report/deliveryinfos/deliveryinfos.php:64 msgid "Orders total" msgstr "订单总计" @@ -62,6 +134,15 @@ msgstr "订单总计" msgid "Late orders total" msgstr "" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "orderdelivery_report_title" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "预计交期" + #: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 #: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 msgid "Quote number" @@ -71,44 +152,20 @@ msgstr "" msgid "Delete" msgstr "删除" -#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:154 -#: inc/reference_supplier.class.php:264 inc/order_supplier.class.php:46 +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 #: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 -#: inc/order_supplier.class.php:415 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 msgid "Supplier Detail" msgstr "供应商明细" -#: front/order_supplier.form.php:80 front/order_item.form.php:39 -#: front/reception.form.php:96 front/menu.php:33 front/menu.php:57 -#: front/surveysupplier.form.php:69 inc/config.class.php:76 -#: inc/order_item.class.php:108 inc/order.class.php:287 setup.php:195 +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 msgid "Orders management" msgstr "订单管理" -#: front/order.php:33 front/config.form.php:41 front/menu.php:63 -#: front/order.form.php:417 front/preference.form.php:43 hook.php:151 -#: inc/profile.class.php:103 inc/profile.class.php:145 -#: inc/profile.class.php:170 inc/menu.class.php:7 -#: inc/documentcategory.class.php:47 inc/bill.class.php:594 -#: inc/preference.class.php:269 inc/order_item.class.php:1965 -#: inc/order_item.class.php:1967 inc/order.class.php:77 -#: inc/order.class.php:627 inc/order_supplier.class.php:410 -msgid "Orders" -msgstr "订单" - -#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 -#: inc/reference_supplier.class.php:83 -msgid "Supplier for the reference" -msgstr "" - -#: front/menu.php:70 inc/profile.class.php:174 -msgid "Products references" -msgstr "" - -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 -msgid "Bills" -msgstr "" - #: front/order.form.php:94 inc/notificationtargetorder.class.php:120 msgid "Order is validated" msgstr "" @@ -139,9 +196,9 @@ msgid "Add reference" msgstr "" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order_item.class.php:368 inc/order_item.class.php:475 -#: inc/order_item.class.php:791 inc/link.class.php:417 -#: inc/order.class.php:1748 +#: inc/order.class.php:1748 inc/order_item.class.php:368 +#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/link.class.php:418 msgid "Quantity" msgstr "" @@ -162,417 +219,340 @@ msgstr "" msgid "No item selected" msgstr "" -#: ajax/referencedetail.php:64 inc/config.class.php:112 -#: inc/order_item.class.php:439 inc/order_item.class.php:518 -#: inc/order.class.php:1063 -msgid "No VAT" +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" msgstr "" -#: hook.php:46 -msgid "Plugin installation or upgrade" +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" msgstr "" -#: hook.php:88 -msgid "Can't create folder" +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +msgid "Bills" msgstr "" -#: hook.php:96 -#, php-format -msgid "Cannot copy file %1$s to %2$s" +#: inc/preference.class.php:163 inc/order.class.php:1611 +msgid "Use this model" msgstr "" -#: hook.php:141 inc/ordertax.class.php:41 inc/order_item.class.php:370 -#: inc/order_item.class.php:477 inc/order_item.class.php:1024 -#: inc/order_item.class.php:1391 inc/order.class.php:319 -#: inc/order.class.php:1052 inc/order.class.php:1310 inc/order.class.php:1752 -#: inc/order.class.php:1877 -msgid "VAT" +#: inc/preference.class.php:168 inc/order.class.php:1620 +msgid "Use this sign" msgstr "" -#: hook.php:142 inc/orderpayment.class.php:40 inc/order.class.php:369 -#: inc/order.class.php:966 inc/order.class.php:1883 -msgid "Payment conditions" +#: inc/referencefree.class.php:39 +msgid "Reference free" msgstr "" -#: hook.php:144 inc/orderstate.class.php:49 inc/order.class.php:343 -#: inc/order.class.php:900 inc/order.class.php:1966 -msgid "Order status" +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" msgstr "" -#: hook.php:145 inc/othertype.class.php:40 -msgid "Other type of item" +#: inc/order_supplier.class.php:309 +msgid "No specified status" msgstr "" -#: hook.php:146 inc/deliverystate.class.php:38 inc/reception.class.php:235 -#: inc/reception.class.php:427 inc/reception.class.php:556 -#: inc/order_item.class.php:187 -msgid "Delivery status" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" msgstr "" -#: hook.php:147 inc/bill.class.php:410 inc/order_item.class.php:1604 -#: inc/billstate.class.php:42 -msgid "Bill status" +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" msgstr "" -#: hook.php:148 inc/billtype.class.php:40 -msgid "Bill type" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" msgstr "" -#: hook.php:149 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 -msgid "Analytic nature" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" msgstr "" -#: hook.php:150 inc/accountsection.class.php:65 inc/order.class.php:1111 -msgid "Account section" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" msgstr "" -#: hook.php:243 inc/surveysupplier.class.php:183 inc/order_item.class.php:1296 -#: inc/order.class.php:409 inc/order.class.php:843 -msgid "Order name" -msgstr "订单名称" - -#: hook.php:401 inc/surveysupplier.class.php:370 inc/reception.class.php:290 -#: inc/bill.class.php:101 inc/bill.class.php:197 inc/order_item.class.php:749 -#: inc/order_item.class.php:1364 inc/order_item.class.php:1973 -#: inc/order.class.php:77 inc/order_supplier.class.php:201 -msgid "Order" -msgstr "订单" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "" -#: inc/referencefree.class.php:39 -msgid "Reference free" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" msgstr "" -#: inc/config.class.php:103 -msgid "Plugin configuration" -msgstr "插件配置" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "" -#: inc/config.class.php:106 -msgid "Default VAT" -msgstr "默认 VAT" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "" -#: inc/config.class.php:118 -msgid "Use validation process" +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" msgstr "" -#: inc/config.class.php:125 -msgid "Order generation in ODT" -msgstr "订单生成为ODT" +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "" -#: inc/config.class.php:131 -msgid "Activate suppliers quality satisfaction" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" msgstr "" -#: inc/config.class.php:138 -msgid "Display order's suppliers informations" +#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +msgid "Order Generation" msgstr "" -#: inc/config.class.php:144 -msgid "Color to be displayed when order due date is overtaken" +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" msgstr "" -#: inc/config.class.php:152 -msgid "Copy order documents when a new item is created" +#: inc/order.class.php:272 +msgid "Order validation" msgstr "" -#: inc/config.class.php:159 -msgid "Default heading when adding a document to an order" +#: inc/order.class.php:273 inc/order.class.php:1554 +msgid "Cancel order" msgstr "" -#: inc/config.class.php:166 inc/notificationtargetorder.class.php:467 -#: inc/notificationtargetorder.class.php:470 inc/order.class.php:524 -#: inc/order.class.php:1200 -msgid "Author group" +#: inc/order.class.php:274 +msgid "Edit a validated order" msgstr "" -#: inc/config.class.php:176 inc/notificationtargetorder.class.php:469 -#: inc/notificationtargetorder.class.php:471 inc/order.class.php:534 -#: inc/order.class.php:1250 -msgid "Recipient group" +#: inc/order.class.php:275 +msgid "Generate order without validation" msgstr "" -#: inc/config.class.php:198 -msgid "Hide inactive budgets" +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 +#: inc/order.class.php:1052 inc/order.class.php:1874 +msgid "Postage" msgstr "" -#: inc/config.class.php:205 -msgid "Transmit budget change to linked assets" +#: inc/order.class.php:458 inc/order.class.php:2188 +msgid "Order is late" msgstr "" -#: inc/config.class.php:212 -msgid "Display account section on order form" +#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 +msgid "Author group" msgstr "" -#: inc/config.class.php:219 -msgid "Set account section as mandatory on order form" +#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 +msgid "Recipient group" msgstr "" -#: inc/config.class.php:226 -msgid "Use free references" +#: inc/order.class.php:584 +msgid "Account Section" msgstr "" -#: inc/config.class.php:233 -msgid "Rename documents added in order" +#: inc/order.class.php:636 +msgid "Validation" msgstr "" -#: inc/config.class.php:241 -msgid "Automatic actions when delivery" +#: inc/order.class.php:642 +msgid "Purchase order" msgstr "" -#: inc/config.class.php:250 -msgid "Display analytic nature on item form" +#: inc/order.class.php:684 +msgid "An order number is mandatory !" msgstr "" -#: inc/config.class.php:257 -msgid "Set analytic nature as mandatory on item form" +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" msgstr "" -#: inc/config.class.php:264 inc/reception.class.php:561 -msgid "Enable automatic generation" +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." msgstr "" -#: inc/config.class.php:269 -msgid "Asked" +#: inc/order.class.php:1063 inc/order_item.class.php:439 +#: inc/order_item.class.php:518 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" msgstr "" -#: inc/config.class.php:275 -msgid "Default state" +#: inc/order.class.php:1096 +msgid "Due date overtaken" msgstr "" -#: inc/config.class.php:286 -msgid "Add order location to item" +#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +msgid "Price tax free" msgstr "" -#: inc/config.class.php:293 -msgid "Add billing details to item" +#: inc/order.class.php:1296 inc/order.class.php:1872 +msgid "Price tax free with postage" msgstr "" -#: inc/config.class.php:300 inc/config.class.php:779 -#: inc/reception.class.php:567 -msgid "Default name" -msgstr "" - -#: inc/config.class.php:307 inc/config.class.php:787 -#: inc/reception.class.php:570 -msgid "Default serial number" -msgstr "" - -#: inc/config.class.php:314 inc/config.class.php:795 -#: inc/reception.class.php:573 -msgid "Default inventory number" -msgstr "" - -#: inc/config.class.php:338 -msgid "Order lifecycle" -msgstr "订单生命周期" - -#: inc/config.class.php:342 -msgid "State before validation" -msgstr "" - -#: inc/config.class.php:352 -msgid "Waiting for validation state" -msgstr "" - -#: inc/config.class.php:362 -msgid "Validated order state" -msgstr "" - -#: inc/config.class.php:372 -msgid "Order being delivered state" -msgstr "" - -#: inc/config.class.php:382 -msgid "Order delivered state" -msgstr "" - -#: inc/config.class.php:392 -msgid "Order paied state" -msgstr "" - -#: inc/config.class.php:402 -msgid "Canceled order state" -msgstr "" - -#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 -msgid "Supplier quality" -msgstr "" - -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 -msgid "Note" -msgstr "" - -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 -msgid "Comment on survey" -msgstr "" +#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 +#: inc/order.class.php:1969 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1416 +msgid "Price ATI" +msgstr "价格 ATI" -#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" +#: inc/order.class.php:1534 +msgid "Validation process" msgstr "" -#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 -msgid "Commercial followup quality, visits, responseness" +#: inc/order.class.php:1553 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" msgstr "" -#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 -msgid "Contacts availability" +#: inc/order.class.php:1560 +msgid "Validate order" msgstr "" -#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 -msgid "Quality of supplier intervention" +#: inc/order.class.php:1566 +msgid "Do you want to cancel the validation approval ?" msgstr "" -#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 -msgid "Reliability about annouced delays" +#: inc/order.class.php:1568 +msgid "Cancel ask for validation" msgstr "" -#: inc/surveysupplier.class.php:257 -msgid "Final supplier note" +#: inc/order.class.php:1574 +msgid "Ask for validation" msgstr "" -#: inc/surveysupplier.class.php:348 -msgid "Average mark up to 10 (X points / 5)" +#: inc/order.class.php:1580 +msgid "Do you really want to edit the order ?" msgstr "" -#: inc/documentcategory.class.php:39 -msgid "Document category" -msgstr "" +#: inc/order.class.php:1582 +msgid "Edit order" +msgstr "编辑订单" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" +#: inc/order.class.php:1590 +msgid "Thanks to add at least one equipment on your order." msgstr "" -#: inc/orderstate.class.php:55 inc/billstate.class.php:48 -msgid "You cannot remove this status" +#: inc/order.class.php:1639 +msgid "Thanks to select a model into your preferences" msgstr "" -#: inc/orderstate.class.php:87 -msgid "Draft" -msgstr "草稿" - -#: inc/orderstate.class.php:88 -msgid "Waiting for approval" -msgstr "" +#: inc/order.class.php:1681 +msgid "Invoice address" +msgstr "发票地址" -#: inc/orderstate.class.php:89 -msgid "Validated" -msgstr "" +#: inc/order.class.php:1716 +msgid "Delivery address" +msgstr "交货地址" -#: inc/orderstate.class.php:90 -msgid "Being delivered" +#: inc/order.class.php:1726 +msgid "The" msgstr "" -#: inc/orderstate.class.php:91 -msgid "Delivered" +#: inc/order.class.php:1728 +msgid "Issuer order" msgstr "" -#: inc/orderstate.class.php:92 -msgid "Canceled" -msgstr "取消" - -#: inc/orderstate.class.php:93 inc/billstate.class.php:60 -#: inc/billstate.class.php:91 -msgid "Paid" -msgstr "支付" - -#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 -#: inc/order_item.class.php:168 inc/order_item.class.php:482 -#: inc/reference.class.php:195 -msgid "Manufacturer's product reference" +#: inc/order.class.php:1746 +msgid "Recipient" msgstr "" -#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 -#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 -#: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 -#: inc/reference.class.php:183 -msgid "Unit price tax free" +#: inc/order.class.php:1749 +msgid "Designation" msgstr "" -#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 -#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 -#: inc/reception.class.php:349 inc/bill.class.php:379 -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 -#: inc/link.class.php:78 inc/link.class.php:380 inc/reference.class.php:44 -#: inc/reference.class.php:61 -msgid "Product reference" +#: inc/order.class.php:1751 +msgid "Unit price" msgstr "" -#: inc/reference_supplier.class.php:476 -msgid "List references" +#: inc/order.class.php:1753 +msgid "Discount rate" msgstr "" -#: inc/reception.class.php:53 -msgid "Delivery" +#: inc/order.class.php:1754 +msgid "Sum tax free" msgstr "" -#: inc/reception.class.php:201 inc/reception.class.php:612 -msgid "Taken delivery" -msgstr "" +#: inc/order.class.php:1881 +msgid "€" +msgstr "€" -#: inc/reception.class.php:248 inc/bill.class.php:47 inc/bill.class.php:135 -#: inc/bill.class.php:409 inc/order_item.class.php:1603 -#: inc/order_item.class.php:1691 -msgid "Bill" +#: inc/order.class.php:1882 +msgid "Signature of issuing order" msgstr "" -#: inc/reception.class.php:319 inc/bill.class.php:363 -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 -#: inc/link.class.php:316 -msgid "No item to take delivery of" +#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" msgstr "" -#: inc/reception.class.php:350 -msgid "Delivered items" +#: inc/order.class.php:1994 +msgid "Unlink" msgstr "" -#: inc/reception.class.php:517 inc/reception.class.php:586 -#: inc/order.class.php:271 -msgid "Take item delivery" +#: inc/order.class.php:2134 +msgid "Total orders related with this budget is greater than its value." msgstr "" -#: inc/reception.class.php:609 -msgid "Waiting for delivery" +#: inc/order.class.php:2139 +msgid "Total orders related with this budget is equal to its value." msgstr "" -#: inc/reception.class.php:633 -msgid "Not enough items to deliver" +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" msgstr "" -#: inc/reception.class.php:685 inc/reception.class.php:713 -msgid "Item successfully taken delivery" +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" msgstr "" -#: inc/reception.class.php:784 -msgid "Item already taken delivery" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" msgstr "" -#: inc/reception.class.php:950 -msgid "Item delivered" +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" msgstr "" -#: inc/bill.class.php:59 -msgid "A bill number is mandatory" +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" msgstr "" -#: inc/preference.class.php:163 inc/order.class.php:1611 -msgid "Use this model" +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" msgstr "" -#: inc/preference.class.php:168 inc/order.class.php:1620 -msgid "Use this sign" +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" msgstr "" #: inc/order_item.class.php:99 inc/order_item.class.php:1971 msgid "Order item" msgstr "" +#: inc/order_item.class.php:115 inc/order_item.class.php:369 +#: inc/order_item.class.php:476 inc/order_item.class.php:801 +#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 +#: inc/reference.class.php:183 +msgid "Unit price tax free" +msgstr "" + #: inc/order_item.class.php:160 inc/order_item.class.php:470 msgid "Product name" msgstr "产品名称" +#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "" + #: inc/order_item.class.php:195 msgid "Analytic Nature" msgstr "" @@ -585,6 +565,14 @@ msgstr "" msgid "Add to the order from the catalog" msgstr "" +#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "" + #: inc/order_item.class.php:452 inc/order_item.class.php:587 msgid "Please select a supplier" msgstr "" @@ -601,6 +589,11 @@ msgstr "" msgid "An analytic nature is mandatory !" msgstr "" +#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "" + #: inc/order_item.class.php:800 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" @@ -621,12 +614,6 @@ msgstr "" msgid "Discounted price tax free" msgstr "" -#: inc/order_item.class.php:1027 inc/order_item.class.php:1416 -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 -msgid "Price ATI" -msgstr "价格 ATI" - #: inc/order_item.class.php:1295 msgid "Order informations" msgstr "" @@ -639,305 +626,315 @@ msgstr "" msgid "Paid value" msgstr "" -#: inc/billstate.class.php:59 -msgid "Being paid" +#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" msgstr "" -#: inc/billstate.class.php:92 -msgid "Not paid" +#: inc/reference_supplier.class.php:476 +msgid "List references" msgstr "" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:116 -msgid "Request order validation" +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "" + +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "" + +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "" + +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "" + +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "" + +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "" + +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" msgstr "" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" +#: inc/reference.class.php:991 +msgid "Copy reference" msgstr "" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:187 -msgid "Late orders" +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" msgstr "" -#: inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:132 inc/link.class.php:222 -msgid "No item to generate" +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "草稿" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" msgstr "" -#: inc/notificationtargetorder.class.php:109 -#: inc/notificationtargetorder.class.php:155 -msgid "Comment of validation" +#: inc/orderstate.class.php:89 +msgid "Validated" msgstr "" -#: inc/notificationtargetorder.class.php:128 -msgid "Validation canceled successfully" +#: inc/orderstate.class.php:90 +msgid "Being delivered" msgstr "" -#: inc/notificationtargetorder.class.php:156 -msgid "Editor of validation" +#: inc/orderstate.class.php:91 +msgid "Delivered" msgstr "" +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "取消" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "支付" + #: inc/link.class.php:48 msgid "Generation" msgstr "" -#: inc/link.class.php:75 inc/link.class.php:509 +#: inc/link.class.php:75 inc/link.class.php:510 msgid "Generate item" msgstr "" -#: inc/link.class.php:510 +#: inc/link.class.php:511 msgid "Link to an existing item" msgstr "" -#: inc/link.class.php:511 +#: inc/link.class.php:512 msgid "Delete item link" msgstr "" -#: inc/link.class.php:587 +#: inc/link.class.php:588 msgid "Cannot link several items to one detail line" msgstr "" -#: inc/link.class.php:598 +#: inc/link.class.php:599 msgid "Cannot link items not delivered" msgstr "" -#: inc/link.class.php:712 +#: inc/link.class.php:713 msgid "No associated item" msgstr "" -#: inc/link.class.php:952 inc/link.class.php:1022 inc/link.class.php:1030 -#: inc/link.class.php:1034 +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 msgid "Item linked to order" msgstr "" -#: inc/link.class.php:1036 +#: inc/link.class.php:1037 msgid "Item already linked to another one" msgstr "" -#: inc/link.class.php:1073 inc/link.class.php:1078 inc/link.class.php:1099 -#: inc/link.class.php:1104 +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 msgid "Item unlink form order" msgstr "" -#: inc/link.class.php:1096 +#: inc/link.class.php:1097 msgid "One or several selected rows haven't linked items" msgstr "" -#: inc/link.class.php:1276 inc/link.class.php:1280 +#: inc/link.class.php:1277 inc/link.class.php:1281 msgid "Item generated by using order" msgstr "" -#: inc/link.class.php:1287 +#: inc/link.class.php:1288 msgid "Item successfully selected" msgstr "" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 -msgid "Order Generation" -msgstr "" - -#: inc/order.class.php:272 -msgid "Order validation" -msgstr "" - -#: inc/order.class.php:273 inc/order.class.php:1554 -msgid "Cancel order" -msgstr "" +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "插件配置" -#: inc/order.class.php:274 -msgid "Edit a validated order" -msgstr "" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "默认 VAT" -#: inc/order.class.php:275 -msgid "Generate order without validation" +#: inc/config.class.php:118 +msgid "Use validation process" msgstr "" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 -msgid "Postage" -msgstr "" +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "订单生成为ODT" -#: inc/order.class.php:458 inc/order.class.php:2188 -msgid "Order is late" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" msgstr "" -#: inc/order.class.php:584 -msgid "Account Section" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" msgstr "" -#: inc/order.class.php:636 -msgid "Validation" +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" msgstr "" -#: inc/order.class.php:642 -msgid "Purchase order" +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" msgstr "" -#: inc/order.class.php:684 -msgid "An order number is mandatory !" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" msgstr "" -#: inc/order.class.php:693 inc/order.class.php:769 -msgid "An account section is mandatory !" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" msgstr "" -#: inc/order.class.php:700 inc/order.class.php:763 -msgid "" -"The order date must be within the dates entered for the selected budget." +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" msgstr "" -#: inc/order.class.php:1096 -msgid "Due date overtaken" +#: inc/config.class.php:212 +msgid "Display account section on order form" msgstr "" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 -msgid "Price tax free" +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" msgstr "" -#: inc/order.class.php:1296 inc/order.class.php:1872 -msgid "Price tax free with postage" +#: inc/config.class.php:226 +msgid "Use free references" msgstr "" -#: inc/order.class.php:1534 -msgid "Validation process" +#: inc/config.class.php:233 +msgid "Rename documents added in order" msgstr "" -#: inc/order.class.php:1553 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" msgstr "" -#: inc/order.class.php:1560 -msgid "Validate order" +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" msgstr "" -#: inc/order.class.php:1566 -msgid "Do you want to cancel the validation approval ?" +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" msgstr "" -#: inc/order.class.php:1568 -msgid "Cancel ask for validation" +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" msgstr "" -#: inc/order.class.php:1574 -msgid "Ask for validation" +#: inc/config.class.php:269 +msgid "Asked" msgstr "" -#: inc/order.class.php:1580 -msgid "Do you really want to edit the order ?" +#: inc/config.class.php:275 +msgid "Default state" msgstr "" -#: inc/order.class.php:1582 -msgid "Edit order" -msgstr "编辑订单" - -#: inc/order.class.php:1590 -msgid "Thanks to add at least one equipment on your order." +#: inc/config.class.php:286 +msgid "Add order location to item" msgstr "" -#: inc/order.class.php:1639 -msgid "Thanks to select a model into your preferences" +#: inc/config.class.php:293 +msgid "Add billing details to item" msgstr "" -#: inc/order.class.php:1681 -msgid "Invoice address" -msgstr "发票地址" - -#: inc/order.class.php:1716 -msgid "Delivery address" -msgstr "交货地址" - -#: inc/order.class.php:1726 -msgid "The" +#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/reception.class.php:567 +msgid "Default name" msgstr "" -#: inc/order.class.php:1728 -msgid "Issuer order" +#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/reception.class.php:570 +msgid "Default serial number" msgstr "" -#: inc/order.class.php:1746 -msgid "Recipient" +#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/reception.class.php:573 +msgid "Default inventory number" msgstr "" -#: inc/order.class.php:1749 -msgid "Designation" -msgstr "" +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "订单生命周期" -#: inc/order.class.php:1751 -msgid "Unit price" +#: inc/config.class.php:342 +msgid "State before validation" msgstr "" -#: inc/order.class.php:1753 -msgid "Discount rate" +#: inc/config.class.php:352 +msgid "Waiting for validation state" msgstr "" -#: inc/order.class.php:1754 -msgid "Sum tax free" +#: inc/config.class.php:362 +msgid "Validated order state" msgstr "" -#: inc/order.class.php:1881 -msgid "€" -msgstr "€" - -#: inc/order.class.php:1882 -msgid "Signature of issuing order" +#: inc/config.class.php:372 +msgid "Order being delivered state" msgstr "" -#: inc/order.class.php:1960 inc/reference.class.php:373 -#: inc/reference.class.php:758 -msgid "Linked orders" +#: inc/config.class.php:382 +msgid "Order delivered state" msgstr "" -#: inc/order.class.php:1994 -msgid "Unlink" +#: inc/config.class.php:392 +msgid "Order paied state" msgstr "" -#: inc/order.class.php:2134 -msgid "Total orders related with this budget is greater than its value." +#: inc/config.class.php:402 +msgid "Canceled order state" msgstr "" -#: inc/order.class.php:2139 -msgid "Total orders related with this budget is equal to its value." +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" msgstr "" -#: inc/order_supplier.class.php:293 -msgid "Delivery statistics" +#: inc/reception.class.php:53 +msgid "Delivery" msgstr "" -#: inc/order_supplier.class.php:309 -msgid "No specified status" +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" msgstr "" -#: inc/reference.class.php:302 -msgid "Cannot create reference without a name" +#: inc/reception.class.php:350 +msgid "Delivered items" msgstr "" -#: inc/reference.class.php:307 -msgid "Cannot create reference without a type" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" msgstr "" -#: inc/reference.class.php:315 -msgid "A reference with the same name still exists" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" msgstr "" -#: inc/reference.class.php:327 -msgid "Reference(s) in use" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" msgstr "" -#: inc/reference.class.php:838 -msgid "Copy of" +#: inc/reception.class.php:784 +msgid "Item already taken delivery" msgstr "" -#: inc/reference.class.php:864 -msgid "Select the wanted item type" +#: inc/reception.class.php:950 +msgid "Item delivered" msgstr "" -#: inc/reference.class.php:917 inc/reference.class.php:918 -#: inc/reference.class.php:936 -msgid "View by item type" +#: inc/billstate.class.php:59 +msgid "Being paid" msgstr "" -#: inc/reference.class.php:993 -msgid "Copy reference" +#: inc/billstate.class.php:92 +msgid "Not paid" msgstr "" diff --git a/plugin.xml b/plugin.xml index 48ae2fc511..ae4719bc5b 100644 --- a/plugin.xml +++ b/plugin.xml @@ -30,14 +30,9 @@ - 2.6.0-rc2 + 2.6.0 ~9.5.0 - https://github.com/pluginsGLPI/order/releases/download/2.6.0-rc2/glpi-order-2.6.0-rc2.tar.bz2 - - - 2.6.0-rc1 - ~9.5.0 - https://github.com/pluginsGLPI/order/releases/download/2.6.0-rc1/glpi-order-2.6.0-rc1.tar.bz2 + https://github.com/pluginsGLPI/order/releases/download/2.6.0/glpi-order-2.6.0.tar.bz2 2.5.3 diff --git a/setup.php b/setup.php index a9f55d6a56..06c2f78f89 100644 --- a/setup.php +++ b/setup.php @@ -34,12 +34,16 @@ @since 2009 ---------------------------------------------------------------------- */ -define('PLUGIN_ORDER_VERSION', '2.5.3'); +define('PLUGIN_ORDER_VERSION', '2.6.0'); // Minimal GLPI version, inclusive -define("PLUGIN_ORDER_MIN_GLPI", "9.4"); +define("PLUGIN_ORDER_MIN_GLPI", "9.5"); // Maximum GLPI version, exclusive -define("PLUGIN_ORDER_MAX_GLPI", "9.5"); +define("PLUGIN_ORDER_MAX_GLPI", "9.6"); + +if (!defined('PLUGIN_ORDER_DIR')) { + define("PLUGIN_ORDER_DIR", Plugin::getPhpDir('order')); +} if (!defined('PLUGIN_ORDER_TEMPLATE_DIR')) { define("PLUGIN_ORDER_TEMPLATE_DIR", GLPI_PLUGIN_DOC_DIR."/order/templates/"); @@ -69,7 +73,7 @@ if (!defined('PCLZIP_TEMPORARY_DIR')) { define('PCLZIP_TEMPORARY_DIR', GLPI_DOC_DIR . '/_tmp/pclzip'); } -include_once GLPI_ROOT . "/plugins/order/vendor/autoload.php"; +include_once PLUGIN_ORDER_DIR . "/vendor/autoload.php"; /** @@ -127,7 +131,7 @@ function plugin_init_order() { 'Document' => ['PluginOrderOrder', 'addDocumentCategory'] ]; - include_once(GLPI_ROOT . "/plugins/order/inc/order_item.class.php"); + include_once(PLUGIN_ORDER_DIR . "/inc/order_item.class.php"); foreach (PluginOrderOrder_Item::getClasses(true) as $type) { $PLUGIN_HOOKS['item_purge']['order'][$type] = 'plugin_item_purge_order'; } @@ -215,25 +219,6 @@ function plugin_version_order() { * @return boolean */ function plugin_order_check_prerequisites() { - - //Version check is not done by core in GLPI < 9.2 but has to be delegated to core in GLPI >= 9.2. - if (!method_exists('Plugin', 'checkGlpiVersion')) { - $version = preg_replace('/^((\d+\.?)+).*$/', '$1', GLPI_VERSION); - $matchMinGlpiReq = version_compare($version, PLUGIN_ORDER_MIN_GLPI, '>='); - $matchMaxGlpiReq = version_compare($version, PLUGIN_ORDER_MAX_GLPI, '<'); - - if (!$matchMinGlpiReq || !$matchMaxGlpiReq) { - echo vsprintf( - 'This plugin requires GLPI >= %1$s and < %2$s.', - [ - PLUGIN_ORDER_MIN_GLPI, - PLUGIN_ORDER_MAX_GLPI, - ] - ); - return false; - } - } - if (!is_readable(__DIR__ . '/vendor/autoload.php') || !is_file(__DIR__ . '/vendor/autoload.php')) { echo "Run composer install --no-dev in the plugin directory
"; return false; @@ -241,15 +226,3 @@ function plugin_order_check_prerequisites() { return true; } - - -/** - * Check configuration process - * - * @param boolean $verbose Whether to display message on failure. Defaults to false - * - * @return boolean - */ -function plugin_order_check_config() { - return true; -}
"; @@ -1692,7 +1692,7 @@ public function dropdownBillItemsActions($orders_id) { $rand = Dropdown::showFromArray('chooseAction', $action); Ajax::updateItemOnSelectEvent("dropdown_chooseAction$rand", "show_billsActions$rand", - $CFG_GLPI["root_doc"]."/plugins/order/ajax/billactions.php", + Plugin::getWebDir('order')."/ajax/billactions.php", [ 'action' => '__VALUE__', 'plugin_order_orders_id' => $orders_id @@ -1715,7 +1715,7 @@ public function updateQuantity($post) { $post['old_plugin_order_references_id'], $post['old_price_taxfree'], $post['old_discount']); - $item = $DB->fetch_array($data); + $item = $DB->fetchArray($data); $this->getFromDB($item['id']); $to_add = $post['quantity'] - $quantity; diff --git a/inc/order_supplier.class.php b/inc/order_supplier.class.php index 8047d04baf..5c28d03c92 100644 --- a/inc/order_supplier.class.php +++ b/inc/order_supplier.class.php @@ -127,7 +127,7 @@ public function getFromDBByOrder($plugin_order_orders_id) { if (!$DB->numrows($result)) { return false; } - $this->fields = $DB->fetch_assoc($result); + $this->fields = $DB->fetchAssoc($result); if (is_array($this->fields) && count($this->fields)) { return true; } else { @@ -223,7 +223,7 @@ public static function showOrderSupplierInfos($ID) { echo "".__("Order number")."
"; - echo ""; + echo ""; echo "
".__("Product reference", "order")."".__("Unit price tax free", "order")."
"; echo Dropdown::getDropdownName("glpi_entities", $data["entities_id"]); diff --git a/inc/referencefree.class.php b/inc/referencefree.class.php index 048694d1a8..44ef4ed1c9 100644 --- a/inc/referencefree.class.php +++ b/inc/referencefree.class.php @@ -89,7 +89,7 @@ public static function install(Migration $migration) { `is_deleted` tinyint(1) NOT NULL default '0', `is_active` tinyint(1) NOT NULL default '1', `notepad` longtext collate utf8_unicode_ci, - `date_mod` datetime default NULL, + `date_mod` timestamp NULL default NULL, PRIMARY KEY (`id`), KEY `name` (`name`), KEY `entities_id` (`entities_id`), diff --git a/inc/surveysupplier.class.php b/inc/surveysupplier.class.php index 6512d66e05..c003f6d328 100644 --- a/inc/surveysupplier.class.php +++ b/inc/surveysupplier.class.php @@ -67,7 +67,7 @@ public function getFromDBByOrder($plugin_order_orders_id) { if ($DB->numrows($result) != 1) { return false; } - $this->fields = $DB->fetch_assoc($result); + $this->fields = $DB->fetchAssoc($result); if (is_array($this->fields) && count($this->fields)) { return true; } else { @@ -387,7 +387,7 @@ public static function showOrderSupplierSurvey($ID) { echo "