From e1664323568401b1f1593963bcb0e552d6fe8945 Mon Sep 17 00:00:00 2001 From: Alexandre Delaunay Date: Wed, 21 Oct 2020 09:06:35 +0200 Subject: [PATCH 1/7] apply global discount to order's items (#260) * apply global discount to order's items * fix some notices --- inc/link.class.php | 12 ++++++------ inc/order.class.php | 17 +++++++++++++++++ inc/order_item.class.php | 6 ++++-- setup.php | 2 +- 4 files changed, 28 insertions(+), 9 deletions(-) diff --git a/inc/link.class.php b/inc/link.class.php index 089523d3d0..794bafa587 100644 --- a/inc/link.class.php +++ b/inc/link.class.php @@ -110,12 +110,12 @@ public function showItemGenerationForm($params) { $item = new $itemtype(); $item->getFromDB($templateID); - $name = $item->fields["name"]; - $serial = $item->fields["serial"]; - $otherserial = $item->fields["otherserial"]; - $states_id = $item->fields["states_id"]; - $locations_id = $item->fields["locations_id"]; - $groups_id = $item->fields["groups_id"]; + $name = $item->fields["name"] ?? ""; + $serial = $item->fields["serial"] ?? ""; + $otherserial = $item->fields["otherserial"] ?? ""; + $states_id = $item->fields["states_id"] ?? ""; + $locations_id = $item->fields["locations_id"] ?? ""; + $groups_id = $item->fields["groups_id"] ?? ""; } else { $name = false; $serial = false; diff --git a/inc/order.class.php b/inc/order.class.php index 6e17009b6c..86aa6064b2 100644 --- a/inc/order.class.php +++ b/inc/order.class.php @@ -1102,6 +1102,19 @@ public function showForm ($ID, $options = []) { echo ""; echo ""; + echo ""; + echo "".__("Global discount to apply to items", 'order')." :"; + if ($canedit) { + echo "fields["global_discount"], true)."\" class='smalldecimal'>"; + } else { + echo Html::formatNumber($this->fields["global_discount"]); + } + echo "%"; + echo ""; + echo ""; + echo ""; + /* account section */ echo ""; echo ""; @@ -2414,6 +2427,7 @@ public static function install(Migration $migration) { `plugin_order_orderstates_id` int(11) NOT NULL default 1, `plugin_order_billstates_id` int(11) NOT NULL default 1, `port_price` float NOT NULL default 0, + `global_discount` float NOT NULL default 0, `comment` text collate utf8_unicode_ci, `notepad` longtext collate utf8_unicode_ci, `is_deleted` tinyint(1) NOT NULL default '0', @@ -2667,6 +2681,9 @@ public static function install(Migration $migration) { //Remove unused notifications $notification = new Notification(); $notification->deleteByCriteria("`itemtype`='PluginOrderOrder_Item'"); + + //2.7.0 + $migration->addField($table, "global_discount", "FLOAT NOT NULL default '0'"); } // Remove RIGHT_OPENTICKET diff --git a/inc/order_item.class.php b/inc/order_item.class.php index 4d75a2e6b7..d7ff0cd919 100644 --- a/inc/order_item.class.php +++ b/inc/order_item.class.php @@ -441,7 +441,8 @@ public function showAddForm($plugin_order_orders_id) { echo ""; echo ""; - echo ""; + echo ""; echo ""; echo ""; @@ -520,7 +521,8 @@ public function showAddForm($plugin_order_orders_id) { echo ""; echo ""; - echo ""; + echo ""; echo ""; echo ""; diff --git a/setup.php b/setup.php index 06c2f78f89..8cb1eee280 100644 --- a/setup.php +++ b/setup.php @@ -34,7 +34,7 @@ @since 2009 ---------------------------------------------------------------------- */ -define('PLUGIN_ORDER_VERSION', '2.6.0'); +define('PLUGIN_ORDER_VERSION', '2.7.0'); // Minimal GLPI version, inclusive define("PLUGIN_ORDER_MIN_GLPI", "9.5"); From 2b4d866670432055b4cae5cd0eaf0c91d8bc5ff1 Mon Sep 17 00:00:00 2001 From: Stanislas KITA Date: Fri, 4 Jun 2021 09:40:49 +0200 Subject: [PATCH 2/7] feat(core): display warning if plugin is not configured --- inc/config.class.php | 10 ++++++++++ inc/order.class.php | 14 +++++++++++++- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/inc/config.class.php b/inc/config.class.php index 832f86af4d..482ca71552 100644 --- a/inc/config.class.php +++ b/inc/config.class.php @@ -488,6 +488,16 @@ public function isAnalyticNatureMandatory() { return $this->fields['order_analyticnature_mandatory']; } + public function isConfigured() { + return ($this->fields['order_status_draft'] && + $this->fields['order_status_waiting_approval'] && + $this->fields['order_status_approved'] && + $this->fields['order_status_partially_delivred'] && + $this->fields['order_status_completly_delivered'] && + $this->fields['order_status_canceled'] && + $this->fields['order_status_paid']); + } + public function getDefaultTaxes() { return $this->fields['default_taxes']; } diff --git a/inc/order.class.php b/inc/order.class.php index 86aa6064b2..38aae8b5fe 100644 --- a/inc/order.class.php +++ b/inc/order.class.php @@ -806,11 +806,23 @@ public function shouldBeAlreadyDelivered($check_all_status = false) { public function showForm ($ID, $options = []) { global $CFG_GLPI, $DB; + $config = PluginOrderConfig::getConfig(); + if (!$config->isConfigured()) { + + $link = "".__('Go to configuration page', 'order').""; + + echo "
"; + echo " "; + echo __('You must set up at least the order life cycle before starting.', 'order')." ".$link; + echo ""; + echo "
"; + return; + } + $this->initForm($ID, $options); $this->showFormHeader($options); $rand = mt_rand(); - $config = PluginOrderConfig::getConfig(); $user = new User(); if (isset($options['withtemplate']) && $options['withtemplate'] == 2) { From 9a6dc8db4c06425700c211b45ff8c553d82ca1d2 Mon Sep 17 00:00:00 2001 From: AdrienClairembault Date: Tue, 18 May 2021 13:56:21 +0200 Subject: [PATCH 3/7] Allow negative price --- inc/order_item.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/order_item.class.php b/inc/order_item.class.php index d7ff0cd919..3505885a41 100644 --- a/inc/order_item.class.php +++ b/inc/order_item.class.php @@ -427,7 +427,7 @@ public function showAddForm($plugin_order_orders_id) { echo "
"; echo ""; - echo ""; + echo ""; echo ""; echo ""; From 99d5bc383959fce90dab5050e6606a8c87b4d120 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Anne?= Date: Tue, 15 Jun 2021 16:08:03 +0200 Subject: [PATCH 4/7] Update locales --- locales/cs_CZ.mo | Bin 15530 -> 15509 bytes locales/cs_CZ.po | 200 ++++++++++++++++++++------------------ locales/de_DE.mo | Bin 12896 -> 12865 bytes locales/de_DE.po | 200 ++++++++++++++++++++------------------ locales/en_GB.mo | Bin 14492 -> 14492 bytes locales/en_GB.po | 198 ++++++++++++++++++++------------------ locales/es_ES.mo | Bin 13011 -> 12993 bytes locales/es_ES.po | 200 ++++++++++++++++++++------------------ locales/fi_FI.mo | Bin 14918 -> 14917 bytes locales/fi_FI.po | 200 ++++++++++++++++++++------------------ locales/fr_FR.mo | Bin 14741 -> 14741 bytes locales/fr_FR.po | 198 ++++++++++++++++++++------------------ locales/hr_HR.mo | Bin 15221 -> 15206 bytes locales/hr_HR.po | 200 ++++++++++++++++++++------------------ locales/it_IT.mo | Bin 13811 -> 13811 bytes locales/it_IT.po | 198 ++++++++++++++++++++------------------ locales/ko_KR.mo | Bin 14685 -> 14661 bytes locales/ko_KR.po | 200 ++++++++++++++++++++------------------ locales/order.pot | 196 ++++++++++++++++++++------------------ locales/pl_PL.mo | Bin 11585 -> 11585 bytes locales/pl_PL.po | 198 ++++++++++++++++++++------------------ locales/pt_BR.mo | Bin 14185 -> 15744 bytes locales/pt_BR.po | 237 ++++++++++++++++++++++++---------------------- locales/pt_PT.mo | Bin 15546 -> 15526 bytes locales/pt_PT.po | 200 ++++++++++++++++++++------------------ locales/ro_RO.mo | Bin 1865 -> 1865 bytes locales/ro_RO.po | 198 ++++++++++++++++++++------------------ locales/ru_RU.mo | Bin 17723 -> 17723 bytes locales/ru_RU.po | 198 ++++++++++++++++++++------------------ locales/tr_TR.mo | Bin 15247 -> 15579 bytes locales/tr_TR.po | 200 ++++++++++++++++++++------------------ locales/zh_CN.mo | Bin 1676 -> 1676 bytes locales/zh_CN.po | 198 ++++++++++++++++++++------------------ 33 files changed, 1812 insertions(+), 1607 deletions(-) diff --git a/locales/cs_CZ.mo b/locales/cs_CZ.mo index 3d84d950555e208fc6d097b12a1d65958151f338..0597a37ce52e6dc1e0545b8b6155e3e6198e90c7 100644 GIT binary patch delta 1742 zcmXZbduYvJ9LMqR$k^3ov$L7Yaou6gcFtyVY&e!{l1rl~qlIMFmTh6gPs**7Sy}E8 zaw(S@a{0q${IQUPlzU38h}^{=yg!|1o%VX3=XZI&&-eTNooU?Dc;R5Y_ax42(h#$3 zGs_xgmV-r@j1|r*9LjtR^0Pzy8-aJQCw_Lu@vyF^;Xo|Gakvn(a6b;fi|EHEIp$d} z20vJk-2yy}*_ed+n2M#S7f#2KSdEFe4-@b>cExk3=PtYJx83>!^t1jH`{7U2KIy|f zHf0bPZq^6Gn1?fvq}X~Kgh$+Z8;)iE6{lc6Y3PlsF#~rZXR%|Lj`vW3y~QYYxb;A8 zEOX;L1}R*ag{4@5{c#`mz$>WIw4*Zd9^>&lD&W7U4KhfJ?(dH}P(JGZ2&zO=QGqT% z?N^J5=xtz-z+gLe!DiG+_F@5^$0B@(>}8oj`UNN9Jluh*`5V;rc+$rqtpJtc3RKEh zp#tB9%4`dAP|vP2(2dVgk$yte+Vai%!XQ*eqNpBOgnGd$OvV;ehK`}$a|4z7$EebE zxa&!wScY;?%^bmD>~D)0=*BHL7*C-#xQ{;kf(jrZ91ARf%FuLFz?G=L>QVP?MU~_P z>V0QX2YQ6+{%@#*rIFt5>~A3kdT;`&CW}!esY0c?0h915X5wAciC?2Wt3Rj%q!-4n zk481&Y}5hPVh?O`*N>tybPYX4@{mC<{D^7z57k_0qhb%{p_(U(I{7@*S5S=#>@@1R zOQ`p>J71!j@w1!%M%|Z0L+QBzMeh60WkF3c9+k3%*b_Io8=Ene`C+8b>@0T27uXv= zIOB?Ab06veK~zSkp)yeJ=1Wn5))tfh6b74F$iOC4?N6d2y^reZw{AUobgY(PBuQ3| zWw;Gh!gh>e2WDU(5(_+vD&0)<;c`>}p2tA7Y<3Iha6I!{s2bWBvrZ5|t>@x2tin0i ziVLtyi5W54V$?}nFcVLrN^sN7+cBN_J5=VpUkua(DWzteaRe&zJX8}-#%!F0O65va zhE}68bO06TdF+GFP%r+9I$<{&Meol>b$dJ=Nx)T4yw$n@NRxI(C)zmC&eKq8P??0QGzw`hA delta 1763 zcmXZbZA^_}9LMo152aJ7sFO;Z2qh;crIe1MBW9YXyvSHPD_a@ioU^vf+-%ku#*EpB z&4xBjn#QnrffpX;;f3cHO=c#uVVKR<=KJfu+gYFMy6%VTfBpae`(*p&_TJ8DYbeT? zK#nn)#+ZVc#>~PM7>^-G3uiDtjQq?s{>{dBn2ck1NV-wib1@rNp&xf*I$p)8_y|2X zG|O0K0s~jB88HhdGWTH|25>yCM!m2B=iokcVGqXQEsVkYsOO$I*WWnnAJN15SIok= zJbRzKJjT#x5aHUEveo=N&Rq*;b4 zWeAn>4piV5P?_yU4r-Yf40PjnRHUQl+OcqcLpH*U! zeSkdF^_8e5+>AQF5lq61&h;Cp3_V9nk$hq>0i%lT6sDk>D;M=(HL7{)P$%Dl`U>`; z0=tV7@iFQ>1CBpY%{Ybz(s}~wJ`d`-;`z?^U&Vr&WF0DHJ24qgIyZLVc;Conk0f*UWQYTu8FbP(0mf1LH~QoEKl zNYYF*F2+t&2?wwehtZAx1$N+dsM0iI8tz5~aKd7sT6Q@L_i+*P*Qgq%mKie&{iyXS zT#gp5!G~Cn8Ra8MFcH*AyKxfsqe}3~nGawJ^S`LfS@8?)Zk&drS*S!sUX5zP4VZ~d zs8sGnW#|wpL%pa#A7BQ4L%leL2GI$#P(9{Db$>1DYuJYD<1$AXXyZ$L=?Qz%Y6{D| zzA|rNiD#a#+*g?I;=BLc!MX)?j3NsN53>wzV{Q)\n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" +"PO-Revision-Date: 2021-06-15 13:08+0000\n" +"Last-Translator: Cédric Anne\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/teclib/glpi-plugin-order/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,21 +32,21 @@ msgstr "Složku se nepodařilo vytvořit" msgid "Cannot copy file %1$s to %2$s" msgstr "Nepodařilo se zkopírovat soubor %1$s do %2$s" -#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 -#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 -#: inc/order_item.class.php:370 inc/order_item.class.php:477 -#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 #: inc/ordertax.class.php:41 msgid "VAT" msgstr "DPH" -#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 -#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 msgid "Payment conditions" msgstr "Platební podmínky" -#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 -#: inc/order.class.php:1966 inc/orderstate.class.php:49 +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 msgid "Order status" msgstr "Stav objednávky" @@ -60,7 +60,7 @@ msgstr "Jiný typ položky" msgid "Delivery status" msgstr "Stav dodání" -#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 #: inc/billstate.class.php:42 msgid "Bill status" msgstr "Stav platby" @@ -69,12 +69,12 @@ msgstr "Stav platby" msgid "Bill type" msgstr "Typ platby" -#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 msgid "Analytic nature" msgstr "Analytická povaha" -#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 msgid "Account section" msgstr "Sekce účtu" @@ -84,25 +84,25 @@ msgstr "Sekce účtu" #: inc/profile.class.php:170 inc/preference.class.php:269 #: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 #: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 -#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 #: inc/bill.class.php:594 msgid "Orders" msgstr "Objednávky" #: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 -#: inc/order.class.php:843 inc/order_item.class.php:1296 +#: inc/order.class.php:855 inc/order_item.class.php:1298 msgid "Order name" msgstr "Název objednávky" #: hook.php:250 report/orderdelivery/orderdelivery.php:68 -#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 msgid "Order number" msgstr "Číslo objednávky" #: hook.php:400 inc/order_supplier.class.php:201 #: inc/surveysupplier.class.php:370 inc/order.class.php:77 -#: inc/order_item.class.php:749 inc/order_item.class.php:1364 -#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 #: inc/reception.class.php:290 msgid "Order" msgstr "Objednávka" @@ -114,7 +114,7 @@ msgstr "Statistiky doručení objednávek" #: report/deliveryinfos/deliveryinfos.php:48 #: report/orderdelivery/orderdelivery.php:48 #: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 -#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 #: inc/notificationtargetorder.class.php:153 #: inc/notificationtargetorder.class.php:161 msgid "Date of order" @@ -123,7 +123,7 @@ msgstr "Datum objednávky" #: report/deliveryinfos/deliveryinfos.php:50 #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 -#: inc/order.class.php:952 +#: inc/order.class.php:964 msgid "Delivery location" msgstr "Místo doručení" @@ -140,7 +140,7 @@ msgid "orderdelivery_report_title" msgstr "Odeslání objednávek" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 -#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 msgid "Estimated due date" msgstr "Odhadované datum doručení" @@ -197,17 +197,17 @@ msgid "Add reference" msgstr "Přidat referenci" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order.class.php:1748 inc/order_item.class.php:368 -#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 #: inc/link.class.php:418 msgid "Quantity" msgstr "Množství" #: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 #: inc/order_item.class.php:123 inc/order_item.class.php:131 -#: inc/order_item.class.php:371 inc/order_item.class.php:478 -#: inc/order_item.class.php:802 inc/order_item.class.php:1025 -#: inc/order_item.class.php:1403 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 msgid "Discount (%)" msgstr "Sleva (%)" @@ -229,15 +229,15 @@ msgstr "Dodavatel pro referenci" msgid "Products references" msgstr "Produktové reference" -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 msgid "Bills" msgstr "Faktury" -#: inc/preference.class.php:163 inc/order.class.php:1611 +#: inc/preference.class.php:163 inc/order.class.php:1636 msgid "Use this model" msgstr "Použít tento model" -#: inc/preference.class.php:168 inc/order.class.php:1620 +#: inc/preference.class.php:168 inc/order.class.php:1645 msgid "Use this sign" msgstr "Použít tento podpis" @@ -302,7 +302,7 @@ msgstr "Kategorie dokumentu" msgid "Document category prefix" msgstr "Předpona kategorie dokumentu" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 msgid "Order Generation" msgstr "Vytváření objednávky" @@ -315,7 +315,7 @@ msgstr "Převzít dodávku položky" msgid "Order validation" msgstr "Ověření objednávky" -#: inc/order.class.php:273 inc/order.class.php:1554 +#: inc/order.class.php:273 inc/order.class.php:1579 msgid "Cancel order" msgstr "Zrušit objednávku" @@ -327,22 +327,22 @@ msgstr "Upravit ověřenou objednávku" msgid "Generate order without validation" msgstr "Vytvořit objednávku bez ověření" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 msgid "Postage" msgstr "Poštovné/balné" -#: inc/order.class.php:458 inc/order.class.php:2188 +#: inc/order.class.php:458 inc/order.class.php:2213 msgid "Order is late" msgstr "Doručeno pozdě" -#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1225 #: inc/notificationtargetorder.class.php:467 #: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Skupina autora" -#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1275 #: inc/notificationtargetorder.class.php:469 #: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" @@ -373,129 +373,141 @@ msgid "" "The order date must be within the dates entered for the selected budget." msgstr "Datum objednávky musí být v mezích zadaných pro vybraný rozpočet." -#: inc/order.class.php:1063 inc/order_item.class.php:439 -#: inc/order_item.class.php:518 inc/config.class.php:112 +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "" + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 #: ajax/referencedetail.php:64 msgid "No VAT" msgstr "Bez DPH" -#: inc/order.class.php:1096 +#: inc/order.class.php:1108 msgid "Due date overtaken" msgstr "Překročen předpokládaný termín" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 msgid "Price tax free" msgstr "Cena bez daně" -#: inc/order.class.php:1296 inc/order.class.php:1872 +#: inc/order.class.php:1321 inc/order.class.php:1897 msgid "Price tax free with postage" msgstr "Cena bez daně včetně poštovného/balného" -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 inc/order_item.class.php:1027 -#: inc/order_item.class.php:1416 +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 msgid "Price ATI" msgstr "Cena celkem" -#: inc/order.class.php:1534 +#: inc/order.class.php:1559 msgid "Validation process" msgstr "Ověřovací proces" -#: inc/order.class.php:1553 +#: inc/order.class.php:1578 msgid "" "Do you really want to cancel this order ? This option is irreversible !" msgstr "Opravdu chcete zrušit tuto objednávku? Tato možnost je nevratná!" -#: inc/order.class.php:1560 +#: inc/order.class.php:1585 msgid "Validate order" msgstr "Ověření objednávky" -#: inc/order.class.php:1566 +#: inc/order.class.php:1591 msgid "Do you want to cancel the validation approval ?" msgstr "Chcete zrušit už schválené ověření?" -#: inc/order.class.php:1568 +#: inc/order.class.php:1593 msgid "Cancel ask for validation" msgstr "Zrušit žádost o ověření" -#: inc/order.class.php:1574 +#: inc/order.class.php:1599 msgid "Ask for validation" msgstr "Dotaz na ověření" -#: inc/order.class.php:1580 +#: inc/order.class.php:1605 msgid "Do you really want to edit the order ?" msgstr "Skutečně chcete upravit objednávku?" -#: inc/order.class.php:1582 +#: inc/order.class.php:1607 msgid "Edit order" msgstr "Upravit objednávku" -#: inc/order.class.php:1590 +#: inc/order.class.php:1615 msgid "Thanks to add at least one equipment on your order." msgstr "Do objednávky je třeba přidat alespoň jednoho zařízení." -#: inc/order.class.php:1639 +#: inc/order.class.php:1664 msgid "Thanks to select a model into your preferences" msgstr "V předvolbách je třeba vybrat model." -#: inc/order.class.php:1681 +#: inc/order.class.php:1706 msgid "Invoice address" msgstr "Fakturační adresa" -#: inc/order.class.php:1716 +#: inc/order.class.php:1741 msgid "Delivery address" msgstr "Dodací adresa" -#: inc/order.class.php:1726 +#: inc/order.class.php:1751 msgid "The" msgstr "Ta" -#: inc/order.class.php:1728 +#: inc/order.class.php:1753 msgid "Issuer order" msgstr "Objednávku vystavil" -#: inc/order.class.php:1746 +#: inc/order.class.php:1771 msgid "Recipient" msgstr "Příjemce" -#: inc/order.class.php:1749 +#: inc/order.class.php:1774 msgid "Designation" msgstr "Označení" -#: inc/order.class.php:1751 +#: inc/order.class.php:1776 msgid "Unit price" msgstr "Cena za jednotku" -#: inc/order.class.php:1753 +#: inc/order.class.php:1778 msgid "Discount rate" msgstr "Sleva" -#: inc/order.class.php:1754 +#: inc/order.class.php:1779 msgid "Sum tax free" msgstr "Celkem bez DPH" -#: inc/order.class.php:1881 +#: inc/order.class.php:1906 msgid "€" msgstr "Kč" -#: inc/order.class.php:1882 +#: inc/order.class.php:1907 msgid "Signature of issuing order" msgstr "Podpis vystavitele objednávky" -#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/order.class.php:1985 inc/reference.class.php:373 #: inc/reference.class.php:758 msgid "Linked orders" msgstr "Propojené objednávky" -#: inc/order.class.php:1994 +#: inc/order.class.php:2019 msgid "Unlink" msgstr "Rozpojit" -#: inc/order.class.php:2134 +#: inc/order.class.php:2159 msgid "Total orders related with this budget is greater than its value." msgstr "Celková hodnota objednávek spojených s tímto rozpočtem je větší než jeho výše." -#: inc/order.class.php:2139 +#: inc/order.class.php:2164 msgid "Total orders related with this budget is equal to its value." msgstr "Celková hodnota objednávek spojených s tímto rozpočtem je rovna jeho výši." @@ -531,24 +543,24 @@ msgstr "Ověření bylo úspěšně zrušeno" msgid "Editor of validation" msgstr "Editor ověření" -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 msgid "Order item" msgstr "Položka objednávky" #: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 #: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 #: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Cena za jednotku bez DPH" -#: inc/order_item.class.php:160 inc/order_item.class.php:470 +#: inc/order_item.class.php:160 inc/order_item.class.php:471 msgid "Product name" msgstr "Název produktu" -#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/order_item.class.php:168 inc/order_item.class.php:483 #: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 #: inc/reference.class.php:195 msgid "Manufacturer's product reference" @@ -566,7 +578,7 @@ msgstr "Některé kolonky nelze měnit, protože patří do objednávky" msgid "Add to the order from the catalog" msgstr "Přidat do objednávky z katalogu" -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 #: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 #: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 #: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 @@ -574,60 +586,60 @@ msgstr "Přidat do objednávky z katalogu" msgid "Product reference" msgstr "Produktová reference" -#: inc/order_item.class.php:452 inc/order_item.class.php:587 +#: inc/order_item.class.php:453 inc/order_item.class.php:589 msgid "Please select a supplier" msgstr "Vyberte dodavatele" -#: inc/order_item.class.php:465 +#: inc/order_item.class.php:466 msgid "Add to the order free items" msgstr "Přidat do objednávky volné položky" -#: inc/order_item.class.php:479 +#: inc/order_item.class.php:480 msgid "Add the reference" msgstr "Přidat referenci" -#: inc/order_item.class.php:608 inc/order_item.class.php:621 +#: inc/order_item.class.php:610 inc/order_item.class.php:623 msgid "An analytic nature is mandatory !" msgstr "Analytická povaha je povinná!" -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 #: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 msgid "No item to take delivery of" msgstr "Žádná položka k dodání" -#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/order_item.class.php:802 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" msgstr "Reference výrobce" -#: inc/order_item.class.php:808 inc/order_item.class.php:1000 -#: inc/order_item.class.php:1202 +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 msgid "Do you really want to update this item ?" msgstr "Opravdu chcete aktualizovat tuto položku ?" -#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" msgstr "Opravdu chcete smazat tyto údaje? Dodané položky nebudou propojeny s objednávkou!" -#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 msgid "Discounted price tax free" msgstr "Cena po slevě bez DPH" -#: inc/order_item.class.php:1295 +#: inc/order_item.class.php:1297 msgid "Order informations" msgstr "Informace o objednávce" -#: inc/order_item.class.php:1471 +#: inc/order_item.class.php:1473 msgid "Payment status" msgstr "Stav platby" -#: inc/order_item.class.php:1484 +#: inc/order_item.class.php:1486 msgid "Paid value" msgstr "Zaplacená hodnota" -#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 #: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 #: inc/reception.class.php:248 msgid "Bill" @@ -849,17 +861,17 @@ msgstr "Přidat umístění objednávky k položce" msgid "Add billing details to item" msgstr "Přidat fakturační údaje k položce" -#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/config.class.php:300 inc/config.class.php:789 #: inc/reception.class.php:567 msgid "Default name" msgstr "Výchozí název" -#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/config.class.php:307 inc/config.class.php:797 #: inc/reception.class.php:570 msgid "Default serial number" msgstr "Výchozí sériové číslo" -#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/config.class.php:314 inc/config.class.php:805 #: inc/reception.class.php:573 msgid "Default inventory number" msgstr "Výchozí inventární číslo" diff --git a/locales/de_DE.mo b/locales/de_DE.mo index f62f3f451282eaf3ddacd5e31a2b22e167d46885..1e41f0de8d40933a141c47bbadd7f368104625aa 100644 GIT binary patch delta 1506 zcmXZcOGs2v9LMofY3evWa(txbG}Bm_IXYv$Dy76MdZ1BMi&U^Iu!S_%&TOJkF=)|) zil9;wViuufR1^li$QITn6KRnUMHobokqdi#f7}a~`#I;#z5o9?|8wR}wLEPZdJ!Ey zInS5|w=v6%F&~y1Q;dHx7lR&Smf&9GGRL^3;w8++2$tbXB!rnmjc0p}iNkVC#%j#N zU6_a+=)|*L6E?9lt}u{TxOJ;COD00m_SDfe3*`YEWk~u1%xnw16YaU zxE@n{yn}Vz^j^C!Yz6FPKml)}UWlM({slGD-=f$x%cyv_ zkYbuUc7F_0=ug=F=`alip0Nk!FSimqQGs%7^HGV)aUs^AO1%v|co-Y82SfN73vu5H zYo*<&3S38R;Uwz)@OK*86URzxW|^oN7ob+O1GDe|Qbp5=T6rJl;6o&Yd5_w%Kd9$p z*>F|RhgwJpa+zvw`u&JC9yVPxl<)#-ukWH}_70Wchy8ovDl1?i>acCVd~8BZs28=e zeq4n2QE^966Z?vb@h2*-lb3Tje=htQAbP+RjDqwzJ?;ahZ|d$m>CRp_C= z5w)^rRJ;?YcsEcJeuS#vBxd3qddY9n3#=`uKo|WjsKonG54PITk zCw@b%d=_=O9jro!&5JQuf{I^>dVVK{HPA>y0Ym7)Zqy66Q2_>RpP^PVZue(Uf7=*N z8t2Vqpx&!ORjk(TZ%0*ZH)?`SsC-8YslQ6p#efp^qe^rSwMP@Eguk#JQ;V!UY{7W? zov1_Bi~3Mq!z6rwO7sfja1y!9CvFSS#m9lUn~VVUFQrk-fC6@)0`{Ovcoj8~LDU4t zP+KsCN;r#Am=?5Fl!Z!Igj(2IjKw|3C&V<0*xR0~ delta 1537 zcmXZcUrfzm9LMpmKk2{HNufVZO3CTuoI_D!)&&}3Yl}@toth)E^5+8WFtc$bx=Us( zmd!=hFq;&abzzwq#@N_QF5(8Qxxo9g-`Rfqy`JYezu))!e4pp}oyWmX!TzUF;VaY3 z>axuinc1I(W&zA{o8{p)%*3O}WtX_6;s9pgD3;E@{8H=zHRX`{Da0Dyx7p_Ks zt{ImdgCSopDp&!%n1jb_*YGPMW&)-GGdx9*g zJ&*J!FophPq#qkz>;!h9UdTZu_Mie)M65z3s>NB@fZBo(y74UT!kgHJGxN=g@ffPo z8>kg{h}yy_)cfJY0%uPOQ8QbGn(-!7MJ>1hPa~^nJ*diuFbm%zvFtZ$%QD$$Jzsz- zq!Lv~4RTpMH~oIz84p`84JEvT+Uu97nf*j1NGf!G_o4!BK^?Z;xD-236Y4`%HjH!d zH7f2nYGTnmJP%V)aXpyF`Lik-O5BP{+=*VijoS0~7=_=k8h>CMuJJfayAj>=_n;~} zg^G6>6>ktV;diJNoWl8-QN(lPw-OrqEViQyn^B36qaHjL>0d`x+K;Mq6uImpw*-u1 z)~Y-mwdaMXEnSDvSc8hc6ZQNd3~S&d4F&8(H{L+K@C+4TEaGQWCBGtl7bi@gZ9a1D ztQ7TL9csmbk^X+vinXIA*n!G-p_uj867@2mM8l{hdWG7fNmRnrWoBD(Icg8jU_ADq z&O{&TkLm#?;Tu$CkO2kk#$>#STEhFNiHxBpIDy)N zf2f4%em*r^fvTtsm9QFB*ba=rBgkKhb)e41HRN2{h>u1xjqj)ce^IB_6>#=yIcj_Z zYUXtVq4@Q#+5R%G-{~v3MQ+sRBT^TyuxbIN2yP`qe;s&R??qEyH UflzCxrKz\n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" +"PO-Revision-Date: 2021-06-15 13:08+0000\n" +"Last-Translator: Cédric Anne\n" "Language-Team: German (Germany) (http://www.transifex.com/teclib/glpi-plugin-order/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,21 +32,21 @@ msgstr "Ordner kann nicht angelegt werden" msgid "Cannot copy file %1$s to %2$s" msgstr "Fehler beim Kopieren von Datei %1$snach %2$s" -#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 -#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 -#: inc/order_item.class.php:370 inc/order_item.class.php:477 -#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 #: inc/ordertax.class.php:41 msgid "VAT" msgstr "MwSt" -#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 -#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 msgid "Payment conditions" msgstr "Zahlungskonditionen" -#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 -#: inc/order.class.php:1966 inc/orderstate.class.php:49 +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 msgid "Order status" msgstr "Bestellstatus" @@ -60,7 +60,7 @@ msgstr "Other type of item" msgid "Delivery status" msgstr "Lieferstatus" -#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 #: inc/billstate.class.php:42 msgid "Bill status" msgstr "Rechnungsstatus" @@ -69,12 +69,12 @@ msgstr "Rechnungsstatus" msgid "Bill type" msgstr "Rechnungstyp" -#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 msgid "Analytic nature" msgstr "" -#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 msgid "Account section" msgstr "" @@ -84,25 +84,25 @@ msgstr "" #: inc/profile.class.php:170 inc/preference.class.php:269 #: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 #: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 -#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 #: inc/bill.class.php:594 msgid "Orders" msgstr "Bestellungen" #: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 -#: inc/order.class.php:843 inc/order_item.class.php:1296 +#: inc/order.class.php:855 inc/order_item.class.php:1298 msgid "Order name" msgstr "Name der Bestellung" #: hook.php:250 report/orderdelivery/orderdelivery.php:68 -#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 msgid "Order number" msgstr "Bestellnummer" #: hook.php:400 inc/order_supplier.class.php:201 #: inc/surveysupplier.class.php:370 inc/order.class.php:77 -#: inc/order_item.class.php:749 inc/order_item.class.php:1364 -#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 #: inc/reception.class.php:290 msgid "Order" msgstr "Bestellung" @@ -114,7 +114,7 @@ msgstr "Lieferinformationen" #: report/deliveryinfos/deliveryinfos.php:48 #: report/orderdelivery/orderdelivery.php:48 #: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 -#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 #: inc/notificationtargetorder.class.php:153 #: inc/notificationtargetorder.class.php:161 msgid "Date of order" @@ -123,7 +123,7 @@ msgstr "Bestelldatum" #: report/deliveryinfos/deliveryinfos.php:50 #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 -#: inc/order.class.php:952 +#: inc/order.class.php:964 msgid "Delivery location" msgstr "Lieferort" @@ -140,7 +140,7 @@ msgid "orderdelivery_report_title" msgstr "Bestellinformationen" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 -#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 msgid "Estimated due date" msgstr "Vorrausichtlich bis zum" @@ -197,17 +197,17 @@ msgid "Add reference" msgstr "Referenz hinzufügen" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order.class.php:1748 inc/order_item.class.php:368 -#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 #: inc/link.class.php:418 msgid "Quantity" msgstr "Menge" #: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 #: inc/order_item.class.php:123 inc/order_item.class.php:131 -#: inc/order_item.class.php:371 inc/order_item.class.php:478 -#: inc/order_item.class.php:802 inc/order_item.class.php:1025 -#: inc/order_item.class.php:1403 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 msgid "Discount (%)" msgstr "Rabatt in %" @@ -229,15 +229,15 @@ msgstr "Lieferant für eine Referenz" msgid "Products references" msgstr "Liste der Produktreferenzen verwalten" -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 msgid "Bills" msgstr "Rechnungen" -#: inc/preference.class.php:163 inc/order.class.php:1611 +#: inc/preference.class.php:163 inc/order.class.php:1636 msgid "Use this model" msgstr "Vorlage auswählen" -#: inc/preference.class.php:168 inc/order.class.php:1620 +#: inc/preference.class.php:168 inc/order.class.php:1645 msgid "Use this sign" msgstr "Unterschrift auswählen" @@ -302,7 +302,7 @@ msgstr "Dokumenten Kategorie" msgid "Document category prefix" msgstr "Dokumenten Kategorie Prefix" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 msgid "Order Generation" msgstr "Bestellschein erzeugen" @@ -315,7 +315,7 @@ msgstr "Geräte empfangen" msgid "Order validation" msgstr "Bestellung freigeben" -#: inc/order.class.php:273 inc/order.class.php:1554 +#: inc/order.class.php:273 inc/order.class.php:1579 msgid "Cancel order" msgstr "Bestellung stornieren" @@ -327,22 +327,22 @@ msgstr "Freigegebene Bestellung ändern" msgid "Generate order without validation" msgstr "Bestellung ohne Bestätigung erstellen" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 msgid "Postage" msgstr "Versand" -#: inc/order.class.php:458 inc/order.class.php:2188 +#: inc/order.class.php:458 inc/order.class.php:2213 msgid "Order is late" msgstr "Bestellung ist verspätet" -#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1225 #: inc/notificationtargetorder.class.php:467 #: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Ersteller Gruppe" -#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1275 #: inc/notificationtargetorder.class.php:469 #: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" @@ -373,129 +373,141 @@ msgid "" "The order date must be within the dates entered for the selected budget." msgstr "" -#: inc/order.class.php:1063 inc/order_item.class.php:439 -#: inc/order_item.class.php:518 inc/config.class.php:112 +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "" + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 #: ajax/referencedetail.php:64 msgid "No VAT" msgstr "keine MwSt" -#: inc/order.class.php:1096 +#: inc/order.class.php:1108 msgid "Due date overtaken" msgstr "Due date overtaken" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 msgid "Price tax free" msgstr "Preis ohne Steuern" -#: inc/order.class.php:1296 inc/order.class.php:1872 +#: inc/order.class.php:1321 inc/order.class.php:1897 msgid "Price tax free with postage" msgstr "Preis ohne Steuern mit Versand" -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 inc/order_item.class.php:1027 -#: inc/order_item.class.php:1416 +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 msgid "Price ATI" msgstr "Gesamtpreis Brutto" -#: inc/order.class.php:1534 +#: inc/order.class.php:1559 msgid "Validation process" msgstr "Freigabeprozedur einer Bestellung" -#: inc/order.class.php:1553 +#: inc/order.class.php:1578 msgid "" "Do you really want to cancel this order ? This option is irreversible !" msgstr "Wollen Sie diese Bestellung wirklich stornieren? Dies kann nicht rückgängig gemacht werden!" -#: inc/order.class.php:1560 +#: inc/order.class.php:1585 msgid "Validate order" msgstr "Bestellung freigeben" -#: inc/order.class.php:1566 +#: inc/order.class.php:1591 msgid "Do you want to cancel the validation approval ?" msgstr "Wollen Sie den Freigabeantrag wirklich rückgängig machen?" -#: inc/order.class.php:1568 +#: inc/order.class.php:1593 msgid "Cancel ask for validation" msgstr "Freigabeantrag rückgängig machen" -#: inc/order.class.php:1574 +#: inc/order.class.php:1599 msgid "Ask for validation" msgstr "Bestellung freigeben lassen" -#: inc/order.class.php:1580 +#: inc/order.class.php:1605 msgid "Do you really want to edit the order ?" msgstr "Wollen Sie die Bestellung wirklich Bearbeiten?" -#: inc/order.class.php:1582 +#: inc/order.class.php:1607 msgid "Edit order" msgstr "Bestellung bearbeiten" -#: inc/order.class.php:1590 +#: inc/order.class.php:1615 msgid "Thanks to add at least one equipment on your order." msgstr "Mindestens eine Bestellposition wird benötigt." -#: inc/order.class.php:1639 +#: inc/order.class.php:1664 msgid "Thanks to select a model into your preferences" msgstr "" -#: inc/order.class.php:1681 +#: inc/order.class.php:1706 msgid "Invoice address" msgstr "Rechnungsadresse" -#: inc/order.class.php:1716 +#: inc/order.class.php:1741 msgid "Delivery address" msgstr "Lieferadresse" -#: inc/order.class.php:1726 +#: inc/order.class.php:1751 msgid "The" msgstr "Der" -#: inc/order.class.php:1728 +#: inc/order.class.php:1753 msgid "Issuer order" msgstr "Auftraggeber" -#: inc/order.class.php:1746 +#: inc/order.class.php:1771 msgid "Recipient" msgstr "Empfänger" -#: inc/order.class.php:1749 +#: inc/order.class.php:1774 msgid "Designation" msgstr "Beschreibung" -#: inc/order.class.php:1751 +#: inc/order.class.php:1776 msgid "Unit price" msgstr "Stückpreis" -#: inc/order.class.php:1753 +#: inc/order.class.php:1778 msgid "Discount rate" msgstr "Rabatt" -#: inc/order.class.php:1754 +#: inc/order.class.php:1779 msgid "Sum tax free" msgstr "Nettobetrag" -#: inc/order.class.php:1881 +#: inc/order.class.php:1906 msgid "€" msgstr "€" -#: inc/order.class.php:1882 +#: inc/order.class.php:1907 msgid "Signature of issuing order" msgstr "Unterschrift des Auftraggebers" -#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/order.class.php:1985 inc/reference.class.php:373 #: inc/reference.class.php:758 msgid "Linked orders" msgstr "Verbundene Bestellungen" -#: inc/order.class.php:1994 +#: inc/order.class.php:2019 msgid "Unlink" msgstr "Verknüpfung entfernen" -#: inc/order.class.php:2134 +#: inc/order.class.php:2159 msgid "Total orders related with this budget is greater than its value." msgstr "" -#: inc/order.class.php:2139 +#: inc/order.class.php:2164 msgid "Total orders related with this budget is equal to its value." msgstr "" @@ -531,24 +543,24 @@ msgstr "Freigabe wurde rückgängig gemacht" msgid "Editor of validation" msgstr "Bearbeiter der Validierung" -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 msgid "Order item" msgstr "Bestellartikel" #: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 #: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 #: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Nettostückpreis" -#: inc/order_item.class.php:160 inc/order_item.class.php:470 +#: inc/order_item.class.php:160 inc/order_item.class.php:471 msgid "Product name" msgstr "Produktbezeichnung" -#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/order_item.class.php:168 inc/order_item.class.php:483 #: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 #: inc/reference.class.php:195 msgid "Manufacturer's product reference" @@ -566,7 +578,7 @@ msgstr "Einige Felder können nicht verändert werden: sie stammen aus einer Bes msgid "Add to the order from the catalog" msgstr "aus Produktreferenz-Katalog zur Bestellung hinzufügen" -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 #: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 #: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 #: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 @@ -574,60 +586,60 @@ msgstr "aus Produktreferenz-Katalog zur Bestellung hinzufügen" msgid "Product reference" msgstr "Produktreferenz" -#: inc/order_item.class.php:452 inc/order_item.class.php:587 +#: inc/order_item.class.php:453 inc/order_item.class.php:589 msgid "Please select a supplier" msgstr "Lieferanten wählen" -#: inc/order_item.class.php:465 +#: inc/order_item.class.php:466 msgid "Add to the order free items" msgstr "" -#: inc/order_item.class.php:479 +#: inc/order_item.class.php:480 msgid "Add the reference" msgstr "Produktreferenz hinzufügen" -#: inc/order_item.class.php:608 inc/order_item.class.php:621 +#: inc/order_item.class.php:610 inc/order_item.class.php:623 msgid "An analytic nature is mandatory !" msgstr "" -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 #: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 msgid "No item to take delivery of" msgstr "Kein Gerät kann empfangen werden" -#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/order_item.class.php:802 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" msgstr "Herstellerverweis" -#: inc/order_item.class.php:808 inc/order_item.class.php:1000 -#: inc/order_item.class.php:1202 +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 msgid "Do you really want to update this item ?" msgstr "Artikel aktualisieren?" -#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" msgstr "Wollen Sie wirklich diese Positionen entfernen? Bereits gelieferte Geräte werden von dieser Bestellung getrennt!" -#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 msgid "Discounted price tax free" msgstr "Nettostückpreis mit Rabatt" -#: inc/order_item.class.php:1295 +#: inc/order_item.class.php:1297 msgid "Order informations" msgstr "Informationen über die Bestellung" -#: inc/order_item.class.php:1471 +#: inc/order_item.class.php:1473 msgid "Payment status" msgstr "Bezahlstatus" -#: inc/order_item.class.php:1484 +#: inc/order_item.class.php:1486 msgid "Paid value" msgstr "" -#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 #: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 #: inc/reception.class.php:248 msgid "Bill" @@ -849,17 +861,17 @@ msgstr "Standort zum Artikel hinzufügen" msgid "Add billing details to item" msgstr "Rechnungsdetails hinzufügen" -#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/config.class.php:300 inc/config.class.php:789 #: inc/reception.class.php:567 msgid "Default name" msgstr "Stadardname" -#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/config.class.php:307 inc/config.class.php:797 #: inc/reception.class.php:570 msgid "Default serial number" msgstr "Standard Seriennummer" -#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/config.class.php:314 inc/config.class.php:805 #: inc/reception.class.php:573 msgid "Default inventory number" msgstr "Standard Inventarnummer" diff --git a/locales/en_GB.mo b/locales/en_GB.mo index d7bc9129ebdd231e0eb10d0e889c7b78dfbf1fce..8cc5d180ff3a0b76003e60256b02f63a0cc9f09f 100644 GIT binary patch delta 27 jcmbPJIHz#KbQL}$LtO(iT|-j^Lt`rgi_J?_z6%2YfOZJU delta 27 jcmbPJIHz#KbQL~B3tdAaT|;vPLsKgQHR0<*H9s4$6SUV@-#A$utz=*7N2?;VEwIsbdlJ?H;F=iGO}C&95>(bk0s zV}^5#S!ImL_ZYJl>(GlQ(T@Yj-@M|If^&}ZxRN-9i{4+40c>*OK};oniU}CTJpAey zn`f+r4nFS2^B{mrumP806DDFSx-f*iYc4zYM=*x?0jmEL7GW4wKvceMG1d_8#Y*hQ zOq|KL?8XmnY~@BYWvG%mE?e*fDuH{b${%4F&LDpiwc4)Gi@C%#PJ95Ba2IA_2$kq{ zOvYhUq4zBsTB1oz!uObgUr-(AQ7eMGaVis<08aV+dRDIr54rWFO119yQ)2 z&a!Wv5XY_o0?_6g9zX)WBiXM88o3r4`zVc~KPxa4{Z5 zO?V2Gz(v$NH&EkDU<&h_Fb#?}KQIQ}oS-Po#%jz%4Y(h*B|+3moIy>{i&}}Br~)3N zw(0|_kUyyR64u$V2NiFUeW@{tmQGk3k-iZNi}9+{YXaTG(~h4|qy9x@mE^OZr=w;s zLSequB|C-|vD$6k+Yv7{s!nrYnTHo)e#Fml`D`T=y{dQm));k_XeS0BP zqJ7BU+~J}!XHon34fV;mO6>jcVSspN345T8xx$Tj97PTI5LMAM>O{_=);rQ~C*sBm z;w;orZ^TIKcH$naBc8-Wbd}l_XJ8VsAC+*eMMD|x#zokL33v`waW`s!UW~&bEWo>{ zm6%2L*!)B#nptLBf+}Pi>VWJ+eVb=-;UuEwiOMU*0zS0ez(()>QWs#p> n?5^gHPG4htb8E-(=FYbEDo)(w9It#QeJZ1-4a7B%|eQNC`uxuht;&qHOo~ZD7MRkU7!pi zN{|BeB@BfPDgwK_MS==luWY%;ejjj zj2X-@CdU|4;xJ}4)?+@NMHdbshxx=Q5oc`^RvN=$ayaSv8r+Pnc07zrh~Ho=hA<0% z+oorkz}yX$^u}5W``=}`=~;n2WV)CCNLhq;!^yDx-nsuwKCb5O6*1rxD8cdGuB`a9>Dj=qo#s=T#F5; z@vbA6%rGjkcc_8_UubA4zN5Baah{b>8mb}}>c$Ei`!lObe>A^QepmQ3;HqCisjRIE0!gyucbL50zLss=_*4 zh$m4KodQYMe1lWPTH(LGfk=qcE2@C=83S9M_=+Jc`#2V{42P*d1@pj4lX20Fhj(XY7pgxzY=)~Lh^)XB$p0xde8ZfHJN-zs` zJs*|G22`T;$S#;pR3Uw+@dq%VMv#Uweuk0w!H%a;OZ^v>SO(d!NXCh}Z!e}`gY5~_ zXV`;EWDq&bLrz+`Y1EefL47@G#jL;frn1=jvd+1^p+sO@U>`W+Qb9loyC7N5`SuR7G;+2(EWIUC#C LHU{%EZzTN(m%Xg+ diff --git a/locales/es_ES.po b/locales/es_ES.po index 675277fd0b..2ce0113b4d 100644 --- a/locales/es_ES.po +++ b/locales/es_ES.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-05 10:06+0000\n" -"PO-Revision-Date: 2020-05-22 11:27+0000\n" -"Last-Translator: Lucas \n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" +"PO-Revision-Date: 2021-06-15 13:08+0000\n" +"Last-Translator: Cédric Anne\n" "Language-Team: Spanish (Spain) (http://www.transifex.com/teclib/glpi-plugin-order/language/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,21 +34,21 @@ msgstr "" msgid "Cannot copy file %1$s to %2$s" msgstr "" -#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 -#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 -#: inc/order_item.class.php:370 inc/order_item.class.php:477 -#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 #: inc/ordertax.class.php:41 msgid "VAT" msgstr "IVA" -#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 -#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 msgid "Payment conditions" msgstr "Condiciones de pago" -#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 -#: inc/order.class.php:1966 inc/orderstate.class.php:49 +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 msgid "Order status" msgstr "Estado del pedido" @@ -62,7 +62,7 @@ msgstr "Tipo de otros materiales" msgid "Delivery status" msgstr "Estado de entrega" -#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 #: inc/billstate.class.php:42 msgid "Bill status" msgstr "Estado de la factura" @@ -71,12 +71,12 @@ msgstr "Estado de la factura" msgid "Bill type" msgstr "Tipo de factura" -#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 msgid "Analytic nature" msgstr "" -#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 msgid "Account section" msgstr "" @@ -86,25 +86,25 @@ msgstr "" #: inc/profile.class.php:170 inc/preference.class.php:269 #: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 #: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 -#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 #: inc/bill.class.php:594 msgid "Orders" msgstr "Gestionar pedidos" #: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 -#: inc/order.class.php:843 inc/order_item.class.php:1296 +#: inc/order.class.php:855 inc/order_item.class.php:1298 msgid "Order name" msgstr "Nombre del pedido" #: hook.php:250 report/orderdelivery/orderdelivery.php:68 -#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 msgid "Order number" msgstr "Número de pedido" #: hook.php:400 inc/order_supplier.class.php:201 #: inc/surveysupplier.class.php:370 inc/order.class.php:77 -#: inc/order_item.class.php:749 inc/order_item.class.php:1364 -#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 #: inc/reception.class.php:290 msgid "Order" msgstr "Pedido" @@ -116,7 +116,7 @@ msgstr "informacióndeentrega_reporte_título" #: report/deliveryinfos/deliveryinfos.php:48 #: report/orderdelivery/orderdelivery.php:48 #: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 -#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 #: inc/notificationtargetorder.class.php:153 #: inc/notificationtargetorder.class.php:161 msgid "Date of order" @@ -125,7 +125,7 @@ msgstr "Fecha de pedido" #: report/deliveryinfos/deliveryinfos.php:50 #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 -#: inc/order.class.php:952 +#: inc/order.class.php:964 msgid "Delivery location" msgstr "Lugar de entrega" @@ -142,7 +142,7 @@ msgid "orderdelivery_report_title" msgstr "ordendeentrega_reporte_título" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 -#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 msgid "Estimated due date" msgstr "Estimated due date" @@ -199,17 +199,17 @@ msgid "Add reference" msgstr "Añadir referencia" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order.class.php:1748 inc/order_item.class.php:368 -#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 #: inc/link.class.php:418 msgid "Quantity" msgstr "Cantidad" #: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 #: inc/order_item.class.php:123 inc/order_item.class.php:131 -#: inc/order_item.class.php:371 inc/order_item.class.php:478 -#: inc/order_item.class.php:802 inc/order_item.class.php:1025 -#: inc/order_item.class.php:1403 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 msgid "Discount (%)" msgstr "Descuento (%)" @@ -231,15 +231,15 @@ msgstr "Proveedor para la referencia" msgid "Products references" msgstr "Gestionar referencias de productos" -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 msgid "Bills" msgstr "Facturas" -#: inc/preference.class.php:163 inc/order.class.php:1611 +#: inc/preference.class.php:163 inc/order.class.php:1636 msgid "Use this model" msgstr "Usar este modelo" -#: inc/preference.class.php:168 inc/order.class.php:1620 +#: inc/preference.class.php:168 inc/order.class.php:1645 msgid "Use this sign" msgstr "Utilizar esta firma" @@ -304,7 +304,7 @@ msgstr "Categoría del documento" msgid "Document category prefix" msgstr "Prefijo de la categoría del documento" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 msgid "Order Generation" msgstr "Generar el pedido" @@ -317,7 +317,7 @@ msgstr "Recibir material" msgid "Order validation" msgstr "Validar pedido" -#: inc/order.class.php:273 inc/order.class.php:1554 +#: inc/order.class.php:273 inc/order.class.php:1579 msgid "Cancel order" msgstr "Cancelar pedido" @@ -329,22 +329,22 @@ msgstr "Editar un pedido validado" msgid "Generate order without validation" msgstr "Generar orden sin validación" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 msgid "Postage" msgstr "Portes" -#: inc/order.class.php:458 inc/order.class.php:2188 +#: inc/order.class.php:458 inc/order.class.php:2213 msgid "Order is late" msgstr "" -#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1225 #: inc/notificationtargetorder.class.php:467 #: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Grupo de autor" -#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1275 #: inc/notificationtargetorder.class.php:469 #: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" @@ -375,129 +375,141 @@ msgid "" "The order date must be within the dates entered for the selected budget." msgstr "The order date must be within the dates entered for the selected budget." -#: inc/order.class.php:1063 inc/order_item.class.php:439 -#: inc/order_item.class.php:518 inc/config.class.php:112 +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "" + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 #: ajax/referencedetail.php:64 msgid "No VAT" msgstr "No IVA" -#: inc/order.class.php:1096 +#: inc/order.class.php:1108 msgid "Due date overtaken" msgstr "Due date overtaken" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 msgid "Price tax free" msgstr "Precio sin IVA" -#: inc/order.class.php:1296 inc/order.class.php:1872 +#: inc/order.class.php:1321 inc/order.class.php:1897 msgid "Price tax free with postage" msgstr "Precio + portes sin IVA" -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 inc/order_item.class.php:1027 -#: inc/order_item.class.php:1416 +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 msgid "Price ATI" msgstr "Precio con IVA" -#: inc/order.class.php:1534 +#: inc/order.class.php:1559 msgid "Validation process" msgstr "Proceso de validación" -#: inc/order.class.php:1553 +#: inc/order.class.php:1578 msgid "" "Do you really want to cancel this order ? This option is irreversible !" msgstr "¿Quiere realmente cancelar el pedido? ¡Esta opción es irreversible!" -#: inc/order.class.php:1560 +#: inc/order.class.php:1585 msgid "Validate order" msgstr "Validar pedido" -#: inc/order.class.php:1566 +#: inc/order.class.php:1591 msgid "Do you want to cancel the validation approval ?" msgstr "¿Quiere cancelar la validación de la aprobación?" -#: inc/order.class.php:1568 +#: inc/order.class.php:1593 msgid "Cancel ask for validation" msgstr "Cancelar solicitud de validación" -#: inc/order.class.php:1574 +#: inc/order.class.php:1599 msgid "Ask for validation" msgstr "Solicitar validación" -#: inc/order.class.php:1580 +#: inc/order.class.php:1605 msgid "Do you really want to edit the order ?" msgstr "¿Quiere realmente editar el pedido? " -#: inc/order.class.php:1582 +#: inc/order.class.php:1607 msgid "Edit order" msgstr "Editar pedido" -#: inc/order.class.php:1590 +#: inc/order.class.php:1615 msgid "Thanks to add at least one equipment on your order." msgstr "Por favor, añada al menos un equipamiento a su pedido." -#: inc/order.class.php:1639 +#: inc/order.class.php:1664 msgid "Thanks to select a model into your preferences" msgstr "Por favor, seleccione un modelo en sus preferencias" -#: inc/order.class.php:1681 +#: inc/order.class.php:1706 msgid "Invoice address" msgstr "Dirección de facturación" -#: inc/order.class.php:1716 +#: inc/order.class.php:1741 msgid "Delivery address" msgstr "Dirección de entrega" -#: inc/order.class.php:1726 +#: inc/order.class.php:1751 msgid "The" msgstr "El" -#: inc/order.class.php:1728 +#: inc/order.class.php:1753 msgid "Issuer order" msgstr "Emitir pedido" -#: inc/order.class.php:1746 +#: inc/order.class.php:1771 msgid "Recipient" msgstr "" -#: inc/order.class.php:1749 +#: inc/order.class.php:1774 msgid "Designation" msgstr "" -#: inc/order.class.php:1751 +#: inc/order.class.php:1776 msgid "Unit price" msgstr "Precio unitario" -#: inc/order.class.php:1753 +#: inc/order.class.php:1778 msgid "Discount rate" msgstr "Porcentaje de descuento" -#: inc/order.class.php:1754 +#: inc/order.class.php:1779 msgid "Sum tax free" msgstr "Total sin IVA" -#: inc/order.class.php:1881 +#: inc/order.class.php:1906 msgid "€" msgstr "€" -#: inc/order.class.php:1882 +#: inc/order.class.php:1907 msgid "Signature of issuing order" msgstr "Firma para emitir el pedido" -#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/order.class.php:1985 inc/reference.class.php:373 #: inc/reference.class.php:758 msgid "Linked orders" msgstr "" -#: inc/order.class.php:1994 +#: inc/order.class.php:2019 msgid "Unlink" msgstr "" -#: inc/order.class.php:2134 +#: inc/order.class.php:2159 msgid "Total orders related with this budget is greater than its value." msgstr "" -#: inc/order.class.php:2139 +#: inc/order.class.php:2164 msgid "Total orders related with this budget is equal to its value." msgstr "" @@ -533,24 +545,24 @@ msgstr "Validación cancelada satisfactoriamente" msgid "Editor of validation" msgstr "Editor de validación" -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 msgid "Order item" msgstr "Añadir productos" #: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 #: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 #: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Precio unitario sin IVA" -#: inc/order_item.class.php:160 inc/order_item.class.php:470 +#: inc/order_item.class.php:160 inc/order_item.class.php:471 msgid "Product name" msgstr "Producto" -#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/order_item.class.php:168 inc/order_item.class.php:483 #: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 #: inc/reference.class.php:195 msgid "Manufacturer's product reference" @@ -568,7 +580,7 @@ msgstr "Algunos campos no se pueden modificar porque pertenecen a un pedido" msgid "Add to the order from the catalog" msgstr "Añadir al pedido desde el catálogo" -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 #: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 #: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 #: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 @@ -576,60 +588,60 @@ msgstr "Añadir al pedido desde el catálogo" msgid "Product reference" msgstr "Referencia del producto" -#: inc/order_item.class.php:452 inc/order_item.class.php:587 +#: inc/order_item.class.php:453 inc/order_item.class.php:589 msgid "Please select a supplier" msgstr "Por favor elija un proveedor" -#: inc/order_item.class.php:465 +#: inc/order_item.class.php:466 msgid "Add to the order free items" msgstr "Añadir al pedido de forma manual" -#: inc/order_item.class.php:479 +#: inc/order_item.class.php:480 msgid "Add the reference" msgstr "Añadir referencia" -#: inc/order_item.class.php:608 inc/order_item.class.php:621 +#: inc/order_item.class.php:610 inc/order_item.class.php:623 msgid "An analytic nature is mandatory !" msgstr "" -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 #: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 msgid "No item to take delivery of" msgstr "No hay ítems para recibir" -#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/order_item.class.php:802 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" msgstr "Referencia del fabricante" -#: inc/order_item.class.php:808 inc/order_item.class.php:1000 -#: inc/order_item.class.php:1202 +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 msgid "Do you really want to update this item ?" msgstr "" -#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" msgstr "¿Realmente quiere borrar las líneas de detalle? Los ítems entregados no se asociarán al pedido !" -#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 msgid "Discounted price tax free" msgstr "Precio con descuento sin IVA" -#: inc/order_item.class.php:1295 +#: inc/order_item.class.php:1297 msgid "Order informations" msgstr "Información del pedido" -#: inc/order_item.class.php:1471 +#: inc/order_item.class.php:1473 msgid "Payment status" msgstr "" -#: inc/order_item.class.php:1484 +#: inc/order_item.class.php:1486 msgid "Paid value" msgstr "" -#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 #: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 #: inc/reception.class.php:248 msgid "Bill" @@ -851,17 +863,17 @@ msgstr "Añadir ubicación para el punto" msgid "Add billing details to item" msgstr "Añadir los datos de facturación a la fracción" -#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/config.class.php:300 inc/config.class.php:789 #: inc/reception.class.php:567 msgid "Default name" msgstr "Nombre predeterminado" -#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/config.class.php:307 inc/config.class.php:797 #: inc/reception.class.php:570 msgid "Default serial number" msgstr "Número de serie predeterminado" -#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/config.class.php:314 inc/config.class.php:805 #: inc/reception.class.php:573 msgid "Default inventory number" msgstr "Número de inventario predeterminado" diff --git a/locales/fi_FI.mo b/locales/fi_FI.mo index a23d38a90c9c8c2a600e7ae1a0cb2b572682c2ee..6bab588c100538a371fff31611f0207bdf43c8ca 100644 GIT binary patch delta 1742 zcmXZcSx8h-9LMp0iDiyUX==7PwwdYFj7u(1X$$RC5N%j7*(QjQGjCznqK6i#XeBIq z3Ce^Fte~g|ZK0s;r6?#W2y7vcqJm!P`|F;0`J8j^J?H%Y|8wpJ}RSPR7Rz4d?6}rlE*_qe_{?DpcL_P!ktm5TiH*_o5bPLsg=~^{-+Y{U?}09s0^e;$nk4Ct&oP?xFKz1W93g72tI2bTHIhhr-JD%8UB zaVV}rExZkNq%l+g$J}^3YTiZ6#Or0$UlSfNpfh=a`e*A$RU*5bPYlPS?!ao)!g1tY z*>R)@){C0=6KinPbpI&ooH5K`{2(fkbIvZ0h9c=f1@Z!C;Rocu#PTc52H;}k1F@yJ z9Cx|?V^ko2keIEo($8=MX3=j%ZM+wQc+!pEz#RJCV;ai*BPQTqRLK*n{D3l1FXo}n zx&n1%wWv&@sIMl5+VCW1V<&3kUi@EK)K}GyeD{`8{r|mWn?gey*LLTo?#_vnL_*=| zp-6c!Qd%9ZEDG~WUJ{MPLo1u3O|iykd`EM2aL(P1&CLzOrcSm_W@*}(qgJC2l^S8TV9+9km1VRq==4@j7Cp34(Mn9w zLqQv8L=C8nH zJd6tPOq50n>t%+lzmpx(Y9#iNaKqVAI zt$zcx{v8~_{`Q83BKm_WWdf^Ebqk;-&cXn$#01=pTHqk65|>^78V;oY6tnOxD)8T~ zKZ^QmpEA_^8q8vUTSG&)wH0-{&!N7CPE5gfs0rUuw>OCkqO&e^R^cG}b*Rg=9(829 zPzfD(<5yAh?%_~;t#S6ZpEPvIl0)7Zm!LA8iq%++%Jc|o;Zvv#uizl;cH^&58-78p z*QeOKYlJAyo)#(J4&g)COl?9XYvyD&(@2ognyD5ds`0b4%DF*-iF*O zJBAd&x={0e;dC56**l7QX9Uw2-;YYf%0(ptk@B{K+V%bwTN1TIvAT|$c zal7k3K?U*`iP`eQUWUstgZ?Je#=9|qC*1f=^wW<%p`pw_VjNnTSMt87fYMPf22f`m zMjcrtDwCC{uO@=p@C0V!Rn*2^_`kBKuc{aM?#);J|Gh*jprMT`uV?vM{KcVgFjO22 zg#$(5@{+QGB7TW;8k!@)1x*c`n>RK@wltLo<~B5K*sv|IX!X|SuJhL)=IqG$2k5oE ASpWb4 diff --git a/locales/fi_FI.po b/locales/fi_FI.po index 28f29770c5..d1519d130c 100644 --- a/locales/fi_FI.po +++ b/locales/fi_FI.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-05 10:06+0000\n" -"PO-Revision-Date: 2018-12-18 08:39+0000\n" -"Last-Translator: Markku Vepsä\n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" +"PO-Revision-Date: 2021-06-15 13:08+0000\n" +"Last-Translator: Cédric Anne\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/teclib/glpi-plugin-order/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,21 +31,21 @@ msgstr "Kansiota ei voi luoda" msgid "Cannot copy file %1$s to %2$s" msgstr "Tiedostoa %1$s ei voitu kopioida kohteeseen %2$s" -#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 -#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 -#: inc/order_item.class.php:370 inc/order_item.class.php:477 -#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 #: inc/ordertax.class.php:41 msgid "VAT" msgstr "ALV" -#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 -#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 msgid "Payment conditions" msgstr "Maksuehdot" -#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 -#: inc/order.class.php:1966 inc/orderstate.class.php:49 +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 msgid "Order status" msgstr "Tilauksen tila" @@ -59,7 +59,7 @@ msgstr "Muun tyyppinen tuote" msgid "Delivery status" msgstr "Toimituksen tila" -#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 #: inc/billstate.class.php:42 msgid "Bill status" msgstr "Laskun tila" @@ -68,12 +68,12 @@ msgstr "Laskun tila" msgid "Bill type" msgstr "Laskun tyyppi" -#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 msgid "Analytic nature" msgstr "Analyyttinen luonne" -#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 msgid "Account section" msgstr "Tili-osio" @@ -83,25 +83,25 @@ msgstr "Tili-osio" #: inc/profile.class.php:170 inc/preference.class.php:269 #: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 #: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 -#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 #: inc/bill.class.php:594 msgid "Orders" msgstr "Tilaukset" #: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 -#: inc/order.class.php:843 inc/order_item.class.php:1296 +#: inc/order.class.php:855 inc/order_item.class.php:1298 msgid "Order name" msgstr "Tilauksen nimi" #: hook.php:250 report/orderdelivery/orderdelivery.php:68 -#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 msgid "Order number" msgstr "Tilausnumero" #: hook.php:400 inc/order_supplier.class.php:201 #: inc/surveysupplier.class.php:370 inc/order.class.php:77 -#: inc/order_item.class.php:749 inc/order_item.class.php:1364 -#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 #: inc/reception.class.php:290 msgid "Order" msgstr "Tilaus" @@ -113,7 +113,7 @@ msgstr "toimitustietoraportin_otsikko" #: report/deliveryinfos/deliveryinfos.php:48 #: report/orderdelivery/orderdelivery.php:48 #: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 -#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 #: inc/notificationtargetorder.class.php:153 #: inc/notificationtargetorder.class.php:161 msgid "Date of order" @@ -122,7 +122,7 @@ msgstr "Tilauspäivä" #: report/deliveryinfos/deliveryinfos.php:50 #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 -#: inc/order.class.php:952 +#: inc/order.class.php:964 msgid "Delivery location" msgstr "Toimituskohde" @@ -139,7 +139,7 @@ msgid "orderdelivery_report_title" msgstr "tilausraportin_otsikko" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 -#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 msgid "Estimated due date" msgstr "Arvioitu toimituspäivä" @@ -196,17 +196,17 @@ msgid "Add reference" msgstr "Lisää viite" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order.class.php:1748 inc/order_item.class.php:368 -#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 #: inc/link.class.php:418 msgid "Quantity" msgstr "Määrä" #: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 #: inc/order_item.class.php:123 inc/order_item.class.php:131 -#: inc/order_item.class.php:371 inc/order_item.class.php:478 -#: inc/order_item.class.php:802 inc/order_item.class.php:1025 -#: inc/order_item.class.php:1403 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 msgid "Discount (%)" msgstr "Alennus (%)" @@ -228,15 +228,15 @@ msgstr "Toimittajan viite" msgid "Products references" msgstr "Tuoteviittaukset" -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 msgid "Bills" msgstr "Laskut" -#: inc/preference.class.php:163 inc/order.class.php:1611 +#: inc/preference.class.php:163 inc/order.class.php:1636 msgid "Use this model" msgstr "Käytä tätä mallia" -#: inc/preference.class.php:168 inc/order.class.php:1620 +#: inc/preference.class.php:168 inc/order.class.php:1645 msgid "Use this sign" msgstr "Käytä tätä merkkiä" @@ -301,7 +301,7 @@ msgstr "Asiakirjaluokka" msgid "Document category prefix" msgstr "Asiakirjaluokan etuliite" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 msgid "Order Generation" msgstr "Tilauksen luominen" @@ -314,7 +314,7 @@ msgstr "Tuotteiden toimitus" msgid "Order validation" msgstr "Tilauksen vahvistaminen" -#: inc/order.class.php:273 inc/order.class.php:1554 +#: inc/order.class.php:273 inc/order.class.php:1579 msgid "Cancel order" msgstr "Peruuta tilaus" @@ -326,22 +326,22 @@ msgstr "Muokkaa vahvistettua tilausta" msgid "Generate order without validation" msgstr "Luo tilaus ilman vahvistusta" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 msgid "Postage" msgstr "Postikulut" -#: inc/order.class.php:458 inc/order.class.php:2188 +#: inc/order.class.php:458 inc/order.class.php:2213 msgid "Order is late" msgstr "Tilaus on myöhässä" -#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1225 #: inc/notificationtargetorder.class.php:467 #: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Tekijäryhmä" -#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1275 #: inc/notificationtargetorder.class.php:469 #: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" @@ -372,129 +372,141 @@ msgid "" "The order date must be within the dates entered for the selected budget." msgstr "Tilauspäivän on noudatettava valitulle budjetille asetettuja päivämääriä." -#: inc/order.class.php:1063 inc/order_item.class.php:439 -#: inc/order_item.class.php:518 inc/config.class.php:112 +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "" + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 #: ajax/referencedetail.php:64 msgid "No VAT" msgstr "Ei arvonlisäveroa" -#: inc/order.class.php:1096 +#: inc/order.class.php:1108 msgid "Due date overtaken" msgstr "Erääntymispäivä ylitetty" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 msgid "Price tax free" msgstr "Hinta ilman veroa" -#: inc/order.class.php:1296 inc/order.class.php:1872 +#: inc/order.class.php:1321 inc/order.class.php:1897 msgid "Price tax free with postage" msgstr "Hinta ilman veroja postituskuluineen" -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 inc/order_item.class.php:1027 -#: inc/order_item.class.php:1416 +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 msgid "Price ATI" msgstr "Hinta veroineen" -#: inc/order.class.php:1534 +#: inc/order.class.php:1559 msgid "Validation process" msgstr "Vahvistusprosessi" -#: inc/order.class.php:1553 +#: inc/order.class.php:1578 msgid "" "Do you really want to cancel this order ? This option is irreversible !" msgstr "Haluatko todella peruuttaa tämän tilauksen? Tämä vaihtoehto on peruuttamaton!" -#: inc/order.class.php:1560 +#: inc/order.class.php:1585 msgid "Validate order" msgstr "Vahvista tilaus" -#: inc/order.class.php:1566 +#: inc/order.class.php:1591 msgid "Do you want to cancel the validation approval ?" msgstr "Haluatko peruuttaa vahvistuksen hyväksynnän?" -#: inc/order.class.php:1568 +#: inc/order.class.php:1593 msgid "Cancel ask for validation" msgstr "Peruuta vahvistuskysely" -#: inc/order.class.php:1574 +#: inc/order.class.php:1599 msgid "Ask for validation" msgstr "Kysy vahvistusta" -#: inc/order.class.php:1580 +#: inc/order.class.php:1605 msgid "Do you really want to edit the order ?" msgstr "Haluatko varmasti muokata tilausta ?" -#: inc/order.class.php:1582 +#: inc/order.class.php:1607 msgid "Edit order" msgstr "Muokkaa tilausta" -#: inc/order.class.php:1590 +#: inc/order.class.php:1615 msgid "Thanks to add at least one equipment on your order." msgstr "Kiitos, että lisäsit vähintään yhden laitteen tilaukseesi." -#: inc/order.class.php:1639 +#: inc/order.class.php:1664 msgid "Thanks to select a model into your preferences" msgstr "Kiitos, että valitsit mallin asetuksiisi" -#: inc/order.class.php:1681 +#: inc/order.class.php:1706 msgid "Invoice address" msgstr "Laskutusosoite" -#: inc/order.class.php:1716 +#: inc/order.class.php:1741 msgid "Delivery address" msgstr "Toimitusosoite" -#: inc/order.class.php:1726 +#: inc/order.class.php:1751 msgid "The" msgstr " " -#: inc/order.class.php:1728 +#: inc/order.class.php:1753 msgid "Issuer order" msgstr "Liikkeellelaskijan tilaus" -#: inc/order.class.php:1746 +#: inc/order.class.php:1771 msgid "Recipient" msgstr "Vastaanottaja" -#: inc/order.class.php:1749 +#: inc/order.class.php:1774 msgid "Designation" msgstr "Nimittäjä" -#: inc/order.class.php:1751 +#: inc/order.class.php:1776 msgid "Unit price" msgstr "Yksikköhinta" -#: inc/order.class.php:1753 +#: inc/order.class.php:1778 msgid "Discount rate" msgstr "Alennus" -#: inc/order.class.php:1754 +#: inc/order.class.php:1779 msgid "Sum tax free" msgstr "Yhteensä ilman veroja" -#: inc/order.class.php:1881 +#: inc/order.class.php:1906 msgid "€" msgstr "€" -#: inc/order.class.php:1882 +#: inc/order.class.php:1907 msgid "Signature of issuing order" msgstr "Myöntämispäätöksen allekirjoitus" -#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/order.class.php:1985 inc/reference.class.php:373 #: inc/reference.class.php:758 msgid "Linked orders" msgstr "Linkitetyt tilaukset" -#: inc/order.class.php:1994 +#: inc/order.class.php:2019 msgid "Unlink" msgstr "Linkityksen poisto" -#: inc/order.class.php:2134 +#: inc/order.class.php:2159 msgid "Total orders related with this budget is greater than its value." msgstr "Tilausten kokonaisarvo on budjettia suuremmat." -#: inc/order.class.php:2139 +#: inc/order.class.php:2164 msgid "Total orders related with this budget is equal to its value." msgstr "Tilausten kokonaisarvo on sama kuin budjetti." @@ -530,24 +542,24 @@ msgstr "Vahvistus peruttu onnistuneesti" msgid "Editor of validation" msgstr "Vahvistuksen muokkaaja" -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 msgid "Order item" msgstr "Tilaa tuote" #: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 #: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 #: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Veroton yksikköhinta" -#: inc/order_item.class.php:160 inc/order_item.class.php:470 +#: inc/order_item.class.php:160 inc/order_item.class.php:471 msgid "Product name" msgstr "Tuotteen nimi" -#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/order_item.class.php:168 inc/order_item.class.php:483 #: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 #: inc/reference.class.php:195 msgid "Manufacturer's product reference" @@ -565,7 +577,7 @@ msgstr "Joitakin kenttiä ei voida muuttaa, koska ne kuuluvat tilaukseen" msgid "Add to the order from the catalog" msgstr "Lisää tilaukseen luettelosta" -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 #: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 #: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 #: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 @@ -573,60 +585,60 @@ msgstr "Lisää tilaukseen luettelosta" msgid "Product reference" msgstr "Tuotteen viite" -#: inc/order_item.class.php:452 inc/order_item.class.php:587 +#: inc/order_item.class.php:453 inc/order_item.class.php:589 msgid "Please select a supplier" msgstr "Ole hyvä ja valitse toimittaja" -#: inc/order_item.class.php:465 +#: inc/order_item.class.php:466 msgid "Add to the order free items" msgstr "Lisää tilausvapaisiin tuotteisiin" -#: inc/order_item.class.php:479 +#: inc/order_item.class.php:480 msgid "Add the reference" msgstr "Lisää viite" -#: inc/order_item.class.php:608 inc/order_item.class.php:621 +#: inc/order_item.class.php:610 inc/order_item.class.php:623 msgid "An analytic nature is mandatory !" msgstr "Analyyttinen luonne on pakollinen!" -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 #: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 msgid "No item to take delivery of" msgstr "Ei toimitettavia tuotteita" -#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/order_item.class.php:802 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" msgstr "Valmistajan viite" -#: inc/order_item.class.php:808 inc/order_item.class.php:1000 -#: inc/order_item.class.php:1202 +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 msgid "Do you really want to update this item ?" msgstr "Haluatko todella päivittää tämän kohteen?" -#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" msgstr "Haluatko todella poistaa nämä tiedot? Toimitettuja tuotteita ei liitetetä tilaukseen!" -#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 msgid "Discounted price tax free" msgstr "Alennettu hinta ilman veroja" -#: inc/order_item.class.php:1295 +#: inc/order_item.class.php:1297 msgid "Order informations" msgstr "Tilaustiedot" -#: inc/order_item.class.php:1471 +#: inc/order_item.class.php:1473 msgid "Payment status" msgstr "Maksun tila" -#: inc/order_item.class.php:1484 +#: inc/order_item.class.php:1486 msgid "Paid value" msgstr "Maksettu summa" -#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 #: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 #: inc/reception.class.php:248 msgid "Bill" @@ -848,17 +860,17 @@ msgstr "Lisää tilauksen sijainti kohteeseen" msgid "Add billing details to item" msgstr "Lisää tuotteelle laskutustiedot" -#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/config.class.php:300 inc/config.class.php:789 #: inc/reception.class.php:567 msgid "Default name" msgstr "Oletusnimi" -#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/config.class.php:307 inc/config.class.php:797 #: inc/reception.class.php:570 msgid "Default serial number" msgstr "Oletus sarjanumero" -#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/config.class.php:314 inc/config.class.php:805 #: inc/reception.class.php:573 msgid "Default inventory number" msgstr "Oletus inventointinumero" diff --git a/locales/fr_FR.mo b/locales/fr_FR.mo index e26add3b897e735412b66cef7913183a62b47264..1a816000f04bd438e588dc19582e4aea359f9f81 100644 GIT binary patch delta 27 icmbPQJhga3ha#Vmp{{|MuA!-dp|O>L#pY>>|HT1)v2JcJordHN&q2i;|>WMlSY{-7;?c$lYQ zX|wT{hx*IP8Z#{X!Nz80jHxY*88%Pz{Lz0Udm&hMP>`JVH;-`d`{T{{=&-H$O_ zGRe2-Dwx^L1lgi_2NrZ!kmCzQ{e7kWZ zo!zVg^cWNI6$bDl>dX^aUCu&PU^xbG6Kd!CP!(%Oy?@EYdr*n=quw7v zRUj^8HWjlloAs@NhDx~sr(i4cLD(rw!d}#+dWgEcZ&4G)7Dbc_5MQCnb*5` zBdP)iot;RrtPfLJ--csRn+Hr8@13o)Q)4g zp~*NIwUH1i(Mn9gI`niFJ7{R(gQyZ7MOCB|HNj2PSq`8Ue2psYSJX}?@M&n`T-5jq z)c94X%i4gNH-dV;*V!?L`lk^%Pe41njyjurs7pDF3HTkAacpVy2r^I!m!jUUa@L{} zYD86Nm+PNKE!^e$-LBtPO8qs_V*=^;5_9p38{jXC9zh=JlGUQ_KnpI$<5-2yP>GD6 z8~uz6F@t_1D)9rT`H!O?FQcCKd+xzAREEQ-&*(Sm66W!15`!yIpWkX+g?n%%K5+Wy zbH4Pqp%y%ex(k<4zXx}b&&?j8j&KMy&ih5fPs10cyqJp`kdHcoa@5YN@&8$(CXS#k zRXZxtGpKR5P&<2p+VN)>AGyG668#+1Mk|p7;%yC$5d<2#vwWUER8$ZuD<~=r6qSTS t^Ja$li?69~X)RdST;J3Zsc+rc91c|7xw5r+dqZGRQ`5HY=hH4^{sVvVzefN7 delta 1756 zcmXxkduYy49LMo5a@o!1v6=CV2Qy|D&*ph-<}$+{E<+@_XJRwvwyo8+KYqn1QsfU- zB$pVaMwI`=_79mvLc<>vC5gyZv&H-4cdXUxobT`VJLh}8=bYzL{jd6)=Z1K%2AD0% zFdJ=V!A!FpjA9aQbJn_eGfpLb3nyR~CSsp6eu^It;#lJIa4~Mcbi9n?@qv5(eu{Y( zAka@hCNcU5oPf+_#U;u?-<0GEPtNN zEYEBhfg%EFSc=ndBl2%YoHsE-zY9w-k(XxRDpbOUooBF!{&gIQA20^HUEH$$_h+Fh zx6GrV3^(E&+=VJ#tBZG_GJlSm=nE?0epJFk*snMYVKU~RDp!gccZqWys=}47--z+_ zy`wZ@X`Dut@FJ>2ZJ39hI30f@i?HlmzXEGvuvlzg8sO$I)HPKJhijz2@ zNtlOPNC_&@l{f+`(bHZu&`7{js1ja4Riq6yz$4UNcA+NxhAQnqu7nbuh8j46dcO>l zaWm?$)}Y31LOnm`JR70@BMICfpq1T6?afQnq3p$Y931sC4xqLm1C{V1)c32M6{v(7 zQ59--{Z`b(w_Ly7^*f`~Ujw}(kc?k>Kc4gG|&G6rv7U1uB7qxBxHVLi~tIB&*QB z#&a=+ej}>XCsE^H!c@GAdj8aN4?dzY>_uIpIDSQR2n%rlZbDtZEw}=Y;&OcL%$#Kw zreBAe@CxcI+(rE!yg;s-y+v(d59&QHw%E@oh=T}3P%jjrwqO}*#}S>@#Y`e_T9yw%IuPVbnrbA_>IWRvH5d)Z9)>@KQ^{x#5D`{DM&a%;HEv zc9_4|vhv!x+%+}jduyx9>-N\n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" +"PO-Revision-Date: 2021-06-15 13:08+0000\n" +"Last-Translator: Cédric Anne\n" "Language-Team: Croatian (Croatia) (http://www.transifex.com/teclib/glpi-plugin-order/language/hr_HR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,21 +31,21 @@ msgstr "Nije moguće stvori mapu" msgid "Cannot copy file %1$s to %2$s" msgstr "Nije moguće kopirati datoteku %1$s u %2$s" -#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 -#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 -#: inc/order_item.class.php:370 inc/order_item.class.php:477 -#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 #: inc/ordertax.class.php:41 msgid "VAT" msgstr "PDV" -#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 -#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 msgid "Payment conditions" msgstr "Uvjeti plaćanja" -#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 -#: inc/order.class.php:1966 inc/orderstate.class.php:49 +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 msgid "Order status" msgstr "Stanje narudžbe" @@ -59,7 +59,7 @@ msgstr "Druga vrsta predmeta" msgid "Delivery status" msgstr "Stanje dostave" -#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 #: inc/billstate.class.php:42 msgid "Bill status" msgstr "Stanje ulaznog računa" @@ -68,12 +68,12 @@ msgstr "Stanje ulaznog računa" msgid "Bill type" msgstr "Vrsta ulaznog računa" -#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 msgid "Analytic nature" msgstr "Svojstvo analitike" -#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 msgid "Account section" msgstr "Odjeljak računa" @@ -83,25 +83,25 @@ msgstr "Odjeljak računa" #: inc/profile.class.php:170 inc/preference.class.php:269 #: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 #: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 -#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 #: inc/bill.class.php:594 msgid "Orders" msgstr "Narudžbe" #: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 -#: inc/order.class.php:843 inc/order_item.class.php:1296 +#: inc/order.class.php:855 inc/order_item.class.php:1298 msgid "Order name" msgstr "Ime narudžbe" #: hook.php:250 report/orderdelivery/orderdelivery.php:68 -#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 msgid "Order number" msgstr "Broj narudžbe" #: hook.php:400 inc/order_supplier.class.php:201 #: inc/surveysupplier.class.php:370 inc/order.class.php:77 -#: inc/order_item.class.php:749 inc/order_item.class.php:1364 -#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 #: inc/reception.class.php:290 msgid "Order" msgstr "Narudžba" @@ -113,7 +113,7 @@ msgstr "Podaci o dostavi" #: report/deliveryinfos/deliveryinfos.php:48 #: report/orderdelivery/orderdelivery.php:48 #: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 -#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 #: inc/notificationtargetorder.class.php:153 #: inc/notificationtargetorder.class.php:161 msgid "Date of order" @@ -122,7 +122,7 @@ msgstr "Datum narudžbe" #: report/deliveryinfos/deliveryinfos.php:50 #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 -#: inc/order.class.php:952 +#: inc/order.class.php:964 msgid "Delivery location" msgstr "Mjesto dostave" @@ -139,7 +139,7 @@ msgid "orderdelivery_report_title" msgstr "Dostava narudžbe" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 -#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 msgid "Estimated due date" msgstr "Procijenjeni datum dospijeća" @@ -196,17 +196,17 @@ msgid "Add reference" msgstr "Dodaj referencu" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order.class.php:1748 inc/order_item.class.php:368 -#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 #: inc/link.class.php:418 msgid "Quantity" msgstr "Količina" #: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 #: inc/order_item.class.php:123 inc/order_item.class.php:131 -#: inc/order_item.class.php:371 inc/order_item.class.php:478 -#: inc/order_item.class.php:802 inc/order_item.class.php:1025 -#: inc/order_item.class.php:1403 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 msgid "Discount (%)" msgstr "Popust (%)" @@ -228,15 +228,15 @@ msgstr "Dobavljač za referencu" msgid "Products references" msgstr "Reference proizvoda" -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 msgid "Bills" msgstr "Ulazni računi" -#: inc/preference.class.php:163 inc/order.class.php:1611 +#: inc/preference.class.php:163 inc/order.class.php:1636 msgid "Use this model" msgstr "Koristi ovaj model" -#: inc/preference.class.php:168 inc/order.class.php:1620 +#: inc/preference.class.php:168 inc/order.class.php:1645 msgid "Use this sign" msgstr "Koristi ovaj znak" @@ -301,7 +301,7 @@ msgstr "Kategorija dokumenta" msgid "Document category prefix" msgstr "Prefiks kategorije dokumenta" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 msgid "Order Generation" msgstr "Generiranje narudžbe" @@ -314,7 +314,7 @@ msgstr "Uzmi predmet dostave" msgid "Order validation" msgstr "Provjera narudžbe" -#: inc/order.class.php:273 inc/order.class.php:1554 +#: inc/order.class.php:273 inc/order.class.php:1579 msgid "Cancel order" msgstr "Otkaži narudžbu" @@ -326,22 +326,22 @@ msgstr "Uredi provjerenu narudžbu" msgid "Generate order without validation" msgstr "Generiraj narudžbu bez provjere" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 msgid "Postage" msgstr "Poštarina" -#: inc/order.class.php:458 inc/order.class.php:2188 +#: inc/order.class.php:458 inc/order.class.php:2213 msgid "Order is late" msgstr "Narudžba kasni" -#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1225 #: inc/notificationtargetorder.class.php:467 #: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Grupa autora" -#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1275 #: inc/notificationtargetorder.class.php:469 #: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" @@ -372,129 +372,141 @@ msgid "" "The order date must be within the dates entered for the selected budget." msgstr "Datum narudžbe mora biti unutar datuma koji su uneseni za odabrani proračun." -#: inc/order.class.php:1063 inc/order_item.class.php:439 -#: inc/order_item.class.php:518 inc/config.class.php:112 +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "" + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 #: ajax/referencedetail.php:64 msgid "No VAT" msgstr "Bez PDV-a" -#: inc/order.class.php:1096 +#: inc/order.class.php:1108 msgid "Due date overtaken" msgstr "Datum dospijeća istekao" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 msgid "Price tax free" msgstr "Cijena bez poreza" -#: inc/order.class.php:1296 inc/order.class.php:1872 +#: inc/order.class.php:1321 inc/order.class.php:1897 msgid "Price tax free with postage" msgstr "Cijena bez poreza s poštarinom" -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 inc/order_item.class.php:1027 -#: inc/order_item.class.php:1416 +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 msgid "Price ATI" msgstr "Bruto cijena" -#: inc/order.class.php:1534 +#: inc/order.class.php:1559 msgid "Validation process" msgstr "Proces provjere" -#: inc/order.class.php:1553 +#: inc/order.class.php:1578 msgid "" "Do you really want to cancel this order ? This option is irreversible !" msgstr "Stvarno želiš otkazati ovu narudžbu? Ova je opcija nepovratna!" -#: inc/order.class.php:1560 +#: inc/order.class.php:1585 msgid "Validate order" msgstr "Provjeri narudžbu" -#: inc/order.class.php:1566 +#: inc/order.class.php:1591 msgid "Do you want to cancel the validation approval ?" msgstr "Želiš li otkazati odobrenje provjere?" -#: inc/order.class.php:1568 +#: inc/order.class.php:1593 msgid "Cancel ask for validation" msgstr "Otkaži zahtjev za provjerom" -#: inc/order.class.php:1574 +#: inc/order.class.php:1599 msgid "Ask for validation" msgstr "Zatraži provjeru" -#: inc/order.class.php:1580 +#: inc/order.class.php:1605 msgid "Do you really want to edit the order ?" msgstr "Stvarno želiš urediti ovu narudžbu?" -#: inc/order.class.php:1582 +#: inc/order.class.php:1607 msgid "Edit order" msgstr "Uredi narudžbu" -#: inc/order.class.php:1590 +#: inc/order.class.php:1615 msgid "Thanks to add at least one equipment on your order." msgstr "U svoju narudžbu dodaj barem jednu opremu." -#: inc/order.class.php:1639 +#: inc/order.class.php:1664 msgid "Thanks to select a model into your preferences" msgstr "Odaberi jedan model u svoje postavke" -#: inc/order.class.php:1681 +#: inc/order.class.php:1706 msgid "Invoice address" msgstr "Adresa računa" -#: inc/order.class.php:1716 +#: inc/order.class.php:1741 msgid "Delivery address" msgstr "Adresa dostave" -#: inc/order.class.php:1726 +#: inc/order.class.php:1751 msgid "The" msgstr " " -#: inc/order.class.php:1728 +#: inc/order.class.php:1753 msgid "Issuer order" msgstr "Naručitelj" -#: inc/order.class.php:1746 +#: inc/order.class.php:1771 msgid "Recipient" msgstr "Primatelj" -#: inc/order.class.php:1749 +#: inc/order.class.php:1774 msgid "Designation" msgstr "Označivanje" -#: inc/order.class.php:1751 +#: inc/order.class.php:1776 msgid "Unit price" msgstr "Jedinična cijena" -#: inc/order.class.php:1753 +#: inc/order.class.php:1778 msgid "Discount rate" msgstr "Stopa popusta" -#: inc/order.class.php:1754 +#: inc/order.class.php:1779 msgid "Sum tax free" msgstr "Ukupno bez poreza" -#: inc/order.class.php:1881 +#: inc/order.class.php:1906 msgid "€" msgstr "kn" -#: inc/order.class.php:1882 +#: inc/order.class.php:1907 msgid "Signature of issuing order" msgstr "Potpis naručitelja" -#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/order.class.php:1985 inc/reference.class.php:373 #: inc/reference.class.php:758 msgid "Linked orders" msgstr "Povezane narudžbe" -#: inc/order.class.php:1994 +#: inc/order.class.php:2019 msgid "Unlink" msgstr "Odspoji" -#: inc/order.class.php:2134 +#: inc/order.class.php:2159 msgid "Total orders related with this budget is greater than its value." msgstr "Ukupne narudžbe povezane s ovim proračunom veće su od njegove vrijednosti." -#: inc/order.class.php:2139 +#: inc/order.class.php:2164 msgid "Total orders related with this budget is equal to its value." msgstr "Ukupne narudžbe povezane s ovim proračunom jednake su njegovoj vrijednosti." @@ -530,24 +542,24 @@ msgstr "Provjera uspješno prekinuta" msgid "Editor of validation" msgstr "Autor provjere" -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 msgid "Order item" msgstr "Predmet narudžbe" #: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 #: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 #: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Jedinična cijena bez poreza" -#: inc/order_item.class.php:160 inc/order_item.class.php:470 +#: inc/order_item.class.php:160 inc/order_item.class.php:471 msgid "Product name" msgstr "Ime proizvoda" -#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/order_item.class.php:168 inc/order_item.class.php:483 #: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 #: inc/reference.class.php:195 msgid "Manufacturer's product reference" @@ -565,7 +577,7 @@ msgstr "Neka polja nije moguće promijeniti, jer pripadaju narudžbi" msgid "Add to the order from the catalog" msgstr "Dodaj narudžbi iz kataloga" -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 #: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 #: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 #: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 @@ -573,60 +585,60 @@ msgstr "Dodaj narudžbi iz kataloga" msgid "Product reference" msgstr "Referenca proizvoda" -#: inc/order_item.class.php:452 inc/order_item.class.php:587 +#: inc/order_item.class.php:453 inc/order_item.class.php:589 msgid "Please select a supplier" msgstr "Odaberi dobavljača" -#: inc/order_item.class.php:465 +#: inc/order_item.class.php:466 msgid "Add to the order free items" msgstr "Narudžbi dodaj slobodne predmete" -#: inc/order_item.class.php:479 +#: inc/order_item.class.php:480 msgid "Add the reference" msgstr "Dodaj referencu" -#: inc/order_item.class.php:608 inc/order_item.class.php:621 +#: inc/order_item.class.php:610 inc/order_item.class.php:623 msgid "An analytic nature is mandatory !" msgstr "Svojstvo analitike je obavezno!" -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 #: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 msgid "No item to take delivery of" msgstr "Nema predmeta koji se može uzeti iz isporuke" -#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/order_item.class.php:802 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" msgstr "Referenca proizvođaća" -#: inc/order_item.class.php:808 inc/order_item.class.php:1000 -#: inc/order_item.class.php:1202 +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 msgid "Do you really want to update this item ?" msgstr "Stvarno želiš aktualizirati ovaj predmet?" -#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" msgstr "Stvarno želiš izbrisati ove detalje? Dostavljeni predmeti neće biti povezani s narudžbom!" -#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 msgid "Discounted price tax free" msgstr "Cijena s popustom bez poreza" -#: inc/order_item.class.php:1295 +#: inc/order_item.class.php:1297 msgid "Order informations" msgstr "Podaci narudžbe" -#: inc/order_item.class.php:1471 +#: inc/order_item.class.php:1473 msgid "Payment status" msgstr "Stanje plaćanja" -#: inc/order_item.class.php:1484 +#: inc/order_item.class.php:1486 msgid "Paid value" msgstr "Plaćeni iznos" -#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 #: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 #: inc/reception.class.php:248 msgid "Bill" @@ -848,17 +860,17 @@ msgstr "Dodaj mjesto narudžbe za predmet" msgid "Add billing details to item" msgstr "Dodaj detalje o naplaćivanju za predmet" -#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/config.class.php:300 inc/config.class.php:789 #: inc/reception.class.php:567 msgid "Default name" msgstr "Standardno ime" -#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/config.class.php:307 inc/config.class.php:797 #: inc/reception.class.php:570 msgid "Default serial number" msgstr "Standardni serijski broj" -#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/config.class.php:314 inc/config.class.php:805 #: inc/reception.class.php:573 msgid "Default inventory number" msgstr "Standardni inventarski broj" diff --git a/locales/it_IT.mo b/locales/it_IT.mo index e2ac08d689eb45721c09ff675fe188d5c9ffec3a..07372de5483bcb18d3bdfaa1523381ea6b507697 100644 GIT binary patch delta 27 icmeyI{W*Jss3M<{p{{|MuA!-dp|O>L#b#y23nBo6EeJaR delta 27 icmeyI{W*Jss3M=Cg|4BIuA#Ytp{bRD@n&Vk3nBo6cnCcJ diff --git a/locales/it_IT.po b/locales/it_IT.po index ba5d95cabf..c4f9273616 100644 --- a/locales/it_IT.po +++ b/locales/it_IT.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-05 10:06+0000\n" -"PO-Revision-Date: 2018-12-17 15:03+0000\n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" +"PO-Revision-Date: 2021-06-15 13:08+0000\n" "Last-Translator: Cédric Anne\n" "Language-Team: Italian (Italy) (http://www.transifex.com/teclib/glpi-plugin-order/language/it_IT/)\n" "MIME-Version: 1.0\n" @@ -32,21 +32,21 @@ msgstr "Non posso creare la cartella" msgid "Cannot copy file %1$s to %2$s" msgstr "Non posso copiare il file %1$s in %2$s" -#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 -#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 -#: inc/order_item.class.php:370 inc/order_item.class.php:477 -#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 #: inc/ordertax.class.php:41 msgid "VAT" msgstr "IVA" -#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 -#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 msgid "Payment conditions" msgstr "Condizioni di pagamento" -#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 -#: inc/order.class.php:1966 inc/orderstate.class.php:49 +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 msgid "Order status" msgstr "Stato dell'ordine" @@ -60,7 +60,7 @@ msgstr "Tipo altre attrezzature" msgid "Delivery status" msgstr "Stato spedizione" -#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 #: inc/billstate.class.php:42 msgid "Bill status" msgstr "Stato Fattura" @@ -69,12 +69,12 @@ msgstr "Stato Fattura" msgid "Bill type" msgstr "Tipo di Fattura" -#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 msgid "Analytic nature" msgstr "" -#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 msgid "Account section" msgstr "" @@ -84,25 +84,25 @@ msgstr "" #: inc/profile.class.php:170 inc/preference.class.php:269 #: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 #: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 -#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 #: inc/bill.class.php:594 msgid "Orders" msgstr "Ordini" #: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 -#: inc/order.class.php:843 inc/order_item.class.php:1296 +#: inc/order.class.php:855 inc/order_item.class.php:1298 msgid "Order name" msgstr "Ordine" #: hook.php:250 report/orderdelivery/orderdelivery.php:68 -#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 msgid "Order number" msgstr "Numero d'ordine" #: hook.php:400 inc/order_supplier.class.php:201 #: inc/surveysupplier.class.php:370 inc/order.class.php:77 -#: inc/order_item.class.php:749 inc/order_item.class.php:1364 -#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 #: inc/reception.class.php:290 msgid "Order" msgstr "Ordine" @@ -114,7 +114,7 @@ msgstr "" #: report/deliveryinfos/deliveryinfos.php:48 #: report/orderdelivery/orderdelivery.php:48 #: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 -#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 #: inc/notificationtargetorder.class.php:153 #: inc/notificationtargetorder.class.php:161 msgid "Date of order" @@ -123,7 +123,7 @@ msgstr "Data dell'ordine" #: report/deliveryinfos/deliveryinfos.php:50 #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 -#: inc/order.class.php:952 +#: inc/order.class.php:964 msgid "Delivery location" msgstr "Indirizzo Spedizione" @@ -140,7 +140,7 @@ msgid "orderdelivery_report_title" msgstr "" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 -#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 msgid "Estimated due date" msgstr "Data di scadenza prevista" @@ -197,17 +197,17 @@ msgid "Add reference" msgstr "Aggiungi riferimento" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order.class.php:1748 inc/order_item.class.php:368 -#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 #: inc/link.class.php:418 msgid "Quantity" msgstr "Quantità" #: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 #: inc/order_item.class.php:123 inc/order_item.class.php:131 -#: inc/order_item.class.php:371 inc/order_item.class.php:478 -#: inc/order_item.class.php:802 inc/order_item.class.php:1025 -#: inc/order_item.class.php:1403 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 msgid "Discount (%)" msgstr "Sconto (%)" @@ -229,15 +229,15 @@ msgstr "Riferimento del fornitore" msgid "Products references" msgstr "Gestione Riferimenti Prodotti" -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 msgid "Bills" msgstr "Fatture" -#: inc/preference.class.php:163 inc/order.class.php:1611 +#: inc/preference.class.php:163 inc/order.class.php:1636 msgid "Use this model" msgstr "Usa questo modello" -#: inc/preference.class.php:168 inc/order.class.php:1620 +#: inc/preference.class.php:168 inc/order.class.php:1645 msgid "Use this sign" msgstr "Usa questa firma" @@ -302,7 +302,7 @@ msgstr "Categoria del documento" msgid "Document category prefix" msgstr "Prefisso di categoria del documento" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 msgid "Order Generation" msgstr "Generazione Ordine" @@ -315,7 +315,7 @@ msgstr "Articolo preso in consegna" msgid "Order validation" msgstr "Verifica dell'ordine" -#: inc/order.class.php:273 inc/order.class.php:1554 +#: inc/order.class.php:273 inc/order.class.php:1579 msgid "Cancel order" msgstr "Cancellazione Ordine" @@ -327,22 +327,22 @@ msgstr "Modifica Ordine verificato" msgid "Generate order without validation" msgstr "Genera l'ordine senza la verifica" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 msgid "Postage" msgstr "Spedizione" -#: inc/order.class.php:458 inc/order.class.php:2188 +#: inc/order.class.php:458 inc/order.class.php:2213 msgid "Order is late" msgstr "Ordine in ritardo" -#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1225 #: inc/notificationtargetorder.class.php:467 #: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Gruppo dell'autore" -#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1275 #: inc/notificationtargetorder.class.php:469 #: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" @@ -373,129 +373,141 @@ msgid "" "The order date must be within the dates entered for the selected budget." msgstr "La data dell'ordine deve essere compresa tra le date inserite per il budget selezionato." -#: inc/order.class.php:1063 inc/order_item.class.php:439 -#: inc/order_item.class.php:518 inc/config.class.php:112 +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "" + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 #: ajax/referencedetail.php:64 msgid "No VAT" msgstr "IVA esclusa" -#: inc/order.class.php:1096 +#: inc/order.class.php:1108 msgid "Due date overtaken" msgstr "Data di scadenza superata" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 msgid "Price tax free" msgstr "Importo senza IVA" -#: inc/order.class.php:1296 inc/order.class.php:1872 +#: inc/order.class.php:1321 inc/order.class.php:1897 msgid "Price tax free with postage" msgstr "Importo Totale + Spedizione" -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 inc/order_item.class.php:1027 -#: inc/order_item.class.php:1416 +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 msgid "Price ATI" msgstr "Importo (iva + sconto)" -#: inc/order.class.php:1534 +#: inc/order.class.php:1559 msgid "Validation process" msgstr "Processo di verifica" -#: inc/order.class.php:1553 +#: inc/order.class.php:1578 msgid "" "Do you really want to cancel this order ? This option is irreversible !" msgstr "Vuoi cencellare questo ordine? L'operazione è irreversibile!" -#: inc/order.class.php:1560 +#: inc/order.class.php:1585 msgid "Validate order" msgstr "Verifica Ordine" -#: inc/order.class.php:1566 +#: inc/order.class.php:1591 msgid "Do you want to cancel the validation approval ?" msgstr "Vuoi cancellare il processo di verifica?" -#: inc/order.class.php:1568 +#: inc/order.class.php:1593 msgid "Cancel ask for validation" msgstr "Elimina la richiesta di verifica" -#: inc/order.class.php:1574 +#: inc/order.class.php:1599 msgid "Ask for validation" msgstr "Richiesta di verifica" -#: inc/order.class.php:1580 +#: inc/order.class.php:1605 msgid "Do you really want to edit the order ?" msgstr "Vuoi modificare l'ordine? " -#: inc/order.class.php:1582 +#: inc/order.class.php:1607 msgid "Edit order" msgstr "Modifica Ordine" -#: inc/order.class.php:1590 +#: inc/order.class.php:1615 msgid "Thanks to add at least one equipment on your order." msgstr "Grazie per aver aggiunto attrezzature all ordine" -#: inc/order.class.php:1639 +#: inc/order.class.php:1664 msgid "Thanks to select a model into your preferences" msgstr "Grazie per aver selezionato il modello preferito" -#: inc/order.class.php:1681 +#: inc/order.class.php:1706 msgid "Invoice address" msgstr "Indirizzo Fatturazione" -#: inc/order.class.php:1716 +#: inc/order.class.php:1741 msgid "Delivery address" msgstr "Indirizzo Spedizione" -#: inc/order.class.php:1726 +#: inc/order.class.php:1751 msgid "The" msgstr "il" -#: inc/order.class.php:1728 +#: inc/order.class.php:1753 msgid "Issuer order" msgstr "Emissione Ordine" -#: inc/order.class.php:1746 +#: inc/order.class.php:1771 msgid "Recipient" msgstr "Recipient" -#: inc/order.class.php:1749 +#: inc/order.class.php:1774 msgid "Designation" msgstr "Denominazione" -#: inc/order.class.php:1751 +#: inc/order.class.php:1776 msgid "Unit price" msgstr "Importo unitario" -#: inc/order.class.php:1753 +#: inc/order.class.php:1778 msgid "Discount rate" msgstr "Percentuale di sconto" -#: inc/order.class.php:1754 +#: inc/order.class.php:1779 msgid "Sum tax free" msgstr "Importo Totale (senza tasse)" -#: inc/order.class.php:1881 +#: inc/order.class.php:1906 msgid "€" msgstr "€" -#: inc/order.class.php:1882 +#: inc/order.class.php:1907 msgid "Signature of issuing order" msgstr "Firma emettitore ordine" -#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/order.class.php:1985 inc/reference.class.php:373 #: inc/reference.class.php:758 msgid "Linked orders" msgstr "Ordini collegati" -#: inc/order.class.php:1994 +#: inc/order.class.php:2019 msgid "Unlink" msgstr "annulla collegamento" -#: inc/order.class.php:2134 +#: inc/order.class.php:2159 msgid "Total orders related with this budget is greater than its value." msgstr "Total orders related with this budget is greater than its value." -#: inc/order.class.php:2139 +#: inc/order.class.php:2164 msgid "Total orders related with this budget is equal to its value." msgstr "Total orders related with this budget is equal to its value." @@ -531,24 +543,24 @@ msgstr "Annullamento verifica effettuato" msgid "Editor of validation" msgstr "Modifica della verifica" -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 msgid "Order item" msgstr "Ordina articolo" #: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 #: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 #: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Prezzo Unitario senza IVA" -#: inc/order_item.class.php:160 inc/order_item.class.php:470 +#: inc/order_item.class.php:160 inc/order_item.class.php:471 msgid "Product name" msgstr "" -#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/order_item.class.php:168 inc/order_item.class.php:483 #: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 #: inc/reference.class.php:195 msgid "Manufacturer's product reference" @@ -566,7 +578,7 @@ msgstr "Alcuni elementi non possono essere modificati poichè parte di un ordine msgid "Add to the order from the catalog" msgstr "" -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 #: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 #: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 #: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 @@ -574,60 +586,60 @@ msgstr "" msgid "Product reference" msgstr "Riferimento Prodotto" -#: inc/order_item.class.php:452 inc/order_item.class.php:587 +#: inc/order_item.class.php:453 inc/order_item.class.php:589 msgid "Please select a supplier" msgstr "Selezionare Fornitore" -#: inc/order_item.class.php:465 +#: inc/order_item.class.php:466 msgid "Add to the order free items" msgstr "" -#: inc/order_item.class.php:479 +#: inc/order_item.class.php:480 msgid "Add the reference" msgstr "" -#: inc/order_item.class.php:608 inc/order_item.class.php:621 +#: inc/order_item.class.php:610 inc/order_item.class.php:623 msgid "An analytic nature is mandatory !" msgstr "" -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 #: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 msgid "No item to take delivery of" msgstr "Nessun articolo da prendere in consegna" -#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/order_item.class.php:802 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" msgstr "Riferimento del produttore" -#: inc/order_item.class.php:808 inc/order_item.class.php:1000 -#: inc/order_item.class.php:1202 +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 msgid "Do you really want to update this item ?" msgstr "Vuoi aggiornare questo articolo? " -#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" msgstr "Vuoi cancellare questi dettaglii? Gli articoli consegnati non saranno collegati all'ordine!" -#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 msgid "Discounted price tax free" msgstr "Importo scontato senza IVA" -#: inc/order_item.class.php:1295 +#: inc/order_item.class.php:1297 msgid "Order informations" msgstr "Informazioni Ordine" -#: inc/order_item.class.php:1471 +#: inc/order_item.class.php:1473 msgid "Payment status" msgstr "Stato del pagamento" -#: inc/order_item.class.php:1484 +#: inc/order_item.class.php:1486 msgid "Paid value" msgstr "Valore pagato" -#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 #: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 #: inc/reception.class.php:248 msgid "Bill" @@ -849,17 +861,17 @@ msgstr "Aggiungi la posizione dell'ordine all'elemento" msgid "Add billing details to item" msgstr "Aggiungere dati di fatturazione alla voce" -#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/config.class.php:300 inc/config.class.php:789 #: inc/reception.class.php:567 msgid "Default name" msgstr "Nome predefinito" -#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/config.class.php:307 inc/config.class.php:797 #: inc/reception.class.php:570 msgid "Default serial number" msgstr "Numero di serie predefinito" -#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/config.class.php:314 inc/config.class.php:805 #: inc/reception.class.php:573 msgid "Default inventory number" msgstr "Numero di inventario predefinito" diff --git a/locales/ko_KR.mo b/locales/ko_KR.mo index eb5920a65eef3991dba08cb25f7e5fc131d8e4dc..faa235e296e97b44dc46a9aae789726a004deb91 100644 GIT binary patch delta 1710 zcmXZcc}P@I6vy#fmY^{()`T{iSypaM&SbeokR`TYP?8Z8hL}+zMw3Aq@l2v9h<0eF zKf?4MF`@#CRHT1eh@!xVq6OL!LW%zD`}3V)n9n=szIV^L@7*`=s+>Tu5X@m9J&t}z=Zj}DL9*WmRW(B#0@syVV<_}>lkKy09WBVoP*gpew`{*+?314PRj{{=#Go5$L>GW*+MNBD2!+wU|zR8;0;8s@~~b&!6Br ziBu9@Sbzgqh`-H@Jm(e>SL1T@kgpryM-%--UH=d1%?0zFn}(&Bgw@E`ZQ@7gA2v^U z93+#th6}I@)!`c)pBTp{wm3+4iHv8W&YOoSP>x!8rH$93uHR}lnfuM7sCm5e93*pa z1vOD8YNB3b8@NI98)^>(=&}Y2aSwK&_Rbh;--0%U|;Ip1Wm< zepKP-{($>n`M(xVTIf%hfqItts0pi3n{6HH`km$h)B;YR8tb+Eu*E+x>>8X);X&)d z1(=1)P%Evod^_q^pFypp)AElnK>Whu_clI)x}%9v|NNA5f0D92y;sM{=!zax>kn}S z4q2QS^Tz|I*3&VF6{yNJW|P^0n(wmNh1zxZEPi4R$Lu}(YKbw_gcI4*njnlSlxuMr zYJ3%{(QTIBVYb?M2Wrz?MqPi?#_yU#m_h#KBHlA~HbR1(>?RiZg(IkYwG?%atB_aD zZL#qq=2`QG*@J5EA*#XGmVbw8=m)ByQOi&A7W@AoQ&Eqi0JZYg+A9!7o^Xkz)R5u@U*YUHq)W z8@L)r%o0vkqwS~_ccTjTnvYNoK0`J3$sG0bo||0i7Yd^~%|ta+h^bhHns@_h1)EU? znsFw!VH#ev{B5%zRrooo!Oy7oaY~u*d`!?1EAGq)c&X7?Bw8GaEy;=%l}AepqI{C8 m>-V-sHpc5)_BPkI?v9sdtsLs!9^ciFRngMYc<1BXL!tjt_`72O delta 1719 zcmXZcZ)nX?9LMo9bZcXpwi+|*GGol;x_9pUZ^qjEiy39nbVL5+ZfuJXKjev`um@No zO8!J)Xb&{=faU=TG078u5>X@yh4*LYd%OK!=X}rko$vSj?)lw&O|P4-o(u(t(wv(! z(z!zC+>;{bXu6-6i9<(u$KY`KWo8`~(BEm}ZRQ0VzlC{>_h1!%#}PPfw9iwI>hBxv zg5E^u2qeCB6-Fuoac>LUG_1 zxJ4kBKo^!^4^F^-W4xspqrV2r@fh-TJzTUlP-mcsDwkjtZoxLx*%=V=JC7n$-Evd``%xP>ib{CN;@5mUaCa>5 z0+sl^A8i#|E5!43GqJENYi+{C#8ozIzTfy&0 zLpRRBFfK#wbgRXWqaO7|)J{4r{v1`%2kZZ^@le!1(Sp`r>4lZL;{Xx8S7%Un+((uE z3@h-J^$RBY@gh{|am>QH)?`L@pq1Ke#&xp`b74VFJD*S8%-%$mnmHLAEqY~w#{xZg*p8af#uSX@^iaB^1^-3y#3Z>0Rp@clhJ(8_l(^e`j@rRHRAIl&{*!%t7%EW=RcHcLP!;B44Qk;Hs10mJ zt-l|K;ZYonSA9I@9{7fPflB-yRpD>c8(28SI}??-u6;;mkXs#%L?=e#(QtIq)L5b< z$|qw%vbiO)v?\n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" +"PO-Revision-Date: 2021-06-15 13:08+0000\n" +"Last-Translator: Cédric Anne\n" "Language-Team: Korean (Korea) (http://www.transifex.com/teclib/glpi-plugin-order/language/ko_KR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,21 +31,21 @@ msgstr "폴더 생성할 수 없음" msgid "Cannot copy file %1$s to %2$s" msgstr "파일 %1$s를 %2$s에 복사할 수 없음" -#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 -#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 -#: inc/order_item.class.php:370 inc/order_item.class.php:477 -#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 #: inc/ordertax.class.php:41 msgid "VAT" msgstr "VAT" -#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 -#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 msgid "Payment conditions" msgstr "결제 조건" -#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 -#: inc/order.class.php:1966 inc/orderstate.class.php:49 +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 msgid "Order status" msgstr "주문 상태" @@ -59,7 +59,7 @@ msgstr "품목의 다른 유형" msgid "Delivery status" msgstr "배송 상태" -#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 #: inc/billstate.class.php:42 msgid "Bill status" msgstr "청구서 상태" @@ -68,12 +68,12 @@ msgstr "청구서 상태" msgid "Bill type" msgstr "청구서 유형" -#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 msgid "Analytic nature" msgstr "성향 분석" -#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 msgid "Account section" msgstr "계정 섹션" @@ -83,25 +83,25 @@ msgstr "계정 섹션" #: inc/profile.class.php:170 inc/preference.class.php:269 #: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 #: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 -#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 #: inc/bill.class.php:594 msgid "Orders" msgstr "주문" #: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 -#: inc/order.class.php:843 inc/order_item.class.php:1296 +#: inc/order.class.php:855 inc/order_item.class.php:1298 msgid "Order name" msgstr "주문 이름" #: hook.php:250 report/orderdelivery/orderdelivery.php:68 -#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 msgid "Order number" msgstr "주문 번호" #: hook.php:400 inc/order_supplier.class.php:201 #: inc/surveysupplier.class.php:370 inc/order.class.php:77 -#: inc/order_item.class.php:749 inc/order_item.class.php:1364 -#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 #: inc/reception.class.php:290 msgid "Order" msgstr "주문" @@ -113,7 +113,7 @@ msgstr "deliveryinfos_report_title" #: report/deliveryinfos/deliveryinfos.php:48 #: report/orderdelivery/orderdelivery.php:48 #: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 -#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 #: inc/notificationtargetorder.class.php:153 #: inc/notificationtargetorder.class.php:161 msgid "Date of order" @@ -122,7 +122,7 @@ msgstr "주문 일자" #: report/deliveryinfos/deliveryinfos.php:50 #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 -#: inc/order.class.php:952 +#: inc/order.class.php:964 msgid "Delivery location" msgstr "배송 위치" @@ -139,7 +139,7 @@ msgid "orderdelivery_report_title" msgstr "orderdelivery_report_title" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 -#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 msgid "Estimated due date" msgstr "예상 기한" @@ -196,17 +196,17 @@ msgid "Add reference" msgstr "참조 추가" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order.class.php:1748 inc/order_item.class.php:368 -#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 #: inc/link.class.php:418 msgid "Quantity" msgstr "수량" #: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 #: inc/order_item.class.php:123 inc/order_item.class.php:131 -#: inc/order_item.class.php:371 inc/order_item.class.php:478 -#: inc/order_item.class.php:802 inc/order_item.class.php:1025 -#: inc/order_item.class.php:1403 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 msgid "Discount (%)" msgstr "할인 (%)" @@ -228,15 +228,15 @@ msgstr "참조용 공급자" msgid "Products references" msgstr "상품 참조" -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 msgid "Bills" msgstr "청구서" -#: inc/preference.class.php:163 inc/order.class.php:1611 +#: inc/preference.class.php:163 inc/order.class.php:1636 msgid "Use this model" msgstr "이 모델 사용" -#: inc/preference.class.php:168 inc/order.class.php:1620 +#: inc/preference.class.php:168 inc/order.class.php:1645 msgid "Use this sign" msgstr "이 사인 사용" @@ -301,7 +301,7 @@ msgstr "문서 분류" msgid "Document category prefix" msgstr "문서 분류 접두어" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 msgid "Order Generation" msgstr "주문 생성" @@ -314,7 +314,7 @@ msgstr "품목 수취" msgid "Order validation" msgstr "주문 확인" -#: inc/order.class.php:273 inc/order.class.php:1554 +#: inc/order.class.php:273 inc/order.class.php:1579 msgid "Cancel order" msgstr "주문 취소" @@ -326,22 +326,22 @@ msgstr "확인된 주문 수정" msgid "Generate order without validation" msgstr "확인 없이 주문 생성" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 msgid "Postage" msgstr "배송 요금" -#: inc/order.class.php:458 inc/order.class.php:2188 +#: inc/order.class.php:458 inc/order.class.php:2213 msgid "Order is late" msgstr "주문 늦음" -#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1225 #: inc/notificationtargetorder.class.php:467 #: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "작성자 그룹" -#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1275 #: inc/notificationtargetorder.class.php:469 #: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" @@ -372,129 +372,141 @@ msgid "" "The order date must be within the dates entered for the selected budget." msgstr "주문 일자는 선택된 예산에 입력된 날짜 내이어야 합니다." -#: inc/order.class.php:1063 inc/order_item.class.php:439 -#: inc/order_item.class.php:518 inc/config.class.php:112 +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "" + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 #: ajax/referencedetail.php:64 msgid "No VAT" msgstr "VAT 없음" -#: inc/order.class.php:1096 +#: inc/order.class.php:1108 msgid "Due date overtaken" msgstr "기한 초과" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 msgid "Price tax free" msgstr "세금 별도 가격" -#: inc/order.class.php:1296 inc/order.class.php:1872 +#: inc/order.class.php:1321 inc/order.class.php:1897 msgid "Price tax free with postage" msgstr "배송료가 있는 세금 별도 가격" -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 inc/order_item.class.php:1027 -#: inc/order_item.class.php:1416 +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 msgid "Price ATI" msgstr "가격 ATI" -#: inc/order.class.php:1534 +#: inc/order.class.php:1559 msgid "Validation process" msgstr "확인 처리" -#: inc/order.class.php:1553 +#: inc/order.class.php:1578 msgid "" "Do you really want to cancel this order ? This option is irreversible !" msgstr "이 주문을 취소하시겠습니까? 이 옵션은 철회할 수 없습니다 !" -#: inc/order.class.php:1560 +#: inc/order.class.php:1585 msgid "Validate order" msgstr "주문 확인ㅇ" -#: inc/order.class.php:1566 +#: inc/order.class.php:1591 msgid "Do you want to cancel the validation approval ?" msgstr "검증 승인을 취소하시겠습니까 ?" -#: inc/order.class.php:1568 +#: inc/order.class.php:1593 msgid "Cancel ask for validation" msgstr "확인 요청 취소" -#: inc/order.class.php:1574 +#: inc/order.class.php:1599 msgid "Ask for validation" msgstr "확인 요청" -#: inc/order.class.php:1580 +#: inc/order.class.php:1605 msgid "Do you really want to edit the order ?" msgstr "주문을 수정하시겠습니까?" -#: inc/order.class.php:1582 +#: inc/order.class.php:1607 msgid "Edit order" msgstr "주문 수정" -#: inc/order.class.php:1590 +#: inc/order.class.php:1615 msgid "Thanks to add at least one equipment on your order." msgstr "주문에 하나 이상의 물품을 추가해 주셔서 감사합니다." -#: inc/order.class.php:1639 +#: inc/order.class.php:1664 msgid "Thanks to select a model into your preferences" msgstr "참조에 모델을 선택해 주셔서 감사합니다" -#: inc/order.class.php:1681 +#: inc/order.class.php:1706 msgid "Invoice address" msgstr "배송장 주소" -#: inc/order.class.php:1716 +#: inc/order.class.php:1741 msgid "Delivery address" msgstr "배송 주소" -#: inc/order.class.php:1726 +#: inc/order.class.php:1751 msgid "The" msgstr "그" -#: inc/order.class.php:1728 +#: inc/order.class.php:1753 msgid "Issuer order" msgstr "발급자 주문" -#: inc/order.class.php:1746 +#: inc/order.class.php:1771 msgid "Recipient" msgstr "수취인" -#: inc/order.class.php:1749 +#: inc/order.class.php:1774 msgid "Designation" msgstr "직함" -#: inc/order.class.php:1751 +#: inc/order.class.php:1776 msgid "Unit price" msgstr "정가" -#: inc/order.class.php:1753 +#: inc/order.class.php:1778 msgid "Discount rate" msgstr "할인율" -#: inc/order.class.php:1754 +#: inc/order.class.php:1779 msgid "Sum tax free" msgstr "면세 합계" -#: inc/order.class.php:1881 +#: inc/order.class.php:1906 msgid "€" msgstr "€" -#: inc/order.class.php:1882 +#: inc/order.class.php:1907 msgid "Signature of issuing order" msgstr "주문 발행 서명" -#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/order.class.php:1985 inc/reference.class.php:373 #: inc/reference.class.php:758 msgid "Linked orders" msgstr "연결된 주문" -#: inc/order.class.php:1994 +#: inc/order.class.php:2019 msgid "Unlink" msgstr "연결 해제" -#: inc/order.class.php:2134 +#: inc/order.class.php:2159 msgid "Total orders related with this budget is greater than its value." msgstr "이 예산에 관련된 주문 총합은 그 값보다 커야 합니다." -#: inc/order.class.php:2139 +#: inc/order.class.php:2164 msgid "Total orders related with this budget is equal to its value." msgstr "이 예산에 관련된 주문 총합은 그 값과 같아야 합니다." @@ -530,24 +542,24 @@ msgstr "확인이 취소됨" msgid "Editor of validation" msgstr "확인 편집자" -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 msgid "Order item" msgstr "주문 품목" #: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 #: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 #: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "단가 면세" -#: inc/order_item.class.php:160 inc/order_item.class.php:470 +#: inc/order_item.class.php:160 inc/order_item.class.php:471 msgid "Product name" msgstr "상품 이름" -#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/order_item.class.php:168 inc/order_item.class.php:483 #: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 #: inc/reference.class.php:195 msgid "Manufacturer's product reference" @@ -565,7 +577,7 @@ msgstr "다른 주문에 속해 있는 일부 항목은 수정할 수 없습니 msgid "Add to the order from the catalog" msgstr "분류에서 주문 추가" -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 #: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 #: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 #: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 @@ -573,60 +585,60 @@ msgstr "분류에서 주문 추가" msgid "Product reference" msgstr "상품 참조" -#: inc/order_item.class.php:452 inc/order_item.class.php:587 +#: inc/order_item.class.php:453 inc/order_item.class.php:589 msgid "Please select a supplier" msgstr "공급사를 선택하세요" -#: inc/order_item.class.php:465 +#: inc/order_item.class.php:466 msgid "Add to the order free items" msgstr "무료 품목을 주문에 추가" -#: inc/order_item.class.php:479 +#: inc/order_item.class.php:480 msgid "Add the reference" msgstr "참조 추가" -#: inc/order_item.class.php:608 inc/order_item.class.php:621 +#: inc/order_item.class.php:610 inc/order_item.class.php:623 msgid "An analytic nature is mandatory !" msgstr "성향 분석은 필수 입니다 !" -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 #: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 msgid "No item to take delivery of" msgstr "수취할 품목 없음" -#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/order_item.class.php:802 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" msgstr "제조사 참조" -#: inc/order_item.class.php:808 inc/order_item.class.php:1000 -#: inc/order_item.class.php:1202 +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 msgid "Do you really want to update this item ?" msgstr "이 품목을 갱신하시겠습니까?" -#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" msgstr "이 상세사항들을 삭제하시겠습니까? 배송된 품목들이 주문에 연결되지 않게 됩니다 !" -#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 msgid "Discounted price tax free" msgstr "할인가 면세" -#: inc/order_item.class.php:1295 +#: inc/order_item.class.php:1297 msgid "Order informations" msgstr "주문 정보" -#: inc/order_item.class.php:1471 +#: inc/order_item.class.php:1473 msgid "Payment status" msgstr "결제 상태" -#: inc/order_item.class.php:1484 +#: inc/order_item.class.php:1486 msgid "Paid value" msgstr "결제된 가치" -#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 #: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 #: inc/reception.class.php:248 msgid "Bill" @@ -848,17 +860,17 @@ msgstr "품목에 주문 위치 추가" msgid "Add billing details to item" msgstr "품목에 청구서 상세 추가" -#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/config.class.php:300 inc/config.class.php:789 #: inc/reception.class.php:567 msgid "Default name" msgstr "기본 이름" -#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/config.class.php:307 inc/config.class.php:797 #: inc/reception.class.php:570 msgid "Default serial number" msgstr "기본 시리얼 번호" -#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/config.class.php:314 inc/config.class.php:805 #: inc/reception.class.php:573 msgid "Default inventory number" msgstr "기본 물품 번호" diff --git a/locales/order.pot b/locales/order.pot index d13ac2d93d..a43e79c6d3 100644 --- a/locales/order.pot +++ b/locales/order.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-05 10:06+0000\n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -30,21 +30,21 @@ msgstr "" msgid "Cannot copy file %1$s to %2$s" msgstr "" -#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 -#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 -#: inc/order_item.class.php:370 inc/order_item.class.php:477 -#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 #: inc/ordertax.class.php:41 msgid "VAT" msgstr "" -#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 -#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 msgid "Payment conditions" msgstr "" -#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 -#: inc/order.class.php:1966 inc/orderstate.class.php:49 +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 msgid "Order status" msgstr "" @@ -58,7 +58,7 @@ msgstr "" msgid "Delivery status" msgstr "" -#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 #: inc/billstate.class.php:42 msgid "Bill status" msgstr "" @@ -67,12 +67,12 @@ msgstr "" msgid "Bill type" msgstr "" -#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 msgid "Analytic nature" msgstr "" -#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 msgid "Account section" msgstr "" @@ -82,25 +82,25 @@ msgstr "" #: inc/profile.class.php:170 inc/preference.class.php:269 #: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 #: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 -#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 #: inc/bill.class.php:594 msgid "Orders" msgstr "" #: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 -#: inc/order.class.php:843 inc/order_item.class.php:1296 +#: inc/order.class.php:855 inc/order_item.class.php:1298 msgid "Order name" msgstr "" #: hook.php:250 report/orderdelivery/orderdelivery.php:68 -#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 msgid "Order number" msgstr "" #: hook.php:400 inc/order_supplier.class.php:201 #: inc/surveysupplier.class.php:370 inc/order.class.php:77 -#: inc/order_item.class.php:749 inc/order_item.class.php:1364 -#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 #: inc/reception.class.php:290 msgid "Order" msgstr "" @@ -112,7 +112,7 @@ msgstr "" #: report/deliveryinfos/deliveryinfos.php:48 #: report/orderdelivery/orderdelivery.php:48 #: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 -#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 #: inc/notificationtargetorder.class.php:153 #: inc/notificationtargetorder.class.php:161 msgid "Date of order" @@ -121,7 +121,7 @@ msgstr "" #: report/deliveryinfos/deliveryinfos.php:50 #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 -#: inc/order.class.php:952 +#: inc/order.class.php:964 msgid "Delivery location" msgstr "" @@ -138,7 +138,7 @@ msgid "orderdelivery_report_title" msgstr "" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 -#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 msgid "Estimated due date" msgstr "" @@ -195,17 +195,17 @@ msgid "Add reference" msgstr "" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order.class.php:1748 inc/order_item.class.php:368 -#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 #: inc/link.class.php:418 msgid "Quantity" msgstr "" #: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 #: inc/order_item.class.php:123 inc/order_item.class.php:131 -#: inc/order_item.class.php:371 inc/order_item.class.php:478 -#: inc/order_item.class.php:802 inc/order_item.class.php:1025 -#: inc/order_item.class.php:1403 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 msgid "Discount (%)" msgstr "" @@ -227,15 +227,15 @@ msgstr "" msgid "Products references" msgstr "" -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 msgid "Bills" msgstr "" -#: inc/preference.class.php:163 inc/order.class.php:1611 +#: inc/preference.class.php:163 inc/order.class.php:1636 msgid "Use this model" msgstr "" -#: inc/preference.class.php:168 inc/order.class.php:1620 +#: inc/preference.class.php:168 inc/order.class.php:1645 msgid "Use this sign" msgstr "" @@ -300,7 +300,7 @@ msgstr "" msgid "Document category prefix" msgstr "" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 msgid "Order Generation" msgstr "" @@ -313,7 +313,7 @@ msgstr "" msgid "Order validation" msgstr "" -#: inc/order.class.php:273 inc/order.class.php:1554 +#: inc/order.class.php:273 inc/order.class.php:1579 msgid "Cancel order" msgstr "" @@ -325,22 +325,22 @@ msgstr "" msgid "Generate order without validation" msgstr "" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 msgid "Postage" msgstr "" -#: inc/order.class.php:458 inc/order.class.php:2188 +#: inc/order.class.php:458 inc/order.class.php:2213 msgid "Order is late" msgstr "" -#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1225 #: inc/notificationtargetorder.class.php:467 #: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "" -#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1275 #: inc/notificationtargetorder.class.php:469 #: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" @@ -371,128 +371,140 @@ msgid "" "The order date must be within the dates entered for the selected budget." msgstr "" -#: inc/order.class.php:1063 inc/order_item.class.php:439 -#: inc/order_item.class.php:518 inc/config.class.php:112 +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "" + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 #: ajax/referencedetail.php:64 msgid "No VAT" msgstr "" -#: inc/order.class.php:1096 +#: inc/order.class.php:1108 msgid "Due date overtaken" msgstr "" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 msgid "Price tax free" msgstr "" -#: inc/order.class.php:1296 inc/order.class.php:1872 +#: inc/order.class.php:1321 inc/order.class.php:1897 msgid "Price tax free with postage" msgstr "" -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 inc/order_item.class.php:1027 -#: inc/order_item.class.php:1416 +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 msgid "Price ATI" msgstr "" -#: inc/order.class.php:1534 +#: inc/order.class.php:1559 msgid "Validation process" msgstr "" -#: inc/order.class.php:1553 +#: inc/order.class.php:1578 msgid "Do you really want to cancel this order ? This option is irreversible !" msgstr "" -#: inc/order.class.php:1560 +#: inc/order.class.php:1585 msgid "Validate order" msgstr "" -#: inc/order.class.php:1566 +#: inc/order.class.php:1591 msgid "Do you want to cancel the validation approval ?" msgstr "" -#: inc/order.class.php:1568 +#: inc/order.class.php:1593 msgid "Cancel ask for validation" msgstr "" -#: inc/order.class.php:1574 +#: inc/order.class.php:1599 msgid "Ask for validation" msgstr "" -#: inc/order.class.php:1580 +#: inc/order.class.php:1605 msgid "Do you really want to edit the order ?" msgstr "" -#: inc/order.class.php:1582 +#: inc/order.class.php:1607 msgid "Edit order" msgstr "" -#: inc/order.class.php:1590 +#: inc/order.class.php:1615 msgid "Thanks to add at least one equipment on your order." msgstr "" -#: inc/order.class.php:1639 +#: inc/order.class.php:1664 msgid "Thanks to select a model into your preferences" msgstr "" -#: inc/order.class.php:1681 +#: inc/order.class.php:1706 msgid "Invoice address" msgstr "" -#: inc/order.class.php:1716 +#: inc/order.class.php:1741 msgid "Delivery address" msgstr "" -#: inc/order.class.php:1726 +#: inc/order.class.php:1751 msgid "The" msgstr "" -#: inc/order.class.php:1728 +#: inc/order.class.php:1753 msgid "Issuer order" msgstr "" -#: inc/order.class.php:1746 +#: inc/order.class.php:1771 msgid "Recipient" msgstr "" -#: inc/order.class.php:1749 +#: inc/order.class.php:1774 msgid "Designation" msgstr "" -#: inc/order.class.php:1751 +#: inc/order.class.php:1776 msgid "Unit price" msgstr "" -#: inc/order.class.php:1753 +#: inc/order.class.php:1778 msgid "Discount rate" msgstr "" -#: inc/order.class.php:1754 +#: inc/order.class.php:1779 msgid "Sum tax free" msgstr "" -#: inc/order.class.php:1881 +#: inc/order.class.php:1906 msgid "€" msgstr "" -#: inc/order.class.php:1882 +#: inc/order.class.php:1907 msgid "Signature of issuing order" msgstr "" -#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/order.class.php:1985 inc/reference.class.php:373 #: inc/reference.class.php:758 msgid "Linked orders" msgstr "" -#: inc/order.class.php:1994 +#: inc/order.class.php:2019 msgid "Unlink" msgstr "" -#: inc/order.class.php:2134 +#: inc/order.class.php:2159 msgid "Total orders related with this budget is greater than its value." msgstr "" -#: inc/order.class.php:2139 +#: inc/order.class.php:2164 msgid "Total orders related with this budget is equal to its value." msgstr "" @@ -528,24 +540,24 @@ msgstr "" msgid "Editor of validation" msgstr "" -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 msgid "Order item" msgstr "" #: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 #: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 #: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "" -#: inc/order_item.class.php:160 inc/order_item.class.php:470 +#: inc/order_item.class.php:160 inc/order_item.class.php:471 msgid "Product name" msgstr "" -#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/order_item.class.php:168 inc/order_item.class.php:483 #: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 #: inc/reference.class.php:195 msgid "Manufacturer's product reference" @@ -563,7 +575,7 @@ msgstr "" msgid "Add to the order from the catalog" msgstr "" -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 #: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 #: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 #: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 @@ -571,60 +583,60 @@ msgstr "" msgid "Product reference" msgstr "" -#: inc/order_item.class.php:452 inc/order_item.class.php:587 +#: inc/order_item.class.php:453 inc/order_item.class.php:589 msgid "Please select a supplier" msgstr "" -#: inc/order_item.class.php:465 +#: inc/order_item.class.php:466 msgid "Add to the order free items" msgstr "" -#: inc/order_item.class.php:479 +#: inc/order_item.class.php:480 msgid "Add the reference" msgstr "" -#: inc/order_item.class.php:608 inc/order_item.class.php:621 +#: inc/order_item.class.php:610 inc/order_item.class.php:623 msgid "An analytic nature is mandatory !" msgstr "" -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 #: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 msgid "No item to take delivery of" msgstr "" -#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/order_item.class.php:802 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" msgstr "" -#: inc/order_item.class.php:808 inc/order_item.class.php:1000 -#: inc/order_item.class.php:1202 +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 msgid "Do you really want to update this item ?" msgstr "" -#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" msgstr "" -#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 msgid "Discounted price tax free" msgstr "" -#: inc/order_item.class.php:1295 +#: inc/order_item.class.php:1297 msgid "Order informations" msgstr "" -#: inc/order_item.class.php:1471 +#: inc/order_item.class.php:1473 msgid "Payment status" msgstr "" -#: inc/order_item.class.php:1484 +#: inc/order_item.class.php:1486 msgid "Paid value" msgstr "" -#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 #: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 #: inc/reception.class.php:248 msgid "Bill" @@ -846,17 +858,17 @@ msgstr "" msgid "Add billing details to item" msgstr "" -#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/config.class.php:300 inc/config.class.php:789 #: inc/reception.class.php:567 msgid "Default name" msgstr "" -#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/config.class.php:307 inc/config.class.php:797 #: inc/reception.class.php:570 msgid "Default serial number" msgstr "" -#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/config.class.php:314 inc/config.class.php:805 #: inc/reception.class.php:573 msgid "Default inventory number" msgstr "" diff --git a/locales/pl_PL.mo b/locales/pl_PL.mo index b70b2ceb147a546b3017acae34c4bacadfb22f5f..adc55d7e5f87ceff42252118a165cd8acf416ea8 100644 GIT binary patch delta 27 icmX>YbuenfMQJ`GLtO(iT|-j^Lt`rgi_Q0?lLP^WTnMlL delta 27 icmX>YbuenfMQJ`m3tdAaT|;vPLsKgQ;5?1~>$+g>rN^)VfFd5r69DKRmRj{g_>Q zJP=}wseszU8IY)&TBsyi3N`LVD8ui8GH?e}ay<+6-Fr|G`V*96N1+_bA)||7|C5Qo zCOnM}g?=8?9xs7f@FvL5+{eR$PeB>>Hq_P}f%4?vP>ytCG8s||wO{~h{A6gsi=ejX z3MdDzOH$EZt%dSrE97UM_1kax?L$y|*MT#tZ0-(~O!-ien+i40EU51nKsj_dlmV-t zBJluZcg&Me1|$zqk;NbQ9Y>%-r!dHaZcyz3P@yY_@_3Bjo(eVYJSYPeL)`~)C{OQ) z8vh{F_fJAC{367Wq0rCfVWUt)I}8=6nD;(uuBRf4Rzrnk6V!2f3@T|}g*os&pMQZG_XU&z9Z3Z3c^TB{ zxDZZ&tKmGDhRa|9N2U_4f{M@{7|{9ujEa(?m|i8tL?}z=L+xbVW&Inn^_#oeQDhG<7CL9H|ms4PGcmX^GF8ANx4TsX+4mIDKP|14?PKAXN zyki@L>fa7$!Q_4_x)}OQ^cD!fKD29~`sc&G@G_`{?|?FFE7U#E3|Yf`4YOf@TZMcz zL#Pn`9V)4^PV*KT2sN%4 zY70(<{ooYX4K9F1a4FQd)lgagAS{4;VQ-!PPpBxgUuQbFY`8CFP%%6iPV;F)d3Y7f zg7c8d9q1Nx7SeIlnSTapJLBj!^axU3%||Uo(bW2x|12nrRhp49H)AnW=v1yj12Q$v zHT)G~=gi}%3aN}iH)Lx3MTJ)(3pFB@D4L0;qXJZjl2`M%2(>Qf(>NEM*{btm>Q|sW z=%+|YrBd&~gdkgNeunm=*AP2)yxi^A2(o#?uP>JW&(e4jU61squ?gv{wv;tgl+iX) zv^JvdsCBuEMkVTxCL-mFit_1FRVX(h<;4LtCUd9N54etk;-iJ9C`@-5WR>lK?~7&XfLWoBhYeGjYfL@dlyAdI%c4k(KOUj#!|T! zJ%~mll~NDKpLbH5gC?O}NM#tRL8qhZ&}Ha#q;if2lb=gv3wputIG8%pV|HQCZHy$W zS|^wYyAe|z^xAQ+ovO@@&JJ0LrH&PI>YSJp2|A`aM30;4bYmeWX4S4gLcBMcbB9d%AGRFZo7&Vj#~|OBxEPtSd&#`sw0*ivFn=>;h+_<6OA!uZ!;qG zac&uSW5xXI^d%#^CGLcEu z6r5Q|k7I@0U}J+5NyIHX6mmjV*q=UiYeD6FCt;nqyxrRAwzkx2cw3LH6Ni6m)C&b` z+V#ln((zr4H_sk)AggYH+<%x|WG-m1{dBm(&N!dmNru=~dYk1gj)j*n zL31o@7o~14sVMidf`Q5lZ=gBer^sdcQkMq$rVf-mQaDErGf~uy$J0AkI`t$@7$>53 z9Dn1bp^EPr;YKyYwd~l6#_&oKNeLCTV|FH`)|8buA1!sW7kXY~;+YAb6>&4U(paC~ z91GL$w1j5r<>AHQ7!mcdzO9=le&uGeZcA`TmmYK6Om~WHTguiL&$*eF8ofH!MOaw^qw26; z)KOCCZ)OnD^LTQjoic3psrhkdhjOH zgPKqe*pI5r3#bZwfaUlnUW28KM*Ta{$)@oJ4bAL3)PvHJy&2@9N?nc=!%Ri~nK^uD ziIyVwG_|O`(1^M&j2h_Mr~#eC^YClb-}O%MDw32!{WX&S9hyN24#CN&8&;!AU61GD z!>9)yLT$PZ^y4Yy-sUXou8O3gCX$U>ief%Akjqfdn~S=B(Ln0&r||$CT9bXK8ML8F z{|0I%AE5^HwLOobzB(U>TB>~1W*vvxJCjhATY|dJa@6(fQ4`vW8o*(P230r5kx7^? z)ByfMjW~{J>O2iqx{;_E6x;I(ROPNf&3K+YUxK=B4Qc?JP_OMC)I^V=u6It*&<(m! z5Bdo;lSqcE2gacK6Hp`1M2cVvP)jil^`2Lu-jZ6>W?qN7ehc!?JjRC}_$sQRCy?(Q z^A!z09lxMTnZ&P<29%DvQ2;fQ0@NRtp*GXisF|%m4QK;$3)70s!5qN}_!+9QX>1_f zHy?GsQcTtRKa+-Tv;Z~Jm8g+7U>-JOE`ErS7{PQ$V=tVHMK~5~aU#BoDz$!XRKaZ2 z!1GY0FGt;f8pb*_DrsmlRHGhHi@Kl=Re`OjJ<^Q2;dAK6*H8og!k+(vDsd8DYH6~p zW04}5naCW>LR5t|prgiK8hY^SxZ1~iiy54k^Dd6SY8-{zQ2obH75D))u=D7gjv*Y0 z^{D>mQE$O^V%vW&suE48ioJpw@VoZ=Q^@u(|6sJ<{|vUc zMifA;?F4&%75X`^w*4DW18G6c=qPHYC$I!RLoMaNTyLP+*u5mEy)Ym3_p4A#x*Ici zzIlm;A3ITh@UOiforThcA=LLXPy<|qD)m~_UTHy9;6>E+$58j_!Z8>z%KN?uHGm52 zhc)Qv2V^CUC~QE@Y%8iF&DJpL!ADUK_#CxY{=gVa4SJQxK>b}V`f(C!&s3rQemUyF zo00u!_5`WFO85>Pn#so)i>FaH`V+Nwv20cLmB~Q$Pea{c9%_@Ww;sTYIe!QBey8Ml zdms-rkTO*NwWt9t%cK5!Km#3m@Z+fW`4EQiFO0;zeD4=9gx7L@Gfu*{uoPnoygg8X z{W-5gy)})f`@U@ZJ5UukiQ3HHIyCfvXckH%>Vqn22CCG`}{{8!XK`Y;>qnUU5C)N`F1X!vN<6V2!`q8aK4dvt%^#^=-aycK(qONq+A ziA0cEqJ!$2EyPc5AUa+o_mHJJvB#Zy|6k&SSJBKR&)YA0;En1&Uf@&9qP69B$~;GA zkTZ{|_T&PqHnNUqJi7lQQj>z4g|@F*?>`kXcaQ|z$&#A`WUDe3Zjk3vj2am zj6KIn8rP5;$qu3=x`o_JW)mG+&S~TzxsT_YyT~PEJJIntnNAwXWHNb;bZ8gr z4ag)7M8~ZpuDiu6hHJ?HGLy_FiKLBaAFU=joQnpf{%p<$VG40qbHU2VKSDiCrM;E={c_KY2d>o z&7Kd#65AF#&uE8eKSUlSFOw*;pXhi*`k&HSts3lkqif, 2017 # Arthur Ramos Schaefer , 2017 # Daniel Berton , 2016 +# Diego Nobre , 2021 # Henrique Ferraz , 2016 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-05 10:06+0000\n" -"PO-Revision-Date: 2018-12-17 15:03+0000\n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" +"PO-Revision-Date: 2021-06-15 13:08+0000\n" "Last-Translator: Cédric Anne\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/teclib/glpi-plugin-order/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -27,28 +28,28 @@ msgstr "Instalação ou upgrade do plugin" #: hook.php:88 msgid "Can't create folder" -msgstr "" +msgstr "Não é possível criar pasta" #: hook.php:95 #, php-format msgid "Cannot copy file %1$s to %2$s" -msgstr "" +msgstr "Não é possível copiar o arquivo %1$s para %2$s" -#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 -#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 -#: inc/order_item.class.php:370 inc/order_item.class.php:477 -#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 #: inc/ordertax.class.php:41 msgid "VAT" msgstr "VAT" -#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 -#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 msgid "Payment conditions" msgstr "Formas de pagamento" -#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 -#: inc/order.class.php:1966 inc/orderstate.class.php:49 +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 msgid "Order status" msgstr "Status da compra" @@ -62,7 +63,7 @@ msgstr "Outro tipo de item" msgid "Delivery status" msgstr "Status da entrega" -#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 #: inc/billstate.class.php:42 msgid "Bill status" msgstr "Status da fatura" @@ -71,14 +72,14 @@ msgstr "Status da fatura" msgid "Bill type" msgstr "Tipo de fatura" -#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 msgid "Analytic nature" -msgstr "" +msgstr "Natureza analítica" -#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 msgid "Account section" -msgstr "" +msgstr "Seção da conta" #: hook.php:150 front/order.form.php:417 front/preference.form.php:43 #: front/order.php:33 front/menu.php:63 front/config.form.php:41 @@ -86,25 +87,25 @@ msgstr "" #: inc/profile.class.php:170 inc/preference.class.php:269 #: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 #: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 -#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 #: inc/bill.class.php:594 msgid "Orders" msgstr "Ordens de compra" #: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 -#: inc/order.class.php:843 inc/order_item.class.php:1296 +#: inc/order.class.php:855 inc/order_item.class.php:1298 msgid "Order name" msgstr "Nome da ordem de compra" #: hook.php:250 report/orderdelivery/orderdelivery.php:68 -#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 msgid "Order number" msgstr "Número da ordem de compra" #: hook.php:400 inc/order_supplier.class.php:201 #: inc/surveysupplier.class.php:370 inc/order.class.php:77 -#: inc/order_item.class.php:749 inc/order_item.class.php:1364 -#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 #: inc/reception.class.php:290 msgid "Order" msgstr "Ordem de compra" @@ -116,7 +117,7 @@ msgstr "deliveryinfos_report_title" #: report/deliveryinfos/deliveryinfos.php:48 #: report/orderdelivery/orderdelivery.php:48 #: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 -#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 #: inc/notificationtargetorder.class.php:153 #: inc/notificationtargetorder.class.php:161 msgid "Date of order" @@ -125,7 +126,7 @@ msgstr "Data da ordem de compra" #: report/deliveryinfos/deliveryinfos.php:50 #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 -#: inc/order.class.php:952 +#: inc/order.class.php:964 msgid "Delivery location" msgstr "Local de entrega" @@ -142,7 +143,7 @@ msgid "orderdelivery_report_title" msgstr "orderdelivery_report_title" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 -#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 msgid "Estimated due date" msgstr "Data de vencimento aproximada" @@ -199,17 +200,17 @@ msgid "Add reference" msgstr "Adicionar referência" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order.class.php:1748 inc/order_item.class.php:368 -#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 #: inc/link.class.php:418 msgid "Quantity" msgstr "Quantidade" #: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 #: inc/order_item.class.php:123 inc/order_item.class.php:131 -#: inc/order_item.class.php:371 inc/order_item.class.php:478 -#: inc/order_item.class.php:802 inc/order_item.class.php:1025 -#: inc/order_item.class.php:1403 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 msgid "Discount (%)" msgstr "Desconto (%)" @@ -231,21 +232,21 @@ msgstr "Fornecedor para referência" msgid "Products references" msgstr "Referência de produtos" -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 msgid "Bills" msgstr "Faturas" -#: inc/preference.class.php:163 inc/order.class.php:1611 +#: inc/preference.class.php:163 inc/order.class.php:1636 msgid "Use this model" msgstr "Usar este modelo" -#: inc/preference.class.php:168 inc/order.class.php:1620 +#: inc/preference.class.php:168 inc/order.class.php:1645 msgid "Use this sign" msgstr "Usar este sinal" #: inc/referencefree.class.php:39 msgid "Reference free" -msgstr "" +msgstr "Referência livre" #: inc/order_supplier.class.php:293 msgid "Delivery statistics" @@ -304,7 +305,7 @@ msgstr "Categoria de documento" msgid "Document category prefix" msgstr "Prefixo de categoria de documento" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 msgid "Order Generation" msgstr "Geração de ordem de compra" @@ -317,7 +318,7 @@ msgstr "Pegar entrega do item" msgid "Order validation" msgstr "Validação de ordem de compra" -#: inc/order.class.php:273 inc/order.class.php:1554 +#: inc/order.class.php:273 inc/order.class.php:1579 msgid "Cancel order" msgstr "Cancelar ordem de compra" @@ -329,22 +330,22 @@ msgstr "Editar uma ordem de compra validada" msgid "Generate order without validation" msgstr "Gerar ordem de compra sem validação" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 msgid "Postage" msgstr "Postagem" -#: inc/order.class.php:458 inc/order.class.php:2188 +#: inc/order.class.php:458 inc/order.class.php:2213 msgid "Order is late" msgstr "Ordem de compra está atrasada" -#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1225 #: inc/notificationtargetorder.class.php:467 #: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Grupo remetente" -#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1275 #: inc/notificationtargetorder.class.php:469 #: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" @@ -352,7 +353,7 @@ msgstr "Grupo destinatário" #: inc/order.class.php:584 msgid "Account Section" -msgstr "" +msgstr "Seção da Conta" #: inc/order.class.php:636 msgid "Validation" @@ -368,136 +369,148 @@ msgstr "Um número de ordem de compra é obrigatório !" #: inc/order.class.php:693 inc/order.class.php:769 msgid "An account section is mandatory !" -msgstr "" +msgstr "Uma seção de conta é obrigatória!" #: inc/order.class.php:700 inc/order.class.php:763 msgid "" "The order date must be within the dates entered for the selected budget." msgstr "A data da ordem de compra deve estar entre as datas inseridas para o orçamento selecionado." -#: inc/order.class.php:1063 inc/order_item.class.php:439 -#: inc/order_item.class.php:518 inc/config.class.php:112 +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "" + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 #: ajax/referencedetail.php:64 msgid "No VAT" msgstr "Sem VAT" -#: inc/order.class.php:1096 +#: inc/order.class.php:1108 msgid "Due date overtaken" msgstr "Data de vencimento ultrapassada" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 msgid "Price tax free" msgstr "Preço sem impostos" -#: inc/order.class.php:1296 inc/order.class.php:1872 +#: inc/order.class.php:1321 inc/order.class.php:1897 msgid "Price tax free with postage" msgstr "Preço sem impostos com postagem" -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 inc/order_item.class.php:1027 -#: inc/order_item.class.php:1416 +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 msgid "Price ATI" msgstr "Preço ATI" -#: inc/order.class.php:1534 +#: inc/order.class.php:1559 msgid "Validation process" msgstr "Processo de validação" -#: inc/order.class.php:1553 +#: inc/order.class.php:1578 msgid "" "Do you really want to cancel this order ? This option is irreversible !" msgstr "Você tem certeza que quer cancelar essa ordem de compra? Essa opção é irreversível!" -#: inc/order.class.php:1560 +#: inc/order.class.php:1585 msgid "Validate order" msgstr "Validar ordem de compra" -#: inc/order.class.php:1566 +#: inc/order.class.php:1591 msgid "Do you want to cancel the validation approval ?" msgstr "Você tem certeza que quer cancelar a aprovação?" -#: inc/order.class.php:1568 +#: inc/order.class.php:1593 msgid "Cancel ask for validation" msgstr "Cancelar solicitação de validação" -#: inc/order.class.php:1574 +#: inc/order.class.php:1599 msgid "Ask for validation" msgstr "Solicitar validação" -#: inc/order.class.php:1580 +#: inc/order.class.php:1605 msgid "Do you really want to edit the order ?" msgstr "Você tem certeza que quer editar essa ordem de compra?" -#: inc/order.class.php:1582 +#: inc/order.class.php:1607 msgid "Edit order" msgstr "Editar ordem de compra" -#: inc/order.class.php:1590 +#: inc/order.class.php:1615 msgid "Thanks to add at least one equipment on your order." msgstr "Obrigado por adicionar pelo menos um equipamento a sua ordem de compra" -#: inc/order.class.php:1639 +#: inc/order.class.php:1664 msgid "Thanks to select a model into your preferences" msgstr "Obrigado por selecionar um modelo em suas preferências" -#: inc/order.class.php:1681 +#: inc/order.class.php:1706 msgid "Invoice address" msgstr "Endereço de Fatura" -#: inc/order.class.php:1716 +#: inc/order.class.php:1741 msgid "Delivery address" msgstr "Endereço de entrega" -#: inc/order.class.php:1726 +#: inc/order.class.php:1751 msgid "The" msgstr "O/A" -#: inc/order.class.php:1728 +#: inc/order.class.php:1753 msgid "Issuer order" msgstr "Ordem de emissão" -#: inc/order.class.php:1746 +#: inc/order.class.php:1771 msgid "Recipient" msgstr "Destinatário" -#: inc/order.class.php:1749 +#: inc/order.class.php:1774 msgid "Designation" msgstr "Designação" -#: inc/order.class.php:1751 +#: inc/order.class.php:1776 msgid "Unit price" msgstr "Preço unitário" -#: inc/order.class.php:1753 +#: inc/order.class.php:1778 msgid "Discount rate" msgstr "Taxa de desconto" -#: inc/order.class.php:1754 +#: inc/order.class.php:1779 msgid "Sum tax free" msgstr "Soma sem impostos" -#: inc/order.class.php:1881 +#: inc/order.class.php:1906 msgid "€" msgstr "R$ " -#: inc/order.class.php:1882 +#: inc/order.class.php:1907 msgid "Signature of issuing order" msgstr "Assinatura de ordem de emissão" -#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/order.class.php:1985 inc/reference.class.php:373 #: inc/reference.class.php:758 msgid "Linked orders" msgstr "Relacionar ordens" -#: inc/order.class.php:1994 +#: inc/order.class.php:2019 msgid "Unlink" msgstr "Desrelacionar" -#: inc/order.class.php:2134 +#: inc/order.class.php:2159 msgid "Total orders related with this budget is greater than its value." msgstr "Total de ordens de compra estão acima do valor deste orçamento." -#: inc/order.class.php:2139 +#: inc/order.class.php:2164 msgid "Total orders related with this budget is equal to its value." msgstr "Total de ordens de compra estão com mesmo valor deste orçamento." @@ -533,24 +546,24 @@ msgstr "Validação cancelada com sucesso" msgid "Editor of validation" msgstr "Editor de validação" -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 msgid "Order item" msgstr "Item de ordem de compra" #: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 #: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 #: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Preço unitário isento de impostos" -#: inc/order_item.class.php:160 inc/order_item.class.php:470 +#: inc/order_item.class.php:160 inc/order_item.class.php:471 msgid "Product name" -msgstr "" +msgstr "Nome do Produto" -#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/order_item.class.php:168 inc/order_item.class.php:483 #: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 #: inc/reference.class.php:195 msgid "Manufacturer's product reference" @@ -558,7 +571,7 @@ msgstr "Referência de produto do fabricante" #: inc/order_item.class.php:195 msgid "Analytic Nature" -msgstr "" +msgstr "Natureza Analítica" #: inc/order_item.class.php:253 msgid "Some fields cannont be modified because they belong to an order" @@ -566,9 +579,9 @@ msgstr "Alguns campos não podem ser editados pois petencem a outra ordem de com #: inc/order_item.class.php:358 msgid "Add to the order from the catalog" -msgstr "" +msgstr "Adicionar ao pedido do catálogo" -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 #: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 #: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 #: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 @@ -576,60 +589,60 @@ msgstr "" msgid "Product reference" msgstr "Referência de produto" -#: inc/order_item.class.php:452 inc/order_item.class.php:587 +#: inc/order_item.class.php:453 inc/order_item.class.php:589 msgid "Please select a supplier" msgstr "Selecione um fornecedor" -#: inc/order_item.class.php:465 +#: inc/order_item.class.php:466 msgid "Add to the order free items" -msgstr "" +msgstr "Adicionar itens grátis ao pedido" -#: inc/order_item.class.php:479 +#: inc/order_item.class.php:480 msgid "Add the reference" -msgstr "" +msgstr "Adicione a referência" -#: inc/order_item.class.php:608 inc/order_item.class.php:621 +#: inc/order_item.class.php:610 inc/order_item.class.php:623 msgid "An analytic nature is mandatory !" -msgstr "" +msgstr "Uma natureza analítica é obrigatória!" -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 #: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 msgid "No item to take delivery of" msgstr "Nenhum item para receber entrega" -#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/order_item.class.php:802 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" msgstr "Referência de fabricante" -#: inc/order_item.class.php:808 inc/order_item.class.php:1000 -#: inc/order_item.class.php:1202 +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 msgid "Do you really want to update this item ?" msgstr "Você tem certeza que quer atualizar esse item?" -#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" msgstr "Você realmente quer excluir estes detalhes? Itens entregues não serão relacionados a ordem de serviço!" -#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 msgid "Discounted price tax free" msgstr "Preço descontado sem impostos" -#: inc/order_item.class.php:1295 +#: inc/order_item.class.php:1297 msgid "Order informations" msgstr "Informações de ordem de compra" -#: inc/order_item.class.php:1471 +#: inc/order_item.class.php:1473 msgid "Payment status" msgstr "Status do pagamento" -#: inc/order_item.class.php:1484 +#: inc/order_item.class.php:1486 msgid "Paid value" msgstr "Valor pag" -#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 #: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 #: inc/reception.class.php:248 msgid "Bill" @@ -805,19 +818,19 @@ msgstr "Transmitir mudanças no orçamento para ativos relacionados" #: inc/config.class.php:212 msgid "Display account section on order form" -msgstr "" +msgstr "Exibir seção da conta no formulário de pedido" #: inc/config.class.php:219 msgid "Set account section as mandatory on order form" -msgstr "" +msgstr "Definir a seção da conta como obrigatória no formulário de pedido" #: inc/config.class.php:226 msgid "Use free references" -msgstr "" +msgstr "Use referências livres" #: inc/config.class.php:233 msgid "Rename documents added in order" -msgstr "" +msgstr "Renomear documentos adicionados no pedido" #: inc/config.class.php:241 msgid "Automatic actions when delivery" @@ -825,11 +838,11 @@ msgstr "Ações automáticas na entrega" #: inc/config.class.php:250 msgid "Display analytic nature on item form" -msgstr "" +msgstr "Exibir a natureza analítica no formulário do item" #: inc/config.class.php:257 msgid "Set analytic nature as mandatory on item form" -msgstr "" +msgstr "Definir a natureza analítica como obrigatória no formulário do item" #: inc/config.class.php:264 inc/reception.class.php:561 msgid "Enable automatic generation" @@ -851,17 +864,17 @@ msgstr "Adicionar localização de ordem de compra ao item" msgid "Add billing details to item" msgstr "Adicionar detalhes de conta ao item" -#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/config.class.php:300 inc/config.class.php:789 #: inc/reception.class.php:567 msgid "Default name" msgstr "Nome padrão" -#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/config.class.php:307 inc/config.class.php:797 #: inc/reception.class.php:570 msgid "Default serial number" msgstr "Número de série padrão" -#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/config.class.php:314 inc/config.class.php:805 #: inc/reception.class.php:573 msgid "Default inventory number" msgstr "Número de inventário padrão" diff --git a/locales/pt_PT.mo b/locales/pt_PT.mo index 20e7a15f2a45b710848406aa83943d842e4996cc..be6549756577ec3cdcdde2b4a29e25322bacfd0d 100644 GIT binary patch delta 1742 zcmXZcTS!zv9LMo7({j^H&DPblW7&0E-L>3S%Pb0|&7ic1AS$V#i)rdoNYv>@CG=2G zJ(va-L_Tz(*pR4{B8Up26s73$P*71qFI^rY`u^G@i=UY}XJ-EMpa1Ti*2}FoIuh+8 zamFkyFoutLJk=N<4r4mzOfzO27UCSNz?s;B`Phl$vDa|`r_ld`7N$%$rWy;8kJ-n+ z8F&fx-m~e(HW@U&GayIuG!wJXg@vd9N^uf~Q3340v3Lgc-X%=LYnX~rOu(-=eJES6vw=HU<~<4^QpJiF^ka&Z*;Q5%PFG}fX{wBC7MkGh%& zDuZp9i|wcYdN3L7Cr)Ds_2NfVE&M<~W>XN#$Z}LB_G1NJ#dSE0l#8h9pMV=)e9n|vB649rK}{W7$0Bj(^i%)$K1{;5PX81BuOXsV zrn1nDUet+~p!QjV%J62)Vt;d(h88@JWZU$hGVl>KF^S_V)j6oE2x2O(Lt-3{vk}mb7(8FD>TMpAFBTxC*vp72CliW1#(a)_9EqB7Nf4D z0n@P+_5Mkx--$ZN4g7y~sH^P5416`0{AjDAPW_XJ}nFF@5mDQe%UAo*7+HZqWjO{f5lqfT@k`O2FIs2cf( zs^+A56cl=~5*yLN+qeveP*;#2ifvSmT7M1dYq--HZ?kDA;x5OVSV8|GYT@`&zA6|- zuGds!E!r5yeq4chWw8M3QR}s#uCN_-;(O@Er>N9_KpoKjMZ==un$KqFMb$zPj=_cK z!LZZcf)@SVs0B}>YM~p);~-AJuTFo&g4p|R)bB(HmC+5zx-N5qhBm%<%ad}z9Via? z{6Sx!#0tzQ^M|~C{#?~{EfL@9=DLQK`npJCbD6c|VfU8i?VGK|4Gmjwy(xI-{s+0{ Bz|#N# delta 1762 zcmXZce@vBC9LMqRov3jEMSfk-z(=!);BvWFuU?S6hFH^}7Svif(K|(VCknez>ehTL zwOr1*R{og6)*sQTKS*Q5*6NR_wQl2&N>*cY)Yeibv#t4uZr1eu@p;%CuXE0Go^!tE zd%pL6eDJG-7YFCLX9H%fE6n)Vl}F9O7r&K6Z+KkK;IM-k;UxS}~0rMrApcVjTvt1rcr|6w!MJYn_>?n1pc zf)8UB*W*>cUtR01--?ZlKZlF(IO+iBT^e~bKE*hWVHM6|J_gyf0z;@PiQ;^0MQz-M z58-aqiTeEKhf!B^9F@T#ti%yi0F#)H?u_4;Z}Alj z)SFQ@wgq*kZz7Lu7|ZZ7D)l!|f#$P_uCf$4m}_ww1q?ioy8Er@U_UOw53n3BVi2>a zR8L_p{_FSe;)5C@YGtYpLzqOJ_+`{SX;g;yV>$cV85&yfb0q6FiORqo)QgoIU#X6u zu3|GT#GR;s2mJAOQSW_(I%(E_{wpew>!<)N=4Gk`7qh=5Xi%8ei8|36n1gTQlXwDE z-C5L~{*21Z-&lwNDpdg%p~l0$n^39lMg@Ef_5NvGgrA|S$iAkr0H;v>zi>I;MQu>E z%3C0UI&l&y6MG4DC2wI7olpGJKRU4MK?4MjZW z`vWHF|BhNX)JS%)3%PFFj-B{EZpLfajV-?`(@4E{94rSL>nrj8D!m{ z4bsrYUyfE3913lWHijEw;aI|n#+#xmYa93rwx#+9!Y^i0`}%uQ1HG9hr{lG>)85_F h>omWf?(5FPnbbG1e)rx~x~G0e@7{HzKdzVw-3Q$`$uIx_ diff --git a/locales/pt_PT.po b/locales/pt_PT.po index 6ff05df056..f0a119138b 100644 --- a/locales/pt_PT.po +++ b/locales/pt_PT.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-05 10:06+0000\n" -"PO-Revision-Date: 2019-02-28 15:13+0000\n" -"Last-Translator: Rui Melo \n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" +"PO-Revision-Date: 2021-06-15 13:08+0000\n" +"Last-Translator: Cédric Anne\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/teclib/glpi-plugin-order/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,21 +30,21 @@ msgstr "Não é possível criar uma pasta" msgid "Cannot copy file %1$s to %2$s" msgstr "Não é possível copiar ficheiros %1$s para %2$s" -#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 -#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 -#: inc/order_item.class.php:370 inc/order_item.class.php:477 -#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 #: inc/ordertax.class.php:41 msgid "VAT" msgstr "IVA" -#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 -#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 msgid "Payment conditions" msgstr "Condições de pagamento" -#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 -#: inc/order.class.php:1966 inc/orderstate.class.php:49 +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 msgid "Order status" msgstr "Pedido de status" @@ -58,7 +58,7 @@ msgstr "Outro tipo de item" msgid "Delivery status" msgstr "Status de entrega" -#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 #: inc/billstate.class.php:42 msgid "Bill status" msgstr "Status de conta" @@ -67,12 +67,12 @@ msgstr "Status de conta" msgid "Bill type" msgstr "Tipo de conta" -#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 msgid "Analytic nature" msgstr "Natureza analítica" -#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 msgid "Account section" msgstr "Seção da conta" @@ -82,25 +82,25 @@ msgstr "Seção da conta" #: inc/profile.class.php:170 inc/preference.class.php:269 #: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 #: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 -#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 #: inc/bill.class.php:594 msgid "Orders" msgstr "Encomendas" #: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 -#: inc/order.class.php:843 inc/order_item.class.php:1296 +#: inc/order.class.php:855 inc/order_item.class.php:1298 msgid "Order name" msgstr "Nome do pedido" #: hook.php:250 report/orderdelivery/orderdelivery.php:68 -#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 msgid "Order number" msgstr "Número de requesição" #: hook.php:400 inc/order_supplier.class.php:201 #: inc/surveysupplier.class.php:370 inc/order.class.php:77 -#: inc/order_item.class.php:749 inc/order_item.class.php:1364 -#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 #: inc/reception.class.php:290 msgid "Order" msgstr "Pedido" @@ -112,7 +112,7 @@ msgstr "informaçõesdeentrega_relatório_título" #: report/deliveryinfos/deliveryinfos.php:48 #: report/orderdelivery/orderdelivery.php:48 #: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 -#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 #: inc/notificationtargetorder.class.php:153 #: inc/notificationtargetorder.class.php:161 msgid "Date of order" @@ -121,7 +121,7 @@ msgstr "Data do pedido" #: report/deliveryinfos/deliveryinfos.php:50 #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 -#: inc/order.class.php:952 +#: inc/order.class.php:964 msgid "Delivery location" msgstr "Local de entrega" @@ -138,7 +138,7 @@ msgid "orderdelivery_report_title" msgstr "entrega_relatorio_título" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 -#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 msgid "Estimated due date" msgstr "Data de vencimento estimada" @@ -195,17 +195,17 @@ msgid "Add reference" msgstr "Adicionar referencia" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order.class.php:1748 inc/order_item.class.php:368 -#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 #: inc/link.class.php:418 msgid "Quantity" msgstr "Quantidade" #: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 #: inc/order_item.class.php:123 inc/order_item.class.php:131 -#: inc/order_item.class.php:371 inc/order_item.class.php:478 -#: inc/order_item.class.php:802 inc/order_item.class.php:1025 -#: inc/order_item.class.php:1403 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 msgid "Discount (%)" msgstr "Desconto (%)" @@ -227,15 +227,15 @@ msgstr "Fornecedor para a referência" msgid "Products references" msgstr "Referências dos produtos" -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 msgid "Bills" msgstr "Contas" -#: inc/preference.class.php:163 inc/order.class.php:1611 +#: inc/preference.class.php:163 inc/order.class.php:1636 msgid "Use this model" msgstr "Utilize este modelo" -#: inc/preference.class.php:168 inc/order.class.php:1620 +#: inc/preference.class.php:168 inc/order.class.php:1645 msgid "Use this sign" msgstr "Utilize este sinal" @@ -300,7 +300,7 @@ msgstr "Categoria do documento" msgid "Document category prefix" msgstr "Prefixo da categoria do documento" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 msgid "Order Generation" msgstr "Geração de pedidos" @@ -313,7 +313,7 @@ msgstr "Entrega de itens" msgid "Order validation" msgstr "Validação do pedido" -#: inc/order.class.php:273 inc/order.class.php:1554 +#: inc/order.class.php:273 inc/order.class.php:1579 msgid "Cancel order" msgstr "Cancelar pedido" @@ -325,22 +325,22 @@ msgstr "Editar um pedido validada" msgid "Generate order without validation" msgstr "Gerar pedido sem validação" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 msgid "Postage" msgstr "Envio" -#: inc/order.class.php:458 inc/order.class.php:2188 +#: inc/order.class.php:458 inc/order.class.php:2213 msgid "Order is late" msgstr "Pedido atrasado" -#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1225 #: inc/notificationtargetorder.class.php:467 #: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Grupo de autores" -#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1275 #: inc/notificationtargetorder.class.php:469 #: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" @@ -371,129 +371,141 @@ msgid "" "The order date must be within the dates entered for the selected budget." msgstr "A data da ordem deve estar dentro das datas entradas para o orçamento selecionado." -#: inc/order.class.php:1063 inc/order_item.class.php:439 -#: inc/order_item.class.php:518 inc/config.class.php:112 +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "" + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 #: ajax/referencedetail.php:64 msgid "No VAT" msgstr "IVA não" -#: inc/order.class.php:1096 +#: inc/order.class.php:1108 msgid "Due date overtaken" msgstr "Data de vencimento ultrapassada" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 msgid "Price tax free" msgstr "Preço livre de impostos" -#: inc/order.class.php:1296 inc/order.class.php:1872 +#: inc/order.class.php:1321 inc/order.class.php:1897 msgid "Price tax free with postage" msgstr "Preço isento de impostos com portes de envio" -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 inc/order_item.class.php:1027 -#: inc/order_item.class.php:1416 +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 msgid "Price ATI" msgstr "Preço ATI" -#: inc/order.class.php:1534 +#: inc/order.class.php:1559 msgid "Validation process" msgstr "Processo de validação" -#: inc/order.class.php:1553 +#: inc/order.class.php:1578 msgid "" "Do you really want to cancel this order ? This option is irreversible !" msgstr "Quer mesmo cancelar este pedido? Esta opção é irreversível!" -#: inc/order.class.php:1560 +#: inc/order.class.php:1585 msgid "Validate order" msgstr "Validar pedido" -#: inc/order.class.php:1566 +#: inc/order.class.php:1591 msgid "Do you want to cancel the validation approval ?" msgstr "Deseja cancelar a aprovação de validação?" -#: inc/order.class.php:1568 +#: inc/order.class.php:1593 msgid "Cancel ask for validation" msgstr "Cancelar o pedido de validação" -#: inc/order.class.php:1574 +#: inc/order.class.php:1599 msgid "Ask for validation" msgstr "Solicitar validação" -#: inc/order.class.php:1580 +#: inc/order.class.php:1605 msgid "Do you really want to edit the order ?" msgstr "Você realmente quer editar o pedido?" -#: inc/order.class.php:1582 +#: inc/order.class.php:1607 msgid "Edit order" msgstr "Editar pedido" -#: inc/order.class.php:1590 +#: inc/order.class.php:1615 msgid "Thanks to add at least one equipment on your order." msgstr "Obrigado por adicionar pelo menos um equipamento ao seu pedido." -#: inc/order.class.php:1639 +#: inc/order.class.php:1664 msgid "Thanks to select a model into your preferences" msgstr "Obrigado por seleccionar um modelo de acordo com as suas preferências" -#: inc/order.class.php:1681 +#: inc/order.class.php:1706 msgid "Invoice address" msgstr "Endereço da fatura" -#: inc/order.class.php:1716 +#: inc/order.class.php:1741 msgid "Delivery address" msgstr "Endereço de entrega" -#: inc/order.class.php:1726 +#: inc/order.class.php:1751 msgid "The" msgstr "A" -#: inc/order.class.php:1728 +#: inc/order.class.php:1753 msgid "Issuer order" msgstr "Pedido de emissão" -#: inc/order.class.php:1746 +#: inc/order.class.php:1771 msgid "Recipient" msgstr "Destinatário" -#: inc/order.class.php:1749 +#: inc/order.class.php:1774 msgid "Designation" msgstr "Designação" -#: inc/order.class.php:1751 +#: inc/order.class.php:1776 msgid "Unit price" msgstr "Preço unitário" -#: inc/order.class.php:1753 +#: inc/order.class.php:1778 msgid "Discount rate" msgstr "Taxa de desconto" -#: inc/order.class.php:1754 +#: inc/order.class.php:1779 msgid "Sum tax free" msgstr "Soma isenta de impostos" -#: inc/order.class.php:1881 +#: inc/order.class.php:1906 msgid "€" msgstr "€" -#: inc/order.class.php:1882 +#: inc/order.class.php:1907 msgid "Signature of issuing order" msgstr "Assinatura de pedido de emissão" -#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/order.class.php:1985 inc/reference.class.php:373 #: inc/reference.class.php:758 msgid "Linked orders" msgstr "Pedidos ligadas" -#: inc/order.class.php:1994 +#: inc/order.class.php:2019 msgid "Unlink" msgstr "Sem ligação" -#: inc/order.class.php:2134 +#: inc/order.class.php:2159 msgid "Total orders related with this budget is greater than its value." msgstr "O total de pedidos relacionadas com este orçamento é superior ao seu valor." -#: inc/order.class.php:2139 +#: inc/order.class.php:2164 msgid "Total orders related with this budget is equal to its value." msgstr "O total de pedidos relacionadas com este orçamento é igual ao seu valor." @@ -529,24 +541,24 @@ msgstr "Validação cancelada com êxito" msgid "Editor of validation" msgstr "Editor de validação" -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 msgid "Order item" msgstr "Item da encomenda" #: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 #: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 #: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Preço unitário livre de impostos" -#: inc/order_item.class.php:160 inc/order_item.class.php:470 +#: inc/order_item.class.php:160 inc/order_item.class.php:471 msgid "Product name" msgstr "Nome do produto" -#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/order_item.class.php:168 inc/order_item.class.php:483 #: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 #: inc/reference.class.php:195 msgid "Manufacturer's product reference" @@ -564,7 +576,7 @@ msgstr "Alguns campos não podem ser modificados porque pertencem a uma encomend msgid "Add to the order from the catalog" msgstr "Adicionar ao pedido do catálogo" -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 #: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 #: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 #: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 @@ -572,60 +584,60 @@ msgstr "Adicionar ao pedido do catálogo" msgid "Product reference" msgstr "Referência do produto" -#: inc/order_item.class.php:452 inc/order_item.class.php:587 +#: inc/order_item.class.php:453 inc/order_item.class.php:589 msgid "Please select a supplier" msgstr "Selecione um fornecedor" -#: inc/order_item.class.php:465 +#: inc/order_item.class.php:466 msgid "Add to the order free items" msgstr "Adicionar ao pedido itens gratuitos" -#: inc/order_item.class.php:479 +#: inc/order_item.class.php:480 msgid "Add the reference" msgstr "Adicionar referencia" -#: inc/order_item.class.php:608 inc/order_item.class.php:621 +#: inc/order_item.class.php:610 inc/order_item.class.php:623 msgid "An analytic nature is mandatory !" msgstr "Uma natureza analítica é obrigatória!" -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 #: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 msgid "No item to take delivery of" msgstr "Nenhum item para receber entrega de" -#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/order_item.class.php:802 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" msgstr "Referência de fabricante" -#: inc/order_item.class.php:808 inc/order_item.class.php:1000 -#: inc/order_item.class.php:1202 +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 msgid "Do you really want to update this item ?" msgstr "Quer realmente atualizar este item?" -#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" msgstr "Quer realmente apagar esses detalhes? Os artigos entregues não serão ligados ao pedido!" -#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 msgid "Discounted price tax free" msgstr "Preço descontado isento de impostos" -#: inc/order_item.class.php:1295 +#: inc/order_item.class.php:1297 msgid "Order informations" msgstr "Informações sobre a encomenda" -#: inc/order_item.class.php:1471 +#: inc/order_item.class.php:1473 msgid "Payment status" msgstr "Status do pagamento" -#: inc/order_item.class.php:1484 +#: inc/order_item.class.php:1486 msgid "Paid value" msgstr "Valor pago" -#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 #: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 #: inc/reception.class.php:248 msgid "Bill" @@ -847,17 +859,17 @@ msgstr "Adicionar local do pedido ao item" msgid "Add billing details to item" msgstr "Adicionar detalhes de faturamento ao item" -#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/config.class.php:300 inc/config.class.php:789 #: inc/reception.class.php:567 msgid "Default name" msgstr "Nome padrão" -#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/config.class.php:307 inc/config.class.php:797 #: inc/reception.class.php:570 msgid "Default serial number" msgstr "Número de série padrão" -#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/config.class.php:314 inc/config.class.php:805 #: inc/reception.class.php:573 msgid "Default inventory number" msgstr "Número de inventário padrão" diff --git a/locales/ro_RO.mo b/locales/ro_RO.mo index a01da67c0937581b2438878ba563403d995003ec..b0766764b5212aa1ee8345a242407bf7e772df6d 100644 GIT binary patch delta 27 icmX@fcam>I9t)q5p{{|MuA!-dp|O>L#pW88vrGVPwFi&@ delta 27 icmX@fcam>I9t)qLg|4BIuA#Ytp{bRD@#Y$qvrGVQ00)u) diff --git a/locales/ro_RO.po b/locales/ro_RO.po index 87a246b98d..f1cde83298 100644 --- a/locales/ro_RO.po +++ b/locales/ro_RO.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-05 10:06+0000\n" -"PO-Revision-Date: 2018-12-17 15:03+0000\n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" +"PO-Revision-Date: 2021-06-15 13:08+0000\n" "Last-Translator: Cédric Anne\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/teclib/glpi-plugin-order/language/ro_RO/)\n" "MIME-Version: 1.0\n" @@ -31,21 +31,21 @@ msgstr "" msgid "Cannot copy file %1$s to %2$s" msgstr "" -#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 -#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 -#: inc/order_item.class.php:370 inc/order_item.class.php:477 -#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 #: inc/ordertax.class.php:41 msgid "VAT" msgstr "TVA" -#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 -#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 msgid "Payment conditions" msgstr "Conditii plata" -#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 -#: inc/order.class.php:1966 inc/orderstate.class.php:49 +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 msgid "Order status" msgstr "Status Comanda" @@ -59,7 +59,7 @@ msgstr "Alt tip al elementului" msgid "Delivery status" msgstr "Status Livrare" -#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 #: inc/billstate.class.php:42 msgid "Bill status" msgstr "Status Factura" @@ -68,12 +68,12 @@ msgstr "Status Factura" msgid "Bill type" msgstr "Tip Factura" -#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 msgid "Analytic nature" msgstr "" -#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 msgid "Account section" msgstr "" @@ -83,25 +83,25 @@ msgstr "" #: inc/profile.class.php:170 inc/preference.class.php:269 #: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 #: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 -#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 #: inc/bill.class.php:594 msgid "Orders" msgstr "Comenzi" #: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 -#: inc/order.class.php:843 inc/order_item.class.php:1296 +#: inc/order.class.php:855 inc/order_item.class.php:1298 msgid "Order name" msgstr "Nume Comanda" #: hook.php:250 report/orderdelivery/orderdelivery.php:68 -#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 msgid "Order number" msgstr "Numar Comanda" #: hook.php:400 inc/order_supplier.class.php:201 #: inc/surveysupplier.class.php:370 inc/order.class.php:77 -#: inc/order_item.class.php:749 inc/order_item.class.php:1364 -#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 #: inc/reception.class.php:290 msgid "Order" msgstr "Comanda" @@ -113,7 +113,7 @@ msgstr "" #: report/deliveryinfos/deliveryinfos.php:48 #: report/orderdelivery/orderdelivery.php:48 #: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 -#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 #: inc/notificationtargetorder.class.php:153 #: inc/notificationtargetorder.class.php:161 msgid "Date of order" @@ -122,7 +122,7 @@ msgstr "" #: report/deliveryinfos/deliveryinfos.php:50 #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 -#: inc/order.class.php:952 +#: inc/order.class.php:964 msgid "Delivery location" msgstr "" @@ -139,7 +139,7 @@ msgid "orderdelivery_report_title" msgstr "" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 -#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 msgid "Estimated due date" msgstr "" @@ -196,17 +196,17 @@ msgid "Add reference" msgstr "" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order.class.php:1748 inc/order_item.class.php:368 -#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 #: inc/link.class.php:418 msgid "Quantity" msgstr "Cantitate" #: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 #: inc/order_item.class.php:123 inc/order_item.class.php:131 -#: inc/order_item.class.php:371 inc/order_item.class.php:478 -#: inc/order_item.class.php:802 inc/order_item.class.php:1025 -#: inc/order_item.class.php:1403 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 msgid "Discount (%)" msgstr "Discount (%)" @@ -228,15 +228,15 @@ msgstr "" msgid "Products references" msgstr "Referinte Produse" -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 msgid "Bills" msgstr "Facturi" -#: inc/preference.class.php:163 inc/order.class.php:1611 +#: inc/preference.class.php:163 inc/order.class.php:1636 msgid "Use this model" msgstr "" -#: inc/preference.class.php:168 inc/order.class.php:1620 +#: inc/preference.class.php:168 inc/order.class.php:1645 msgid "Use this sign" msgstr "" @@ -301,7 +301,7 @@ msgstr "" msgid "Document category prefix" msgstr "" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 msgid "Order Generation" msgstr "" @@ -314,7 +314,7 @@ msgstr "" msgid "Order validation" msgstr "" -#: inc/order.class.php:273 inc/order.class.php:1554 +#: inc/order.class.php:273 inc/order.class.php:1579 msgid "Cancel order" msgstr "" @@ -326,22 +326,22 @@ msgstr "" msgid "Generate order without validation" msgstr "" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 msgid "Postage" msgstr "" -#: inc/order.class.php:458 inc/order.class.php:2188 +#: inc/order.class.php:458 inc/order.class.php:2213 msgid "Order is late" msgstr "" -#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1225 #: inc/notificationtargetorder.class.php:467 #: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "" -#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1275 #: inc/notificationtargetorder.class.php:469 #: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" @@ -372,129 +372,141 @@ msgid "" "The order date must be within the dates entered for the selected budget." msgstr "" -#: inc/order.class.php:1063 inc/order_item.class.php:439 -#: inc/order_item.class.php:518 inc/config.class.php:112 +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "" + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 #: ajax/referencedetail.php:64 msgid "No VAT" msgstr "Fara TVA" -#: inc/order.class.php:1096 +#: inc/order.class.php:1108 msgid "Due date overtaken" msgstr "" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 msgid "Price tax free" msgstr "" -#: inc/order.class.php:1296 inc/order.class.php:1872 +#: inc/order.class.php:1321 inc/order.class.php:1897 msgid "Price tax free with postage" msgstr "" -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 inc/order_item.class.php:1027 -#: inc/order_item.class.php:1416 +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 msgid "Price ATI" msgstr "" -#: inc/order.class.php:1534 +#: inc/order.class.php:1559 msgid "Validation process" msgstr "" -#: inc/order.class.php:1553 +#: inc/order.class.php:1578 msgid "" "Do you really want to cancel this order ? This option is irreversible !" msgstr "" -#: inc/order.class.php:1560 +#: inc/order.class.php:1585 msgid "Validate order" msgstr "" -#: inc/order.class.php:1566 +#: inc/order.class.php:1591 msgid "Do you want to cancel the validation approval ?" msgstr "" -#: inc/order.class.php:1568 +#: inc/order.class.php:1593 msgid "Cancel ask for validation" msgstr "" -#: inc/order.class.php:1574 +#: inc/order.class.php:1599 msgid "Ask for validation" msgstr "" -#: inc/order.class.php:1580 +#: inc/order.class.php:1605 msgid "Do you really want to edit the order ?" msgstr "" -#: inc/order.class.php:1582 +#: inc/order.class.php:1607 msgid "Edit order" msgstr "" -#: inc/order.class.php:1590 +#: inc/order.class.php:1615 msgid "Thanks to add at least one equipment on your order." msgstr "" -#: inc/order.class.php:1639 +#: inc/order.class.php:1664 msgid "Thanks to select a model into your preferences" msgstr "" -#: inc/order.class.php:1681 +#: inc/order.class.php:1706 msgid "Invoice address" msgstr "" -#: inc/order.class.php:1716 +#: inc/order.class.php:1741 msgid "Delivery address" msgstr "" -#: inc/order.class.php:1726 +#: inc/order.class.php:1751 msgid "The" msgstr "" -#: inc/order.class.php:1728 +#: inc/order.class.php:1753 msgid "Issuer order" msgstr "" -#: inc/order.class.php:1746 +#: inc/order.class.php:1771 msgid "Recipient" msgstr "" -#: inc/order.class.php:1749 +#: inc/order.class.php:1774 msgid "Designation" msgstr "" -#: inc/order.class.php:1751 +#: inc/order.class.php:1776 msgid "Unit price" msgstr "" -#: inc/order.class.php:1753 +#: inc/order.class.php:1778 msgid "Discount rate" msgstr "" -#: inc/order.class.php:1754 +#: inc/order.class.php:1779 msgid "Sum tax free" msgstr "" -#: inc/order.class.php:1881 +#: inc/order.class.php:1906 msgid "€" msgstr "€" -#: inc/order.class.php:1882 +#: inc/order.class.php:1907 msgid "Signature of issuing order" msgstr "" -#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/order.class.php:1985 inc/reference.class.php:373 #: inc/reference.class.php:758 msgid "Linked orders" msgstr "" -#: inc/order.class.php:1994 +#: inc/order.class.php:2019 msgid "Unlink" msgstr "" -#: inc/order.class.php:2134 +#: inc/order.class.php:2159 msgid "Total orders related with this budget is greater than its value." msgstr "" -#: inc/order.class.php:2139 +#: inc/order.class.php:2164 msgid "Total orders related with this budget is equal to its value." msgstr "" @@ -530,24 +542,24 @@ msgstr "" msgid "Editor of validation" msgstr "" -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 msgid "Order item" msgstr "" #: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 #: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 #: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "" -#: inc/order_item.class.php:160 inc/order_item.class.php:470 +#: inc/order_item.class.php:160 inc/order_item.class.php:471 msgid "Product name" msgstr "" -#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/order_item.class.php:168 inc/order_item.class.php:483 #: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 #: inc/reference.class.php:195 msgid "Manufacturer's product reference" @@ -565,7 +577,7 @@ msgstr "" msgid "Add to the order from the catalog" msgstr "" -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 #: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 #: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 #: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 @@ -573,60 +585,60 @@ msgstr "" msgid "Product reference" msgstr "Referinta Produs" -#: inc/order_item.class.php:452 inc/order_item.class.php:587 +#: inc/order_item.class.php:453 inc/order_item.class.php:589 msgid "Please select a supplier" msgstr "" -#: inc/order_item.class.php:465 +#: inc/order_item.class.php:466 msgid "Add to the order free items" msgstr "" -#: inc/order_item.class.php:479 +#: inc/order_item.class.php:480 msgid "Add the reference" msgstr "" -#: inc/order_item.class.php:608 inc/order_item.class.php:621 +#: inc/order_item.class.php:610 inc/order_item.class.php:623 msgid "An analytic nature is mandatory !" msgstr "" -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 #: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 msgid "No item to take delivery of" msgstr "" -#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/order_item.class.php:802 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" msgstr "" -#: inc/order_item.class.php:808 inc/order_item.class.php:1000 -#: inc/order_item.class.php:1202 +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 msgid "Do you really want to update this item ?" msgstr "" -#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" msgstr "" -#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 msgid "Discounted price tax free" msgstr "" -#: inc/order_item.class.php:1295 +#: inc/order_item.class.php:1297 msgid "Order informations" msgstr "" -#: inc/order_item.class.php:1471 +#: inc/order_item.class.php:1473 msgid "Payment status" msgstr "" -#: inc/order_item.class.php:1484 +#: inc/order_item.class.php:1486 msgid "Paid value" msgstr "" -#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 #: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 #: inc/reception.class.php:248 msgid "Bill" @@ -848,17 +860,17 @@ msgstr "" msgid "Add billing details to item" msgstr "" -#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/config.class.php:300 inc/config.class.php:789 #: inc/reception.class.php:567 msgid "Default name" msgstr "" -#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/config.class.php:307 inc/config.class.php:797 #: inc/reception.class.php:570 msgid "Default serial number" msgstr "" -#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/config.class.php:314 inc/config.class.php:805 #: inc/reception.class.php:573 msgid "Default inventory number" msgstr "" diff --git a/locales/ru_RU.mo b/locales/ru_RU.mo index 3484b698e655ad2bc014ef8d9d73ca5b37357504..52e41de0757a2235182e66924f4554cb1a4133c4 100644 GIT binary patch delta 29 kcmdnp#kjkRaf75HpOK-iftjwMse+-gm4U@(bwv>s0D#{IX8-^I delta 29 kcmdnp#kjkRaf75HpP_}Wp^>hkxq_jom4WeQbwv>s0D&q8X#fBK diff --git a/locales/ru_RU.po b/locales/ru_RU.po index 0123704912..b4521515aa 100644 --- a/locales/ru_RU.po +++ b/locales/ru_RU.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-05 10:06+0000\n" -"PO-Revision-Date: 2018-12-17 15:03+0000\n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" +"PO-Revision-Date: 2021-06-15 13:08+0000\n" "Last-Translator: Cédric Anne\n" "Language-Team: Russian (Russia) (http://www.transifex.com/teclib/glpi-plugin-order/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -33,21 +33,21 @@ msgstr "" msgid "Cannot copy file %1$s to %2$s" msgstr "" -#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 -#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 -#: inc/order_item.class.php:370 inc/order_item.class.php:477 -#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 #: inc/ordertax.class.php:41 msgid "VAT" msgstr "НДС" -#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 -#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 msgid "Payment conditions" msgstr "Условия оплаты" -#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 -#: inc/order.class.php:1966 inc/orderstate.class.php:49 +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 msgid "Order status" msgstr "Статус заказа" @@ -61,7 +61,7 @@ msgstr "Другой тип товара" msgid "Delivery status" msgstr "Статус доставки" -#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 #: inc/billstate.class.php:42 msgid "Bill status" msgstr "Статус счета" @@ -70,12 +70,12 @@ msgstr "Статус счета" msgid "Bill type" msgstr "Тип счета" -#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 msgid "Analytic nature" msgstr "" -#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 msgid "Account section" msgstr "" @@ -85,25 +85,25 @@ msgstr "" #: inc/profile.class.php:170 inc/preference.class.php:269 #: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 #: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 -#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 #: inc/bill.class.php:594 msgid "Orders" msgstr "Заказы" #: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 -#: inc/order.class.php:843 inc/order_item.class.php:1296 +#: inc/order.class.php:855 inc/order_item.class.php:1298 msgid "Order name" msgstr "Наименование заказа" #: hook.php:250 report/orderdelivery/orderdelivery.php:68 -#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 msgid "Order number" msgstr "Номер заказа" #: hook.php:400 inc/order_supplier.class.php:201 #: inc/surveysupplier.class.php:370 inc/order.class.php:77 -#: inc/order_item.class.php:749 inc/order_item.class.php:1364 -#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 #: inc/reception.class.php:290 msgid "Order" msgstr "Заказ" @@ -115,7 +115,7 @@ msgstr "Отчет о информации о доставке" #: report/deliveryinfos/deliveryinfos.php:48 #: report/orderdelivery/orderdelivery.php:48 #: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 -#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 #: inc/notificationtargetorder.class.php:153 #: inc/notificationtargetorder.class.php:161 msgid "Date of order" @@ -124,7 +124,7 @@ msgstr "Дата заказа" #: report/deliveryinfos/deliveryinfos.php:50 #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 -#: inc/order.class.php:952 +#: inc/order.class.php:964 msgid "Delivery location" msgstr "Место доставки" @@ -141,7 +141,7 @@ msgid "orderdelivery_report_title" msgstr "Отчет о доставке заказа" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 -#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 msgid "Estimated due date" msgstr "Предполагаемая дата поставки" @@ -198,17 +198,17 @@ msgid "Add reference" msgstr "Добавить товар" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order.class.php:1748 inc/order_item.class.php:368 -#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 #: inc/link.class.php:418 msgid "Quantity" msgstr "Количество" #: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 #: inc/order_item.class.php:123 inc/order_item.class.php:131 -#: inc/order_item.class.php:371 inc/order_item.class.php:478 -#: inc/order_item.class.php:802 inc/order_item.class.php:1025 -#: inc/order_item.class.php:1403 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 msgid "Discount (%)" msgstr "Скидка (%)" @@ -230,15 +230,15 @@ msgstr "Поставщик товара" msgid "Products references" msgstr "Закупаемый товар" -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 msgid "Bills" msgstr "Счета" -#: inc/preference.class.php:163 inc/order.class.php:1611 +#: inc/preference.class.php:163 inc/order.class.php:1636 msgid "Use this model" msgstr "Использовать этот шаблон" -#: inc/preference.class.php:168 inc/order.class.php:1620 +#: inc/preference.class.php:168 inc/order.class.php:1645 msgid "Use this sign" msgstr "Используйте этот знак" @@ -303,7 +303,7 @@ msgstr "Категория документа" msgid "Document category prefix" msgstr "Префикс категории документов" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 msgid "Order Generation" msgstr "Создание бланка заказа" @@ -316,7 +316,7 @@ msgstr "Получение товара" msgid "Order validation" msgstr "Проверка заказа" -#: inc/order.class.php:273 inc/order.class.php:1554 +#: inc/order.class.php:273 inc/order.class.php:1579 msgid "Cancel order" msgstr "Отмена заказа" @@ -328,22 +328,22 @@ msgstr "Изменить проверенный заказ" msgid "Generate order without validation" msgstr "Создать заказ без проверки" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 msgid "Postage" msgstr "Расход на доставку" -#: inc/order.class.php:458 inc/order.class.php:2188 +#: inc/order.class.php:458 inc/order.class.php:2213 msgid "Order is late" msgstr "Опоздание заказа" -#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1225 #: inc/notificationtargetorder.class.php:467 #: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Группа автора" -#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1275 #: inc/notificationtargetorder.class.php:469 #: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" @@ -374,129 +374,141 @@ msgid "" "The order date must be within the dates entered for the selected budget." msgstr "Выбранная дата должна быть в пределах дат выбранного бюджета." -#: inc/order.class.php:1063 inc/order_item.class.php:439 -#: inc/order_item.class.php:518 inc/config.class.php:112 +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "" + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 #: ajax/referencedetail.php:64 msgid "No VAT" msgstr "Без НДС" -#: inc/order.class.php:1096 +#: inc/order.class.php:1108 msgid "Due date overtaken" msgstr "Просрочен" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 msgid "Price tax free" msgstr "Cтоимость без налогов" -#: inc/order.class.php:1296 inc/order.class.php:1872 +#: inc/order.class.php:1321 inc/order.class.php:1897 msgid "Price tax free with postage" msgstr "Общая стоимость без налогов + доставка" -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 inc/order_item.class.php:1027 -#: inc/order_item.class.php:1416 +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 msgid "Price ATI" msgstr "Цена" -#: inc/order.class.php:1534 +#: inc/order.class.php:1559 msgid "Validation process" msgstr "Проверяется" -#: inc/order.class.php:1553 +#: inc/order.class.php:1578 msgid "" "Do you really want to cancel this order ? This option is irreversible !" msgstr "Вы действительно желаете отменить этот заказ? Это действие необратимо!" -#: inc/order.class.php:1560 +#: inc/order.class.php:1585 msgid "Validate order" msgstr "Проверка заказа" -#: inc/order.class.php:1566 +#: inc/order.class.php:1591 msgid "Do you want to cancel the validation approval ?" msgstr "Вы желаете отменить утверждение проверки?" -#: inc/order.class.php:1568 +#: inc/order.class.php:1593 msgid "Cancel ask for validation" msgstr "Отменить запрос на проверку" -#: inc/order.class.php:1574 +#: inc/order.class.php:1599 msgid "Ask for validation" msgstr "Запрос на проверку" -#: inc/order.class.php:1580 +#: inc/order.class.php:1605 msgid "Do you really want to edit the order ?" msgstr "Вы действительно желаете изменить заявку?" -#: inc/order.class.php:1582 +#: inc/order.class.php:1607 msgid "Edit order" msgstr "Редактировать заказ" -#: inc/order.class.php:1590 +#: inc/order.class.php:1615 msgid "Thanks to add at least one equipment on your order." msgstr "Добавьте, пожалуйста, хотя бы одно оборудование к Вашему заказу." -#: inc/order.class.php:1639 +#: inc/order.class.php:1664 msgid "Thanks to select a model into your preferences" msgstr "Выберите, пожалуйста, модель для Вашего товара" -#: inc/order.class.php:1681 +#: inc/order.class.php:1706 msgid "Invoice address" msgstr "Адрес выставления счета" -#: inc/order.class.php:1716 +#: inc/order.class.php:1741 msgid "Delivery address" msgstr "Адрес доставки" -#: inc/order.class.php:1726 +#: inc/order.class.php:1751 msgid "The" msgstr " " -#: inc/order.class.php:1728 +#: inc/order.class.php:1753 msgid "Issuer order" msgstr "Отпускающий заказ" -#: inc/order.class.php:1746 +#: inc/order.class.php:1771 msgid "Recipient" msgstr "Получатель" -#: inc/order.class.php:1749 +#: inc/order.class.php:1774 msgid "Designation" msgstr "Обозначение" -#: inc/order.class.php:1751 +#: inc/order.class.php:1776 msgid "Unit price" msgstr "Цена за единицу" -#: inc/order.class.php:1753 +#: inc/order.class.php:1778 msgid "Discount rate" msgstr "Скидка" -#: inc/order.class.php:1754 +#: inc/order.class.php:1779 msgid "Sum tax free" msgstr "Сумма без налогов" -#: inc/order.class.php:1881 +#: inc/order.class.php:1906 msgid "€" msgstr "Pуб" -#: inc/order.class.php:1882 +#: inc/order.class.php:1907 msgid "Signature of issuing order" msgstr "Подпись о выдаче товара" -#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/order.class.php:1985 inc/reference.class.php:373 #: inc/reference.class.php:758 msgid "Linked orders" msgstr "Связанные заказы" -#: inc/order.class.php:1994 +#: inc/order.class.php:2019 msgid "Unlink" msgstr "Убрать связь" -#: inc/order.class.php:2134 +#: inc/order.class.php:2159 msgid "Total orders related with this budget is greater than its value." msgstr "Всего заявок связанных с этим бюджетом, превышающих его." -#: inc/order.class.php:2139 +#: inc/order.class.php:2164 msgid "Total orders related with this budget is equal to its value." msgstr "Всего заявок связанных с этим бюджетом, равных его значению." @@ -532,24 +544,24 @@ msgstr "Проверка успешно отменена" msgid "Editor of validation" msgstr "Редактировать проверку" -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 msgid "Order item" msgstr "Заказ товара" #: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 #: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 #: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Стоимость за единицу без налогов" -#: inc/order_item.class.php:160 inc/order_item.class.php:470 +#: inc/order_item.class.php:160 inc/order_item.class.php:471 msgid "Product name" msgstr "" -#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/order_item.class.php:168 inc/order_item.class.php:483 #: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 #: inc/reference.class.php:195 msgid "Manufacturer's product reference" @@ -567,7 +579,7 @@ msgstr "Некоторые поля не могут быть изменены п msgid "Add to the order from the catalog" msgstr "" -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 #: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 #: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 #: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 @@ -575,60 +587,60 @@ msgstr "" msgid "Product reference" msgstr "Товар" -#: inc/order_item.class.php:452 inc/order_item.class.php:587 +#: inc/order_item.class.php:453 inc/order_item.class.php:589 msgid "Please select a supplier" msgstr "Пожалуйста, выберите поставщика" -#: inc/order_item.class.php:465 +#: inc/order_item.class.php:466 msgid "Add to the order free items" msgstr "" -#: inc/order_item.class.php:479 +#: inc/order_item.class.php:480 msgid "Add the reference" msgstr "" -#: inc/order_item.class.php:608 inc/order_item.class.php:621 +#: inc/order_item.class.php:610 inc/order_item.class.php:623 msgid "An analytic nature is mandatory !" msgstr "" -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 #: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 msgid "No item to take delivery of" msgstr "Нет товара, чтобы принят в доставку" -#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/order_item.class.php:802 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" msgstr "Ссылка на производителя" -#: inc/order_item.class.php:808 inc/order_item.class.php:1000 -#: inc/order_item.class.php:1202 +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 msgid "Do you really want to update this item ?" msgstr "Действительно желаете обновить этот элемент?" -#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" msgstr "Вы действительно желаете удалить эти данные? Доставка товара не будет связана с заявкой!" -#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 msgid "Discounted price tax free" msgstr "Стоимость со скидкой без налогов" -#: inc/order_item.class.php:1295 +#: inc/order_item.class.php:1297 msgid "Order informations" msgstr "Информация о заказе" -#: inc/order_item.class.php:1471 +#: inc/order_item.class.php:1473 msgid "Payment status" msgstr "Статус платежа" -#: inc/order_item.class.php:1484 +#: inc/order_item.class.php:1486 msgid "Paid value" msgstr "Сколько оплачено" -#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 #: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 #: inc/reception.class.php:248 msgid "Bill" @@ -850,17 +862,17 @@ msgstr "Добавлять местоположение заказа" msgid "Add billing details to item" msgstr "Добавить платежную информацию по материалу" -#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/config.class.php:300 inc/config.class.php:789 #: inc/reception.class.php:567 msgid "Default name" msgstr "Наименование по умолчанию" -#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/config.class.php:307 inc/config.class.php:797 #: inc/reception.class.php:570 msgid "Default serial number" msgstr "Серийный номер по умолчанию" -#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/config.class.php:314 inc/config.class.php:805 #: inc/reception.class.php:573 msgid "Default inventory number" msgstr "Инвентарный номер по умолчанию" diff --git a/locales/tr_TR.mo b/locales/tr_TR.mo index 466204af8ad5bd2a5d5d2208eaee8ce4e972c61d..1b71ee59965015865bf917def8a469ca81af9604 100644 GIT binary patch delta 4876 zcmZA2d303O0mtzh67~@GB}C*QVJ8VmNJN$ZZUKsgL@Jv~Uou0OGBXL2i6PKBNW)?g z(6Sbls70idEd~&6P#{4qRcs5Gb1Go13x9AdJ;%0aZL#0qyvsQp-^p)2_r7`W-Stg2 zR)16zyWA~li{Us&ZX<`=7?YY{%=At=Ys{gp#`MK{9D(m)XZ+gQuA4DKsQ1A%oP@gm zVbmk4kxR`g`~5Z?K)nGAjER{G_C$~F-WU0JI~UABHB@a~gIsF1VQbur$#@9+<8e&K zOQ`!=^)RLbcEcp>haK?_Y>%1Pn)b~Y3fyA~FcphY4-R5GtU>jnY2j^fPT!-r5 zF60(dkDBUtkkvC6unS&9jr2>@j9fb}gsM!1F(ci?7J z1FxZ$;v8zt|Ay*-zNBb+qJyJQ9W6r5*do-(qNoN}qdHcHYH&a5`s3)}`4|PQ*}qUD z`Y&qjI`b}SWDau5jJEZew(di%@@Ee6(H765cKe5@>;H-x`88BWJMxaI z;XbID9gZn_{|hKMoOl2=rD48enn&+vO&!>WWSg)EWlN$nP|3tjEU6$gU=)w za|5;3PY?E9<9(bcj@!DNQ7>obNh{~Fm;PRQA)HS{CDA!ZfkVI4Yn0cp$p z8+BdUP_N_TtTRy~^vG<6BXys7VqnwoB?5u{^#9F5vk z1*neAMm4kqbzLoLgqv|V)+3KL7p<*1$*h}9R7Z+&0>)}7=)tE@yZR&h#WmDgW{mKD zQ0_t9FcsDC8dSqOtb1`P^*2yUl{C`Z8~suBOw_=pqLywxvg9$dfP$tXihA%$)Gyc; zOvY!edr*7ih^?Q&Hq={e{W7XUS5X7{7IUyihG!va>X+dRJb+=n|2OOfA>JX~@B;E@ z&heqwu2q)zdUi)OI0Ds?9MpfoLR7~?sHItf18@gw6&?HrlWE`d9p&xX zA;^!FnP%$&)D2IeMzjOf!3JCZ0=rQE4z<=@SXecD7wW$G*bxKBWSA<{lD>r6{l_rI zZ-6;ZLGSf-)B{s!MLq71dJS_?ySWI}z+BX3TaJ3rcGSoZqdIyPb>9_ikFA+^t$Am> z54&SKoSV!1tDzE3=!VBoJ=~0Xz4oFSID=~V3+#sNMti2AuFu32ycav;gQyuOMP0uH z^$S~Tzkd#O-@ehze|HL}IH3kUL`~V(s2h{=yj|NHH8aCdGcgv`;N7U}ick&uPy>me zmhx%jr@|aWZR!@(j9fysdnHCeOYkkK;oI}Q28Ux0>f^0Ns17c~BwUN?(0Wvdc49K_ zw&xpAOVW(mq?b`0PP)^3|GT3)7`u;xrr3vUNV5Wq@er!P#4+AKk3p!lEkX5sIrhel zsD@s#=TD*_`39w;Ic|;$+OgTGZ6OikguV z7;gZz2|q)1Bw?JliBqvB^--uzcRy;0rlIb81U2#?cF_C3j)ESr6?NeO)aE;hYTy%8 z2X3GqkW9CAJ`H=}7@UDK?D;zEOT7`*ffh_a9oq<7%S2P$+HW3z zpfG~)YiyW7^CDS7UM1S;Ivye`h+e5C;u0VE9ntHi;~a^^OWw!xpr7mb|Nl2Bl#(rE zHPI}T5zWdWqUrpA==d#pFJAKYg^CMpU9&KqXizr~RwsUh`FxG+@v89|`nfLE6y7|F zC}?dSu_v^Fbm*0uM&4G1;}x=%93zF~Akm>W;<WKE%8$?H2b+s#n zKawZNcCv=(m3*D-Cch^-enw8mOT5>3mK-HJ>^ZTYOd@{r3~5DltRmG!8+aYjF_1i_ zsY+LkBjjQ3#UUis)*r?{kzbI_S`xlgK^fK{A*$kjIIRk)(tyCO;rMNd?idp8STCllG)P`7!w=nMvYX z^-dT>a>xd9>ybfaC}~X|xaEsslQq%Y zZqy0-UFy+Aey2R*^GBRuV4>eBttk!qof7}T@`&H5jJlC%AY7KYseSr}l$`90QTZ9! zc}{lT*xdYvm($zymo?Xib*3^< t;YI?d>zo=cb3=}gOUjxWD|tp!qvO`N5#1YXuCL^V=K5usn~KLx_&-dAAs_$% delta 4544 zcmYk<3zSt=0f+I;dw>y#8E^&=8JGb>7?>AMW5Yw@jcG!}LkTf?NFsxP0;M+!1rr(& zP(%g=!paF11|7h+0umyz$XF_?5=-)hwbGT9q6tEnOKco@OCW3TC{^NVJkd_ zP4SP|8sEW|_%Sx4{qS!pyuuf}b-?U)$&Gts2FI1iD-7nXGmgg|xFEU_?ZC^}8~=ir zVpe-*5{L8V3{1unoDm-A5JD;DVIGb~M}7lxNtlaX zzYJNuunx0uBRbOU=!`U=19~NXeiT#o>?9Ru;1l%17P(2oxoATLXamLQ3=P2UI02pV zJJ1=~io@{`PQq+@>-pLEHC&4h^jWms(|OE4_3$Ncu4x{3ca1MX`VvaeH5`G=Y8Z=d zqM7J*OVN(sk9M#Q-CTRn@0~zr=oC7zGw6Ua+0oswLr3P{8&+|`sh@zZ@eH)VJCRq| zz*{~(iFWKbx-_TJk^Bc8NNa9pM+(sfOVR5GV?ItqmuN9MfF&s^uGLy}B-@Zz*b|Tc z5RczS*RC1QsJpohx|wp&nH!4UXEgf#YtaEML_4qyorz7z>V#cr2U3Tr*yBIP6Q|Ls za~d2$YxKAiI(0qJ5tqf|q3CsE&<PTLoompuY>{ytTlw=DZ06ap(CA%yuu>h?C1k%2X$nl(`W<7(W&|y+L8Za8MdSsHqalN;7wSH)i?sTVikUbgRm!C-6ffY z&h)+LfNC-28tsTDcB2g)M)$-Cbo0EAHWUhy&zqt%m4j}o&ghNHFdqk?9iI}9Z$X!0 z4Z4)uqI(ONfA(AW9Vb}s@DVx#t@u^Z?$`te;p#>q3_+*(IKMvhDf|ebrq>*uiM{B34mb?By@9Y0@%d9)ukQE>zfp1=>#4mBxG*0dek zP=EBsQ?ND8Mg|uap-cD(y4#;Y8+rqMd_Tu5%w|Kl_66wER)HyZ?>H(pFd5xkDfC7g z(UI;(J9Z5H;)mE0TheRSI0uJfE@t3lw4v$f^^4ICu1BAy$I$y9DP{g`_ybO4Vk7ospAh!ylqc@Fm)Cw|+^3eXt$JgQDY7 zRP5m_Y>F$;4y{Hzv<2NfkH+&2=#m^nH|0BMhchlsp7&g|gCo%?o{4OyuoTDOF0{QC z70KU-R8K0d?R2!~Da^$+XhU`J{C>2dH_;KjhlB7_ti*m_PX;gtt2myI-@zR?0Go5s zU>u4?xEz_;RCtPtQ?d`!4WOIwJ

smnFNnGq&fr9Nl!I&?UMO{oYh`;YtZj+ zK(E`0Zod8K{olp&eEu7MBe_8q`au`G0ITBhSnSAgHQMk!*a#;OOAWc3TtR#sU6ux7 zC+3kASn7$Ru;)J`PMPHn(kWfzUoiM8VP?Y);`Ca|$WPNX z{-WZKNIqFWEY)Nr8BQFi8#;A6ZxhM6#dW)yj5_D!B$sY7Qz$2U1D= zt+4p$UT1}JCvoE*_JA^C&$|K}KGRp(X6w-yd(o* zcy4W!U+DA?lNN)*i0Ie8Kjh)TYkyG#pIjuWD^`mz8jC_A#x+h zBu^8|&17A=#(&RnE}2QTk+x(%=^NV*PjO&*HX;3kWc6Wk73oPHCq2k-$)n^Ma)7KS zmT!^04~uQAYjLj)kq(>?>T^rlhi{ fxT2`6IKQ;)vhvFMDcujYs=u-LRO>YlRaN~Tp7pBN diff --git a/locales/tr_TR.po b/locales/tr_TR.po index ca4a0b05fa..f9ef0e08e8 100644 --- a/locales/tr_TR.po +++ b/locales/tr_TR.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Kaya Zeren , 2015-2019 +# Kaya Zeren , 2015-2019,2021 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-05 10:06+0000\n" -"PO-Revision-Date: 2019-07-30 23:49+0000\n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" +"PO-Revision-Date: 2021-06-15 15:36+0000\n" "Last-Translator: Kaya Zeren \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/teclib/glpi-plugin-order/language/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -31,21 +31,21 @@ msgstr "Klasör oluşturulamadı" msgid "Cannot copy file %1$s to %2$s" msgstr "%1$s dosyası %2$s üzerine kopyalanamadı" -#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 -#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 -#: inc/order_item.class.php:370 inc/order_item.class.php:477 -#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 #: inc/ordertax.class.php:41 msgid "VAT" msgstr "KDV" -#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 -#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 msgid "Payment conditions" msgstr "Ödeme koşulları" -#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 -#: inc/order.class.php:1966 inc/orderstate.class.php:49 +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 msgid "Order status" msgstr "Sipariş durumu" @@ -59,7 +59,7 @@ msgstr "Diğer öge tipi" msgid "Delivery status" msgstr "Kargo durumu" -#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 #: inc/billstate.class.php:42 msgid "Bill status" msgstr "Faturalama durumu" @@ -68,12 +68,12 @@ msgstr "Faturalama durumu" msgid "Bill type" msgstr "Faturalama tipi" -#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 msgid "Analytic nature" msgstr "İstatistik doğası" -#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 msgid "Account section" msgstr "Hesap bölümü" @@ -83,25 +83,25 @@ msgstr "Hesap bölümü" #: inc/profile.class.php:170 inc/preference.class.php:269 #: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 #: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 -#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 #: inc/bill.class.php:594 msgid "Orders" msgstr "Siparişler" #: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 -#: inc/order.class.php:843 inc/order_item.class.php:1296 +#: inc/order.class.php:855 inc/order_item.class.php:1298 msgid "Order name" msgstr "Sipariş adı" #: hook.php:250 report/orderdelivery/orderdelivery.php:68 -#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 msgid "Order number" msgstr "Sipariş numarası" #: hook.php:400 inc/order_supplier.class.php:201 #: inc/surveysupplier.class.php:370 inc/order.class.php:77 -#: inc/order_item.class.php:749 inc/order_item.class.php:1364 -#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 #: inc/reception.class.php:290 msgid "Order" msgstr "Sipariş" @@ -113,7 +113,7 @@ msgstr "kargobilgileri_rapor_basligi" #: report/deliveryinfos/deliveryinfos.php:48 #: report/orderdelivery/orderdelivery.php:48 #: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 -#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 #: inc/notificationtargetorder.class.php:153 #: inc/notificationtargetorder.class.php:161 msgid "Date of order" @@ -122,7 +122,7 @@ msgstr "Sipariş tarihi" #: report/deliveryinfos/deliveryinfos.php:50 #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 -#: inc/order.class.php:952 +#: inc/order.class.php:964 msgid "Delivery location" msgstr "Kargo konumu" @@ -139,7 +139,7 @@ msgid "orderdelivery_report_title" msgstr "sipariskargo_rapor_basligi" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 -#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 msgid "Estimated due date" msgstr "Öngörülen bitiş tarihi" @@ -196,17 +196,17 @@ msgid "Add reference" msgstr "Referans ekle" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order.class.php:1748 inc/order_item.class.php:368 -#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 #: inc/link.class.php:418 msgid "Quantity" msgstr "Adet" #: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 #: inc/order_item.class.php:123 inc/order_item.class.php:131 -#: inc/order_item.class.php:371 inc/order_item.class.php:478 -#: inc/order_item.class.php:802 inc/order_item.class.php:1025 -#: inc/order_item.class.php:1403 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 msgid "Discount (%)" msgstr "İndirim (%)" @@ -228,15 +228,15 @@ msgstr "Referans için tedarikçi" msgid "Products references" msgstr "Ürün referansları" -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 msgid "Bills" msgstr "Faturalar" -#: inc/preference.class.php:163 inc/order.class.php:1611 +#: inc/preference.class.php:163 inc/order.class.php:1636 msgid "Use this model" msgstr "Şu model kullanılsın" -#: inc/preference.class.php:168 inc/order.class.php:1620 +#: inc/preference.class.php:168 inc/order.class.php:1645 msgid "Use this sign" msgstr "Şu imza kullanılsın" @@ -301,7 +301,7 @@ msgstr "Belge kategorisi" msgid "Document category prefix" msgstr "Belge kategorisi öneki" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 msgid "Order Generation" msgstr "Sipariş Oluşturma" @@ -314,7 +314,7 @@ msgstr "Ögeyi kargola" msgid "Order validation" msgstr "Sipariş doğrulama" -#: inc/order.class.php:273 inc/order.class.php:1554 +#: inc/order.class.php:273 inc/order.class.php:1579 msgid "Cancel order" msgstr "Siparişi iptal et" @@ -326,22 +326,22 @@ msgstr "Doğrulanmış bir siparişi düzenle" msgid "Generate order without validation" msgstr "Doğrulamasız sipariş oluştur" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 msgid "Postage" msgstr "Posta" -#: inc/order.class.php:458 inc/order.class.php:2188 +#: inc/order.class.php:458 inc/order.class.php:2213 msgid "Order is late" msgstr "Sipariş gecikmiş" -#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1225 #: inc/notificationtargetorder.class.php:467 #: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "Yetkili grup" -#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1275 #: inc/notificationtargetorder.class.php:469 #: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" @@ -372,129 +372,141 @@ msgid "" "The order date must be within the dates entered for the selected budget." msgstr "Sipariş tarihi seçilmiş bütçe için belirtilen tarih aralığında olmalıdır." -#: inc/order.class.php:1063 inc/order_item.class.php:439 -#: inc/order_item.class.php:518 inc/config.class.php:112 +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "Yapılandırma bölümüne git" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "Başlamadan önce en azından sipariş yaşam döngüsünü ayarlamalısınız." + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 #: ajax/referencedetail.php:64 msgid "No VAT" msgstr "KDV yok" -#: inc/order.class.php:1096 +#: inc/order.class.php:1108 msgid "Due date overtaken" msgstr "Bitiş tarihi geçti" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "Ögelere uygulanacak genel indirim" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 msgid "Price tax free" msgstr "Fiyat vergiden muaf" -#: inc/order.class.php:1296 inc/order.class.php:1872 +#: inc/order.class.php:1321 inc/order.class.php:1897 msgid "Price tax free with postage" msgstr "Fiyat vergiden muaf ve kargo dahil" -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 inc/order_item.class.php:1027 -#: inc/order_item.class.php:1416 +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 msgid "Price ATI" msgstr "Fiyat ATI" -#: inc/order.class.php:1534 +#: inc/order.class.php:1559 msgid "Validation process" msgstr "Doğrulama işlemi" -#: inc/order.class.php:1553 +#: inc/order.class.php:1578 msgid "" "Do you really want to cancel this order ? This option is irreversible !" msgstr "Bu siparişi iptal etmek istediğinize emin misiniz? Bu işlem geri alınamaz !" -#: inc/order.class.php:1560 +#: inc/order.class.php:1585 msgid "Validate order" msgstr "Siparişi doğrula" -#: inc/order.class.php:1566 +#: inc/order.class.php:1591 msgid "Do you want to cancel the validation approval ?" msgstr "Sipariş onayını iptal etmek ister misiniz ?" -#: inc/order.class.php:1568 +#: inc/order.class.php:1593 msgid "Cancel ask for validation" msgstr "Doğrulama iptali isteği" -#: inc/order.class.php:1574 +#: inc/order.class.php:1599 msgid "Ask for validation" msgstr "Doğrulama isteği" -#: inc/order.class.php:1580 +#: inc/order.class.php:1605 msgid "Do you really want to edit the order ?" msgstr "Siparişi düzenlemek istediğinize emin misiniz ?" -#: inc/order.class.php:1582 +#: inc/order.class.php:1607 msgid "Edit order" msgstr "Siparişi düzenle" -#: inc/order.class.php:1590 +#: inc/order.class.php:1615 msgid "Thanks to add at least one equipment on your order." msgstr "Siparişinize en az bir aygıt eklediğiniz için teşekkürler." -#: inc/order.class.php:1639 +#: inc/order.class.php:1664 msgid "Thanks to select a model into your preferences" msgstr "Ayarlarınıza bir model seçtiğiniz için teşekkürler" -#: inc/order.class.php:1681 +#: inc/order.class.php:1706 msgid "Invoice address" msgstr "Fatura adresi" -#: inc/order.class.php:1716 +#: inc/order.class.php:1741 msgid "Delivery address" msgstr "Kargo adresi" -#: inc/order.class.php:1726 +#: inc/order.class.php:1751 msgid "The" msgstr "Öge" -#: inc/order.class.php:1728 +#: inc/order.class.php:1753 msgid "Issuer order" msgstr "Yayınlayıcı siparişi" -#: inc/order.class.php:1746 +#: inc/order.class.php:1771 msgid "Recipient" msgstr "Alıcı" -#: inc/order.class.php:1749 +#: inc/order.class.php:1774 msgid "Designation" msgstr "Tahsis" -#: inc/order.class.php:1751 +#: inc/order.class.php:1776 msgid "Unit price" msgstr "Birim fiyatı" -#: inc/order.class.php:1753 +#: inc/order.class.php:1778 msgid "Discount rate" msgstr "İndirim oranı" -#: inc/order.class.php:1754 +#: inc/order.class.php:1779 msgid "Sum tax free" msgstr "Vergi hariç toplam" -#: inc/order.class.php:1881 +#: inc/order.class.php:1906 msgid "€" msgstr "€" -#: inc/order.class.php:1882 +#: inc/order.class.php:1907 msgid "Signature of issuing order" msgstr "Yayınlanmış siparişin imzası" -#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/order.class.php:1985 inc/reference.class.php:373 #: inc/reference.class.php:758 msgid "Linked orders" msgstr "İlişkili siparişler" -#: inc/order.class.php:1994 +#: inc/order.class.php:2019 msgid "Unlink" msgstr "İlişkiyi sil" -#: inc/order.class.php:2134 +#: inc/order.class.php:2159 msgid "Total orders related with this budget is greater than its value." msgstr "Bu bütçe ile ilişkilendirilmiş siparişler bütçeyi aşıyor." -#: inc/order.class.php:2139 +#: inc/order.class.php:2164 msgid "Total orders related with this budget is equal to its value." msgstr "Bu bütçe ile ilişkilendirilmiş siparişler bütçeye denk." @@ -530,24 +542,24 @@ msgstr "Doğrulama iptal edildi" msgid "Editor of validation" msgstr "Doğrulamayı düzenleyen" -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 msgid "Order item" msgstr "Öge siparişi" #: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 #: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 #: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "Vergisiz birim fiyat" -#: inc/order_item.class.php:160 inc/order_item.class.php:470 +#: inc/order_item.class.php:160 inc/order_item.class.php:471 msgid "Product name" msgstr "Ürün adı" -#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/order_item.class.php:168 inc/order_item.class.php:483 #: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 #: inc/reference.class.php:195 msgid "Manufacturer's product reference" @@ -565,7 +577,7 @@ msgstr "Bir siparişe ait olduğundan bazı alanlar değiştirilemez" msgid "Add to the order from the catalog" msgstr "Katalogdan siparişe ekle" -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 #: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 #: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 #: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 @@ -573,60 +585,60 @@ msgstr "Katalogdan siparişe ekle" msgid "Product reference" msgstr "Ürün referansı" -#: inc/order_item.class.php:452 inc/order_item.class.php:587 +#: inc/order_item.class.php:453 inc/order_item.class.php:589 msgid "Please select a supplier" msgstr "Lütfen bir tedarikçi seçin" -#: inc/order_item.class.php:465 +#: inc/order_item.class.php:466 msgid "Add to the order free items" msgstr "Siparişe özgür ögeleri ekle" -#: inc/order_item.class.php:479 +#: inc/order_item.class.php:480 msgid "Add the reference" msgstr "Referans ekle" -#: inc/order_item.class.php:608 inc/order_item.class.php:621 +#: inc/order_item.class.php:610 inc/order_item.class.php:623 msgid "An analytic nature is mandatory !" msgstr "Bir istatistik doğası zorunludur !" -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 #: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 msgid "No item to take delivery of" msgstr "Kargolanacak bir öge yok" -#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/order_item.class.php:802 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" msgstr "Üretici referansı" -#: inc/order_item.class.php:808 inc/order_item.class.php:1000 -#: inc/order_item.class.php:1202 +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 msgid "Do you really want to update this item ?" msgstr "Bu ögeyi güncellemek istediğinize emin misiniz?" -#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" msgstr "Bu ayrıntıları silmek istediğinize emin misiniz ? Kargolanan ögeler sipariş ile ilişkilendirilmeyecek !" -#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 msgid "Discounted price tax free" msgstr "Vergisiz indirimli fiyat" -#: inc/order_item.class.php:1295 +#: inc/order_item.class.php:1297 msgid "Order informations" msgstr "Sipariş bilgileri" -#: inc/order_item.class.php:1471 +#: inc/order_item.class.php:1473 msgid "Payment status" msgstr "Ödeme durumu" -#: inc/order_item.class.php:1484 +#: inc/order_item.class.php:1486 msgid "Paid value" msgstr "Ödenen değer" -#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 #: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 #: inc/reception.class.php:248 msgid "Bill" @@ -848,17 +860,17 @@ msgstr "Ögeye sipariş konumu ekle" msgid "Add billing details to item" msgstr "Ögeye faturalama bilgileri ekle" -#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/config.class.php:300 inc/config.class.php:789 #: inc/reception.class.php:567 msgid "Default name" msgstr "Varsayılan ad" -#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/config.class.php:307 inc/config.class.php:797 #: inc/reception.class.php:570 msgid "Default serial number" msgstr "Varsayılan seri numarası" -#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/config.class.php:314 inc/config.class.php:805 #: inc/reception.class.php:573 msgid "Default inventory number" msgstr "Varsayılan stok numarası" diff --git a/locales/zh_CN.mo b/locales/zh_CN.mo index ee42deade6404fb59976b438c1ea507d5d9e158a..aea81291d1cd5ccc5b84d3854f287121da4f9278 100644 GIT binary patch delta 27 icmeC-?cv=Z!@_4|sB2)RYiO!qXl!L*u~~~Hi3tE$^#%n1 delta 27 icmeC-?cv=Z!@_51p=)TQYiO=uXli9(yjhDSi3tE%Kn4c@ diff --git a/locales/zh_CN.po b/locales/zh_CN.po index 4d4b42155d..ca4837c025 100644 --- a/locales/zh_CN.po +++ b/locales/zh_CN.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-05 10:06+0000\n" -"PO-Revision-Date: 2018-12-17 15:03+0000\n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" +"PO-Revision-Date: 2021-06-15 13:08+0000\n" "Last-Translator: Cédric Anne\n" "Language-Team: Chinese (China) (http://www.transifex.com/teclib/glpi-plugin-order/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -31,21 +31,21 @@ msgstr "" msgid "Cannot copy file %1$s to %2$s" msgstr "" -#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1052 -#: inc/order.class.php:1310 inc/order.class.php:1752 inc/order.class.php:1877 -#: inc/order_item.class.php:370 inc/order_item.class.php:477 -#: inc/order_item.class.php:1024 inc/order_item.class.php:1391 +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 #: inc/ordertax.class.php:41 msgid "VAT" msgstr "" -#: hook.php:141 inc/order.class.php:369 inc/order.class.php:966 -#: inc/order.class.php:1883 inc/orderpayment.class.php:40 +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 msgid "Payment conditions" msgstr "" -#: hook.php:143 inc/order.class.php:343 inc/order.class.php:900 -#: inc/order.class.php:1966 inc/orderstate.class.php:49 +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 msgid "Order status" msgstr "" @@ -59,7 +59,7 @@ msgstr "" msgid "Delivery status" msgstr "" -#: hook.php:146 inc/order_item.class.php:1604 inc/bill.class.php:410 +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 #: inc/billstate.class.php:42 msgid "Bill status" msgstr "" @@ -68,12 +68,12 @@ msgstr "" msgid "Bill type" msgstr "" -#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:473 -#: inc/order_item.class.php:793 inc/analyticnature.class.php:40 +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 msgid "Analytic nature" msgstr "" -#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1111 +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 msgid "Account section" msgstr "" @@ -83,25 +83,25 @@ msgstr "" #: inc/profile.class.php:170 inc/preference.class.php:269 #: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 #: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 -#: inc/order_item.class.php:1965 inc/order_item.class.php:1967 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 #: inc/bill.class.php:594 msgid "Orders" msgstr "订单" #: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 -#: inc/order.class.php:843 inc/order_item.class.php:1296 +#: inc/order.class.php:855 inc/order_item.class.php:1298 msgid "Order name" msgstr "订单名称" #: hook.php:250 report/orderdelivery/orderdelivery.php:68 -#: inc/order.class.php:294 inc/order.class.php:870 inc/order.class.php:1679 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 msgid "Order number" msgstr "订单号码" #: hook.php:400 inc/order_supplier.class.php:201 #: inc/surveysupplier.class.php:370 inc/order.class.php:77 -#: inc/order_item.class.php:749 inc/order_item.class.php:1364 -#: inc/order_item.class.php:1973 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 #: inc/reception.class.php:290 msgid "Order" msgstr "订单" @@ -113,7 +113,7 @@ msgstr "deliveryinfos_report_title" #: report/deliveryinfos/deliveryinfos.php:48 #: report/orderdelivery/orderdelivery.php:48 #: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 -#: inc/order.class.php:854 inc/notificationtargetorder.class.php:102 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 #: inc/notificationtargetorder.class.php:153 #: inc/notificationtargetorder.class.php:161 msgid "Date of order" @@ -122,7 +122,7 @@ msgstr "订单日期" #: report/deliveryinfos/deliveryinfos.php:50 #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 -#: inc/order.class.php:952 +#: inc/order.class.php:964 msgid "Delivery location" msgstr "交货地点" @@ -139,7 +139,7 @@ msgid "orderdelivery_report_title" msgstr "orderdelivery_report_title" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 -#: inc/order.class.php:1080 inc/notificationtargetorder.class.php:162 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 msgid "Estimated due date" msgstr "预计交期" @@ -196,17 +196,17 @@ msgid "Add reference" msgstr "" #: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 -#: inc/order.class.php:1748 inc/order_item.class.php:368 -#: inc/order_item.class.php:475 inc/order_item.class.php:791 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 #: inc/link.class.php:418 msgid "Quantity" msgstr "" #: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 #: inc/order_item.class.php:123 inc/order_item.class.php:131 -#: inc/order_item.class.php:371 inc/order_item.class.php:478 -#: inc/order_item.class.php:802 inc/order_item.class.php:1025 -#: inc/order_item.class.php:1403 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 msgid "Discount (%)" msgstr "" @@ -228,15 +228,15 @@ msgstr "" msgid "Products references" msgstr "" -#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1470 +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 msgid "Bills" msgstr "" -#: inc/preference.class.php:163 inc/order.class.php:1611 +#: inc/preference.class.php:163 inc/order.class.php:1636 msgid "Use this model" msgstr "" -#: inc/preference.class.php:168 inc/order.class.php:1620 +#: inc/preference.class.php:168 inc/order.class.php:1645 msgid "Use this sign" msgstr "" @@ -301,7 +301,7 @@ msgstr "" msgid "Document category prefix" msgstr "" -#: inc/order.class.php:270 inc/order.class.php:1605 inc/order.class.php:1631 +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 msgid "Order Generation" msgstr "" @@ -314,7 +314,7 @@ msgstr "" msgid "Order validation" msgstr "" -#: inc/order.class.php:273 inc/order.class.php:1554 +#: inc/order.class.php:273 inc/order.class.php:1579 msgid "Cancel order" msgstr "" @@ -326,22 +326,22 @@ msgstr "" msgid "Generate order without validation" msgstr "" -#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1010 -#: inc/order.class.php:1052 inc/order.class.php:1874 +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 msgid "Postage" msgstr "" -#: inc/order.class.php:458 inc/order.class.php:2188 +#: inc/order.class.php:458 inc/order.class.php:2213 msgid "Order is late" msgstr "" -#: inc/order.class.php:524 inc/order.class.php:1200 +#: inc/order.class.php:524 inc/order.class.php:1225 #: inc/notificationtargetorder.class.php:467 #: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 msgid "Author group" msgstr "" -#: inc/order.class.php:534 inc/order.class.php:1250 +#: inc/order.class.php:534 inc/order.class.php:1275 #: inc/notificationtargetorder.class.php:469 #: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 msgid "Recipient group" @@ -372,129 +372,141 @@ msgid "" "The order date must be within the dates entered for the selected budget." msgstr "" -#: inc/order.class.php:1063 inc/order_item.class.php:439 -#: inc/order_item.class.php:518 inc/config.class.php:112 +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "" + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 #: ajax/referencedetail.php:64 msgid "No VAT" msgstr "" -#: inc/order.class.php:1096 +#: inc/order.class.php:1108 msgid "Due date overtaken" msgstr "" -#: inc/order.class.php:1281 inc/order.class.php:1870 inc/order.class.php:1968 +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 msgid "Price tax free" msgstr "" -#: inc/order.class.php:1296 inc/order.class.php:1872 +#: inc/order.class.php:1321 inc/order.class.php:1897 msgid "Price tax free with postage" msgstr "" -#: inc/order.class.php:1303 inc/order.class.php:1755 inc/order.class.php:1879 -#: inc/order.class.php:1969 inc/order_item.class.php:1027 -#: inc/order_item.class.php:1416 +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 msgid "Price ATI" msgstr "价格 ATI" -#: inc/order.class.php:1534 +#: inc/order.class.php:1559 msgid "Validation process" msgstr "" -#: inc/order.class.php:1553 +#: inc/order.class.php:1578 msgid "" "Do you really want to cancel this order ? This option is irreversible !" msgstr "" -#: inc/order.class.php:1560 +#: inc/order.class.php:1585 msgid "Validate order" msgstr "" -#: inc/order.class.php:1566 +#: inc/order.class.php:1591 msgid "Do you want to cancel the validation approval ?" msgstr "" -#: inc/order.class.php:1568 +#: inc/order.class.php:1593 msgid "Cancel ask for validation" msgstr "" -#: inc/order.class.php:1574 +#: inc/order.class.php:1599 msgid "Ask for validation" msgstr "" -#: inc/order.class.php:1580 +#: inc/order.class.php:1605 msgid "Do you really want to edit the order ?" msgstr "" -#: inc/order.class.php:1582 +#: inc/order.class.php:1607 msgid "Edit order" msgstr "编辑订单" -#: inc/order.class.php:1590 +#: inc/order.class.php:1615 msgid "Thanks to add at least one equipment on your order." msgstr "" -#: inc/order.class.php:1639 +#: inc/order.class.php:1664 msgid "Thanks to select a model into your preferences" msgstr "" -#: inc/order.class.php:1681 +#: inc/order.class.php:1706 msgid "Invoice address" msgstr "发票地址" -#: inc/order.class.php:1716 +#: inc/order.class.php:1741 msgid "Delivery address" msgstr "交货地址" -#: inc/order.class.php:1726 +#: inc/order.class.php:1751 msgid "The" msgstr "" -#: inc/order.class.php:1728 +#: inc/order.class.php:1753 msgid "Issuer order" msgstr "" -#: inc/order.class.php:1746 +#: inc/order.class.php:1771 msgid "Recipient" msgstr "" -#: inc/order.class.php:1749 +#: inc/order.class.php:1774 msgid "Designation" msgstr "" -#: inc/order.class.php:1751 +#: inc/order.class.php:1776 msgid "Unit price" msgstr "" -#: inc/order.class.php:1753 +#: inc/order.class.php:1778 msgid "Discount rate" msgstr "" -#: inc/order.class.php:1754 +#: inc/order.class.php:1779 msgid "Sum tax free" msgstr "" -#: inc/order.class.php:1881 +#: inc/order.class.php:1906 msgid "€" msgstr "€" -#: inc/order.class.php:1882 +#: inc/order.class.php:1907 msgid "Signature of issuing order" msgstr "" -#: inc/order.class.php:1960 inc/reference.class.php:373 +#: inc/order.class.php:1985 inc/reference.class.php:373 #: inc/reference.class.php:758 msgid "Linked orders" msgstr "" -#: inc/order.class.php:1994 +#: inc/order.class.php:2019 msgid "Unlink" msgstr "" -#: inc/order.class.php:2134 +#: inc/order.class.php:2159 msgid "Total orders related with this budget is greater than its value." msgstr "" -#: inc/order.class.php:2139 +#: inc/order.class.php:2164 msgid "Total orders related with this budget is equal to its value." msgstr "" @@ -530,24 +542,24 @@ msgstr "" msgid "Editor of validation" msgstr "" -#: inc/order_item.class.php:99 inc/order_item.class.php:1971 +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 msgid "Order item" msgstr "" #: inc/order_item.class.php:115 inc/order_item.class.php:369 -#: inc/order_item.class.php:476 inc/order_item.class.php:801 -#: inc/order_item.class.php:1023 inc/order_item.class.php:1384 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 #: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 #: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 #: inc/reference.class.php:183 msgid "Unit price tax free" msgstr "" -#: inc/order_item.class.php:160 inc/order_item.class.php:470 +#: inc/order_item.class.php:160 inc/order_item.class.php:471 msgid "Product name" msgstr "产品名称" -#: inc/order_item.class.php:168 inc/order_item.class.php:482 +#: inc/order_item.class.php:168 inc/order_item.class.php:483 #: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 #: inc/reference.class.php:195 msgid "Manufacturer's product reference" @@ -565,7 +577,7 @@ msgstr "" msgid "Add to the order from the catalog" msgstr "" -#: inc/order_item.class.php:364 inc/order_item.class.php:1574 +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 #: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 #: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 #: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 @@ -573,60 +585,60 @@ msgstr "" msgid "Product reference" msgstr "" -#: inc/order_item.class.php:452 inc/order_item.class.php:587 +#: inc/order_item.class.php:453 inc/order_item.class.php:589 msgid "Please select a supplier" msgstr "" -#: inc/order_item.class.php:465 +#: inc/order_item.class.php:466 msgid "Add to the order free items" msgstr "" -#: inc/order_item.class.php:479 +#: inc/order_item.class.php:480 msgid "Add the reference" msgstr "" -#: inc/order_item.class.php:608 inc/order_item.class.php:621 +#: inc/order_item.class.php:610 inc/order_item.class.php:623 msgid "An analytic nature is mandatory !" msgstr "" -#: inc/order_item.class.php:778 inc/order_item.class.php:1560 +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 #: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 msgid "No item to take delivery of" msgstr "" -#: inc/order_item.class.php:800 inc/reference.class.php:154 +#: inc/order_item.class.php:802 inc/reference.class.php:154 #: inc/reference.class.php:577 msgid "Manufacturer reference" msgstr "" -#: inc/order_item.class.php:808 inc/order_item.class.php:1000 -#: inc/order_item.class.php:1202 +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 msgid "Do you really want to update this item ?" msgstr "" -#: inc/order_item.class.php:991 inc/order_item.class.php:1193 +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" msgstr "" -#: inc/order_item.class.php:1026 inc/order_item.class.php:1411 +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 msgid "Discounted price tax free" msgstr "" -#: inc/order_item.class.php:1295 +#: inc/order_item.class.php:1297 msgid "Order informations" msgstr "" -#: inc/order_item.class.php:1471 +#: inc/order_item.class.php:1473 msgid "Payment status" msgstr "" -#: inc/order_item.class.php:1484 +#: inc/order_item.class.php:1486 msgid "Paid value" msgstr "" -#: inc/order_item.class.php:1603 inc/order_item.class.php:1691 +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 #: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 #: inc/reception.class.php:248 msgid "Bill" @@ -848,17 +860,17 @@ msgstr "" msgid "Add billing details to item" msgstr "" -#: inc/config.class.php:300 inc/config.class.php:779 +#: inc/config.class.php:300 inc/config.class.php:789 #: inc/reception.class.php:567 msgid "Default name" msgstr "" -#: inc/config.class.php:307 inc/config.class.php:787 +#: inc/config.class.php:307 inc/config.class.php:797 #: inc/reception.class.php:570 msgid "Default serial number" msgstr "" -#: inc/config.class.php:314 inc/config.class.php:795 +#: inc/config.class.php:314 inc/config.class.php:805 #: inc/reception.class.php:573 msgid "Default inventory number" msgstr "" From 1ddff8287a2ec980d798bb65f39e4ee076e81fae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Anne?= Date: Tue, 15 Jun 2021 16:15:44 +0200 Subject: [PATCH 5/7] Add French (Canada) locale --- locales/fr_CA.mo | Bin 0 -> 15966 bytes locales/fr_CA.po | 957 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 957 insertions(+) create mode 100644 locales/fr_CA.mo create mode 100644 locales/fr_CA.po diff --git a/locales/fr_CA.mo b/locales/fr_CA.mo new file mode 100644 index 0000000000000000000000000000000000000000..a22c0b8d7dddf9764124e43c48a8e93fdd7dad55 GIT binary patch literal 15966 zcmb7~dypMfoyS{5!4Q#$2vN~SgOfleGZO@HFbR`P5`uY=Ou|DDd+zO-X>xD(wfpu= z1|KMhC@MbI2kNqmxFVw{u5VmLbX-{$EH$;YvMah4uKcsEu9j8Smaes*?>VO*_fBG! zUGux&?$hV-JHOZYozwHvQ;z+B$Mq=meCYL0_q@}d;(3oRSE=U>pX_EKyBp9gLL_q*r!JNz>E0?Ho)HO}uH z9(SteaqFE9J`Fqv6pO>)3&Hi^O7I#`?QR5@f$sy41@8b)0Pg~y0e%)#KVJp;^B&-5 z1$Y=#zrO^J2mcp*Hh2s_XM(4LF9FYYcr~c;ZvxkV9|tc0e*m5a9>FWVd_WKYh`*{?Uy#55LpJQ=aZoSh$&0_@AxEF((|K%X6@Y9jx3sn72 zgYt{7f||#-LA5&!%6^^%HLv4wYWejFe#F zv6cG}D1D7NJOE-M-a!!6d2a(X@4Fp-3w$cikAts&is$_dR6MzcpL4*QKRka!-q(Sv!5cxfQ-7mVDNNn)f((9C)RB4nXO97Cat&D~L&W?*@JFK2Ys`03Hwi z0;Fs2SKtWv944XpT>{DuW1WNxaU`ld607{P;xCy)!RQvCN>i-Ym7Vy|} zE#H@dn%8SU@fm{~z&C;`dAM0!{7_Rmx8+;z6IRL^Zj599*1xwmsxNt zcn|n8@YkTm85pv5wE>hrG(qX%5QvL=w}ayIE1>-QQBd>x1t@!c229A`SAvrB#UQ5V zT?2~$n?O|Iy$95IUjt79e+a^Y_XH?AJQ*fspBI2k(c1+|Uatc&P4B}XD)Jr#eel0P z@w*&jS3Te122lN94QjkLD8AnUYF>A^=Wl>&_phM%{~dT1coM-ydRPZCgm($J47?sx zT)r9H2HpzFZVrR$_s5{-^9S%`@EnvPdAtHdRNj>!rt7`km46;QmFMq+;_v66`28a& zeoj5#+S3pyIc@?a*WKW=z#P;#H-paxKLl!=dqLUPS})!;LE z9tJh;2JjScKd5nLKOP>i5T>=KUM+MDS#cO5^yT-oF$SpO=DE@vZ{J z*Lxj)6x6&v0jk~SLCNR4Ag1g68ay35^FnJ6=Yz77N%wpUcp1-M1UG_Df4P0X6?`Sn z2SM5AS3vP`7?ix80DbUxpyYPis2%4VQ1jaa^5^a0hpxSMfX9H}apezzui^Qai)m~D_I3rh0=xxOe;;%2zXnP_he7G@x1i*^f*_{)o4}`lS3A6ddtJ9dZ-aI~ z@NwTLh_yZ^&TED zeWRn7gR)&+vZ>eThU+cR3D7_3fh&V9hmO+&R|x$zbgLe?J`Q~tx=s&V*Fv(5n<2u2 z_Yvq*Pz(AzR9r9O=6FbPPci>9(Dl$iKsP}#^dU&s?a)2u&i>4~``3c+gWl?%-w9p~ z<F7zE}3VHx4t_C-EyNAC4kAbG4b*`*{zvD*!wAmFr z72FRUaLXssP?U8uZ>-Ts z^0@2o3me@iiOc7#eC|fGL6=r}r_+kUH1l7Z2d$_(PmkRwn+jaJX45bf#nXN>>;_RQ z^Sg;3b;Gtd#=9hK!e%RJ&?t#}UX{$6isH4eBry}PJxrxxXnKWpx@8D8DBdM)^T;4U zE19N7JBpcR%Am8MKb5pv$z0wkXRxY~#Jp^Dvo(f!pbh71{IJ_tyV@Iz{lJOGiK9o( z{#m9*9JJ=UQ3Kg_^Az4{ny@u2b4O5=dF@*7GOg*br#EjbI|$pUKa0rGuF+6-Fl>5b zd3T2L=`_hZdPv&5ZNRVUWd7Vt7^8<4)0RQ-8%&2xE{AZB!}vPRhQgQYWY zZ;V`AHO8~0VPPs7DO6#c&~wt6_ot#(=$}2Z(iqm+>sFd!&09NeX*I^^lf3H(#^B3N zj$X}7#f{a9;)B-0e0A=GXc<(2d7p(6Y0K3^o=F@!yH^DmPgYqvw(F`25Xyey4z!*n*BxAoFS1PlFEy~dx7vPdSKhFJ$= z2;(qAR+zdh-4A9l@qplg4^xU@lPQPBN1I6_7Z1*ekYPAy<|$6Cicyx@l>+z1H4%8W zDjg4}g1puB4~$KC#r;eeG-Y2#0zuQ<2YxY@1Qo=6&7*i0HV9}g$d!F5ij@ypm`V!P zy{b}UJ>y|3#E2}|IY@gdkYk|J^3H0qc%CnBe0W8USyfQPu&P9+N|cEjwOY*BdXKz4G)e z;x;G-V18zDo+++wi6OnAU`rfGyg?c9r*UtsZy4AXY!EHdR}oyitq~ScYFZKvy=}II zT}G=XD_rFZ3Z1nD$JN&emqbmP#ad-pPbc%{bVv@dJ)TWuw1ul|&$67w-p*pXL>#m* zr{;W3l>w~Gs1mWVr;3S#Mbw?Q?=TwYucoS-GV`3A_w!6)r8ZWdx!4}EywSjmr*heJ zh7C3l(-B@BY4ki+ms*C~Zk!z^+{qX-uXc}#l6QDJRNDqLlVpiM8Jc-fD4K?Zj4Fg? z-p(M-l}(XEq*ZxOF;0sOHuFZUp|^|BnPmxUfi!OhqDWXxv?ze9LU?LtDp96cmm=44 zz`LvyHlnGBE?p?wg*S$Al26Z=c4ifJilKhjH<mwT(5jeSJJV^< zWVnR#X|Q)G?0vL5n@(BPx`h$;o+UowO0vqYm_eR4X2f)2jPEkHt3d_@^O!|9B;ATl zbfp3}bD%WJ`Oky6r3qyF{SgJ`?54f~bW}Z4?tss=F^_?djXv z1oe%JQHXYICUY>=`%;Vk>ZWsB+hjc23(1~X3#tIUFJb>lP-!(uC6(HfT(H8olco(d zlVKx3PGWkV7p;WQX(Ops(mthiykMOA+U)JinOKoB?Q=U-k_zoZd1-g9nu`%fmA96! z+@98(P$V={aWP}w6xH@p6Ei`4&;&me;RggVET4p(n1?2!j!oZVqH6lWnCYU9emBjOw9C`v#jZcIc~tjo}o2J7+XxHW_y3LNI5tH3l z6cx3iV=ai(lxGBStQvDD#8Jj)yPm_Y;(|3Od5j_-TNitfKqR!)v>RZ;RAdTlH*Bc* z3mQ+G?U*z|=3nn14dSd#a^%LrNn_^CC~nDMwNuuyKcwwznT^GG_** z(rIZd4E~K0sz;^j=BbLcT5pv&cn9nTyoeUXW3znGyKi;x<%iX+OQI2GJz&=>^o^#t zNHAvy1ha86S9ahXh}e{o{ZuY}c|c^wU8L0_RrTtHr9syVXYI5!kRo~LT}kS1JX0x# z2}LGR)=T#NMITxsvuo3^lce2i35qOs#`22yy|13Q@m^wiave$6;P&R=0qqfzc+}sv zW6yTqtp$VrZiV4xdrhB%JG1GiIk+jG&ITuvQGeN<-Gh5W?Q4^GP@BzBf8Fr9k-^~$ z21m~KN6s4^zVO^(u4Oy$#lZ<#5LTO{qyFZ_g(l00KNiO!Z{z74CmNgxgZ8MuRYznq z{;JJE95jQ~{;HX7w=+64G&eW5mSdqfVsSO? zW?H1fjIRM9l&$|i3tH?GQ2IS%GH+3F9&YlP+~L7NGs1oI&-i|EoL zoK?&v8_BNTNJ;{*l z;m#N-2Ue7ZOec=>mYsRiPFUSk(X^~kHxOG$R|PYgzm!#zpHUo{QI5H@Gwx+0A=8wv zkU}+Pbjz6LKvc&rzBv-@Yhf7|6Lrtdh%oZ%{{H_=ZId?kcCN1hvTlwX2pJ@GbQxF`w0`_fKsoLR4#4H3Wl@gFRuq>hhCyfXiBdE#BoZm2Y4h5{{CA5h6X3d^B z(jiBX{5IR;RAa1aP@cE2j`Y67N!i?J*Rj-b$egjdsAskk932wvG|5^J)LCkz-t3Kwh23>vsyMD7XIqk6Z1lZ-Nj^iSy=2C1CWb5-0e2}T4ku+c z(kXk8!||ovEgmg` z?zCHT4rh>PDLJ#y8UHF?*X+-nVJl=?52!DSRZ7?s!HUyt{Ky6>wJiLp4DL2Dm~JJL z0lsc*xXdKIZ8joebEPr3V^QL9^|Hn$->+E(Yuve7_AGr@NJ!$arF1;Z%$;}p!Mr|- zgoip2V&@~X0+SKFO(Wc4yez^2(>3WWOZQ#wKMjMDJwsI!9tD& z^roNBqg0h3%#hYlN`^MOTwX^N#KCTmHr<(omfWIR{VkC?b)u})Z?-IG$}IHS8`v-q z+M{LHQu?~VErTp3>f3l=+ldSDe(a#YOI z9>kh-)x|Fzxtip*noY0z!?ajtlyhYr?0^$A`rJ+yHo)gXYrWXz^>V|q8xsR->Y<-q zbkGUr<;~{wUi%3S0hT0WJ-j2jc)�em?EDh}!H5@3WgZ+;)-y;i=GLF%g^K4Fn{V z{8vIIwwd&(n zMyZbl+iM?9`iu z_(;C(c4k;zpQ$C|%2DahmNFk_R<~|H^SmABzbFXSYgVigEW+RLaqyWCXOeX9ikRhO*KctCxmlS&(l{XJ2%Dyv0MvqE41A<{NEVa~suMMzyK9N(qwXAssK z?eNX<5C7>SkNhYsV(;~Zx4v%P)D;` zZ(kLlu@Sn}zE_$o!v)d8WPk`}Pml)eIO;W&1S+%m`8p6 zA0IYI2;ww`FxeM}oQDOo%81~&k}R3B=3ZL7iI9Np~Hh8=DTW2i4H+QGYUA|shiH0dG;t}U9Ht!c4Z8x2b^i}%RZOy-zK zGF8fud7OgpAo?)F;$sb3uzNbpGb+T(NNi`!cNoSU=ARAC=Np!X;$WlT#kBIRQd}!H zxN#U9*PN3yS^<2>yS4RzKlkON7UC8c)`~at#TRp~MPHMKQh*>h({L^EX`g)tA9pCu zj9Q5ie{mOV+|2GCu6p}1C-iR1q^a0%JPH#gY&tHqE4Ckd%8bgz&75yPCJ31*T0Ggn zx#W1j+ixNdDkT1}9hFilwN-DKzEg0$OdD9cZ|93<^#Un3qO_q*kp60B&%$I@%zEfC zWm>hIyA;Vttxj)7U>ewc#F)+k>nm(EmLFDYEZh9mz`R3MmzGhvewN3P9xbR zEDd`)Tn&%~`(k;O{ugS}GFX36+qM;RC0i=n^$JRv7!Hro&Jt_2+p2H$?Z2ILO*ih0 Xg}Du|>nc(^W>d3cZ_82Ntn~gLtHOPa literal 0 HcmV?d00001 diff --git a/locales/fr_CA.po b/locales/fr_CA.po new file mode 100644 index 0000000000..f56420dd63 --- /dev/null +++ b/locales/fr_CA.po @@ -0,0 +1,957 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# 06c8e5f1ec78ded2ceb41498ec52b068, 2015 +# alexandre delaunay , 2018 +# Cédric Anne, 2018 +# Johan Cwiklinski , 2016 +# Tiago Graça, 2020 +# Walid Nouh, 2017 +msgid "" +msgstr "" +"Project-Id-Version: GLPI Plugin - Order\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-06-15 13:07+0000\n" +"PO-Revision-Date: 2021-06-15 13:08+0000\n" +"Last-Translator: Cédric Anne\n" +"Language-Team: French (Canada) (http://www.transifex.com/teclib/glpi-plugin-order/language/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Installation ou mise à jour du plugin" + +#: hook.php:88 +msgid "Can't create folder" +msgstr "Impossible de créer le dossier" + +#: hook.php:95 +#, php-format +msgid "Cannot copy file %1$s to %2$s" +msgstr "Impossible de copier le fichier de %1$s vers %2$s" + +#: hook.php:140 inc/order.class.php:319 inc/order.class.php:1064 +#: inc/order.class.php:1335 inc/order.class.php:1777 inc/order.class.php:1902 +#: inc/order_item.class.php:370 inc/order_item.class.php:478 +#: inc/order_item.class.php:1026 inc/order_item.class.php:1393 +#: inc/ordertax.class.php:41 +msgid "VAT" +msgstr "" + +#: hook.php:141 inc/order.class.php:369 inc/order.class.php:978 +#: inc/order.class.php:1908 inc/orderpayment.class.php:40 +msgid "Payment conditions" +msgstr "Conditions de paiement" + +#: hook.php:143 inc/order.class.php:343 inc/order.class.php:912 +#: inc/order.class.php:1991 inc/orderstate.class.php:49 +msgid "Order status" +msgstr "Statut commande" + +#: hook.php:144 inc/othertype.class.php:40 +msgid "Other type of item" +msgstr "Type d'autre équipement" + +#: hook.php:145 inc/deliverystate.class.php:38 inc/order_item.class.php:187 +#: inc/reception.class.php:235 inc/reception.class.php:427 +#: inc/reception.class.php:556 +msgid "Delivery status" +msgstr "Statut de la livraison" + +#: hook.php:146 inc/order_item.class.php:1606 inc/bill.class.php:410 +#: inc/billstate.class.php:42 +msgid "Bill status" +msgstr "Statut de la facture" + +#: hook.php:147 inc/billtype.class.php:40 +msgid "Bill type" +msgstr "Type de facture" + +#: hook.php:148 inc/order_item.class.php:366 inc/order_item.class.php:474 +#: inc/order_item.class.php:795 inc/analyticnature.class.php:40 +msgid "Analytic nature" +msgstr "Nature analytique" + +#: hook.php:149 inc/accountsection.class.php:65 inc/order.class.php:1136 +msgid "Account section" +msgstr "Section du compte" + +#: hook.php:150 front/order.form.php:417 front/preference.form.php:43 +#: front/order.php:33 front/menu.php:63 front/config.form.php:41 +#: inc/profile.class.php:103 inc/profile.class.php:145 +#: inc/profile.class.php:170 inc/preference.class.php:269 +#: inc/order_supplier.class.php:410 inc/documentcategory.class.php:47 +#: inc/order.class.php:77 inc/order.class.php:627 inc/menu.class.php:7 +#: inc/order_item.class.php:1967 inc/order_item.class.php:1969 +#: inc/bill.class.php:594 +msgid "Orders" +msgstr "Commandes" + +#: hook.php:242 inc/surveysupplier.class.php:183 inc/order.class.php:409 +#: inc/order.class.php:855 inc/order_item.class.php:1298 +msgid "Order name" +msgstr "Nom de la commande" + +#: hook.php:250 report/orderdelivery/orderdelivery.php:68 +#: inc/order.class.php:294 inc/order.class.php:882 inc/order.class.php:1704 +msgid "Order number" +msgstr "N° commande" + +#: hook.php:400 inc/order_supplier.class.php:201 +#: inc/surveysupplier.class.php:370 inc/order.class.php:77 +#: inc/order_item.class.php:751 inc/order_item.class.php:1366 +#: inc/order_item.class.php:1975 inc/bill.class.php:101 inc/bill.class.php:197 +#: inc/reception.class.php:290 +msgid "Order" +msgstr "Commande" + +#: report/deliveryinfos/deliveryinfos.php:47 +msgid "deliveryinfos_report_title" +msgstr "Statistiques d'expédition des commandes" + +#: report/deliveryinfos/deliveryinfos.php:48 +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 inc/order.class.php:307 +#: inc/order.class.php:866 inc/notificationtargetorder.class.php:102 +#: inc/notificationtargetorder.class.php:153 +#: inc/notificationtargetorder.class.php:161 +msgid "Date of order" +msgstr "Date commande" + +#: report/deliveryinfos/deliveryinfos.php:50 +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 inc/order.class.php:331 +#: inc/order.class.php:964 +msgid "Delivery location" +msgstr "Lieu de livraison de la commande" + +#: report/deliveryinfos/deliveryinfos.php:64 +msgid "Orders total" +msgstr "Total des commandes" + +#: report/deliveryinfos/deliveryinfos.php:65 +msgid "Late orders total" +msgstr "Total des commandes en retard" + +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "Expédition des commandes" + +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:434 +#: inc/order.class.php:1092 inc/notificationtargetorder.class.php:162 +msgid "Estimated due date" +msgstr "Date de livraison estimée" + +#: front/order_supplier.form.php:51 inc/order_supplier.class.php:62 +#: inc/order_supplier.class.php:170 inc/order_supplier.class.php:222 +msgid "Quote number" +msgstr "N° devis" + +#: front/order_supplier.form.php:66 +msgid "Delete" +msgstr "Suppression" + +#: front/order_supplier.form.php:66 inc/order_supplier.class.php:46 +#: inc/order_supplier.class.php:55 inc/order_supplier.class.php:218 +#: inc/order_supplier.class.php:415 inc/reference_supplier.class.php:154 +#: inc/reference_supplier.class.php:264 +msgid "Supplier Detail" +msgstr "Infos Fournisseur" + +#: front/order_supplier.form.php:80 front/reception.form.php:96 +#: front/surveysupplier.form.php:69 front/order_item.form.php:39 +#: front/menu.php:33 front/menu.php:57 inc/order.class.php:287 +#: inc/order_item.class.php:108 inc/config.class.php:76 setup.php:199 +msgid "Orders management" +msgstr "Gestion des commandes" + +#: front/order.form.php:94 inc/notificationtargetorder.class.php:120 +msgid "Order is validated" +msgstr "La commande est validée" + +#: front/order.form.php:103 +msgid "Order validation successfully requested" +msgstr "Demande de validation de la commande effectuée" + +#: front/order.form.php:113 +msgid "Validation query is now canceled" +msgstr "Annulation la demande de validation effectuée" + +#: front/order.form.php:123 inc/notificationtargetorder.class.php:49 +#: inc/notificationtargetorder.class.php:124 +msgid "Order canceled" +msgstr "Commande annulée" + +#: front/order.form.php:134 inc/notificationtargetorder.class.php:50 +msgid "Order currently edited" +msgstr "Commande en cours d'édition" + +#: front/order.form.php:143 front/order.form.php:218 front/order.form.php:366 +msgid "The discount pourcentage must be between 0 and 100" +msgstr "Le pourcentage de remise doit-être compris entre 0 et 100" + +#: front/order.form.php:147 front/order.form.php:245 front/order.form.php:265 +msgid "Add reference" +msgstr "Ajout référence" + +#: front/order.form.php:150 front/order.form.php:247 front/order.form.php:267 +#: inc/order.class.php:1773 inc/order_item.class.php:368 +#: inc/order_item.class.php:476 inc/order_item.class.php:793 +#: inc/link.class.php:418 +msgid "Quantity" +msgstr "Quantité" + +#: front/order.form.php:151 front/order.form.php:248 front/order.form.php:268 +#: inc/order_item.class.php:123 inc/order_item.class.php:131 +#: inc/order_item.class.php:371 inc/order_item.class.php:479 +#: inc/order_item.class.php:804 inc/order_item.class.php:1027 +#: inc/order_item.class.php:1405 +msgid "Discount (%)" +msgstr "Remise (en %)" + +#: front/order.form.php:194 front/order.form.php:201 front/order.form.php:314 +#: front/order.form.php:320 +msgid "Remove reference" +msgstr "Suppression référence" + +#: front/order.form.php:211 inc/reception.class.php:816 +msgid "No item selected" +msgstr "Aucun matériel sélectionné" + +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:83 +msgid "Supplier for the reference" +msgstr "Fournisseur pour une référence" + +#: front/menu.php:70 inc/profile.class.php:174 +msgid "Products references" +msgstr "Références produits" + +#: front/menu.php:77 inc/profile.class.php:178 inc/order_item.class.php:1472 +msgid "Bills" +msgstr "Factures" + +#: inc/preference.class.php:163 inc/order.class.php:1636 +msgid "Use this model" +msgstr "Utiliser ce modèle" + +#: inc/preference.class.php:168 inc/order.class.php:1645 +msgid "Use this sign" +msgstr "Utiliser cette signature" + +#: inc/referencefree.class.php:39 +msgid "Reference free" +msgstr "" + +#: inc/order_supplier.class.php:293 +msgid "Delivery statistics" +msgstr "Statistique livraison" + +#: inc/order_supplier.class.php:309 +msgid "No specified status" +msgstr "Statut non spécifié" + +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:382 inc/surveysupplier.class.php:512 +msgid "Supplier quality" +msgstr "Qualité fournisseur" + +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:385 +msgid "Note" +msgstr "Note" + +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:386 +msgid "Comment on survey" +msgstr "Commentaire du sondage" + +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:310 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" +msgstr "Qualité du suivi administratif (contrat, factures, courrier...)" + +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:317 +msgid "Commercial followup quality, visits, responseness" +msgstr "Qualité du suivi commercial, fréquence des visites, réactivité" + +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:322 +msgid "Contacts availability" +msgstr "Disponibilité des interlocuteurs fournisseur" + +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:328 +msgid "Quality of supplier intervention" +msgstr "Qualité des prestations collaborateurs du fournisseur" + +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:334 +msgid "Reliability about annouced delays" +msgstr "Fiabilité sur les disponibilités annoncées" + +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" +msgstr "Note globale du fournisseur" + +#: inc/surveysupplier.class.php:348 +msgid "Average mark up to 10 (X points / 5)" +msgstr "Note moyenne sur 10 (X points / 5)" + +#: inc/documentcategory.class.php:39 +msgid "Document category" +msgstr "Catégorie de document" + +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" +msgstr "Préfixe de la catégorie de document" + +#: inc/order.class.php:270 inc/order.class.php:1630 inc/order.class.php:1656 +msgid "Order Generation" +msgstr "Génération du bon de commande" + +#: inc/order.class.php:271 inc/reception.class.php:517 +#: inc/reception.class.php:586 +msgid "Take item delivery" +msgstr "Réceptionner matériel" + +#: inc/order.class.php:272 +msgid "Order validation" +msgstr "Valider une commande" + +#: inc/order.class.php:273 inc/order.class.php:1579 +msgid "Cancel order" +msgstr "Annuler une commande" + +#: inc/order.class.php:274 +msgid "Edit a validated order" +msgstr "Modifier une commande validée" + +#: inc/order.class.php:275 +msgid "Generate order without validation" +msgstr "Générer la commande sans validation" + +#: inc/order.class.php:319 inc/order.class.php:492 inc/order.class.php:1022 +#: inc/order.class.php:1064 inc/order.class.php:1899 +msgid "Postage" +msgstr "Frais de port" + +#: inc/order.class.php:458 inc/order.class.php:2213 +msgid "Order is late" +msgstr "Livraison en retard" + +#: inc/order.class.php:524 inc/order.class.php:1225 +#: inc/notificationtargetorder.class.php:467 +#: inc/notificationtargetorder.class.php:470 inc/config.class.php:166 +msgid "Author group" +msgstr "Groupe auteur" + +#: inc/order.class.php:534 inc/order.class.php:1275 +#: inc/notificationtargetorder.class.php:469 +#: inc/notificationtargetorder.class.php:471 inc/config.class.php:176 +msgid "Recipient group" +msgstr "Groupe destinataire" + +#: inc/order.class.php:584 +msgid "Account Section" +msgstr "Section de compte" + +#: inc/order.class.php:636 +msgid "Validation" +msgstr "Validation" + +#: inc/order.class.php:642 +msgid "Purchase order" +msgstr "Bon de commande" + +#: inc/order.class.php:684 +msgid "An order number is mandatory !" +msgstr "Un numéro de commande est obligatoire !" + +#: inc/order.class.php:693 inc/order.class.php:769 +msgid "An account section is mandatory !" +msgstr "Une section de compte est obligatoire !" + +#: inc/order.class.php:700 inc/order.class.php:763 +msgid "" +"The order date must be within the dates entered for the selected budget." +msgstr "La date de commande doit être comprise dans les dates déclarées pour le budget sélectionné." + +#: inc/order.class.php:812 +msgid "Go to configuration page" +msgstr "" + +#: inc/order.class.php:816 +msgid "You must set up at least the order life cycle before starting." +msgstr "" + +#: inc/order.class.php:1075 inc/order_item.class.php:439 +#: inc/order_item.class.php:519 inc/config.class.php:112 +#: ajax/referencedetail.php:64 +msgid "No VAT" +msgstr "" + +#: inc/order.class.php:1108 +msgid "Due date overtaken" +msgstr "La date estimée est dépassée" + +#: inc/order.class.php:1118 +msgid "Global discount to apply to items" +msgstr "" + +#: inc/order.class.php:1306 inc/order.class.php:1895 inc/order.class.php:1993 +msgid "Price tax free" +msgstr "Prix Total sans taxes" + +#: inc/order.class.php:1321 inc/order.class.php:1897 +msgid "Price tax free with postage" +msgstr "Prix Total + Frais de port (HT)" + +#: inc/order.class.php:1328 inc/order.class.php:1780 inc/order.class.php:1904 +#: inc/order.class.php:1994 inc/order_item.class.php:1029 +#: inc/order_item.class.php:1418 +msgid "Price ATI" +msgstr "" + +#: inc/order.class.php:1559 +msgid "Validation process" +msgstr "Processus de validation" + +#: inc/order.class.php:1578 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" +msgstr "Voulez-vous vraiment annuler cette commande ? Cette option est irréversible!" + +#: inc/order.class.php:1585 +msgid "Validate order" +msgstr "Valider la commande" + +#: inc/order.class.php:1591 +msgid "Do you want to cancel the validation approval ?" +msgstr "Voulez-vous vraiment annuler la demande de validation ?" + +#: inc/order.class.php:1593 +msgid "Cancel ask for validation" +msgstr "Annuler la demande de validation" + +#: inc/order.class.php:1599 +msgid "Ask for validation" +msgstr "Faire valider la commande" + +#: inc/order.class.php:1605 +msgid "Do you really want to edit the order ?" +msgstr "Voulez-vous modifier le contenu de la commande ? " + +#: inc/order.class.php:1607 +msgid "Edit order" +msgstr "Modifier la commande" + +#: inc/order.class.php:1615 +msgid "Thanks to add at least one equipment on your order." +msgstr "Merci d'ajouter au moins un équipement à votre commande." + +#: inc/order.class.php:1664 +msgid "Thanks to select a model into your preferences" +msgstr "Merci de sélectionner un modèle dans vos préférences" + +#: inc/order.class.php:1706 +msgid "Invoice address" +msgstr "Adresse de facturation" + +#: inc/order.class.php:1741 +msgid "Delivery address" +msgstr "Adresse de livraison" + +#: inc/order.class.php:1751 +msgid "The" +msgstr "le" + +#: inc/order.class.php:1753 +msgid "Issuer order" +msgstr "Emetteur d'ordre" + +#: inc/order.class.php:1771 +msgid "Recipient" +msgstr "Destinataire" + +#: inc/order.class.php:1774 +msgid "Designation" +msgstr "Désignation" + +#: inc/order.class.php:1776 +msgid "Unit price" +msgstr "Prix unitaire" + +#: inc/order.class.php:1778 +msgid "Discount rate" +msgstr "Taux de remise" + +#: inc/order.class.php:1779 +msgid "Sum tax free" +msgstr "Somme sans taxe" + +#: inc/order.class.php:1906 +msgid "€" +msgstr "$" + +#: inc/order.class.php:1907 +msgid "Signature of issuing order" +msgstr "Signature de l’émetteur d’ordre" + +#: inc/order.class.php:1985 inc/reference.class.php:373 +#: inc/reference.class.php:758 +msgid "Linked orders" +msgstr "Commandes liées" + +#: inc/order.class.php:2019 +msgid "Unlink" +msgstr "Supprimer le lien" + +#: inc/order.class.php:2159 +msgid "Total orders related with this budget is greater than its value." +msgstr "Le total des commandes liées à ce budget est supérieur à sa valeur." + +#: inc/order.class.php:2164 +msgid "Total orders related with this budget is equal to its value." +msgstr "Le total des commandes liées à ce budget est égal à sa valeur." + +#: inc/notificationtargetorder.class.php:47 +#: inc/notificationtargetorder.class.php:116 +msgid "Request order validation" +msgstr "Demande de validation de la commande" + +#: inc/notificationtargetorder.class.php:48 +msgid "Order validated" +msgstr "Commande validée" + +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:187 +msgid "Late orders" +msgstr "Commandes en retard" + +#: inc/notificationtargetorder.class.php:52 +#: inc/notificationtargetorder.class.php:132 inc/link.class.php:223 +msgid "No item to generate" +msgstr "Commande totalement livrée" + +#: inc/notificationtargetorder.class.php:109 +#: inc/notificationtargetorder.class.php:155 +msgid "Comment of validation" +msgstr "Commentaire de la validation" + +#: inc/notificationtargetorder.class.php:128 +msgid "Validation canceled successfully" +msgstr "Annulation de la validation effectuée" + +#: inc/notificationtargetorder.class.php:156 +msgid "Editor of validation" +msgstr "Editeur de la validation" + +#: inc/order_item.class.php:99 inc/order_item.class.php:1973 +msgid "Order item" +msgstr "Element de la commande" + +#: inc/order_item.class.php:115 inc/order_item.class.php:369 +#: inc/order_item.class.php:477 inc/order_item.class.php:803 +#: inc/order_item.class.php:1025 inc/order_item.class.php:1386 +#: inc/reference_supplier.class.php:99 inc/reference_supplier.class.php:225 +#: inc/reference_supplier.class.php:268 inc/reference_supplier.class.php:485 +#: inc/reference.class.php:183 +msgid "Unit price tax free" +msgstr "Prix unitaire (HT)" + +#: inc/order_item.class.php:160 inc/order_item.class.php:471 +msgid "Product name" +msgstr "Nom du produit" + +#: inc/order_item.class.php:168 inc/order_item.class.php:483 +#: inc/reference_supplier.class.php:90 inc/reference_supplier.class.php:216 +#: inc/reference.class.php:195 +msgid "Manufacturer's product reference" +msgstr "Référence produit fournisseur" + +#: inc/order_item.class.php:195 +msgid "Analytic Nature" +msgstr "Nature analytique" + +#: inc/order_item.class.php:253 +msgid "Some fields cannont be modified because they belong to an order" +msgstr "Certains champs ne peuvent-être modifiés : ils proviennent d'une commande" + +#: inc/order_item.class.php:358 +msgid "Add to the order from the catalog" +msgstr "Ajouter à une commande du catalogue" + +#: inc/order_item.class.php:364 inc/order_item.class.php:1576 +#: inc/reference_supplier.class.php:250 inc/reference_supplier.class.php:267 +#: inc/reference_supplier.class.php:482 inc/reference_supplier.class.php:484 +#: inc/reference.class.php:44 inc/reference.class.php:61 inc/link.class.php:78 +#: inc/link.class.php:381 inc/bill.class.php:379 inc/reception.class.php:349 +msgid "Product reference" +msgstr "Référence produit" + +#: inc/order_item.class.php:453 inc/order_item.class.php:589 +msgid "Please select a supplier" +msgstr "Veuillez sélectionner un fournisseur" + +#: inc/order_item.class.php:466 +msgid "Add to the order free items" +msgstr "Ajouter les items gratuits à la commande" + +#: inc/order_item.class.php:480 +msgid "Add the reference" +msgstr "Ajouter une référence" + +#: inc/order_item.class.php:610 inc/order_item.class.php:623 +msgid "An analytic nature is mandatory !" +msgstr "Une nature analytique est obligatoire !" + +#: inc/order_item.class.php:780 inc/order_item.class.php:1562 +#: inc/link.class.php:317 inc/bill.class.php:363 inc/reception.class.php:319 +msgid "No item to take delivery of" +msgstr "Pas de matériel à réceptionner" + +#: inc/order_item.class.php:802 inc/reference.class.php:154 +#: inc/reference.class.php:577 +msgid "Manufacturer reference" +msgstr "Référence constructeur" + +#: inc/order_item.class.php:810 inc/order_item.class.php:1002 +#: inc/order_item.class.php:1204 +msgid "Do you really want to update this item ?" +msgstr "Souhaitez-vous vraiment mettre à jour cette référence commandée ? " + +#: inc/order_item.class.php:993 inc/order_item.class.php:1195 +msgid "" +"Do you really want to delete these details ? Delivered items will not be " +"linked to order !" +msgstr "Voulez vous vraiment supprimer ce(s) détail(s) ? Les matériels livrés ne seront plus liés à la commande !" + +#: inc/order_item.class.php:1028 inc/order_item.class.php:1413 +msgid "Discounted price tax free" +msgstr "Prix remisé (HT)" + +#: inc/order_item.class.php:1297 +msgid "Order informations" +msgstr "Informations sur la commande" + +#: inc/order_item.class.php:1473 +msgid "Payment status" +msgstr "Statut facturation" + +#: inc/order_item.class.php:1486 +msgid "Paid value" +msgstr "Valeur payée" + +#: inc/order_item.class.php:1605 inc/order_item.class.php:1693 +#: inc/bill.class.php:47 inc/bill.class.php:135 inc/bill.class.php:409 +#: inc/reception.class.php:248 +msgid "Bill" +msgstr "Facture" + +#: inc/reference_supplier.class.php:476 +msgid "List references" +msgstr "Liste des références" + +#: inc/reference.class.php:302 +msgid "Cannot create reference without a name" +msgstr "Impossible de créer une référence sans nom" + +#: inc/reference.class.php:307 +msgid "Cannot create reference without a type" +msgstr "Impossible de créer une référence sans type" + +#: inc/reference.class.php:315 +msgid "A reference with the same name still exists" +msgstr "Une référence du même nom existe déjà" + +#: inc/reference.class.php:327 +msgid "Reference(s) in use" +msgstr "Référence(s) actuellement utilisée(s)" + +#: inc/reference.class.php:838 +msgid "Copy of" +msgstr "Copie de" + +#: inc/reference.class.php:862 +msgid "Select the wanted item type" +msgstr "Sélectionnez le type de matériel souhaité" + +#: inc/reference.class.php:915 inc/reference.class.php:916 +#: inc/reference.class.php:934 +msgid "View by item type" +msgstr "Vue par type de matériel" + +#: inc/reference.class.php:991 +msgid "Copy reference" +msgstr "Copier la référence" + +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" +msgstr "Vous ne pouvez pas supprimer ce statut" + +#: inc/orderstate.class.php:87 +msgid "Draft" +msgstr "En cours d'édition" + +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" +msgstr "En attente d'approbation" + +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Validée" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" +msgstr "En cours de livraison" + +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Livrée" + +#: inc/orderstate.class.php:92 +msgid "Canceled" +msgstr "Annulée" + +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Payée" + +#: inc/link.class.php:48 +msgid "Generation" +msgstr "Génération" + +#: inc/link.class.php:75 inc/link.class.php:510 +msgid "Generate item" +msgstr "Générer matériel associé" + +#: inc/link.class.php:511 +msgid "Link to an existing item" +msgstr "Lier à un matériel existant" + +#: inc/link.class.php:512 +msgid "Delete item link" +msgstr "Supprimer le lien avec le matériel" + +#: inc/link.class.php:588 +msgid "Cannot link several items to one detail line" +msgstr "Impossible de lier le même matériel à plusieurs lignes détail" + +#: inc/link.class.php:599 +msgid "Cannot link items not delivered" +msgstr "Impossible de lier du matériel non réceptionné" + +#: inc/link.class.php:713 +msgid "No associated item" +msgstr "Aucun matériel associé" + +#: inc/link.class.php:953 inc/link.class.php:1023 inc/link.class.php:1031 +#: inc/link.class.php:1035 +msgid "Item linked to order" +msgstr "Matériel lié à la commande" + +#: inc/link.class.php:1037 +msgid "Item already linked to another one" +msgstr "Matériel déjà lié à un objet d'inventaire" + +#: inc/link.class.php:1074 inc/link.class.php:1079 inc/link.class.php:1100 +#: inc/link.class.php:1105 +msgid "Item unlink form order" +msgstr "Matériel délié de la commande" + +#: inc/link.class.php:1097 +msgid "One or several selected rows haven't linked items" +msgstr "Une ou plusieurs lignes sélectionnées n'ont pas de matériel associé" + +#: inc/link.class.php:1277 inc/link.class.php:1281 +msgid "Item generated by using order" +msgstr "Matériel généré à partir de la commande" + +#: inc/link.class.php:1288 +msgid "Item successfully selected" +msgstr "Matériel(s) généré(s) avec succès" + +#: inc/config.class.php:103 +msgid "Plugin configuration" +msgstr "Configuration du plugin" + +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "TVA par défaut" + +#: inc/config.class.php:118 +msgid "Use validation process" +msgstr "Utiliser le circuit de validation" + +#: inc/config.class.php:125 +msgid "Order generation in ODT" +msgstr "Génération d'un bon de commande en ODT" + +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" +msgstr "Activer la qualité des fournisseurs" + +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" +msgstr "Afficher les informations fournisseur de la commande" + +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" +msgstr "Couleur lorsque la date de livraison estimée est dépassée" + +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" +msgstr "Copier les documents de la commande à la génération d'un matériel" + +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" +msgstr "Rubrique par défaut pour l'ajout de documents à une commande" + +#: inc/config.class.php:198 +msgid "Hide inactive budgets" +msgstr "Ne pas afficher les budgets ayant expiré" + +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" +msgstr "Transmettre les changements de budget aux assets associés" + +#: inc/config.class.php:212 +msgid "Display account section on order form" +msgstr "Afficher la section du compte sur la commande de" + +#: inc/config.class.php:219 +msgid "Set account section as mandatory on order form" +msgstr "Paramétrer une section du compte comme obligatoire sur le formulaire de commande" + +#: inc/config.class.php:226 +msgid "Use free references" +msgstr "Utiliser liste de référence" + +#: inc/config.class.php:233 +msgid "Rename documents added in order" +msgstr "Renommer le documents ajouter à la commande" + +#: inc/config.class.php:241 +msgid "Automatic actions when delivery" +msgstr "Actions automatiques lors de la réception" + +#: inc/config.class.php:250 +msgid "Display analytic nature on item form" +msgstr "Afficher la nature analytique du formulaire d’item" + +#: inc/config.class.php:257 +msgid "Set analytic nature as mandatory on item form" +msgstr "Paramétrer la nature analytique comme obligatoire sur l’item" + +#: inc/config.class.php:264 inc/reception.class.php:561 +msgid "Enable automatic generation" +msgstr "Activer la génération automatique" + +#: inc/config.class.php:269 +msgid "Asked" +msgstr "Demander" + +#: inc/config.class.php:275 +msgid "Default state" +msgstr "Statut par défaut" + +#: inc/config.class.php:286 +msgid "Add order location to item" +msgstr "Ajouter le lieu de la commande à l'élément" + +#: inc/config.class.php:293 +msgid "Add billing details to item" +msgstr "Ajouter les détails de facturation à l'élément" + +#: inc/config.class.php:300 inc/config.class.php:789 +#: inc/reception.class.php:567 +msgid "Default name" +msgstr "Nom par défaut" + +#: inc/config.class.php:307 inc/config.class.php:797 +#: inc/reception.class.php:570 +msgid "Default serial number" +msgstr "Numéro de série par défaut" + +#: inc/config.class.php:314 inc/config.class.php:805 +#: inc/reception.class.php:573 +msgid "Default inventory number" +msgstr "Numéro d'inventaire par défaut" + +#: inc/config.class.php:338 +msgid "Order lifecycle" +msgstr "Cycle de vie d'une commande" + +#: inc/config.class.php:342 +msgid "State before validation" +msgstr "Statut avant la validation" + +#: inc/config.class.php:352 +msgid "Waiting for validation state" +msgstr "Statut en attente de validation" + +#: inc/config.class.php:362 +msgid "Validated order state" +msgstr "Statut lorsque la commande est validée" + +#: inc/config.class.php:372 +msgid "Order being delivered state" +msgstr "Statut lorsqu'au moins un matériel est livré" + +#: inc/config.class.php:382 +msgid "Order delivered state" +msgstr "Statut lorsque tous les matériels sont livrés" + +#: inc/config.class.php:392 +msgid "Order paied state" +msgstr "Statut lorsque la commande est payée" + +#: inc/config.class.php:402 +msgid "Canceled order state" +msgstr "Statut lorsque la commande est annulée" + +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" +msgstr "un numéro de facture est obligatoire" + +#: inc/reception.class.php:53 +msgid "Delivery" +msgstr "Livraison" + +#: inc/reception.class.php:201 inc/reception.class.php:612 +msgid "Taken delivery" +msgstr "Réceptionné" + +#: inc/reception.class.php:350 +msgid "Delivered items" +msgstr "Matériel(s) réceptionné(s)" + +#: inc/reception.class.php:609 +msgid "Waiting for delivery" +msgstr "En attente de livraison" + +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" +msgstr "Il n'y a pas assez de matériels à réceptionner" + +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" +msgstr "Matériel(s) réceptionné(s) avec succès" + +#: inc/reception.class.php:784 +msgid "Item already taken delivery" +msgstr "Matériel(s) déjà réceptionné(s)" + +#: inc/reception.class.php:950 +msgid "Item delivered" +msgstr "Réception matériel(s)" + +#: inc/billstate.class.php:59 +msgid "Being paid" +msgstr "En cours de paiement" + +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "Non payée" From 1d9d0a4bcc098c3ffe6dc295432698538115ce2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Anne?= Date: Thu, 17 Jun 2021 08:30:51 +0200 Subject: [PATCH 6/7] Automatically build and draft release on tag push --- .github/workflows/release.yml | 40 ++ composer.lock | 917 ++++++++++++++++++---------------- 2 files changed, 522 insertions(+), 435 deletions(-) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000000..a8f5e15afc --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,40 @@ +name: "Plugin release" + +on: + push: + tags: + - '*' + +jobs: + create-release: + name: "Create release" + runs-on: "ubuntu-latest" + steps: + - name: "Extract tag name" + run: | + echo "tag_name=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV + - name: "Checkout" + uses: "actions/checkout@v2" + - name: "Build package" + id: "build-package" + uses: "glpi-project/tools/github-actions/build-package@0.1.15" + with: + plugin-version: ${{ env.tag_name }} + - name: "Create release" + id: "create-release" + uses: "actions/create-release@v1" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ env.tag_name }} + release_name: ${{ env.tag_name }} + draft: true + - name: "Attach package to release" + uses: "actions/upload-release-asset@v1" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create-release.outputs.upload_url }} + asset_path: ${{ steps.build-package.outputs.package-path }} + asset_name: ${{ steps.build-package.outputs.package-basename }} + asset_content_type: " application/x-bzip2" diff --git a/composer.lock b/composer.lock index 2817b6bbe0..40a0f7cd35 100644 --- a/composer.lock +++ b/composer.lock @@ -68,48 +68,35 @@ "packages-dev": [ { "name": "consolidation/annotated-command", - "version": "4.1.1", + "version": "4.2.4", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "efc58dc0f34a45539787c5190b41b5d2a50a08da" + "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/efc58dc0f34a45539787c5190b41b5d2a50a08da", - "reference": "efc58dc0f34a45539787c5190b41b5d2a50a08da", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/ec297e05cb86557671c2d6cbb1bebba6c7ae2c60", + "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60", "shasum": "" }, "require": { "consolidation/output-formatters": "^4.1.1", "php": ">=7.1.3", "psr/log": "^1|^2", - "symfony/console": "^4.4.8|^5", + "symfony/console": "^4.4.8|~5.1.0", "symfony/event-dispatcher": "^4.4.8|^5", "symfony/finder": "^4.4.8|^5" }, "require-dev": { - "g1a/composer-test-scenarios": "^3", - "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^6", - "squizlabs/php_codesniffer": "^3" + "phpunit/phpunit": ">=7.5.20", + "squizlabs/php_codesniffer": "^3", + "yoast/phpunit-polyfills": "^0.2.0" }, "type": "library", "extra": { - "scenarios": { - "symfony4": { - "require": { - "symfony/console": "^4.0" - }, - "config": { - "platform": { - "php": "7.1.3" - } - } - } - }, "branch-alias": { - "dev-master": "4.x-dev" + "dev-main": "4.x-dev" } }, "autoload": { @@ -128,69 +115,48 @@ } ], "description": "Initialize Symfony Console commands from annotated command class methods.", - "time": "2020-05-27T21:11:36+00:00" + "support": { + "issues": "https://github.com/consolidation/annotated-command/issues", + "source": "https://github.com/consolidation/annotated-command/tree/4.2.4" + }, + "time": "2020-12-10T16:56:39+00:00" }, { "name": "consolidation/config", - "version": "1.2.1", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/consolidation/config.git", - "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1" + "reference": "9a2c2a7b2aea1b3525984a4378743a8b74c14e1c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1", - "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1", + "url": "https://api.github.com/repos/consolidation/config/zipball/9a2c2a7b2aea1b3525984a4378743a8b74c14e1c", + "reference": "9a2c2a7b2aea1b3525984a4378743a8b74c14e1c", "shasum": "" }, "require": { "dflydev/dot-access-data": "^1.1.0", "grasmash/expander": "^1", - "php": ">=5.4.0" + "php": ">=7.1.3", + "psr/log": "^1.1", + "symfony/event-dispatcher": "^4||^5" }, "require-dev": { - "g1a/composer-test-scenarios": "^3", - "php-coveralls/php-coveralls": "^1", - "phpunit/phpunit": "^5", - "squizlabs/php_codesniffer": "2.*", - "symfony/console": "^2.5|^3|^4", - "symfony/yaml": "^2.8.11|^3|^4" + "phpunit/phpunit": ">=7.5.20", + "squizlabs/php_codesniffer": "^3", + "symfony/console": "^4||^5", + "symfony/yaml": "^4||^5", + "yoast/phpunit-polyfills": "^0.2.0" }, "suggest": { + "symfony/event-dispatcher": "Required to inject configuration into Command options", "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader" }, "type": "library", "extra": { - "scenarios": { - "symfony4": { - "require-dev": { - "symfony/console": "^4.0" - }, - "config": { - "platform": { - "php": "7.1.3" - } - } - }, - "symfony2": { - "require-dev": { - "symfony/console": "^2.8", - "symfony/event-dispatcher": "^2.8", - "phpunit/phpunit": "^4.8.36" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.4.8" - } - } - } - }, "branch-alias": { - "dev-master": "1.x-dev" + "dev-main": "2.x-dev" } }, "autoload": { @@ -209,20 +175,24 @@ } ], "description": "Provide configuration services for a commandline tool.", - "time": "2019-03-03T19:37:04+00:00" + "support": { + "issues": "https://github.com/consolidation/config/issues", + "source": "https://github.com/consolidation/config/tree/2.0.1" + }, + "time": "2020-12-06T00:03:30+00:00" }, { "name": "consolidation/log", - "version": "2.0.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/consolidation/log.git", - "reference": "ba0bf6af1fbd09ed4dc18fc2f27b12ceff487cbf" + "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/log/zipball/ba0bf6af1fbd09ed4dc18fc2f27b12ceff487cbf", - "reference": "ba0bf6af1fbd09ed4dc18fc2f27b12ceff487cbf", + "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1", + "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1", "shasum": "" }, "require": { @@ -231,27 +201,14 @@ "symfony/console": "^4|^5" }, "require-dev": { - "g1a/composer-test-scenarios": "^3", - "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^6", - "squizlabs/php_codesniffer": "^3" + "phpunit/phpunit": ">=7.5.20", + "squizlabs/php_codesniffer": "^3", + "yoast/phpunit-polyfills": "^0.2.0" }, "type": "library", "extra": { - "scenarios": { - "symfony4": { - "require-dev": { - "symfony/console": "^4" - }, - "config": { - "platform": { - "php": "7.1.3" - } - } - } - }, "branch-alias": { - "dev-master": "2.x-dev" + "dev-main": "2.x-dev" } }, "autoload": { @@ -270,20 +227,24 @@ } ], "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.", - "time": "2020-05-27T17:06:13+00:00" + "support": { + "issues": "https://github.com/consolidation/log/issues", + "source": "https://github.com/consolidation/log/tree/2.0.2" + }, + "time": "2020-12-10T16:26:23+00:00" }, { "name": "consolidation/output-formatters", - "version": "4.1.1", + "version": "4.1.2", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "9deeddd6a916d0a756b216a8b40ce1016e17c0b9" + "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/9deeddd6a916d0a756b216a8b40ce1016e17c0b9", - "reference": "9deeddd6a916d0a756b216a8b40ce1016e17c0b9", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9", + "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9", "shasum": "" }, "require": { @@ -293,32 +254,20 @@ "symfony/finder": "^4|^5" }, "require-dev": { - "g1a/composer-test-scenarios": "^3", - "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^6", + "php-coveralls/php-coveralls": "^2.4.2", + "phpunit/phpunit": ">=7", "squizlabs/php_codesniffer": "^3", "symfony/var-dumper": "^4", - "symfony/yaml": "^4" + "symfony/yaml": "^4", + "yoast/phpunit-polyfills": "^0.2.0" }, "suggest": { "symfony/var-dumper": "For using the var_dump formatter" }, "type": "library", "extra": { - "scenarios": { - "symfony4": { - "require": { - "symfony/console": "^4.0" - }, - "config": { - "platform": { - "php": "7.1.3" - } - } - } - }, "branch-alias": { - "dev-master": "4.x-dev" + "dev-main": "4.x-dev" } }, "autoload": { @@ -337,54 +286,57 @@ } ], "description": "Format text by applying transformations provided by plug-in formatters.", - "time": "2020-05-27T20:51:17+00:00" + "support": { + "issues": "https://github.com/consolidation/output-formatters/issues", + "source": "https://github.com/consolidation/output-formatters/tree/4.1.2" + }, + "time": "2020-12-12T19:04:59+00:00" }, { "name": "consolidation/robo", - "version": "1.4.12", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/consolidation/Robo.git", - "reference": "eb45606f498b3426b9a98b7c85e300666a968e51" + "reference": "734620ad3f9bb457fda1a52338b42439115cf941" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51", - "reference": "eb45606f498b3426b9a98b7c85e300666a968e51", + "url": "https://api.github.com/repos/consolidation/Robo/zipball/734620ad3f9bb457fda1a52338b42439115cf941", + "reference": "734620ad3f9bb457fda1a52338b42439115cf941", "shasum": "" }, "require": { - "consolidation/annotated-command": "^2.11.0|^4.1", - "consolidation/config": "^1.2.1", - "consolidation/log": "^1.1.1|^2", - "consolidation/output-formatters": "^3.1.13|^4.1", - "consolidation/self-update": "^1.1.5", - "grasmash/yaml-expander": "^1.4", - "league/container": "^2.4.1", - "php": ">=5.5.0", - "symfony/console": "^2.8|^3|^4", - "symfony/event-dispatcher": "^2.5|^3|^4", - "symfony/filesystem": "^2.5|^3|^4", - "symfony/finder": "^2.5|^3|^4", - "symfony/process": "^2.5|^3|^4" + "consolidation/annotated-command": "^4.2.4", + "consolidation/config": "^1.2.1|^2.0.1", + "consolidation/log": "^1.1.1|^2.0.2", + "consolidation/output-formatters": "^4.1.2", + "consolidation/self-update": "^1.2", + "league/container": "^3.3.1", + "php": ">=7.1.3", + "symfony/console": "^4.4.19 || ^5", + "symfony/event-dispatcher": "^4.4.19 || ^5", + "symfony/filesystem": "^4.4.9 || ^5", + "symfony/finder": "^4.4.9 || ^5", + "symfony/process": "^4.4.9 || ^5", + "symfony/yaml": "^4.4 || ^5" }, - "replace": { - "codegyre/robo": "< 1.0" + "conflict": { + "codegyre/robo": "*" }, "require-dev": { - "g1a/composer-test-scenarios": "^3", "natxet/cssmin": "3.0.4", "patchwork/jsqueeze": "^2", "pear/archive_tar": "^1.4.4", - "php-coveralls/php-coveralls": "^1", - "phpunit/phpunit": "^5.7.27", - "squizlabs/php_codesniffer": "^3" + "phpunit/phpunit": "^7.5.20 | ^8", + "squizlabs/php_codesniffer": "^3", + "yoast/phpunit-polyfills": "^0.2.0" }, "suggest": { - "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch", - "natxet/CssMin": "For minifying CSS files in taskMinify", + "natxet/cssmin": "For minifying CSS files in taskMinify", "patchwork/jsqueeze": "For minifying JS files in taskMinify", - "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively." + "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.", + "totten/lurkerlite": "For monitoring filesystem changes in taskWatch" }, "bin": [ "robo" @@ -394,36 +346,27 @@ "scenarios": { "symfony4": { "require": { - "symfony/console": "^4" - }, - "config": { - "platform": { - "php": "7.1.3" - } - } - }, - "symfony2": { - "require": { - "symfony/console": "^2.8" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.36" + "symfony/console": "^4.4.11", + "symfony/event-dispatcher": "^4.4.11", + "symfony/filesystem": "^4.4.11", + "symfony/finder": "^4.4.11", + "symfony/process": "^4.4.11", + "phpunit/phpunit": "^6", + "nikic/php-parser": "^2" }, "remove": [ - "php-coveralls/php-coveralls" + "codeception/phpunit-wrapper" ], "config": { "platform": { - "php": "5.5.9" + "php": "7.1.3" } - }, - "scenario-options": { - "create-lockfile": "false" } } }, "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "2.x-dev", + "dev-main": "2.x-dev" } }, "autoload": { @@ -442,7 +385,11 @@ } ], "description": "Modern task runner", - "time": "2020-02-18T17:31:26+00:00" + "support": { + "issues": "https://github.com/consolidation/Robo/issues", + "source": "https://github.com/consolidation/Robo/tree/3.0.3" + }, + "time": "2021-02-21T19:19:43+00:00" }, { "name": "consolidation/self-update", @@ -492,38 +439,81 @@ } ], "description": "Provides a self:update command for Symfony Console applications.", + "support": { + "issues": "https://github.com/consolidation/self-update/issues", + "source": "https://github.com/consolidation/self-update/tree/1.2.0" + }, "time": "2020-04-13T02:49:20+00:00" }, { - "name": "container-interop/container-interop", - "version": "1.2.0", + "name": "dealerdirect/phpcodesniffer-composer-installer", + "version": "v0.7.1", "source": { "type": "git", - "url": "https://github.com/container-interop/container-interop.git", - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8" + "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", + "reference": "fe390591e0241955f22eb9ba327d137e501c771c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8", - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8", + "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/fe390591e0241955f22eb9ba327d137e501c771c", + "reference": "fe390591e0241955f22eb9ba327d137e501c771c", "shasum": "" }, "require": { - "psr/container": "^1.0" + "composer-plugin-api": "^1.0 || ^2.0", + "php": ">=5.3", + "squizlabs/php_codesniffer": "^2.0 || ^3.0 || ^4.0" + }, + "require-dev": { + "composer/composer": "*", + "phpcompatibility/php-compatibility": "^9.0", + "sensiolabs/security-checker": "^4.1.0" + }, + "type": "composer-plugin", + "extra": { + "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" }, - "type": "library", "autoload": { "psr-4": { - "Interop\\Container\\": "src/Interop/Container/" + "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "Promoting the interoperability of container objects (DIC, SL, etc.)", - "homepage": "https://github.com/container-interop/container-interop", - "time": "2017-02-14T19:40:03+00:00" + "authors": [ + { + "name": "Franck Nijhof", + "email": "franck.nijhof@dealerdirect.com", + "homepage": "http://www.frenck.nl", + "role": "Developer / IT Manager" + } + ], + "description": "PHP_CodeSniffer Standards Composer Installer Plugin", + "homepage": "http://www.dealerdirect.com", + "keywords": [ + "PHPCodeSniffer", + "PHP_CodeSniffer", + "code quality", + "codesniffer", + "composer", + "installer", + "phpcs", + "plugin", + "qa", + "quality", + "standard", + "standards", + "style guide", + "stylecheck", + "tests" + ], + "support": { + "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues", + "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer" + }, + "time": "2020-12-07T18:04:37+00:00" }, { "name": "dflydev/dot-access-data", @@ -582,24 +572,29 @@ "dot", "notation" ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master" + }, "time": "2017-01-20T21:14:22+00:00" }, { "name": "glpi-project/coding-standard", - "version": "0.7.2", + "version": "0.8", "source": { "type": "git", "url": "https://github.com/glpi-project/coding-standard.git", - "reference": "dbba6566e1ce7f7d0778794cd6e93bc07080c8c7" + "reference": "a34ec2abf52e720ef700f59a91a4dde963b9f33e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/glpi-project/coding-standard/zipball/dbba6566e1ce7f7d0778794cd6e93bc07080c8c7", - "reference": "dbba6566e1ce7f7d0778794cd6e93bc07080c8c7", + "url": "https://api.github.com/repos/glpi-project/coding-standard/zipball/a34ec2abf52e720ef700f59a91a4dde963b9f33e", + "reference": "a34ec2abf52e720ef700f59a91a4dde963b9f33e", "shasum": "" }, "require": { - "squizlabs/php_codesniffer": "^3.5" + "slevomat/coding-standard": "^6.3", + "squizlabs/php_codesniffer": "^3.5.5" }, "type": "library", "notification-url": "https://packagist.org/downloads/", @@ -619,32 +614,35 @@ "glpi", "phpcs" ], - "time": "2019-10-31T10:30:33+00:00" + "support": { + "issues": "https://github.com/glpi-project/coding-standard/issues", + "source": "https://github.com/glpi-project/coding-standard" + }, + "time": "2020-06-03T08:54:27+00:00" }, { "name": "glpi-project/tools", - "version": "0.1.13", + "version": "0.1.16", "source": { "type": "git", "url": "https://github.com/glpi-project/tools.git", - "reference": "2028ecf9acd8b838cff37771dcab77ced9391f41" + "reference": "218e67a88ed2f5db7085af80e39522a138a262d8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/glpi-project/tools/zipball/2028ecf9acd8b838cff37771dcab77ced9391f41", - "reference": "2028ecf9acd8b838cff37771dcab77ced9391f41", + "url": "https://api.github.com/repos/glpi-project/tools/zipball/218e67a88ed2f5db7085af80e39522a138a262d8", + "reference": "218e67a88ed2f5db7085af80e39522a138a262d8", "shasum": "" }, "require": { - "consolidation/robo": "^1.3", - "glpi-project/coding-standard": "^0.7", - "natxet/cssmin": "^3.0", - "patchwork/jsqueeze": "^1.0" + "consolidation/robo": "^2.0 || ^3.0", + "glpi-project/coding-standard": "^0.8", + "symfony/console": "^4.4 || ^5.0" }, "bin": [ - "tools/plugin-release", + "bin/licence-headers-check", "tools/extract_template.sh", - "tools/modify_headers.pl" + "tools/plugin-release" ], "type": "library", "autoload": { @@ -669,7 +667,11 @@ "plugins", "tools" ], - "time": "2020-06-19T10:29:26+00:00" + "support": { + "issues": "https://github.com/glpi-project/tools/issues", + "source": "https://github.com/glpi-project/tools" + }, + "time": "2021-03-03T08:05:40+00:00" }, { "name": "grasmash/expander", @@ -716,87 +718,47 @@ } ], "description": "Expands internal property references in PHP arrays file.", - "time": "2017-12-21T22:14:55+00:00" - }, - { - "name": "grasmash/yaml-expander", - "version": "1.4.0", - "source": { - "type": "git", - "url": "https://github.com/grasmash/yaml-expander.git", - "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1", - "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1", - "shasum": "" - }, - "require": { - "dflydev/dot-access-data": "^1.1.0", - "php": ">=5.4", - "symfony/yaml": "^2.8.11|^3|^4" - }, - "require-dev": { - "greg-1-anderson/composer-test-scenarios": "^1", - "phpunit/phpunit": "^4.8|^5.5.4", - "satooshi/php-coveralls": "^1.0.2|dev-master", - "squizlabs/php_codesniffer": "^2.7" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Grasmash\\YamlExpander\\": "src/" - } + "support": { + "issues": "https://github.com/grasmash/expander/issues", + "source": "https://github.com/grasmash/expander/tree/master" }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Matthew Grasmick" - } - ], - "description": "Expands internal property references in a yaml file.", - "time": "2017-12-16T16:06:03+00:00" + "time": "2017-12-21T22:14:55+00:00" }, { "name": "league/container", - "version": "2.4.1", + "version": "3.3.5", "source": { "type": "git", "url": "https://github.com/thephpleague/container.git", - "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0" + "reference": "048ab87810f508dbedbcb7ae941b606eb8ee353b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0", - "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0", + "url": "https://api.github.com/repos/thephpleague/container/zipball/048ab87810f508dbedbcb7ae941b606eb8ee353b", + "reference": "048ab87810f508dbedbcb7ae941b606eb8ee353b", "shasum": "" }, "require": { - "container-interop/container-interop": "^1.2", - "php": "^5.4.0 || ^7.0" + "php": "^7.0 || ^8.0", + "psr/container": "^1.0.0 || ^2.0.0" }, "provide": { - "container-interop/container-interop-implementation": "^1.2", "psr/container-implementation": "^1.0" }, "replace": { "orno/di": "~2.0" }, "require-dev": { - "phpunit/phpunit": "4.*" + "phpunit/phpunit": "^6.0", + "roave/security-advisories": "dev-master", + "scrutinizer/ocular": "^1.8", + "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { "branch-alias": { + "dev-master": "3.x-dev", + "dev-3.x": "3.x-dev", "dev-2.x": "2.x-dev", "dev-1.x": "1.x-dev" } @@ -829,109 +791,131 @@ "provider", "service" ], - "time": "2017-05-10T09:20:27+00:00" + "support": { + "issues": "https://github.com/thephpleague/container/issues", + "source": "https://github.com/thephpleague/container/tree/3.3.5" + }, + "funding": [ + { + "url": "https://github.com/philipobenito", + "type": "github" + } + ], + "time": "2021-03-16T09:42:56+00:00" }, { - "name": "natxet/CssMin", - "version": "v3.0.6", + "name": "phpstan/phpdoc-parser", + "version": "0.4.9", "source": { "type": "git", - "url": "https://github.com/natxet/CssMin.git", - "reference": "d5d9f4c3e5cedb1ae96a95a21731f8790e38f1dd" + "url": "https://github.com/phpstan/phpdoc-parser.git", + "reference": "98a088b17966bdf6ee25c8a4b634df313d8aa531" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/natxet/CssMin/zipball/d5d9f4c3e5cedb1ae96a95a21731f8790e38f1dd", - "reference": "d5d9f4c3e5cedb1ae96a95a21731f8790e38f1dd", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/98a088b17966bdf6ee25c8a4b634df313d8aa531", + "reference": "98a088b17966bdf6ee25c8a4b634df313d8aa531", "shasum": "" }, "require": { - "php": ">=5.0" + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "consistence/coding-standard": "^3.5", + "ergebnis/composer-normalize": "^2.0.2", + "jakub-onderka/php-parallel-lint": "^0.9.2", + "phing/phing": "^2.16.0", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12.26", + "phpstan/phpstan-strict-rules": "^0.12", + "phpunit/phpunit": "^6.3", + "slevomat/coding-standard": "^4.7.2", + "symfony/process": "^4.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "0.4-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "PHPStan\\PhpDocParser\\": [ + "src/" + ] + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "authors": [ - { - "name": "Joe Scylla", - "email": "joe.scylla@gmail.com", - "homepage": "https://profiles.google.com/joe.scylla" - } - ], - "description": "Minifying CSS", - "homepage": "http://code.google.com/p/cssmin/", - "keywords": [ - "css", - "minify" - ], - "time": "2018-01-09T11:15:01+00:00" + "description": "PHPDoc parser with support for nullable, intersection and generic types", + "support": { + "issues": "https://github.com/phpstan/phpdoc-parser/issues", + "source": "https://github.com/phpstan/phpdoc-parser/tree/master" + }, + "time": "2020-08-03T20:32:43+00:00" }, { - "name": "patchwork/jsqueeze", - "version": "v1.0.7", + "name": "psr/container", + "version": "1.1.1", "source": { "type": "git", - "url": "https://github.com/tchwork/jsqueeze.git", - "reference": "f90a933213534b93e4ff3c2c3026ff7458f7721b" + "url": "https://github.com/php-fig/container.git", + "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tchwork/jsqueeze/zipball/f90a933213534b93e4ff3c2c3026ff7458f7721b", - "reference": "f90a933213534b93e4ff3c2c3026ff7458f7721b", + "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf", + "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf", "shasum": "" }, "require": { - "php": ">=5.1.4" + "php": ">=7.2.0" }, "type": "library", "autoload": { - "psr-0": { - "JSqueeze": "class/" + "psr-4": { + "Psr\\Container\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "(Apache-2.0 or GPL-2.0)" + "MIT" ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "Efficient JavaScript minification in PHP", - "homepage": "https://github.com/tchwork/jsqueeze", + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", "keywords": [ - "compression", - "javascript", - "minification" + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" ], - "time": "2015-03-25T10:11:08+00:00" + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/1.1.1" + }, + "time": "2021-03-05T17:36:06+00:00" }, { - "name": "psr/container", - "version": "1.0.0", + "name": "psr/log", + "version": "1.1.4", "source": { "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + "url": "https://github.com/php-fig/log.git", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11", "shasum": "" }, "require": { @@ -940,12 +924,12 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.1.x-dev" } }, "autoload": { "psr-4": { - "Psr\\Container\\": "src/" + "Psr\\Log\\": "Psr/Log/" } }, "notification-url": "https://packagist.org/downloads/", @@ -955,79 +939,94 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], - "description": "Common Container Interface (PHP FIG PSR-11)", - "homepage": "https://github.com/php-fig/container", + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", "keywords": [ - "PSR-11", - "container", - "container-interface", - "container-interop", - "psr" + "log", + "psr", + "psr-3" ], - "time": "2017-02-14T16:28:37+00:00" + "support": { + "source": "https://github.com/php-fig/log/tree/1.1.4" + }, + "time": "2021-05-03T11:20:27+00:00" }, { - "name": "psr/log", - "version": "1.1.3", + "name": "slevomat/coding-standard", + "version": "6.4.1", "source": { "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" + "url": "https://github.com/slevomat/coding-standard.git", + "reference": "696dcca217d0c9da2c40d02731526c1e25b65346" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", + "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/696dcca217d0c9da2c40d02731526c1e25b65346", + "reference": "696dcca217d0c9da2c40d02731526c1e25b65346", "shasum": "" }, "require": { - "php": ">=5.3.0" + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7", + "php": "^7.1 || ^8.0", + "phpstan/phpdoc-parser": "0.4.5 - 0.4.9", + "squizlabs/php_codesniffer": "^3.5.6" }, - "type": "library", + "require-dev": { + "phing/phing": "2.16.3", + "php-parallel-lint/php-parallel-lint": "1.2.0", + "phpstan/phpstan": "0.12.48", + "phpstan/phpstan-deprecation-rules": "0.12.5", + "phpstan/phpstan-phpunit": "0.12.16", + "phpstan/phpstan-strict-rules": "0.12.5", + "phpunit/phpunit": "7.5.20|8.5.5|9.4.0" + }, + "type": "phpcodesniffer-standard", "extra": { "branch-alias": { - "dev-master": "1.1.x-dev" + "dev-master": "6.x-dev" } }, "autoload": { "psr-4": { - "Psr\\Log\\": "Psr/Log/" + "SlevomatCodingStandard\\": "SlevomatCodingStandard" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "authors": [ + "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.", + "support": { + "issues": "https://github.com/slevomat/coding-standard/issues", + "source": "https://github.com/slevomat/coding-standard/tree/6.4.1" + }, + "funding": [ { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "url": "https://github.com/kukulich", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard", + "type": "tidelift" } ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", - "keywords": [ - "log", - "psr", - "psr-3" - ], - "time": "2020-03-23T09:12:05+00:00" + "time": "2020-10-05T12:39:37+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.5.5", + "version": "3.6.0", "source": { "type": "git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6" + "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/73e2e7f57d958e7228fce50dc0c61f58f017f9f6", - "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ffced0d2c8fa8e6cdc4d695a743271fab6c38625", + "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625", "shasum": "" }, "require": { @@ -1065,20 +1064,25 @@ "phpcs", "standards" ], - "time": "2020-04-17T01:09:41+00:00" + "support": { + "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues", + "source": "https://github.com/squizlabs/PHP_CodeSniffer", + "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" + }, + "time": "2021-04-09T00:54:41+00:00" }, { "name": "symfony/console", - "version": "v4.4.10", + "version": "v4.4.25", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "326b064d804043005526f5a0494cfb49edb59bb0" + "reference": "a62acecdf5b50e314a4f305cd01b5282126f3095" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/326b064d804043005526f5a0494cfb49edb59bb0", - "reference": "326b064d804043005526f5a0494cfb49edb59bb0", + "url": "https://api.github.com/repos/symfony/console/zipball/a62acecdf5b50e314a4f305cd01b5282126f3095", + "reference": "a62acecdf5b50e314a4f305cd01b5282126f3095", "shasum": "" }, "require": { @@ -1113,11 +1117,6 @@ "symfony/process": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Console\\": "" @@ -1140,8 +1139,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Console Component", + "description": "Eases the creation of beautiful and testable command line interfaces", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/console/tree/v4.4.25" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1156,20 +1158,20 @@ "type": "tidelift" } ], - "time": "2020-05-30T20:06:45+00:00" + "time": "2021-05-26T11:20:16+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v4.4.10", + "version": "v4.4.25", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "a5370aaa7807c7a439b21386661ffccf3dff2866" + "reference": "047773e7016e4fd45102cedf4bd2558ae0d0c32f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a5370aaa7807c7a439b21386661ffccf3dff2866", - "reference": "a5370aaa7807c7a439b21386661ffccf3dff2866", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/047773e7016e4fd45102cedf4bd2558ae0d0c32f", + "reference": "047773e7016e4fd45102cedf4bd2558ae0d0c32f", "shasum": "" }, "require": { @@ -1187,6 +1189,7 @@ "psr/log": "~1.0", "symfony/config": "^3.4|^4.0|^5.0", "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/error-handler": "~3.4|~4.4", "symfony/expression-language": "^3.4|^4.0|^5.0", "symfony/http-foundation": "^3.4|^4.0|^5.0", "symfony/service-contracts": "^1.1|^2", @@ -1197,11 +1200,6 @@ "symfony/http-kernel": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\EventDispatcher\\": "" @@ -1224,8 +1222,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony EventDispatcher Component", + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.25" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1240,24 +1241,24 @@ "type": "tidelift" } ], - "time": "2020-05-20T08:37:50+00:00" + "time": "2021-05-26T17:39:37+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v1.1.7", + "version": "v1.1.9", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18" + "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18", - "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7", + "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": ">=7.1.3" }, "suggest": { "psr/event-dispatcher": "", @@ -1267,6 +1268,10 @@ "extra": { "branch-alias": { "dev-master": "1.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -1298,20 +1303,37 @@ "interoperability", "standards" ], - "time": "2019-09-17T09:54:03+00:00" + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-07-06T13:19:58+00:00" }, { "name": "symfony/filesystem", - "version": "v4.4.10", + "version": "v4.4.25", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "b27f491309db5757816db672b256ea2e03677d30" + "reference": "2d926ebd76f52352deb3c9577d8c1d4b96eae429" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30", - "reference": "b27f491309db5757816db672b256ea2e03677d30", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/2d926ebd76f52352deb3c9577d8c1d4b96eae429", + "reference": "2d926ebd76f52352deb3c9577d8c1d4b96eae429", "shasum": "" }, "require": { @@ -1319,11 +1341,6 @@ "symfony/polyfill-ctype": "~1.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Filesystem\\": "" @@ -1346,8 +1363,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Filesystem Component", + "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/filesystem/tree/v4.4.25" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1362,31 +1382,26 @@ "type": "tidelift" } ], - "time": "2020-05-30T18:50:54+00:00" + "time": "2021-05-26T17:30:55+00:00" }, { "name": "symfony/finder", - "version": "v4.4.10", + "version": "v4.4.25", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "5729f943f9854c5781984ed4907bbb817735776b" + "reference": "ed33314396d968a8936c95f5bd1b88bd3b3e94a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b", - "reference": "5729f943f9854c5781984ed4907bbb817735776b", + "url": "https://api.github.com/repos/symfony/finder/zipball/ed33314396d968a8936c95f5bd1b88bd3b3e94a3", + "reference": "ed33314396d968a8936c95f5bd1b88bd3b3e94a3", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": ">=7.1.3" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Finder\\": "" @@ -1409,8 +1424,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Finder Component", + "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v4.4.25" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1425,24 +1443,24 @@ "type": "tidelift" } ], - "time": "2020-03-27T16:54:36+00:00" + "time": "2021-05-26T11:20:16+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.17.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d" + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d", - "reference": "2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce", + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "suggest": { "ext-ctype": "For best performance" @@ -1450,7 +1468,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -1487,6 +1505,9 @@ "polyfill", "portable" ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1501,24 +1522,24 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:46:27+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.17.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "7110338d81ce1cbc3e273136e4574663627037a7" + "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7110338d81ce1cbc3e273136e4574663627037a7", - "reference": "7110338d81ce1cbc3e273136e4574663627037a7", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1", + "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "suggest": { "ext-mbstring": "For best performance" @@ -1526,7 +1547,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -1564,6 +1585,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1578,29 +1602,29 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:46:27+00:00" + "time": "2021-05-27T09:27:20+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.17.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "fa0837fe02d617d31fbb25f990655861bb27bd1a" + "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fa0837fe02d617d31fbb25f990655861bb27bd1a", - "reference": "fa0837fe02d617d31fbb25f990655861bb27bd1a", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010", + "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -1640,6 +1664,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1654,29 +1681,29 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:46:27+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.17.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2" + "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4a5b6bba3259902e386eb80dd1956181ee90b5b2", - "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0", + "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0", "shasum": "" }, "require": { - "php": ">=7.0.8" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -1720,6 +1747,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1734,31 +1764,26 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:46:27+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/process", - "version": "v4.4.10", + "version": "v4.4.25", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "c714958428a85c86ab97e3a0c96db4c4f381b7f5" + "reference": "cd61e6dd273975c6625316de9d141ebd197f93c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/c714958428a85c86ab97e3a0c96db4c4f381b7f5", - "reference": "c714958428a85c86ab97e3a0c96db4c4f381b7f5", + "url": "https://api.github.com/repos/symfony/process/zipball/cd61e6dd273975c6625316de9d141ebd197f93c9", + "reference": "cd61e6dd273975c6625316de9d141ebd197f93c9", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": ">=7.1.3" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Process\\": "" @@ -1781,8 +1806,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Process Component", + "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v4.4.25" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1797,24 +1825,24 @@ "type": "tidelift" } ], - "time": "2020-05-30T20:06:45+00:00" + "time": "2021-05-26T11:20:16+00:00" }, { "name": "symfony/service-contracts", - "version": "v1.1.8", + "version": "v1.1.9", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "ffc7f5692092df31515df2a5ecf3b7302b3ddacf" + "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/ffc7f5692092df31515df2a5ecf3b7302b3ddacf", - "reference": "ffc7f5692092df31515df2a5ecf3b7302b3ddacf", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b776d18b303a39f56c63747bcb977ad4b27aca26", + "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/container": "^1.0" }, "suggest": { @@ -1824,6 +1852,10 @@ "extra": { "branch-alias": { "dev-master": "1.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -1855,20 +1887,37 @@ "interoperability", "standards" ], - "time": "2019-10-14T12:27:06+00:00" + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v1.1.9" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-07-06T13:19:58+00:00" }, { "name": "symfony/yaml", - "version": "v4.4.10", + "version": "v4.4.25", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a" + "reference": "81cdac5536925c1c4b7b50aabc9ff6330b9eb5fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a", - "reference": "c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a", + "url": "https://api.github.com/repos/symfony/yaml/zipball/81cdac5536925c1c4b7b50aabc9ff6330b9eb5fc", + "reference": "81cdac5536925c1c4b7b50aabc9ff6330b9eb5fc", "shasum": "" }, "require": { @@ -1885,11 +1934,6 @@ "symfony/console": "For validating YAML files using the lint command" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Yaml\\": "" @@ -1912,8 +1956,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Yaml Component", + "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v4.4.25" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1928,7 +1975,7 @@ "type": "tidelift" } ], - "time": "2020-05-20T08:37:50+00:00" + "time": "2021-05-26T17:39:37+00:00" } ], "aliases": [], @@ -1945,5 +1992,5 @@ "platform-overrides": { "php": "7.2.0" }, - "plugin-api-version": "1.1.0" + "plugin-api-version": "2.0.0" } From c573666db0c9959eda1884f14008a0e17256cd0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Anne?= Date: Thu, 17 Jun 2021 09:11:06 +0200 Subject: [PATCH 7/7] Add 2.7.0 version definition --- plugin.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugin.xml b/plugin.xml index ae4719bc5b..33ad13cc3c 100644 --- a/plugin.xml +++ b/plugin.xml @@ -29,6 +29,11 @@ Benjamin Fontan + + 2.7.0 + ~9.5.0 + https://github.com/pluginsGLPI/order/releases/download/2.7.0/glpi-order-2.7.0.tar.bz2 + 2.6.0 ~9.5.0