From 56bb50adc355f0076419a6637081a0a68032eff8 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Thu, 22 Feb 2018 10:18:58 +0100 Subject: [PATCH 1/6] fix prototype of getTable --- inc/orderinjection.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/orderinjection.class.php b/inc/orderinjection.class.php index e4c3ab06df..470d813665 100644 --- a/inc/orderinjection.class.php +++ b/inc/orderinjection.class.php @@ -44,7 +44,7 @@ public function __construct() { * * @return string (table name) **/ - static function getTable() { + static function getTable($classname = null) { $parenttype = get_parent_class(); return $parenttype::getTable(); From 6d9423a8c0c28a95da9a7d84aad43c6cf274a90b Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Thu, 22 Feb 2018 10:21:25 +0100 Subject: [PATCH 2/6] fix prototype of getTable --- inc/referenceinjection.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/referenceinjection.class.php b/inc/referenceinjection.class.php index 4a8e58f255..8b413ebb9c 100644 --- a/inc/referenceinjection.class.php +++ b/inc/referenceinjection.class.php @@ -45,7 +45,7 @@ public function __construct() { * * @return string (table name) **/ - static function getTable() { + static function getTable($classname = null) { $parenttype = get_parent_class(); return $parenttype::getTable(); From 38e2a66cd792324a00a92470501989cf115be56b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Anne?= Date: Wed, 16 May 2018 11:31:56 +0200 Subject: [PATCH 3/6] Fix notification installation (use 9.2 data model) --- inc/notificationtargetorder.class.php | 73 ++++++++++++++++----------- 1 file changed, 44 insertions(+), 29 deletions(-) diff --git a/inc/notificationtargetorder.class.php b/inc/notificationtargetorder.class.php index 4bc3e2e4a9..1c1c510660 100644 --- a/inc/notificationtargetorder.class.php +++ b/inc/notificationtargetorder.class.php @@ -197,6 +197,10 @@ public static function install(Migration $migration) { $migration->displayMessage("Migrate PluginOrderOrder notifications"); $template = new NotificationTemplate(); + $translation = new NotificationTemplateTranslation(); + $notification = new Notification(); + $n_n_template = new Notification_NotificationTemplate(); + $templates_id = false; $query_id = "SELECT `id` FROM `glpi_notificationtemplates` @@ -218,7 +222,6 @@ public static function install(Migration $migration) { } if ($templates_id) { - $translation = new NotificationTemplateTranslation(); if (!countElementsInTable($translation->getTable(), "`notificationtemplates_id`='$templates_id'")) { $tmp = []; $tmp['notificationtemplates_id'] = $templates_id; @@ -257,21 +260,26 @@ public static function install(Migration $migration) { 'Cancel Order Validation' => 'undovalidation', 'Cancel Order' => 'cancel', ]; - $notification = new Notification(); foreach ($notifs as $label => $name) { if (!countElementsInTable("glpi_notifications", "`itemtype`='PluginOrderOrder' AND `event`='$name'")) { - $notification->add([ + $notification_id = $notification->add([ 'name' => $label, 'entities_id' => 0, 'itemtype' => 'PluginOrderOrder', 'event' => $name, - 'mode' => 'mail', 'comment' => '', 'is_recursive' => 1, 'is_active' => 1, 'date_mod' => $_SESSION['glpi_currenttime'], - 'notificationtemplates_id' => $templates_id, ]); + + $n_n_template->add( + [ + 'notifications_id' => $notification_id, + 'mode' => Notification_NotificationTemplate::MODE_MAIL, + 'notificationtemplates_id' => $templates_id, + ] + ); } } } @@ -295,7 +303,6 @@ public static function install(Migration $migration) { } if ($templates_id) { - $translation = new NotificationTemplateTranslation(); if (!countElementsInTable($translation->getTable(), "`notificationtemplates_id`='$templates_id'")) { $tmp = []; $tmp['notificationtemplates_id'] = $templates_id; @@ -321,26 +328,30 @@ public static function install(Migration $migration) { } $notifs = ['Due date overtaken' => 'duedate']; - $notification = new Notification(); foreach ($notifs as $label => $name) { if (!countElementsInTable("glpi_notifications", "`itemtype`='PluginOrderOrder' AND `event`='$name'")) { - $notification->add([ + $notification_id = $notification->add([ 'name' => $label, 'entities_id' => 0, 'itemtype' => 'PluginOrderOrder', 'event' => $name, - 'mode' => 'mail', 'comment' => '', 'is_recursive' => 1, 'is_active' => 1, 'date_mod' => $_SESSION['glpi_currenttime'], - 'notificationtemplates_id' => $templates_id, ]); + + $n_n_template->add( + [ + 'notifications_id' => $notification_id, + 'mode' => Notification_NotificationTemplate::MODE_MAIL, + 'notificationtemplates_id' => $templates_id, + ] + ); } } } - $template = new NotificationTemplate(); $templates_id = false; $query_id = "SELECT `id` FROM `glpi_notificationtemplates` @@ -361,7 +372,6 @@ public static function install(Migration $migration) { } if ($templates_id) { - $translation = new NotificationTemplateTranslation(); if (!countElementsInTable($translation->getTable(), "`notificationtemplates_id`='$templates_id'")) { $tmp = []; $tmp['notificationtemplates_id'] = $templates_id; @@ -382,24 +392,29 @@ public static function install(Migration $migration) { ##lang.ordervalidation.entity## : <br /> ##ordervalidation.entity##</p>'; $translation->add($tmp); } - } - $notifs = ['Order Delivered' => 'delivered']; - $notification = new Notification(); - foreach ($notifs as $label => $name) { - if (!countElementsInTable("glpi_notifications", "`itemtype`='PluginOrderOrder' AND `event` = '$name'")) { - $notification->add([ - 'name' => $label, - 'entities_id' => 0, - 'itemtype' => 'PluginOrderOrder', - 'event' => $name, - 'mode' => 'mail', - 'comment' => '', - 'is_recursive' => 1, - 'is_active' => 1, - 'date_mod' => $_SESSION['glpi_currenttime'], - 'notificationtemplates_id' => $templates_id, - ]); + $notifs = ['Order Delivered' => 'delivered']; + foreach ($notifs as $label => $name) { + if (!countElementsInTable("glpi_notifications", "`itemtype`='PluginOrderOrder' AND `event` = '$name'")) { + $notification_id = $notification->add([ + 'name' => $label, + 'entities_id' => 0, + 'itemtype' => 'PluginOrderOrder', + 'event' => $name, + 'comment' => '', + 'is_recursive' => 1, + 'is_active' => 1, + 'date_mod' => $_SESSION['glpi_currenttime'], + ]); + + $n_n_template->add( + [ + 'notifications_id' => $notification_id, + 'mode' => Notification_NotificationTemplate::MODE_MAIL, + 'notificationtemplates_id' => $templates_id, + ] + ); + } } } } From 09ce83b0421527156975798e55e76700db59a322 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Anne?= Date: Wed, 16 May 2018 14:15:06 +0200 Subject: [PATCH 4/6] Fix warning on price computation if no VAT selected; fixes #155 --- generate/custom.php.example | 13 ++++++++----- inc/order.class.php | 32 +++++++++++++++++++++++--------- inc/order_item.class.php | 26 ++++++++++++++++++-------- inc/ordertax.class.php | 12 ++++++++++++ 4 files changed, 61 insertions(+), 22 deletions(-) diff --git a/generate/custom.php.example b/generate/custom.php.example index a44ce5ca87..81152e3798 100644 --- a/generate/custom.php.example +++ b/generate/custom.php.example @@ -148,11 +148,14 @@ function plugin_order_getCustomFieldsForODT($ID, $odttemplates_id, $odf, $signat $odf->mergeSegment($article); $prices = $PluginOrderOrder_Item->getAllPrices($ID); - // total price (with postage) - $postagewithTVA = - $PluginOrderOrder_Item->getPricesATI($order->fields["port_price"], - Dropdown::getDropdownName("glpi_plugin_order_ordertaxes", - $order->fields["plugin_order_ordertaxes_id"])); + // total price (with postage) + $tax = new PluginOrderOrderTax(); + $tax->getFromDB($order->fields["plugin_order_ordertaxes_id"]); + + $postagewithTVA = $PluginOrderOrder_Item->getPricesATI( + $order->fields["port_price"], + $tax->getRate() + ); $total_HT = $prices["priceHT"] + $order->fields["port_price"]; $total_TVA = $prices["priceTVA"] + $postagewithTVA - $order->fields["port_price"]; diff --git a/inc/order.class.php b/inc/order.class.php index bc305adb30..2509687b0b 100644 --- a/inc/order.class.php +++ b/inc/order.class.php @@ -1150,8 +1150,13 @@ public function showForm ($ID, $options = []) { echo ""; // total price (with postage) - $postagewithTVA = $PluginOrderOrder_Item->getPricesATI($this->fields["port_price"], - Dropdown::getDropdownName("glpi_plugin_order_ordertaxes", $this->fields["plugin_order_ordertaxes_id"])); + $tax = new PluginOrderOrderTax(); + $tax->getFromDB($this->fields["plugin_order_ordertaxes_id"]); + + $postagewithTVA = $PluginOrderOrder_Item->getPricesATI( + $this->fields["port_price"], + $tax->getRate() + ); $priceHTwithpostage = $prices["priceHT"] + $this->fields["port_price"]; echo ""; @@ -1665,9 +1670,13 @@ public function generateOrder($params) { $prices = $PluginOrderOrder_Item->getAllPrices($ID); // total price (with postage) - $postagewithTVA = $PluginOrderOrder_Item->getPricesATI($this->fields["port_price"], - Dropdown::getDropdownName("glpi_plugin_order_ordertaxes", - $this->fields["plugin_order_ordertaxes_id"])); + $tax = new PluginOrderOrderTax(); + $tax->getFromDB($this->fields["plugin_order_ordertaxes_id"]); + + $postagewithTVA = $PluginOrderOrder_Item->getPricesATI( + $this->fields["port_price"], + $tax->getRate() + ); $total_HT = $prices["priceHT"] + $this->fields["port_price"]; $total_TVA = $prices["priceTVA"] + $postagewithTVA - $this->fields["port_price"]; @@ -1793,12 +1802,17 @@ public static function showForBudget($budgets_id) { $total = 0; foreach ($DB->request($query_limit) as $data) { - $PluginOrderOrder_Item = new PluginOrderOrder_Item(); $prices = $PluginOrderOrder_Item->getAllPrices($data["id"]); - $postagewithTVA = $PluginOrderOrder_Item->getPricesATI($data["port_price"], - Dropdown::getDropdownName("glpi_plugin_order_ordertaxes", - $data["plugin_order_ordertaxes_id"])); + + $tax = new PluginOrderOrderTax(); + $tax->getFromDB($data["plugin_order_ordertaxes_id"]); + + $postagewithTVA = $PluginOrderOrder_Item->getPricesATI( + $data["port_price"], + $tax->getRate() + ); + //if state is cancel do not decremente total already use if ($data['plugin_order_orderstates_id'] < 5) { $total += $prices["priceHT"]; diff --git a/inc/order_item.class.php b/inc/order_item.class.php index 054547b2df..da2950790c 100644 --- a/inc/order_item.class.php +++ b/inc/order_item.class.php @@ -252,8 +252,12 @@ public function checkIFReferenceExistsInOrder($orders_id, $ref_id) { public function addDetails($ref_id, $itemtype, $orders_id, $quantity, $price, $discounted_price, $taxes_id) { + $order = new PluginOrderOrder(); if ($quantity > 0 && $order->getFromDB($orders_id)) { + $tax = new PluginOrderOrderTax(); + $tax->getFromDB($taxes_id); + for ($i = 0; $i < $quantity; $i++) { $input["plugin_order_orders_id"] = $orders_id; $input["plugin_order_references_id"] = $ref_id; @@ -264,10 +268,10 @@ public function addDetails($ref_id, $itemtype, $orders_id, $quantity, $price, $d $input["price_taxfree"] = $price; $input["price_discounted"] = $price - ($price * ($discounted_price / 100)); $input["states_id"] = PluginOrderOrder::ORDER_DEVICE_NOT_DELIVRED;; - - $input["price_ati"] = $this->getPricesATI($input["price_discounted"], - Dropdown::getDropdownName("glpi_plugin_order_ordertaxes", - $taxes_id)); + $input["price_ati"] = $this->getPricesATI( + $input["price_discounted"], + $tax->getRate() + ); $input["discount"] = $discounted_price; $this->add($input); @@ -1357,8 +1361,11 @@ public function updatePrice_taxfree($post) { $input["price_taxfree"] = $post['price_taxfree']; $input["price_discounted"] = $input["price_taxfree"] - ($input["price_taxfree"] * ($discount / 100)); - $taxe_name = Dropdown::getDropdownName("glpi_plugin_order_ordertaxes", $plugin_order_ordertaxes_id); - $input["price_ati"] = $this->getPricesATI($input["price_discounted"], $taxe_name); + $tax = new PluginOrderOrderTax(); + $tax->getFromDB($plugin_order_ordertaxes_id); + + $input["price_ati"] = $this->getPricesATI($input["price_discounted"], $tax->getRate()); + $this->update($input); } @@ -1374,8 +1381,11 @@ public function updateDiscount($post) { $input["discount"] = $post['discount']; $input["price_discounted"] = $post['price'] - ($post['price'] * ($input['discount'] / 100)); - $taxe_name = Dropdown::getDropdownName("glpi_plugin_order_ordertaxes", $plugin_order_ordertaxes_id); - $input["price_ati"] = $this->getPricesATI($input["price_discounted"], $taxe_name); + $tax = new PluginOrderOrderTax(); + $tax->getFromDB($plugin_order_ordertaxes_id); + + $input["price_ati"] = $this->getPricesATI($input["price_discounted"], $tax->getRate()); + $this->update($input); } diff --git a/inc/ordertax.class.php b/inc/ordertax.class.php index bd5a65785f..82ac45f3e8 100644 --- a/inc/ordertax.class.php +++ b/inc/ordertax.class.php @@ -100,5 +100,17 @@ public static function uninstall() { $DB->query("DROP TABLE IF EXISTS `".self::getTable()."`") or die ($DB->error()); } + /** + * Get the tax rate of loaded item. + * + * @return number + */ + public function getRate() { + + if (array_key_exists('name', $this->fields) && !empty($this->fields['name'])) { + return floatval($this->fields['name']); + } + return 0; + } } From 588608fbaf1a319f42054699619d67101bbcddad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Anne?= Date: Fri, 25 May 2018 08:19:07 +0000 Subject: [PATCH 5/6] Update locales --- locales/cs_CZ.mo | Bin 14336 -> 14535 bytes locales/cs_CZ.po | 57 +-- locales/de_DE.mo | Bin 11394 -> 12136 bytes locales/de_DE.po | 29 +- locales/it_IT.mo | Bin 13192 -> 14198 bytes locales/it_IT.po | 163 ++++---- locales/ro_RO.mo | Bin 1992 -> 2001 bytes locales/ro_RO.po | 1024 +++++++++++++++++++++++----------------------- locales/tr_TR.mo | Bin 14072 -> 14211 bytes locales/tr_TR.po | 12 +- 10 files changed, 642 insertions(+), 643 deletions(-) diff --git a/locales/cs_CZ.mo b/locales/cs_CZ.mo index 3268cce8a0ee39e509d8b36b9c493f399ea42378..acd90eedfb27b13184f64f2d2e6ec2b968199455 100644 GIT binary patch delta 5042 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�B z1{`amb8d1&0j`#4)`W(*jTI58w%Lof;3-2LC#=nyp?T@vC@3w3UaNK z6w8-iFkA<7IG7vxI(c;WGSB%_mb1!J6%3U*W#^ z{(#4^O8w=b3da`=nOOm6nP*jGaK_cC+hA9dohBbix!>icIk#Kb#~_5J0L3lo=yy1-KKeD z^`o=@7SncCz+csPxWcNg@0vR=w)4cMN-^(JyP7I^oyhv(r;E?+EDx1=tQy;@Zfsb3 zZfC%%@N*|aoM%, 2015-2017 +# Pavel Borecki , 2018 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-02-02 09:09+0100\n" -"PO-Revision-Date: 2018-02-02 08:15+0000\n" -"Last-Translator: Alexandre Delaunay \n" +"PO-Revision-Date: 2018-03-21 08:48+0000\n" +"Last-Translator: Pavel Borecki \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" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: report/orderdelivery/orderdelivery.php:47 msgid "orderdelivery_report_title" @@ -106,7 +107,7 @@ msgstr "Objednávka byla upravena" #: front/order.form.php:143 front/order.form.php:235 msgid "The discount pourcentage must be between 0 and 100" -msgstr "Výše slevy musí být procento mezi 0 a 100" +msgstr "Je třeba, aby výše slevy byla procento z rozmezí 0 až 100" #: front/order.form.php:147 msgid "Add reference" @@ -147,7 +148,7 @@ msgstr "Smazat" #: inc/order_supplier.class.php:53 inc/order_supplier.class.php:199 #: inc/order_supplier.class.php:396 msgid "Supplier Detail" -msgstr "Detail dodavatele" +msgstr "Podrobnosti o dodavateli" #: front/menu.php:70 inc/profile.class.php:175 msgid "Products references" @@ -170,7 +171,7 @@ msgstr "Stav dodání" #: ajax/massreception.php:70 inc/reception.class.php:561 #: inc/config.class.php:222 msgid "Enable automatic generation" -msgstr "Aktivovat automatické generování" +msgstr "Zapnout automatické vytváření" #: ajax/massreception.php:73 inc/reception.class.php:567 #: inc/config.class.php:258 @@ -198,7 +199,7 @@ msgstr "Kategorie dokumentu" #: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 msgid "Document category prefix" -msgstr "Prefix kategorie dokumentu" +msgstr "Předpona kategorie dokumentu" #: inc/reception.class.php:53 msgid "Delivery" @@ -262,7 +263,7 @@ msgstr "Položka byla úspěšně převzata" #: inc/reception.class.php:756 msgid "Item already taken delivery" -msgstr "Položka již byla převzata" +msgstr "Položka už byla převzata" #: inc/reception.class.php:912 msgid "Item delivered" @@ -300,7 +301,7 @@ msgstr "Nelze vytvořit referenci bez typu" #: inc/reference.class.php:217 msgid "A reference with the same name still exists" -msgstr "Reference s tímto názvem již existuje" +msgstr "Reference s tímto názvem už existuje" #: inc/reference.class.php:229 msgid "Reference(s) in use" @@ -455,11 +456,11 @@ msgstr "Použít ověřovací proces" #: inc/config.class.php:125 msgid "Order generation in ODT" -msgstr "Generovat objednávku ve formátu ODT" +msgstr "Vytvořit objednávku ve formátu ODT" #: inc/config.class.php:131 msgid "Activate suppliers quality satisfaction" -msgstr "Aktivovat hodnocení kvality dodavatele" +msgstr "Zapnout hodnocení kvality dodavatele" #: inc/config.class.php:138 msgid "Display order's suppliers informations" @@ -570,7 +571,7 @@ msgstr "DPH" #: inc/order_item.class.php:383 msgid "Please select a supplier" -msgstr "Prosím vyberte dodavatele" +msgstr "Vyberte dodavatele" #: inc/order_item.class.php:498 msgid "Equipment" @@ -585,7 +586,7 @@ msgstr "Opravdu chcete aktualizovat tuto položku ?" 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 !" +msgstr "Opravdu chcete smazat tyto údaje? Dodané položky nebudou propojeny s objednávkou!" #: inc/order_item.class.php:695 inc/order_item.class.php:1059 msgid "Discounted price tax free" @@ -611,7 +612,7 @@ msgstr "Zaplacená hodnota" #: inc/order.class.php:265 inc/order.class.php:1467 inc/order.class.php:1493 msgid "Order Generation" -msgstr "Generování objednávky" +msgstr "Vytváření objednávky" #: inc/order.class.php:267 msgid "Order validation" @@ -627,7 +628,7 @@ msgstr "Upravit ověřenou objednávku" #: inc/order.class.php:270 msgid "Generate order without validation" -msgstr "Vygenerovat objednávku bez ověření" +msgstr "Vytvořit objednávku bez ověření" #: inc/order.class.php:273 msgid "Link order to a ticket" @@ -652,7 +653,7 @@ msgstr "Nákupní objednávka" #: inc/order.class.php:609 msgid "An order number is mandatory !" -msgstr "Číslo objednávky je povinné !" +msgstr "Číslo objednávky je povinné!" #: inc/order.class.php:619 inc/order.class.php:677 msgid "" @@ -678,7 +679,7 @@ msgstr "Ověřovací proces" #: inc/order.class.php:1415 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á !" +msgstr "Opravdu chcete zrušit tuto objednávku? Tato možnost je nevratná!" #: inc/order.class.php:1422 msgid "Validate order" @@ -686,7 +687,7 @@ msgstr "Ověření objednávky" #: inc/order.class.php:1428 msgid "Do you want to cancel the validation approval ?" -msgstr "Chcete zrušit již schválené ověření ?" +msgstr "Chcete zrušit už schválené ověření?" #: inc/order.class.php:1430 msgid "Cancel ask for validation" @@ -710,7 +711,7 @@ msgstr "Díky přidání alespoň jednoho zařízení na vaší objednávku." #: inc/order.class.php:1501 msgid "Thanks to select a model into your preferences" -msgstr "Děkuji za výběr modelu do vaších preferencí" +msgstr "Díky výběru modelu do vašich předvoleb" #: inc/order.class.php:1543 msgid "Invoice address" @@ -793,7 +794,7 @@ msgstr "Zpožděné objednávky" #: inc/notificationtargetorder.class.php:51 #: inc/notificationtargetorder.class.php:130 inc/link.class.php:210 msgid "No item to generate" -msgstr "Žádná položka ke generování" +msgstr "Žádná položka k vytvoření" #: inc/notificationtargetorder.class.php:107 #: inc/notificationtargetorder.class.php:153 @@ -814,15 +815,15 @@ msgstr "Statistika dodávky" #: inc/order_supplier.class.php:290 msgid "No specified status" -msgstr "Nespecifikovaný stav" +msgstr "Neurčený stav" #: inc/link.class.php:48 msgid "Generation" -msgstr "Generování" +msgstr "Vytváření" #: inc/link.class.php:75 inc/link.class.php:442 msgid "Generate item" -msgstr "Generovat položku" +msgstr "Vytvořit položku" #: inc/link.class.php:443 msgid "Link to an existing item" @@ -834,7 +835,7 @@ msgstr "Smazat propojení položky" #: inc/link.class.php:490 msgid "Cannot link several items to one detail line" -msgstr "Nelze propojit více položek k jedné řádce detailu" +msgstr "Nelze propojit více položek k jedné řádce podrobností" #: inc/link.class.php:501 msgid "Cannot link items not delivered" @@ -851,7 +852,7 @@ msgstr "Položka byla propojena s objednávkou" #: inc/link.class.php:938 msgid "Item already linked to another one" -msgstr "Položka je již propojena s jinou" +msgstr "Položka je už propojená s jinou" #: inc/link.class.php:975 inc/link.class.php:980 inc/link.class.php:1001 #: inc/link.class.php:1006 @@ -864,7 +865,7 @@ msgstr "Jeden nebo několik vybraných řádků nemá připojené položky" #: inc/link.class.php:1171 inc/link.class.php:1175 msgid "Item generated by using order" -msgstr "Položka byla generována objednávkou" +msgstr "Položka byla vytvořena objednávkou" #: inc/link.class.php:1182 msgid "Item successfully selected" @@ -876,9 +877,9 @@ msgstr "Instalace nebo aktualizace doplňku" #: hook.php:86 msgid "Can't create folder" -msgstr "" +msgstr "Složku se nepodařilo vytvořit" #: hook.php:94 #, php-format msgid "Cannot copy file %1$s to %2$s" -msgstr "" +msgstr "Nepodařilo se zkopírovat soubor %1$s do %2$s" diff --git a/locales/de_DE.mo b/locales/de_DE.mo index 31a368052e0b653eb60715f23ee2f27ac46bbdbe..24d4e85c5f5c688dae3cdb28f5c895bbfc91d16a 100644 GIT binary patch delta 4267 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, 2018 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-02-02 09:09+0100\n" -"PO-Revision-Date: 2018-02-02 08:15+0000\n" -"Last-Translator: Alexandre Delaunay \n" +"PO-Revision-Date: 2018-05-10 07:00+0000\n" +"Last-Translator: Thomas Spranger \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" @@ -312,7 +313,7 @@ msgstr "Verbundene Bestellungen" #: inc/reference.class.php:479 msgid "Manufacturer reference" -msgstr "" +msgstr "Herstellerverweis" #: inc/reference.class.php:892 msgid "Copy of" @@ -329,7 +330,7 @@ msgstr "" #: inc/reference.class.php:1047 msgid "Copy reference" -msgstr "" +msgstr "Verweis kopieren" #: inc/orderstate.class.php:49 inc/order.class.php:327 inc/order.class.php:808 #: inc/order.class.php:1788 hook.php:141 @@ -602,7 +603,7 @@ msgstr "Informationen über die Bestellung" #: inc/order_item.class.php:1121 msgid "Payment status" -msgstr "" +msgstr "Bezahlstatus" #: inc/order_item.class.php:1133 msgid "Paid value" @@ -626,16 +627,16 @@ msgstr "Freigegebene Bestellung ändern" #: inc/order.class.php:270 msgid "Generate order without validation" -msgstr "" +msgstr "Bestellung ohne Bestätigung erstellen" #: inc/order.class.php:273 msgid "Link order to a ticket" -msgstr "" +msgstr "Bestellung mit Ticket verbinden" #: inc/order.class.php:307 inc/order.class.php:450 inc/order.class.php:913 #: inc/order.class.php:955 inc/order.class.php:1696 msgid "Postage" -msgstr "" +msgstr "Versand" #: inc/order.class.php:423 inc/order.class.php:2005 msgid "Order is late" @@ -664,11 +665,11 @@ msgstr "Due date overtaken" #: inc/order.class.php:1148 inc/order.class.php:1692 inc/order.class.php:1790 msgid "Price tax free" -msgstr "" +msgstr "Preis ohne Steuern" #: inc/order.class.php:1158 inc/order.class.php:1694 msgid "Price tax free with postage" -msgstr "" +msgstr "Preis ohne Steuern mit Versand" #: inc/order.class.php:1396 msgid "Validation process" @@ -729,7 +730,7 @@ msgstr "Auftraggeber" #: inc/order.class.php:1608 msgid "Recipient" -msgstr "" +msgstr "Empfänger" #: inc/order.class.php:1611 msgid "Designation" @@ -809,11 +810,11 @@ msgstr "Bearbeiter der Validierung" #: inc/order_supplier.class.php:274 msgid "Delivery statistics" -msgstr "" +msgstr "Versandstatistik" #: inc/order_supplier.class.php:290 msgid "No specified status" -msgstr "" +msgstr "Nicht spezifizierter Status" #: inc/link.class.php:48 msgid "Generation" @@ -875,7 +876,7 @@ msgstr "Plugin installation oder upgrade" #: hook.php:86 msgid "Can't create folder" -msgstr "" +msgstr "Ordner kann nicht angelegt werden" #: hook.php:94 #, php-format diff --git a/locales/it_IT.mo b/locales/it_IT.mo index b0c00fda98a2d849fbf02eb6ba02aba1d11ca3cc..b2c775b158729ac7e07fa3b7fa4ebb07f1113300 100644 GIT binary patch literal 14198 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 delta 5376 zcmY+`32;@_9mnw#Hp5QBzCd-p!7ck+LqyPoqu|8wqz zQ?VTz)9>W>yWOxIB_bM;ODO zDd1-zR^XY~jrn*34#E96*_gC>gq`V}cpYiOe1?NCC(oFEI0ThT9uC9;Bu6s?$74CF z!6wYbb{vK4u?XXVdyx*!F)YJB;T-xmLrH5iCmN7*W-V4>G&p}Z&gA$h)Ck{0CG4Hy2IApx`ZxR7QRYX28;+t9If49{H~CRz{)X!K zKd2E8WSHt;45|{-Q6pZ6O=#mhz3b>Bf$0!LA=mxz%%d=Y7IPwy8l_!$X`Wu_#UdXr_jPdTvR1XQHjh#Js&~_ zkT%QM(F5yn3c9Ef-GWNw0P<&^=Z7}UNvy-qQ6;VBtEGmQqAGG8>b{MrcCJQ^+(U|C z4x$o2hBbQs-(aVL6Mb2UeX$y=aSon~4lckaaS?ukDqSUIQR20zlDDE7?m*40jamZ< zRJ+#)*LR^Run$M;{XfKx8hjBgd=-`P2f^{bQKc=I>`%$ezy>6Da{-c**@EimHhe9| zm_4X3YlO0v;dQ7__)#puzhGLW9m310xh_VH=p0;vtB}6U9#ld+}EJ008J8BI@kiJcH8uizMyEvhe+=n_of?CZl2Y!h9a^*9eMOcfC zxD7SeFQZERN36#$u^i_Wk_2|4zMO|qi9Cgx;#UgO{v!K|6B^lwB7X!0n0Y@@QxigR zFfGAx4{A!TK&|c@QHk#kd>EC`G1MYFiE8hCR3fKP&-F<&OpBets6|+Yi*X&U#k)~c z^iR~BjiwBm%R1CZqNu6ahN{F(!TE`Y`3W-jXbMX2jraS-mtet0jcQU`H99>oFp8RqN#|C${= zIGDOB^BJh)vr!qZL3OYR^>$o~n#;YY`wyWyd=}NwE2s{Bi@NVE)O{b|5c~!;;M{T& zpno%-9ewG_Pz^K&uEC)k+o&&H0@d(NREM_)=l7vLJWrz%ekJe^s0w|Gx_>+iOr@WW zN~jhy@BeakGhjKgy| zZbW^$ci|#@4M*URYJW-#s;R$9I+qjba3Si3Rj7-q?MgU;1Rot?Dm6TrvtSXvRf@Xs=z`*uh-9r^@K%a zw=KcWb=ecBh4&-k3__LJPi)isud-&hv)Q>OIQR*c1p8C*NU*P0NK>Tp-%0ckml4`l z_+)-l{5}yJ_rd;zrc|32;as9h@4ptx`GiAgyMnkkv&Vlb@M(f+H0?wyaUY@WppTl! zYz_QAMCAF0W>(-0fk*LHLes2mgMRez9mILW5<=S!qKIfF>WJCI?Zl0Q7SD1*Ta>sk zv&a7n1FyoziN}KDO9OAiI1vkuSL4k@`b>TjL@sd)k=-^2JH_}E@g#8;;SvXk0mNN| zzLeTV`eYXK9`-wlp@d#veFJt9rNqO;0z%tft<^GiHWC*Q{3~qkA+{1WaTDva%pR|nPy z)&#Z%ib28tJbaX>B=!;GiF~4hnC7o~V;L)gY8D@}Cb4SSPiQ5so%ZWM3u(x2;cJJNd7jm7LRcH#W z)!t(zWBaGLRN?)yq%K__T2bHF(xQ|$rzn@3t)^9Htv~1Vs*N)guO8qwi2_$ z@#FUt$6{`YmCdBRwYa%tisiT6?M5D;i16>mF0GD!3#27z1#kjGX16 zO0z6F{y%wEooQCL-91h)#ik);Taj?mw%jdtJQ?0($Gk{snO8oxYH}!zP@S&r0D%a7cj;v}SDY(9G&doOTix>&o_I6+>UzF?;u$iP3YsfUQ4)i+u7aY?x z@bn4q7nL=GR)(F3R&mPq{#!YI*vjzbTEm&~q!M0f)tlbL>J8q=f;`LV;$_su%u?9s z9KXj(C7r0FYU`BuNOf;sc0nbbGOH`h;_x=tj2mfN7u#Jf3&DRWm5_I!X6iU=iOb8t zcgEqJKi#~w#QV7BL{6di(yS7%YVry1AG1pbtcgXP*d}k*oZ_LhvogC@I=t>VMQOhv znrQd*8*G2KOxc$`lm2&KTFdV0qN*w0LUX!NEx_QzV;X|b3FrLe{TJ%=IK!sH@dnJT J_L`^E{SS0MQRDys diff --git a/locales/it_IT.po b/locales/it_IT.po index 06fae73c6e..ec60d5907e 100644 --- a/locales/it_IT.po +++ b/locales/it_IT.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Pierfrancesco Passerini , 2018 # Salvatore Russo , 2016 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-02-02 09:09+0100\n" -"PO-Revision-Date: 2018-02-02 08:15+0000\n" -"Last-Translator: Alexandre Delaunay \n" +"PO-Revision-Date: 2018-02-08 11:56+0000\n" +"Last-Translator: Pierfrancesco Passerini \n" "Language-Team: Italian (Italy) (http://www.transifex.com/teclib/glpi-plugin-order/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +30,7 @@ msgstr "" #: inc/notificationtargetorder.class.php:151 #: inc/notificationtargetorder.class.php:159 msgid "Date of order" -msgstr "Data Ordine" +msgstr "Data dell'ordine" #: report/orderdelivery/orderdelivery.php:50 #: report/orderdelivery/orderdelivery.php:79 @@ -41,12 +42,12 @@ msgstr "Indirizzo Spedizione" #: report/orderdelivery/orderdelivery.php:68 inc/order.class.php:287 #: inc/order.class.php:778 inc/order.class.php:1541 hook.php:240 msgid "Order number" -msgstr "Numero Ordine" +msgstr "Numero d'ordine" #: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:403 #: inc/order.class.php:983 inc/notificationtargetorder.class.php:160 msgid "Estimated due date" -msgstr "Estimated due date" +msgstr "Data di scadenza prevista" #: report/deliveryinfos/deliveryinfos.php:47 msgid "deliveryinfos_report_title" @@ -65,7 +66,7 @@ msgstr "Ordini tardivi totali" #: front/menu.php:33 front/menu.php:57 inc/config.class.php:76 #: inc/order_item.class.php:106 inc/order.class.php:282 msgid "Orders management" -msgstr "Gestione Ordini" +msgstr "Gestione ordini" #: front/order.php:33 front/preference.form.php:43 front/order.form.php:286 #: front/config.form.php:41 front/menu.php:63 @@ -76,29 +77,29 @@ msgstr "Gestione Ordini" #: inc/order.class.php:72 inc/order.class.php:552 inc/bill.class.php:520 #: inc/order_supplier.class.php:391 hook.php:146 msgid "Orders" -msgstr "Gestione Ordini" +msgstr "Ordini" #: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 #: inc/reference_supplier.class.php:75 msgid "Supplier for the reference" -msgstr "Riferimento Fornitore" +msgstr "Riferimento del fornitore" #: front/order.form.php:94 inc/notificationtargetorder.class.php:118 msgid "Order is validated" -msgstr "Ordine Verificato" +msgstr "Ordine verificato" #: front/order.form.php:103 msgid "Order validation successfully requested" -msgstr "Verifica Ordine eseguita" +msgstr "Verifica dell'ordine richiesta con successo" #: front/order.form.php:113 msgid "Validation query is now canceled" -msgstr "Domanda di validazione cancellata" +msgstr "Richiesta di verifica cancellata" #: front/order.form.php:123 inc/notificationtargetorder.class.php:48 #: inc/notificationtargetorder.class.php:122 msgid "Order canceled" -msgstr "Ordine Cancellato" +msgstr "Ordine cancellato" #: front/order.form.php:134 inc/notificationtargetorder.class.php:49 msgid "Order currently edited" @@ -106,7 +107,7 @@ msgstr "Ordine in corso di modifica" #: front/order.form.php:143 front/order.form.php:235 msgid "The discount pourcentage must be between 0 and 100" -msgstr "La % sconto deve essere compresa tra 0 e 100" +msgstr "La percentuale di sconto deve essere compresa tra 0 e 100" #: front/order.form.php:147 msgid "Add reference" @@ -123,7 +124,7 @@ msgstr "Quantità" #: inc/order_item.class.php:504 inc/order_item.class.php:694 #: inc/order_item.class.php:1051 msgid "Discount (%)" -msgstr "Sconto in %" +msgstr "Sconto (%)" #: front/order.form.php:193 front/order.form.php:200 msgid "Remove reference" @@ -147,7 +148,7 @@ msgstr "Cancellare" #: inc/order_supplier.class.php:53 inc/order_supplier.class.php:199 #: inc/order_supplier.class.php:396 msgid "Supplier Detail" -msgstr "Info Fornitori" +msgstr "Informazioni sul fornitore" #: front/menu.php:70 inc/profile.class.php:175 msgid "Products references" @@ -170,22 +171,22 @@ msgstr "Stato spedizione" #: ajax/massreception.php:70 inc/reception.class.php:561 #: inc/config.class.php:222 msgid "Enable automatic generation" -msgstr "Enable automatic generation" +msgstr "Abilita le azioni automatiche" #: ajax/massreception.php:73 inc/reception.class.php:567 #: inc/config.class.php:258 msgid "Default name" -msgstr "Default name" +msgstr "Nome predefinito" #: ajax/massreception.php:78 inc/reception.class.php:570 #: inc/config.class.php:265 msgid "Default serial number" -msgstr "Default serial number" +msgstr "Numero di serie predefinito" #: ajax/massreception.php:83 inc/reception.class.php:573 #: inc/config.class.php:272 msgid "Default inventory number" -msgstr "Default inventory number" +msgstr "Numero di inventario predefinito" #: ajax/referencedetail.php:64 inc/config.class.php:112 #: inc/order_item.class.php:370 inc/order.class.php:966 @@ -194,11 +195,11 @@ msgstr "IVA esclusa" #: inc/documentcategory.class.php:39 msgid "Document category" -msgstr "" +msgstr "Categoria del documento" #: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 msgid "Document category prefix" -msgstr "" +msgstr "Prefisso di categoria del documento" #: inc/reception.class.php:53 msgid "Delivery" @@ -212,7 +213,7 @@ msgstr "Ricevuta" #: inc/order_item.class.php:1306 inc/bill.class.php:47 inc/bill.class.php:133 #: inc/bill.class.php:354 msgid "Bill" -msgstr "Bill" +msgstr "Fattura" #: inc/reception.class.php:282 inc/surveysupplier.class.php:369 #: inc/order_item.class.php:473 inc/order_item.class.php:1016 @@ -304,7 +305,7 @@ msgstr "Gia esiste un riferimento con lo stesso nome" #: inc/reference.class.php:229 msgid "Reference(s) in use" -msgstr "Riferimento(i) già utilizzato(i)" +msgstr "Riferimenti già utilizzati" #: inc/reference.class.php:275 inc/reference.class.php:812 #: inc/order.class.php:1782 @@ -313,11 +314,11 @@ msgstr "Ordini collegati" #: inc/reference.class.php:479 msgid "Manufacturer reference" -msgstr "" +msgstr "Riferimento del produttore" #: inc/reference.class.php:892 msgid "Copy of" -msgstr "" +msgstr "Copia di" #: inc/reference.class.php:918 msgid "Select the wanted item type" @@ -330,16 +331,16 @@ msgstr "Vista per tipo" #: inc/reference.class.php:1047 msgid "Copy reference" -msgstr "" +msgstr "Copia di riferimento" #: inc/orderstate.class.php:49 inc/order.class.php:327 inc/order.class.php:808 #: inc/order.class.php:1788 hook.php:141 msgid "Order status" -msgstr "Stato Ordine" +msgstr "Stato dell'ordine" #: inc/orderstate.class.php:55 inc/billstate.class.php:48 msgid "You cannot remove this status" -msgstr "You cannot remove this status" +msgstr "Non puoi rimuovere questo stato" #: inc/orderstate.class.php:87 msgid "Draft" @@ -355,7 +356,7 @@ msgstr "Approvato" #: inc/orderstate.class.php:90 msgid "Being delivered" -msgstr "In corso di consegna" +msgstr "In consegna" #: inc/orderstate.class.php:91 msgid "Delivered" @@ -390,7 +391,7 @@ msgstr "Note" #: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:385 msgid "Comment on survey" -msgstr "Commenti sul sondaggio" +msgstr "Commenti al sondaggio" #: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:309 msgid "Administrative followup quality (contracts, bills, mail, etc.)" @@ -402,7 +403,7 @@ msgstr "Qualità monitoraggio commerciale, frequenza di visita, reattività" #: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:321 msgid "Contacts availability" -msgstr "Disponibilité des interlocuteurs fournisseur" +msgstr "Disponibilità degli interlocutori/fornitori" #: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:327 msgid "Quality of supplier intervention" @@ -451,7 +452,7 @@ msgstr "IVA predefinita" #: inc/config.class.php:118 msgid "Use validation process" -msgstr "Usare Processo Verifica" +msgstr "Usa il processo di verifica" #: inc/config.class.php:125 msgid "Order generation in ODT" @@ -459,7 +460,7 @@ msgstr "Generazione ordine in ODT" #: inc/config.class.php:131 msgid "Activate suppliers quality satisfaction" -msgstr "Attiva soddisfazione qualità dei fornitori" +msgstr "Attiva il sondaggio sulla qualità dei fornitori" #: inc/config.class.php:138 msgid "Display order's suppliers informations" @@ -475,43 +476,43 @@ msgstr "Copia i documenti dell'ordine alla creazione di un nuovo elemento" #: inc/config.class.php:159 msgid "Default heading when adding a document to an order" -msgstr "Default heading when adding a document to an order" +msgstr "Intestazione predefinita quando si aggiunge un documento ad un ordine" #: inc/config.class.php:166 inc/order.class.php:475 inc/order.class.php:1067 #: inc/notificationtargetorder.class.php:450 #: inc/notificationtargetorder.class.php:453 msgid "Author group" -msgstr "Author group" +msgstr "Gruppo dell'autore" #: inc/config.class.php:176 inc/order.class.php:482 inc/order.class.php:1117 #: inc/notificationtargetorder.class.php:452 #: inc/notificationtargetorder.class.php:454 msgid "Recipient group" -msgstr "Recipient group" +msgstr "Gruppo del destinatario" #: inc/config.class.php:198 msgid "Hide inactive budgets" -msgstr "" +msgstr "Nascondi i budget inattivi" #: inc/config.class.php:205 msgid "Transmit budget change to linked assets" -msgstr "" +msgstr "Invia la modifica del budget alle risorse collegate" #: inc/config.class.php:213 msgid "Automatic actions when delivery" -msgstr "Automatic actions when delivery" +msgstr "Azioni automatiche alla consegna" #: inc/config.class.php:227 msgid "Asked" -msgstr "" +msgstr "Richiesto" #: inc/config.class.php:233 msgid "Default state" -msgstr "Default state" +msgstr "Stato predefinito" #: inc/config.class.php:244 msgid "Add order location to item" -msgstr "Aggiungi posizione per voce" +msgstr "Aggiungi la posizione dell'ordine all'elemento" #: inc/config.class.php:251 msgid "Add billing details to item" @@ -519,43 +520,43 @@ msgstr "Aggiungere dati di fatturazione alla voce" #: inc/config.class.php:296 msgid "Order lifecycle" -msgstr "Order lifecycle" +msgstr "Ciclo di vita dell'ordine" #: inc/config.class.php:300 msgid "State before validation" -msgstr "State before validation" +msgstr "Stato prima dell'accettazione" #: inc/config.class.php:310 msgid "Waiting for validation state" -msgstr "Waiting for validation state" +msgstr "In attesa di approvazione" #: inc/config.class.php:320 msgid "Validated order state" -msgstr "Validated order state" +msgstr "Ordini approvati" #: inc/config.class.php:330 msgid "Order being delivered state" -msgstr "Order being delivered state" +msgstr "Ordine in consegna" #: inc/config.class.php:340 msgid "Order delivered state" -msgstr "Order delivered state" +msgstr "Ordine consegnato" #: inc/config.class.php:350 msgid "Order paied state" -msgstr "Order paied state" +msgstr "Ordine saldato" #: inc/config.class.php:360 msgid "Canceled order state" -msgstr "Canceled order state" +msgstr "Ordine annullato" #: inc/order_item.class.php:99 inc/order_item.class.php:1559 msgid "Order item" -msgstr "Order item" +msgstr "Ordina articolo" #: inc/order_item.class.php:206 msgid "Some fields cannont be modified because they belong to an order" -msgstr "Alcuni elementi non possono essere cancellati, fanno parte di un ordine" +msgstr "Alcuni elementi non possono essere modificati poichè parte di un ordine" #: inc/order_item.class.php:300 msgid "Add to the order" @@ -579,17 +580,17 @@ msgstr "Attrezzature" #: inc/order_item.class.php:510 inc/order_item.class.php:669 #: inc/order_item.class.php:865 msgid "Do you really want to update this item ?" -msgstr "Do you really want to update this item ? " +msgstr "Vuoi aggiornare questo articolo? " #: inc/order_item.class.php:660 inc/order_item.class.php:856 msgid "" "Do you really want to delete these details ? Delivered items will not be " "linked to order !" -msgstr "Vuoi cancellare questo(i) dettaglio(i)? Articolo(i) in consegna sarà(nno) CANCELLATO(I)! " +msgstr "Vuoi cancellare questi dettaglii? Gli articoli consegnati non saranno collegati all'ordine!" #: inc/order_item.class.php:695 inc/order_item.class.php:1059 msgid "Discounted price tax free" -msgstr "Importo scontato unit. senza IVA" +msgstr "Importo scontato senza IVA" #: inc/order_item.class.php:696 inc/order_item.class.php:1064 #: inc/order.class.php:1165 inc/order.class.php:1617 inc/order.class.php:1701 @@ -603,11 +604,11 @@ msgstr "Informazioni Ordine" #: inc/order_item.class.php:1121 msgid "Payment status" -msgstr "Payment status" +msgstr "Stato del pagamento" #: inc/order_item.class.php:1133 msgid "Paid value" -msgstr "Paid value" +msgstr "Valore pagato" #: inc/order.class.php:265 inc/order.class.php:1467 inc/order.class.php:1493 msgid "Order Generation" @@ -615,7 +616,7 @@ msgstr "Generazione Ordine" #: inc/order.class.php:267 msgid "Order validation" -msgstr "Validazione Ordine" +msgstr "Verifica dell'ordine" #: inc/order.class.php:268 inc/order.class.php:1416 msgid "Cancel order" @@ -627,11 +628,11 @@ msgstr "Modifica Ordine verificato" #: inc/order.class.php:270 msgid "Generate order without validation" -msgstr "" +msgstr "Genera l'ordine senza la verifica" #: inc/order.class.php:273 msgid "Link order to a ticket" -msgstr "Link order to a ticket" +msgstr "Collega l'ordine ad una chiamata" #: inc/order.class.php:307 inc/order.class.php:450 inc/order.class.php:913 #: inc/order.class.php:955 inc/order.class.php:1696 @@ -640,28 +641,28 @@ msgstr "Spedizione" #: inc/order.class.php:423 inc/order.class.php:2005 msgid "Order is late" -msgstr "Order is late" +msgstr "Ordine in ritardo" #: inc/order.class.php:561 msgid "Validation" -msgstr "Validazione" +msgstr "Verifica" #: inc/order.class.php:567 msgid "Purchase order" -msgstr "" +msgstr "Ordinazione d'acquisto" #: inc/order.class.php:609 msgid "An order number is mandatory !" -msgstr "Numero di Ordine OBBLIGATORIO!" +msgstr "Il numero d'ordine è obbligatorio!" #: inc/order.class.php:619 inc/order.class.php:677 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." +msgstr "La data dell'ordine deve essere compresa tra le date inserite per il budget selezionato." #: inc/order.class.php:999 msgid "Due date overtaken" -msgstr "Due date overtaken" +msgstr "Data di scadenza superata" #: inc/order.class.php:1148 inc/order.class.php:1692 inc/order.class.php:1790 msgid "Price tax free" @@ -673,12 +674,12 @@ msgstr "Importo Totale + Spedizione" #: inc/order.class.php:1396 msgid "Validation process" -msgstr "Processo di Verifica" +msgstr "Processo di verifica" #: inc/order.class.php:1415 msgid "" "Do you really want to cancel this order ? This option is irreversible !" -msgstr "Vuoi CANCELLARE questo Ordine ? Questa opzione è IRREVERSIBILE !" +msgstr "Vuoi cencellare questo ordine? L'operazione è irreversibile!" #: inc/order.class.php:1422 msgid "Validate order" @@ -686,19 +687,19 @@ msgstr "Verifica Ordine" #: inc/order.class.php:1428 msgid "Do you want to cancel the validation approval ?" -msgstr "Vuoi CANCELLARE il processo di Validazione ?" +msgstr "Vuoi cancellare il processo di verifica?" #: inc/order.class.php:1430 msgid "Cancel ask for validation" -msgstr "Cancellazione domanda validazione" +msgstr "Elimina la richiesta di verifica" #: inc/order.class.php:1436 msgid "Ask for validation" -msgstr "Richiesta Verifica" +msgstr "Richiesta di verifica" #: inc/order.class.php:1442 msgid "Do you really want to edit the order ?" -msgstr "Vuoi modificare l'ORDINE ? " +msgstr "Vuoi modificare l'ordine? " #: inc/order.class.php:1444 msgid "Edit order" @@ -742,7 +743,7 @@ msgstr "Importo unitario" #: inc/order.class.php:1615 msgid "Discount rate" -msgstr "% Sconto" +msgstr "Percentuale di sconto" #: inc/order.class.php:1616 msgid "Sum tax free" @@ -758,7 +759,7 @@ msgstr "Firma emettitore ordine" #: inc/order.class.php:1811 msgid "Unlink" -msgstr "Unlink" +msgstr "annulla collegamento" #: inc/order.class.php:1951 msgid "Total orders related with this budget is greater than its value." @@ -788,7 +789,7 @@ msgstr "Ordine Accettato" #: inc/notificationtargetorder.class.php:50 #: inc/notificationtargetorder.class.php:185 msgid "Late orders" -msgstr "Late orders" +msgstr "Ordini in ritardo" #: inc/notificationtargetorder.class.php:51 #: inc/notificationtargetorder.class.php:130 inc/link.class.php:210 @@ -798,15 +799,15 @@ msgstr "Nessun Articolo Generato" #: inc/notificationtargetorder.class.php:107 #: inc/notificationtargetorder.class.php:153 msgid "Comment of validation" -msgstr "Commento sulla validazione" +msgstr "Commento alla verifica" #: inc/notificationtargetorder.class.php:126 msgid "Validation canceled successfully" -msgstr "Annullamento validazione effettuata" +msgstr "Annullamento verifica effettuato" #: inc/notificationtargetorder.class.php:154 msgid "Editor of validation" -msgstr "Editor of validation" +msgstr "Modifica della verifica" #: inc/order_supplier.class.php:274 msgid "Delivery statistics" @@ -838,7 +839,7 @@ msgstr "Non possibile collegare più dettagli articoli in una sola linea" #: inc/link.class.php:501 msgid "Cannot link items not delivered" -msgstr "NON posso ASSOCIARE Articoli non spediti" +msgstr "Non posso associare articoli non spediti" #: inc/link.class.php:615 msgid "No associated item" @@ -876,9 +877,9 @@ msgstr "Installazione o aggiornamento del plugin" #: hook.php:86 msgid "Can't create folder" -msgstr "" +msgstr "Non posso creare la cartella" #: hook.php:94 #, php-format msgid "Cannot copy file %1$s to %2$s" -msgstr "" +msgstr "Non posso copiare il file %1$s in %2$s" diff --git a/locales/ro_RO.mo b/locales/ro_RO.mo index 4089b0d59dec167ab2f70c72a2e57a457f7040f4..f1ab7e30b6faa1b6d115fe5cca2207290ffc86d6 100644 GIT binary patch delta 376 zcmX}kze)o^5XbS!853jFQwsyZ;;_||P2eCo6cmz9P}B!-C5IlIC-~ngf_8T53)omn zAcdt^2sRSzd<087E5Yx|Dh&JC-^}d3xNmM}GSmLbh%~bzc@de?1!RCC@g$=DTI*%n53~s#2b+hpIlUDoPEmEc>g` zQM@1TrhY>oM4?wzmH)k3SP8Cs+0x8n5}oL@wHJAfDA9+hKK15W_BN~kh6`IeI!?NU H{zvBrEAu&$ delta 367 zcmXZUze~eF7{>9pv9|t>?O;(H4jeUb38_Nppfp_+tOz1b5^TW^Hc%Tu9V%|(=;Goi zZX$GX5L`suihqHlo0ETl-;==0eR!UG?>_Ah`)NMY`^kvZvLbmA@pB?mSiy1JK-2H0 z{XR~R+sMdy>Lr?YS7`2UaRl$NgpX-{N1HrA^Y2$qdjAi;DJCg?(R^faYZeL|MV!SM zTtZf)ie_&e74G3Qo?!v6aTM>;{sD)`&&bG2n&0yMIqSkImmO_JxqeXg7qzGL*jC-y zZl1J`TXEY7qi!=$o_3cV?K_@U?n\n" +"POT-Creation-Date: 2018-02-02 09:09+0100\n" +"PO-Revision-Date: 2018-02-02 08:15+0000\n" +"Last-Translator: Alexandre Delaunay \n" "Language-Team: Romanian (Romania) (http://www.transifex.com/teclib/glpi-plugin-order/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,166 +18,123 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: hook.php:40 -msgid "Plugin installation or upgrade" -msgstr "Instalare sau actualizare Plugin" - -#: hook.php:101 inc/order.class.php:257 inc/order.class.php:870 -#: inc/order.class.php:1062 inc/order.class.php:1497 inc/order.class.php:1570 -#: inc/order_item.class.php:273 inc/order_item.class.php:605 -#: inc/order_item.class.php:958 inc/ordertax.class.php:41 -msgid "VAT" -msgstr "TVA" - -#: hook.php:102 inc/order.class.php:299 inc/order.class.php:783 -#: inc/order.class.php:1585 inc/orderpayment.class.php:41 -msgid "Payment conditions" -msgstr "Conditii plata" - -#: hook.php:104 inc/order.class.php:277 inc/order.class.php:726 -#: inc/orderstate.class.php:50 -msgid "Order status" -msgstr "Status Comanda" - -#: hook.php:105 inc/othertype.class.php:40 -msgid "Other type of item" -msgstr "Alt tip al elementului" - -#: hook.php:106 ajax/massreception.php:57 ajax/receptionactions.php:48 -#: inc/deliverystate.class.php:40 inc/order_item.class.php:118 -#: inc/reception.class.php:227 inc/reception.class.php:343 -msgid "Delivery status" -msgstr "Status Livrare" - -#: hook.php:107 inc/bill.class.php:336 inc/billstate.class.php:43 -#: inc/order_item.class.php:1138 -msgid "Bill status" -msgstr "Status Factura" - -#: hook.php:108 inc/billtype.class.php:40 -msgid "Bill type" -msgstr "Tip Factura" +#: report/orderdelivery/orderdelivery.php:47 +msgid "orderdelivery_report_title" +msgstr "" -#: hook.php:109 front/menu.php:63 front/order.form.php:283 front/order.php:33 -#: inc/bill.class.php:500 inc/documentcategory.class.php:47 -#: inc/order.class.php:56 inc/order.class.php:501 -#: inc/order_item.class.php:1465 inc/order_item.class.php:1467 -#: inc/order_supplier.class.php:398 inc/preference.class.php:269 -#: inc/profile.class.php:336 inc/profile.class.php:434 -msgid "Orders" -msgstr "Comenzi" +#: report/orderdelivery/orderdelivery.php:48 +#: report/orderdelivery/orderdelivery.php:75 +#: report/deliveryinfos/deliveryinfos.php:48 inc/order.class.php:297 +#: inc/order.class.php:762 inc/notificationtargetorder.class.php:100 +#: inc/notificationtargetorder.class.php:151 +#: inc/notificationtargetorder.class.php:159 +msgid "Date of order" +msgstr "" -#: hook.php:172 inc/order.class.php:333 inc/order.class.php:680 -#: inc/order_item.class.php:867 inc/surveysupplier.class.php:183 -msgid "Order name" -msgstr "Nume Comanda" +#: report/orderdelivery/orderdelivery.php:50 +#: report/orderdelivery/orderdelivery.php:79 +#: report/deliveryinfos/deliveryinfos.php:50 inc/order.class.php:317 +#: inc/order.class.php:855 +msgid "Delivery location" +msgstr "" -#: hook.php:180 inc/order.class.php:237 inc/order.class.php:704 -#: inc/order.class.php:1429 report/orderdelivery/orderdelivery.php:65 +#: report/orderdelivery/orderdelivery.php:68 inc/order.class.php:287 +#: inc/order.class.php:778 inc/order.class.php:1541 hook.php:240 msgid "Order number" msgstr "Numar Comanda" -#: hook.php:305 -msgid "Copy reference" -msgstr "Referinta coie" - -#: hook.php:412 inc/bill.class.php:90 inc/bill.class.php:158 -#: inc/order.class.php:57 inc/order_item.class.php:423 -#: inc/order_item.class.php:935 inc/order_item.class.php:1473 -#: inc/order_supplier.class.php:191 inc/reception.class.php:280 -#: inc/surveysupplier.class.php:357 -msgid "Order" -msgstr "Comanda" - -#: setup.php:187 front/config.form.php:41 front/link.form.php:56 -#: front/menu.php:33 front/menu.php:57 front/order_item.form.php:42 -#: front/order_supplier.form.php:81 front/preference.form.php:43 -#: front/reception.form.php:88 front/surveysupplier.form.php:62 -#: inc/config.class.php:65 inc/menu.class.php:12 inc/order.class.php:232 -#: inc/order_item.class.php:72 -msgid "Orders management" -msgstr "Management comenzi" - -#: ajax/massreception.php:51 -msgid "Number to deliver" -msgstr "Numar de livrat" - -#: ajax/referencedetail.php:62 inc/config.class.php:100 -#: inc/order.class.php:883 inc/order_item.class.php:325 -msgid "No VAT" -msgstr "Fara TVA" - -#: front/link.form.php:48 -msgid "Cannot generate items not delivered" +#: report/orderdelivery/orderdelivery.php:76 inc/order.class.php:403 +#: inc/order.class.php:983 inc/notificationtargetorder.class.php:160 +msgid "Estimated due date" msgstr "" -#: front/link.form.php:60 front/order.form.php:203 inc/reception.class.php:627 -msgid "No item selected" -msgstr "Niciun element selectat" +#: report/deliveryinfos/deliveryinfos.php:47 +msgid "deliveryinfos_report_title" +msgstr "" -#: front/link.form.php:89 -msgid "Cannot link items not delivered" +#: report/deliveryinfos/deliveryinfos.php:64 +msgid "Orders total" msgstr "" -#: front/link.form.php:99 -msgid "Cannot link several items to one detail line" +#: report/deliveryinfos/deliveryinfos.php:65 +msgid "Late orders total" msgstr "" -#: front/menu.php:70 inc/profile.class.php:440 -msgid "Products references" -msgstr "Referinte Produse" +#: setup.php:186 front/order_item.form.php:39 front/surveysupplier.form.php:69 +#: front/reception.form.php:96 front/order_supplier.form.php:80 +#: front/menu.php:33 front/menu.php:57 inc/config.class.php:76 +#: inc/order_item.class.php:106 inc/order.class.php:282 +msgid "Orders management" +msgstr "Management comenzi" -#: front/menu.php:77 inc/order_item.class.php:1036 inc/profile.class.php:444 -msgid "Bills" -msgstr "Facturi" +#: front/order.php:33 front/preference.form.php:43 front/order.form.php:286 +#: front/config.form.php:41 front/menu.php:63 +#: inc/documentcategory.class.php:47 inc/menu.class.php:7 +#: inc/profile.class.php:104 inc/profile.class.php:146 +#: inc/profile.class.php:171 inc/preference.class.php:269 +#: inc/order_item.class.php:1553 inc/order_item.class.php:1555 +#: inc/order.class.php:72 inc/order.class.php:552 inc/bill.class.php:520 +#: inc/order_supplier.class.php:391 hook.php:146 +msgid "Orders" +msgstr "Comenzi" + +#: front/reference_supplier.form.php:69 inc/reference_supplier.class.php:46 +#: inc/reference_supplier.class.php:75 +msgid "Supplier for the reference" +msgstr "" -#: front/order.form.php:91 inc/notificationtargetorder.class.php:119 +#: front/order.form.php:94 inc/notificationtargetorder.class.php:118 msgid "Order is validated" msgstr "" -#: front/order.form.php:100 +#: front/order.form.php:103 msgid "Order validation successfully requested" msgstr "" -#: front/order.form.php:110 +#: front/order.form.php:113 msgid "Validation query is now canceled" msgstr "" -#: front/order.form.php:120 inc/notificationtargetorder.class.php:49 -#: inc/notificationtargetorder.class.php:123 +#: front/order.form.php:123 inc/notificationtargetorder.class.php:48 +#: inc/notificationtargetorder.class.php:122 msgid "Order canceled" msgstr "" -#: front/order.form.php:131 inc/notificationtargetorder.class.php:50 +#: front/order.form.php:134 inc/notificationtargetorder.class.php:49 msgid "Order currently edited" msgstr "" -#: front/order.form.php:140 front/order.form.php:229 +#: front/order.form.php:143 front/order.form.php:235 msgid "The discount pourcentage must be between 0 and 100" msgstr "" -#: front/order.form.php:144 +#: front/order.form.php:147 msgid "Add reference" msgstr "" -#: front/order.form.php:147 inc/link.class.php:283 inc/order.class.php:1493 -#: inc/order_item.class.php:271 inc/order_item.class.php:449 +#: front/order.form.php:150 inc/order_item.class.php:307 +#: inc/order_item.class.php:497 inc/order.class.php:1610 +#: inc/link.class.php:378 msgid "Quantity" msgstr "Cantitate" -#: front/order.form.php:148 inc/order_item.class.php:82 -#: inc/order_item.class.php:87 inc/order_item.class.php:274 -#: inc/order_item.class.php:456 inc/order_item.class.php:606 -#: inc/order_item.class.php:970 +#: front/order.form.php:151 inc/order_item.class.php:116 +#: inc/order_item.class.php:121 inc/order_item.class.php:310 +#: inc/order_item.class.php:504 inc/order_item.class.php:694 +#: inc/order_item.class.php:1051 msgid "Discount (%)" msgstr "Discount (%)" -#: front/order.form.php:188 front/order.form.php:194 +#: front/order.form.php:193 front/order.form.php:200 msgid "Remove reference" msgstr "" -#: front/order_supplier.form.php:51 inc/order_supplier.class.php:54 -#: inc/order_supplier.class.php:161 inc/order_supplier.class.php:207 +#: front/order.form.php:210 inc/reception.class.php:788 +msgid "No item selected" +msgstr "Niciun element selectat" + +#: front/order_supplier.form.php:51 inc/order_supplier.class.php:57 +#: inc/order_supplier.class.php:151 inc/order_supplier.class.php:203 msgid "Quote number" msgstr "" @@ -185,704 +142,743 @@ msgstr "" msgid "Delete" msgstr "Sterge" -#: front/order_supplier.form.php:66 inc/order_supplier.class.php:43 -#: inc/order_supplier.class.php:50 inc/order_supplier.class.php:204 -#: inc/order_supplier.class.php:402 inc/reference_supplier.class.php:128 -#: inc/reference_supplier.class.php:253 +#: front/order_supplier.form.php:66 inc/reference_supplier.class.php:130 +#: inc/reference_supplier.class.php:240 inc/order_supplier.class.php:46 +#: inc/order_supplier.class.php:53 inc/order_supplier.class.php:199 +#: inc/order_supplier.class.php:396 msgid "Supplier Detail" msgstr "Detaliu Furnizor" -#: front/reference_supplier.form.php:63 inc/reference_supplier.class.php:44 -#: inc/reference_supplier.class.php:73 -msgid "Supplier for the reference" -msgstr "" - -#: inc/bill.class.php:51 inc/bill.class.php:119 inc/bill.class.php:335 -#: inc/order_item.class.php:1137 inc/order_item.class.php:1225 -#: inc/reception.class.php:239 -msgid "Bill" -msgstr "Factura" +#: front/menu.php:70 inc/profile.class.php:175 +msgid "Products references" +msgstr "Referinte Produse" -#: inc/bill.class.php:62 -msgid "A bill number is mandatory" -msgstr "" +#: front/menu.php:77 inc/profile.class.php:179 inc/order_item.class.php:1120 +msgid "Bills" +msgstr "Facturi" -#: inc/bill.class.php:293 inc/link.class.php:217 inc/order_item.class.php:436 -#: inc/order_item.class.php:1097 inc/reception.class.php:292 -msgid "No item to take delivery of" -msgstr "" +#: ajax/massreception.php:53 +msgid "Number to deliver" +msgstr "Numar de livrat" -#: inc/bill.class.php:309 inc/link.class.php:77 inc/link.class.php:258 -#: inc/order_item.class.php:270 inc/order_item.class.php:1111 -#: inc/reception.class.php:309 inc/reference.class.php:42 -#: inc/reference.class.php:53 inc/reference_supplier.class.php:239 -#: inc/reference_supplier.class.php:256 inc/reference_supplier.class.php:460 -#: inc/reference_supplier.class.php:462 -msgid "Product reference" -msgstr "Referinta Produs" +#: ajax/massreception.php:63 inc/reception.class.php:227 +#: inc/reception.class.php:406 inc/reception.class.php:556 +#: inc/order_item.class.php:152 inc/deliverystate.class.php:38 hook.php:143 +msgid "Delivery status" +msgstr "Status Livrare" -#: inc/billstate.class.php:49 inc/orderstate.class.php:56 -msgid "You cannot remove this status" +#: ajax/massreception.php:70 inc/reception.class.php:561 +#: inc/config.class.php:222 +msgid "Enable automatic generation" msgstr "" -#: inc/billstate.class.php:59 -msgid "Being paid" +#: ajax/massreception.php:73 inc/reception.class.php:567 +#: inc/config.class.php:258 +msgid "Default name" msgstr "" -#: inc/billstate.class.php:60 inc/billstate.class.php:91 -#: inc/orderstate.class.php:92 -msgid "Paid" -msgstr "Platit" - -#: inc/billstate.class.php:92 -msgid "Not paid" -msgstr "Neplatit" +#: ajax/massreception.php:78 inc/reception.class.php:570 +#: inc/config.class.php:265 +msgid "Default serial number" +msgstr "" -#: inc/config.class.php:91 -msgid "Plugin configuration" +#: ajax/massreception.php:83 inc/reception.class.php:573 +#: inc/config.class.php:272 +msgid "Default inventory number" msgstr "" -#: inc/config.class.php:94 -msgid "Default VAT" -msgstr "TVA implicit" +#: ajax/referencedetail.php:64 inc/config.class.php:112 +#: inc/order_item.class.php:370 inc/order.class.php:966 +msgid "No VAT" +msgstr "Fara TVA" -#: inc/config.class.php:106 -msgid "Use validation process" +#: inc/documentcategory.class.php:39 +msgid "Document category" msgstr "" -#: inc/config.class.php:113 -msgid "Order generation in ODT" +#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 +msgid "Document category prefix" msgstr "" -#: inc/config.class.php:119 -msgid "Activate suppliers quality satisfaction" +#: inc/reception.class.php:53 +msgid "Delivery" msgstr "" -#: inc/config.class.php:126 -msgid "Display order's suppliers informations" +#: inc/reception.class.php:193 inc/reception.class.php:612 +msgid "Taken delivery" msgstr "" -#: inc/config.class.php:132 -msgid "Color to be displayed when order due date is overtaken" -msgstr "" +#: inc/reception.class.php:240 inc/order_item.class.php:1219 +#: inc/order_item.class.php:1306 inc/bill.class.php:47 inc/bill.class.php:133 +#: inc/bill.class.php:354 +msgid "Bill" +msgstr "Factura" -#: inc/config.class.php:140 -msgid "Copy order documents when a new item is created" -msgstr "" +#: inc/reception.class.php:282 inc/surveysupplier.class.php:369 +#: inc/order_item.class.php:473 inc/order_item.class.php:1016 +#: inc/order_item.class.php:1561 inc/order.class.php:72 inc/bill.class.php:101 +#: inc/bill.class.php:172 inc/order_supplier.class.php:182 hook.php:391 +msgid "Order" +msgstr "Comanda" -#: inc/config.class.php:147 -msgid "Default heading when adding a document to an order" +#: inc/reception.class.php:295 inc/order_item.class.php:484 +#: inc/order_item.class.php:1180 inc/bill.class.php:313 inc/link.class.php:276 +msgid "No item to take delivery of" msgstr "" -#: inc/config.class.php:154 inc/notificationtargetorder.class.php:450 -#: inc/notificationtargetorder.class.php:453 inc/order.class.php:425 -#: inc/order.class.php:979 -msgid "Author group" -msgstr "" +#: inc/reception.class.php:326 inc/reference.class.php:44 +#: inc/reference.class.php:57 inc/reference_supplier.class.php:226 +#: inc/reference_supplier.class.php:243 inc/reference_supplier.class.php:458 +#: inc/reference_supplier.class.php:460 inc/order_item.class.php:306 +#: inc/order_item.class.php:1194 inc/bill.class.php:328 inc/link.class.php:78 +#: inc/link.class.php:344 +msgid "Product reference" +msgstr "Referinta Produs" -#: inc/config.class.php:164 inc/notificationtargetorder.class.php:452 -#: inc/notificationtargetorder.class.php:454 inc/order.class.php:432 -#: inc/order.class.php:1013 -msgid "Recipient group" +#: inc/reception.class.php:327 +msgid "Delivered items" msgstr "" -#: inc/config.class.php:186 -msgid "Hide inactive budgets" +#: inc/reception.class.php:492 +msgid "Take item delivery (bulk)" msgstr "" -#: inc/config.class.php:193 -msgid "Rename documents added in order" +#: inc/reception.class.php:517 inc/reception.class.php:586 +#: inc/order.class.php:266 +msgid "Take item delivery" msgstr "" -#: inc/config.class.php:201 -msgid "Automatic actions when delivery" +#: inc/reception.class.php:609 +msgid "Waiting for delivery" msgstr "" -#: inc/config.class.php:210 -msgid "Enable automatic generation" +#: inc/reception.class.php:633 +msgid "Not enough items to deliver" msgstr "" -#: inc/config.class.php:217 -msgid "Default state" +#: inc/reception.class.php:685 inc/reception.class.php:713 +msgid "Item successfully taken delivery" msgstr "" -#: inc/config.class.php:228 -msgid "Add order location to item" +#: inc/reception.class.php:756 +msgid "Item already taken delivery" msgstr "" -#: inc/config.class.php:235 -msgid "Add billing details to item" +#: inc/reception.class.php:912 +msgid "Item delivered" msgstr "" -#: inc/config.class.php:242 -msgid "Default name" -msgstr "" +#: inc/orderpayment.class.php:40 inc/order.class.php:349 +#: inc/order.class.php:869 inc/order.class.php:1705 hook.php:139 +msgid "Payment conditions" +msgstr "Conditii plata" -#: inc/config.class.php:249 -msgid "Default serial number" -msgstr "" +#: inc/billtype.class.php:40 hook.php:145 +msgid "Bill type" +msgstr "Tip Factura" -#: inc/config.class.php:256 -msgid "Default inventory number" +#: inc/reference.class.php:139 inc/reference_supplier.class.php:84 +#: inc/reference_supplier.class.php:201 inc/reference_supplier.class.php:244 +#: inc/reference_supplier.class.php:461 inc/order_item.class.php:111 +#: inc/order_item.class.php:308 inc/order_item.class.php:503 +#: inc/order_item.class.php:692 inc/order_item.class.php:1032 +msgid "Unit price tax free" msgstr "" -#: inc/config.class.php:280 -msgid "Order lifecycle" +#: inc/reference.class.php:148 inc/reference_supplier.class.php:79 +#: inc/reference_supplier.class.php:192 +msgid "Manufacturer's product reference" msgstr "" -#: inc/config.class.php:284 -msgid "State before validation" +#: inc/reference.class.php:204 +msgid "Cannot create reference without a name" msgstr "" -#: inc/config.class.php:294 -msgid "Waiting for validation state" +#: inc/reference.class.php:209 +msgid "Cannot create reference without a type" msgstr "" -#: inc/config.class.php:304 -msgid "Validated order state" +#: inc/reference.class.php:217 +msgid "A reference with the same name still exists" msgstr "" -#: inc/config.class.php:314 -msgid "Order being delivered state" +#: inc/reference.class.php:229 +msgid "Reference(s) in use" msgstr "" -#: inc/config.class.php:324 -msgid "Order delivered state" +#: inc/reference.class.php:275 inc/reference.class.php:812 +#: inc/order.class.php:1782 +msgid "Linked orders" msgstr "" -#: inc/config.class.php:334 -msgid "Order paied state" +#: inc/reference.class.php:479 +msgid "Manufacturer reference" msgstr "" -#: inc/config.class.php:344 -msgid "Canceled order state" +#: inc/reference.class.php:892 +msgid "Copy of" msgstr "" -#: inc/documentcategory.class.php:39 -msgid "Document category" +#: inc/reference.class.php:918 +msgid "Select the wanted item type" msgstr "" -#: inc/documentcategory.class.php:82 inc/documentcategory.class.php:87 -msgid "Document category prefix" +#: inc/reference.class.php:971 inc/reference.class.php:972 +#: inc/reference.class.php:990 +msgid "View by item type" msgstr "" -#: inc/link.class.php:43 -msgid "Generation" -msgstr "" +#: inc/reference.class.php:1047 +msgid "Copy reference" +msgstr "Referinta coie" -#: inc/link.class.php:74 inc/link.class.php:471 -msgid "Generate item" -msgstr "" +#: inc/orderstate.class.php:49 inc/order.class.php:327 inc/order.class.php:808 +#: inc/order.class.php:1788 hook.php:141 +msgid "Order status" +msgstr "Status Comanda" -#: inc/link.class.php:172 -msgid "Generate" +#: inc/orderstate.class.php:55 inc/billstate.class.php:48 +msgid "You cannot remove this status" msgstr "" -#: inc/link.class.php:175 inc/notificationtargetorder.class.php:52 -#: inc/notificationtargetorder.class.php:131 -msgid "No item to generate" +#: inc/orderstate.class.php:87 +msgid "Draft" msgstr "" -#: inc/link.class.php:438 -msgid "No associated item" +#: inc/orderstate.class.php:88 +msgid "Waiting for approval" msgstr "" -#: inc/link.class.php:474 -msgid "Link to an existing item" +#: inc/orderstate.class.php:89 +msgid "Validated" +msgstr "Validat" + +#: inc/orderstate.class.php:90 +msgid "Being delivered" msgstr "" -#: inc/link.class.php:475 -msgid "Delete item link" +#: inc/orderstate.class.php:91 +msgid "Delivered" +msgstr "Livrat" + +#: inc/orderstate.class.php:92 +msgid "Canceled" msgstr "" -#: inc/link.class.php:669 inc/link.class.php:731 inc/link.class.php:739 -#: inc/link.class.php:743 -msgid "Item linked to order" +#: inc/orderstate.class.php:93 inc/billstate.class.php:60 +#: inc/billstate.class.php:91 +msgid "Paid" +msgstr "Platit" + +#: inc/reference_supplier.class.php:452 +msgid "List references" msgstr "" -#: inc/link.class.php:745 -msgid "Item already linked to another one" +#: inc/surveysupplier.class.php:45 inc/surveysupplier.class.php:179 +#: inc/surveysupplier.class.php:381 inc/surveysupplier.class.php:512 +msgid "Supplier quality" msgstr "" -#: inc/link.class.php:783 inc/link.class.php:788 inc/link.class.php:808 -#: inc/link.class.php:813 -msgid "Item unlink form order" +#: inc/surveysupplier.class.php:183 inc/order_item.class.php:957 +#: inc/order.class.php:383 inc/order.class.php:751 hook.php:232 +msgid "Order name" +msgstr "Nume Comanda" + +#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:384 +msgid "Note" msgstr "" -#: inc/link.class.php:806 -msgid "One or several selected rows haven't linked items" +#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:385 +msgid "Comment on survey" msgstr "" -#: inc/link.class.php:942 inc/link.class.php:946 -msgid "Item generated by using order" +#: inc/surveysupplier.class.php:214 inc/surveysupplier.class.php:309 +msgid "Administrative followup quality (contracts, bills, mail, etc.)" msgstr "" -#: inc/link.class.php:953 -msgid "Item successfully selected" +#: inc/surveysupplier.class.php:223 inc/surveysupplier.class.php:316 +msgid "Commercial followup quality, visits, responseness" msgstr "" -#: inc/notificationtargetorder.class.php:47 -#: inc/notificationtargetorder.class.php:115 -msgid "Request order validation" +#: inc/surveysupplier.class.php:230 inc/surveysupplier.class.php:321 +msgid "Contacts availability" msgstr "" -#: inc/notificationtargetorder.class.php:48 -msgid "Order validated" +#: inc/surveysupplier.class.php:238 inc/surveysupplier.class.php:327 +msgid "Quality of supplier intervention" msgstr "" -#: inc/notificationtargetorder.class.php:51 -#: inc/notificationtargetorder.class.php:186 -msgid "Late orders" +#: inc/surveysupplier.class.php:245 inc/surveysupplier.class.php:333 +msgid "Reliability about annouced delays" msgstr "" -#: inc/notificationtargetorder.class.php:101 -#: inc/notificationtargetorder.class.php:152 -#: inc/notificationtargetorder.class.php:160 inc/order.class.php:247 -#: inc/order.class.php:691 report/deliveryinfos/deliveryinfos.php:48 -#: report/orderdelivery/orderdelivery.php:48 -#: report/orderdelivery/orderdelivery.php:72 -msgid "Date of order" +#: inc/surveysupplier.class.php:257 +msgid "Final supplier note" msgstr "" -#: inc/notificationtargetorder.class.php:108 -#: inc/notificationtargetorder.class.php:154 -msgid "Comment of validation" +#: inc/surveysupplier.class.php:347 +msgid "Average mark up to 10 (X points / 5)" msgstr "" -#: inc/notificationtargetorder.class.php:127 -msgid "Validation canceled successfully" +#: inc/billstate.class.php:42 inc/order_item.class.php:1220 +#: inc/bill.class.php:355 hook.php:144 +msgid "Bill status" +msgstr "Status Factura" + +#: inc/billstate.class.php:59 +msgid "Being paid" msgstr "" -#: inc/notificationtargetorder.class.php:155 -msgid "Editor of validation" +#: inc/billstate.class.php:92 +msgid "Not paid" +msgstr "Neplatit" + +#: inc/preference.class.php:163 inc/order.class.php:1473 +msgid "Use this model" msgstr "" -#: inc/notificationtargetorder.class.php:161 inc/order.class.php:353 -#: inc/order.class.php:900 report/orderdelivery/orderdelivery.php:73 -msgid "Estimated due date" +#: inc/preference.class.php:168 inc/order.class.php:1482 +msgid "Use this sign" msgstr "" -#: inc/order.class.php:257 inc/order.class.php:400 inc/order.class.php:827 -#: inc/order.class.php:870 inc/order.class.php:1564 -msgid "Postage" +#: inc/config.class.php:103 +msgid "Plugin configuration" msgstr "" -#: inc/order.class.php:267 inc/order.class.php:769 -#: report/deliveryinfos/deliveryinfos.php:50 -#: report/orderdelivery/orderdelivery.php:50 -#: report/orderdelivery/orderdelivery.php:76 -msgid "Delivery location" +#: inc/config.class.php:106 +msgid "Default VAT" +msgstr "TVA implicit" + +#: inc/config.class.php:118 +msgid "Use validation process" msgstr "" -#: inc/order.class.php:373 -msgid "Order is late" +#: inc/config.class.php:125 +msgid "Order generation in ODT" msgstr "" -#: inc/order.class.php:508 -msgid "Validation" +#: inc/config.class.php:131 +msgid "Activate suppliers quality satisfaction" msgstr "" -#: inc/order.class.php:514 -msgid "Purchase order" +#: inc/config.class.php:138 +msgid "Display order's suppliers informations" msgstr "" -#: inc/order.class.php:552 -msgid "An order number is mandatory !" +#: inc/config.class.php:144 +msgid "Color to be displayed when order due date is overtaken" msgstr "" -#: inc/order.class.php:560 inc/order.class.php:598 -msgid "" -"The order date must be within the dates entered for the selected budget." +#: inc/config.class.php:152 +msgid "Copy order documents when a new item is created" msgstr "" -#: inc/order.class.php:915 -msgid "Due date overtaken" +#: inc/config.class.php:159 +msgid "Default heading when adding a document to an order" msgstr "" -#: inc/order.class.php:1038 inc/order.class.php:1558 -msgid "Price tax free" +#: inc/config.class.php:166 inc/order.class.php:475 inc/order.class.php:1067 +#: inc/notificationtargetorder.class.php:450 +#: inc/notificationtargetorder.class.php:453 +msgid "Author group" msgstr "" -#: inc/order.class.php:1048 inc/order.class.php:1561 -msgid "Price tax free with postage" +#: inc/config.class.php:176 inc/order.class.php:482 inc/order.class.php:1117 +#: inc/notificationtargetorder.class.php:452 +#: inc/notificationtargetorder.class.php:454 +msgid "Recipient group" msgstr "" -#: inc/order.class.php:1055 inc/order.class.php:1500 inc/order.class.php:1573 -#: inc/order.class.php:1664 inc/order_item.class.php:608 -#: inc/order_item.class.php:982 -msgid "Price ATI" +#: inc/config.class.php:198 +msgid "Hide inactive budgets" msgstr "" -#: inc/order.class.php:1292 -msgid "Validation process" +#: inc/config.class.php:205 +msgid "Transmit budget change to linked assets" msgstr "" -#: inc/order.class.php:1309 -msgid "" -"Do you really want to cancel this order ? This option is irreversible !" +#: inc/config.class.php:213 +msgid "Automatic actions when delivery" msgstr "" -#: inc/order.class.php:1310 inc/profile.class.php:58 inc/profile.class.php:206 -#: inc/profile.class.php:466 -msgid "Cancel order" +#: inc/config.class.php:227 +msgid "Asked" msgstr "" -#: inc/order.class.php:1316 -msgid "Validate order" +#: inc/config.class.php:233 +msgid "Default state" msgstr "" -#: inc/order.class.php:1322 -msgid "Do you want to cancel the validation approval ?" +#: inc/config.class.php:244 +msgid "Add order location to item" msgstr "" -#: inc/order.class.php:1324 -msgid "Cancel ask for validation" +#: inc/config.class.php:251 +msgid "Add billing details to item" msgstr "" -#: inc/order.class.php:1330 -msgid "Ask for validation" +#: inc/config.class.php:296 +msgid "Order lifecycle" msgstr "" -#: inc/order.class.php:1336 -msgid "Do you really want to edit the order ?" +#: inc/config.class.php:300 +msgid "State before validation" msgstr "" -#: inc/order.class.php:1338 -msgid "Edit order" +#: inc/config.class.php:310 +msgid "Waiting for validation state" msgstr "" -#: inc/order.class.php:1346 -msgid "Thanks to add at least one equipment on your order." +#: inc/config.class.php:320 +msgid "Validated order state" msgstr "" -#: inc/order.class.php:1361 inc/order.class.php:1387 inc/profile.class.php:55 -#: inc/profile.class.php:185 inc/profile.class.php:454 -msgid "Order Generation" +#: inc/config.class.php:330 +msgid "Order being delivered state" msgstr "" -#: inc/order.class.php:1367 inc/preference.class.php:163 -msgid "Use this model" +#: inc/config.class.php:340 +msgid "Order delivered state" msgstr "" -#: inc/order.class.php:1376 inc/preference.class.php:168 -msgid "Use this sign" +#: inc/config.class.php:350 +msgid "Order paied state" msgstr "" -#: inc/order.class.php:1395 -msgid "Thanks to select a model into your preferences" +#: inc/config.class.php:360 +msgid "Canceled order state" msgstr "" -#: inc/order.class.php:1431 -msgid "Invoice address" +#: inc/order_item.class.php:99 inc/order_item.class.php:1559 +msgid "Order item" msgstr "" -#: inc/order.class.php:1461 -msgid "Delivery address" +#: inc/order_item.class.php:206 +msgid "Some fields cannont be modified because they belong to an order" msgstr "" -#: inc/order.class.php:1472 -msgid "The" +#: inc/order_item.class.php:300 +msgid "Add to the order" msgstr "" -#: inc/order.class.php:1474 -msgid "Issuer order" +#: inc/order_item.class.php:309 inc/order_item.class.php:693 +#: inc/order_item.class.php:1039 inc/ordertax.class.php:41 +#: inc/order.class.php:307 inc/order.class.php:955 inc/order.class.php:1172 +#: inc/order.class.php:1614 inc/order.class.php:1699 hook.php:138 +msgid "VAT" +msgstr "TVA" + +#: inc/order_item.class.php:383 +msgid "Please select a supplier" msgstr "" -#: inc/order.class.php:1491 -msgid "Recipient" +#: inc/order_item.class.php:498 +msgid "Equipment" msgstr "" -#: inc/order.class.php:1494 -msgid "Designation" +#: inc/order_item.class.php:510 inc/order_item.class.php:669 +#: inc/order_item.class.php:865 +msgid "Do you really want to update this item ?" msgstr "" -#: inc/order.class.php:1496 -msgid "Unit price" +#: inc/order_item.class.php:660 inc/order_item.class.php:856 +msgid "" +"Do you really want to delete these details ? Delivered items will not be " +"linked to order !" msgstr "" -#: inc/order.class.php:1498 -msgid "Discount rate" +#: inc/order_item.class.php:695 inc/order_item.class.php:1059 +msgid "Discounted price tax free" msgstr "" -#: inc/order.class.php:1499 -msgid "Sum tax free" +#: inc/order_item.class.php:696 inc/order_item.class.php:1064 +#: inc/order.class.php:1165 inc/order.class.php:1617 inc/order.class.php:1701 +#: inc/order.class.php:1791 +msgid "Price ATI" msgstr "" -#: inc/order.class.php:1576 -msgid "€" -msgstr "€" +#: inc/order_item.class.php:956 +msgid "Order informations" +msgstr "" -#: inc/order.class.php:1577 -msgid "Signature of issuing order" +#: inc/order_item.class.php:1121 +msgid "Payment status" msgstr "" -#: inc/order.class.php:1657 inc/reference.class.php:260 -#: inc/reference.class.php:804 -msgid "Linked orders" +#: inc/order_item.class.php:1133 +msgid "Paid value" msgstr "" -#: inc/order.class.php:1682 -msgid "Unlink" +#: inc/order.class.php:265 inc/order.class.php:1467 inc/order.class.php:1493 +msgid "Order Generation" msgstr "" -#: inc/order.class.php:1806 -msgid "Total orders related with this budget is greater than its value." +#: inc/order.class.php:267 +msgid "Order validation" msgstr "" -#: inc/order.class.php:1811 -msgid "Total orders related with this budget is equal to its value." +#: inc/order.class.php:268 inc/order.class.php:1416 +msgid "Cancel order" msgstr "" -#: inc/order_item.class.php:65 inc/order_item.class.php:1471 -msgid "Order item" +#: inc/order.class.php:269 +msgid "Edit a validated order" msgstr "" -#: inc/order_item.class.php:77 inc/order_item.class.php:272 -#: inc/order_item.class.php:455 inc/order_item.class.php:604 -#: inc/order_item.class.php:951 inc/reference.class.php:127 -#: inc/reference_supplier.class.php:82 inc/reference_supplier.class.php:214 -#: inc/reference_supplier.class.php:257 inc/reference_supplier.class.php:463 -msgid "Unit price tax free" +#: inc/order.class.php:270 +msgid "Generate order without validation" msgstr "" -#: inc/order_item.class.php:172 -msgid "Some fields cannont be modified because they belong to an order" +#: inc/order.class.php:273 +msgid "Link order to a ticket" msgstr "" -#: inc/order_item.class.php:265 -msgid "Add to the order" +#: inc/order.class.php:307 inc/order.class.php:450 inc/order.class.php:913 +#: inc/order.class.php:955 inc/order.class.php:1696 +msgid "Postage" msgstr "" -#: inc/order_item.class.php:338 -msgid "Please select a supplier" +#: inc/order.class.php:423 inc/order.class.php:2005 +msgid "Order is late" msgstr "" -#: inc/order_item.class.php:450 -msgid "Equipment" +#: inc/order.class.php:561 +msgid "Validation" msgstr "" -#: inc/order_item.class.php:462 inc/order_item.class.php:774 -msgid "Do you really want to update this item ?" +#: inc/order.class.php:567 +msgid "Purchase order" msgstr "" -#: inc/order_item.class.php:607 inc/order_item.class.php:977 -msgid "Discounted price tax free" +#: inc/order.class.php:609 +msgid "An order number is mandatory !" msgstr "" -#: inc/order_item.class.php:765 +#: inc/order.class.php:619 inc/order.class.php:677 msgid "" -"Do you really want to delete these details ? Delivered items will not be " -"linked to order !" +"The order date must be within the dates entered for the selected budget." msgstr "" -#: inc/order_item.class.php:866 -msgid "Order informations" +#: inc/order.class.php:999 +msgid "Due date overtaken" msgstr "" -#: inc/order_item.class.php:1037 -msgid "Payment status" +#: inc/order.class.php:1148 inc/order.class.php:1692 inc/order.class.php:1790 +msgid "Price tax free" msgstr "" -#: inc/order_item.class.php:1049 -msgid "Paid value" +#: inc/order.class.php:1158 inc/order.class.php:1694 +msgid "Price tax free with postage" msgstr "" -#: inc/orderstate.class.php:86 -msgid "Draft" +#: inc/order.class.php:1396 +msgid "Validation process" msgstr "" -#: inc/orderstate.class.php:87 -msgid "Waiting for approval" +#: inc/order.class.php:1415 +msgid "" +"Do you really want to cancel this order ? This option is irreversible !" msgstr "" -#: inc/orderstate.class.php:88 -msgid "Validated" -msgstr "Validat" +#: inc/order.class.php:1422 +msgid "Validate order" +msgstr "" -#: inc/orderstate.class.php:89 -msgid "Being delivered" +#: inc/order.class.php:1428 +msgid "Do you want to cancel the validation approval ?" msgstr "" -#: inc/orderstate.class.php:90 -msgid "Delivered" -msgstr "Livrat" +#: inc/order.class.php:1430 +msgid "Cancel ask for validation" +msgstr "" -#: inc/orderstate.class.php:91 -msgid "Canceled" +#: inc/order.class.php:1436 +msgid "Ask for validation" msgstr "" -#: inc/order_supplier.class.php:281 -msgid "Delivery statistics" +#: inc/order.class.php:1442 +msgid "Do you really want to edit the order ?" msgstr "" -#: inc/order_supplier.class.php:297 -msgid "No specified status" +#: inc/order.class.php:1444 +msgid "Edit order" msgstr "" -#: inc/profile.class.php:56 inc/profile.class.php:178 -#: inc/profile.class.php:449 inc/reception.class.php:469 -msgid "Take item delivery" +#: inc/order.class.php:1452 +msgid "Thanks to add at least one equipment on your order." msgstr "" -#: inc/profile.class.php:57 inc/profile.class.php:199 -#: inc/profile.class.php:462 -msgid "Order validation" +#: inc/order.class.php:1501 +msgid "Thanks to select a model into your preferences" msgstr "" -#: inc/profile.class.php:59 inc/profile.class.php:213 -#: inc/profile.class.php:470 -msgid "Edit a validated order" +#: inc/order.class.php:1543 +msgid "Invoice address" msgstr "" -#: inc/profile.class.php:61 inc/profile.class.php:192 -#: inc/profile.class.php:458 -msgid "Link order to a ticket" +#: inc/order.class.php:1578 +msgid "Delivery address" msgstr "" -#: inc/profile.class.php:62 inc/profile.class.php:220 -#: inc/profile.class.php:474 -msgid "Generate order without validation" +#: inc/order.class.php:1588 +msgid "The" msgstr "" -#: inc/profile.class.php:164 -msgid "Order management" +#: inc/order.class.php:1590 +msgid "Issuer order" msgstr "" -#: inc/reception.class.php:48 -msgid "Delivery" +#: inc/order.class.php:1608 +msgid "Recipient" msgstr "" -#: inc/reception.class.php:197 inc/reception.class.php:495 -msgid "Taken delivery" +#: inc/order.class.php:1611 +msgid "Designation" msgstr "" -#: inc/reception.class.php:310 -msgid "Delivered items" +#: inc/order.class.php:1613 +msgid "Unit price" msgstr "" -#: inc/reception.class.php:451 -msgid "Take item delivery (bulk)" +#: inc/order.class.php:1615 +msgid "Discount rate" msgstr "" -#: inc/reception.class.php:492 -msgid "Waiting for delivery" +#: inc/order.class.php:1616 +msgid "Sum tax free" msgstr "" -#: inc/reception.class.php:516 -msgid "Not enough items to deliver" +#: inc/order.class.php:1703 +msgid "€" +msgstr "€" + +#: inc/order.class.php:1704 +msgid "Signature of issuing order" msgstr "" -#: inc/reception.class.php:551 inc/reception.class.php:578 -msgid "Item successfully taken delivery" +#: inc/order.class.php:1811 +msgid "Unlink" msgstr "" -#: inc/reception.class.php:607 -msgid "Item already taken delivery" +#: inc/order.class.php:1951 +msgid "Total orders related with this budget is greater than its value." msgstr "" -#: inc/reception.class.php:743 -msgid "Item delivered" +#: inc/order.class.php:1956 +msgid "Total orders related with this budget is equal to its value." msgstr "" -#: inc/reference.class.php:136 inc/reference_supplier.class.php:77 -#: inc/reference_supplier.class.php:205 -msgid "Manufacturer's product reference" +#: inc/othertype.class.php:40 hook.php:142 +msgid "Other type of item" +msgstr "Alt tip al elementului" + +#: inc/bill.class.php:59 +msgid "A bill number is mandatory" msgstr "" -#: inc/reference.class.php:189 -msgid "Cannot create reference without a name" +#: inc/notificationtargetorder.class.php:46 +#: inc/notificationtargetorder.class.php:114 +msgid "Request order validation" msgstr "" -#: inc/reference.class.php:194 -msgid "Cannot create reference without a type" +#: inc/notificationtargetorder.class.php:47 +msgid "Order validated" msgstr "" -#: inc/reference.class.php:202 -msgid "A reference with the same name still exists" +#: inc/notificationtargetorder.class.php:50 +#: inc/notificationtargetorder.class.php:185 +msgid "Late orders" msgstr "" -#: inc/reference.class.php:214 -msgid "Reference(s) in use" +#: inc/notificationtargetorder.class.php:51 +#: inc/notificationtargetorder.class.php:130 inc/link.class.php:210 +msgid "No item to generate" msgstr "" -#: inc/reference.class.php:884 -msgid "Copy of" +#: inc/notificationtargetorder.class.php:107 +#: inc/notificationtargetorder.class.php:153 +msgid "Comment of validation" msgstr "" -#: inc/reference.class.php:910 -msgid "Select the wanted item type" +#: inc/notificationtargetorder.class.php:126 +msgid "Validation canceled successfully" msgstr "" -#: inc/reference.class.php:964 inc/reference.class.php:965 -#: inc/reference.class.php:983 -msgid "View by item type" +#: inc/notificationtargetorder.class.php:154 +msgid "Editor of validation" msgstr "" -#: inc/reference_supplier.class.php:454 -msgid "List references" +#: inc/order_supplier.class.php:274 +msgid "Delivery statistics" msgstr "" -#: inc/surveysupplier.class.php:43 inc/surveysupplier.class.php:179 -#: inc/surveysupplier.class.php:369 inc/surveysupplier.class.php:498 -msgid "Supplier quality" +#: inc/order_supplier.class.php:290 +msgid "No specified status" msgstr "" -#: inc/surveysupplier.class.php:106 -msgid "Really unsatisfied" +#: inc/link.class.php:48 +msgid "Generation" msgstr "" -#: inc/surveysupplier.class.php:108 -msgid "Really satisfied" +#: inc/link.class.php:75 inc/link.class.php:442 +msgid "Generate item" msgstr "" -#: inc/surveysupplier.class.php:184 inc/surveysupplier.class.php:372 -msgid "Note" +#: inc/link.class.php:443 +msgid "Link to an existing item" msgstr "" -#: inc/surveysupplier.class.php:185 inc/surveysupplier.class.php:373 -msgid "Comment on survey" +#: inc/link.class.php:444 +msgid "Delete item link" msgstr "" -#: inc/surveysupplier.class.php:213 inc/surveysupplier.class.php:297 -msgid "Administrative followup quality (contracts, bills, mail, etc.)" +#: inc/link.class.php:490 +msgid "Cannot link several items to one detail line" msgstr "" -#: inc/surveysupplier.class.php:219 inc/surveysupplier.class.php:302 -msgid "Commercial followup quality, visits, responseness" +#: inc/link.class.php:501 +msgid "Cannot link items not delivered" msgstr "" -#: inc/surveysupplier.class.php:225 inc/surveysupplier.class.php:307 -msgid "Contacts availability" +#: inc/link.class.php:615 +msgid "No associated item" msgstr "" -#: inc/surveysupplier.class.php:231 inc/surveysupplier.class.php:312 -msgid "Quality of supplier intervention" +#: inc/link.class.php:854 inc/link.class.php:924 inc/link.class.php:932 +#: inc/link.class.php:936 +msgid "Item linked to order" msgstr "" -#: inc/surveysupplier.class.php:237 inc/surveysupplier.class.php:317 -msgid "Reliability about annouced delays" +#: inc/link.class.php:938 +msgid "Item already linked to another one" msgstr "" -#: inc/surveysupplier.class.php:247 -msgid "Final supplier note" +#: inc/link.class.php:975 inc/link.class.php:980 inc/link.class.php:1001 +#: inc/link.class.php:1006 +msgid "Item unlink form order" msgstr "" -#: inc/surveysupplier.class.php:331 -msgid "Average mark up to 10 (X points / 5)" +#: inc/link.class.php:998 +msgid "One or several selected rows haven't linked items" msgstr "" -#: report/deliveryinfos/deliveryinfos.php:47 -msgid "deliveryinfos_report_title" +#: inc/link.class.php:1171 inc/link.class.php:1175 +msgid "Item generated by using order" msgstr "" -#: report/deliveryinfos/deliveryinfos.php:63 -msgid "Orders total" +#: inc/link.class.php:1182 +msgid "Item successfully selected" msgstr "" -#: report/deliveryinfos/deliveryinfos.php:64 -msgid "Late orders total" +#: hook.php:46 +msgid "Plugin installation or upgrade" +msgstr "Instalare sau actualizare Plugin" + +#: hook.php:86 +msgid "Can't create folder" msgstr "" -#: report/orderdelivery/orderdelivery.php:47 -msgid "orderdelivery_report_title" +#: hook.php:94 +#, php-format +msgid "Cannot copy file %1$s to %2$s" msgstr "" diff --git a/locales/tr_TR.mo b/locales/tr_TR.mo index 61e4564e1fd055b8a131dd0c127db807010257b5..72cd6b1e2c2f05a996ada14d3fbcc920e4f46ede 100644 GIT binary patch delta 4448 zcmYk<3s6+o9mny5pb{kt2!cxRqJSczvP5fr0EQ%(f)W*DYc#qBjE{9OyGtsXcuk29 zY>HN*sfwD1dDzwxi!W@f1nDF*jgx67HkNekn0BgTC!LrXJ0(e{{r>hIW^yM#Kj+@v zd(S!lbM9*Xv!Suhy`CJm-*9x33^HqgF#}_aS(c!y#%xM7W+XOXKE8zGuoFk&E&F*~ zk}>ykJ{q}X3a}W9F%zG|WNgL$*oJiBnlm&;bD;~f@iQEX1NrtKOv5-FgM)D#-h)M` z2hGM|ScW5T32N+5V?1uf6x@mTVJqh1g{ZDEH)v=8@jPWBj>l=Z7*p{@WK8BYEX33H z`af_W=ilIDjH8z!ct5HVWvBr!Kp!s0bli&?;0a8ne{+_GZuk(XzUe`g@CIt8U!p4V z4QfUSj7p!Uq6U_WjKNGteXkPL@iJ6LYf#UxM^&g1Re>Yumec5_u@n=AdmlW7<2i3e z&FmbiqnoH1^rA|ioaU`*I&#V6qn7LeWUOW$YLBc!O=K%lY_khB;KOOGzed)^g)F>? zdca?iF`3(_8L3yzBoW8peW(YQqDsCDwYKX~9XFvi?NM~F12w=NRAugaP!m zQWvh7T-1O{P#w=heZCwWjG&fiKWZkesHJE_&8QPKu#fHe7xp}k(P-%$)Mm~@4PcT> zqmV`^s-z**12>@_)P$Ph8>oStMpfqbNO8;!)IfSs15e;4osUFSvH&%a>Gpgss*;OP z18`T`3nA1OUDN>fpx*OWP&57jb;C!f2i!n)^e@zmV)*e;hXYX8lTZWCMpd>5wKSEe z-vdAL_PAyn4Q-BHs2lbn∨1I=qM~?ML?WzoEnVm#C5sW8pQR4AgV-P!lOa-B*U% zTT4(AYd{TXH;$rz^EwTxXD(q0_Ml2Tl40t>KGXwCP~WRUJ!lgLhG%59fDY6YynIe~q}53sbQQDT3LK8sQtrCNbwxOVNpi zcm-AB|DhgKl;h2K4ysZWs0l4ZEnSWMJc3&Lt*9k?Imh)nI%U7ujT-UCI05gVehD*j zJs(0QVS=cE?8DjEje2lD)=x_|3Uz%lY6&)Ae{8hZn@|&c-=(1u_E>M@BbOPKclAeV&gR_;*nQTWHU>qXu>qnY?MkEWQ8NXz0OT z;b4p}@ctc;f?B&ds9n1Rbz>OSVJqtOyM%i1pHKt6iF#YU#(_A3vS?yisJ&H&dfrML zLI37i8XEBd)QxR;4_-m7@h7M?{}dm>&oLg0CVL&uLf!W$YQRC%Tl4~|qvNOnbRs1; zpIPsss~h5{c$+K}hjLzk_u_2S4Hc-he8PVI4C=les2R7SI(P?F!9SwzyN(+89ZbYn zUKv#+1&3fpA@$c6^SPi7i%~PFM3r_O@*sBsxob;jyq6GaRrm`3)JrJ=krWM z4QwLD;e6CU7NG`GowGy+`ECTu|M&KA@NJCL7m^8u=qH&G9aE#kKub5KjS3N@fD zs7mcYJ?|}h{XNw4uA&C`cT}Z%T^gk{`rprv#fMQN-G=I5J62;C7Gv5}{&|IuA^Xc5 zL{;v6Ou?(Dj&7p{(u=BO(ll?$#-sLBF(#w?01e%+7&X%x9E6Ri2Q;I;_$F#ob)a_f zpHUtE8+Cu&cf9Mva5(2v?0GrrHLgK*>|zZ5oN(PWZ8Y@0A16D=7IKQHeCklgdmho< zzuUI8AAUoY5$y>LQpXR-q-e|g<1yP-HFa$FFh{Xg@Bc4o{Di2y2T3<+B9D^3qmc%i z*vueIz#Jm1oOzb0TB?MWua4-LOQuI#{3V8Zt5%TL$!Ve`JWDRnziB2qSYq=%vR)_l zn1GW>KYKn0-zIEyGt*ux!+N3(+IK9WafC$3J0y*)COWji`wsPQo+j(;m0w}5ZC}Lw zM8A69J~}xG682W~^@HgDKgd1$!yZ-ms%`%mYixTZR+ERd{(9eEAv*Lb9VYE$E7?SJ z@Yb1m(U$kuDtpef5p0Bo`_P(+3FI>Q87U=QzkmaQBXrXbEJYg?v#5c(Ta>ic!waWEe`{Kku z#3YW3I8TOZ{gGN{bzPvQHq$UDv)0qztY*uiF?W)DGo6ir z`j9^`dwkF-b_(;_tH$1nNv{a_!Ho#B$Ibu% delta 4319 zcmYk<3s6>N9>?)Nf@9#a&+w2*B@8>z^J?A{n^FPmd zv)k%VuJZnq8neaN4v=AFTtBneD6^9OI%;-hve{5vjAOA8M`I_RjXm!BFK__+XOKS| zkYY9&N8kvo!c_bt_Qf`&3(vOD7|DTcn2iT83BSU4`~_pM4_7B(ES`mFs2dH(A((|4 zb1BAQIi}+R%)#rOZK(cs<2d@af72-9Ky;c}22Miyw7FP-)$aIajAefZo{zgQ5kE)G z`~+%%XRr_x=zTCwMh$Ec>i#vT^EY5W`nMJuDp?z9W}T=C>_E+=+kO8QYG4PEKI}`> zdA+EPUlsH#vi3ZVvetJ{Cn?e9W8x{pwc_Yi6TpJD+XM^!Z7F>Kv12X&)j z)C?D(W>Af)OcOGBYeNlWJ8IzFZodar$xl!d`O@wGjH+Z5H`f3XQTqYZd0s9J4WJbD zUe7_z_(s$P&8Q37P#r&vn$h#94qtM|-$V`kAE?qEK|PvY)cc>rkBi=(Jk%mDLeBSW zDhqm{QKfD6Pq20ju-}O)>3-CJ-bdZ&5NakzP}iM6Ev~*S5KU|}YCscF{mes( zVyke9-v1UFDs2zy#-E{Xcno#ouc#XhW*Vx%807I;32Mey;00KVdH5hkV-FVMhd2Yz zUwkE3RA3iSvE1pE%tG5kKG)6>2qV9JS z@@E_Q2(KBp-;JvDC+O)J9it)pP&cY)gOEwvcvJ=EJ6EAPZo#*s%vw<;ouB2urXkez z?HItFsP8{UP2gM9fKTBBjLW9}Ox7l6`y;#>wMcG2J&GnQz>TO9??K(@JJgJOQI(1r z<Hne5l2D*LKOLnS%r4je^2o8K@RlNpsBO*(4k zV^B9PMs-+@s?=O(73%yIZr{Ux?6beD}fnSHoxE@uJO{fmrQRj7{I_yGCWIyVM z?7#WcpM`Eeb3m(k1n-K-i)@{<6;=AjF$UklWb8o=Wivzzgv;)Ifhi-M`nPv5-dbc>kZvtysqX2gtgy#0h@sN-&-Ma#TmlPy-2}O1Tj; z@DbGSMi-{yE2#6|M@{rF#^XuU^4Y$fUjP40LL4rKpHx4#$l zOLiF5@sAjVPZ5>;IimM{8@Zh{k>`o3%39F+H+wVu$v?BO#kI8_UL{M2)`VuGZ4u!O z{e4^LT9cf&IUmMr$2wD905LrgXkn70H z;&C`NAO-!Ms9V-7U0N^BZ+C=c3RzJEm=*pr4hZLnc897LG&z2iGDfmBFjl+ z8%kq0sU3NqRCj2LM|oKNo1>_aUY4(v=-BNg*-{LwUK7Bg>;e|$azG+o$E*, 2015-2017 +# Kaya Zeren , 2015-2018 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-02-02 09:09+0100\n" -"PO-Revision-Date: 2018-02-02 08:15+0000\n" -"Last-Translator: Alexandre Delaunay \n" +"PO-Revision-Date: 2018-02-02 12:35+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tr_TR\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: report/orderdelivery/orderdelivery.php:47 msgid "orderdelivery_report_title" @@ -876,9 +876,9 @@ msgstr "Uygulama eki yükleme ya da güncelleme" #: hook.php:86 msgid "Can't create folder" -msgstr "" +msgstr "Klasör oluşturulamadı" #: hook.php:94 #, php-format msgid "Cannot copy file %1$s to %2$s" -msgstr "" +msgstr "%1$s dosyası %2$s üzerine kopyalanamadı" From 184fec47faba7070ff9868d100a5abd248736626 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Anne?= Date: Thu, 24 May 2018 14:04:41 +0200 Subject: [PATCH 6/6] Add 2.0.1 version definition --- plugin.xml | 4 ++++ setup.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/plugin.xml b/plugin.xml index 56a9337718..248bf899f2 100644 --- a/plugin.xml +++ b/plugin.xml @@ -26,6 +26,10 @@ Benjamin Fontan + + 2.0.1 + 9.2 + 2.0.0 9.2 diff --git a/setup.php b/setup.php index 2390c3d0f4..7908e17c17 100644 --- a/setup.php +++ b/setup.php @@ -34,7 +34,7 @@ @since 2009 ---------------------------------------------------------------------- */ -define('PLUGIN_ORDER_VERSION', '2.0.0'); +define('PLUGIN_ORDER_VERSION', '2.0.1'); if (!defined('PLUGIN_ORDER_TEMPLATE_DIR')) { define("PLUGIN_ORDER_TEMPLATE_DIR", GLPI_PLUGIN_DOC_DIR."/order/templates/");