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/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, + ] + ); + } } } } 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/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(); 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; + } } 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(); diff --git a/locales/cs_CZ.mo b/locales/cs_CZ.mo index 3268cce8a0..acd90eedfb 100644 Binary files a/locales/cs_CZ.mo and b/locales/cs_CZ.mo differ diff --git a/locales/cs_CZ.po b/locales/cs_CZ.po index 25feb0501b..12f6e7707c 100644 --- a/locales/cs_CZ.po +++ b/locales/cs_CZ.po @@ -4,19 +4,20 @@ # # Translators: # David Stepan , 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 31a368052e..24d4e85c5f 100644 Binary files a/locales/de_DE.mo and b/locales/de_DE.mo differ diff --git a/locales/de_DE.po b/locales/de_DE.po index 167407e586..cf3fdc3721 100644 --- a/locales/de_DE.po +++ b/locales/de_DE.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Thomas Spranger , 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 b0c00fda98..b2c775b158 100644 Binary files a/locales/it_IT.mo and b/locales/it_IT.mo differ diff --git a/locales/it_IT.po b/locales/it_IT.po index 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 4089b0d59d..f1ab7e30b6 100644 Binary files a/locales/ro_RO.mo and b/locales/ro_RO.mo differ diff --git a/locales/ro_RO.po b/locales/ro_RO.po index 1bcef76cba..0811daed68 100644 --- a/locales/ro_RO.po +++ b/locales/ro_RO.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Order\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-05-05 14:54+0200\n" -"PO-Revision-Date: 2016-04-20 17:01+0000\n" -"Last-Translator: Doru DEACONU \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 61e4564e1f..72cd6b1e2c 100644 Binary files a/locales/tr_TR.mo and b/locales/tr_TR.mo differ diff --git a/locales/tr_TR.po b/locales/tr_TR.po index aae7a74984..6e69c976b0 100644 --- a/locales/tr_TR.po +++ b/locales/tr_TR.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Kaya Zeren , 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ı" 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/");