├── .github ├── dependabot.yml └── workflows │ └── release.yml ├── .gitignore ├── .travis.yml ├── .tx └── config ├── AUTHORS.txt ├── LICENSE ├── README.md ├── RoboFile.php ├── SECURITY.md ├── barcode.xml ├── barscode.png ├── composer.json ├── composer.lock ├── front ├── barcode.form.php ├── checkItemByInv.php ├── config.form.php ├── config.php ├── config_type.form.php ├── document.send.php └── send.php ├── hook.php ├── inc ├── barcode.class.php ├── config.class.php ├── config_type.class.php ├── profile.class.php └── qrcode.class.php ├── locales ├── barcode.pot ├── ca_ES.mo ├── ca_ES.po ├── cs_CZ.mo ├── cs_CZ.po ├── de_DE.mo ├── de_DE.po ├── en_GB.mo ├── en_GB.po ├── en_US.mo ├── en_US.po ├── es_419.mo ├── es_419.po ├── es_AR.mo ├── es_AR.po ├── es_ES.mo ├── es_ES.po ├── es_GT.mo ├── es_GT.po ├── fi_FI.mo ├── fi_FI.po ├── fr_FR.mo ├── fr_FR.po ├── hr_HR.mo ├── hr_HR.po ├── id_ID.mo ├── id_ID.po ├── it_IT.mo ├── it_IT.po ├── ja_JP.mo ├── ja_JP.po ├── ko_KR.mo ├── ko_KR.po ├── pl_PL.mo ├── pl_PL.po ├── pt_BR.mo ├── pt_BR.po ├── pt_PT.mo ├── pt_PT.po ├── ru_RU.mo ├── ru_RU.po ├── sl_SI.mo ├── sl_SI.po ├── sv_SE.mo ├── sv_SE.po ├── tr_TR.mo ├── tr_TR.po ├── zh_CN.mo └── zh_CN.po ├── patch └── fix-pear-image-barcode.patch ├── setup.php └── tools ├── HEADER ├── extract_template.sh ├── update_mo.pl └── update_po.pl /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | # Ensure GitHub Actions are used in their latest version 4 | - package-ecosystem: "github-actions" 5 | directory: "/" 6 | schedule: 7 | interval: "monthly" 8 | 9 | # Strategy for composer dependencies on develop branch. 10 | - package-ecosystem: "composer" 11 | directory: "/" 12 | schedule: 13 | interval: "monthly" 14 | allow: 15 | - dependency-type: "direct" 16 | open-pull-requests-limit: 100 17 | target-branch: "develop" 18 | versioning-strategy: "lockfile-only" 19 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: "Plugin release" 2 | 3 | on: 4 | push: 5 | tags: 6 | - '*' 7 | 8 | jobs: 9 | create-release: 10 | name: "Create release" 11 | runs-on: "ubuntu-latest" 12 | steps: 13 | - name: "Extract tag name" 14 | run: | 15 | echo "tag_name=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV 16 | - name: "Checkout" 17 | uses: "actions/checkout@v3" 18 | - name: "Build package" 19 | id: "build-package" 20 | uses: "glpi-project/tools/github-actions/build-package@0.6.2" 21 | with: 22 | plugin-version: ${{ env.tag_name }} 23 | - name: "Create release" 24 | id: "create-release" 25 | uses: "actions/create-release@v1" 26 | env: 27 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 28 | with: 29 | tag_name: ${{ env.tag_name }} 30 | release_name: ${{ env.tag_name }} 31 | draft: true 32 | - name: "Attach package to release" 33 | uses: "actions/upload-release-asset@v1" 34 | env: 35 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 36 | with: 37 | upload_url: ${{ steps.create-release.outputs.upload_url }} 38 | asset_path: ${{ steps.build-package.outputs.package-path }} 39 | asset_name: ${{ steps.build-package.outputs.package-basename }} 40 | asset_content_type: " application/x-bzip2" 41 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | vendor/ 3 | .gh_token 4 | *.min.* 5 | 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | php: 3 | - 7.2 4 | - 7.4 5 | 6 | before_script: 7 | - composer self-update 8 | - composer install --optimize-autoloader --prefer-dist --no-interaction --no-progress --no-suggest 9 | 10 | script: 11 | - vendor/bin/robo --no-interaction code:cs --strict 12 | 13 | cache: 14 | directories: 15 | - $HOME/.composer/cache 16 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [glpi_barcode.barcode-pot] 5 | file_filter = locales/.po 6 | source_file = locales/barcode.pot 7 | source_lang = en_GB 8 | type = PO 9 | -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- 1 | 2 | ********************************************************************** 3 | 4 | ***************************Main dev team****************************** 5 | 6 | 7 | - Original code by Jean Marc GRISARD 8 | 9 | - Vincent MAZZONI (v.mazzoni at siprossii.com) : version 2.0 for GLPI 0.78 10 | 11 | - David Durieux (d.durieux@siprossii.com) : version 0.84+1.0 for GLPI 0.84 12 | 13 | 14 | ********************************************************************** 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Barcode GLPI plugin 2 | 3 | To use it, go in computer list, check the computers and in massive action, you have 2 possibilities : 4 | 5 | * print a bar code 6 | * print a QRcode 7 | 8 | ## Translations 9 | 10 | If you want Tag to be available in your native language and have a little time , you can help us : 11 | 12 | Join us on [Transifex](https://www.transifex.com/pluginsGLPI/glpi_barcode/) 13 | 14 | ## Contributing 15 | 16 | * Open a ticket for each bug/feature so it can be discussed 17 | * Follow [development guidelines](http://glpi-developer-documentation.readthedocs.io/en/latest/plugins/index.html) 18 | * Refer to [GitFlow](http://git-flow.readthedocs.io/) process for branching 19 | * Work on a new branch on your own fork 20 | * Open a PR that will be reviewed by a developer 21 | -------------------------------------------------------------------------------- /RoboFile.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Barcode 4 | barcode 5 | stable 6 | https://github.com/pluginsGLPI/barcode/blob/master/barscode.png?raw=true 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | https://github.com/pluginsGLPI/barcode 20 | https://github.com/pluginsGLPI/barcode/releases 21 | 22 | David DURIEUX 23 | 24 | 25 | 26 | 2.7.1 27 | ~10.0.0 28 | https://github.com/pluginsGLPI/barcode/releases/download/2.7.1/glpi-barcode-2.7.1.tar.bz2 29 | 30 | 31 | 2.7.0 32 | ~10.0.0 33 | https://github.com/pluginsGLPI/barcode/releases/download/2.7.0/glpi-barcode-2.7.0.tar.bz2 34 | 35 | 36 | 2.6.2 37 | ~9.5.0 38 | https://github.com/pluginsGLPI/barcode/releases/download/2.6.2/glpi-barcode-2.6.2.tar.bz2 39 | 40 | 41 | 2.6.1 42 | ~9.5.0 43 | https://github.com/pluginsGLPI/barcode/releases/download/2.6.1/glpi-barcode-2.6.1.tar.bz2 44 | 45 | 46 | 2.6.0 47 | ~9.5.0 48 | https://github.com/pluginsGLPI/barcode/releases/download/2.6.0/glpi-barcode-2.6.0.tar.bz2 49 | 50 | 51 | 2.5.2 52 | ~9.5.0 53 | https://github.com/pluginsGLPI/barcode/releases/download/2.5.2/glpi-barcode-2.5.2.tar.bz2 54 | 55 | 56 | 2.5.1 57 | ~9.5.0 58 | https://github.com/pluginsGLPI/barcode/releases/download/2.5.1/glpi-barcode-2.5.1.tar.bz2 59 | 60 | 61 | 2.5.0 62 | ~9.5.0 63 | https://github.com/pluginsGLPI/barcode/releases/download/2.5.0/glpi-barcode-2.5.0.tar.bz2 64 | 65 | 66 | 2.4.1 67 | 9.4 68 | 69 | 70 | 2.4.0 71 | 9.4 72 | 73 | 74 | 2.3.0 75 | 9.4 76 | 77 | 78 | 2.2.1 79 | 9.2 80 | 9.3 81 | 82 | 83 | 2.2.0 84 | 9.2 85 | 9.3 86 | 87 | 88 | 2.1.1 89 | 9.2 90 | 91 | 92 | 2.1.0 93 | 9.2 94 | 95 | 96 | 0.90+1.0 97 | 0.90 98 | 99 | 100 | 0.85+1.0 101 | 0.85 102 | 103 | 104 | 0.84+1.0 105 | 0.84 106 | 107 | 108 | 2.1.0 109 | 0.80 110 | 111 | 112 | 1.4 113 | 0.71 114 | 115 | 116 | 1.3 117 | 0.70 118 | 119 | 120 | 1.2 121 | 0.68.1 122 | 123 | 124 | 1.1 125 | 0.68 126 | 127 | 128 | 129 | cs_CZ 130 | en_GB 131 | fr_FR 132 | de_DE 133 | es_AR 134 | es_ES 135 | pt_BR 136 | sl_SI 137 | tr_TR 138 | 139 | 140 | 141 | 142 | export 143 | code barre 144 | QRcode 145 | données 146 | 147 | 148 | export 149 | barcode 150 | QRcode 151 | data 152 | 153 | 154 | export 155 | čárovýkód 156 | QRkód 157 | data 158 | 159 | 160 | 161 | -------------------------------------------------------------------------------- /barscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/barscode.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "php": ">=7.4", 4 | "cweagans/composer-patches": "^1.7", 5 | "deltalab/phpqrcode": "^1.1", 6 | "pear/image_barcode": "^1.1", 7 | "pear/pear": "^1.9", 8 | "rospdf/pdf-php": "^0.12" 9 | }, 10 | "require-dev": { 11 | "glpi-project/tools": "^0.5" 12 | }, 13 | "config": { 14 | "optimize-autoloader": true, 15 | "platform": { 16 | "php": "7.4.0" 17 | }, 18 | "sort-packages": true, 19 | "allow-plugins": { 20 | "cweagans/composer-patches": true 21 | } 22 | }, 23 | "repositories": [ 24 | { 25 | "type": "package", 26 | "package": { 27 | "name": "deltalab/phpqrcode", 28 | "version": "1.1.4", 29 | "dist":{ 30 | "url": "https://sourceforge.net/projects/phpqrcode/files/releases/phpqrcode-2010100721_1.1.4.zip/download", 31 | "type": "zip", 32 | "reference": "1.1.4" 33 | }, 34 | "autoload": { 35 | "classmap": [ 36 | "phpqrcode.php" 37 | ] 38 | } 39 | } 40 | }, 41 | { 42 | "type": "package", 43 | "package": { 44 | "name": "pear/image_barcode", 45 | "version": "1.1.2", 46 | "dist":{ 47 | "url": "https://github.com/pear/Image_Barcode/archive/1.1.2.zip", 48 | "type": "zip", 49 | "reference": "1.1.2" 50 | }, 51 | "autoload": { 52 | "psr-0": { 53 | "Image": "./" 54 | } 55 | }, 56 | "include-path": [ 57 | "./" 58 | ] 59 | } 60 | } 61 | ], 62 | "extra": { 63 | "patches": { 64 | "pear/image_barcode": { 65 | "Fix PHP 7.x / 8.x compatibility": "./patch/fix-pear-image-barcode.patch" 66 | } 67 | } 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /front/barcode.form.php: -------------------------------------------------------------------------------- 1 | . 27 | 28 | ------------------------------------------------------------------------ 29 | 30 | @package Plugin Barcode 31 | @author David Durieux 32 | @co-author 33 | @copyright Copyright (c) 2009-2016 Barcode plugin Development team 34 | @license AGPL License 3.0 or (at your option) any later version 35 | http://www.gnu.org/licenses/agpl-3.0-standalone.html 36 | @link https://forge.indepnet.net/projects/barscode 37 | @since 2009 38 | 39 | ------------------------------------------------------------------------ 40 | */ 41 | 42 | include ('../../../inc/includes.php'); 43 | 44 | if (!isset($_POST["length"])) { 45 | $_POST["length"] = ""; 46 | } 47 | if (!isset($_POST["prefixe"])) { 48 | $_POST["prefixe"] = ""; 49 | } 50 | if (!isset($_POST["size"])) { 51 | $_POST["size"] = ""; 52 | } 53 | if (!isset($_POST["format"])) { 54 | $_POST["format"] = ""; 55 | } 56 | 57 | $barcode = new PluginBarcodeBarcode(); 58 | $file = $barcode->printPDF($_POST); 59 | $filePath = explode('/', $file); 60 | $filename = $filePath[count($filePath)-1]; 61 | 62 | $msg = "".__('Generated file', 'barcode').""; 63 | Session::addMessageAfterRedirect($msg); 64 | 65 | Html::back(); 66 | -------------------------------------------------------------------------------- /front/checkItemByInv.php: -------------------------------------------------------------------------------- 1 | . 20 | ------------------------------------------------------------------------ 21 | @package Plugin Barcode 22 | @author David Durieux 23 | @co-author 24 | @copyright Copyright (c) 2009-2016 Barcode plugin Development team 25 | @license AGPL License 3.0 or (at your option) any later version 26 | http://www.gnu.org/licenses/agpl-3.0-standalone.html 27 | @link https://forge.indepnet.net/projects/barscode 28 | @since 2009 29 | ------------------------------------------------------------------------ 30 | */ 31 | // Non menu entry case 32 | //header("Location:../../central.php"); 33 | include ('../../../inc/includes.php'); 34 | Session::checkRight("config", UPDATE); 35 | // To be available when plugin is not activated 36 | Plugin::load('barcode'); 37 | Html::header(__('Barcode', 'barcode'), $_SERVER['PHP_SELF'], "config", "plugins"); 38 | $itemtype = $_GET['itemtype']; 39 | $item = new $itemtype(); 40 | $itemInventoryNumber[] = $_GET['inventoryNumber']; 41 | foreach ($itemInventoryNumber as $key => $value) { 42 | if ($item->getFromDBByCrit(['otherserial' => $value])) { 43 | Html::redirect($item->getFormURLWithID($item->getID())); 44 | } else { 45 | Html::displayErrorAndDie(__('No item found'), true); 46 | } 47 | }; 48 | Html::footer(); 49 | -------------------------------------------------------------------------------- /front/config.form.php: -------------------------------------------------------------------------------- 1 | . 27 | 28 | ------------------------------------------------------------------------ 29 | 30 | @package Plugin Barcode 31 | @author David Durieux 32 | @co-author 33 | @copyright Copyright (c) 2009-2016 Barcode plugin Development team 34 | @license AGPL License 3.0 or (at your option) any later version 35 | http://www.gnu.org/licenses/agpl-3.0-standalone.html 36 | @link https://forge.indepnet.net/projects/barscode 37 | @since 2009 38 | 39 | ------------------------------------------------------------------------ 40 | */ 41 | 42 | include ('../../../inc/includes.php'); 43 | 44 | if (isset($_POST['dropCache'])) { 45 | $dir = GLPI_PLUGIN_DOC_DIR.'/barcode'; 46 | if (is_dir($dir)) { 47 | if ($dh = opendir($dir)) { 48 | while (($file = readdir($dh)) !== false) { 49 | if ($file != "." && $file != ".." && $file != "logo.png") { 50 | unlink($dir.'/'.$file); 51 | } 52 | } 53 | closedir($dh); 54 | } 55 | } 56 | Session::addMessageAfterRedirect(__('The cache has been emptied.', 'barcode')); 57 | } else if (isset($_POST['dropLogo'])) { 58 | if (is_file(GLPI_PLUGIN_DOC_DIR.'/barcode/logo.png')) { 59 | unlink(GLPI_PLUGIN_DOC_DIR.'/barcode/logo.png'); 60 | } 61 | Session::addMessageAfterRedirect(__('The logo has been removed.', 'barcode')); 62 | } else if (!empty($_FILES['logo']['name'])) { 63 | if (is_file(GLPI_PLUGIN_DOC_DIR.'/barcode/logo.png')) { 64 | @unlink(GLPI_PLUGIN_DOC_DIR.'/barcode/logo.png'); 65 | } 66 | // Move 67 | rename($_FILES['logo']['tmp_name'], GLPI_PLUGIN_DOC_DIR.'/barcode/logo.png'); 68 | 69 | } else if (isset($_POST['type'])) { 70 | $pbconf = new PluginBarcodeConfig(); 71 | $_POST['id']=1; 72 | $pbconf->update($_POST); 73 | } 74 | Html::back(); 75 | -------------------------------------------------------------------------------- /front/config.php: -------------------------------------------------------------------------------- 1 | . 27 | 28 | ------------------------------------------------------------------------ 29 | 30 | @package Plugin Barcode 31 | @author David Durieux 32 | @co-author 33 | @copyright Copyright (c) 2009-2016 Barcode plugin Development team 34 | @license AGPL License 3.0 or (at your option) any later version 35 | http://www.gnu.org/licenses/agpl-3.0-standalone.html 36 | @link https://forge.indepnet.net/projects/barscode 37 | @since 2009 38 | 39 | ------------------------------------------------------------------------ 40 | */ 41 | 42 | // Non menu entry case 43 | //header("Location:../../central.php"); 44 | 45 | include ('../../../inc/includes.php'); 46 | 47 | Session::checkRight("config", UPDATE); 48 | 49 | // To be available when plugin is not activated 50 | Plugin::load('barcode'); 51 | 52 | Html::header(__('Barcode', 'barcode'), $_SERVER['PHP_SELF'], "config", "plugins"); 53 | $pbConfig = new PluginBarcodeConfig(); 54 | $pbConfig->showForm(''); 55 | 56 | Html::footer(); 57 | -------------------------------------------------------------------------------- /front/config_type.form.php: -------------------------------------------------------------------------------- 1 | . 27 | 28 | ------------------------------------------------------------------------ 29 | 30 | @package Plugin Barcode 31 | @author David Durieux 32 | @co-author 33 | @copyright Copyright (c) 2009-2016 Barcode plugin Development team 34 | @license AGPL License 3.0 or (at your option) any later version 35 | http://www.gnu.org/licenses/agpl-3.0-standalone.html 36 | @link https://forge.indepnet.net/projects/barscode 37 | @since 2009 38 | 39 | ------------------------------------------------------------------------ 40 | */ 41 | 42 | // ---------------------------------------------------------------------- 43 | // Original Author of file: Vincent Mazzoni 44 | // Purpose of file: 45 | // ---------------------------------------------------------------------- 46 | 47 | include ('../../../inc/includes.php'); 48 | 49 | if (isset($_POST['type'])) { 50 | $pbcconf = new PluginBarcodeConfig_Type(); 51 | if ($res = array_keys($pbcconf->find(['type' => $_POST['type']]))) { 52 | $_POST['id'] = $res[0]; 53 | $pbcconf->update($_POST); 54 | } 55 | } 56 | Html::back(); 57 | -------------------------------------------------------------------------------- /front/document.send.php: -------------------------------------------------------------------------------- 1 | . 27 | 28 | ------------------------------------------------------------------------ 29 | 30 | @package Plugin Barcode 31 | @author David Durieux 32 | @co-author 33 | @copyright Copyright (c) 2009-2016 Barcode plugin Development team 34 | @license AGPL License 3.0 or (at your option) any later version 35 | http://www.gnu.org/licenses/agpl-3.0-standalone.html 36 | @link https://forge.indepnet.net/projects/barscode 37 | @since 2009 38 | 39 | ------------------------------------------------------------------------ 40 | */ 41 | 42 | include ('../../../inc/includes.php'); 43 | 44 | if (!$CFG_GLPI["use_public_faq"]) { 45 | Session::checkLoginUser(); 46 | } 47 | 48 | $doc = new Document; 49 | 50 | if (isset($_GET["file"])) { // for other file 51 | $splitter = explode("/", $_GET["file"]); 52 | if (count($splitter) == 2) { 53 | $send = false; 54 | 55 | if ($splitter[0] == "barcode") { 56 | $send = true; 57 | } 58 | 59 | if (file_exists(GLPI_PLUGIN_DOC_DIR."/".$_GET["file"])) { 60 | Toolbox::sendFile(GLPI_PLUGIN_DOC_DIR."/".$_GET["file"], $splitter[1]); 61 | } else { 62 | Html::displayErrorAndDie(__('Unauthorized access to this file'), true); 63 | } 64 | } else { 65 | Html::displayErrorAndDie(__('Invalid Filename'), true); 66 | } 67 | } 68 | 69 | -------------------------------------------------------------------------------- /front/send.php: -------------------------------------------------------------------------------- 1 | . 27 | 28 | ------------------------------------------------------------------------ 29 | 30 | @package Plugin Barcode 31 | @author David Durieux 32 | @co-author 33 | @copyright Copyright (c) 2009-2016 Barcode plugin Development team 34 | @license AGPL License 3.0 or (at your option) any later version 35 | http://www.gnu.org/licenses/agpl-3.0-standalone.html 36 | @link https://forge.indepnet.net/projects/barscode 37 | @since 2009 38 | 39 | ------------------------------------------------------------------------ 40 | */ 41 | 42 | include ('../../../inc/includes.php'); 43 | 44 | if (!defined("GLPI_PLUGIN_DOC_DIR")) { 45 | define("GLPI_PLUGIN_DOC_DIR", GLPI_ROOT . "/files/_plugins"); 46 | } 47 | $docDir = GLPI_PLUGIN_DOC_DIR.'/barcode'; 48 | 49 | if (isset($_GET['file'])) { 50 | $filename = $_GET['file']; 51 | 52 | // Security test : document in $docDir 53 | if (strstr($filename, "../") || strstr($filename, "..\\")) { 54 | echo "Security attack !!!"; 55 | Toolbox::logDebug("[Plugin barcode][security][sendfile] ". 56 | $_SESSION["glpiname"]." try to get a non standard file : ".$filename); 57 | exit; 58 | } 59 | 60 | $file = $docDir.'/'.$filename; 61 | if (!file_exists($file)) { 62 | echo "Error file $filename does not exist"; //TODO : traduire 63 | } else { 64 | // Now send the file with header() magic 65 | header("Expires: Mon, 26 Nov 1962 00:00:00 GMT"); 66 | header('Pragma: private'); /// IE BUG + SSL 67 | //header('Pragma: no-cache'); 68 | header('Cache-control: private, must-revalidate'); /// IE BUG + SSL 69 | header("Content-disposition: filename=\"$filename\""); 70 | header("Content-type: application/pdf"); 71 | 72 | $f=fopen($file, "r"); 73 | 74 | if (!$f) { 75 | echo "Error opening file $filename"; 76 | } else { 77 | $fsize=filesize($file); 78 | 79 | if ($fsize) { 80 | echo fread($f, filesize($file)); 81 | } else { 82 | echo 'error'; 83 | } 84 | } 85 | } 86 | } 87 | -------------------------------------------------------------------------------- /inc/config_type.class.php: -------------------------------------------------------------------------------- 1 | . 27 | 28 | ------------------------------------------------------------------------ 29 | 30 | @package Plugin Barcode 31 | @author David Durieux 32 | @co-author 33 | @copyright Copyright (c) 2009-2016 Barcode plugin Development team 34 | @license AGPL License 3.0 or (at your option) any later version 35 | http://www.gnu.org/licenses/agpl-3.0-standalone.html 36 | @link https://forge.indepnet.net/projects/barscode 37 | @since 2009 38 | 39 | ------------------------------------------------------------------------ 40 | */ 41 | 42 | if (!defined('GLPI_ROOT')) { 43 | die("Sorry. You can't access directly to this file"); 44 | } 45 | 46 | class PluginBarcodeConfig_Type extends CommonDBTM { 47 | 48 | } 49 | 50 | -------------------------------------------------------------------------------- /inc/profile.class.php: -------------------------------------------------------------------------------- 1 | . 27 | 28 | ------------------------------------------------------------------------ 29 | 30 | @package Plugin Barcode 31 | @author David Durieux 32 | @co-author 33 | @copyright Copyright (c) 2009-2016 Barcode plugin Development team 34 | @license AGPL License 3.0 or (at your option) any later version 35 | http://www.gnu.org/licenses/agpl-3.0-standalone.html 36 | @link https://forge.indepnet.net/projects/barscode 37 | @since 2009 38 | 39 | ------------------------------------------------------------------------ 40 | */ 41 | 42 | class PluginBarcodeProfile extends Profile { 43 | 44 | static $rightname = "config"; 45 | 46 | 47 | function getTabNameForItem(CommonGLPI $item, $withtemplate = 0) { 48 | if ($item->getID() > 0 49 | && $item->fields['interface'] == 'central') { 50 | return self::createTabEntry(__('Barcode', 'barcode')); 51 | } 52 | } 53 | 54 | 55 | 56 | static function displayTabContentForItem(CommonGLPI $item, $tabnum = 1, $withtemplate = 0) { 57 | $pfProfile = new self(); 58 | $pfProfile->showForm($item->getID()); 59 | return true; 60 | } 61 | 62 | 63 | 64 | /** 65 | * Show profile form 66 | * 67 | * @param $items_id integer id of the profile 68 | * @param $target value url of target 69 | * 70 | * @return nothing 71 | **/ 72 | function showForm($ID, array $options = []) { 73 | 74 | echo "
"; 75 | if (($canedit = Session::haveRightsOr(self::$rightname, [CREATE, UPDATE, PURGE]))) { 76 | $profile = new Profile(); 77 | echo "
"; 78 | } 79 | 80 | $profile = new Profile(); 81 | $profile->getFromDB($ID); 82 | 83 | $rights = $this->getAllRights(); 84 | $profile->displayRightsChoiceMatrix($rights, ['canedit' => $canedit, 85 | 'default_class' => 'tab_bg_2', 86 | 'title' => __('Barcode', 'barcode') 87 | ]); 88 | if ($canedit) { 89 | echo "
"; 90 | echo Html::hidden('id', ['value' => $ID]); 91 | echo Html::submit(_sx('button', 'Save'), ['name' => 'update']); 92 | echo "
\n"; 93 | Html::closeForm(); 94 | } 95 | echo "
"; 96 | } 97 | 98 | 99 | 100 | static function uninstallProfile() { 101 | $pfProfile = new self(); 102 | $a_rights = $pfProfile->getAllRights(); 103 | foreach ($a_rights as $data) { 104 | ProfileRight::deleteProfileRights([$data['field']]); 105 | } 106 | } 107 | 108 | 109 | 110 | function getAllRights() { 111 | $a_rights = [ 112 | ['rights' => [UPDATE => __('Update')], 113 | 'label' => __('Manage configuration', 'barcode'), 114 | 'field' => 'plugin_barcode_config' 115 | ], 116 | ['rights' => [CREATE => __('Create')], 117 | 'label' => __('Generation of barcode', 'barcode'), 118 | 'field' => 'plugin_barcode_barcode' 119 | ] 120 | ]; 121 | return $a_rights; 122 | } 123 | 124 | 125 | 126 | static function addDefaultProfileInfos($profiles_id, $rights) { 127 | $profileRight = new ProfileRight(); 128 | foreach ($rights as $right => $value) { 129 | if (!countElementsInTable('glpi_profilerights', 130 | ['profiles_id' => $profiles_id, 'name' => $right])) { 131 | $myright['profiles_id'] = $profiles_id; 132 | $myright['name'] = $right; 133 | $myright['rights'] = $value; 134 | $profileRight->add($myright); 135 | 136 | //Add right to the current session 137 | $_SESSION['glpiactiveprofile'][$right] = $value; 138 | } 139 | } 140 | } 141 | 142 | /** 143 | * @param $profiles_id integer 144 | */ 145 | static function createFirstAccess($profiles_id) { 146 | include_once(Plugin::getPhpDir('barcode')."/inc/profile.class.php"); 147 | $profile = new self(); 148 | foreach ($profile->getAllRights() as $right) { 149 | self::addDefaultProfileInfos($profiles_id, 150 | [$right['field'] => ALLSTANDARDRIGHT]); 151 | } 152 | } 153 | 154 | static function removeRights() { 155 | $profile = new self(); 156 | foreach ($profile->getAllRights() as $right) { 157 | if (isset($_SESSION['glpiactiveprofile'][$right['field']])) { 158 | unset($_SESSION['glpiactiveprofile'][$right['field']]); 159 | } 160 | ProfileRight::deleteProfileRights([$right['field']]); 161 | } 162 | } 163 | 164 | static function migrateProfiles() { 165 | //Get all rights from the old table 166 | $profiles = getAllDataFromTable(getTableForItemType(__CLASS__)); 167 | 168 | //Load mapping of old rights to their new equivalent 169 | $oldrights = self::getOldRightsMappings(); 170 | 171 | //For each old profile : translate old right the new one 172 | foreach ($profiles as $id => $profile) { 173 | switch ($profile['right']) { 174 | case 'r' : 175 | $value = READ; 176 | break; 177 | case 'w': 178 | $value = ALLSTANDARDRIGHT; 179 | break; 180 | case 0: 181 | default: 182 | $value = 0; 183 | break; 184 | } 185 | //Write in glpi_profilerights the new fusioninventory right 186 | if (isset($oldrights[$profile['type']])) { 187 | //There's one new right corresponding to the old one 188 | if (!is_array($oldrights[$profile['type']])) { 189 | self::addDefaultProfileInfos($profile['profiles_id'], 190 | [$oldrights[$profile['type']] => $value]); 191 | } else { 192 | //One old right has been splitted into serveral new ones 193 | foreach ($oldrights[$profile['type']] as $newtype) { 194 | self::addDefaultProfileInfos($profile['profiles_id'], 195 | [$newtype => $value]); 196 | } 197 | } 198 | } 199 | } 200 | } 201 | 202 | 203 | 204 | /** 205 | * Init profiles during installation : 206 | * - add rights in profile table for the current user's profile 207 | * - current profile has all rights on the plugin 208 | */ 209 | static function initProfile() { 210 | $pfProfile = new self(); 211 | $profile = new Profile(); 212 | $a_rights = $pfProfile->getAllRights(); 213 | 214 | foreach ($a_rights as $data) { 215 | if (!countElementsInTable("glpi_profilerights", ['name' => $data['field']])) { 216 | ProfileRight::addProfileRights([$data['field']]); 217 | $_SESSION['glpiactiveprofile'][$data['field']] = 0; 218 | } 219 | } 220 | 221 | // Add all rights to current profile of the user 222 | if (isset($_SESSION['glpiactiveprofile'])) { 223 | $dataprofile = []; 224 | $dataprofile['id'] = $_SESSION['glpiactiveprofile']['id']; 225 | $profile->getFromDB($_SESSION['glpiactiveprofile']['id']); 226 | foreach ($a_rights as $info) { 227 | if (is_array($info) 228 | && ((!empty($info['itemtype'])) || (!empty($info['rights']))) 229 | && (!empty($info['label'])) && (!empty($info['field']))) { 230 | 231 | if (isset($info['rights'])) { 232 | $rights = $info['rights']; 233 | } else { 234 | $rights = $profile->getRightsFor($info['itemtype']); 235 | } 236 | foreach (array_keys($rights) as $right) { 237 | $dataprofile['_'.$info['field']][$right] = 1; 238 | $_SESSION['glpiactiveprofile'][$data['field']] = $right; 239 | } 240 | } 241 | } 242 | $profile->update($dataprofile); 243 | } 244 | } 245 | } 246 | -------------------------------------------------------------------------------- /locales/barcode.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=CHARSET\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: inc/barcode.class.php:78 21 | msgid "2A0" 22 | msgstr "" 23 | 24 | #: inc/barcode.class.php:77 25 | msgid "4A0" 26 | msgstr "" 27 | 28 | #: inc/barcode.class.php:79 29 | msgid "A0" 30 | msgstr "" 31 | 32 | #: inc/barcode.class.php:80 33 | msgid "A1" 34 | msgstr "" 35 | 36 | #: inc/barcode.class.php:89 37 | msgid "A10" 38 | msgstr "" 39 | 40 | #: inc/barcode.class.php:81 41 | msgid "A2" 42 | msgstr "" 43 | 44 | #: inc/barcode.class.php:82 45 | msgid "A3" 46 | msgstr "" 47 | 48 | #: inc/barcode.class.php:83 49 | msgid "A4" 50 | msgstr "" 51 | 52 | #: inc/barcode.class.php:84 53 | msgid "A5" 54 | msgstr "" 55 | 56 | #: inc/barcode.class.php:85 57 | msgid "A6" 58 | msgstr "" 59 | 60 | #: inc/barcode.class.php:86 61 | msgid "A7" 62 | msgstr "" 63 | 64 | #: inc/barcode.class.php:87 65 | msgid "A8" 66 | msgstr "" 67 | 68 | #: inc/barcode.class.php:88 69 | msgid "A9" 70 | msgstr "" 71 | 72 | #: inc/barcode.class.php:90 73 | msgid "B0" 74 | msgstr "" 75 | 76 | #: inc/barcode.class.php:91 77 | msgid "B1" 78 | msgstr "" 79 | 80 | #: inc/barcode.class.php:100 81 | msgid "B10" 82 | msgstr "" 83 | 84 | #: inc/barcode.class.php:92 85 | msgid "B2" 86 | msgstr "" 87 | 88 | #: inc/barcode.class.php:93 89 | msgid "B3" 90 | msgstr "" 91 | 92 | #: inc/barcode.class.php:94 93 | msgid "B4" 94 | msgstr "" 95 | 96 | #: inc/barcode.class.php:95 97 | msgid "B5" 98 | msgstr "" 99 | 100 | #: inc/barcode.class.php:96 101 | msgid "B6" 102 | msgstr "" 103 | 104 | #: inc/barcode.class.php:97 105 | msgid "B7" 106 | msgstr "" 107 | 108 | #: inc/barcode.class.php:98 109 | msgid "B8" 110 | msgstr "" 111 | 112 | #: inc/barcode.class.php:99 113 | msgid "B9" 114 | msgstr "" 115 | 116 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 117 | #: inc/profile.class.php:50 inc/profile.class.php:86 118 | msgid "Barcode" 119 | msgstr "" 120 | 121 | #: inc/config.class.php:61 122 | msgid "Barcode plugin configuration" 123 | msgstr "" 124 | 125 | #: inc/config.class.php:177 126 | msgid "Barcodes sizes" 127 | msgstr "" 128 | 129 | #: inc/config.class.php:157 130 | msgid "Bottom" 131 | msgstr "" 132 | 133 | #: inc/config.class.php:190 134 | msgid "By ID" 135 | msgstr "" 136 | 137 | #: inc/config.class.php:191 138 | msgid "By serial number" 139 | msgstr "" 140 | 141 | #: inc/barcode.class.php:101 142 | msgid "C0" 143 | msgstr "" 144 | 145 | #: inc/barcode.class.php:102 146 | msgid "C1" 147 | msgstr "" 148 | 149 | #: inc/barcode.class.php:111 150 | msgid "C10" 151 | msgstr "" 152 | 153 | #: inc/barcode.class.php:103 154 | msgid "C2" 155 | msgstr "" 156 | 157 | #: inc/barcode.class.php:104 158 | msgid "C3" 159 | msgstr "" 160 | 161 | #: inc/barcode.class.php:105 162 | msgid "C4" 163 | msgstr "" 164 | 165 | #: inc/barcode.class.php:106 166 | msgid "C5" 167 | msgstr "" 168 | 169 | #: inc/barcode.class.php:107 170 | msgid "C6" 171 | msgstr "" 172 | 173 | #: inc/barcode.class.php:108 174 | msgid "C7" 175 | msgstr "" 176 | 177 | #: inc/barcode.class.php:109 178 | msgid "C8" 179 | msgstr "" 180 | 181 | #: inc/barcode.class.php:110 182 | msgid "C9" 183 | msgstr "" 184 | 185 | #: inc/barcode.class.php:159 186 | msgid "Code" 187 | msgstr "" 188 | 189 | #: inc/config.class.php:82 190 | msgid "Company logo" 191 | msgstr "" 192 | 193 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 194 | msgid "Create" 195 | msgstr "" 196 | 197 | #: inc/config.class.php:94 198 | msgid "Delete the logo" 199 | msgstr "" 200 | 201 | #: inc/barcode.class.php:240 202 | msgid "Display border" 203 | msgstr "" 204 | 205 | #: inc/barcode.class.php:248 206 | msgid "Display labels" 207 | msgstr "" 208 | 209 | #: inc/barcode.class.php:124 210 | msgid "EXECUTIVE" 211 | msgstr "" 212 | 213 | #: inc/config.class.php:78 214 | msgid "Empty the cache" 215 | msgstr "" 216 | 217 | #: inc/barcode.class.php:125 218 | msgid "FOLIO" 219 | msgstr "" 220 | 221 | #: inc/config.class.php:66 222 | msgid "General configuration" 223 | msgstr "" 224 | 225 | #: front/barcode.form.php:62 inc/barcode.class.php:514 inc/qrcode.class.php:411 226 | msgid "Generated file" 227 | msgstr "" 228 | 229 | #: inc/barcode.class.php:157 230 | msgid "Generation" 231 | msgstr "" 232 | 233 | #: inc/profile.class.php:117 234 | msgid "Generation of barcode" 235 | msgstr "" 236 | 237 | #: inc/config.class.php:170 238 | msgid "Inner horizontal" 239 | msgstr "" 240 | 241 | #: inc/config.class.php:173 242 | msgid "Inner vertical" 243 | msgstr "" 244 | 245 | #: inc/barcode.class.php:194 246 | msgid "It will generate only elements have defined field:" 247 | msgstr "" 248 | 249 | #: inc/barcode.class.php:123 250 | msgid "LEGAL" 251 | msgstr "" 252 | 253 | #: inc/barcode.class.php:122 254 | msgid "LETTER" 255 | msgstr "" 256 | 257 | #: inc/barcode.class.php:136 258 | msgid "Landscape" 259 | msgstr "" 260 | 261 | #: inc/config.class.php:162 262 | msgid "Left" 263 | msgstr "" 264 | 265 | #: inc/profile.class.php:113 266 | msgid "Manage configuration" 267 | msgstr "" 268 | 269 | #: inc/config.class.php:152 270 | msgid "Margins" 271 | msgstr "" 272 | 273 | #: inc/config.class.php:182 274 | msgid "Maximum height" 275 | msgstr "" 276 | 277 | #: inc/config.class.php:179 278 | msgid "Maximum width" 279 | msgstr "" 280 | 281 | #: inc/barcode.class.php:230 282 | msgid "Not use first xx barcodes" 283 | msgstr "" 284 | 285 | #: inc/barcode.class.php:174 286 | msgid "Number of copies" 287 | msgstr "" 288 | 289 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 inc/config.class.php:148 290 | msgid "Orientation" 291 | msgstr "" 292 | 293 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 inc/config.class.php:145 294 | msgid "Page size" 295 | msgstr "" 296 | 297 | #: inc/barcode.class.php:135 298 | msgid "Portrait" 299 | msgstr "" 300 | 301 | #: hook.php:49 302 | msgid "Print QRcodes" 303 | msgstr "" 304 | 305 | #: hook.php:46 306 | msgid "Print barcodes" 307 | msgstr "" 308 | 309 | #: inc/config.class.php:269 310 | msgid "QRcode" 311 | msgstr "" 312 | 313 | #: inc/barcode.class.php:112 314 | msgid "RA0" 315 | msgstr "" 316 | 317 | #: inc/barcode.class.php:113 318 | msgid "RA1" 319 | msgstr "" 320 | 321 | #: inc/barcode.class.php:114 322 | msgid "RA2" 323 | msgstr "" 324 | 325 | #: inc/barcode.class.php:115 326 | msgid "RA3" 327 | msgstr "" 328 | 329 | #: inc/barcode.class.php:116 330 | msgid "RA4" 331 | msgstr "" 332 | 333 | #: inc/config.class.php:165 334 | msgid "Right" 335 | msgstr "" 336 | 337 | #: inc/barcode.class.php:117 338 | msgid "SRA0" 339 | msgstr "" 340 | 341 | #: inc/barcode.class.php:118 342 | msgid "SRA1" 343 | msgstr "" 344 | 345 | #: inc/barcode.class.php:119 346 | msgid "SRA2" 347 | msgstr "" 348 | 349 | #: inc/barcode.class.php:120 350 | msgid "SRA3" 351 | msgstr "" 352 | 353 | #: inc/barcode.class.php:121 354 | msgid "SRA4" 355 | msgstr "" 356 | 357 | #: inc/config.class.php:196 358 | msgid "Text display options" 359 | msgstr "" 360 | 361 | #: inc/config.class.php:198 362 | msgid "Text size" 363 | msgstr "" 364 | 365 | #: inc/config.class.php:201 366 | msgid "Text spacing between lines" 367 | msgstr "" 368 | 369 | #: front/config.form.php:56 370 | msgid "The cache has been emptied." 371 | msgstr "" 372 | 373 | #: inc/barcode.class.php:286 374 | msgid "The generation of some barcodes produced errors." 375 | msgstr "" 376 | 377 | #: front/config.form.php:61 378 | msgid "The logo has been removed." 379 | msgstr "" 380 | 381 | #: inc/barcode.class.php:196 382 | msgid "Ticket number" 383 | msgstr "" 384 | 385 | #: inc/config.class.php:154 386 | msgid "Top" 387 | msgstr "" 388 | 389 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 390 | msgid "Type" 391 | msgstr "" 392 | 393 | #: inc/config.class.php:188 394 | msgid "URL" 395 | msgstr "" 396 | 397 | #: inc/config.class.php:264 398 | msgid "code128" 399 | msgstr "" 400 | 401 | #: inc/config.class.php:263 402 | msgid "code39" 403 | msgstr "" 404 | 405 | #: inc/config.class.php:265 406 | msgid "ean13" 407 | msgstr "" 408 | 409 | #: inc/config.class.php:266 410 | msgid "int25" 411 | msgstr "" 412 | 413 | #: inc/config.class.php:267 414 | msgid "postnet" 415 | msgstr "" 416 | 417 | #: inc/config.class.php:268 418 | msgid "upca" 419 | msgstr "" 420 | -------------------------------------------------------------------------------- /locales/ca_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/ca_ES.mo -------------------------------------------------------------------------------- /locales/ca_ES.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alexander Salas Bastidas , 2017 8 | # Cédric Anne, 2018 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: PACKAGE VERSION\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 16 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 17 | "Last-Translator: Cédric Anne, 2018\n" 18 | "Language-Team: Catalan (Spain) (https://www.transifex.com/pluginsGLPI/teams/73419/ca_ES/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: ca_ES\n" 23 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 24 | 25 | #: inc/barcode.class.php:78 26 | msgid "2A0" 27 | msgstr "2A0" 28 | 29 | #: inc/barcode.class.php:77 30 | msgid "4A0" 31 | msgstr "4A0" 32 | 33 | #: inc/barcode.class.php:79 34 | msgid "A0" 35 | msgstr "A0" 36 | 37 | #: inc/barcode.class.php:80 38 | msgid "A1" 39 | msgstr "A1" 40 | 41 | #: inc/barcode.class.php:89 42 | msgid "A10" 43 | msgstr "A10" 44 | 45 | #: inc/barcode.class.php:81 46 | msgid "A2" 47 | msgstr "A2" 48 | 49 | #: inc/barcode.class.php:82 50 | msgid "A3" 51 | msgstr "A3" 52 | 53 | #: inc/barcode.class.php:83 54 | msgid "A4" 55 | msgstr "A4" 56 | 57 | #: inc/barcode.class.php:84 58 | msgid "A5" 59 | msgstr "A5" 60 | 61 | #: inc/barcode.class.php:85 62 | msgid "A6" 63 | msgstr "A6" 64 | 65 | #: inc/barcode.class.php:86 66 | msgid "A7" 67 | msgstr "A7" 68 | 69 | #: inc/barcode.class.php:87 70 | msgid "A8" 71 | msgstr "A8" 72 | 73 | #: inc/barcode.class.php:88 74 | msgid "A9" 75 | msgstr "A9" 76 | 77 | #: inc/barcode.class.php:90 78 | msgid "B0" 79 | msgstr "B0" 80 | 81 | #: inc/barcode.class.php:91 82 | msgid "B1" 83 | msgstr "B1" 84 | 85 | #: inc/barcode.class.php:100 86 | msgid "B10" 87 | msgstr "B10" 88 | 89 | #: inc/barcode.class.php:92 90 | msgid "B2" 91 | msgstr "B2" 92 | 93 | #: inc/barcode.class.php:93 94 | msgid "B3" 95 | msgstr "B3" 96 | 97 | #: inc/barcode.class.php:94 98 | msgid "B4" 99 | msgstr "B4" 100 | 101 | #: inc/barcode.class.php:95 102 | msgid "B5" 103 | msgstr "B5" 104 | 105 | #: inc/barcode.class.php:96 106 | msgid "B6" 107 | msgstr "B6" 108 | 109 | #: inc/barcode.class.php:97 110 | msgid "B7" 111 | msgstr "B7" 112 | 113 | #: inc/barcode.class.php:98 114 | msgid "B8" 115 | msgstr "B8" 116 | 117 | #: inc/barcode.class.php:99 118 | msgid "B9" 119 | msgstr "B9" 120 | 121 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 122 | #: inc/profile.class.php:50 inc/profile.class.php:86 123 | msgid "Barcode" 124 | msgstr "Codi de barres" 125 | 126 | #: inc/config.class.php:61 127 | msgid "Barcode plugin configuration" 128 | msgstr "Configuració de plugin de codi de barres" 129 | 130 | #: inc/config.class.php:177 131 | msgid "Barcodes sizes" 132 | msgstr "Mides de codis de barres" 133 | 134 | #: inc/config.class.php:157 135 | msgid "Bottom" 136 | msgstr "Fons" 137 | 138 | #: inc/config.class.php:190 139 | msgid "By ID" 140 | msgstr "" 141 | 142 | #: inc/config.class.php:191 143 | msgid "By serial number" 144 | msgstr "" 145 | 146 | #: inc/barcode.class.php:101 147 | msgid "C0" 148 | msgstr "C0" 149 | 150 | #: inc/barcode.class.php:102 151 | msgid "C1" 152 | msgstr "C1" 153 | 154 | #: inc/barcode.class.php:111 155 | msgid "C10" 156 | msgstr "C10" 157 | 158 | #: inc/barcode.class.php:103 159 | msgid "C2" 160 | msgstr "C2" 161 | 162 | #: inc/barcode.class.php:104 163 | msgid "C3" 164 | msgstr "C3" 165 | 166 | #: inc/barcode.class.php:105 167 | msgid "C4" 168 | msgstr "C4" 169 | 170 | #: inc/barcode.class.php:106 171 | msgid "C5" 172 | msgstr "C5" 173 | 174 | #: inc/barcode.class.php:107 175 | msgid "C6" 176 | msgstr "C6" 177 | 178 | #: inc/barcode.class.php:108 179 | msgid "C7" 180 | msgstr "C7" 181 | 182 | #: inc/barcode.class.php:109 183 | msgid "C8" 184 | msgstr "C8" 185 | 186 | #: inc/barcode.class.php:110 187 | msgid "C9" 188 | msgstr "C9" 189 | 190 | #: inc/barcode.class.php:159 191 | msgid "Code" 192 | msgstr "Codi" 193 | 194 | #: inc/config.class.php:82 195 | msgid "Company logo" 196 | msgstr "Logotip" 197 | 198 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 199 | msgid "Create" 200 | msgstr "Crear" 201 | 202 | #: inc/config.class.php:94 203 | msgid "Delete the logo" 204 | msgstr "" 205 | 206 | #: inc/barcode.class.php:240 207 | msgid "Display border" 208 | msgstr "Frontera d'exhibició" 209 | 210 | #: inc/barcode.class.php:248 211 | msgid "Display labels" 212 | msgstr "" 213 | 214 | #: inc/barcode.class.php:124 215 | msgid "EXECUTIVE" 216 | msgstr "EXECUTIU" 217 | 218 | #: inc/config.class.php:78 219 | msgid "Empty the cache" 220 | msgstr "Buidar la memòria cau" 221 | 222 | #: inc/barcode.class.php:125 223 | msgid "FOLIO" 224 | msgstr "FOLI" 225 | 226 | #: inc/config.class.php:66 227 | msgid "General configuration" 228 | msgstr "Configuració general" 229 | 230 | #: front/barcode.form.php:62 inc/barcode.class.php:514 231 | #: inc/qrcode.class.php:411 232 | msgid "Generated file" 233 | msgstr "Fitxer generat" 234 | 235 | #: inc/barcode.class.php:157 236 | msgid "Generation" 237 | msgstr "Generació" 238 | 239 | #: inc/profile.class.php:117 240 | msgid "Generation of barcode" 241 | msgstr "Generació de codi de barres" 242 | 243 | #: inc/config.class.php:170 244 | msgid "Inner horizontal" 245 | msgstr "Interior horitzontal" 246 | 247 | #: inc/config.class.php:173 248 | msgid "Inner vertical" 249 | msgstr "Vertical interior" 250 | 251 | #: inc/barcode.class.php:194 252 | msgid "It will generate only elements have defined field:" 253 | msgstr "Generarà només elements ha definit el camp:" 254 | 255 | #: inc/barcode.class.php:123 256 | msgid "LEGAL" 257 | msgstr "LEGAL" 258 | 259 | #: inc/barcode.class.php:122 260 | msgid "LETTER" 261 | msgstr "CARTA" 262 | 263 | #: inc/barcode.class.php:136 264 | msgid "Landscape" 265 | msgstr "Paisatge" 266 | 267 | #: inc/config.class.php:162 268 | msgid "Left" 269 | msgstr "Esquerra" 270 | 271 | #: inc/profile.class.php:113 272 | msgid "Manage configuration" 273 | msgstr "Administrar la configuració" 274 | 275 | #: inc/config.class.php:152 276 | msgid "Margins" 277 | msgstr "Marges" 278 | 279 | #: inc/config.class.php:182 280 | msgid "Maximum height" 281 | msgstr "Alçada màxima" 282 | 283 | #: inc/config.class.php:179 284 | msgid "Maximum width" 285 | msgstr "Amplada màxima" 286 | 287 | #: inc/barcode.class.php:230 288 | msgid "Not use first xx barcodes" 289 | msgstr "No utilitzar primer xx codis de barres" 290 | 291 | #: inc/barcode.class.php:174 292 | msgid "Number of copies" 293 | msgstr "Nombre de còpies" 294 | 295 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 296 | #: inc/config.class.php:148 297 | msgid "Orientation" 298 | msgstr "Orientació" 299 | 300 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 301 | #: inc/config.class.php:145 302 | msgid "Page size" 303 | msgstr "Mida de pàgina" 304 | 305 | #: inc/barcode.class.php:135 306 | msgid "Portrait" 307 | msgstr "Retrat" 308 | 309 | #: hook.php:49 310 | msgid "Print QRcodes" 311 | msgstr "Impressió QRcodes" 312 | 313 | #: hook.php:46 314 | msgid "Print barcodes" 315 | msgstr "Imprimir codis de barres" 316 | 317 | #: inc/config.class.php:269 318 | msgid "QRcode" 319 | msgstr "QRcode" 320 | 321 | #: inc/barcode.class.php:112 322 | msgid "RA0" 323 | msgstr "RA0" 324 | 325 | #: inc/barcode.class.php:113 326 | msgid "RA1" 327 | msgstr "RA1" 328 | 329 | #: inc/barcode.class.php:114 330 | msgid "RA2" 331 | msgstr "RA2" 332 | 333 | #: inc/barcode.class.php:115 334 | msgid "RA3" 335 | msgstr "RA3" 336 | 337 | #: inc/barcode.class.php:116 338 | msgid "RA4" 339 | msgstr "RA4" 340 | 341 | #: inc/config.class.php:165 342 | msgid "Right" 343 | msgstr "Dret" 344 | 345 | #: inc/barcode.class.php:117 346 | msgid "SRA0" 347 | msgstr "SRA0" 348 | 349 | #: inc/barcode.class.php:118 350 | msgid "SRA1" 351 | msgstr "SRA1" 352 | 353 | #: inc/barcode.class.php:119 354 | msgid "SRA2" 355 | msgstr "SRA2" 356 | 357 | #: inc/barcode.class.php:120 358 | msgid "SRA3" 359 | msgstr "SRA3" 360 | 361 | #: inc/barcode.class.php:121 362 | msgid "SRA4" 363 | msgstr "SRA4" 364 | 365 | #: inc/config.class.php:196 366 | msgid "Text display options" 367 | msgstr "" 368 | 369 | #: inc/config.class.php:198 370 | msgid "Text size" 371 | msgstr "" 372 | 373 | #: inc/config.class.php:201 374 | msgid "Text spacing between lines" 375 | msgstr "" 376 | 377 | #: front/config.form.php:56 378 | msgid "The cache has been emptied." 379 | msgstr "La memòria cau ha estat buidat." 380 | 381 | #: inc/barcode.class.php:286 382 | msgid "The generation of some barcodes produced errors." 383 | msgstr "La generació d'alguns bacodes produir errors de." 384 | 385 | #: front/config.form.php:61 386 | msgid "The logo has been removed." 387 | msgstr "" 388 | 389 | #: inc/barcode.class.php:196 390 | msgid "Ticket number" 391 | msgstr "Nombre d'entrades" 392 | 393 | #: inc/config.class.php:154 394 | msgid "Top" 395 | msgstr "Part superior" 396 | 397 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 398 | msgid "Type" 399 | msgstr "Tipus" 400 | 401 | #: inc/config.class.php:188 402 | msgid "URL" 403 | msgstr "" 404 | 405 | #: inc/config.class.php:264 406 | msgid "code128" 407 | msgstr "CODE128" 408 | 409 | #: inc/config.class.php:263 410 | msgid "code39" 411 | msgstr "code39" 412 | 413 | #: inc/config.class.php:265 414 | msgid "ean13" 415 | msgstr "EAN13" 416 | 417 | #: inc/config.class.php:266 418 | msgid "int25" 419 | msgstr "int25" 420 | 421 | #: inc/config.class.php:267 422 | msgid "postnet" 423 | msgstr "POSTNET" 424 | 425 | #: inc/config.class.php:268 426 | msgid "upca" 427 | msgstr "UPCA" 428 | -------------------------------------------------------------------------------- /locales/cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/cs_CZ.mo -------------------------------------------------------------------------------- /locales/de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/de_DE.mo -------------------------------------------------------------------------------- /locales/en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/en_GB.mo -------------------------------------------------------------------------------- /locales/en_GB.po: -------------------------------------------------------------------------------- 1 | # English translations for PACKAGE package. 2 | # Copyright (C) 2022 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: PACKAGE VERSION\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 11 | "PO-Revision-Date: 2022-07-18 07:08+0000\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: en_GB\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: inc/barcode.class.php:78 21 | msgid "2A0" 22 | msgstr "2A0" 23 | 24 | #: inc/barcode.class.php:77 25 | msgid "4A0" 26 | msgstr "4A0" 27 | 28 | #: inc/barcode.class.php:79 29 | msgid "A0" 30 | msgstr "A0" 31 | 32 | #: inc/barcode.class.php:80 33 | msgid "A1" 34 | msgstr "A1" 35 | 36 | #: inc/barcode.class.php:89 37 | msgid "A10" 38 | msgstr "A10" 39 | 40 | #: inc/barcode.class.php:81 41 | msgid "A2" 42 | msgstr "A2" 43 | 44 | #: inc/barcode.class.php:82 45 | msgid "A3" 46 | msgstr "A3" 47 | 48 | #: inc/barcode.class.php:83 49 | msgid "A4" 50 | msgstr "A4" 51 | 52 | #: inc/barcode.class.php:84 53 | msgid "A5" 54 | msgstr "A5" 55 | 56 | #: inc/barcode.class.php:85 57 | msgid "A6" 58 | msgstr "A6" 59 | 60 | #: inc/barcode.class.php:86 61 | msgid "A7" 62 | msgstr "A7" 63 | 64 | #: inc/barcode.class.php:87 65 | msgid "A8" 66 | msgstr "A8" 67 | 68 | #: inc/barcode.class.php:88 69 | msgid "A9" 70 | msgstr "A9" 71 | 72 | #: inc/barcode.class.php:90 73 | msgid "B0" 74 | msgstr "B0" 75 | 76 | #: inc/barcode.class.php:91 77 | msgid "B1" 78 | msgstr "B1" 79 | 80 | #: inc/barcode.class.php:100 81 | msgid "B10" 82 | msgstr "B10" 83 | 84 | #: inc/barcode.class.php:92 85 | msgid "B2" 86 | msgstr "B2" 87 | 88 | #: inc/barcode.class.php:93 89 | msgid "B3" 90 | msgstr "B3" 91 | 92 | #: inc/barcode.class.php:94 93 | msgid "B4" 94 | msgstr "B4" 95 | 96 | #: inc/barcode.class.php:95 97 | msgid "B5" 98 | msgstr "B5" 99 | 100 | #: inc/barcode.class.php:96 101 | msgid "B6" 102 | msgstr "B6" 103 | 104 | #: inc/barcode.class.php:97 105 | msgid "B7" 106 | msgstr "B7" 107 | 108 | #: inc/barcode.class.php:98 109 | msgid "B8" 110 | msgstr "B8" 111 | 112 | #: inc/barcode.class.php:99 113 | msgid "B9" 114 | msgstr "B9" 115 | 116 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 117 | #: inc/profile.class.php:50 inc/profile.class.php:86 118 | msgid "Barcode" 119 | msgstr "Barcode" 120 | 121 | #: inc/config.class.php:61 122 | msgid "Barcode plugin configuration" 123 | msgstr "Barcode plugin configuration" 124 | 125 | #: inc/config.class.php:177 126 | msgid "Barcodes sizes" 127 | msgstr "Barcodes sizes" 128 | 129 | #: inc/config.class.php:157 130 | msgid "Bottom" 131 | msgstr "Bottom" 132 | 133 | #: inc/config.class.php:190 134 | msgid "By ID" 135 | msgstr "By ID" 136 | 137 | #: inc/config.class.php:191 138 | msgid "By serial number" 139 | msgstr "By serial number" 140 | 141 | #: inc/barcode.class.php:101 142 | msgid "C0" 143 | msgstr "C0" 144 | 145 | #: inc/barcode.class.php:102 146 | msgid "C1" 147 | msgstr "C1" 148 | 149 | #: inc/barcode.class.php:111 150 | msgid "C10" 151 | msgstr "C10" 152 | 153 | #: inc/barcode.class.php:103 154 | msgid "C2" 155 | msgstr "C2" 156 | 157 | #: inc/barcode.class.php:104 158 | msgid "C3" 159 | msgstr "C3" 160 | 161 | #: inc/barcode.class.php:105 162 | msgid "C4" 163 | msgstr "C4" 164 | 165 | #: inc/barcode.class.php:106 166 | msgid "C5" 167 | msgstr "C5" 168 | 169 | #: inc/barcode.class.php:107 170 | msgid "C6" 171 | msgstr "C6" 172 | 173 | #: inc/barcode.class.php:108 174 | msgid "C7" 175 | msgstr "C7" 176 | 177 | #: inc/barcode.class.php:109 178 | msgid "C8" 179 | msgstr "C8" 180 | 181 | #: inc/barcode.class.php:110 182 | msgid "C9" 183 | msgstr "C9" 184 | 185 | #: inc/barcode.class.php:159 186 | msgid "Code" 187 | msgstr "Code" 188 | 189 | #: inc/config.class.php:82 190 | msgid "Company logo" 191 | msgstr "Company logo" 192 | 193 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 194 | msgid "Create" 195 | msgstr "Create" 196 | 197 | #: inc/config.class.php:94 198 | msgid "Delete the logo" 199 | msgstr "Delete the logo" 200 | 201 | #: inc/barcode.class.php:240 202 | msgid "Display border" 203 | msgstr "Display border" 204 | 205 | #: inc/barcode.class.php:248 206 | msgid "Display labels" 207 | msgstr "Display labels" 208 | 209 | #: inc/barcode.class.php:124 210 | msgid "EXECUTIVE" 211 | msgstr "EXECUTIVE" 212 | 213 | #: inc/config.class.php:78 214 | msgid "Empty the cache" 215 | msgstr "Empty the cache" 216 | 217 | #: inc/barcode.class.php:125 218 | msgid "FOLIO" 219 | msgstr "FOLIO" 220 | 221 | #: inc/config.class.php:66 222 | msgid "General configuration" 223 | msgstr "General configuration" 224 | 225 | #: front/barcode.form.php:62 inc/barcode.class.php:514 inc/qrcode.class.php:411 226 | msgid "Generated file" 227 | msgstr "Generated file" 228 | 229 | #: inc/barcode.class.php:157 230 | msgid "Generation" 231 | msgstr "Generation" 232 | 233 | #: inc/profile.class.php:117 234 | msgid "Generation of barcode" 235 | msgstr "Generation of barcode" 236 | 237 | #: inc/config.class.php:170 238 | msgid "Inner horizontal" 239 | msgstr "Inner horizontal" 240 | 241 | #: inc/config.class.php:173 242 | msgid "Inner vertical" 243 | msgstr "Inner vertical" 244 | 245 | #: inc/barcode.class.php:194 246 | msgid "It will generate only elements have defined field:" 247 | msgstr "It will generate only elements have defined field:" 248 | 249 | #: inc/barcode.class.php:123 250 | msgid "LEGAL" 251 | msgstr "LEGAL" 252 | 253 | #: inc/barcode.class.php:122 254 | msgid "LETTER" 255 | msgstr "LETTER" 256 | 257 | #: inc/barcode.class.php:136 258 | msgid "Landscape" 259 | msgstr "Landscape" 260 | 261 | #: inc/config.class.php:162 262 | msgid "Left" 263 | msgstr "Left" 264 | 265 | #: inc/profile.class.php:113 266 | msgid "Manage configuration" 267 | msgstr "Manage configuration" 268 | 269 | #: inc/config.class.php:152 270 | msgid "Margins" 271 | msgstr "Margins" 272 | 273 | #: inc/config.class.php:182 274 | msgid "Maximum height" 275 | msgstr "Maximum height" 276 | 277 | #: inc/config.class.php:179 278 | msgid "Maximum width" 279 | msgstr "Maximum width" 280 | 281 | #: inc/barcode.class.php:230 282 | msgid "Not use first xx barcodes" 283 | msgstr "Not use first xx barcodes" 284 | 285 | #: inc/barcode.class.php:174 286 | msgid "Number of copies" 287 | msgstr "Number of copies" 288 | 289 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 inc/config.class.php:148 290 | msgid "Orientation" 291 | msgstr "Orientation" 292 | 293 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 inc/config.class.php:145 294 | msgid "Page size" 295 | msgstr "Page size" 296 | 297 | #: inc/barcode.class.php:135 298 | msgid "Portrait" 299 | msgstr "Portrait" 300 | 301 | #: hook.php:49 302 | msgid "Print QRcodes" 303 | msgstr "Print QRcodes" 304 | 305 | #: hook.php:46 306 | msgid "Print barcodes" 307 | msgstr "Print barcodes" 308 | 309 | #: inc/config.class.php:269 310 | msgid "QRcode" 311 | msgstr "QRcode" 312 | 313 | #: inc/barcode.class.php:112 314 | msgid "RA0" 315 | msgstr "RA0" 316 | 317 | #: inc/barcode.class.php:113 318 | msgid "RA1" 319 | msgstr "RA1" 320 | 321 | #: inc/barcode.class.php:114 322 | msgid "RA2" 323 | msgstr "RA2" 324 | 325 | #: inc/barcode.class.php:115 326 | msgid "RA3" 327 | msgstr "RA3" 328 | 329 | #: inc/barcode.class.php:116 330 | msgid "RA4" 331 | msgstr "RA4" 332 | 333 | #: inc/config.class.php:165 334 | msgid "Right" 335 | msgstr "Right" 336 | 337 | #: inc/barcode.class.php:117 338 | msgid "SRA0" 339 | msgstr "SRA0" 340 | 341 | #: inc/barcode.class.php:118 342 | msgid "SRA1" 343 | msgstr "SRA1" 344 | 345 | #: inc/barcode.class.php:119 346 | msgid "SRA2" 347 | msgstr "SRA2" 348 | 349 | #: inc/barcode.class.php:120 350 | msgid "SRA3" 351 | msgstr "SRA3" 352 | 353 | #: inc/barcode.class.php:121 354 | msgid "SRA4" 355 | msgstr "SRA4" 356 | 357 | #: inc/config.class.php:196 358 | msgid "Text display options" 359 | msgstr "Text display options" 360 | 361 | #: inc/config.class.php:198 362 | msgid "Text size" 363 | msgstr "Text size" 364 | 365 | #: inc/config.class.php:201 366 | msgid "Text spacing between lines" 367 | msgstr "Text spacing between lines" 368 | 369 | #: front/config.form.php:56 370 | msgid "The cache has been emptied." 371 | msgstr "The cache has been emptied." 372 | 373 | #: inc/barcode.class.php:286 374 | msgid "The generation of some barcodes produced errors." 375 | msgstr "The generation of some barcodes produced errors." 376 | 377 | #: front/config.form.php:61 378 | msgid "The logo has been removed." 379 | msgstr "The logo has been removed." 380 | 381 | #: inc/barcode.class.php:196 382 | msgid "Ticket number" 383 | msgstr "Ticket number" 384 | 385 | #: inc/config.class.php:154 386 | msgid "Top" 387 | msgstr "Top" 388 | 389 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 390 | msgid "Type" 391 | msgstr "Type" 392 | 393 | #: inc/config.class.php:188 394 | msgid "URL" 395 | msgstr "URL" 396 | 397 | #: inc/config.class.php:264 398 | msgid "code128" 399 | msgstr "code128" 400 | 401 | #: inc/config.class.php:263 402 | msgid "code39" 403 | msgstr "code39" 404 | 405 | #: inc/config.class.php:265 406 | msgid "ean13" 407 | msgstr "ean13" 408 | 409 | #: inc/config.class.php:266 410 | msgid "int25" 411 | msgstr "int25" 412 | 413 | #: inc/config.class.php:267 414 | msgid "postnet" 415 | msgstr "postnet" 416 | 417 | #: inc/config.class.php:268 418 | msgid "upca" 419 | msgstr "upca" 420 | -------------------------------------------------------------------------------- /locales/en_US.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/en_US.mo -------------------------------------------------------------------------------- /locales/en_US.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alexander Salas Bastidas , 2017 8 | # Cédric Anne, 2018 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: PACKAGE VERSION\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 16 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 17 | "Last-Translator: Cédric Anne, 2018\n" 18 | "Language-Team: English (United States) (https://www.transifex.com/pluginsGLPI/teams/73419/en_US/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: en_US\n" 23 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 24 | 25 | #: inc/barcode.class.php:78 26 | msgid "2A0" 27 | msgstr "2A0" 28 | 29 | #: inc/barcode.class.php:77 30 | msgid "4A0" 31 | msgstr "4A0" 32 | 33 | #: inc/barcode.class.php:79 34 | msgid "A0" 35 | msgstr "A0" 36 | 37 | #: inc/barcode.class.php:80 38 | msgid "A1" 39 | msgstr "A1" 40 | 41 | #: inc/barcode.class.php:89 42 | msgid "A10" 43 | msgstr "A10" 44 | 45 | #: inc/barcode.class.php:81 46 | msgid "A2" 47 | msgstr "A2" 48 | 49 | #: inc/barcode.class.php:82 50 | msgid "A3" 51 | msgstr "A3" 52 | 53 | #: inc/barcode.class.php:83 54 | msgid "A4" 55 | msgstr "A4" 56 | 57 | #: inc/barcode.class.php:84 58 | msgid "A5" 59 | msgstr "A5" 60 | 61 | #: inc/barcode.class.php:85 62 | msgid "A6" 63 | msgstr "A6" 64 | 65 | #: inc/barcode.class.php:86 66 | msgid "A7" 67 | msgstr "A7" 68 | 69 | #: inc/barcode.class.php:87 70 | msgid "A8" 71 | msgstr "A8" 72 | 73 | #: inc/barcode.class.php:88 74 | msgid "A9" 75 | msgstr "A9" 76 | 77 | #: inc/barcode.class.php:90 78 | msgid "B0" 79 | msgstr "B0" 80 | 81 | #: inc/barcode.class.php:91 82 | msgid "B1" 83 | msgstr "B1" 84 | 85 | #: inc/barcode.class.php:100 86 | msgid "B10" 87 | msgstr "B10" 88 | 89 | #: inc/barcode.class.php:92 90 | msgid "B2" 91 | msgstr "B2" 92 | 93 | #: inc/barcode.class.php:93 94 | msgid "B3" 95 | msgstr "B3" 96 | 97 | #: inc/barcode.class.php:94 98 | msgid "B4" 99 | msgstr "B4" 100 | 101 | #: inc/barcode.class.php:95 102 | msgid "B5" 103 | msgstr "B5" 104 | 105 | #: inc/barcode.class.php:96 106 | msgid "B6" 107 | msgstr "B6" 108 | 109 | #: inc/barcode.class.php:97 110 | msgid "B7" 111 | msgstr "B7" 112 | 113 | #: inc/barcode.class.php:98 114 | msgid "B8" 115 | msgstr "B8" 116 | 117 | #: inc/barcode.class.php:99 118 | msgid "B9" 119 | msgstr "B9" 120 | 121 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 122 | #: inc/profile.class.php:50 inc/profile.class.php:86 123 | msgid "Barcode" 124 | msgstr "Barcode" 125 | 126 | #: inc/config.class.php:61 127 | msgid "Barcode plugin configuration" 128 | msgstr "Barcode plugin configuration" 129 | 130 | #: inc/config.class.php:177 131 | msgid "Barcodes sizes" 132 | msgstr "Barcodes sizes" 133 | 134 | #: inc/config.class.php:157 135 | msgid "Bottom" 136 | msgstr "Bottom" 137 | 138 | #: inc/config.class.php:190 139 | msgid "By ID" 140 | msgstr "" 141 | 142 | #: inc/config.class.php:191 143 | msgid "By serial number" 144 | msgstr "" 145 | 146 | #: inc/barcode.class.php:101 147 | msgid "C0" 148 | msgstr "C0" 149 | 150 | #: inc/barcode.class.php:102 151 | msgid "C1" 152 | msgstr "C1" 153 | 154 | #: inc/barcode.class.php:111 155 | msgid "C10" 156 | msgstr "C10" 157 | 158 | #: inc/barcode.class.php:103 159 | msgid "C2" 160 | msgstr "C2" 161 | 162 | #: inc/barcode.class.php:104 163 | msgid "C3" 164 | msgstr "C3" 165 | 166 | #: inc/barcode.class.php:105 167 | msgid "C4" 168 | msgstr "C4" 169 | 170 | #: inc/barcode.class.php:106 171 | msgid "C5" 172 | msgstr "C5" 173 | 174 | #: inc/barcode.class.php:107 175 | msgid "C6" 176 | msgstr "C6" 177 | 178 | #: inc/barcode.class.php:108 179 | msgid "C7" 180 | msgstr "C7" 181 | 182 | #: inc/barcode.class.php:109 183 | msgid "C8" 184 | msgstr "C8" 185 | 186 | #: inc/barcode.class.php:110 187 | msgid "C9" 188 | msgstr "C9" 189 | 190 | #: inc/barcode.class.php:159 191 | msgid "Code" 192 | msgstr "Code" 193 | 194 | #: inc/config.class.php:82 195 | msgid "Company logo" 196 | msgstr "Company logo" 197 | 198 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 199 | msgid "Create" 200 | msgstr "Create" 201 | 202 | #: inc/config.class.php:94 203 | msgid "Delete the logo" 204 | msgstr "" 205 | 206 | #: inc/barcode.class.php:240 207 | msgid "Display border" 208 | msgstr "Display border" 209 | 210 | #: inc/barcode.class.php:248 211 | msgid "Display labels" 212 | msgstr "" 213 | 214 | #: inc/barcode.class.php:124 215 | msgid "EXECUTIVE" 216 | msgstr "EXECUTIVE" 217 | 218 | #: inc/config.class.php:78 219 | msgid "Empty the cache" 220 | msgstr "Empty the cache" 221 | 222 | #: inc/barcode.class.php:125 223 | msgid "FOLIO" 224 | msgstr "FOLIO" 225 | 226 | #: inc/config.class.php:66 227 | msgid "General configuration" 228 | msgstr "General configuration" 229 | 230 | #: front/barcode.form.php:62 inc/barcode.class.php:514 231 | #: inc/qrcode.class.php:411 232 | msgid "Generated file" 233 | msgstr "Generated file" 234 | 235 | #: inc/barcode.class.php:157 236 | msgid "Generation" 237 | msgstr "Generation" 238 | 239 | #: inc/profile.class.php:117 240 | msgid "Generation of barcode" 241 | msgstr "Generation of barcode" 242 | 243 | #: inc/config.class.php:170 244 | msgid "Inner horizontal" 245 | msgstr "Inner horizontal" 246 | 247 | #: inc/config.class.php:173 248 | msgid "Inner vertical" 249 | msgstr "Inner vertical" 250 | 251 | #: inc/barcode.class.php:194 252 | msgid "It will generate only elements have defined field:" 253 | msgstr "It will generate only elements have defined field:" 254 | 255 | #: inc/barcode.class.php:123 256 | msgid "LEGAL" 257 | msgstr "LEGAL" 258 | 259 | #: inc/barcode.class.php:122 260 | msgid "LETTER" 261 | msgstr "LETTER" 262 | 263 | #: inc/barcode.class.php:136 264 | msgid "Landscape" 265 | msgstr "Landscape" 266 | 267 | #: inc/config.class.php:162 268 | msgid "Left" 269 | msgstr "Left" 270 | 271 | #: inc/profile.class.php:113 272 | msgid "Manage configuration" 273 | msgstr "Manage configuration" 274 | 275 | #: inc/config.class.php:152 276 | msgid "Margins" 277 | msgstr "Margins" 278 | 279 | #: inc/config.class.php:182 280 | msgid "Maximum height" 281 | msgstr "Maximum height" 282 | 283 | #: inc/config.class.php:179 284 | msgid "Maximum width" 285 | msgstr "Maximum width" 286 | 287 | #: inc/barcode.class.php:230 288 | msgid "Not use first xx barcodes" 289 | msgstr "Not use first xx barcodes" 290 | 291 | #: inc/barcode.class.php:174 292 | msgid "Number of copies" 293 | msgstr "Number of copies" 294 | 295 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 296 | #: inc/config.class.php:148 297 | msgid "Orientation" 298 | msgstr "Orientation" 299 | 300 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 301 | #: inc/config.class.php:145 302 | msgid "Page size" 303 | msgstr "Page size" 304 | 305 | #: inc/barcode.class.php:135 306 | msgid "Portrait" 307 | msgstr "Portrait" 308 | 309 | #: hook.php:49 310 | msgid "Print QRcodes" 311 | msgstr "Print QRcodes" 312 | 313 | #: hook.php:46 314 | msgid "Print barcodes" 315 | msgstr "Print barcodes" 316 | 317 | #: inc/config.class.php:269 318 | msgid "QRcode" 319 | msgstr "QRcode" 320 | 321 | #: inc/barcode.class.php:112 322 | msgid "RA0" 323 | msgstr "RA0" 324 | 325 | #: inc/barcode.class.php:113 326 | msgid "RA1" 327 | msgstr "RA1" 328 | 329 | #: inc/barcode.class.php:114 330 | msgid "RA2" 331 | msgstr "RA2" 332 | 333 | #: inc/barcode.class.php:115 334 | msgid "RA3" 335 | msgstr "RA3" 336 | 337 | #: inc/barcode.class.php:116 338 | msgid "RA4" 339 | msgstr "RA4" 340 | 341 | #: inc/config.class.php:165 342 | msgid "Right" 343 | msgstr "Right" 344 | 345 | #: inc/barcode.class.php:117 346 | msgid "SRA0" 347 | msgstr "SRA0" 348 | 349 | #: inc/barcode.class.php:118 350 | msgid "SRA1" 351 | msgstr "SRA1" 352 | 353 | #: inc/barcode.class.php:119 354 | msgid "SRA2" 355 | msgstr "SRA2" 356 | 357 | #: inc/barcode.class.php:120 358 | msgid "SRA3" 359 | msgstr "SRA3" 360 | 361 | #: inc/barcode.class.php:121 362 | msgid "SRA4" 363 | msgstr "SRA4" 364 | 365 | #: inc/config.class.php:196 366 | msgid "Text display options" 367 | msgstr "" 368 | 369 | #: inc/config.class.php:198 370 | msgid "Text size" 371 | msgstr "" 372 | 373 | #: inc/config.class.php:201 374 | msgid "Text spacing between lines" 375 | msgstr "" 376 | 377 | #: front/config.form.php:56 378 | msgid "The cache has been emptied." 379 | msgstr "The cache has been emptied." 380 | 381 | #: inc/barcode.class.php:286 382 | msgid "The generation of some barcodes produced errors." 383 | msgstr "The generation of some barcodes produced errors." 384 | 385 | #: front/config.form.php:61 386 | msgid "The logo has been removed." 387 | msgstr "" 388 | 389 | #: inc/barcode.class.php:196 390 | msgid "Ticket number" 391 | msgstr "Ticket number" 392 | 393 | #: inc/config.class.php:154 394 | msgid "Top" 395 | msgstr "Top" 396 | 397 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 398 | msgid "Type" 399 | msgstr "Type" 400 | 401 | #: inc/config.class.php:188 402 | msgid "URL" 403 | msgstr "" 404 | 405 | #: inc/config.class.php:264 406 | msgid "code128" 407 | msgstr "code128" 408 | 409 | #: inc/config.class.php:263 410 | msgid "code39" 411 | msgstr "code39" 412 | 413 | #: inc/config.class.php:265 414 | msgid "ean13" 415 | msgstr "ean13" 416 | 417 | #: inc/config.class.php:266 418 | msgid "int25" 419 | msgstr "int25" 420 | 421 | #: inc/config.class.php:267 422 | msgid "postnet" 423 | msgstr "postnet" 424 | 425 | #: inc/config.class.php:268 426 | msgid "upca" 427 | msgstr "upca" 428 | -------------------------------------------------------------------------------- /locales/es_419.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/es_419.mo -------------------------------------------------------------------------------- /locales/es_419.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Johan Cwiklinski, 2017 8 | # Cédric Anne, 2018 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: PACKAGE VERSION\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 16 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 17 | "Last-Translator: Cédric Anne, 2018\n" 18 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/pluginsGLPI/teams/73419/es_419/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: es_419\n" 23 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 24 | 25 | #: inc/barcode.class.php:78 26 | msgid "2A0" 27 | msgstr "2A0" 28 | 29 | #: inc/barcode.class.php:77 30 | msgid "4A0" 31 | msgstr "4A0" 32 | 33 | #: inc/barcode.class.php:79 34 | msgid "A0" 35 | msgstr "A0" 36 | 37 | #: inc/barcode.class.php:80 38 | msgid "A1" 39 | msgstr "A1" 40 | 41 | #: inc/barcode.class.php:89 42 | msgid "A10" 43 | msgstr "A10" 44 | 45 | #: inc/barcode.class.php:81 46 | msgid "A2" 47 | msgstr "A2" 48 | 49 | #: inc/barcode.class.php:82 50 | msgid "A3" 51 | msgstr "A3" 52 | 53 | #: inc/barcode.class.php:83 54 | msgid "A4" 55 | msgstr "A4" 56 | 57 | #: inc/barcode.class.php:84 58 | msgid "A5" 59 | msgstr "A5" 60 | 61 | #: inc/barcode.class.php:85 62 | msgid "A6" 63 | msgstr "A6" 64 | 65 | #: inc/barcode.class.php:86 66 | msgid "A7" 67 | msgstr "A7" 68 | 69 | #: inc/barcode.class.php:87 70 | msgid "A8" 71 | msgstr "A8" 72 | 73 | #: inc/barcode.class.php:88 74 | msgid "A9" 75 | msgstr "A9" 76 | 77 | #: inc/barcode.class.php:90 78 | msgid "B0" 79 | msgstr "B0" 80 | 81 | #: inc/barcode.class.php:91 82 | msgid "B1" 83 | msgstr "B1" 84 | 85 | #: inc/barcode.class.php:100 86 | msgid "B10" 87 | msgstr "B10" 88 | 89 | #: inc/barcode.class.php:92 90 | msgid "B2" 91 | msgstr "B2" 92 | 93 | #: inc/barcode.class.php:93 94 | msgid "B3" 95 | msgstr "B3" 96 | 97 | #: inc/barcode.class.php:94 98 | msgid "B4" 99 | msgstr "B4" 100 | 101 | #: inc/barcode.class.php:95 102 | msgid "B5" 103 | msgstr "B5" 104 | 105 | #: inc/barcode.class.php:96 106 | msgid "B6" 107 | msgstr "B6" 108 | 109 | #: inc/barcode.class.php:97 110 | msgid "B7" 111 | msgstr "B7" 112 | 113 | #: inc/barcode.class.php:98 114 | msgid "B8" 115 | msgstr "B8" 116 | 117 | #: inc/barcode.class.php:99 118 | msgid "B9" 119 | msgstr "B9" 120 | 121 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 122 | #: inc/profile.class.php:50 inc/profile.class.php:86 123 | msgid "Barcode" 124 | msgstr "Código de Barra" 125 | 126 | #: inc/config.class.php:61 127 | msgid "Barcode plugin configuration" 128 | msgstr "Configuración de plugin Barcode" 129 | 130 | #: inc/config.class.php:177 131 | msgid "Barcodes sizes" 132 | msgstr "Medidas de código de barras" 133 | 134 | #: inc/config.class.php:157 135 | msgid "Bottom" 136 | msgstr "Final" 137 | 138 | #: inc/config.class.php:190 139 | msgid "By ID" 140 | msgstr "" 141 | 142 | #: inc/config.class.php:191 143 | msgid "By serial number" 144 | msgstr "" 145 | 146 | #: inc/barcode.class.php:101 147 | msgid "C0" 148 | msgstr "C0" 149 | 150 | #: inc/barcode.class.php:102 151 | msgid "C1" 152 | msgstr "C1" 153 | 154 | #: inc/barcode.class.php:111 155 | msgid "C10" 156 | msgstr "C10" 157 | 158 | #: inc/barcode.class.php:103 159 | msgid "C2" 160 | msgstr "C2" 161 | 162 | #: inc/barcode.class.php:104 163 | msgid "C3" 164 | msgstr "C3" 165 | 166 | #: inc/barcode.class.php:105 167 | msgid "C4" 168 | msgstr "C4" 169 | 170 | #: inc/barcode.class.php:106 171 | msgid "C5" 172 | msgstr "C5" 173 | 174 | #: inc/barcode.class.php:107 175 | msgid "C6" 176 | msgstr "C6" 177 | 178 | #: inc/barcode.class.php:108 179 | msgid "C7" 180 | msgstr "C7" 181 | 182 | #: inc/barcode.class.php:109 183 | msgid "C8" 184 | msgstr "C8" 185 | 186 | #: inc/barcode.class.php:110 187 | msgid "C9" 188 | msgstr "C9" 189 | 190 | #: inc/barcode.class.php:159 191 | msgid "Code" 192 | msgstr "Código" 193 | 194 | #: inc/config.class.php:82 195 | msgid "Company logo" 196 | msgstr "Logo de la empresa" 197 | 198 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 199 | msgid "Create" 200 | msgstr "Crear" 201 | 202 | #: inc/config.class.php:94 203 | msgid "Delete the logo" 204 | msgstr "" 205 | 206 | #: inc/barcode.class.php:240 207 | msgid "Display border" 208 | msgstr "Mostrar borde" 209 | 210 | #: inc/barcode.class.php:248 211 | msgid "Display labels" 212 | msgstr "" 213 | 214 | #: inc/barcode.class.php:124 215 | msgid "EXECUTIVE" 216 | msgstr "Ejecutivo" 217 | 218 | #: inc/config.class.php:78 219 | msgid "Empty the cache" 220 | msgstr "La cache esta vacia" 221 | 222 | #: inc/barcode.class.php:125 223 | msgid "FOLIO" 224 | msgstr "FOLIO" 225 | 226 | #: inc/config.class.php:66 227 | msgid "General configuration" 228 | msgstr "Configuración General" 229 | 230 | #: front/barcode.form.php:62 inc/barcode.class.php:514 231 | #: inc/qrcode.class.php:411 232 | msgid "Generated file" 233 | msgstr "Archivo generado" 234 | 235 | #: inc/barcode.class.php:157 236 | msgid "Generation" 237 | msgstr "Archivo Generado" 238 | 239 | #: inc/profile.class.php:117 240 | msgid "Generation of barcode" 241 | msgstr "Generación de código de barras" 242 | 243 | #: inc/config.class.php:170 244 | msgid "Inner horizontal" 245 | msgstr "Margen interno horizontal" 246 | 247 | #: inc/config.class.php:173 248 | msgid "Inner vertical" 249 | msgstr "Margen interno vertical" 250 | 251 | #: inc/barcode.class.php:194 252 | msgid "It will generate only elements have defined field:" 253 | msgstr "Unicamente se generara elementos para que tenga campo definido" 254 | 255 | #: inc/barcode.class.php:123 256 | msgid "LEGAL" 257 | msgstr "Oficio" 258 | 259 | #: inc/barcode.class.php:122 260 | msgid "LETTER" 261 | msgstr "Carta" 262 | 263 | #: inc/barcode.class.php:136 264 | msgid "Landscape" 265 | msgstr "Horizontal" 266 | 267 | #: inc/config.class.php:162 268 | msgid "Left" 269 | msgstr "Izquierda" 270 | 271 | #: inc/profile.class.php:113 272 | msgid "Manage configuration" 273 | msgstr "Administrar configuración" 274 | 275 | #: inc/config.class.php:152 276 | msgid "Margins" 277 | msgstr "Margenes" 278 | 279 | #: inc/config.class.php:182 280 | msgid "Maximum height" 281 | msgstr "Altura maxima" 282 | 283 | #: inc/config.class.php:179 284 | msgid "Maximum width" 285 | msgstr "anchura maxima" 286 | 287 | #: inc/barcode.class.php:230 288 | msgid "Not use first xx barcodes" 289 | msgstr "No utilizar código de barras xx primero" 290 | 291 | #: inc/barcode.class.php:174 292 | msgid "Number of copies" 293 | msgstr "Número de copias" 294 | 295 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 296 | #: inc/config.class.php:148 297 | msgid "Orientation" 298 | msgstr "Orientación" 299 | 300 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 301 | #: inc/config.class.php:145 302 | msgid "Page size" 303 | msgstr "Tamaño de página" 304 | 305 | #: inc/barcode.class.php:135 306 | msgid "Portrait" 307 | msgstr "Vertical " 308 | 309 | #: hook.php:49 310 | msgid "Print QRcodes" 311 | msgstr "Imprimir Código QR" 312 | 313 | #: hook.php:46 314 | msgid "Print barcodes" 315 | msgstr "Imprimir Código de Barra" 316 | 317 | #: inc/config.class.php:269 318 | msgid "QRcode" 319 | msgstr "QRcode" 320 | 321 | #: inc/barcode.class.php:112 322 | msgid "RA0" 323 | msgstr "RA0" 324 | 325 | #: inc/barcode.class.php:113 326 | msgid "RA1" 327 | msgstr "RA1" 328 | 329 | #: inc/barcode.class.php:114 330 | msgid "RA2" 331 | msgstr "RA2" 332 | 333 | #: inc/barcode.class.php:115 334 | msgid "RA3" 335 | msgstr "RA3" 336 | 337 | #: inc/barcode.class.php:116 338 | msgid "RA4" 339 | msgstr "RA4" 340 | 341 | #: inc/config.class.php:165 342 | msgid "Right" 343 | msgstr "Derecha" 344 | 345 | #: inc/barcode.class.php:117 346 | msgid "SRA0" 347 | msgstr "SRA0" 348 | 349 | #: inc/barcode.class.php:118 350 | msgid "SRA1" 351 | msgstr "SRA1" 352 | 353 | #: inc/barcode.class.php:119 354 | msgid "SRA2" 355 | msgstr "SRA2" 356 | 357 | #: inc/barcode.class.php:120 358 | msgid "SRA3" 359 | msgstr "SRA3" 360 | 361 | #: inc/barcode.class.php:121 362 | msgid "SRA4" 363 | msgstr "SRA4" 364 | 365 | #: inc/config.class.php:196 366 | msgid "Text display options" 367 | msgstr "" 368 | 369 | #: inc/config.class.php:198 370 | msgid "Text size" 371 | msgstr "" 372 | 373 | #: inc/config.class.php:201 374 | msgid "Text spacing between lines" 375 | msgstr "" 376 | 377 | #: front/config.form.php:56 378 | msgid "The cache has been emptied." 379 | msgstr "Se ha limpiado la cache" 380 | 381 | #: inc/barcode.class.php:286 382 | msgid "The generation of some barcodes produced errors." 383 | msgstr "Se produjeron errores en la generación de código de barras" 384 | 385 | #: front/config.form.php:61 386 | msgid "The logo has been removed." 387 | msgstr "" 388 | 389 | #: inc/barcode.class.php:196 390 | msgid "Ticket number" 391 | msgstr "Número de boleta" 392 | 393 | #: inc/config.class.php:154 394 | msgid "Top" 395 | msgstr "Principio" 396 | 397 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 398 | msgid "Type" 399 | msgstr "Tipo" 400 | 401 | #: inc/config.class.php:188 402 | msgid "URL" 403 | msgstr "" 404 | 405 | #: inc/config.class.php:264 406 | msgid "code128" 407 | msgstr "code128" 408 | 409 | #: inc/config.class.php:263 410 | msgid "code39" 411 | msgstr "code39" 412 | 413 | #: inc/config.class.php:265 414 | msgid "ean13" 415 | msgstr "ean13" 416 | 417 | #: inc/config.class.php:266 418 | msgid "int25" 419 | msgstr "int25" 420 | 421 | #: inc/config.class.php:267 422 | msgid "postnet" 423 | msgstr "postnet" 424 | 425 | #: inc/config.class.php:268 426 | msgid "upca" 427 | msgstr "upca" 428 | -------------------------------------------------------------------------------- /locales/es_AR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/es_AR.mo -------------------------------------------------------------------------------- /locales/es_AR.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Johan Cwiklinski, 2017 8 | # Alexander Salas Bastidas , 2017 9 | # Cédric Anne, 2018 10 | # 11 | #, fuzzy 12 | msgid "" 13 | msgstr "" 14 | "Project-Id-Version: PACKAGE VERSION\n" 15 | "Report-Msgid-Bugs-To: \n" 16 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 17 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 18 | "Last-Translator: Cédric Anne, 2018\n" 19 | "Language-Team: Spanish (Argentina) (https://www.transifex.com/pluginsGLPI/teams/73419/es_AR/)\n" 20 | "MIME-Version: 1.0\n" 21 | "Content-Type: text/plain; charset=UTF-8\n" 22 | "Content-Transfer-Encoding: 8bit\n" 23 | "Language: es_AR\n" 24 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 25 | 26 | #: inc/barcode.class.php:78 27 | msgid "2A0" 28 | msgstr "2A0" 29 | 30 | #: inc/barcode.class.php:77 31 | msgid "4A0" 32 | msgstr "4A0" 33 | 34 | #: inc/barcode.class.php:79 35 | msgid "A0" 36 | msgstr "A0" 37 | 38 | #: inc/barcode.class.php:80 39 | msgid "A1" 40 | msgstr "A1" 41 | 42 | #: inc/barcode.class.php:89 43 | msgid "A10" 44 | msgstr "A10" 45 | 46 | #: inc/barcode.class.php:81 47 | msgid "A2" 48 | msgstr "A2" 49 | 50 | #: inc/barcode.class.php:82 51 | msgid "A3" 52 | msgstr "A3" 53 | 54 | #: inc/barcode.class.php:83 55 | msgid "A4" 56 | msgstr "A4" 57 | 58 | #: inc/barcode.class.php:84 59 | msgid "A5" 60 | msgstr "A5" 61 | 62 | #: inc/barcode.class.php:85 63 | msgid "A6" 64 | msgstr "A6" 65 | 66 | #: inc/barcode.class.php:86 67 | msgid "A7" 68 | msgstr "A7" 69 | 70 | #: inc/barcode.class.php:87 71 | msgid "A8" 72 | msgstr "A8" 73 | 74 | #: inc/barcode.class.php:88 75 | msgid "A9" 76 | msgstr "A9" 77 | 78 | #: inc/barcode.class.php:90 79 | msgid "B0" 80 | msgstr "B0" 81 | 82 | #: inc/barcode.class.php:91 83 | msgid "B1" 84 | msgstr "B1" 85 | 86 | #: inc/barcode.class.php:100 87 | msgid "B10" 88 | msgstr "B10" 89 | 90 | #: inc/barcode.class.php:92 91 | msgid "B2" 92 | msgstr "B2" 93 | 94 | #: inc/barcode.class.php:93 95 | msgid "B3" 96 | msgstr "B3" 97 | 98 | #: inc/barcode.class.php:94 99 | msgid "B4" 100 | msgstr "B4" 101 | 102 | #: inc/barcode.class.php:95 103 | msgid "B5" 104 | msgstr "B5" 105 | 106 | #: inc/barcode.class.php:96 107 | msgid "B6" 108 | msgstr "B6" 109 | 110 | #: inc/barcode.class.php:97 111 | msgid "B7" 112 | msgstr "B7" 113 | 114 | #: inc/barcode.class.php:98 115 | msgid "B8" 116 | msgstr "B8" 117 | 118 | #: inc/barcode.class.php:99 119 | msgid "B9" 120 | msgstr "B9" 121 | 122 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 123 | #: inc/profile.class.php:50 inc/profile.class.php:86 124 | msgid "Barcode" 125 | msgstr "Código de barra" 126 | 127 | #: inc/config.class.php:61 128 | msgid "Barcode plugin configuration" 129 | msgstr "Configuración del plugin código de barra" 130 | 131 | #: inc/config.class.php:177 132 | msgid "Barcodes sizes" 133 | msgstr "Tamaño de código" 134 | 135 | #: inc/config.class.php:157 136 | msgid "Bottom" 137 | msgstr "Inferior" 138 | 139 | #: inc/config.class.php:190 140 | msgid "By ID" 141 | msgstr "" 142 | 143 | #: inc/config.class.php:191 144 | msgid "By serial number" 145 | msgstr "" 146 | 147 | #: inc/barcode.class.php:101 148 | msgid "C0" 149 | msgstr "C0" 150 | 151 | #: inc/barcode.class.php:102 152 | msgid "C1" 153 | msgstr "C1" 154 | 155 | #: inc/barcode.class.php:111 156 | msgid "C10" 157 | msgstr "C10" 158 | 159 | #: inc/barcode.class.php:103 160 | msgid "C2" 161 | msgstr "C2" 162 | 163 | #: inc/barcode.class.php:104 164 | msgid "C3" 165 | msgstr "C3" 166 | 167 | #: inc/barcode.class.php:105 168 | msgid "C4" 169 | msgstr "C4" 170 | 171 | #: inc/barcode.class.php:106 172 | msgid "C5" 173 | msgstr "C5" 174 | 175 | #: inc/barcode.class.php:107 176 | msgid "C6" 177 | msgstr "C6" 178 | 179 | #: inc/barcode.class.php:108 180 | msgid "C7" 181 | msgstr "C7" 182 | 183 | #: inc/barcode.class.php:109 184 | msgid "C8" 185 | msgstr "C8" 186 | 187 | #: inc/barcode.class.php:110 188 | msgid "C9" 189 | msgstr "C9" 190 | 191 | #: inc/barcode.class.php:159 192 | msgid "Code" 193 | msgstr "Código" 194 | 195 | #: inc/config.class.php:82 196 | msgid "Company logo" 197 | msgstr "Logo de la empresa" 198 | 199 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 200 | msgid "Create" 201 | msgstr "Crear" 202 | 203 | #: inc/config.class.php:94 204 | msgid "Delete the logo" 205 | msgstr "" 206 | 207 | #: inc/barcode.class.php:240 208 | msgid "Display border" 209 | msgstr "Mostrar borde" 210 | 211 | #: inc/barcode.class.php:248 212 | msgid "Display labels" 213 | msgstr "" 214 | 215 | #: inc/barcode.class.php:124 216 | msgid "EXECUTIVE" 217 | msgstr "EJECUTIVO" 218 | 219 | #: inc/config.class.php:78 220 | msgid "Empty the cache" 221 | msgstr "Caché vacío" 222 | 223 | #: inc/barcode.class.php:125 224 | msgid "FOLIO" 225 | msgstr "OFICIO" 226 | 227 | #: inc/config.class.php:66 228 | msgid "General configuration" 229 | msgstr "Configuración general" 230 | 231 | #: front/barcode.form.php:62 inc/barcode.class.php:514 232 | #: inc/qrcode.class.php:411 233 | msgid "Generated file" 234 | msgstr "Archivo generado" 235 | 236 | #: inc/barcode.class.php:157 237 | msgid "Generation" 238 | msgstr "Generación" 239 | 240 | #: inc/profile.class.php:117 241 | msgid "Generation of barcode" 242 | msgstr "Generación de código de barras" 243 | 244 | #: inc/config.class.php:170 245 | msgid "Inner horizontal" 246 | msgstr "Interior horizontal" 247 | 248 | #: inc/config.class.php:173 249 | msgid "Inner vertical" 250 | msgstr "Interior Vertical" 251 | 252 | #: inc/barcode.class.php:194 253 | msgid "It will generate only elements have defined field:" 254 | msgstr "Se generará sólo elementos han definido el campo:" 255 | 256 | #: inc/barcode.class.php:123 257 | msgid "LEGAL" 258 | msgstr "LEGAL" 259 | 260 | #: inc/barcode.class.php:122 261 | msgid "LETTER" 262 | msgstr "CARTA" 263 | 264 | #: inc/barcode.class.php:136 265 | msgid "Landscape" 266 | msgstr "Vertical" 267 | 268 | #: inc/config.class.php:162 269 | msgid "Left" 270 | msgstr "Izquierda" 271 | 272 | #: inc/profile.class.php:113 273 | msgid "Manage configuration" 274 | msgstr "Gestión de configuración" 275 | 276 | #: inc/config.class.php:152 277 | msgid "Margins" 278 | msgstr "Márgenes" 279 | 280 | #: inc/config.class.php:182 281 | msgid "Maximum height" 282 | msgstr "Altura máxima" 283 | 284 | #: inc/config.class.php:179 285 | msgid "Maximum width" 286 | msgstr "Ancho máximo" 287 | 288 | #: inc/barcode.class.php:230 289 | msgid "Not use first xx barcodes" 290 | msgstr "No usar los primeros xx códigos de barras" 291 | 292 | #: inc/barcode.class.php:174 293 | msgid "Number of copies" 294 | msgstr "Número de copias" 295 | 296 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 297 | #: inc/config.class.php:148 298 | msgid "Orientation" 299 | msgstr "Orientación" 300 | 301 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 302 | #: inc/config.class.php:145 303 | msgid "Page size" 304 | msgstr "Tamaño de página" 305 | 306 | #: inc/barcode.class.php:135 307 | msgid "Portrait" 308 | msgstr "Apaisado" 309 | 310 | #: hook.php:49 311 | msgid "Print QRcodes" 312 | msgstr "Imprimir código QR" 313 | 314 | #: hook.php:46 315 | msgid "Print barcodes" 316 | msgstr "Imprimir códigos de barras" 317 | 318 | #: inc/config.class.php:269 319 | msgid "QRcode" 320 | msgstr "Código QR" 321 | 322 | #: inc/barcode.class.php:112 323 | msgid "RA0" 324 | msgstr "RA0" 325 | 326 | #: inc/barcode.class.php:113 327 | msgid "RA1" 328 | msgstr "RA1" 329 | 330 | #: inc/barcode.class.php:114 331 | msgid "RA2" 332 | msgstr "RA2" 333 | 334 | #: inc/barcode.class.php:115 335 | msgid "RA3" 336 | msgstr "RA3" 337 | 338 | #: inc/barcode.class.php:116 339 | msgid "RA4" 340 | msgstr "RA4" 341 | 342 | #: inc/config.class.php:165 343 | msgid "Right" 344 | msgstr "Derecha" 345 | 346 | #: inc/barcode.class.php:117 347 | msgid "SRA0" 348 | msgstr "SRA0" 349 | 350 | #: inc/barcode.class.php:118 351 | msgid "SRA1" 352 | msgstr "SRA1" 353 | 354 | #: inc/barcode.class.php:119 355 | msgid "SRA2" 356 | msgstr "SRA2" 357 | 358 | #: inc/barcode.class.php:120 359 | msgid "SRA3" 360 | msgstr "SRA3" 361 | 362 | #: inc/barcode.class.php:121 363 | msgid "SRA4" 364 | msgstr "SRA4" 365 | 366 | #: inc/config.class.php:196 367 | msgid "Text display options" 368 | msgstr "" 369 | 370 | #: inc/config.class.php:198 371 | msgid "Text size" 372 | msgstr "" 373 | 374 | #: inc/config.class.php:201 375 | msgid "Text spacing between lines" 376 | msgstr "" 377 | 378 | #: front/config.form.php:56 379 | msgid "The cache has been emptied." 380 | msgstr "Se ha vaciado la cache." 381 | 382 | #: inc/barcode.class.php:286 383 | msgid "The generation of some barcodes produced errors." 384 | msgstr "Se produjo error en la generación de algunos códigos de barra" 385 | 386 | #: front/config.form.php:61 387 | msgid "The logo has been removed." 388 | msgstr "" 389 | 390 | #: inc/barcode.class.php:196 391 | msgid "Ticket number" 392 | msgstr "Número de ficha" 393 | 394 | #: inc/config.class.php:154 395 | msgid "Top" 396 | msgstr "Superior" 397 | 398 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 399 | msgid "Type" 400 | msgstr "Tipo" 401 | 402 | #: inc/config.class.php:188 403 | msgid "URL" 404 | msgstr "" 405 | 406 | #: inc/config.class.php:264 407 | msgid "code128" 408 | msgstr "Código 128" 409 | 410 | #: inc/config.class.php:263 411 | msgid "code39" 412 | msgstr "Código 39" 413 | 414 | #: inc/config.class.php:265 415 | msgid "ean13" 416 | msgstr "Ean 13" 417 | 418 | #: inc/config.class.php:266 419 | msgid "int25" 420 | msgstr "Int 25" 421 | 422 | #: inc/config.class.php:267 423 | msgid "postnet" 424 | msgstr "Posnet" 425 | 426 | #: inc/config.class.php:268 427 | msgid "upca" 428 | msgstr "UPCA" 429 | -------------------------------------------------------------------------------- /locales/es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/es_ES.mo -------------------------------------------------------------------------------- /locales/es_GT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/es_GT.mo -------------------------------------------------------------------------------- /locales/es_GT.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alexander Salas Bastidas , 2017 8 | # Cédric Anne, 2018 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: PACKAGE VERSION\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 16 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 17 | "Last-Translator: Cédric Anne, 2018\n" 18 | "Language-Team: Spanish (Guatemala) (https://www.transifex.com/pluginsGLPI/teams/73419/es_GT/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: es_GT\n" 23 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 24 | 25 | #: inc/barcode.class.php:78 26 | msgid "2A0" 27 | msgstr "2A0" 28 | 29 | #: inc/barcode.class.php:77 30 | msgid "4A0" 31 | msgstr "4A0" 32 | 33 | #: inc/barcode.class.php:79 34 | msgid "A0" 35 | msgstr "A0" 36 | 37 | #: inc/barcode.class.php:80 38 | msgid "A1" 39 | msgstr "A1" 40 | 41 | #: inc/barcode.class.php:89 42 | msgid "A10" 43 | msgstr "A10" 44 | 45 | #: inc/barcode.class.php:81 46 | msgid "A2" 47 | msgstr "A2" 48 | 49 | #: inc/barcode.class.php:82 50 | msgid "A3" 51 | msgstr "A3" 52 | 53 | #: inc/barcode.class.php:83 54 | msgid "A4" 55 | msgstr "A4" 56 | 57 | #: inc/barcode.class.php:84 58 | msgid "A5" 59 | msgstr "A5" 60 | 61 | #: inc/barcode.class.php:85 62 | msgid "A6" 63 | msgstr "A6" 64 | 65 | #: inc/barcode.class.php:86 66 | msgid "A7" 67 | msgstr "A7" 68 | 69 | #: inc/barcode.class.php:87 70 | msgid "A8" 71 | msgstr "A8" 72 | 73 | #: inc/barcode.class.php:88 74 | msgid "A9" 75 | msgstr "A9" 76 | 77 | #: inc/barcode.class.php:90 78 | msgid "B0" 79 | msgstr "B0" 80 | 81 | #: inc/barcode.class.php:91 82 | msgid "B1" 83 | msgstr "B1" 84 | 85 | #: inc/barcode.class.php:100 86 | msgid "B10" 87 | msgstr "B10" 88 | 89 | #: inc/barcode.class.php:92 90 | msgid "B2" 91 | msgstr "B2" 92 | 93 | #: inc/barcode.class.php:93 94 | msgid "B3" 95 | msgstr "B3" 96 | 97 | #: inc/barcode.class.php:94 98 | msgid "B4" 99 | msgstr "B4" 100 | 101 | #: inc/barcode.class.php:95 102 | msgid "B5" 103 | msgstr "B5" 104 | 105 | #: inc/barcode.class.php:96 106 | msgid "B6" 107 | msgstr "B6" 108 | 109 | #: inc/barcode.class.php:97 110 | msgid "B7" 111 | msgstr "B7" 112 | 113 | #: inc/barcode.class.php:98 114 | msgid "B8" 115 | msgstr "B8" 116 | 117 | #: inc/barcode.class.php:99 118 | msgid "B9" 119 | msgstr "B9" 120 | 121 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 122 | #: inc/profile.class.php:50 inc/profile.class.php:86 123 | msgid "Barcode" 124 | msgstr "Código de barras" 125 | 126 | #: inc/config.class.php:61 127 | msgid "Barcode plugin configuration" 128 | msgstr "Configuración del plugin de código de barras" 129 | 130 | #: inc/config.class.php:177 131 | msgid "Barcodes sizes" 132 | msgstr "Tamaños de códigos de barras" 133 | 134 | #: inc/config.class.php:157 135 | msgid "Bottom" 136 | msgstr "Parte inferior" 137 | 138 | #: inc/config.class.php:190 139 | msgid "By ID" 140 | msgstr "" 141 | 142 | #: inc/config.class.php:191 143 | msgid "By serial number" 144 | msgstr "" 145 | 146 | #: inc/barcode.class.php:101 147 | msgid "C0" 148 | msgstr "C0" 149 | 150 | #: inc/barcode.class.php:102 151 | msgid "C1" 152 | msgstr "C1" 153 | 154 | #: inc/barcode.class.php:111 155 | msgid "C10" 156 | msgstr "C10" 157 | 158 | #: inc/barcode.class.php:103 159 | msgid "C2" 160 | msgstr "C2" 161 | 162 | #: inc/barcode.class.php:104 163 | msgid "C3" 164 | msgstr "C3" 165 | 166 | #: inc/barcode.class.php:105 167 | msgid "C4" 168 | msgstr "C4" 169 | 170 | #: inc/barcode.class.php:106 171 | msgid "C5" 172 | msgstr "C5" 173 | 174 | #: inc/barcode.class.php:107 175 | msgid "C6" 176 | msgstr "C6" 177 | 178 | #: inc/barcode.class.php:108 179 | msgid "C7" 180 | msgstr "C7" 181 | 182 | #: inc/barcode.class.php:109 183 | msgid "C8" 184 | msgstr "C8" 185 | 186 | #: inc/barcode.class.php:110 187 | msgid "C9" 188 | msgstr "C9" 189 | 190 | #: inc/barcode.class.php:159 191 | msgid "Code" 192 | msgstr "Código" 193 | 194 | #: inc/config.class.php:82 195 | msgid "Company logo" 196 | msgstr "Logotipo de la empresa" 197 | 198 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 199 | msgid "Create" 200 | msgstr "Crear" 201 | 202 | #: inc/config.class.php:94 203 | msgid "Delete the logo" 204 | msgstr "" 205 | 206 | #: inc/barcode.class.php:240 207 | msgid "Display border" 208 | msgstr "Frontera de la pantalla" 209 | 210 | #: inc/barcode.class.php:248 211 | msgid "Display labels" 212 | msgstr "" 213 | 214 | #: inc/barcode.class.php:124 215 | msgid "EXECUTIVE" 216 | msgstr "EJECUTIVO" 217 | 218 | #: inc/config.class.php:78 219 | msgid "Empty the cache" 220 | msgstr "Vaciar la caché" 221 | 222 | #: inc/barcode.class.php:125 223 | msgid "FOLIO" 224 | msgstr "FOLIO" 225 | 226 | #: inc/config.class.php:66 227 | msgid "General configuration" 228 | msgstr "Configuración general" 229 | 230 | #: front/barcode.form.php:62 inc/barcode.class.php:514 231 | #: inc/qrcode.class.php:411 232 | msgid "Generated file" 233 | msgstr "Archivo generado" 234 | 235 | #: inc/barcode.class.php:157 236 | msgid "Generation" 237 | msgstr "Generación" 238 | 239 | #: inc/profile.class.php:117 240 | msgid "Generation of barcode" 241 | msgstr "Generación de código de barras" 242 | 243 | #: inc/config.class.php:170 244 | msgid "Inner horizontal" 245 | msgstr "Horizontal interna" 246 | 247 | #: inc/config.class.php:173 248 | msgid "Inner vertical" 249 | msgstr "Vertical interior" 250 | 251 | #: inc/barcode.class.php:194 252 | msgid "It will generate only elements have defined field:" 253 | msgstr "Se generará sólo elementos han definido el campo:" 254 | 255 | #: inc/barcode.class.php:123 256 | msgid "LEGAL" 257 | msgstr "LEGAL" 258 | 259 | #: inc/barcode.class.php:122 260 | msgid "LETTER" 261 | msgstr "LETRA" 262 | 263 | #: inc/barcode.class.php:136 264 | msgid "Landscape" 265 | msgstr "Paisaje" 266 | 267 | #: inc/config.class.php:162 268 | msgid "Left" 269 | msgstr "Izquierda" 270 | 271 | #: inc/profile.class.php:113 272 | msgid "Manage configuration" 273 | msgstr "Gestión de configuración" 274 | 275 | #: inc/config.class.php:152 276 | msgid "Margins" 277 | msgstr "Márgenes de" 278 | 279 | #: inc/config.class.php:182 280 | msgid "Maximum height" 281 | msgstr "Altura máxima" 282 | 283 | #: inc/config.class.php:179 284 | msgid "Maximum width" 285 | msgstr "Anchura máxima" 286 | 287 | #: inc/barcode.class.php:230 288 | msgid "Not use first xx barcodes" 289 | msgstr "No uso primer xx códigos de barras" 290 | 291 | #: inc/barcode.class.php:174 292 | msgid "Number of copies" 293 | msgstr "Número de copias" 294 | 295 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 296 | #: inc/config.class.php:148 297 | msgid "Orientation" 298 | msgstr "Orientación" 299 | 300 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 301 | #: inc/config.class.php:145 302 | msgid "Page size" 303 | msgstr "Tamaño de la página" 304 | 305 | #: inc/barcode.class.php:135 306 | msgid "Portrait" 307 | msgstr "Retrato" 308 | 309 | #: hook.php:49 310 | msgid "Print QRcodes" 311 | msgstr "Imprimir QRS" 312 | 313 | #: hook.php:46 314 | msgid "Print barcodes" 315 | msgstr "Imprimir códigos de barras" 316 | 317 | #: inc/config.class.php:269 318 | msgid "QRcode" 319 | msgstr "QRcode" 320 | 321 | #: inc/barcode.class.php:112 322 | msgid "RA0" 323 | msgstr "RA0" 324 | 325 | #: inc/barcode.class.php:113 326 | msgid "RA1" 327 | msgstr "RA1" 328 | 329 | #: inc/barcode.class.php:114 330 | msgid "RA2" 331 | msgstr "RA2" 332 | 333 | #: inc/barcode.class.php:115 334 | msgid "RA3" 335 | msgstr "RA3" 336 | 337 | #: inc/barcode.class.php:116 338 | msgid "RA4" 339 | msgstr "RA4" 340 | 341 | #: inc/config.class.php:165 342 | msgid "Right" 343 | msgstr "Correcto" 344 | 345 | #: inc/barcode.class.php:117 346 | msgid "SRA0" 347 | msgstr "SRA0" 348 | 349 | #: inc/barcode.class.php:118 350 | msgid "SRA1" 351 | msgstr "SRA1" 352 | 353 | #: inc/barcode.class.php:119 354 | msgid "SRA2" 355 | msgstr "SRA2" 356 | 357 | #: inc/barcode.class.php:120 358 | msgid "SRA3" 359 | msgstr "SRA3" 360 | 361 | #: inc/barcode.class.php:121 362 | msgid "SRA4" 363 | msgstr "SRA4" 364 | 365 | #: inc/config.class.php:196 366 | msgid "Text display options" 367 | msgstr "" 368 | 369 | #: inc/config.class.php:198 370 | msgid "Text size" 371 | msgstr "" 372 | 373 | #: inc/config.class.php:201 374 | msgid "Text spacing between lines" 375 | msgstr "" 376 | 377 | #: front/config.form.php:56 378 | msgid "The cache has been emptied." 379 | msgstr "Se ha vaciado la caché." 380 | 381 | #: inc/barcode.class.php:286 382 | msgid "The generation of some barcodes produced errors." 383 | msgstr "La generación de algunos bacodes produce errores." 384 | 385 | #: front/config.form.php:61 386 | msgid "The logo has been removed." 387 | msgstr "" 388 | 389 | #: inc/barcode.class.php:196 390 | msgid "Ticket number" 391 | msgstr "Número de ficha" 392 | 393 | #: inc/config.class.php:154 394 | msgid "Top" 395 | msgstr "Arriba" 396 | 397 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 398 | msgid "Type" 399 | msgstr "Tipo" 400 | 401 | #: inc/config.class.php:188 402 | msgid "URL" 403 | msgstr "" 404 | 405 | #: inc/config.class.php:264 406 | msgid "code128" 407 | msgstr "CODE128" 408 | 409 | #: inc/config.class.php:263 410 | msgid "code39" 411 | msgstr "CODE39" 412 | 413 | #: inc/config.class.php:265 414 | msgid "ean13" 415 | msgstr "EAN13" 416 | 417 | #: inc/config.class.php:266 418 | msgid "int25" 419 | msgstr "int25" 420 | 421 | #: inc/config.class.php:267 422 | msgid "postnet" 423 | msgstr "Postnet" 424 | 425 | #: inc/config.class.php:268 426 | msgid "upca" 427 | msgstr "UPCA" 428 | -------------------------------------------------------------------------------- /locales/fi_FI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/fi_FI.mo -------------------------------------------------------------------------------- /locales/fi_FI.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Cédric Anne, 2018 8 | # Markku Vepsä, 2018 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: PACKAGE VERSION\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 16 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 17 | "Last-Translator: Markku Vepsä, 2018\n" 18 | "Language-Team: Finnish (Finland) (https://www.transifex.com/pluginsGLPI/teams/73419/fi_FI/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: fi_FI\n" 23 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 24 | 25 | #: inc/barcode.class.php:78 26 | msgid "2A0" 27 | msgstr "2A0" 28 | 29 | #: inc/barcode.class.php:77 30 | msgid "4A0" 31 | msgstr "4A0" 32 | 33 | #: inc/barcode.class.php:79 34 | msgid "A0" 35 | msgstr "A0" 36 | 37 | #: inc/barcode.class.php:80 38 | msgid "A1" 39 | msgstr "A1" 40 | 41 | #: inc/barcode.class.php:89 42 | msgid "A10" 43 | msgstr "A10" 44 | 45 | #: inc/barcode.class.php:81 46 | msgid "A2" 47 | msgstr "A2" 48 | 49 | #: inc/barcode.class.php:82 50 | msgid "A3" 51 | msgstr "A3" 52 | 53 | #: inc/barcode.class.php:83 54 | msgid "A4" 55 | msgstr "A4" 56 | 57 | #: inc/barcode.class.php:84 58 | msgid "A5" 59 | msgstr "A5" 60 | 61 | #: inc/barcode.class.php:85 62 | msgid "A6" 63 | msgstr "A6" 64 | 65 | #: inc/barcode.class.php:86 66 | msgid "A7" 67 | msgstr "A7" 68 | 69 | #: inc/barcode.class.php:87 70 | msgid "A8" 71 | msgstr "A8" 72 | 73 | #: inc/barcode.class.php:88 74 | msgid "A9" 75 | msgstr "A9" 76 | 77 | #: inc/barcode.class.php:90 78 | msgid "B0" 79 | msgstr "B0" 80 | 81 | #: inc/barcode.class.php:91 82 | msgid "B1" 83 | msgstr "B1" 84 | 85 | #: inc/barcode.class.php:100 86 | msgid "B10" 87 | msgstr "B10" 88 | 89 | #: inc/barcode.class.php:92 90 | msgid "B2" 91 | msgstr "B2" 92 | 93 | #: inc/barcode.class.php:93 94 | msgid "B3" 95 | msgstr "B3" 96 | 97 | #: inc/barcode.class.php:94 98 | msgid "B4" 99 | msgstr "B4" 100 | 101 | #: inc/barcode.class.php:95 102 | msgid "B5" 103 | msgstr "B5" 104 | 105 | #: inc/barcode.class.php:96 106 | msgid "B6" 107 | msgstr "B6" 108 | 109 | #: inc/barcode.class.php:97 110 | msgid "B7" 111 | msgstr "B7" 112 | 113 | #: inc/barcode.class.php:98 114 | msgid "B8" 115 | msgstr "B8" 116 | 117 | #: inc/barcode.class.php:99 118 | msgid "B9" 119 | msgstr "B9" 120 | 121 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 122 | #: inc/profile.class.php:50 inc/profile.class.php:86 123 | msgid "Barcode" 124 | msgstr "Viivakoodi" 125 | 126 | #: inc/config.class.php:61 127 | msgid "Barcode plugin configuration" 128 | msgstr "Viivakoodi-liitännäisen asetukset" 129 | 130 | #: inc/config.class.php:177 131 | msgid "Barcodes sizes" 132 | msgstr "Viivakoodien koko" 133 | 134 | #: inc/config.class.php:157 135 | msgid "Bottom" 136 | msgstr "Ala" 137 | 138 | #: inc/config.class.php:190 139 | msgid "By ID" 140 | msgstr "" 141 | 142 | #: inc/config.class.php:191 143 | msgid "By serial number" 144 | msgstr "" 145 | 146 | #: inc/barcode.class.php:101 147 | msgid "C0" 148 | msgstr "C0" 149 | 150 | #: inc/barcode.class.php:102 151 | msgid "C1" 152 | msgstr "C1" 153 | 154 | #: inc/barcode.class.php:111 155 | msgid "C10" 156 | msgstr "C10" 157 | 158 | #: inc/barcode.class.php:103 159 | msgid "C2" 160 | msgstr "C2" 161 | 162 | #: inc/barcode.class.php:104 163 | msgid "C3" 164 | msgstr "C3" 165 | 166 | #: inc/barcode.class.php:105 167 | msgid "C4" 168 | msgstr "C4" 169 | 170 | #: inc/barcode.class.php:106 171 | msgid "C5" 172 | msgstr "C5" 173 | 174 | #: inc/barcode.class.php:107 175 | msgid "C6" 176 | msgstr "C6" 177 | 178 | #: inc/barcode.class.php:108 179 | msgid "C7" 180 | msgstr "C7" 181 | 182 | #: inc/barcode.class.php:109 183 | msgid "C8" 184 | msgstr "C8" 185 | 186 | #: inc/barcode.class.php:110 187 | msgid "C9" 188 | msgstr "C9" 189 | 190 | #: inc/barcode.class.php:159 191 | msgid "Code" 192 | msgstr "Koodi" 193 | 194 | #: inc/config.class.php:82 195 | msgid "Company logo" 196 | msgstr "Yrityksen logo" 197 | 198 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 199 | msgid "Create" 200 | msgstr "Luo" 201 | 202 | #: inc/config.class.php:94 203 | msgid "Delete the logo" 204 | msgstr "" 205 | 206 | #: inc/barcode.class.php:240 207 | msgid "Display border" 208 | msgstr "Näytä rajat" 209 | 210 | #: inc/barcode.class.php:248 211 | msgid "Display labels" 212 | msgstr "" 213 | 214 | #: inc/barcode.class.php:124 215 | msgid "EXECUTIVE" 216 | msgstr "EXECUTIVE" 217 | 218 | #: inc/config.class.php:78 219 | msgid "Empty the cache" 220 | msgstr "Tyhjennä välimuisti" 221 | 222 | #: inc/barcode.class.php:125 223 | msgid "FOLIO" 224 | msgstr "FOLIO" 225 | 226 | #: inc/config.class.php:66 227 | msgid "General configuration" 228 | msgstr "Yleiset asetukset" 229 | 230 | #: front/barcode.form.php:62 inc/barcode.class.php:514 231 | #: inc/qrcode.class.php:411 232 | msgid "Generated file" 233 | msgstr "Luotu tiedosto" 234 | 235 | #: inc/barcode.class.php:157 236 | msgid "Generation" 237 | msgstr "Luonti" 238 | 239 | #: inc/profile.class.php:117 240 | msgid "Generation of barcode" 241 | msgstr "Viivakoodien luonti" 242 | 243 | #: inc/config.class.php:170 244 | msgid "Inner horizontal" 245 | msgstr "Sisempi horisontaalinen" 246 | 247 | #: inc/config.class.php:173 248 | msgid "Inner vertical" 249 | msgstr "Sisempi vertikaalinen" 250 | 251 | #: inc/barcode.class.php:194 252 | msgid "It will generate only elements have defined field:" 253 | msgstr "Generoi vain elementtejä, joilla on määritelty kenttä:" 254 | 255 | #: inc/barcode.class.php:123 256 | msgid "LEGAL" 257 | msgstr "LEGAL" 258 | 259 | #: inc/barcode.class.php:122 260 | msgid "LETTER" 261 | msgstr "LETTER" 262 | 263 | #: inc/barcode.class.php:136 264 | msgid "Landscape" 265 | msgstr "Vaakasuunta" 266 | 267 | #: inc/config.class.php:162 268 | msgid "Left" 269 | msgstr "Vasen" 270 | 271 | #: inc/profile.class.php:113 272 | msgid "Manage configuration" 273 | msgstr "Asetusten hallinta" 274 | 275 | #: inc/config.class.php:152 276 | msgid "Margins" 277 | msgstr "Reunukset" 278 | 279 | #: inc/config.class.php:182 280 | msgid "Maximum height" 281 | msgstr "Maksimi korkeus" 282 | 283 | #: inc/config.class.php:179 284 | msgid "Maximum width" 285 | msgstr "Maksimi leveys" 286 | 287 | #: inc/barcode.class.php:230 288 | msgid "Not use first xx barcodes" 289 | msgstr "Älä käytä ensimmäistä xx viivakoodia" 290 | 291 | #: inc/barcode.class.php:174 292 | msgid "Number of copies" 293 | msgstr "Kopiot" 294 | 295 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 296 | #: inc/config.class.php:148 297 | msgid "Orientation" 298 | msgstr "Suunta" 299 | 300 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 301 | #: inc/config.class.php:145 302 | msgid "Page size" 303 | msgstr "Sivukoko" 304 | 305 | #: inc/barcode.class.php:135 306 | msgid "Portrait" 307 | msgstr "Pystysuunta" 308 | 309 | #: hook.php:49 310 | msgid "Print QRcodes" 311 | msgstr "Tulosta QR-koodit" 312 | 313 | #: hook.php:46 314 | msgid "Print barcodes" 315 | msgstr "Tulosta viivakoodit" 316 | 317 | #: inc/config.class.php:269 318 | msgid "QRcode" 319 | msgstr "QR-koodi" 320 | 321 | #: inc/barcode.class.php:112 322 | msgid "RA0" 323 | msgstr "RA0" 324 | 325 | #: inc/barcode.class.php:113 326 | msgid "RA1" 327 | msgstr "RA1" 328 | 329 | #: inc/barcode.class.php:114 330 | msgid "RA2" 331 | msgstr "RA2" 332 | 333 | #: inc/barcode.class.php:115 334 | msgid "RA3" 335 | msgstr "RA3" 336 | 337 | #: inc/barcode.class.php:116 338 | msgid "RA4" 339 | msgstr "RA4" 340 | 341 | #: inc/config.class.php:165 342 | msgid "Right" 343 | msgstr "Oikea" 344 | 345 | #: inc/barcode.class.php:117 346 | msgid "SRA0" 347 | msgstr "SRA0" 348 | 349 | #: inc/barcode.class.php:118 350 | msgid "SRA1" 351 | msgstr "SRA1" 352 | 353 | #: inc/barcode.class.php:119 354 | msgid "SRA2" 355 | msgstr "SRA2" 356 | 357 | #: inc/barcode.class.php:120 358 | msgid "SRA3" 359 | msgstr "SRA3" 360 | 361 | #: inc/barcode.class.php:121 362 | msgid "SRA4" 363 | msgstr "SRA4" 364 | 365 | #: inc/config.class.php:196 366 | msgid "Text display options" 367 | msgstr "" 368 | 369 | #: inc/config.class.php:198 370 | msgid "Text size" 371 | msgstr "" 372 | 373 | #: inc/config.class.php:201 374 | msgid "Text spacing between lines" 375 | msgstr "" 376 | 377 | #: front/config.form.php:56 378 | msgid "The cache has been emptied." 379 | msgstr "Välimuisti tyhjennetty" 380 | 381 | #: inc/barcode.class.php:286 382 | msgid "The generation of some barcodes produced errors." 383 | msgstr "Joidenkin viivakoodien tuottaminen aiheutti virheitä." 384 | 385 | #: front/config.form.php:61 386 | msgid "The logo has been removed." 387 | msgstr "" 388 | 389 | #: inc/barcode.class.php:196 390 | msgid "Ticket number" 391 | msgstr "Tiketin numero" 392 | 393 | #: inc/config.class.php:154 394 | msgid "Top" 395 | msgstr "Ylä" 396 | 397 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 398 | msgid "Type" 399 | msgstr "Tyyppi" 400 | 401 | #: inc/config.class.php:188 402 | msgid "URL" 403 | msgstr "" 404 | 405 | #: inc/config.class.php:264 406 | msgid "code128" 407 | msgstr "code128" 408 | 409 | #: inc/config.class.php:263 410 | msgid "code39" 411 | msgstr "code39" 412 | 413 | #: inc/config.class.php:265 414 | msgid "ean13" 415 | msgstr "ean13" 416 | 417 | #: inc/config.class.php:266 418 | msgid "int25" 419 | msgstr "int25" 420 | 421 | #: inc/config.class.php:267 422 | msgid "postnet" 423 | msgstr "postnet" 424 | 425 | #: inc/config.class.php:268 426 | msgid "upca" 427 | msgstr "upca" 428 | -------------------------------------------------------------------------------- /locales/fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/fr_FR.mo -------------------------------------------------------------------------------- /locales/hr_HR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/hr_HR.mo -------------------------------------------------------------------------------- /locales/hr_HR.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Milo Ivir , 2022 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: PACKAGE VERSION\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 15 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 16 | "Last-Translator: Milo Ivir , 2022\n" 17 | "Language-Team: Croatian (Croatia) (https://www.transifex.com/pluginsGLPI/teams/73419/hr_HR/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: hr_HR\n" 22 | "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" 23 | 24 | #: inc/barcode.class.php:78 25 | msgid "2A0" 26 | msgstr "2A0" 27 | 28 | #: inc/barcode.class.php:77 29 | msgid "4A0" 30 | msgstr "4A0" 31 | 32 | #: inc/barcode.class.php:79 33 | msgid "A0" 34 | msgstr "A0" 35 | 36 | #: inc/barcode.class.php:80 37 | msgid "A1" 38 | msgstr "A1" 39 | 40 | #: inc/barcode.class.php:89 41 | msgid "A10" 42 | msgstr "A10" 43 | 44 | #: inc/barcode.class.php:81 45 | msgid "A2" 46 | msgstr "A2" 47 | 48 | #: inc/barcode.class.php:82 49 | msgid "A3" 50 | msgstr "A3" 51 | 52 | #: inc/barcode.class.php:83 53 | msgid "A4" 54 | msgstr "A4" 55 | 56 | #: inc/barcode.class.php:84 57 | msgid "A5" 58 | msgstr "A5" 59 | 60 | #: inc/barcode.class.php:85 61 | msgid "A6" 62 | msgstr "A6" 63 | 64 | #: inc/barcode.class.php:86 65 | msgid "A7" 66 | msgstr "A7" 67 | 68 | #: inc/barcode.class.php:87 69 | msgid "A8" 70 | msgstr "A8" 71 | 72 | #: inc/barcode.class.php:88 73 | msgid "A9" 74 | msgstr "A9" 75 | 76 | #: inc/barcode.class.php:90 77 | msgid "B0" 78 | msgstr "B0" 79 | 80 | #: inc/barcode.class.php:91 81 | msgid "B1" 82 | msgstr "B1" 83 | 84 | #: inc/barcode.class.php:100 85 | msgid "B10" 86 | msgstr "B10" 87 | 88 | #: inc/barcode.class.php:92 89 | msgid "B2" 90 | msgstr "B2" 91 | 92 | #: inc/barcode.class.php:93 93 | msgid "B3" 94 | msgstr "B3" 95 | 96 | #: inc/barcode.class.php:94 97 | msgid "B4" 98 | msgstr "B4" 99 | 100 | #: inc/barcode.class.php:95 101 | msgid "B5" 102 | msgstr "B5" 103 | 104 | #: inc/barcode.class.php:96 105 | msgid "B6" 106 | msgstr "B6" 107 | 108 | #: inc/barcode.class.php:97 109 | msgid "B7" 110 | msgstr "B7" 111 | 112 | #: inc/barcode.class.php:98 113 | msgid "B8" 114 | msgstr "B8" 115 | 116 | #: inc/barcode.class.php:99 117 | msgid "B9" 118 | msgstr "B9" 119 | 120 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 121 | #: inc/profile.class.php:50 inc/profile.class.php:86 122 | msgid "Barcode" 123 | msgstr "Barkod" 124 | 125 | #: inc/config.class.php:61 126 | msgid "Barcode plugin configuration" 127 | msgstr "Konfiguracija dodatka „Barkod”" 128 | 129 | #: inc/config.class.php:177 130 | msgid "Barcodes sizes" 131 | msgstr "Veličine barkodova" 132 | 133 | #: inc/config.class.php:157 134 | msgid "Bottom" 135 | msgstr "Dolje" 136 | 137 | #: inc/config.class.php:190 138 | msgid "By ID" 139 | msgstr "Prema ID oznaci" 140 | 141 | #: inc/config.class.php:191 142 | msgid "By serial number" 143 | msgstr "Prema serijskom broju" 144 | 145 | #: inc/barcode.class.php:101 146 | msgid "C0" 147 | msgstr "C0" 148 | 149 | #: inc/barcode.class.php:102 150 | msgid "C1" 151 | msgstr "C1" 152 | 153 | #: inc/barcode.class.php:111 154 | msgid "C10" 155 | msgstr "C10" 156 | 157 | #: inc/barcode.class.php:103 158 | msgid "C2" 159 | msgstr "C2" 160 | 161 | #: inc/barcode.class.php:104 162 | msgid "C3" 163 | msgstr "C3" 164 | 165 | #: inc/barcode.class.php:105 166 | msgid "C4" 167 | msgstr "C4" 168 | 169 | #: inc/barcode.class.php:106 170 | msgid "C5" 171 | msgstr "C5" 172 | 173 | #: inc/barcode.class.php:107 174 | msgid "C6" 175 | msgstr "C6" 176 | 177 | #: inc/barcode.class.php:108 178 | msgid "C7" 179 | msgstr "C7" 180 | 181 | #: inc/barcode.class.php:109 182 | msgid "C8" 183 | msgstr "C8" 184 | 185 | #: inc/barcode.class.php:110 186 | msgid "C9" 187 | msgstr "C9" 188 | 189 | #: inc/barcode.class.php:159 190 | msgid "Code" 191 | msgstr "Kôd" 192 | 193 | #: inc/config.class.php:82 194 | msgid "Company logo" 195 | msgstr "Logotip poduzeća" 196 | 197 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 198 | msgid "Create" 199 | msgstr "Stvori" 200 | 201 | #: inc/config.class.php:94 202 | msgid "Delete the logo" 203 | msgstr "Ukloni logotip" 204 | 205 | #: inc/barcode.class.php:240 206 | msgid "Display border" 207 | msgstr "Prikaži rub" 208 | 209 | #: inc/barcode.class.php:248 210 | msgid "Display labels" 211 | msgstr "Prikaži oznake" 212 | 213 | #: inc/barcode.class.php:124 214 | msgid "EXECUTIVE" 215 | msgstr "EXECUTIVE" 216 | 217 | #: inc/config.class.php:78 218 | msgid "Empty the cache" 219 | msgstr "Isprazni predmemoriju" 220 | 221 | #: inc/barcode.class.php:125 222 | msgid "FOLIO" 223 | msgstr "FOLIO" 224 | 225 | #: inc/config.class.php:66 226 | msgid "General configuration" 227 | msgstr "Opća konfiguracija" 228 | 229 | #: front/barcode.form.php:62 inc/barcode.class.php:514 230 | #: inc/qrcode.class.php:411 231 | msgid "Generated file" 232 | msgstr "Generirana datoteka" 233 | 234 | #: inc/barcode.class.php:157 235 | msgid "Generation" 236 | msgstr "Generiranje" 237 | 238 | #: inc/profile.class.php:117 239 | msgid "Generation of barcode" 240 | msgstr "Generiranje barkoda" 241 | 242 | #: inc/config.class.php:170 243 | msgid "Inner horizontal" 244 | msgstr "Unutarnje vodoravno" 245 | 246 | #: inc/config.class.php:173 247 | msgid "Inner vertical" 248 | msgstr "Unutarnje okomito" 249 | 250 | #: inc/barcode.class.php:194 251 | msgid "It will generate only elements have defined field:" 252 | msgstr "Generirat će samo elemente s definiranim poljem:" 253 | 254 | #: inc/barcode.class.php:123 255 | msgid "LEGAL" 256 | msgstr "LEGAL" 257 | 258 | #: inc/barcode.class.php:122 259 | msgid "LETTER" 260 | msgstr "LETTER" 261 | 262 | #: inc/barcode.class.php:136 263 | msgid "Landscape" 264 | msgstr "Položeno" 265 | 266 | #: inc/config.class.php:162 267 | msgid "Left" 268 | msgstr "Lijevo" 269 | 270 | #: inc/profile.class.php:113 271 | msgid "Manage configuration" 272 | msgstr "Upravljaj konfiguracijom" 273 | 274 | #: inc/config.class.php:152 275 | msgid "Margins" 276 | msgstr "Margine" 277 | 278 | #: inc/config.class.php:182 279 | msgid "Maximum height" 280 | msgstr "Maksimalna visina" 281 | 282 | #: inc/config.class.php:179 283 | msgid "Maximum width" 284 | msgstr "Maksimalna širina" 285 | 286 | #: inc/barcode.class.php:230 287 | msgid "Not use first xx barcodes" 288 | msgstr "Ne koristi prvih xx barkodova" 289 | 290 | #: inc/barcode.class.php:174 291 | msgid "Number of copies" 292 | msgstr "Broj kopija" 293 | 294 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 295 | #: inc/config.class.php:148 296 | msgid "Orientation" 297 | msgstr "Položaj" 298 | 299 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 300 | #: inc/config.class.php:145 301 | msgid "Page size" 302 | msgstr "Veličina stranice" 303 | 304 | #: inc/barcode.class.php:135 305 | msgid "Portrait" 306 | msgstr "Uspravno" 307 | 308 | #: hook.php:49 309 | msgid "Print QRcodes" 310 | msgstr "Ispiši QR kodove" 311 | 312 | #: hook.php:46 313 | msgid "Print barcodes" 314 | msgstr "Ispiši barkodove" 315 | 316 | #: inc/config.class.php:269 317 | msgid "QRcode" 318 | msgstr "QR kôd" 319 | 320 | #: inc/barcode.class.php:112 321 | msgid "RA0" 322 | msgstr "RA0" 323 | 324 | #: inc/barcode.class.php:113 325 | msgid "RA1" 326 | msgstr "RA1" 327 | 328 | #: inc/barcode.class.php:114 329 | msgid "RA2" 330 | msgstr "RA2" 331 | 332 | #: inc/barcode.class.php:115 333 | msgid "RA3" 334 | msgstr "RA3" 335 | 336 | #: inc/barcode.class.php:116 337 | msgid "RA4" 338 | msgstr "RA4" 339 | 340 | #: inc/config.class.php:165 341 | msgid "Right" 342 | msgstr "Desno" 343 | 344 | #: inc/barcode.class.php:117 345 | msgid "SRA0" 346 | msgstr "SRA0" 347 | 348 | #: inc/barcode.class.php:118 349 | msgid "SRA1" 350 | msgstr "SRA1" 351 | 352 | #: inc/barcode.class.php:119 353 | msgid "SRA2" 354 | msgstr "SRA2" 355 | 356 | #: inc/barcode.class.php:120 357 | msgid "SRA3" 358 | msgstr "SRA3" 359 | 360 | #: inc/barcode.class.php:121 361 | msgid "SRA4" 362 | msgstr "SRA4" 363 | 364 | #: inc/config.class.php:196 365 | msgid "Text display options" 366 | msgstr "Opcije za prikaz teksta" 367 | 368 | #: inc/config.class.php:198 369 | msgid "Text size" 370 | msgstr "Veličina teksta" 371 | 372 | #: inc/config.class.php:201 373 | msgid "Text spacing between lines" 374 | msgstr "Razmak između redaka" 375 | 376 | #: front/config.form.php:56 377 | msgid "The cache has been emptied." 378 | msgstr "Predmemorija je ispražnjena." 379 | 380 | #: inc/barcode.class.php:286 381 | msgid "The generation of some barcodes produced errors." 382 | msgstr "Generiranje nekih barkodova stvorilo je greške." 383 | 384 | #: front/config.form.php:61 385 | msgid "The logo has been removed." 386 | msgstr "Logotip je ukljonjen." 387 | 388 | #: inc/barcode.class.php:196 389 | msgid "Ticket number" 390 | msgstr "Broj naloga" 391 | 392 | #: inc/config.class.php:154 393 | msgid "Top" 394 | msgstr "Gore" 395 | 396 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 397 | msgid "Type" 398 | msgstr "Vrsta" 399 | 400 | #: inc/config.class.php:188 401 | msgid "URL" 402 | msgstr "URL" 403 | 404 | #: inc/config.class.php:264 405 | msgid "code128" 406 | msgstr "kôd 128" 407 | 408 | #: inc/config.class.php:263 409 | msgid "code39" 410 | msgstr "kôd 39" 411 | 412 | #: inc/config.class.php:265 413 | msgid "ean13" 414 | msgstr "ean 13" 415 | 416 | #: inc/config.class.php:266 417 | msgid "int25" 418 | msgstr "int 25" 419 | 420 | #: inc/config.class.php:267 421 | msgid "postnet" 422 | msgstr "postnet" 423 | 424 | #: inc/config.class.php:268 425 | msgid "upca" 426 | msgstr "upca" 427 | -------------------------------------------------------------------------------- /locales/id_ID.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/id_ID.mo -------------------------------------------------------------------------------- /locales/id_ID.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Teguh Umar , 2019 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: PACKAGE VERSION\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 15 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 16 | "Last-Translator: Teguh Umar , 2019\n" 17 | "Language-Team: Indonesian (Indonesia) (https://www.transifex.com/pluginsGLPI/teams/73419/id_ID/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: id_ID\n" 22 | "Plural-Forms: nplurals=1; plural=0;\n" 23 | 24 | #: inc/barcode.class.php:78 25 | msgid "2A0" 26 | msgstr "2A0" 27 | 28 | #: inc/barcode.class.php:77 29 | msgid "4A0" 30 | msgstr "4A0" 31 | 32 | #: inc/barcode.class.php:79 33 | msgid "A0" 34 | msgstr "A0" 35 | 36 | #: inc/barcode.class.php:80 37 | msgid "A1" 38 | msgstr "A1" 39 | 40 | #: inc/barcode.class.php:89 41 | msgid "A10" 42 | msgstr "A10" 43 | 44 | #: inc/barcode.class.php:81 45 | msgid "A2" 46 | msgstr "A2" 47 | 48 | #: inc/barcode.class.php:82 49 | msgid "A3" 50 | msgstr "A3" 51 | 52 | #: inc/barcode.class.php:83 53 | msgid "A4" 54 | msgstr "A4" 55 | 56 | #: inc/barcode.class.php:84 57 | msgid "A5" 58 | msgstr "A5" 59 | 60 | #: inc/barcode.class.php:85 61 | msgid "A6" 62 | msgstr "A6" 63 | 64 | #: inc/barcode.class.php:86 65 | msgid "A7" 66 | msgstr "A7" 67 | 68 | #: inc/barcode.class.php:87 69 | msgid "A8" 70 | msgstr "A8" 71 | 72 | #: inc/barcode.class.php:88 73 | msgid "A9" 74 | msgstr "A9" 75 | 76 | #: inc/barcode.class.php:90 77 | msgid "B0" 78 | msgstr "B0" 79 | 80 | #: inc/barcode.class.php:91 81 | msgid "B1" 82 | msgstr "B1" 83 | 84 | #: inc/barcode.class.php:100 85 | msgid "B10" 86 | msgstr "B10" 87 | 88 | #: inc/barcode.class.php:92 89 | msgid "B2" 90 | msgstr "B2" 91 | 92 | #: inc/barcode.class.php:93 93 | msgid "B3" 94 | msgstr "B3" 95 | 96 | #: inc/barcode.class.php:94 97 | msgid "B4" 98 | msgstr "B4" 99 | 100 | #: inc/barcode.class.php:95 101 | msgid "B5" 102 | msgstr "B5" 103 | 104 | #: inc/barcode.class.php:96 105 | msgid "B6" 106 | msgstr "B6" 107 | 108 | #: inc/barcode.class.php:97 109 | msgid "B7" 110 | msgstr "B7" 111 | 112 | #: inc/barcode.class.php:98 113 | msgid "B8" 114 | msgstr "B8" 115 | 116 | #: inc/barcode.class.php:99 117 | msgid "B9" 118 | msgstr "B9" 119 | 120 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 121 | #: inc/profile.class.php:50 inc/profile.class.php:86 122 | msgid "Barcode" 123 | msgstr "Barcode" 124 | 125 | #: inc/config.class.php:61 126 | msgid "Barcode plugin configuration" 127 | msgstr "Konfigurasi plugin barcode" 128 | 129 | #: inc/config.class.php:177 130 | msgid "Barcodes sizes" 131 | msgstr "Ukuran barcode" 132 | 133 | #: inc/config.class.php:157 134 | msgid "Bottom" 135 | msgstr "Bawah" 136 | 137 | #: inc/config.class.php:190 138 | msgid "By ID" 139 | msgstr "" 140 | 141 | #: inc/config.class.php:191 142 | msgid "By serial number" 143 | msgstr "" 144 | 145 | #: inc/barcode.class.php:101 146 | msgid "C0" 147 | msgstr "C0" 148 | 149 | #: inc/barcode.class.php:102 150 | msgid "C1" 151 | msgstr "C1" 152 | 153 | #: inc/barcode.class.php:111 154 | msgid "C10" 155 | msgstr "C10" 156 | 157 | #: inc/barcode.class.php:103 158 | msgid "C2" 159 | msgstr "C2" 160 | 161 | #: inc/barcode.class.php:104 162 | msgid "C3" 163 | msgstr "C3" 164 | 165 | #: inc/barcode.class.php:105 166 | msgid "C4" 167 | msgstr "C4" 168 | 169 | #: inc/barcode.class.php:106 170 | msgid "C5" 171 | msgstr "C5" 172 | 173 | #: inc/barcode.class.php:107 174 | msgid "C6" 175 | msgstr "C6" 176 | 177 | #: inc/barcode.class.php:108 178 | msgid "C7" 179 | msgstr "C7" 180 | 181 | #: inc/barcode.class.php:109 182 | msgid "C8" 183 | msgstr "C8" 184 | 185 | #: inc/barcode.class.php:110 186 | msgid "C9" 187 | msgstr "C9" 188 | 189 | #: inc/barcode.class.php:159 190 | msgid "Code" 191 | msgstr "Kode" 192 | 193 | #: inc/config.class.php:82 194 | msgid "Company logo" 195 | msgstr "Logo perusahaan" 196 | 197 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 198 | msgid "Create" 199 | msgstr "Buat" 200 | 201 | #: inc/config.class.php:94 202 | msgid "Delete the logo" 203 | msgstr "" 204 | 205 | #: inc/barcode.class.php:240 206 | msgid "Display border" 207 | msgstr "Tampilan barcode" 208 | 209 | #: inc/barcode.class.php:248 210 | msgid "Display labels" 211 | msgstr "" 212 | 213 | #: inc/barcode.class.php:124 214 | msgid "EXECUTIVE" 215 | msgstr "EXECUTIVE" 216 | 217 | #: inc/config.class.php:78 218 | msgid "Empty the cache" 219 | msgstr "Kosongkan cache" 220 | 221 | #: inc/barcode.class.php:125 222 | msgid "FOLIO" 223 | msgstr "FOLIO" 224 | 225 | #: inc/config.class.php:66 226 | msgid "General configuration" 227 | msgstr "Konfigurasi umum" 228 | 229 | #: front/barcode.form.php:62 inc/barcode.class.php:514 230 | #: inc/qrcode.class.php:411 231 | msgid "Generated file" 232 | msgstr "File yang dihasilkan" 233 | 234 | #: inc/barcode.class.php:157 235 | msgid "Generation" 236 | msgstr "Generasi" 237 | 238 | #: inc/profile.class.php:117 239 | msgid "Generation of barcode" 240 | msgstr "Pembuatan barcode" 241 | 242 | #: inc/config.class.php:170 243 | msgid "Inner horizontal" 244 | msgstr "Horisontal dalam" 245 | 246 | #: inc/config.class.php:173 247 | msgid "Inner vertical" 248 | msgstr "Vertikal dalam" 249 | 250 | #: inc/barcode.class.php:194 251 | msgid "It will generate only elements have defined field:" 252 | msgstr "Hanya akan menghasilkan elemen yang telah didefinisikan:" 253 | 254 | #: inc/barcode.class.php:123 255 | msgid "LEGAL" 256 | msgstr "LEGAL" 257 | 258 | #: inc/barcode.class.php:122 259 | msgid "LETTER" 260 | msgstr "LETTER" 261 | 262 | #: inc/barcode.class.php:136 263 | msgid "Landscape" 264 | msgstr "Landscape" 265 | 266 | #: inc/config.class.php:162 267 | msgid "Left" 268 | msgstr "Kiri" 269 | 270 | #: inc/profile.class.php:113 271 | msgid "Manage configuration" 272 | msgstr "Kelola konfigurasi" 273 | 274 | #: inc/config.class.php:152 275 | msgid "Margins" 276 | msgstr "Margin" 277 | 278 | #: inc/config.class.php:182 279 | msgid "Maximum height" 280 | msgstr "Tinggi maksimum" 281 | 282 | #: inc/config.class.php:179 283 | msgid "Maximum width" 284 | msgstr "Lebar maksimum" 285 | 286 | #: inc/barcode.class.php:230 287 | msgid "Not use first xx barcodes" 288 | msgstr "barcode awal xx tidak digunakan" 289 | 290 | #: inc/barcode.class.php:174 291 | msgid "Number of copies" 292 | msgstr "Jumlah salinan" 293 | 294 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 295 | #: inc/config.class.php:148 296 | msgid "Orientation" 297 | msgstr "orientasi" 298 | 299 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 300 | #: inc/config.class.php:145 301 | msgid "Page size" 302 | msgstr "Ukuran halaman" 303 | 304 | #: inc/barcode.class.php:135 305 | msgid "Portrait" 306 | msgstr "Portrait" 307 | 308 | #: hook.php:49 309 | msgid "Print QRcodes" 310 | msgstr "Cetak CodeQR" 311 | 312 | #: hook.php:46 313 | msgid "Print barcodes" 314 | msgstr "Cetak barcode" 315 | 316 | #: inc/config.class.php:269 317 | msgid "QRcode" 318 | msgstr "QRcode" 319 | 320 | #: inc/barcode.class.php:112 321 | msgid "RA0" 322 | msgstr "RA0" 323 | 324 | #: inc/barcode.class.php:113 325 | msgid "RA1" 326 | msgstr "RA1" 327 | 328 | #: inc/barcode.class.php:114 329 | msgid "RA2" 330 | msgstr "RA2" 331 | 332 | #: inc/barcode.class.php:115 333 | msgid "RA3" 334 | msgstr "RA3" 335 | 336 | #: inc/barcode.class.php:116 337 | msgid "RA4" 338 | msgstr "RA4" 339 | 340 | #: inc/config.class.php:165 341 | msgid "Right" 342 | msgstr "Kanan" 343 | 344 | #: inc/barcode.class.php:117 345 | msgid "SRA0" 346 | msgstr "SRA0" 347 | 348 | #: inc/barcode.class.php:118 349 | msgid "SRA1" 350 | msgstr "SRA1" 351 | 352 | #: inc/barcode.class.php:119 353 | msgid "SRA2" 354 | msgstr "SRA2" 355 | 356 | #: inc/barcode.class.php:120 357 | msgid "SRA3" 358 | msgstr "SRA3" 359 | 360 | #: inc/barcode.class.php:121 361 | msgid "SRA4" 362 | msgstr "SRA4" 363 | 364 | #: inc/config.class.php:196 365 | msgid "Text display options" 366 | msgstr "" 367 | 368 | #: inc/config.class.php:198 369 | msgid "Text size" 370 | msgstr "" 371 | 372 | #: inc/config.class.php:201 373 | msgid "Text spacing between lines" 374 | msgstr "" 375 | 376 | #: front/config.form.php:56 377 | msgid "The cache has been emptied." 378 | msgstr "Cache sudah dikosongkan." 379 | 380 | #: inc/barcode.class.php:286 381 | msgid "The generation of some barcodes produced errors." 382 | msgstr "Ada beberapa kesalahan dalam hasil barcode." 383 | 384 | #: front/config.form.php:61 385 | msgid "The logo has been removed." 386 | msgstr "" 387 | 388 | #: inc/barcode.class.php:196 389 | msgid "Ticket number" 390 | msgstr "Nomer tiket" 391 | 392 | #: inc/config.class.php:154 393 | msgid "Top" 394 | msgstr "Atas" 395 | 396 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 397 | msgid "Type" 398 | msgstr "tipe" 399 | 400 | #: inc/config.class.php:188 401 | msgid "URL" 402 | msgstr "" 403 | 404 | #: inc/config.class.php:264 405 | msgid "code128" 406 | msgstr "code128" 407 | 408 | #: inc/config.class.php:263 409 | msgid "code39" 410 | msgstr "code39" 411 | 412 | #: inc/config.class.php:265 413 | msgid "ean13" 414 | msgstr "ean13" 415 | 416 | #: inc/config.class.php:266 417 | msgid "int25" 418 | msgstr "int25" 419 | 420 | #: inc/config.class.php:267 421 | msgid "postnet" 422 | msgstr "postnet" 423 | 424 | #: inc/config.class.php:268 425 | msgid "upca" 426 | msgstr "upca" 427 | -------------------------------------------------------------------------------- /locales/it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/it_IT.mo -------------------------------------------------------------------------------- /locales/it_IT.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Pierfrancesco Passerini , 2018 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: PACKAGE VERSION\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 15 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 16 | "Last-Translator: Pierfrancesco Passerini , 2018\n" 17 | "Language-Team: Italian (Italy) (https://www.transifex.com/pluginsGLPI/teams/73419/it_IT/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: it_IT\n" 22 | "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" 23 | 24 | #: inc/barcode.class.php:78 25 | msgid "2A0" 26 | msgstr "2A0" 27 | 28 | #: inc/barcode.class.php:77 29 | msgid "4A0" 30 | msgstr "4A0" 31 | 32 | #: inc/barcode.class.php:79 33 | msgid "A0" 34 | msgstr "A0" 35 | 36 | #: inc/barcode.class.php:80 37 | msgid "A1" 38 | msgstr "A1" 39 | 40 | #: inc/barcode.class.php:89 41 | msgid "A10" 42 | msgstr "A10" 43 | 44 | #: inc/barcode.class.php:81 45 | msgid "A2" 46 | msgstr "A2" 47 | 48 | #: inc/barcode.class.php:82 49 | msgid "A3" 50 | msgstr "A3" 51 | 52 | #: inc/barcode.class.php:83 53 | msgid "A4" 54 | msgstr "A4" 55 | 56 | #: inc/barcode.class.php:84 57 | msgid "A5" 58 | msgstr "A5" 59 | 60 | #: inc/barcode.class.php:85 61 | msgid "A6" 62 | msgstr "A6" 63 | 64 | #: inc/barcode.class.php:86 65 | msgid "A7" 66 | msgstr "A7" 67 | 68 | #: inc/barcode.class.php:87 69 | msgid "A8" 70 | msgstr "A8" 71 | 72 | #: inc/barcode.class.php:88 73 | msgid "A9" 74 | msgstr "A9" 75 | 76 | #: inc/barcode.class.php:90 77 | msgid "B0" 78 | msgstr "B0" 79 | 80 | #: inc/barcode.class.php:91 81 | msgid "B1" 82 | msgstr "B1" 83 | 84 | #: inc/barcode.class.php:100 85 | msgid "B10" 86 | msgstr "B10" 87 | 88 | #: inc/barcode.class.php:92 89 | msgid "B2" 90 | msgstr "B2" 91 | 92 | #: inc/barcode.class.php:93 93 | msgid "B3" 94 | msgstr "B3" 95 | 96 | #: inc/barcode.class.php:94 97 | msgid "B4" 98 | msgstr "B4" 99 | 100 | #: inc/barcode.class.php:95 101 | msgid "B5" 102 | msgstr "B5" 103 | 104 | #: inc/barcode.class.php:96 105 | msgid "B6" 106 | msgstr "B6" 107 | 108 | #: inc/barcode.class.php:97 109 | msgid "B7" 110 | msgstr "B7" 111 | 112 | #: inc/barcode.class.php:98 113 | msgid "B8" 114 | msgstr "B8" 115 | 116 | #: inc/barcode.class.php:99 117 | msgid "B9" 118 | msgstr "B9" 119 | 120 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 121 | #: inc/profile.class.php:50 inc/profile.class.php:86 122 | msgid "Barcode" 123 | msgstr "Codice a barre" 124 | 125 | #: inc/config.class.php:61 126 | msgid "Barcode plugin configuration" 127 | msgstr "Configurazione plugin Barcode" 128 | 129 | #: inc/config.class.php:177 130 | msgid "Barcodes sizes" 131 | msgstr "Grandezza del codice a barre" 132 | 133 | #: inc/config.class.php:157 134 | msgid "Bottom" 135 | msgstr "Inferiore" 136 | 137 | #: inc/config.class.php:190 138 | msgid "By ID" 139 | msgstr "" 140 | 141 | #: inc/config.class.php:191 142 | msgid "By serial number" 143 | msgstr "" 144 | 145 | #: inc/barcode.class.php:101 146 | msgid "C0" 147 | msgstr "C0" 148 | 149 | #: inc/barcode.class.php:102 150 | msgid "C1" 151 | msgstr "C1" 152 | 153 | #: inc/barcode.class.php:111 154 | msgid "C10" 155 | msgstr "C10" 156 | 157 | #: inc/barcode.class.php:103 158 | msgid "C2" 159 | msgstr "C2" 160 | 161 | #: inc/barcode.class.php:104 162 | msgid "C3" 163 | msgstr "C3" 164 | 165 | #: inc/barcode.class.php:105 166 | msgid "C4" 167 | msgstr "C4" 168 | 169 | #: inc/barcode.class.php:106 170 | msgid "C5" 171 | msgstr "C5" 172 | 173 | #: inc/barcode.class.php:107 174 | msgid "C6" 175 | msgstr "C6" 176 | 177 | #: inc/barcode.class.php:108 178 | msgid "C7" 179 | msgstr "C7" 180 | 181 | #: inc/barcode.class.php:109 182 | msgid "C8" 183 | msgstr "C8" 184 | 185 | #: inc/barcode.class.php:110 186 | msgid "C9" 187 | msgstr "C9" 188 | 189 | #: inc/barcode.class.php:159 190 | msgid "Code" 191 | msgstr "Codice" 192 | 193 | #: inc/config.class.php:82 194 | msgid "Company logo" 195 | msgstr "Logo della società" 196 | 197 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 198 | msgid "Create" 199 | msgstr "Crea" 200 | 201 | #: inc/config.class.php:94 202 | msgid "Delete the logo" 203 | msgstr "" 204 | 205 | #: inc/barcode.class.php:240 206 | msgid "Display border" 207 | msgstr "Mostra i bordi" 208 | 209 | #: inc/barcode.class.php:248 210 | msgid "Display labels" 211 | msgstr "" 212 | 213 | #: inc/barcode.class.php:124 214 | msgid "EXECUTIVE" 215 | msgstr "Executive" 216 | 217 | #: inc/config.class.php:78 218 | msgid "Empty the cache" 219 | msgstr "Svuota la cache" 220 | 221 | #: inc/barcode.class.php:125 222 | msgid "FOLIO" 223 | msgstr "Folio (FC)" 224 | 225 | #: inc/config.class.php:66 226 | msgid "General configuration" 227 | msgstr "Configurazione generale" 228 | 229 | #: front/barcode.form.php:62 inc/barcode.class.php:514 230 | #: inc/qrcode.class.php:411 231 | msgid "Generated file" 232 | msgstr "File creato" 233 | 234 | #: inc/barcode.class.php:157 235 | msgid "Generation" 236 | msgstr "Creazione" 237 | 238 | #: inc/profile.class.php:117 239 | msgid "Generation of barcode" 240 | msgstr "Creazione del codici a barre" 241 | 242 | #: inc/config.class.php:170 243 | msgid "Inner horizontal" 244 | msgstr "Interno orizzontale" 245 | 246 | #: inc/config.class.php:173 247 | msgid "Inner vertical" 248 | msgstr "Interno verticale" 249 | 250 | #: inc/barcode.class.php:194 251 | msgid "It will generate only elements have defined field:" 252 | msgstr "Genererà i codici solo se il seguente campo è definito:" 253 | 254 | #: inc/barcode.class.php:123 255 | msgid "LEGAL" 256 | msgstr "LEGALE" 257 | 258 | #: inc/barcode.class.php:122 259 | msgid "LETTER" 260 | msgstr "LETTERA" 261 | 262 | #: inc/barcode.class.php:136 263 | msgid "Landscape" 264 | msgstr "Orizzontale" 265 | 266 | #: inc/config.class.php:162 267 | msgid "Left" 268 | msgstr "Sinistra" 269 | 270 | #: inc/profile.class.php:113 271 | msgid "Manage configuration" 272 | msgstr "Gestisci configurazione" 273 | 274 | #: inc/config.class.php:152 275 | msgid "Margins" 276 | msgstr "Margini" 277 | 278 | #: inc/config.class.php:182 279 | msgid "Maximum height" 280 | msgstr "Altezza massima" 281 | 282 | #: inc/config.class.php:179 283 | msgid "Maximum width" 284 | msgstr "Larghezza massima" 285 | 286 | #: inc/barcode.class.php:230 287 | msgid "Not use first xx barcodes" 288 | msgstr "Non utilizzare i primi \"xx\" blocchi per i codici a barre" 289 | 290 | #: inc/barcode.class.php:174 291 | msgid "Number of copies" 292 | msgstr "Numero di copie" 293 | 294 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 295 | #: inc/config.class.php:148 296 | msgid "Orientation" 297 | msgstr "Orientamento" 298 | 299 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 300 | #: inc/config.class.php:145 301 | msgid "Page size" 302 | msgstr "Formato pagina" 303 | 304 | #: inc/barcode.class.php:135 305 | msgid "Portrait" 306 | msgstr "Verticale" 307 | 308 | #: hook.php:49 309 | msgid "Print QRcodes" 310 | msgstr "Stampa codici QR" 311 | 312 | #: hook.php:46 313 | msgid "Print barcodes" 314 | msgstr "Stampa codici a barre" 315 | 316 | #: inc/config.class.php:269 317 | msgid "QRcode" 318 | msgstr "QR code" 319 | 320 | #: inc/barcode.class.php:112 321 | msgid "RA0" 322 | msgstr "RA0" 323 | 324 | #: inc/barcode.class.php:113 325 | msgid "RA1" 326 | msgstr "RA1" 327 | 328 | #: inc/barcode.class.php:114 329 | msgid "RA2" 330 | msgstr "RA2" 331 | 332 | #: inc/barcode.class.php:115 333 | msgid "RA3" 334 | msgstr "RA3" 335 | 336 | #: inc/barcode.class.php:116 337 | msgid "RA4" 338 | msgstr "RA4" 339 | 340 | #: inc/config.class.php:165 341 | msgid "Right" 342 | msgstr "Destra" 343 | 344 | #: inc/barcode.class.php:117 345 | msgid "SRA0" 346 | msgstr "SRA0" 347 | 348 | #: inc/barcode.class.php:118 349 | msgid "SRA1" 350 | msgstr "SRA1" 351 | 352 | #: inc/barcode.class.php:119 353 | msgid "SRA2" 354 | msgstr "SRA2" 355 | 356 | #: inc/barcode.class.php:120 357 | msgid "SRA3" 358 | msgstr "SRA3" 359 | 360 | #: inc/barcode.class.php:121 361 | msgid "SRA4" 362 | msgstr "SRA4" 363 | 364 | #: inc/config.class.php:196 365 | msgid "Text display options" 366 | msgstr "" 367 | 368 | #: inc/config.class.php:198 369 | msgid "Text size" 370 | msgstr "" 371 | 372 | #: inc/config.class.php:201 373 | msgid "Text spacing between lines" 374 | msgstr "" 375 | 376 | #: front/config.form.php:56 377 | msgid "The cache has been emptied." 378 | msgstr "La cache è stata svuotata." 379 | 380 | #: inc/barcode.class.php:286 381 | msgid "The generation of some barcodes produced errors." 382 | msgstr "La generazione di alcuni codici a barre ha restituito degli errori." 383 | 384 | #: front/config.form.php:61 385 | msgid "The logo has been removed." 386 | msgstr "" 387 | 388 | #: inc/barcode.class.php:196 389 | msgid "Ticket number" 390 | msgstr "Numero di chiamata" 391 | 392 | #: inc/config.class.php:154 393 | msgid "Top" 394 | msgstr "Superiore" 395 | 396 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 397 | msgid "Type" 398 | msgstr "Tipo" 399 | 400 | #: inc/config.class.php:188 401 | msgid "URL" 402 | msgstr "" 403 | 404 | #: inc/config.class.php:264 405 | msgid "code128" 406 | msgstr "Code 128" 407 | 408 | #: inc/config.class.php:263 409 | msgid "code39" 410 | msgstr "Code 39" 411 | 412 | #: inc/config.class.php:265 413 | msgid "ean13" 414 | msgstr "EAN 13" 415 | 416 | #: inc/config.class.php:266 417 | msgid "int25" 418 | msgstr "int25" 419 | 420 | #: inc/config.class.php:267 421 | msgid "postnet" 422 | msgstr "POSTNET" 423 | 424 | #: inc/config.class.php:268 425 | msgid "upca" 426 | msgstr "UPC-A" 427 | -------------------------------------------------------------------------------- /locales/ja_JP.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/ja_JP.mo -------------------------------------------------------------------------------- /locales/ja_JP.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # in dow , 2019 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: PACKAGE VERSION\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 15 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 16 | "Last-Translator: in dow , 2019\n" 17 | "Language-Team: Japanese (Japan) (https://www.transifex.com/pluginsGLPI/teams/73419/ja_JP/)\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Language: ja_JP\n" 22 | "Plural-Forms: nplurals=1; plural=0;\n" 23 | 24 | #: inc/barcode.class.php:78 25 | msgid "2A0" 26 | msgstr "" 27 | 28 | #: inc/barcode.class.php:77 29 | msgid "4A0" 30 | msgstr "" 31 | 32 | #: inc/barcode.class.php:79 33 | msgid "A0" 34 | msgstr "" 35 | 36 | #: inc/barcode.class.php:80 37 | msgid "A1" 38 | msgstr "" 39 | 40 | #: inc/barcode.class.php:89 41 | msgid "A10" 42 | msgstr "" 43 | 44 | #: inc/barcode.class.php:81 45 | msgid "A2" 46 | msgstr "" 47 | 48 | #: inc/barcode.class.php:82 49 | msgid "A3" 50 | msgstr "" 51 | 52 | #: inc/barcode.class.php:83 53 | msgid "A4" 54 | msgstr "" 55 | 56 | #: inc/barcode.class.php:84 57 | msgid "A5" 58 | msgstr "" 59 | 60 | #: inc/barcode.class.php:85 61 | msgid "A6" 62 | msgstr "" 63 | 64 | #: inc/barcode.class.php:86 65 | msgid "A7" 66 | msgstr "" 67 | 68 | #: inc/barcode.class.php:87 69 | msgid "A8" 70 | msgstr "" 71 | 72 | #: inc/barcode.class.php:88 73 | msgid "A9" 74 | msgstr "" 75 | 76 | #: inc/barcode.class.php:90 77 | msgid "B0" 78 | msgstr "" 79 | 80 | #: inc/barcode.class.php:91 81 | msgid "B1" 82 | msgstr "" 83 | 84 | #: inc/barcode.class.php:100 85 | msgid "B10" 86 | msgstr "" 87 | 88 | #: inc/barcode.class.php:92 89 | msgid "B2" 90 | msgstr "" 91 | 92 | #: inc/barcode.class.php:93 93 | msgid "B3" 94 | msgstr "" 95 | 96 | #: inc/barcode.class.php:94 97 | msgid "B4" 98 | msgstr "" 99 | 100 | #: inc/barcode.class.php:95 101 | msgid "B5" 102 | msgstr "" 103 | 104 | #: inc/barcode.class.php:96 105 | msgid "B6" 106 | msgstr "" 107 | 108 | #: inc/barcode.class.php:97 109 | msgid "B7" 110 | msgstr "" 111 | 112 | #: inc/barcode.class.php:98 113 | msgid "B8" 114 | msgstr "" 115 | 116 | #: inc/barcode.class.php:99 117 | msgid "B9" 118 | msgstr "" 119 | 120 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 121 | #: inc/profile.class.php:50 inc/profile.class.php:86 122 | msgid "Barcode" 123 | msgstr "バーコード" 124 | 125 | #: inc/config.class.php:61 126 | msgid "Barcode plugin configuration" 127 | msgstr "" 128 | 129 | #: inc/config.class.php:177 130 | msgid "Barcodes sizes" 131 | msgstr "" 132 | 133 | #: inc/config.class.php:157 134 | msgid "Bottom" 135 | msgstr "下" 136 | 137 | #: inc/config.class.php:190 138 | msgid "By ID" 139 | msgstr "" 140 | 141 | #: inc/config.class.php:191 142 | msgid "By serial number" 143 | msgstr "" 144 | 145 | #: inc/barcode.class.php:101 146 | msgid "C0" 147 | msgstr "" 148 | 149 | #: inc/barcode.class.php:102 150 | msgid "C1" 151 | msgstr "" 152 | 153 | #: inc/barcode.class.php:111 154 | msgid "C10" 155 | msgstr "" 156 | 157 | #: inc/barcode.class.php:103 158 | msgid "C2" 159 | msgstr "" 160 | 161 | #: inc/barcode.class.php:104 162 | msgid "C3" 163 | msgstr "" 164 | 165 | #: inc/barcode.class.php:105 166 | msgid "C4" 167 | msgstr "" 168 | 169 | #: inc/barcode.class.php:106 170 | msgid "C5" 171 | msgstr "" 172 | 173 | #: inc/barcode.class.php:107 174 | msgid "C6" 175 | msgstr "" 176 | 177 | #: inc/barcode.class.php:108 178 | msgid "C7" 179 | msgstr "" 180 | 181 | #: inc/barcode.class.php:109 182 | msgid "C8" 183 | msgstr "" 184 | 185 | #: inc/barcode.class.php:110 186 | msgid "C9" 187 | msgstr "" 188 | 189 | #: inc/barcode.class.php:159 190 | msgid "Code" 191 | msgstr "" 192 | 193 | #: inc/config.class.php:82 194 | msgid "Company logo" 195 | msgstr "組織のロゴ" 196 | 197 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 198 | msgid "Create" 199 | msgstr "" 200 | 201 | #: inc/config.class.php:94 202 | msgid "Delete the logo" 203 | msgstr "" 204 | 205 | #: inc/barcode.class.php:240 206 | msgid "Display border" 207 | msgstr "" 208 | 209 | #: inc/barcode.class.php:248 210 | msgid "Display labels" 211 | msgstr "" 212 | 213 | #: inc/barcode.class.php:124 214 | msgid "EXECUTIVE" 215 | msgstr "" 216 | 217 | #: inc/config.class.php:78 218 | msgid "Empty the cache" 219 | msgstr "キャッシュを空にする" 220 | 221 | #: inc/barcode.class.php:125 222 | msgid "FOLIO" 223 | msgstr "" 224 | 225 | #: inc/config.class.php:66 226 | msgid "General configuration" 227 | msgstr "一般設定" 228 | 229 | #: front/barcode.form.php:62 inc/barcode.class.php:514 230 | #: inc/qrcode.class.php:411 231 | msgid "Generated file" 232 | msgstr "生成されたファイル" 233 | 234 | #: inc/barcode.class.php:157 235 | msgid "Generation" 236 | msgstr "" 237 | 238 | #: inc/profile.class.php:117 239 | msgid "Generation of barcode" 240 | msgstr "バーコードの生成" 241 | 242 | #: inc/config.class.php:170 243 | msgid "Inner horizontal" 244 | msgstr "" 245 | 246 | #: inc/config.class.php:173 247 | msgid "Inner vertical" 248 | msgstr "" 249 | 250 | #: inc/barcode.class.php:194 251 | msgid "It will generate only elements have defined field:" 252 | msgstr "" 253 | 254 | #: inc/barcode.class.php:123 255 | msgid "LEGAL" 256 | msgstr "" 257 | 258 | #: inc/barcode.class.php:122 259 | msgid "LETTER" 260 | msgstr "" 261 | 262 | #: inc/barcode.class.php:136 263 | msgid "Landscape" 264 | msgstr "" 265 | 266 | #: inc/config.class.php:162 267 | msgid "Left" 268 | msgstr "左" 269 | 270 | #: inc/profile.class.php:113 271 | msgid "Manage configuration" 272 | msgstr "設定の管理" 273 | 274 | #: inc/config.class.php:152 275 | msgid "Margins" 276 | msgstr "余白" 277 | 278 | #: inc/config.class.php:182 279 | msgid "Maximum height" 280 | msgstr "" 281 | 282 | #: inc/config.class.php:179 283 | msgid "Maximum width" 284 | msgstr "" 285 | 286 | #: inc/barcode.class.php:230 287 | msgid "Not use first xx barcodes" 288 | msgstr "" 289 | 290 | #: inc/barcode.class.php:174 291 | msgid "Number of copies" 292 | msgstr "" 293 | 294 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 295 | #: inc/config.class.php:148 296 | msgid "Orientation" 297 | msgstr "向き" 298 | 299 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 300 | #: inc/config.class.php:145 301 | msgid "Page size" 302 | msgstr "ページ サイズ" 303 | 304 | #: inc/barcode.class.php:135 305 | msgid "Portrait" 306 | msgstr "" 307 | 308 | #: hook.php:49 309 | msgid "Print QRcodes" 310 | msgstr "QRコードを印刷" 311 | 312 | #: hook.php:46 313 | msgid "Print barcodes" 314 | msgstr "バーコードを印刷" 315 | 316 | #: inc/config.class.php:269 317 | msgid "QRcode" 318 | msgstr "" 319 | 320 | #: inc/barcode.class.php:112 321 | msgid "RA0" 322 | msgstr "" 323 | 324 | #: inc/barcode.class.php:113 325 | msgid "RA1" 326 | msgstr "" 327 | 328 | #: inc/barcode.class.php:114 329 | msgid "RA2" 330 | msgstr "" 331 | 332 | #: inc/barcode.class.php:115 333 | msgid "RA3" 334 | msgstr "" 335 | 336 | #: inc/barcode.class.php:116 337 | msgid "RA4" 338 | msgstr "" 339 | 340 | #: inc/config.class.php:165 341 | msgid "Right" 342 | msgstr "右" 343 | 344 | #: inc/barcode.class.php:117 345 | msgid "SRA0" 346 | msgstr "" 347 | 348 | #: inc/barcode.class.php:118 349 | msgid "SRA1" 350 | msgstr "" 351 | 352 | #: inc/barcode.class.php:119 353 | msgid "SRA2" 354 | msgstr "" 355 | 356 | #: inc/barcode.class.php:120 357 | msgid "SRA3" 358 | msgstr "" 359 | 360 | #: inc/barcode.class.php:121 361 | msgid "SRA4" 362 | msgstr "" 363 | 364 | #: inc/config.class.php:196 365 | msgid "Text display options" 366 | msgstr "" 367 | 368 | #: inc/config.class.php:198 369 | msgid "Text size" 370 | msgstr "" 371 | 372 | #: inc/config.class.php:201 373 | msgid "Text spacing between lines" 374 | msgstr "" 375 | 376 | #: front/config.form.php:56 377 | msgid "The cache has been emptied." 378 | msgstr "" 379 | 380 | #: inc/barcode.class.php:286 381 | msgid "The generation of some barcodes produced errors." 382 | msgstr "" 383 | 384 | #: front/config.form.php:61 385 | msgid "The logo has been removed." 386 | msgstr "" 387 | 388 | #: inc/barcode.class.php:196 389 | msgid "Ticket number" 390 | msgstr "" 391 | 392 | #: inc/config.class.php:154 393 | msgid "Top" 394 | msgstr "上" 395 | 396 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 397 | msgid "Type" 398 | msgstr "種類" 399 | 400 | #: inc/config.class.php:188 401 | msgid "URL" 402 | msgstr "" 403 | 404 | #: inc/config.class.php:264 405 | msgid "code128" 406 | msgstr "" 407 | 408 | #: inc/config.class.php:263 409 | msgid "code39" 410 | msgstr "" 411 | 412 | #: inc/config.class.php:265 413 | msgid "ean13" 414 | msgstr "" 415 | 416 | #: inc/config.class.php:266 417 | msgid "int25" 418 | msgstr "" 419 | 420 | #: inc/config.class.php:267 421 | msgid "postnet" 422 | msgstr "" 423 | 424 | #: inc/config.class.php:268 425 | msgid "upca" 426 | msgstr "" 427 | -------------------------------------------------------------------------------- /locales/ko_KR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/ko_KR.mo -------------------------------------------------------------------------------- /locales/ko_KR.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Cédric Anne, 2018 8 | # Han Seonghyeon , 2021 9 | # SeongHyeon Cho , 2022 10 | # 11 | #, fuzzy 12 | msgid "" 13 | msgstr "" 14 | "Project-Id-Version: PACKAGE VERSION\n" 15 | "Report-Msgid-Bugs-To: \n" 16 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 17 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 18 | "Last-Translator: SeongHyeon Cho , 2022\n" 19 | "Language-Team: Korean (Korea) (https://www.transifex.com/pluginsGLPI/teams/73419/ko_KR/)\n" 20 | "MIME-Version: 1.0\n" 21 | "Content-Type: text/plain; charset=UTF-8\n" 22 | "Content-Transfer-Encoding: 8bit\n" 23 | "Language: ko_KR\n" 24 | "Plural-Forms: nplurals=1; plural=0;\n" 25 | 26 | #: inc/barcode.class.php:78 27 | msgid "2A0" 28 | msgstr "2A0" 29 | 30 | #: inc/barcode.class.php:77 31 | msgid "4A0" 32 | msgstr "4A0" 33 | 34 | #: inc/barcode.class.php:79 35 | msgid "A0" 36 | msgstr "A0" 37 | 38 | #: inc/barcode.class.php:80 39 | msgid "A1" 40 | msgstr "A1" 41 | 42 | #: inc/barcode.class.php:89 43 | msgid "A10" 44 | msgstr "A10" 45 | 46 | #: inc/barcode.class.php:81 47 | msgid "A2" 48 | msgstr "A2" 49 | 50 | #: inc/barcode.class.php:82 51 | msgid "A3" 52 | msgstr "A3" 53 | 54 | #: inc/barcode.class.php:83 55 | msgid "A4" 56 | msgstr "A4" 57 | 58 | #: inc/barcode.class.php:84 59 | msgid "A5" 60 | msgstr "A5" 61 | 62 | #: inc/barcode.class.php:85 63 | msgid "A6" 64 | msgstr "A6" 65 | 66 | #: inc/barcode.class.php:86 67 | msgid "A7" 68 | msgstr "A7" 69 | 70 | #: inc/barcode.class.php:87 71 | msgid "A8" 72 | msgstr "A8" 73 | 74 | #: inc/barcode.class.php:88 75 | msgid "A9" 76 | msgstr "A9" 77 | 78 | #: inc/barcode.class.php:90 79 | msgid "B0" 80 | msgstr "B0" 81 | 82 | #: inc/barcode.class.php:91 83 | msgid "B1" 84 | msgstr "B1" 85 | 86 | #: inc/barcode.class.php:100 87 | msgid "B10" 88 | msgstr "B10" 89 | 90 | #: inc/barcode.class.php:92 91 | msgid "B2" 92 | msgstr "B2" 93 | 94 | #: inc/barcode.class.php:93 95 | msgid "B3" 96 | msgstr "B3" 97 | 98 | #: inc/barcode.class.php:94 99 | msgid "B4" 100 | msgstr "B4" 101 | 102 | #: inc/barcode.class.php:95 103 | msgid "B5" 104 | msgstr "B5" 105 | 106 | #: inc/barcode.class.php:96 107 | msgid "B6" 108 | msgstr "B6" 109 | 110 | #: inc/barcode.class.php:97 111 | msgid "B7" 112 | msgstr "B7" 113 | 114 | #: inc/barcode.class.php:98 115 | msgid "B8" 116 | msgstr "B8" 117 | 118 | #: inc/barcode.class.php:99 119 | msgid "B9" 120 | msgstr "B9" 121 | 122 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 123 | #: inc/profile.class.php:50 inc/profile.class.php:86 124 | msgid "Barcode" 125 | msgstr "바코드" 126 | 127 | #: inc/config.class.php:61 128 | msgid "Barcode plugin configuration" 129 | msgstr "바코드 플러그인 구성" 130 | 131 | #: inc/config.class.php:177 132 | msgid "Barcodes sizes" 133 | msgstr "바코드 크기" 134 | 135 | #: inc/config.class.php:157 136 | msgid "Bottom" 137 | msgstr "하단" 138 | 139 | #: inc/config.class.php:190 140 | msgid "By ID" 141 | msgstr "ID로" 142 | 143 | #: inc/config.class.php:191 144 | msgid "By serial number" 145 | msgstr "시리얼 번호로" 146 | 147 | #: inc/barcode.class.php:101 148 | msgid "C0" 149 | msgstr "C0" 150 | 151 | #: inc/barcode.class.php:102 152 | msgid "C1" 153 | msgstr "C1" 154 | 155 | #: inc/barcode.class.php:111 156 | msgid "C10" 157 | msgstr "C10" 158 | 159 | #: inc/barcode.class.php:103 160 | msgid "C2" 161 | msgstr "C2" 162 | 163 | #: inc/barcode.class.php:104 164 | msgid "C3" 165 | msgstr "C3" 166 | 167 | #: inc/barcode.class.php:105 168 | msgid "C4" 169 | msgstr "C4" 170 | 171 | #: inc/barcode.class.php:106 172 | msgid "C5" 173 | msgstr "C5" 174 | 175 | #: inc/barcode.class.php:107 176 | msgid "C6" 177 | msgstr "C6" 178 | 179 | #: inc/barcode.class.php:108 180 | msgid "C7" 181 | msgstr "C7" 182 | 183 | #: inc/barcode.class.php:109 184 | msgid "C8" 185 | msgstr "C8" 186 | 187 | #: inc/barcode.class.php:110 188 | msgid "C9" 189 | msgstr "C9" 190 | 191 | #: inc/barcode.class.php:159 192 | msgid "Code" 193 | msgstr "코드" 194 | 195 | #: inc/config.class.php:82 196 | msgid "Company logo" 197 | msgstr "회사 로고" 198 | 199 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 200 | msgid "Create" 201 | msgstr "생성" 202 | 203 | #: inc/config.class.php:94 204 | msgid "Delete the logo" 205 | msgstr "로고 삭제" 206 | 207 | #: inc/barcode.class.php:240 208 | msgid "Display border" 209 | msgstr "테두리 표시" 210 | 211 | #: inc/barcode.class.php:248 212 | msgid "Display labels" 213 | msgstr "라벨 표시" 214 | 215 | #: inc/barcode.class.php:124 216 | msgid "EXECUTIVE" 217 | msgstr "EXECUTIVE" 218 | 219 | #: inc/config.class.php:78 220 | msgid "Empty the cache" 221 | msgstr "캐시 비우기" 222 | 223 | #: inc/barcode.class.php:125 224 | msgid "FOLIO" 225 | msgstr "FOLIO" 226 | 227 | #: inc/config.class.php:66 228 | msgid "General configuration" 229 | msgstr "일반 구성" 230 | 231 | #: front/barcode.form.php:62 inc/barcode.class.php:514 232 | #: inc/qrcode.class.php:411 233 | msgid "Generated file" 234 | msgstr "생성된 파일" 235 | 236 | #: inc/barcode.class.php:157 237 | msgid "Generation" 238 | msgstr "생성" 239 | 240 | #: inc/profile.class.php:117 241 | msgid "Generation of barcode" 242 | msgstr "바코드 생성" 243 | 244 | #: inc/config.class.php:170 245 | msgid "Inner horizontal" 246 | msgstr "내부 가로" 247 | 248 | #: inc/config.class.php:173 249 | msgid "Inner vertical" 250 | msgstr "내부 세로" 251 | 252 | #: inc/barcode.class.php:194 253 | msgid "It will generate only elements have defined field:" 254 | msgstr "요소를 정의한 필드만 생성합니다:" 255 | 256 | #: inc/barcode.class.php:123 257 | msgid "LEGAL" 258 | msgstr "LEGAL" 259 | 260 | #: inc/barcode.class.php:122 261 | msgid "LETTER" 262 | msgstr "LETTER" 263 | 264 | #: inc/barcode.class.php:136 265 | msgid "Landscape" 266 | msgstr "가로방향" 267 | 268 | #: inc/config.class.php:162 269 | msgid "Left" 270 | msgstr "좌측" 271 | 272 | #: inc/profile.class.php:113 273 | msgid "Manage configuration" 274 | msgstr "관리 구성" 275 | 276 | #: inc/config.class.php:152 277 | msgid "Margins" 278 | msgstr "여백" 279 | 280 | #: inc/config.class.php:182 281 | msgid "Maximum height" 282 | msgstr "최대 높이" 283 | 284 | #: inc/config.class.php:179 285 | msgid "Maximum width" 286 | msgstr "최대 폭" 287 | 288 | #: inc/barcode.class.php:230 289 | msgid "Not use first xx barcodes" 290 | msgstr "첫 번째 xx 바코드 사용 안 함" 291 | 292 | #: inc/barcode.class.php:174 293 | msgid "Number of copies" 294 | msgstr "사본 수" 295 | 296 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 297 | #: inc/config.class.php:148 298 | msgid "Orientation" 299 | msgstr "방향" 300 | 301 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 302 | #: inc/config.class.php:145 303 | msgid "Page size" 304 | msgstr "페이지 크기" 305 | 306 | #: inc/barcode.class.php:135 307 | msgid "Portrait" 308 | msgstr "세로방향" 309 | 310 | #: hook.php:49 311 | msgid "Print QRcodes" 312 | msgstr "QR코드 출력" 313 | 314 | #: hook.php:46 315 | msgid "Print barcodes" 316 | msgstr "바코드 출력" 317 | 318 | #: inc/config.class.php:269 319 | msgid "QRcode" 320 | msgstr "QR코드" 321 | 322 | #: inc/barcode.class.php:112 323 | msgid "RA0" 324 | msgstr "RA0" 325 | 326 | #: inc/barcode.class.php:113 327 | msgid "RA1" 328 | msgstr "RA1" 329 | 330 | #: inc/barcode.class.php:114 331 | msgid "RA2" 332 | msgstr "RA2" 333 | 334 | #: inc/barcode.class.php:115 335 | msgid "RA3" 336 | msgstr "RA3" 337 | 338 | #: inc/barcode.class.php:116 339 | msgid "RA4" 340 | msgstr "RA4" 341 | 342 | #: inc/config.class.php:165 343 | msgid "Right" 344 | msgstr "우측" 345 | 346 | #: inc/barcode.class.php:117 347 | msgid "SRA0" 348 | msgstr "SRA0" 349 | 350 | #: inc/barcode.class.php:118 351 | msgid "SRA1" 352 | msgstr "SRA1" 353 | 354 | #: inc/barcode.class.php:119 355 | msgid "SRA2" 356 | msgstr "SRA2" 357 | 358 | #: inc/barcode.class.php:120 359 | msgid "SRA3" 360 | msgstr "SRA3" 361 | 362 | #: inc/barcode.class.php:121 363 | msgid "SRA4" 364 | msgstr "SRA4" 365 | 366 | #: inc/config.class.php:196 367 | msgid "Text display options" 368 | msgstr "문자 표시 옵션" 369 | 370 | #: inc/config.class.php:198 371 | msgid "Text size" 372 | msgstr "문자 사이즈" 373 | 374 | #: inc/config.class.php:201 375 | msgid "Text spacing between lines" 376 | msgstr "줄 사이의 텍스트 간격" 377 | 378 | #: front/config.form.php:56 379 | msgid "The cache has been emptied." 380 | msgstr "캐시를 비웠습니다." 381 | 382 | #: inc/barcode.class.php:286 383 | msgid "The generation of some barcodes produced errors." 384 | msgstr "몇몇 바코드들의 생성시 오류 발생." 385 | 386 | #: front/config.form.php:61 387 | msgid "The logo has been removed." 388 | msgstr "로고가 제거되었습니다." 389 | 390 | #: inc/barcode.class.php:196 391 | msgid "Ticket number" 392 | msgstr "티켓 수" 393 | 394 | #: inc/config.class.php:154 395 | msgid "Top" 396 | msgstr "상단" 397 | 398 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 399 | msgid "Type" 400 | msgstr "유형" 401 | 402 | #: inc/config.class.php:188 403 | msgid "URL" 404 | msgstr "URL" 405 | 406 | #: inc/config.class.php:264 407 | msgid "code128" 408 | msgstr "code128" 409 | 410 | #: inc/config.class.php:263 411 | msgid "code39" 412 | msgstr "code39" 413 | 414 | #: inc/config.class.php:265 415 | msgid "ean13" 416 | msgstr "ean13" 417 | 418 | #: inc/config.class.php:266 419 | msgid "int25" 420 | msgstr "int25" 421 | 422 | #: inc/config.class.php:267 423 | msgid "postnet" 424 | msgstr "포스트넷" 425 | 426 | #: inc/config.class.php:268 427 | msgid "upca" 428 | msgstr "upca" 429 | -------------------------------------------------------------------------------- /locales/pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/pl_PL.mo -------------------------------------------------------------------------------- /locales/pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/pt_BR.mo -------------------------------------------------------------------------------- /locales/pt_PT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/pt_PT.mo -------------------------------------------------------------------------------- /locales/ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/ru_RU.mo -------------------------------------------------------------------------------- /locales/sl_SI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/sl_SI.mo -------------------------------------------------------------------------------- /locales/sl_SI.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alexander Salas Bastidas , 2017 8 | # Cédric Anne, 2018 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: PACKAGE VERSION\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 16 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 17 | "Last-Translator: Cédric Anne, 2018\n" 18 | "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/pluginsGLPI/teams/73419/sl_SI/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: sl_SI\n" 23 | "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" 24 | 25 | #: inc/barcode.class.php:78 26 | msgid "2A0" 27 | msgstr "2A0" 28 | 29 | #: inc/barcode.class.php:77 30 | msgid "4A0" 31 | msgstr "4A0" 32 | 33 | #: inc/barcode.class.php:79 34 | msgid "A0" 35 | msgstr "A0" 36 | 37 | #: inc/barcode.class.php:80 38 | msgid "A1" 39 | msgstr "A1" 40 | 41 | #: inc/barcode.class.php:89 42 | msgid "A10" 43 | msgstr "A10" 44 | 45 | #: inc/barcode.class.php:81 46 | msgid "A2" 47 | msgstr "A2" 48 | 49 | #: inc/barcode.class.php:82 50 | msgid "A3" 51 | msgstr "A3" 52 | 53 | #: inc/barcode.class.php:83 54 | msgid "A4" 55 | msgstr "A4" 56 | 57 | #: inc/barcode.class.php:84 58 | msgid "A5" 59 | msgstr "A5" 60 | 61 | #: inc/barcode.class.php:85 62 | msgid "A6" 63 | msgstr "A6" 64 | 65 | #: inc/barcode.class.php:86 66 | msgid "A7" 67 | msgstr "A7" 68 | 69 | #: inc/barcode.class.php:87 70 | msgid "A8" 71 | msgstr "A8" 72 | 73 | #: inc/barcode.class.php:88 74 | msgid "A9" 75 | msgstr "A9" 76 | 77 | #: inc/barcode.class.php:90 78 | msgid "B0" 79 | msgstr "B0" 80 | 81 | #: inc/barcode.class.php:91 82 | msgid "B1" 83 | msgstr "B1" 84 | 85 | #: inc/barcode.class.php:100 86 | msgid "B10" 87 | msgstr "B10" 88 | 89 | #: inc/barcode.class.php:92 90 | msgid "B2" 91 | msgstr "B2" 92 | 93 | #: inc/barcode.class.php:93 94 | msgid "B3" 95 | msgstr "B3" 96 | 97 | #: inc/barcode.class.php:94 98 | msgid "B4" 99 | msgstr "B4" 100 | 101 | #: inc/barcode.class.php:95 102 | msgid "B5" 103 | msgstr "B5" 104 | 105 | #: inc/barcode.class.php:96 106 | msgid "B6" 107 | msgstr "B6" 108 | 109 | #: inc/barcode.class.php:97 110 | msgid "B7" 111 | msgstr "B7" 112 | 113 | #: inc/barcode.class.php:98 114 | msgid "B8" 115 | msgstr "B8" 116 | 117 | #: inc/barcode.class.php:99 118 | msgid "B9" 119 | msgstr "B9" 120 | 121 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 122 | #: inc/profile.class.php:50 inc/profile.class.php:86 123 | msgid "Barcode" 124 | msgstr "Črtne kode" 125 | 126 | #: inc/config.class.php:61 127 | msgid "Barcode plugin configuration" 128 | msgstr "Konfiguracija črtne kode plugin" 129 | 130 | #: inc/config.class.php:177 131 | msgid "Barcodes sizes" 132 | msgstr "Velikosti črtne kode" 133 | 134 | #: inc/config.class.php:157 135 | msgid "Bottom" 136 | msgstr "Dno" 137 | 138 | #: inc/config.class.php:190 139 | msgid "By ID" 140 | msgstr "" 141 | 142 | #: inc/config.class.php:191 143 | msgid "By serial number" 144 | msgstr "" 145 | 146 | #: inc/barcode.class.php:101 147 | msgid "C0" 148 | msgstr "C0" 149 | 150 | #: inc/barcode.class.php:102 151 | msgid "C1" 152 | msgstr "C1" 153 | 154 | #: inc/barcode.class.php:111 155 | msgid "C10" 156 | msgstr "C10" 157 | 158 | #: inc/barcode.class.php:103 159 | msgid "C2" 160 | msgstr "C2" 161 | 162 | #: inc/barcode.class.php:104 163 | msgid "C3" 164 | msgstr "C3" 165 | 166 | #: inc/barcode.class.php:105 167 | msgid "C4" 168 | msgstr "C4" 169 | 170 | #: inc/barcode.class.php:106 171 | msgid "C5" 172 | msgstr "C5" 173 | 174 | #: inc/barcode.class.php:107 175 | msgid "C6" 176 | msgstr "C6" 177 | 178 | #: inc/barcode.class.php:108 179 | msgid "C7" 180 | msgstr "C7" 181 | 182 | #: inc/barcode.class.php:109 183 | msgid "C8" 184 | msgstr "C8" 185 | 186 | #: inc/barcode.class.php:110 187 | msgid "C9" 188 | msgstr "C9" 189 | 190 | #: inc/barcode.class.php:159 191 | msgid "Code" 192 | msgstr "Zbornik" 193 | 194 | #: inc/config.class.php:82 195 | msgid "Company logo" 196 | msgstr "Logotip podjetja" 197 | 198 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 199 | msgid "Create" 200 | msgstr "Ustvarite" 201 | 202 | #: inc/config.class.php:94 203 | msgid "Delete the logo" 204 | msgstr "" 205 | 206 | #: inc/barcode.class.php:240 207 | msgid "Display border" 208 | msgstr "Prikaz meje" 209 | 210 | #: inc/barcode.class.php:248 211 | msgid "Display labels" 212 | msgstr "" 213 | 214 | #: inc/barcode.class.php:124 215 | msgid "EXECUTIVE" 216 | msgstr "IZVRŠNI" 217 | 218 | #: inc/config.class.php:78 219 | msgid "Empty the cache" 220 | msgstr "Izpraznitev zaèasnega pomnilnika" 221 | 222 | #: inc/barcode.class.php:125 223 | msgid "FOLIO" 224 | msgstr "FOLIO" 225 | 226 | #: inc/config.class.php:66 227 | msgid "General configuration" 228 | msgstr "Splošna konfiguracija" 229 | 230 | #: front/barcode.form.php:62 inc/barcode.class.php:514 231 | #: inc/qrcode.class.php:411 232 | msgid "Generated file" 233 | msgstr "Ustvarjene datoteke" 234 | 235 | #: inc/barcode.class.php:157 236 | msgid "Generation" 237 | msgstr "Generacije" 238 | 239 | #: inc/profile.class.php:117 240 | msgid "Generation of barcode" 241 | msgstr "Generacija črtne kode" 242 | 243 | #: inc/config.class.php:170 244 | msgid "Inner horizontal" 245 | msgstr "Notranje vodoravne" 246 | 247 | #: inc/config.class.php:173 248 | msgid "Inner vertical" 249 | msgstr "Notranje navpično" 250 | 251 | #: inc/barcode.class.php:194 252 | msgid "It will generate only elements have defined field:" 253 | msgstr "To bo ustvarilo samo elemente določili polje:" 254 | 255 | #: inc/barcode.class.php:123 256 | msgid "LEGAL" 257 | msgstr "PRAVNE" 258 | 259 | #: inc/barcode.class.php:122 260 | msgid "LETTER" 261 | msgstr "PISMO" 262 | 263 | #: inc/barcode.class.php:136 264 | msgid "Landscape" 265 | msgstr "Krajine" 266 | 267 | #: inc/config.class.php:162 268 | msgid "Left" 269 | msgstr "Levo" 270 | 271 | #: inc/profile.class.php:113 272 | msgid "Manage configuration" 273 | msgstr "Upravljanje konfiguracije" 274 | 275 | #: inc/config.class.php:152 276 | msgid "Margins" 277 | msgstr "Robovi" 278 | 279 | #: inc/config.class.php:182 280 | msgid "Maximum height" 281 | msgstr "Največja višina" 282 | 283 | #: inc/config.class.php:179 284 | msgid "Maximum width" 285 | msgstr "Največja širina" 286 | 287 | #: inc/barcode.class.php:230 288 | msgid "Not use first xx barcodes" 289 | msgstr "Ne uporabite prvi xx črtne kode" 290 | 291 | #: inc/barcode.class.php:174 292 | msgid "Number of copies" 293 | msgstr "Število izvodov" 294 | 295 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 296 | #: inc/config.class.php:148 297 | msgid "Orientation" 298 | msgstr "Usmerjenost" 299 | 300 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 301 | #: inc/config.class.php:145 302 | msgid "Page size" 303 | msgstr "Velikost strani" 304 | 305 | #: inc/barcode.class.php:135 306 | msgid "Portrait" 307 | msgstr "Portret" 308 | 309 | #: hook.php:49 310 | msgid "Print QRcodes" 311 | msgstr "Tiskanje QRcodes" 312 | 313 | #: hook.php:46 314 | msgid "Print barcodes" 315 | msgstr "Tiskanje črtne kode" 316 | 317 | #: inc/config.class.php:269 318 | msgid "QRcode" 319 | msgstr "QRcode" 320 | 321 | #: inc/barcode.class.php:112 322 | msgid "RA0" 323 | msgstr "RA0" 324 | 325 | #: inc/barcode.class.php:113 326 | msgid "RA1" 327 | msgstr "RA1" 328 | 329 | #: inc/barcode.class.php:114 330 | msgid "RA2" 331 | msgstr "RA2" 332 | 333 | #: inc/barcode.class.php:115 334 | msgid "RA3" 335 | msgstr "RA3" 336 | 337 | #: inc/barcode.class.php:116 338 | msgid "RA4" 339 | msgstr "RA4" 340 | 341 | #: inc/config.class.php:165 342 | msgid "Right" 343 | msgstr "Pravico" 344 | 345 | #: inc/barcode.class.php:117 346 | msgid "SRA0" 347 | msgstr "SRA0" 348 | 349 | #: inc/barcode.class.php:118 350 | msgid "SRA1" 351 | msgstr "SRA1" 352 | 353 | #: inc/barcode.class.php:119 354 | msgid "SRA2" 355 | msgstr "SRA2" 356 | 357 | #: inc/barcode.class.php:120 358 | msgid "SRA3" 359 | msgstr "SRA3" 360 | 361 | #: inc/barcode.class.php:121 362 | msgid "SRA4" 363 | msgstr "SRA4" 364 | 365 | #: inc/config.class.php:196 366 | msgid "Text display options" 367 | msgstr "" 368 | 369 | #: inc/config.class.php:198 370 | msgid "Text size" 371 | msgstr "" 372 | 373 | #: inc/config.class.php:201 374 | msgid "Text spacing between lines" 375 | msgstr "" 376 | 377 | #: front/config.form.php:56 378 | msgid "The cache has been emptied." 379 | msgstr "Cache je bila izpraznjena." 380 | 381 | #: inc/barcode.class.php:286 382 | msgid "The generation of some barcodes produced errors." 383 | msgstr "Generacije nekaj bacodes proizvaja napake." 384 | 385 | #: front/config.form.php:61 386 | msgid "The logo has been removed." 387 | msgstr "" 388 | 389 | #: inc/barcode.class.php:196 390 | msgid "Ticket number" 391 | msgstr "Številka letalske karte" 392 | 393 | #: inc/config.class.php:154 394 | msgid "Top" 395 | msgstr "Vrh" 396 | 397 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 398 | msgid "Type" 399 | msgstr "Vrsta" 400 | 401 | #: inc/config.class.php:188 402 | msgid "URL" 403 | msgstr "" 404 | 405 | #: inc/config.class.php:264 406 | msgid "code128" 407 | msgstr "code128" 408 | 409 | #: inc/config.class.php:263 410 | msgid "code39" 411 | msgstr "code39" 412 | 413 | #: inc/config.class.php:265 414 | msgid "ean13" 415 | msgstr "ean13" 416 | 417 | #: inc/config.class.php:266 418 | msgid "int25" 419 | msgstr "int25" 420 | 421 | #: inc/config.class.php:267 422 | msgid "postnet" 423 | msgstr "POSTNET" 424 | 425 | #: inc/config.class.php:268 426 | msgid "upca" 427 | msgstr "upca" 428 | -------------------------------------------------------------------------------- /locales/sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/sv_SE.mo -------------------------------------------------------------------------------- /locales/sv_SE.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Mattias Wass , 2018 8 | # Cédric Anne, 2018 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: PACKAGE VERSION\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 16 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 17 | "Last-Translator: Cédric Anne, 2018\n" 18 | "Language-Team: Swedish (Sweden) (https://www.transifex.com/pluginsGLPI/teams/73419/sv_SE/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: sv_SE\n" 23 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 24 | 25 | #: inc/barcode.class.php:78 26 | msgid "2A0" 27 | msgstr "2A0" 28 | 29 | #: inc/barcode.class.php:77 30 | msgid "4A0" 31 | msgstr "4A0" 32 | 33 | #: inc/barcode.class.php:79 34 | msgid "A0" 35 | msgstr "A0" 36 | 37 | #: inc/barcode.class.php:80 38 | msgid "A1" 39 | msgstr "A1" 40 | 41 | #: inc/barcode.class.php:89 42 | msgid "A10" 43 | msgstr "A10" 44 | 45 | #: inc/barcode.class.php:81 46 | msgid "A2" 47 | msgstr "A2" 48 | 49 | #: inc/barcode.class.php:82 50 | msgid "A3" 51 | msgstr "A3" 52 | 53 | #: inc/barcode.class.php:83 54 | msgid "A4" 55 | msgstr "A4" 56 | 57 | #: inc/barcode.class.php:84 58 | msgid "A5" 59 | msgstr "A5" 60 | 61 | #: inc/barcode.class.php:85 62 | msgid "A6" 63 | msgstr "A6" 64 | 65 | #: inc/barcode.class.php:86 66 | msgid "A7" 67 | msgstr "A7" 68 | 69 | #: inc/barcode.class.php:87 70 | msgid "A8" 71 | msgstr "A8" 72 | 73 | #: inc/barcode.class.php:88 74 | msgid "A9" 75 | msgstr "A9" 76 | 77 | #: inc/barcode.class.php:90 78 | msgid "B0" 79 | msgstr "B0" 80 | 81 | #: inc/barcode.class.php:91 82 | msgid "B1" 83 | msgstr "B1" 84 | 85 | #: inc/barcode.class.php:100 86 | msgid "B10" 87 | msgstr "B10" 88 | 89 | #: inc/barcode.class.php:92 90 | msgid "B2" 91 | msgstr "B2" 92 | 93 | #: inc/barcode.class.php:93 94 | msgid "B3" 95 | msgstr "B3" 96 | 97 | #: inc/barcode.class.php:94 98 | msgid "B4" 99 | msgstr "B4" 100 | 101 | #: inc/barcode.class.php:95 102 | msgid "B5" 103 | msgstr "B5" 104 | 105 | #: inc/barcode.class.php:96 106 | msgid "B6" 107 | msgstr "B6" 108 | 109 | #: inc/barcode.class.php:97 110 | msgid "B7" 111 | msgstr "B7" 112 | 113 | #: inc/barcode.class.php:98 114 | msgid "B8" 115 | msgstr "B8" 116 | 117 | #: inc/barcode.class.php:99 118 | msgid "B9" 119 | msgstr "B9" 120 | 121 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 122 | #: inc/profile.class.php:50 inc/profile.class.php:86 123 | msgid "Barcode" 124 | msgstr "Streckkod" 125 | 126 | #: inc/config.class.php:61 127 | msgid "Barcode plugin configuration" 128 | msgstr "Barcode plugin Konfigurering" 129 | 130 | #: inc/config.class.php:177 131 | msgid "Barcodes sizes" 132 | msgstr "Streckkods storlke" 133 | 134 | #: inc/config.class.php:157 135 | msgid "Bottom" 136 | msgstr "Botten" 137 | 138 | #: inc/config.class.php:190 139 | msgid "By ID" 140 | msgstr "" 141 | 142 | #: inc/config.class.php:191 143 | msgid "By serial number" 144 | msgstr "" 145 | 146 | #: inc/barcode.class.php:101 147 | msgid "C0" 148 | msgstr "C0" 149 | 150 | #: inc/barcode.class.php:102 151 | msgid "C1" 152 | msgstr "C1" 153 | 154 | #: inc/barcode.class.php:111 155 | msgid "C10" 156 | msgstr "C10" 157 | 158 | #: inc/barcode.class.php:103 159 | msgid "C2" 160 | msgstr "C2" 161 | 162 | #: inc/barcode.class.php:104 163 | msgid "C3" 164 | msgstr "C3" 165 | 166 | #: inc/barcode.class.php:105 167 | msgid "C4" 168 | msgstr "C4" 169 | 170 | #: inc/barcode.class.php:106 171 | msgid "C5" 172 | msgstr "C5" 173 | 174 | #: inc/barcode.class.php:107 175 | msgid "C6" 176 | msgstr "C6" 177 | 178 | #: inc/barcode.class.php:108 179 | msgid "C7" 180 | msgstr "C7" 181 | 182 | #: inc/barcode.class.php:109 183 | msgid "C8" 184 | msgstr "C8" 185 | 186 | #: inc/barcode.class.php:110 187 | msgid "C9" 188 | msgstr "C9" 189 | 190 | #: inc/barcode.class.php:159 191 | msgid "Code" 192 | msgstr "Kod" 193 | 194 | #: inc/config.class.php:82 195 | msgid "Company logo" 196 | msgstr "Företags Logo" 197 | 198 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 199 | msgid "Create" 200 | msgstr "Skapa" 201 | 202 | #: inc/config.class.php:94 203 | msgid "Delete the logo" 204 | msgstr "" 205 | 206 | #: inc/barcode.class.php:240 207 | msgid "Display border" 208 | msgstr "Visa kanter" 209 | 210 | #: inc/barcode.class.php:248 211 | msgid "Display labels" 212 | msgstr "" 213 | 214 | #: inc/barcode.class.php:124 215 | msgid "EXECUTIVE" 216 | msgstr "Verkställande" 217 | 218 | #: inc/config.class.php:78 219 | msgid "Empty the cache" 220 | msgstr "Töm Cache" 221 | 222 | #: inc/barcode.class.php:125 223 | msgid "FOLIO" 224 | msgstr "folio" 225 | 226 | #: inc/config.class.php:66 227 | msgid "General configuration" 228 | msgstr "Allmän konfiguration" 229 | 230 | #: front/barcode.form.php:62 inc/barcode.class.php:514 231 | #: inc/qrcode.class.php:411 232 | msgid "Generated file" 233 | msgstr "Genererad fil" 234 | 235 | #: inc/barcode.class.php:157 236 | msgid "Generation" 237 | msgstr "Generation" 238 | 239 | #: inc/profile.class.php:117 240 | msgid "Generation of barcode" 241 | msgstr "Generera Streckkod" 242 | 243 | #: inc/config.class.php:170 244 | msgid "Inner horizontal" 245 | msgstr "invändig horizontal" 246 | 247 | #: inc/config.class.php:173 248 | msgid "Inner vertical" 249 | msgstr "invändig vertikal" 250 | 251 | #: inc/barcode.class.php:194 252 | msgid "It will generate only elements have defined field:" 253 | msgstr "Generar endast element som har definierade fält" 254 | 255 | #: inc/barcode.class.php:123 256 | msgid "LEGAL" 257 | msgstr "Rättslig" 258 | 259 | #: inc/barcode.class.php:122 260 | msgid "LETTER" 261 | msgstr "Brev" 262 | 263 | #: inc/barcode.class.php:136 264 | msgid "Landscape" 265 | msgstr "Landskap" 266 | 267 | #: inc/config.class.php:162 268 | msgid "Left" 269 | msgstr "Vänster" 270 | 271 | #: inc/profile.class.php:113 272 | msgid "Manage configuration" 273 | msgstr "Managera Konfiguration" 274 | 275 | #: inc/config.class.php:152 276 | msgid "Margins" 277 | msgstr "Marginaler" 278 | 279 | #: inc/config.class.php:182 280 | msgid "Maximum height" 281 | msgstr "Max Höjd" 282 | 283 | #: inc/config.class.php:179 284 | msgid "Maximum width" 285 | msgstr "Max Bredd" 286 | 287 | #: inc/barcode.class.php:230 288 | msgid "Not use first xx barcodes" 289 | msgstr "Använd inte första xx streckkoder" 290 | 291 | #: inc/barcode.class.php:174 292 | msgid "Number of copies" 293 | msgstr "Antal Kopior" 294 | 295 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 296 | #: inc/config.class.php:148 297 | msgid "Orientation" 298 | msgstr "Orientering" 299 | 300 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 301 | #: inc/config.class.php:145 302 | msgid "Page size" 303 | msgstr "Sidstorlek" 304 | 305 | #: inc/barcode.class.php:135 306 | msgid "Portrait" 307 | msgstr "Porträt" 308 | 309 | #: hook.php:49 310 | msgid "Print QRcodes" 311 | msgstr "Skriv ut QRkoder" 312 | 313 | #: hook.php:46 314 | msgid "Print barcodes" 315 | msgstr "Skriv ut streckkoder" 316 | 317 | #: inc/config.class.php:269 318 | msgid "QRcode" 319 | msgstr "QRkod" 320 | 321 | #: inc/barcode.class.php:112 322 | msgid "RA0" 323 | msgstr "RA0" 324 | 325 | #: inc/barcode.class.php:113 326 | msgid "RA1" 327 | msgstr "RA1" 328 | 329 | #: inc/barcode.class.php:114 330 | msgid "RA2" 331 | msgstr "RA2" 332 | 333 | #: inc/barcode.class.php:115 334 | msgid "RA3" 335 | msgstr "RA3" 336 | 337 | #: inc/barcode.class.php:116 338 | msgid "RA4" 339 | msgstr "RA4" 340 | 341 | #: inc/config.class.php:165 342 | msgid "Right" 343 | msgstr "Höger" 344 | 345 | #: inc/barcode.class.php:117 346 | msgid "SRA0" 347 | msgstr "SRA0" 348 | 349 | #: inc/barcode.class.php:118 350 | msgid "SRA1" 351 | msgstr "SRA1" 352 | 353 | #: inc/barcode.class.php:119 354 | msgid "SRA2" 355 | msgstr "SRA2" 356 | 357 | #: inc/barcode.class.php:120 358 | msgid "SRA3" 359 | msgstr "SRA3" 360 | 361 | #: inc/barcode.class.php:121 362 | msgid "SRA4" 363 | msgstr "SRA4" 364 | 365 | #: inc/config.class.php:196 366 | msgid "Text display options" 367 | msgstr "" 368 | 369 | #: inc/config.class.php:198 370 | msgid "Text size" 371 | msgstr "" 372 | 373 | #: inc/config.class.php:201 374 | msgid "Text spacing between lines" 375 | msgstr "" 376 | 377 | #: front/config.form.php:56 378 | msgid "The cache has been emptied." 379 | msgstr "Cacheminnet har tömts." 380 | 381 | #: inc/barcode.class.php:286 382 | msgid "The generation of some barcodes produced errors." 383 | msgstr "Genereringen av vissa streckkoder producerade fel" 384 | 385 | #: front/config.form.php:61 386 | msgid "The logo has been removed." 387 | msgstr "" 388 | 389 | #: inc/barcode.class.php:196 390 | msgid "Ticket number" 391 | msgstr "biljettnummer" 392 | 393 | #: inc/config.class.php:154 394 | msgid "Top" 395 | msgstr "Topp" 396 | 397 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 398 | msgid "Type" 399 | msgstr "Typ" 400 | 401 | #: inc/config.class.php:188 402 | msgid "URL" 403 | msgstr "" 404 | 405 | #: inc/config.class.php:264 406 | msgid "code128" 407 | msgstr "kod128" 408 | 409 | #: inc/config.class.php:263 410 | msgid "code39" 411 | msgstr "kod39" 412 | 413 | #: inc/config.class.php:265 414 | msgid "ean13" 415 | msgstr "ean13" 416 | 417 | #: inc/config.class.php:266 418 | msgid "int25" 419 | msgstr "int25" 420 | 421 | #: inc/config.class.php:267 422 | msgid "postnet" 423 | msgstr "postnet" 424 | 425 | #: inc/config.class.php:268 426 | msgid "upca" 427 | msgstr "upca" 428 | -------------------------------------------------------------------------------- /locales/tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/tr_TR.mo -------------------------------------------------------------------------------- /locales/tr_TR.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Johan Cwiklinski, 2017 8 | # Alexander Salas Bastidas , 2017 9 | # Cédric Anne, 2018 10 | # Sinan Sarıçınar , 2021 11 | # 12 | #, fuzzy 13 | msgid "" 14 | msgstr "" 15 | "Project-Id-Version: PACKAGE VERSION\n" 16 | "Report-Msgid-Bugs-To: \n" 17 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 18 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 19 | "Last-Translator: Sinan Sarıçınar , 2021\n" 20 | "Language-Team: Turkish (Turkey) (https://www.transifex.com/pluginsGLPI/teams/73419/tr_TR/)\n" 21 | "MIME-Version: 1.0\n" 22 | "Content-Type: text/plain; charset=UTF-8\n" 23 | "Content-Transfer-Encoding: 8bit\n" 24 | "Language: tr_TR\n" 25 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 26 | 27 | #: inc/barcode.class.php:78 28 | msgid "2A0" 29 | msgstr "2A0" 30 | 31 | #: inc/barcode.class.php:77 32 | msgid "4A0" 33 | msgstr "4A0" 34 | 35 | #: inc/barcode.class.php:79 36 | msgid "A0" 37 | msgstr "A0" 38 | 39 | #: inc/barcode.class.php:80 40 | msgid "A1" 41 | msgstr "A1" 42 | 43 | #: inc/barcode.class.php:89 44 | msgid "A10" 45 | msgstr "A10" 46 | 47 | #: inc/barcode.class.php:81 48 | msgid "A2" 49 | msgstr "A2" 50 | 51 | #: inc/barcode.class.php:82 52 | msgid "A3" 53 | msgstr "A3" 54 | 55 | #: inc/barcode.class.php:83 56 | msgid "A4" 57 | msgstr "A4" 58 | 59 | #: inc/barcode.class.php:84 60 | msgid "A5" 61 | msgstr "A5" 62 | 63 | #: inc/barcode.class.php:85 64 | msgid "A6" 65 | msgstr "A6" 66 | 67 | #: inc/barcode.class.php:86 68 | msgid "A7" 69 | msgstr "A7" 70 | 71 | #: inc/barcode.class.php:87 72 | msgid "A8" 73 | msgstr "A8" 74 | 75 | #: inc/barcode.class.php:88 76 | msgid "A9" 77 | msgstr "A9" 78 | 79 | #: inc/barcode.class.php:90 80 | msgid "B0" 81 | msgstr "B0" 82 | 83 | #: inc/barcode.class.php:91 84 | msgid "B1" 85 | msgstr "B1" 86 | 87 | #: inc/barcode.class.php:100 88 | msgid "B10" 89 | msgstr "B10" 90 | 91 | #: inc/barcode.class.php:92 92 | msgid "B2" 93 | msgstr "B2" 94 | 95 | #: inc/barcode.class.php:93 96 | msgid "B3" 97 | msgstr "B3" 98 | 99 | #: inc/barcode.class.php:94 100 | msgid "B4" 101 | msgstr "B4" 102 | 103 | #: inc/barcode.class.php:95 104 | msgid "B5" 105 | msgstr "B5" 106 | 107 | #: inc/barcode.class.php:96 108 | msgid "B6" 109 | msgstr "B6" 110 | 111 | #: inc/barcode.class.php:97 112 | msgid "B7" 113 | msgstr "B7" 114 | 115 | #: inc/barcode.class.php:98 116 | msgid "B8" 117 | msgstr "B8" 118 | 119 | #: inc/barcode.class.php:99 120 | msgid "B9" 121 | msgstr "B9" 122 | 123 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 124 | #: inc/profile.class.php:50 inc/profile.class.php:86 125 | msgid "Barcode" 126 | msgstr "Barkod" 127 | 128 | #: inc/config.class.php:61 129 | msgid "Barcode plugin configuration" 130 | msgstr "Barkod uygulama eki ayarları" 131 | 132 | #: inc/config.class.php:177 133 | msgid "Barcodes sizes" 134 | msgstr "Barkod boyutları" 135 | 136 | #: inc/config.class.php:157 137 | msgid "Bottom" 138 | msgstr "Alt" 139 | 140 | #: inc/config.class.php:190 141 | msgid "By ID" 142 | msgstr "" 143 | 144 | #: inc/config.class.php:191 145 | msgid "By serial number" 146 | msgstr "" 147 | 148 | #: inc/barcode.class.php:101 149 | msgid "C0" 150 | msgstr "C0" 151 | 152 | #: inc/barcode.class.php:102 153 | msgid "C1" 154 | msgstr "C1" 155 | 156 | #: inc/barcode.class.php:111 157 | msgid "C10" 158 | msgstr "C10" 159 | 160 | #: inc/barcode.class.php:103 161 | msgid "C2" 162 | msgstr "C2" 163 | 164 | #: inc/barcode.class.php:104 165 | msgid "C3" 166 | msgstr "C3" 167 | 168 | #: inc/barcode.class.php:105 169 | msgid "C4" 170 | msgstr "C4" 171 | 172 | #: inc/barcode.class.php:106 173 | msgid "C5" 174 | msgstr "C5" 175 | 176 | #: inc/barcode.class.php:107 177 | msgid "C6" 178 | msgstr "C6" 179 | 180 | #: inc/barcode.class.php:108 181 | msgid "C7" 182 | msgstr "C7" 183 | 184 | #: inc/barcode.class.php:109 185 | msgid "C8" 186 | msgstr "C8" 187 | 188 | #: inc/barcode.class.php:110 189 | msgid "C9" 190 | msgstr "C9" 191 | 192 | #: inc/barcode.class.php:159 193 | msgid "Code" 194 | msgstr "Kod" 195 | 196 | #: inc/config.class.php:82 197 | msgid "Company logo" 198 | msgstr "Kurum logosu" 199 | 200 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 201 | msgid "Create" 202 | msgstr "Oluşturun" 203 | 204 | #: inc/config.class.php:94 205 | msgid "Delete the logo" 206 | msgstr "" 207 | 208 | #: inc/barcode.class.php:240 209 | msgid "Display border" 210 | msgstr "Kenarlık görüntülensin" 211 | 212 | #: inc/barcode.class.php:248 213 | msgid "Display labels" 214 | msgstr "Etiketleri görüntüle" 215 | 216 | #: inc/barcode.class.php:124 217 | msgid "EXECUTIVE" 218 | msgstr "EXECUTIVE" 219 | 220 | #: inc/config.class.php:78 221 | msgid "Empty the cache" 222 | msgstr "Önbelleği temizleyin" 223 | 224 | #: inc/barcode.class.php:125 225 | msgid "FOLIO" 226 | msgstr "FOLIO" 227 | 228 | #: inc/config.class.php:66 229 | msgid "General configuration" 230 | msgstr "Genel ayarlar" 231 | 232 | #: front/barcode.form.php:62 inc/barcode.class.php:514 233 | #: inc/qrcode.class.php:411 234 | msgid "Generated file" 235 | msgstr "Oluşturulan dosya" 236 | 237 | #: inc/barcode.class.php:157 238 | msgid "Generation" 239 | msgstr "Oluşturulma" 240 | 241 | #: inc/profile.class.php:117 242 | msgid "Generation of barcode" 243 | msgstr "Barkod nesil" 244 | 245 | #: inc/config.class.php:170 246 | msgid "Inner horizontal" 247 | msgstr "Yatay iç" 248 | 249 | #: inc/config.class.php:173 250 | msgid "Inner vertical" 251 | msgstr "Dikey iç" 252 | 253 | #: inc/barcode.class.php:194 254 | msgid "It will generate only elements have defined field:" 255 | msgstr "Sadece öğeleri alan tanımladığınız oluşturur:" 256 | 257 | #: inc/barcode.class.php:123 258 | msgid "LEGAL" 259 | msgstr "LEGAL" 260 | 261 | #: inc/barcode.class.php:122 262 | msgid "LETTER" 263 | msgstr "LETTER" 264 | 265 | #: inc/barcode.class.php:136 266 | msgid "Landscape" 267 | msgstr "Yatay" 268 | 269 | #: inc/config.class.php:162 270 | msgid "Left" 271 | msgstr "Sol" 272 | 273 | #: inc/profile.class.php:113 274 | msgid "Manage configuration" 275 | msgstr "Yapılandırmasını yönetmek" 276 | 277 | #: inc/config.class.php:152 278 | msgid "Margins" 279 | msgstr "Kenar boşlukları" 280 | 281 | #: inc/config.class.php:182 282 | msgid "Maximum height" 283 | msgstr "En fazla yükseklik" 284 | 285 | #: inc/config.class.php:179 286 | msgid "Maximum width" 287 | msgstr "En fazla genişlik" 288 | 289 | #: inc/barcode.class.php:230 290 | msgid "Not use first xx barcodes" 291 | msgstr "İlk xx barkod kullanılmasın" 292 | 293 | #: inc/barcode.class.php:174 294 | msgid "Number of copies" 295 | msgstr "Kopya sayısı" 296 | 297 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 298 | #: inc/config.class.php:148 299 | msgid "Orientation" 300 | msgstr "Sayfa yönü" 301 | 302 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 303 | #: inc/config.class.php:145 304 | msgid "Page size" 305 | msgstr "Sayfa boyutu" 306 | 307 | #: inc/barcode.class.php:135 308 | msgid "Portrait" 309 | msgstr "Dikey" 310 | 311 | #: hook.php:49 312 | msgid "Print QRcodes" 313 | msgstr "QR kodlarını yazdırın" 314 | 315 | #: hook.php:46 316 | msgid "Print barcodes" 317 | msgstr "Barkodları yazdırın" 318 | 319 | #: inc/config.class.php:269 320 | msgid "QRcode" 321 | msgstr "QRcode" 322 | 323 | #: inc/barcode.class.php:112 324 | msgid "RA0" 325 | msgstr "RA0" 326 | 327 | #: inc/barcode.class.php:113 328 | msgid "RA1" 329 | msgstr "RA1" 330 | 331 | #: inc/barcode.class.php:114 332 | msgid "RA2" 333 | msgstr "RA2" 334 | 335 | #: inc/barcode.class.php:115 336 | msgid "RA3" 337 | msgstr "RA3" 338 | 339 | #: inc/barcode.class.php:116 340 | msgid "RA4" 341 | msgstr "RA4" 342 | 343 | #: inc/config.class.php:165 344 | msgid "Right" 345 | msgstr "Sağ" 346 | 347 | #: inc/barcode.class.php:117 348 | msgid "SRA0" 349 | msgstr "SRA0" 350 | 351 | #: inc/barcode.class.php:118 352 | msgid "SRA1" 353 | msgstr "SRA1" 354 | 355 | #: inc/barcode.class.php:119 356 | msgid "SRA2" 357 | msgstr "SRA2" 358 | 359 | #: inc/barcode.class.php:120 360 | msgid "SRA3" 361 | msgstr "SRA3" 362 | 363 | #: inc/barcode.class.php:121 364 | msgid "SRA4" 365 | msgstr "SRA4" 366 | 367 | #: inc/config.class.php:196 368 | msgid "Text display options" 369 | msgstr "Metin görüntüleme seçenekleri" 370 | 371 | #: inc/config.class.php:198 372 | msgid "Text size" 373 | msgstr "Metin boyutu" 374 | 375 | #: inc/config.class.php:201 376 | msgid "Text spacing between lines" 377 | msgstr "Satır aralıkları" 378 | 379 | #: front/config.form.php:56 380 | msgid "The cache has been emptied." 381 | msgstr "Önbellek temizlendi" 382 | 383 | #: inc/barcode.class.php:286 384 | msgid "The generation of some barcodes produced errors." 385 | msgstr "Bazı barkodlar üretilirken hata oluştu." 386 | 387 | #: front/config.form.php:61 388 | msgid "The logo has been removed." 389 | msgstr "" 390 | 391 | #: inc/barcode.class.php:196 392 | msgid "Ticket number" 393 | msgstr "Bilet numarası" 394 | 395 | #: inc/config.class.php:154 396 | msgid "Top" 397 | msgstr "Üst" 398 | 399 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 400 | msgid "Type" 401 | msgstr "Tip" 402 | 403 | #: inc/config.class.php:188 404 | msgid "URL" 405 | msgstr "URL" 406 | 407 | #: inc/config.class.php:264 408 | msgid "code128" 409 | msgstr "code128" 410 | 411 | #: inc/config.class.php:263 412 | msgid "code39" 413 | msgstr "code39" 414 | 415 | #: inc/config.class.php:265 416 | msgid "ean13" 417 | msgstr "ean13" 418 | 419 | #: inc/config.class.php:266 420 | msgid "int25" 421 | msgstr "int25" 422 | 423 | #: inc/config.class.php:267 424 | msgid "postnet" 425 | msgstr "postnet" 426 | 427 | #: inc/config.class.php:268 428 | msgid "upca" 429 | msgstr "upca" 430 | -------------------------------------------------------------------------------- /locales/zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/barcode/e9f350bacac6b3825c7b9b4459f557adf3fa3708/locales/zh_CN.mo -------------------------------------------------------------------------------- /locales/zh_CN.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Cédric Anne, 2018 8 | # liAnGjiA , 2021 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: PACKAGE VERSION\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2022-07-18 07:08+0000\n" 16 | "PO-Revision-Date: 2017-03-02 15:37+0000\n" 17 | "Last-Translator: liAnGjiA , 2021\n" 18 | "Language-Team: Chinese (China) (https://www.transifex.com/pluginsGLPI/teams/73419/zh_CN/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: zh_CN\n" 23 | "Plural-Forms: nplurals=1; plural=0;\n" 24 | 25 | #: inc/barcode.class.php:78 26 | msgid "2A0" 27 | msgstr "2A0" 28 | 29 | #: inc/barcode.class.php:77 30 | msgid "4A0" 31 | msgstr "4A0" 32 | 33 | #: inc/barcode.class.php:79 34 | msgid "A0" 35 | msgstr "A0" 36 | 37 | #: inc/barcode.class.php:80 38 | msgid "A1" 39 | msgstr "A1" 40 | 41 | #: inc/barcode.class.php:89 42 | msgid "A10" 43 | msgstr "A10" 44 | 45 | #: inc/barcode.class.php:81 46 | msgid "A2" 47 | msgstr "A2" 48 | 49 | #: inc/barcode.class.php:82 50 | msgid "A3" 51 | msgstr "A3" 52 | 53 | #: inc/barcode.class.php:83 54 | msgid "A4" 55 | msgstr "A4" 56 | 57 | #: inc/barcode.class.php:84 58 | msgid "A5" 59 | msgstr "A5" 60 | 61 | #: inc/barcode.class.php:85 62 | msgid "A6" 63 | msgstr "A6" 64 | 65 | #: inc/barcode.class.php:86 66 | msgid "A7" 67 | msgstr "A7" 68 | 69 | #: inc/barcode.class.php:87 70 | msgid "A8" 71 | msgstr "A8" 72 | 73 | #: inc/barcode.class.php:88 74 | msgid "A9" 75 | msgstr "A9" 76 | 77 | #: inc/barcode.class.php:90 78 | msgid "B0" 79 | msgstr "B0" 80 | 81 | #: inc/barcode.class.php:91 82 | msgid "B1" 83 | msgstr "B1" 84 | 85 | #: inc/barcode.class.php:100 86 | msgid "B10" 87 | msgstr "B10" 88 | 89 | #: inc/barcode.class.php:92 90 | msgid "B2" 91 | msgstr "B2" 92 | 93 | #: inc/barcode.class.php:93 94 | msgid "B3" 95 | msgstr "B3" 96 | 97 | #: inc/barcode.class.php:94 98 | msgid "B4" 99 | msgstr "B4" 100 | 101 | #: inc/barcode.class.php:95 102 | msgid "B5" 103 | msgstr "B5" 104 | 105 | #: inc/barcode.class.php:96 106 | msgid "B6" 107 | msgstr "B6" 108 | 109 | #: inc/barcode.class.php:97 110 | msgid "B7" 111 | msgstr "B7" 112 | 113 | #: inc/barcode.class.php:98 114 | msgid "B8" 115 | msgstr "B8" 116 | 117 | #: inc/barcode.class.php:99 118 | msgid "B9" 119 | msgstr "B9" 120 | 121 | #: hook.php:46 hook.php:49 front/config.php:52 front/checkItemByInv.php:37 122 | #: inc/profile.class.php:50 inc/profile.class.php:86 123 | msgid "Barcode" 124 | msgstr "条码" 125 | 126 | #: inc/config.class.php:61 127 | msgid "Barcode plugin configuration" 128 | msgstr "条码插件配置" 129 | 130 | #: inc/config.class.php:177 131 | msgid "Barcodes sizes" 132 | msgstr "条码大小" 133 | 134 | #: inc/config.class.php:157 135 | msgid "Bottom" 136 | msgstr "按钮" 137 | 138 | #: inc/config.class.php:190 139 | msgid "By ID" 140 | msgstr "按 ID" 141 | 142 | #: inc/config.class.php:191 143 | msgid "By serial number" 144 | msgstr "按SN序列号" 145 | 146 | #: inc/barcode.class.php:101 147 | msgid "C0" 148 | msgstr "C0" 149 | 150 | #: inc/barcode.class.php:102 151 | msgid "C1" 152 | msgstr "C1" 153 | 154 | #: inc/barcode.class.php:111 155 | msgid "C10" 156 | msgstr "C10" 157 | 158 | #: inc/barcode.class.php:103 159 | msgid "C2" 160 | msgstr "C2" 161 | 162 | #: inc/barcode.class.php:104 163 | msgid "C3" 164 | msgstr "C3" 165 | 166 | #: inc/barcode.class.php:105 167 | msgid "C4" 168 | msgstr "C4" 169 | 170 | #: inc/barcode.class.php:106 171 | msgid "C5" 172 | msgstr "C5" 173 | 174 | #: inc/barcode.class.php:107 175 | msgid "C6" 176 | msgstr "C6" 177 | 178 | #: inc/barcode.class.php:108 179 | msgid "C7" 180 | msgstr "C7" 181 | 182 | #: inc/barcode.class.php:109 183 | msgid "C8" 184 | msgstr "C8" 185 | 186 | #: inc/barcode.class.php:110 187 | msgid "C9" 188 | msgstr "C9" 189 | 190 | #: inc/barcode.class.php:159 191 | msgid "Code" 192 | msgstr "Code" 193 | 194 | #: inc/config.class.php:82 195 | msgid "Company logo" 196 | msgstr "公司LOGO" 197 | 198 | #: inc/barcode.class.php:179 inc/barcode.class.php:257 199 | msgid "Create" 200 | msgstr "创建" 201 | 202 | #: inc/config.class.php:94 203 | msgid "Delete the logo" 204 | msgstr "删除LOGO" 205 | 206 | #: inc/barcode.class.php:240 207 | msgid "Display border" 208 | msgstr "边框可见" 209 | 210 | #: inc/barcode.class.php:248 211 | msgid "Display labels" 212 | msgstr "显示表格" 213 | 214 | #: inc/barcode.class.php:124 215 | msgid "EXECUTIVE" 216 | msgstr "EXECUTIVE" 217 | 218 | #: inc/config.class.php:78 219 | msgid "Empty the cache" 220 | msgstr "清空缓存" 221 | 222 | #: inc/barcode.class.php:125 223 | msgid "FOLIO" 224 | msgstr "FOLIO" 225 | 226 | #: inc/config.class.php:66 227 | msgid "General configuration" 228 | msgstr "一般设置" 229 | 230 | #: front/barcode.form.php:62 inc/barcode.class.php:514 231 | #: inc/qrcode.class.php:411 232 | msgid "Generated file" 233 | msgstr "生成文件" 234 | 235 | #: inc/barcode.class.php:157 236 | msgid "Generation" 237 | msgstr "生成" 238 | 239 | #: inc/profile.class.php:117 240 | msgid "Generation of barcode" 241 | msgstr "生成条码" 242 | 243 | #: inc/config.class.php:170 244 | msgid "Inner horizontal" 245 | msgstr "横向" 246 | 247 | #: inc/config.class.php:173 248 | msgid "Inner vertical" 249 | msgstr "纵向" 250 | 251 | #: inc/barcode.class.php:194 252 | msgid "It will generate only elements have defined field:" 253 | msgstr "它只生成具有定义字段的元素:" 254 | 255 | #: inc/barcode.class.php:123 256 | msgid "LEGAL" 257 | msgstr "LEGAL" 258 | 259 | #: inc/barcode.class.php:122 260 | msgid "LETTER" 261 | msgstr "LETTER" 262 | 263 | #: inc/barcode.class.php:136 264 | msgid "Landscape" 265 | msgstr "横向" 266 | 267 | #: inc/config.class.php:162 268 | msgid "Left" 269 | msgstr "左边" 270 | 271 | #: inc/profile.class.php:113 272 | msgid "Manage configuration" 273 | msgstr "管理配置" 274 | 275 | #: inc/config.class.php:152 276 | msgid "Margins" 277 | msgstr "边框" 278 | 279 | #: inc/config.class.php:182 280 | msgid "Maximum height" 281 | msgstr "最大高度" 282 | 283 | #: inc/config.class.php:179 284 | msgid "Maximum width" 285 | msgstr "最大宽度" 286 | 287 | #: inc/barcode.class.php:230 288 | msgid "Not use first xx barcodes" 289 | msgstr "条码首字符不使用 xx" 290 | 291 | #: inc/barcode.class.php:174 292 | msgid "Number of copies" 293 | msgstr "副本数量" 294 | 295 | #: inc/barcode.class.php:169 inc/barcode.class.php:236 296 | #: inc/config.class.php:148 297 | msgid "Orientation" 298 | msgstr "方向" 299 | 300 | #: inc/barcode.class.php:166 inc/barcode.class.php:226 301 | #: inc/config.class.php:145 302 | msgid "Page size" 303 | msgstr "纸张大小" 304 | 305 | #: inc/barcode.class.php:135 306 | msgid "Portrait" 307 | msgstr "竖向" 308 | 309 | #: hook.php:49 310 | msgid "Print QRcodes" 311 | msgstr "二维码打印" 312 | 313 | #: hook.php:46 314 | msgid "Print barcodes" 315 | msgstr "条码打印" 316 | 317 | #: inc/config.class.php:269 318 | msgid "QRcode" 319 | msgstr "二维码" 320 | 321 | #: inc/barcode.class.php:112 322 | msgid "RA0" 323 | msgstr "RA0" 324 | 325 | #: inc/barcode.class.php:113 326 | msgid "RA1" 327 | msgstr "RA1" 328 | 329 | #: inc/barcode.class.php:114 330 | msgid "RA2" 331 | msgstr "RA2" 332 | 333 | #: inc/barcode.class.php:115 334 | msgid "RA3" 335 | msgstr "RA3" 336 | 337 | #: inc/barcode.class.php:116 338 | msgid "RA4" 339 | msgstr "RA4" 340 | 341 | #: inc/config.class.php:165 342 | msgid "Right" 343 | msgstr "右边" 344 | 345 | #: inc/barcode.class.php:117 346 | msgid "SRA0" 347 | msgstr "SRA0" 348 | 349 | #: inc/barcode.class.php:118 350 | msgid "SRA1" 351 | msgstr "SRA1" 352 | 353 | #: inc/barcode.class.php:119 354 | msgid "SRA2" 355 | msgstr "SRA2" 356 | 357 | #: inc/barcode.class.php:120 358 | msgid "SRA3" 359 | msgstr "SRA3" 360 | 361 | #: inc/barcode.class.php:121 362 | msgid "SRA4" 363 | msgstr "SRA4" 364 | 365 | #: inc/config.class.php:196 366 | msgid "Text display options" 367 | msgstr "文本显示选项" 368 | 369 | #: inc/config.class.php:198 370 | msgid "Text size" 371 | msgstr "文本大小" 372 | 373 | #: inc/config.class.php:201 374 | msgid "Text spacing between lines" 375 | msgstr "文本间距" 376 | 377 | #: front/config.form.php:56 378 | msgid "The cache has been emptied." 379 | msgstr " 缓存已被清空。 " 380 | 381 | #: inc/barcode.class.php:286 382 | msgid "The generation of some barcodes produced errors." 383 | msgstr "部分产品条码生成错误。" 384 | 385 | #: front/config.form.php:61 386 | msgid "The logo has been removed." 387 | msgstr "LOGO已被移除。" 388 | 389 | #: inc/barcode.class.php:196 390 | msgid "Ticket number" 391 | msgstr "工单号码" 392 | 393 | #: inc/config.class.php:154 394 | msgid "Top" 395 | msgstr "上部" 396 | 397 | #: inc/barcode.class.php:162 inc/barcode.class.php:205 inc/config.class.php:70 398 | msgid "Type" 399 | msgstr "类型" 400 | 401 | #: inc/config.class.php:188 402 | msgid "URL" 403 | msgstr "URL链接" 404 | 405 | #: inc/config.class.php:264 406 | msgid "code128" 407 | msgstr "code128" 408 | 409 | #: inc/config.class.php:263 410 | msgid "code39" 411 | msgstr "code39" 412 | 413 | #: inc/config.class.php:265 414 | msgid "ean13" 415 | msgstr "ean13" 416 | 417 | #: inc/config.class.php:266 418 | msgid "int25" 419 | msgstr "int25" 420 | 421 | #: inc/config.class.php:267 422 | msgid "postnet" 423 | msgstr "postnet" 424 | 425 | #: inc/config.class.php:268 426 | msgid "upca" 427 | msgstr "upca" 428 | -------------------------------------------------------------------------------- /patch/fix-pear-image-barcode.patch: -------------------------------------------------------------------------------- 1 | --- Image/Barcode.php 2 | +++ Image/Barcode.php 3 | @@ -77,7 +77,7 @@ 4 | return PEAR::raiseError("Unable to find draw method in '$classname' class"); 5 | } 6 | 7 | - @$obj =& new $classname(); 8 | + @$obj = new $classname(); 9 | 10 | if (isset($obj->_barcodeheight)) $obj->_barcodeheight = $height; 11 | if (isset($obj->_barwidth)) $obj->_barwidth = $barwidth; 12 | --- Image/Barcode/code128.php 13 | +++ Image/Barcode/code128.php 14 | @@ -42,9 +42,7 @@ 15 | * @link http://pear.php.net/package/Image_Barcode 16 | */ 17 | 18 | -require_once "Image/Barcode.php"; 19 | - 20 | -class Image_Barcode_code128 extends Image_Barcode 21 | +class Image_Barcode_code128 22 | { 23 | var $_type = 'code128'; 24 | var $_barcodeheight = 60; 25 | --- Image/Barcode/Code39.php 26 | +++ Image/Barcode/Code39.php 27 | @@ -25,8 +25,6 @@ 28 | */ 29 | 30 | 31 | -require_once "Image/Barcode.php"; 32 | - 33 | 34 | if (!function_exists('str_split')) { 35 | require_once 'PHP/Compat.php'; 36 | @@ -47,7 +45,7 @@ 37 | * @link http://pear.php.net/package/Image_Barcode 38 | * @since Image_Barcode 0.5 39 | */ 40 | -class Image_Barcode_Code39 extends Image_Barcode 41 | +class Image_Barcode_Code39 42 | { 43 | /** 44 | * Barcode type 45 | --- Image/Barcode/ean13.php 46 | +++ Image/Barcode/ean13.php 47 | @@ -23,8 +23,6 @@ 48 | * @link http://pear.php.net/package/Image_Barcode 49 | */ 50 | 51 | -require_once 'Image/Barcode.php'; 52 | - 53 | /** 54 | * Image_Barcode_ean13 class 55 | * 56 | @@ -39,7 +37,7 @@ 57 | * @link http://pear.php.net/package/Image_Barcode 58 | * @since Image_Barcode 0.4 59 | */ 60 | -class Image_Barcode_ean13 extends Image_Barcode 61 | +class Image_Barcode_ean13 62 | { 63 | /** 64 | * Barcode type 65 | --- Image/Barcode/ean8.php 66 | +++ Image/Barcode/ean8.php 67 | @@ -24,8 +24,6 @@ 68 | * @link http://pear.php.net/package/Image_Barcode 69 | */ 70 | 71 | -require_once 'Image/Barcode.php'; 72 | - 73 | /** 74 | * Image_Barcode_ean8 class 75 | * 76 | @@ -40,7 +28,7 @@ 77 | * @version Release: @package_version@ 78 | * @link http://pear.php.net/package/Image_Barcode 79 | */ 80 | -class Image_Barcode_ean8 extends Image_Barcode 81 | +class Image_Barcode_ean8 82 | { 83 | /** 84 | * Barcode type 85 | --- Image/Barcode/int25.php 86 | +++ Image/Barcode/int25.php 87 | @@ -23,9 +23,6 @@ 88 | * @link http://pear.php.net/package/Image_Barcode 89 | */ 90 | 91 | -require_once "PEAR.php"; 92 | -require_once "Image/Barcode.php"; 93 | - 94 | 95 | /** 96 | * Image_Barcode_int25 class 97 | @@ -40,7 +37,7 @@ 98 | * @version Release: @package_version@ 99 | * @link http://pear.php.net/package/Image_Barcode 100 | */ 101 | -class Image_Barcode_int25 extends Image_Barcode 102 | +class Image_Barcode_int25 103 | { 104 | /** 105 | * Barcode type 106 | --- Image/Barcode/postnet.php 107 | +++ Image/Barcode/postnet.php 108 | @@ -36,8 +36,6 @@ 109 | * density: 22 bars/inch = 8.66 bars/cm 110 | */ 111 | 112 | -require_once 'Image/Barcode.php'; 113 | - 114 | 115 | /** 116 | * Image_Barcode_postnet class 117 | @@ -52,7 +50,7 @@ 118 | * @version CVS: $Id$ 119 | * @link http://pear.php.net/package/Image_Barcode 120 | */ 121 | -class Image_Barcode_postnet extends Image_Barcode 122 | +class Image_Barcode_postnet 123 | { 124 | /** 125 | * Barcode type 126 | --- Image/Barcode/upca.php 127 | +++ Image/Barcode/upca.php 128 | @@ -24,8 +24,6 @@ 129 | * @link http://pear.php.net/package/Image_Barcode 130 | */ 131 | 132 | -require_once 'Image/Barcode.php'; 133 | - 134 | /** 135 | * Image_Barcode_upca class 136 | * 137 | @@ -47,7 +45,7 @@ 138 | * @version Release: @package_version@ 139 | * @link http://pear.php.net/package/Image_Barcode 140 | */ 141 | -class Image_Barcode_upca extends Image_Barcode 142 | +class Image_Barcode_upca 143 | { 144 | /** 145 | * Barcode type 146 | -------------------------------------------------------------------------------- /setup.php: -------------------------------------------------------------------------------- 1 | . 27 | 28 | ------------------------------------------------------------------------ 29 | 30 | @package Plugin Barcode 31 | @author David Durieux 32 | @co-author 33 | @copyright Copyright (c) 2009-2016 Barcode plugin Development team 34 | @license AGPL License 3.0 or (at your option) any later version 35 | http://www.gnu.org/licenses/agpl-3.0-standalone.html 36 | @link https://forge.indepnet.net/projects/barscode 37 | @since 2009 38 | 39 | ------------------------------------------------------------------------ 40 | */ 41 | 42 | define ("PLUGIN_BARCODE_VERSION", "2.7.1"); 43 | 44 | // Minimal GLPI version, inclusive 45 | define('PLUGIN_BARCODE_MIN_GLPI', '10.0.0'); 46 | // Maximum GLPI version, exclusive 47 | define('PLUGIN_BARCODE_MAX_GLPI', '10.0.99'); 48 | 49 | // Init the hooks of the plugins -Needed 50 | function plugin_init_barcode() { 51 | global $PLUGIN_HOOKS; 52 | 53 | require_once(__DIR__ . '/vendor/autoload.php'); 54 | 55 | $PLUGIN_HOOKS['csrf_compliant']['barcode'] = true; 56 | 57 | Plugin::registerClass('PluginBarcodeDropdown'); 58 | Plugin::registerClass('PluginBarcodeProfile', ['addtabon' => ['Profile']]); 59 | Plugin::registerClass('PluginBarcode'); 60 | 61 | // Display a menu entry ? 62 | 63 | if (Session::haveRight('plugin_barcode_barcode', CREATE) 64 | || Session::haveRight('plugin_barcode_config', UPDATE)) { 65 | $PLUGIN_HOOKS['pre_item_purge']['barcode'] 66 | = ['Profile' => ['PluginBarcodeProfile','cleanProfiles']]; 67 | 68 | // Massive Action definition 69 | $PLUGIN_HOOKS['use_massive_action']['barcode'] = 1; 70 | 71 | $web_dir = '/' . Plugin::getWebDir('barcode', false); 72 | $PLUGIN_HOOKS['submenu_entry']['barcode']['options']['optionname']['title'] = "Search"; 73 | $PLUGIN_HOOKS['submenu_entry']['barcode']['options']['optionname']['page'] = $web_dir . '/front/barcode.php'; 74 | $PLUGIN_HOOKS['submenu_entry']['barcode']['options']['optionname']['links']['search'] = $web_dir. '/front/barcode.php'; 75 | $PLUGIN_HOOKS['submenu_entry']['barcode']['options']['optionname']['links']['add'] = $web_dir. '/front/barcode.form.php'; 76 | $PLUGIN_HOOKS['submenu_entry']['barcode']['options']['optionname']['links']['config'] = $web_dir. '/index.php'; 77 | 78 | $PLUGIN_HOOKS["helpdesk_menu_entry"]['barcode'] = true; 79 | } 80 | 81 | // Config page 82 | if (Session::haveRight('config', UPDATE)) { 83 | $PLUGIN_HOOKS['config_page']['barcode'] = 'front/config.php'; 84 | } 85 | 86 | //Redirect code 87 | //http://localhost/glpi/index.php?redirect=plugin_barcode_2 to form ID 2 88 | $PLUGIN_HOOKS['redirect_page']['barcode'] = 'barcode.form.php'; 89 | } 90 | 91 | function plugin_version_barcode() { 92 | 93 | return [ 94 | 'name' => 'Barcode', 95 | 'shortname' => 'barcode', 96 | 'version' => PLUGIN_BARCODE_VERSION, 97 | 'license' => 'AGPLv3+', 98 | 'author' => 'David DURIEUX & 99 | Jean Marc GRISARD & Vincent MAZZONI', 100 | 'homepage' => 'https://github.com/pluginsGLPI/barcode', 101 | 'requirements' => [ 102 | 'glpi' => [ 103 | 'min' => PLUGIN_BARCODE_MIN_GLPI, 104 | 'max' => PLUGIN_BARCODE_MAX_GLPI, 105 | ] 106 | ] 107 | ]; 108 | } 109 | -------------------------------------------------------------------------------- /tools/HEADER: -------------------------------------------------------------------------------- 1 | LICENSE 2 | 3 | This file is part of barcode plugin project. 4 | 5 | Plugin Barcode is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU Affero General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | Plugin Barcode is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU Affero General Public License for more details. 14 | 15 | You should have received a copy of the GNU Affero General Public License 16 | along with Plugin Barcode. If not, see . 17 | 18 | ------------------------------------------------------------------------ 19 | 20 | @package Plugin Barcode 21 | @author David Durieux 22 | @co-author 23 | @copyright Copyright (c) 2009-2017 Barcode plugin Development team 24 | @license AGPL License 3.0 or (at your option) any later version 25 | http://www.gnu.org/licenses/agpl-3.0-standalone.html 26 | @link https://github.com/pluginsGLPI/barcode 27 | @since 2009 28 | -------------------------------------------------------------------------------- /tools/extract_template.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | soft='GLPI - Barcode plugin' 4 | version='0.84' 5 | email=glpi-translation@gna.org 6 | copyright='Barcode plugin Development Team' 7 | 8 | #xgettext *.php */*.php -copyright-holder='$copyright' --package-name=$soft --package-version=$version --msgid-bugs-address=$email -o locales/en_GB.po -L PHP --from-code=UTF-8 --force-po -i --keyword=_n:1,2 --keyword=__ --keyword=_e 9 | 10 | # Only strings with domain specified are extracted (use Xt args of keyword param to set number of args needed) 11 | 12 | xgettext *.php */*.php -o locales/glpi.pot -L PHP --add-comments=TRANS --from-code=UTF-8 --force-po \ 13 | --keyword=_n:1,2,4t --keyword=__s:1,2t --keyword=__:1,2t --keyword=_e:1,2t --keyword=_x:1c,2,3t --keyword=_ex:1c,2,3t \ 14 | --keyword=_sx:1c,2,3t --keyword=_nx:1c,2,3,4t 15 | 16 | 17 | ### for using tx : 18 | ##tx set --execute --auto-local -r GLPI_example.glpi-084-current 'locales/.po' --source-lang en --source-file locales/glpi.pot 19 | ## tx push -s 20 | ## tx pull -a 21 | 22 | 23 | -------------------------------------------------------------------------------- /tools/update_mo.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #!/usr/bin/perl -w 3 | 4 | if (@ARGV!=0){ 5 | print "USAGE update_mo.pl\n\n"; 6 | 7 | exit(); 8 | } 9 | 10 | opendir(DIRHANDLE,'../locales')||die "ERROR: can not read current directory\n"; 11 | foreach (readdir(DIRHANDLE)){ 12 | if ($_ ne '..' && $_ ne '.'){ 13 | 14 | if(!(-l "$dir/$_")){ 15 | if (index($_,".po",0)==length($_)-3) { 16 | $lang=$_; 17 | $lang=~s/\.po//; 18 | 19 | `msgfmt ../locales/$_ -o ../locales/$lang.mo`; 20 | } 21 | } 22 | 23 | } 24 | } 25 | closedir DIRHANDLE; 26 | 27 | # 28 | # 29 | -------------------------------------------------------------------------------- /tools/update_po.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | #!/usr/bin/perl -w 3 | 4 | if (@ARGV!=2){ 5 | print "USAGE update_po.pl transifex_login transifex_password\n\n"; 6 | 7 | exit(); 8 | } 9 | $user = $ARGV[0]; 10 | $password = $ARGV[1]; 11 | 12 | opendir(DIRHANDLE,'../locales')||die "ERROR: can not read current directory\n"; 13 | foreach (readdir(DIRHANDLE)){ 14 | if ($_ ne '..' && $_ ne '.'){ 15 | 16 | if(!(-l "$dir/$_")){ 17 | if (index($_,".po",0)==length($_)-3) { 18 | $lang=$_; 19 | $lang=~s/\.po//; 20 | 21 | `wget --user=$user --password=$password --output-document=../locales/$_ http://www.transifex.net/api/2/project/glpi_barcode/resource/plugin-08410/translation/$lang/?file=$_`; 22 | } 23 | } 24 | 25 | } 26 | } 27 | closedir DIRHANDLE; 28 | 29 | # 30 | # 31 | --------------------------------------------------------------------------------