123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378 |
- # Translation of Odoo Server.
- # This file contains the translation of the following modules:
- # * purchase
- #
- # Translators:
- # Friederike Fasterling-Nesselbosch, 2022
- # Sergio Zanchetta <primes2h@gmail.com>, 2022
- # Rita Amboni, 2022
- # Martin Trigaux, 2023
- # Marianna Ciofani, 2023
- #
- msgid ""
- msgstr ""
- "Project-Id-Version: Odoo Server 16.0\n"
- "Report-Msgid-Bugs-To: \n"
- "POT-Creation-Date: 2023-05-23 08:22+0000\n"
- "PO-Revision-Date: 2022-09-22 05:54+0000\n"
- "Last-Translator: Marianna Ciofani, 2023\n"
- "Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: \n"
- "Language: it\n"
- "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
- #. module: purchase
- #: model:ir.actions.report,print_report_name:purchase.action_report_purchase_order
- msgid ""
- "\n"
- " (object.state in ('draft', 'sent') and 'Request for Quotation - %s' % (object.name) or\n"
- " 'Purchase Order - %s' % (object.name))"
- msgstr ""
- "\n"
- " (object.state in ('draft', 'sent') and 'Richiesta di preventivo - %s' % (object.name) or\n"
- " 'Ordine di acquisto - %s' % (object.name))"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_partner__supplier_invoice_count
- #: model:ir.model.fields,field_description:purchase.field_res_users__supplier_invoice_count
- msgid "# Vendor Bills"
- msgstr "N. fatture fornitore"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__nbr_lines
- msgid "# of Lines"
- msgstr "N. di righe"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "%(amount)s due %(date)s"
- msgstr "%(amount)sdovuto %(date)s"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "%(product)s from %(original_receipt_date)s to %(new_receipt_date)s"
- msgstr "%(product)s da %(original_receipt_date)s a %(new_receipt_date)s"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "%s confirmed the receipt will take place on %s."
- msgstr "%s ha confermato che la ricezione avrà luogo il %s."
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "%s modified receipt dates for the following products:"
- msgstr "%s date di ricevimento modificate per i seguenti prodotti:"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_orders
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_rfqs
- msgid "&nbsp;"
- msgstr "&nbsp;"
- #. module: purchase
- #: model:ir.actions.report,print_report_name:purchase.report_purchase_quotation
- msgid "'Request for Quotation - %s' % (object.name)"
- msgstr "\"Richiesta di preventivo - %s\" % (object.name)"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.track_po_line_qty_received_template
- #: model_terms:ir.ui.view,arch_db:purchase.track_po_line_template
- msgid "->"
- msgstr "->"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "3-way matching"
- msgstr "Corrispondenza a tre vie"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_config_settings__module_account_3way_match
- msgid "3-way matching: purchases, receptions and bills"
- msgstr "Corrispondenza a tre vie: acquisti, ricezioni e fatture"
- #. module: purchase
- #: model:mail.template,body_html:purchase.email_template_edi_purchase_reminder
- msgid ""
- "<div style=\"margin: 0px; padding: 0px;\">\n"
- " <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
- " Dear <t t-out=\"object.partner_id.name or ''\">Brandon Freeman</t>\n"
- " <t t-if=\"object.partner_id.parent_id\">\n"
- " (<t t-out=\"object.partner_id.parent_id.name or ''\">Azure Interior</t>)\n"
- " </t>\n"
- " <br><br>\n"
- " Here is a reminder that the delivery of the purchase order <span style=\"font-weight:bold;\" t-out=\"object.name or ''\">P00015</span>\n"
- " <t t-if=\"object.partner_ref\">\n"
- " <span style=\"font-weight:bold;\">(<t t-out=\"object.partner_ref or ''\">REF_XXX</t>)</span>\n"
- " </t>\n"
- " is expected for \n"
- " <t t-if=\"object.date_planned\">\n"
- " <span style=\"font-weight:bold;\" t-out=\"format_date(object.date_planned) or ''\">05/05/2021</span>.\n"
- " </t>\n"
- " <t t-else=\"\">\n"
- " <span style=\"font-weight:bold;\">undefined</span>.\n"
- " </t>\n"
- " Could you please confirm it will be delivered on time?\n"
- " <t t-if=\"not is_html_empty(object.user_id.signature)\">\n"
- " <br><br>\n"
- " <t t-out=\"object.user_id.signature or ''\">--<br>Mitchell Admin</t>\n"
- " </t>\n"
- " <br><br>\n"
- " </p>\n"
- "</div>"
- msgstr ""
- "<div style=\"margin: 0px; padding: 0px;\">\n"
- " <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
- " Gentile <t t-out=\"object.partner_id.name or ''\">Brandon Freeman</t>\n"
- " <t t-if=\"object.partner_id.parent_id\">\n"
- " (<t t-out=\"object.partner_id.parent_id.name or ''\">Azure Interior</t>)\n"
- " </t>\n"
- " <br><br>\n"
- " ti ricordiamo che la consegna dell'ordine di acquisto <span style=\"font-weight:bold;\" t-out=\"object.name or ''\">P00015</span>\n"
- " <t t-if=\"object.partner_ref\">\n"
- " <span style=\"font-weight:bold;\">(<t t-out=\"object.partner_ref or ''\">REF_XXX</t>)</span>\n"
- " </t>\n"
- " è prevista per il \n"
- " <t t-if=\"object.date_planned\">\n"
- " <span style=\"font-weight:bold;\" t-out=\"format_date(object.date_planned) or ''\">05/05/2021</span>.\n"
- " </t>\n"
- " <t t-else=\"\">\n"
- " <span style=\"font-weight:bold;\">non definito</span>.\n"
- " </t>\n"
- " Puoi confermare che la consegna avverrà nei tempi previsti?\n"
- " <t t-if=\"not is_html_empty(object.user_id.signature)\">\n"
- " <br><br>\n"
- " <t t-out=\"object.user_id.signature or ''\">--<br>Mitchell Admin</t>\n"
- " </t>\n"
- " <br><br>\n"
- " </p>\n"
- "</div>"
- #. module: purchase
- #: model:mail.template,body_html:purchase.email_template_edi_purchase_done
- msgid ""
- "<div style=\"margin: 0px; padding: 0px;\">\n"
- " <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
- " Dear <t t-out=\"object.partner_id.name or ''\">Brandon Freeman</t>\n"
- " <t t-if=\"object.partner_id.parent_id\">\n"
- " (<t t-out=\"object.partner_id.parent_id.name or ''\">Azure Interior</t>)\n"
- " </t>\n"
- " <br><br>\n"
- " Here is in attachment a purchase order <span style=\"font-weight:bold;\" t-out=\"object.name or ''\">P00015</span>\n"
- " <t t-if=\"object.partner_ref\">\n"
- " with reference: <t t-out=\"object.partner_ref or ''\">REF_XXX</t>\n"
- " </t>\n"
- " amounting in <span style=\"font-weight:bold;\" t-out=\"format_amount(object.amount_total, object.currency_id) or ''\">$ 10.00</span>\n"
- " from <t t-out=\"object.company_id.name or ''\">YourCompany</t>. \n"
- " <br><br>\n"
- " <t t-if=\"object.date_planned\">\n"
- " The receipt is expected for <span style=\"font-weight:bold;\" t-out=\"format_date(object.date_planned) or ''\">05/05/2021</span>.\n"
- " <br><br>\n"
- " Could you please acknowledge the receipt of this order?\n"
- " </t>\n"
- " <t t-if=\"not is_html_empty(object.user_id.signature)\">\n"
- " <br><br>\n"
- " <t t-out=\"object.user_id.signature or ''\">--<br>Mitchell Admin</t>\n"
- " </t>\n"
- " <br><br>\n"
- " </p>\n"
- "</div>"
- msgstr ""
- "<div style=\"margin: 0px; padding: 0px;\">\n"
- " <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
- " Gentile <t t-out=\"object.partner_id.name or ''\">Brandon Freeman</t>\n"
- " <t t-if=\"object.partner_id.parent_id\">\n"
- " (<t t-out=\"object.partner_id.parent_id.name or ''\">Azure Interior</t>)\n"
- " </t>\n"
- " <br><br>\n"
- " in allegato l'ordine di acquisto <span style=\"font-weight:bold;\" t-out=\"object.name or ''\">P00015</span>\n"
- " <t t-if=\"object.partner_ref\">\n"
- " con riferimento: <t t-out=\"object.partner_ref or ''\">REF_XXX</t>\n"
- " </t>\n"
- " pari a <span style=\"font-weight:bold;\" t-out=\"format_amount(object.amount_total, object.currency_id) or ''\">$ 10.00</span>\n"
- " da parte di <t t-out=\"object.company_id.name or ''\">NomeAzienda</t>. \n"
- " <br><br>\n"
- " <t t-if=\"object.date_planned\">\n"
- " L'ordine sarà ricevuto il <span style=\"font-weight:bold;\" t-out=\"format_date(object.date_planned) or ''\">05/05/2021</span>.\n"
- " <br><br>\n"
- " Puoi comunicare che l'ordine è stato ricevuto correttamente?\n"
- " </t>\n"
- " <t t-if=\"not is_html_empty(object.user_id.signature)\">\n"
- " <br><br>\n"
- " <t t-out=\"object.user_id.signature or ''\">--<br>Mitchell Admin</t>\n"
- " </t>\n"
- " <br><br>\n"
- " </p>\n"
- "</div>"
- #. module: purchase
- #: model:mail.template,body_html:purchase.email_template_edi_purchase
- msgid ""
- "<div style=\"margin: 0px; padding: 0px;\">\n"
- " <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
- " Dear <t t-out=\"object.partner_id.name or ''\">Brandon Freeman</t>\n"
- " <t t-if=\"object.partner_id.parent_id\">\n"
- " (<t t-out=\"object.partner_id.parent_id.name or ''\">Azure Interior</t>)\n"
- " </t>\n"
- " <br><br>\n"
- " Here is in attachment a request for quotation <span style=\"font-weight:bold;\" t-out=\"object.name or ''\">P00015</span>\n"
- " <t t-if=\"object.partner_ref\">\n"
- " with reference: <t t-out=\"object.partner_ref or ''\">REF_XXX</t>\n"
- " </t>\n"
- " from <t t-out=\"object.company_id.name or ''\">YourCompany</t>.\n"
- " <br><br>\n"
- " If you have any questions, please do not hesitate to contact us.\n"
- " <br><br>\n"
- " Best regards,\n"
- " <t t-if=\"not is_html_empty(object.user_id.signature)\">\n"
- " <br><br>\n"
- " <t t-out=\"object.user_id.signature or ''\">--<br>Mitchell Admin</t>\n"
- " </t>\n"
- " </p>\n"
- "</div>"
- msgstr ""
- "<div style=\"margin: 0px; padding: 0px;\">\n"
- " <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n"
- " Gentile <t t-out=\"object.partner_id.name or ''\">Brandon Freeman</t>\n"
- " <t t-if=\"object.partner_id.parent_id\">\n"
- " (<t t-out=\"object.partner_id.parent_id.name or ''\">Azure Interior</t>)\n"
- " </t>\n"
- " <br><br>\n"
- " in allegato la richiesta di preventivo <span style=\"font-weight:bold;\" t-out=\"object.name or ''\">P00015</span>\n"
- " <t t-if=\"object.partner_ref\">\n"
- " con riferimento: <t t-out=\"object.partner_ref or ''\">REF_XXX</t>\n"
- " </t>\n"
- " da <t t-out=\"object.company_id.name or ''\">NomeAzienda</t>.\n"
- " <br><br>\n"
- " Se hai domande, non esitare a contattarci.\n"
- " <br><br>\n"
- " Cordiali saluti,\n"
- " <t t-if=\"not is_html_empty(object.user_id.signature)\">\n"
- " <br><br>\n"
- " <t t-out=\"object.user_id.signature or ''\">--<br>Mitchell Admin</t>\n"
- " </t>\n"
- " </p>\n"
- "</div>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order
- msgid "<i class=\"fa fa-comment\"/> Send message"
- msgstr "<i class=\"fa fa-comment\"/> Invia messaggio"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order
- msgid "<i class=\"fa fa-download\"/> Download"
- msgstr "<i class=\"fa fa-download\"/> Scarica"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_orders
- msgid ""
- "<i class=\"fa fa-fw fa-check\" role=\"img\" aria-label=\"Done\" "
- "title=\"Done\"/><span class=\"d-none d-md-inline\"> Done</span>"
- msgstr ""
- "<i class=\"fa fa-fw fa-check\" role=\"img\" aria-label=\"Done\" "
- "title=\"Completato\"/><span class=\"d-none d-md-inline\"> Completato</span>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "<i class=\"fa fa-fw fa-check\"/> <b>Paid</b>"
- msgstr "<i class=\"fa fa-fw fa-check\"/> <b>Pagato</b>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "<i class=\"fa fa-fw fa-clock-o\"/> <b>Waiting Payment</b>"
- msgstr "<i class=\"fa fa-fw fa-clock-o\"/> <b>In attesa di pagamento</b>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_partner_kanban_view
- msgid ""
- "<i class=\"fa fa-fw fa-credit-card\" role=\"img\" aria-label=\"Purchases\" "
- "title=\"Purchases\"/>"
- msgstr ""
- "<i class=\"fa fa-fw fa-credit-card\" role=\"img\" aria-label=\"Purchases\" "
- "title=\"Acquisti\"/>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_orders
- msgid ""
- "<i class=\"fa fa-fw fa-file-text\" role=\"img\" aria-label=\"Waiting for "
- "Bill\" title=\"Waiting for Bill\"/><span class=\"d-none d-md-inline\"> "
- "Waiting for Bill</span>"
- msgstr ""
- "<i class=\"fa fa-fw fa-file-text\" role=\"img\" aria-label=\"Waiting for "
- "Bill\" title=\"In attesa della fattura\"/><span class=\"d-none d-md-"
- "inline\"> In attesa della fattura</span>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_orders
- msgid ""
- "<i class=\"fa fa-fw fa-remove\" role=\"img\" aria-label=\"Cancelled\" "
- "title=\"Cancelled\"/><span class=\"d-none d-md-inline\"> Cancelled</span>"
- msgstr ""
- "<i class=\"fa fa-fw fa-remove\" role=\"img\" aria-label=\"Cancelled\" "
- "title=\"Cancellato\"/><span class=\"d-none d-md-inline\"> Annullato</span>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order
- msgid "<i class=\"fa fa-print\"/> Print"
- msgstr "<i class=\"fa fa-print\"/> Stampa"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_orders
- msgid ""
- "<span class=\"d-none d-md-inline\">Confirmation Date</span>\n"
- " <span class=\"d-block d-md-none\">Confirmation</span>"
- msgstr ""
- "<span class=\"d-none d-md-inline\">Data di conferma</span>\n"
- " <span class=\"d-block d-md-none\">Conferma</span>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_orders
- msgid ""
- "<span class=\"d-none d-md-inline\">Purchase Order #</span>\n"
- " <span class=\"d-block d-md-none\">Ref.</span>"
- msgstr ""
- "<span class=\"d-none d-md-inline\">Ordine di acquisto #</span>\n"
- " <span class=\"d-block d-md-none\">Ref.</span>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_rfqs
- msgid ""
- "<span class=\"d-none d-md-inline\">Request for Quotation #</span>\n"
- " <span class=\"d-block d-md-none\">Ref.</span>"
- msgstr ""
- "<span class=\"d-none d-md-inline\">Richiesta di preventivo #</span>\n"
- " <span class=\"d-block d-md-none\">Ref.</span>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid ""
- "<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-"
- "specific.\" aria-label=\"Values set here are company-specific.\" "
- "groups=\"base.group_multi_company\" role=\"img\"/>"
- msgstr ""
- "<span class=\"fa fa-lg fa-building-o\" title=\"I valori impostati qui sono "
- "specifici per azienda.\" aria-label=\"Values set here are company-"
- "specific.\" groups=\"base.group_multi_company\" role=\"img\"/>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid ""
- "<span class=\"o_form_label\" attrs=\"{'invisible': [('state','not in',('draft','sent'))]}\">Request for Quotation </span>\n"
- " <span class=\"o_form_label\" attrs=\"{'invisible': [('state','in',('draft','sent'))]}\">Purchase Order </span>"
- msgstr ""
- "<span class=\"o_form_label\" attrs=\"{'invisible': [('state','not in',('draft','sent'))]}\">Richiesta di preventivo </span>\n"
- " <span class=\"o_form_label\" attrs=\"{'invisible': [('state','in',('draft','sent'))]}\">Ordine di acquisto </span>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.product_normal_form_view_inherit_purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_product_template_purchase_buttons_from
- msgid "<span class=\"o_stat_text\">Purchased</span>"
- msgstr "<span class=\"o_stat_text\">Acquistate</span>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid ""
- "<span class=\"text-muted\" attrs=\"{'invisible': "
- "[('mail_reception_confirmed','=', False)]}\">(confirmed by vendor)</span>"
- msgstr ""
- "<span class=\"text-muted\" attrs=\"{'invisible': "
- "[('mail_reception_confirmed','=', False)]}\">(confermata dal "
- "fornitore)</span>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid ""
- "<span class=\"text-muted\" attrs=\"{'invisible': "
- "[('mail_reminder_confirmed', '=', False)]}\">(confirmed by vendor)</span>"
- msgstr ""
- "<span class=\"text-muted\" attrs=\"{'invisible': "
- "[('mail_reminder_confirmed', '=', False)]}\">(confermata dal "
- "fornitore)</span>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid ""
- "<span groups=\"account.group_show_line_subtotals_tax_excluded\">Amount</span>\n"
- " <span groups=\"account.group_show_line_subtotals_tax_included\">Total Price</span>"
- msgstr ""
- "<span groups=\"account.group_show_line_subtotals_tax_excluded\">Importo</span>\n"
- " <span groups=\"account.group_show_line_subtotals_tax_included\">Prezzo totale</span>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_partner_property_form
- msgid "<span> day(s) before</span>"
- msgstr "<span> giorno/i prima</span>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "<span>Ask confirmation</span>"
- msgstr "<span>Richiesta di conferma</span>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "<span>Taxes</span>"
- msgstr "<span>Imposte</span>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "<strong class=\"d-block mb-1\">From:</strong>"
- msgstr "<strong class=\"d-block mb-1\">Da:</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "<strong class=\"d-block mb-1\">Invoices</strong>"
- msgstr "<strong class=\"d-block mb-1\">Fatture</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- msgid "<strong class=\"mr16\">Subtotal</strong>"
- msgstr "<strong class=\"mr16\">Totale parziale</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order
- msgid "<strong class=\"text-muted\">Purchase Representative</strong>"
- msgstr "<strong class=\"text-muted\">Referente acquisti</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- msgid "<strong>Amount</strong>"
- msgstr "<strong>Importo</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "<strong>Confirmation Date:</strong>"
- msgstr "<strong>Data conferma:</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- msgid "<strong>Date Req.</strong>"
- msgstr "<strong>Data richiesta</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchasequotation_document
- msgid "<strong>Description</strong>"
- msgstr "<strong>Descrizione</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchasequotation_document
- msgid "<strong>Expected Date</strong>"
- msgstr "<strong>Data attesa</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- msgid "<strong>Order Date:</strong>"
- msgstr "<strong>Data ordine:</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- msgid "<strong>Order Deadline:</strong>"
- msgstr "<strong>Scadenza ordine:</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- msgid "<strong>Purchase Representative:</strong>"
- msgstr "<strong>Referente acquisti:</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchasequotation_document
- msgid "<strong>Qty</strong>"
- msgstr "<strong>Q.tà</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "<strong>Receipt Date:</strong>"
- msgstr "<strong>Data ricezione:</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "<strong>Request For Quotation Date:</strong>"
- msgstr "<strong>Data di richiesta di preventivo:</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchasequotation_document
- msgid "<strong>Shipping address:</strong>"
- msgstr "<strong>Indirizzo di spedizione:</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- msgid "<strong>Taxes</strong>"
- msgstr "<strong>Imposte</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.track_po_line_template
- msgid "<strong>The ordered quantity has been updated.</strong>"
- msgstr "<strong>La quantità ordinata è stata aggiornata.</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.track_po_line_qty_received_template
- msgid "<strong>The received quantity has been updated.</strong>"
- msgstr "<strong>La quantità ricevuta è stata aggiornata.</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order
- msgid "<strong>This purchase has been canceled.</strong>"
- msgstr "<strong>Questo acquisto è stato annullato.</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- msgid "<strong>Unit Price</strong>"
- msgstr "<strong>Prezzo unitario</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "<strong>Update Here</strong>"
- msgstr "<strong>Aggiorna Qui</strong>"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- msgid "<strong>Your Order Reference:</strong>"
- msgstr "<strong>Riferimento ordine:</strong>"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "A sample email has been sent to %s."
- msgstr "Una e-mail campione è stata inviata a %s."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order_line__product_type
- msgid ""
- "A storable product is a product for which you manage stock. The Inventory app has to be installed.\n"
- "A consumable product is a product for which stock is not managed.\n"
- "A service is a non-material product you provide."
- msgstr ""
- "Un prodotto stoccabile è un prodotto per il quale vengono gestite le giacenze. Deve essere installata l'applicazione magazzino.\n"
- "Un prodotto di consumo è un prodotto per il quale non vengono gestite le giacenze.\n"
- "Un servizio è un prodotto fornito in modo immateriale."
- #. module: purchase
- #: model:res.groups,name:purchase.group_warning_purchase
- msgid "A warning can be set on a product or a customer (Purchase)"
- msgstr "Impostazione di un avviso sul prodotto o sul cliente (Acquisti)"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid ""
- "Ability to select a package type in purchase orders and to force a quantity "
- "that is a multiple of the number of units per package."
- msgstr ""
- "Possibilità di selezionare un tipo di confezione negli ordini di acquisto e "
- "di forzare una quantità che sia un multiplo del numero di unità per "
- "confezione."
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "Accept"
- msgstr "Accetta"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__access_warning
- msgid "Access warning"
- msgstr "Avviso di accesso"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order_line__qty_received_method
- msgid ""
- "According to product configuration, the received quantity can be automatically computed by mechanism :\n"
- " - Manual: the quantity is set manually on the line\n"
- " - Stock Moves: the quantity comes from confirmed pickings\n"
- msgstr ""
- "In base alla configurazione del prodotto, la quantità ricevuta può essere calcolata in modo automatico secondo la procedura :\n"
- " - manuale: quantità impostata manualmente sulla riga\n"
- " - movimenti di magazzino: quantità proveniente da prelievi confermati\n"
- #. module: purchase
- #: model:ir.actions.act_window,name:purchase.action_accrued_expense_entry
- msgid "Accrued Expense Entry"
- msgstr "Voce di spesa maturata"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__message_needaction
- msgid "Action Needed"
- msgstr "Azione richiesta"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__activity_ids
- msgid "Activities"
- msgstr "Attività"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__activity_exception_decoration
- msgid "Activity Exception Decoration"
- msgstr "Decorazione eccezione attività"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__activity_state
- msgid "Activity State"
- msgstr "Stato attività"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__activity_type_icon
- msgid "Activity Type Icon"
- msgstr "Icona tipo di attività"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Add a note"
- msgstr "Aggiungi nota"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Add a product"
- msgstr "Aggiungi prodotto"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Add a section"
- msgstr "Aggiungi sezione"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Add several variants to the purchase order from a grid"
- msgstr "Aggiunge da una griglia alcune varianti all'ordine di acquisto "
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/js/tours/purchase.js:0
- #, python-format
- msgid "Add some products or services to your quotation."
- msgstr "Aggiungi alcuni prodotti o servizi al preventivo."
- #. module: purchase
- #: model:res.groups,name:purchase.group_purchase_manager
- msgid "Administrator"
- msgstr "Amministratore"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/controllers/portal.py:0
- #, python-format
- msgid "All"
- msgstr "Tutti"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "All Draft RFQs"
- msgstr "Tutte le RdP in bozza"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "All Late RFQs"
- msgstr "Tutte le RdP in ritardo"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "All RFQs"
- msgstr "Tutte le RdP"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "All Waiting RFQs"
- msgstr "Tutte le RdP in attesa"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_res_config_settings__group_send_reminder
- msgid "Allow automatically send email to remind your vendor the receipt date"
- msgstr ""
- "Consente l'invio automatico di e-mail per ricordare al fornitore la data di "
- "ricezione"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__res_company__po_lock__edit
- msgid "Allow to edit purchase orders"
- msgstr "Consente la modifica degli ordini di acquisto"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_bill_union__amount
- msgid "Amount"
- msgstr "Importo"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_report__delay_pass
- msgid ""
- "Amount of time between date planned and order by date for each purchase "
- "order line."
- msgstr ""
- "Tempo tra la data pianificata e l'ordine in base alla data per ogni linea "
- "d'ordine d'acquisto."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_report__avg_days_to_purchase
- msgid ""
- "Amount of time between purchase approval and document creation date. Due to "
- "a hack needed to calculate this, every record will show the "
- "same average value, therefore only use this as an aggregated value with "
- "group_operator=avg"
- msgstr ""
- "Periodo di tempo tra l'approvazione dell'acquisto e la data di creazione del"
- " documento. A causa di un hack necessario per calcolarlo, ogni record "
- "mostrerà lo stesso valore medio, quindi usalo solo come valore aggregato con"
- " group_operator=avg"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_report__delay
- msgid "Amount of time between purchase approval and order by date."
- msgstr ""
- "Quantità di tempo tra l'approvazione dell'acquisto e l'ordine in base alla "
- "data."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__analytic_distribution
- msgid "Analytic"
- msgstr "Analitico"
- #. module: purchase
- #: model:ir.model,name:purchase.model_account_analytic_account
- msgid "Analytic Account"
- msgstr "Conto analitico"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__analytic_distribution_search
- msgid "Analytic Distribution Search"
- msgstr "Ricerca distribuzione analitica"
- #. module: purchase
- #: model:ir.model,name:purchase.model_account_analytic_applicability
- msgid "Analytic Plan's Applicabilities"
- msgstr "Applicabilità del piano analitico"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__analytic_precision
- msgid "Analytic Precision"
- msgstr "Precisione analitica"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Approve Order"
- msgstr "Approva ordine"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__message_attachment_count
- msgid "Attachment Count"
- msgstr "Numero allegati"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Attributes"
- msgstr "Attributi"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_move_form_inherit_purchase
- msgid "Auto-Complete"
- msgstr "Autocompletamento"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_account_bank_statement_line__purchase_vendor_bill_id
- #: model:ir.model.fields,field_description:purchase.field_account_move__purchase_vendor_bill_id
- #: model:ir.model.fields,field_description:purchase.field_account_payment__purchase_vendor_bill_id
- msgid "Auto-complete"
- msgstr "Autocompletamento"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_account_bank_statement_line__purchase_vendor_bill_id
- #: model:ir.model.fields,help:purchase.field_account_move__purchase_vendor_bill_id
- #: model:ir.model.fields,help:purchase.field_account_payment__purchase_vendor_bill_id
- msgid "Auto-complete from a past bill / purchase order."
- msgstr ""
- "Completamento automatico da una fattura / ordine di acquisto precedente."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_account_bank_statement_line__purchase_id
- #: model:ir.model.fields,help:purchase.field_account_move__purchase_id
- #: model:ir.model.fields,help:purchase.field_account_payment__purchase_id
- msgid "Auto-complete from a past purchase order."
- msgstr "Completamento automatico da un ordine di acquisto precedente."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Automatically lock confirmed orders to prevent editing"
- msgstr "Blocco automatico di ordini confermati per impedire la modifica"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Automatically remind the receipt date to your vendors"
- msgstr "Ricorda automaticamente al fornitore la data di ricezione"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__receipt_reminder_email
- #: model:ir.model.fields,help:purchase.field_res_partner__receipt_reminder_email
- #: model:ir.model.fields,help:purchase.field_res_users__receipt_reminder_email
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid ""
- "Automatically send a confirmation email to the vendor X days before the "
- "expected receipt date, asking him to confirm the exact date."
- msgstr ""
- "Invio automatico di una e-mail al fornitore con richiesta di conferma della "
- "data esatta, X giorni prima della data di ricezione attesa."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__price_average
- msgid "Average Cost"
- msgstr "Costo medio"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__avg_days_to_purchase
- msgid "Average Days to Purchase"
- msgstr "Giorni medi all'acquisto"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "Avg Order Value"
- msgstr "Valore medio ordine"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_config_settings__default_purchase_method
- msgid "Bill Control"
- msgstr "Controllo fatture"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__invoice_count
- msgid "Bill Count"
- msgstr "Numero fatture"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__invoice_lines
- msgid "Bill Lines"
- msgstr "Righe fattura"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Billed"
- msgstr "Fatturata"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__qty_invoiced
- msgid "Billed Qty"
- msgstr "Q.tà fatturata"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Billed Quantity"
- msgstr "Quantità fatturata"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.track_po_line_template
- msgid "Billed Quantity:"
- msgstr "Quantità fatturata:"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__invoice_status
- msgid "Billing Status"
- msgstr "Stato fatturazione"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__invoice_ids
- msgid "Bills"
- msgstr "Fatture"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- msgid "Bills Received"
- msgstr "Fatture ricevute"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__product_template__purchase_line_warn__block
- #: model:ir.model.fields.selection,name:purchase.selection__res_partner__purchase_warn__block
- msgid "Blocking Message"
- msgstr "Messaggio di blocco"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__user_id
- msgid "Buyer"
- msgstr "Acquirente"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_calendar
- msgid "Calendar View"
- msgstr "Vista calendario"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid ""
- "Calls for tenders are when you want to generate requests for quotations with"
- " several vendors for a given set of products to compare offers."
- msgstr ""
- "Le gare d'appalto permettono di creare richieste di preventivo per più "
- "fornitori per un determinato assortimento di prodotti al fine di confrontare"
- " le offerte."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Cancel"
- msgstr "Annulla"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/controllers/portal.py:0
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__state__cancel
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_report__state__cancel
- #, python-format
- msgid "Cancelled"
- msgstr "Annullato"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- msgid "Cancelled Purchase Order #"
- msgstr "N. ordini di acquisto annullati"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "Cannot delete a purchase order line which is in state '%s'."
- msgstr ""
- "Impossibile eliminare una riga ordine di acquisto che si trova nello stato "
- "\"%s\"."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__product_uom_category_id
- msgid "Category"
- msgstr "Categoria"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__commercial_partner_id
- msgid "Commercial Entity"
- msgstr "Entità commerciale"
- #. module: purchase
- #: model:ir.model,name:purchase.model_res_company
- msgid "Companies"
- msgstr "Aziende"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_bill_union__company_id
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__company_id
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__company_id
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__company_id
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search
- msgid "Company"
- msgstr "Azienda"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_config_settings__company_currency_id
- msgid "Company Currency"
- msgstr "Valuta aziendale"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "Compose Email"
- msgstr "Componi e-mail"
- #. module: purchase
- #: model:ir.model,name:purchase.model_res_config_settings
- msgid "Config Settings"
- msgstr "Impostazioni di configurazione"
- #. module: purchase
- #: model:ir.ui.menu,name:purchase.menu_purchase_config
- msgid "Configuration"
- msgstr "Configurazione"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "Confirm"
- msgstr "Conferma"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Confirm Order"
- msgstr "Conferma ordine"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Confirm Receipt Date"
- msgstr "Conferma data ricezione"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__res_company__po_double_validation__one_step
- msgid "Confirm purchase orders in one step"
- msgstr "Conferma ordini d'acquisto in una fase "
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/js/tours/purchase.js:0
- #, python-format
- msgid "Confirm your purchase."
- msgstr "Conferma l'acquisto."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__date_approve
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__date_approve
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__date_approve
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search
- msgid "Confirmation Date"
- msgstr "Data conferma"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search
- msgid "Confirmation Date Last Year"
- msgstr "Data di conferma L'anno scorso"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__res_company__po_lock__lock
- msgid "Confirmed purchase orders are not editable"
- msgstr "Gli ordini di acquisto confermati non sono modificabili"
- #. module: purchase
- #: model:ir.model,name:purchase.model_res_partner
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order
- msgid "Contact"
- msgstr "Contatto"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_product_product__purchase_method
- #: model:ir.model.fields,field_description:purchase.field_product_template__purchase_method
- msgid "Control Policy"
- msgstr "Politica di controllo"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order_line__product_uom_category_id
- msgid ""
- "Conversion between Units of Measure can only occur if they belong to the "
- "same category. The conversion will be made based on the ratios."
- msgstr ""
- "Le conversioni tra unità di misura possono avvenire solo se appartengono "
- "alla stessa categoria. La conversione verrà effettuata in base alle "
- "proporzioni."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__country_code
- msgid "Country code"
- msgstr "Codice nazione"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Create Bill"
- msgstr "Crea fattura"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_kpis_tree
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_tree
- msgid "Create Bills"
- msgstr "Crea fatture"
- #. module: purchase
- #: model:ir.actions.server,name:purchase.action_purchase_batch_bills
- msgid "Create Vendor Bills"
- msgstr "Crea fatture fornitore"
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.product_product_action
- msgid "Create a new product variant"
- msgstr "Crea una nuova variante prodotto"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__create_uid
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__create_uid
- msgid "Created by"
- msgstr "Creato da"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__create_date
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__create_date
- msgid "Created on"
- msgstr "Data creazione"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_bill_union__currency_id
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__currency_id
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__currency_id
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__currency_id
- msgid "Currency"
- msgstr "Valuta"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__currency_rate
- msgid "Currency Rate"
- msgstr "Tasso di cambio"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__access_url
- msgid "Customer Portal URL"
- msgstr "URL del portale clienti"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_bill_union__date
- msgid "Date"
- msgstr "Data"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__date_calendar_start
- msgid "Date Calendar Start"
- msgstr "Data inizio in calendario"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "Date Updated"
- msgstr "Data aggiornata"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "Date:"
- msgstr "Data:"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "Days"
- msgstr "giorni"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__reminder_date_before_receipt
- #: model:ir.model.fields,field_description:purchase.field_res_partner__reminder_date_before_receipt
- #: model:ir.model.fields,field_description:purchase.field_res_users__reminder_date_before_receipt
- msgid "Days Before Receipt"
- msgstr "Giorni prima della ricezione"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__delay
- msgid "Days to Confirm"
- msgstr "Giorni per confermare"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__delay_pass
- msgid "Days to Receive"
- msgstr "Giorni per la Ricezione"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Define your terms and conditions ..."
- msgstr "Indica termini e condizioni..."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order_line__date_planned
- msgid ""
- "Delivery date expected from vendor. This date respectively defaults to "
- "vendor pricelist lead time then today's date."
- msgstr ""
- "Data di consegna attesa dal fornitore. Il valore predefinito è "
- "rispettivamente il tempo di risposta listino prezzi fornitore e poi la data "
- "odierna."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__date_planned
- msgid ""
- "Delivery date promised by vendor. This date is used to determine expected "
- "arrival of products."
- msgstr ""
- "Data di consegna promessa dal fornitore. È utilizzata per determinare "
- "l'arrivo atteso dei prodotti."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__date_order
- #: model:ir.model.fields,help:purchase.field_purchase_order_line__date_order
- msgid ""
- "Depicts the date within which the Quotation should be confirmed and "
- "converted into a purchase order."
- msgstr ""
- "Rappresenta la data entro la quale il preventivo deve essere confermato e "
- "convertito in un ordine di acquisto."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__name
- msgid "Description"
- msgstr "Descrizione"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_bill_union__display_name
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__display_name
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__display_name
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__display_name
- msgid "Display Name"
- msgstr "Nome visualizzato"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__display_type
- msgid "Display Type"
- msgstr "Tipo di visualizzazione"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Documentation"
- msgstr "Documentazione"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_account_analytic_applicability__business_domain
- msgid "Domain"
- msgstr "Dominio"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_report__state__done
- msgid "Done"
- msgstr "Completata"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_company__po_double_validation_amount
- msgid "Double validation amount"
- msgstr "Importo con doppia convalida"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order
- msgid "Download"
- msgstr "Scarica"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_report__state__draft
- msgid "Draft RFQ"
- msgstr "RdP in bozza"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- msgid "Draft RFQs"
- msgstr "RdP in bozza"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__dest_address_id
- msgid "Dropship Address"
- msgstr "Indirizzo dropshipping"
- #. module: purchase
- #: model:ir.model,name:purchase.model_mail_compose_message
- msgid "Email composition wizard"
- msgstr "Procedura composizione e-mail"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__date_planned
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__date_planned
- msgid "Expected Arrival"
- msgstr "Arrivo previsto"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search
- msgid "Extended Filters"
- msgstr "Filtri estesi"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "Extra line with %s "
- msgstr "Riga aggiuntiva con %s "
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__fiscal_position_id
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__fiscal_position_id
- msgid "Fiscal Position"
- msgstr "Posizione fiscale"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__message_follower_ids
- msgid "Followers"
- msgstr "Seguito da"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__message_partner_ids
- msgid "Followers (Partners)"
- msgstr "Seguito da (partner)"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__activity_type_icon
- msgid "Font awesome icon e.g. fa-tasks"
- msgstr "Icona Font Awesome es. fa-tasks"
- #. module: purchase
- #: model:ir.model.constraint,message:purchase.constraint_purchase_order_line_non_accountable_null_fields
- msgid "Forbidden values on non-accountable purchase order line"
- msgstr "Valori vietati nella riga dell'ordine di acquisto"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/account_invoice.py:0
- #, python-format
- msgid "From %s document"
- msgstr "Dal documento %s"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__invoice_status__invoiced
- msgid "Fully Billed"
- msgstr "Completamente fatturato"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- msgid "Future Activities"
- msgstr "Attività future"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__res_company__po_double_validation__two_step
- msgid "Get 2 levels of approvals to confirm a purchase order"
- msgstr "Ottieni 2 livelli di approvazione per confermare un ordine d'acquisto"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Get warnings in orders for products or vendors"
- msgstr "Ricezione di avvisi per prodotti o fornitori negli ordini"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__weight
- msgid "Gross Weight"
- msgstr "Peso lordo"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_search
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search
- msgid "Group By"
- msgstr "Raggruppa per"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__has_message
- msgid "Has Message"
- msgstr "Contiene messaggio"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_search
- msgid "Hide cancelled lines"
- msgstr "Nascondi righe annullate"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order
- msgid "History"
- msgstr "Cronologia"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_bill_union__id
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__id
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__id
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__id
- msgid "ID"
- msgstr "ID"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__activity_exception_icon
- msgid "Icon"
- msgstr "Icona"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__activity_exception_icon
- msgid "Icon to indicate an exception activity."
- msgstr "Icona per indicare un'attività eccezione."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__message_needaction
- msgid "If checked, new messages require your attention."
- msgstr "Se selezionata, nuovi messaggi richiedono attenzione."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__message_has_error
- #: model:ir.model.fields,help:purchase.field_purchase_order__message_has_sms_error
- msgid "If checked, some messages have a delivery error."
- msgstr "Se selezionata, alcuni messaggi presentano un errore di consegna."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid ""
- "If enabled, activates 3-way matching on vendor bills : the items must be "
- "received in order to pay the invoice."
- msgstr ""
- "Se abilitata, attiva la corrispondenza a tre vie sulle fatture fornitore: "
- "per pagare la fattura devono essere ricevuti gli articoli."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid ""
- "If installed, the product variants will be added to purchase orders through "
- "a grid entry."
- msgstr ""
- "Se installate, le varianti prodotto vengono aggiunte agli ordini di acquisto"
- " attraverso una voce della griglia."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_product_packaging__purchase
- msgid "If true, the packaging can be used for purchase orders"
- msgstr "Se vero, l'imballaggio può essere usato per gli ordini di acquisto"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/product.py:0
- #, python-format
- msgid "Import Template for Products"
- msgstr "Importa modello per prodotti"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "In order to delete a purchase order, you must cancel it first."
- msgstr "Per eliminare un ordine di acquisto è necessario prima annullarlo."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__incoterm_id
- msgid "Incoterm"
- msgstr "Termine di resa"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/js/tours/purchase.js:0
- #, python-format
- msgid "Indicate the product quantity you want to order."
- msgstr "Indica la quantità di prodotto che vuoi ordinare."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__incoterm_id
- msgid ""
- "International Commercial Terms are a series of predefined commercial terms "
- "used in international transactions."
- msgstr ""
- "Gli Incoterm sono una serie di termini commerciali predefiniti usati nelle "
- "transazioni internazionali."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Invoices and Incoming Shipments"
- msgstr "Fatture e spedizioni in entrata"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Invoicing"
- msgstr "Fatturazione"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__message_is_follower
- msgid "Is Follower"
- msgstr "Sta seguendo"
- #. module: purchase
- #: model:ir.model,name:purchase.model_account_move
- msgid "Journal Entry"
- msgstr "Registrazione contabile"
- #. module: purchase
- #: model:ir.model,name:purchase.model_account_move_line
- msgid "Journal Item"
- msgstr "Movimento contabile"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_bill_union____last_update
- #: model:ir.model.fields,field_description:purchase.field_purchase_order____last_update
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line____last_update
- #: model:ir.model.fields,field_description:purchase.field_purchase_report____last_update
- msgid "Last Modified on"
- msgstr "Ultima modifica il"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__write_uid
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__write_uid
- msgid "Last Updated by"
- msgstr "Ultimo aggiornamento di"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__write_date
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__write_date
- msgid "Last Updated on"
- msgstr "Ultimo aggiornamento il"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "Late"
- msgstr "In ritardo"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- msgid "Late Activities"
- msgstr "Attività in ritardo"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- msgid "Late RFQs"
- msgstr "RdP in ritardo"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "Lead Time to Purchase"
- msgstr "Tempo di risposta acquisti"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/js/tours/purchase.js:0
- #, python-format
- msgid "Let's create your first request for quotation."
- msgstr "Creiamo la prima richiesta di preventivo."
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/js/tours/purchase.js:0
- #: code:addons/purchase/static/src/js/tours/purchase.js:0
- #, python-format
- msgid ""
- "Let's try the Purchase app to manage the flow from purchase to reception and"
- " invoice control."
- msgstr ""
- "Proviamo l'applicazione Acquisti. Serve a gestire il flusso, dall'acquisto "
- "alla ricezione e al controllo fatture."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_company__po_double_validation
- msgid "Levels of Approvals"
- msgstr "Livelli di approvazione"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_config_settings__po_double_validation
- msgid "Levels of Approvals *"
- msgstr "Livelli di approvazione *"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Lock"
- msgstr "Blocca"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_config_settings__lock_confirmed_po
- msgid "Lock Confirmed Orders"
- msgstr "Blocco ordini confermati"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/controllers/portal.py:0
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__state__done
- #, python-format
- msgid "Locked"
- msgstr "Bloccato"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__message_main_attachment_id
- msgid "Main Attachment"
- msgstr "Allegato principale"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid ""
- "Make sure you only pay bills for which you received the goods you ordered"
- msgstr ""
- "Garantisce che vengano pagate solo le fatture di merci ordinate e ricevute"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Manage your purchase agreements (call for tenders, blanket orders)"
- msgstr "Gestione contratti di acquisto (bandi di gara, accordi quadro)"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_order_line__qty_received_method__manual
- msgid "Manual"
- msgstr "Manuale"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_form2
- msgid "Manual Invoices"
- msgstr "Fatture manuali"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__qty_received_manual
- msgid "Manual Received Qty"
- msgstr "Q.tà ricevuta manualmente"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_res_company__po_lead
- #: model:ir.model.fields,help:purchase.field_res_config_settings__po_lead
- msgid ""
- "Margin of error for vendor lead times. When the system generates Purchase "
- "Orders for procuring products, they will be scheduled that many days earlier"
- " to cope with unexpected vendor delays."
- msgstr ""
- "Margine di errore per i tempi di risposta del fornitore. Gli ordini di "
- "acquisto, generati dal sistema per ottenere prodotti, vengono programmati in"
- " anticipo di alcuni giorni per superare ritardi non attesi del fornitore."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_res_config_settings__use_po_lead
- msgid ""
- "Margin of error for vendor lead times. When the system generates Purchase "
- "Orders for reordering products,they will be scheduled that many days earlier"
- " to cope with unexpected vendor delays."
- msgstr ""
- "Margine di errore per i tempi di risposta del fornitore. Gli ordini di "
- "acquisto, generati dal sistema per riordinare prodotti, vengono programmati "
- "in anticipo di alcuni giorni per superare ritardi imprevisti del fornitore."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__message_has_error
- msgid "Message Delivery error"
- msgstr "Errore di consegna messaggio"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_partner__purchase_warn_msg
- #: model:ir.model.fields,field_description:purchase.field_res_users__purchase_warn_msg
- msgid "Message for Purchase Order"
- msgstr "Messaggio per ordine di acquisto"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_product_product__purchase_line_warn_msg
- #: model:ir.model.fields,field_description:purchase.field_product_template__purchase_line_warn_msg
- msgid "Message for Purchase Order Line"
- msgstr "Messaggio per riga ordine di acquisto"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__message_ids
- msgid "Messages"
- msgstr "Messaggi"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_config_settings__po_double_validation_amount
- msgid "Minimum Amount"
- msgstr "Importo minimo"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_res_company__po_double_validation_amount
- #: model:ir.model.fields,help:purchase.field_res_config_settings__po_double_validation_amount
- msgid "Minimum amount for which a double validation is required"
- msgstr "Ammontare minimo per il quale è richiesta una doppia convalida"
- #. module: purchase
- #: model:ir.model.constraint,message:purchase.constraint_purchase_order_line_accountable_required_fields
- msgid "Missing required fields on accountable purchase order line."
- msgstr "Campi obbligatori mancanti nelle righe dell'ordine di acquisto."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__my_activity_date_deadline
- msgid "My Activity Deadline"
- msgstr "Scadenza mie attività"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "My Draft RFQs"
- msgstr "Le mie RdP in bozza"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "My Late RFQs"
- msgstr "Le mie RdP in ritardo"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- msgid "My Orders"
- msgstr "I miei ordini"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- msgid "My Purchases"
- msgstr "I miei acquisti"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "My RFQs"
- msgstr "Le mie RdP"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "My Waiting RFQs"
- msgstr "Le mie RdP in attesa"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/controllers/portal.py:0
- #, python-format
- msgid "Name"
- msgstr "Nome"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Name, TIN, Email, or Reference"
- msgstr "Nome, codice fiscale, e-mail o riferimento"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/controllers/portal.py:0
- #, python-format
- msgid "Newest"
- msgstr "Più recenti"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__activity_calendar_event_id
- msgid "Next Activity Calendar Event"
- msgstr "Prossimo evento del calendario delle attività"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__activity_date_deadline
- msgid "Next Activity Deadline"
- msgstr "Scadenza prossima attività"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__activity_summary
- msgid "Next Activity Summary"
- msgstr "Riepilogo prossima attività"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__activity_type_id
- msgid "Next Activity Type"
- msgstr "Tipologia prossima attività"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__product_template__purchase_line_warn__no-message
- #: model:ir.model.fields.selection,name:purchase.selection__res_partner__purchase_warn__no-message
- msgid "No Message"
- msgstr "Nessun messaggio"
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.action_purchase_order_report_all
- msgid "No Purchase Analysis"
- msgstr "Nessuna analisi di acquisto"
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.product_normal_action_puchased
- msgid "No product found. Let's create one!"
- msgstr "Nessun prodotto trovato. Creane uno!"
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.purchase_form_action
- msgid "No purchase order found. Let's create one!"
- msgstr "Nessun ordine di acquisto trovato. Creane uno!"
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.action_purchase_history
- msgid "No purchase order were made for this product yet!"
- msgstr ""
- "Non sono ancora stati effettuati ordini di acquisto per questo prodotto!"
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.purchase_rfq
- msgid "No request for quotation found. Let's create one!"
- msgstr "Nessuna richiesta di preventivo trovata. Creane una!"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__priority__0
- msgid "Normal"
- msgstr "Normale"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- msgid "Not Acknowledged"
- msgstr "Non Confermato"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_order_line__display_type__line_note
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Note"
- msgstr "Nota"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Notes"
- msgstr "Note"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__invoice_status__no
- msgid "Nothing to Bill"
- msgstr "Nulla da fatturare"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__message_needaction_counter
- msgid "Number of Actions"
- msgstr "Numero di azioni"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__reminder_date_before_receipt
- #: model:ir.model.fields,help:purchase.field_res_partner__reminder_date_before_receipt
- #: model:ir.model.fields,help:purchase.field_res_users__reminder_date_before_receipt
- msgid "Number of days to send reminder email before the promised receipt date"
- msgstr ""
- "Numero di giorni, prima della data di ricezione promessa, per l'invio "
- "dell'e-mail di promemoria"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__message_has_error_counter
- msgid "Number of errors"
- msgstr "Numero di errori"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__message_needaction_counter
- msgid "Number of messages requiring action"
- msgstr "Numero di messaggi che richiedono un'azione"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__message_has_error_counter
- msgid "Number of messages with delivery error"
- msgstr "Numero di messaggi con errore di consegna"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__product_template__purchase_method__purchase
- msgid "On ordered quantities"
- msgstr "Su quantità ordinate"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_product_product__purchase_method
- #: model:ir.model.fields,help:purchase.field_product_template__purchase_method
- msgid ""
- "On ordered quantities: Control bills based on ordered quantities.\n"
- "On received quantities: Control bills based on received quantities."
- msgstr ""
- "Su quantità ordinate: controllo fatture basato sulle quantità ordinate.\n"
- "Su quantità ricevute: controllo fatture basato sulle quantità ricevute."
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__product_template__purchase_method__receive
- msgid "On received quantities"
- msgstr "Su quantità ricevute"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/js/tours/purchase.js:0
- #, python-format
- msgid ""
- "Once you get the price from the vendor, you can complete the purchase order "
- "with the right price."
- msgstr ""
- "Dopo aver ottenuto il prezzo dal fornitore puoi completare l'ordine di "
- "acquisto usando il prezzo corretto."
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.purchase_form_action
- msgid ""
- "Once you ordered your products to your supplier, confirm your request for "
- "quotation and it will turn into a purchase order."
- msgstr ""
- "Una volta ordinati i prodotti dal fornitore, una conferma della richiesta di"
- " preventivo la trasforma in un ordine di acquisto."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__order_id
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- msgid "Order"
- msgstr "Ordine"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__date_order
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__date_order
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search
- msgid "Order Date"
- msgstr "Data ordine"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__date_order
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_rfqs
- msgid "Order Deadline"
- msgstr "Scadenza per ordine"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__order_line
- msgid "Order Lines"
- msgstr "Righe ordine"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__name
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__order_id
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_search
- msgid "Order Reference"
- msgstr "Riferimento ordine"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.track_po_line_template
- msgid "Ordered Quantity:"
- msgstr "Quantità ordinata:"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__res_config_settings__default_purchase_method__purchase
- msgid "Ordered quantities"
- msgstr "Quantità ordinate"
- #. module: purchase
- #: model:ir.ui.menu,name:purchase.menu_procurement_management
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Orders"
- msgstr "Ordini"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Other Information"
- msgstr "Altre informazioni"
- #. module: purchase
- #: model:mail.template,report_name:purchase.email_template_edi_purchase_done
- #: model:mail.template,report_name:purchase.email_template_edi_purchase_reminder
- msgid "PO_{{ (object.name or '').replace('/','_') }}"
- msgstr "PO_{{ (object.name or '').replace('/','_') }}"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__product_packaging_id
- msgid "Packaging"
- msgstr "Imballaggio"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__product_packaging_qty
- msgid "Packaging Quantity"
- msgstr "Quantità Confezione"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__partner_id
- msgid "Partner"
- msgstr "Partner"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__country_id
- msgid "Partner Country"
- msgstr "Nazione del partner"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__payment_term_id
- msgid "Payment Terms"
- msgstr "Termini di pagamento"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "Payment terms"
- msgstr "Termini di pagamento"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__access_url
- msgid "Portal Access URL"
- msgstr "URL di accesso al portale"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Preview the reminder email by sending it to yourself."
- msgstr "Auto-invio in anteprima della e-mail di promemoria."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "Pricing"
- msgstr "Tariffazione"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order
- msgid "Print"
- msgstr "Stampa"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Print RFQ"
- msgstr "Stampa RdP"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__priority
- msgid "Priority"
- msgstr "Priorità"
- #. module: purchase
- #: model:ir.model,name:purchase.model_product_template
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__product_id
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__product_id
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__product_id
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_search
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search
- msgid "Product"
- msgstr "Prodotto"
- #. module: purchase
- #: model:ir.ui.menu,name:purchase.menu_product_attribute_action
- msgid "Product Attributes"
- msgstr "Attributi prodotto"
- #. module: purchase
- #: model:ir.ui.menu,name:purchase.menu_product_category_config_purchase
- msgid "Product Categories"
- msgstr "Categorie prodotto"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__category_id
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search
- msgid "Product Category"
- msgstr "Categoria prodotto"
- #. module: purchase
- #: model:ir.model,name:purchase.model_product_packaging
- msgid "Product Packaging"
- msgstr "Imballaggio prodotti"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__product_tmpl_id
- msgid "Product Template"
- msgstr "Modello prodotto"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__product_type
- msgid "Product Type"
- msgstr "Tipologia prodotto"
- #. module: purchase
- #: model:ir.model,name:purchase.model_product_product
- msgid "Product Variant"
- msgstr "Variante prodotto"
- #. module: purchase
- #: model:ir.actions.act_window,name:purchase.product_product_action
- #: model:ir.ui.menu,name:purchase.product_product_menu
- msgid "Product Variants"
- msgstr "Varianti prodotto"
- #. module: purchase
- #: model:ir.actions.act_window,name:purchase.product_normal_action_puchased
- #: model:ir.ui.menu,name:purchase.menu_procurement_partner_contact_form
- #: model:ir.ui.menu,name:purchase.menu_product_in_config_purchase
- #: model:ir.ui.menu,name:purchase.menu_purchase_products
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Products"
- msgstr "Prodotti"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_res_company__po_double_validation
- #: model:ir.model.fields,help:purchase.field_res_config_settings__po_double_validation
- msgid "Provide a double validation mechanism for purchases"
- msgstr "Fornisce un meccanismo a doppia validazione per gli acquisti"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_product_packaging__purchase
- #: model:ir.ui.menu,name:purchase.menu_purchase_root
- #: model:ir.ui.menu,name:purchase.purchase_report
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Purchase"
- msgstr "Acquisti"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_config_settings__module_purchase_requisition
- msgid "Purchase Agreements"
- msgstr "Contratti di acquisto"
- #. module: purchase
- #: model:ir.actions.act_window,name:purchase.action_purchase_order_report_all
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_report_view_tree
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_graph
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_pivot
- msgid "Purchase Analysis"
- msgstr "Analisi acquisti"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_product_supplier_inherit
- msgid "Purchase Description"
- msgstr "Descrizione per acquisto"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_config_settings__module_purchase_product_matrix
- msgid "Purchase Grid Entry"
- msgstr "Voce griglia per acquisti"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Purchase History"
- msgstr "Cronologia acquisti"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/product.py:0
- #: code:addons/purchase/models/product.py:0
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "Purchase History for %s"
- msgstr "Cronologia acquisti per %s"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_company__po_lead
- #: model:ir.model.fields,field_description:purchase.field_res_config_settings__po_lead
- msgid "Purchase Lead Time"
- msgstr "Tempo di risposta per acquisti"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/controllers/portal.py:0
- #: code:addons/purchase/models/purchase.py:0
- #: code:addons/purchase/models/purchase.py:0
- #: model:ir.actions.report,name:purchase.action_report_purchase_order
- #: model:ir.model,name:purchase.model_purchase_order
- #: model:ir.model.fields,field_description:purchase.field_account_bank_statement_line__purchase_id
- #: model:ir.model.fields,field_description:purchase.field_account_move__purchase_id
- #: model:ir.model.fields,field_description:purchase.field_account_move_line__purchase_order_id
- #: model:ir.model.fields,field_description:purchase.field_account_payment__purchase_id
- #: model:ir.model.fields,field_description:purchase.field_purchase_bill_union__purchase_order_id
- #: model:ir.model.fields,field_description:purchase.field_res_partner__purchase_warn
- #: model:ir.model.fields,field_description:purchase.field_res_users__purchase_warn
- #: model:ir.model.fields.selection,name:purchase.selection__account_analytic_applicability__business_domain__purchase_order
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__state__purchase
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_report__state__purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_graph
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_kpis_tree
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_pivot
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_tree
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_activity
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_tree
- #, python-format
- msgid "Purchase Order"
- msgstr "Ordine di acquisto"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- msgid "Purchase Order #"
- msgstr "Ordine di acquisto n° "
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_config_settings__po_order_approval
- msgid "Purchase Order Approval"
- msgstr "Approvazione ordine di acquisto"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_account_analytic_account__purchase_order_count
- #: model:ir.model.fields,field_description:purchase.field_account_bank_statement_line__purchase_order_count
- #: model:ir.model.fields,field_description:purchase.field_account_move__purchase_order_count
- #: model:ir.model.fields,field_description:purchase.field_account_payment__purchase_order_count
- #: model:ir.model.fields,field_description:purchase.field_res_partner__purchase_order_count
- #: model:ir.model.fields,field_description:purchase.field_res_users__purchase_order_count
- msgid "Purchase Order Count"
- msgstr "Numero ordini di acquisto"
- #. module: purchase
- #: model:ir.actions.act_window,name:purchase.action_purchase_history
- #: model:ir.model,name:purchase.model_purchase_order_line
- #: model:ir.model.fields,field_description:purchase.field_account_move_line__purchase_line_id
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_form2
- msgid "Purchase Order Line"
- msgstr "Riga ordine di acquisto"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_product_product__purchase_line_warn
- #: model:ir.model.fields,field_description:purchase.field_product_template__purchase_line_warn
- msgid "Purchase Order Line Warning"
- msgstr "Avviso riga ordine di acquisto"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_tree
- msgid "Purchase Order Lines"
- msgstr "Righe ordine di acquisto"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_company__po_lock
- msgid "Purchase Order Modification"
- msgstr "Modifica ordine di acquisto"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_config_settings__po_lock
- msgid "Purchase Order Modification *"
- msgstr "Modifica ordine di acquisto *"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_res_company__po_lock
- #: model:ir.model.fields,help:purchase.field_res_config_settings__po_lock
- msgid ""
- "Purchase Order Modification used when you want to purchase order editable "
- "after confirm"
- msgstr ""
- "Cambiamento sull'ordine di acquisto utilizzato per permetterne la modifica "
- "dopo la conferma"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/analytic_account.py:0
- #: model:ir.actions.act_window,name:purchase.purchase_form_action
- #: model:ir.ui.menu,name:purchase.menu_purchase_form_action
- #: model_terms:ir.ui.view,arch_db:purchase.account_analytic_account_view_form_purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_home_menu_purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_home_purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_orders
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_bill_union_filter
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search
- #, python-format
- msgid "Purchase Orders"
- msgstr "Ordini di acquisto"
- #. module: purchase
- #: model:ir.model,name:purchase.model_purchase_report
- msgid "Purchase Report"
- msgstr "Resoconto di acquisto"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__user_id
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search
- msgid "Purchase Representative"
- msgstr "Referente acquisti"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_config_settings__group_warning_purchase
- msgid "Purchase Warnings"
- msgstr "Avvisi per acquisti"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- msgid "Purchase orders that have been invoiced."
- msgstr "Ordini di acquisto fatturati."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- msgid "Purchase orders that include lines not invoiced."
- msgstr "Ordini di acquisto che contengono righe non fatturate."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Purchase products by multiple of unit # per package"
- msgstr "Acquista i prodotti per multiplo di unità # per confezione"
- #. module: purchase
- #: model:ir.actions.server,name:purchase.purchase_send_reminder_mail_ir_actions_server
- #: model:ir.cron,cron_name:purchase.purchase_send_reminder_mail
- msgid "Purchase reminder"
- msgstr "Promemoria acquisto"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Purchase variants of a product using attributes (size, color, etc.)"
- msgstr ""
- "Acquisto di varianti prodotto usando gli attributi (taglia, colore ecc.)"
- #. module: purchase
- #: model:mail.template,name:purchase.email_template_edi_purchase_done
- msgid "Purchase: Purchase Order"
- msgstr "Acquisto: ordine di acquisto"
- #. module: purchase
- #: model:mail.template,name:purchase.email_template_edi_purchase
- msgid "Purchase: Request For Quotation"
- msgstr "Acquisto: richiesta preventivo"
- #. module: purchase
- #: model:mail.template,name:purchase.email_template_edi_purchase_reminder
- msgid "Purchase: Vendor Reminder"
- msgstr "Acquisto: promemoria fornitore"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_product_product__purchased_product_qty
- #: model:ir.model.fields,field_description:purchase.field_product_template__purchased_product_qty
- msgid "Purchased"
- msgstr "Acquistata"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "Purchased Last 7 Days"
- msgstr "Acquisti ultimi 7 mesi"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.product_normal_form_view_inherit_purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_product_template_purchase_buttons_from
- msgid "Purchased in the last 365 days"
- msgstr "Acquistato negli ultimi 365 giorni"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_partner_view_purchase_buttons
- #: model_terms:ir.ui.view,arch_db:purchase.view_move_form_inherit_purchase
- msgid "Purchases"
- msgstr "Acquisti"
- #. module: purchase
- #: model:ir.model,name:purchase.model_purchase_bill_union
- msgid "Purchases & Bills Union"
- msgstr "Unione acquisti e fatture fornitore"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__dest_address_id
- msgid ""
- "Put an address if you want to deliver directly from the vendor to the "
- "customer. Otherwise, keep empty to deliver to your own company."
- msgstr ""
- "Inserisci un indirizzo se vuoi spedire dal fornitore a cliente . Altrimenti "
- ", continua senza inserire l'indirizzo per consegnare alla tua azienda"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__qty_billed
- msgid "Qty Billed"
- msgstr "Q.tà fatturata"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__qty_ordered
- msgid "Qty Ordered"
- msgstr "Q.tà ordinata"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__qty_received
- msgid "Qty Received"
- msgstr "Q.tà ricevuta"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__qty_to_be_billed
- msgid "Qty to be Billed"
- msgstr "Q.tà da fatturare"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Quantities billed by vendors"
- msgstr "Quantità fatturate dai fornitori"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__product_qty
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "Quantity"
- msgstr "Quantità"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Quantity:"
- msgstr "Quantità:"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__state__draft
- msgid "RFQ"
- msgstr "RdP"
- #. module: purchase
- #: model:mail.message.subtype,name:purchase.mt_rfq_approved
- msgid "RFQ Approved"
- msgstr "RdP approvata"
- #. module: purchase
- #: model:mail.message.subtype,name:purchase.mt_rfq_confirmed
- msgid "RFQ Confirmed"
- msgstr "RdP confermata"
- #. module: purchase
- #: model:mail.message.subtype,name:purchase.mt_rfq_done
- msgid "RFQ Done"
- msgstr "RdP completata"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__state__sent
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_report__state__sent
- #: model:mail.message.subtype,name:purchase.mt_rfq_sent
- msgid "RFQ Sent"
- msgstr "RdP inviata"
- #. module: purchase
- #: model:mail.template,report_name:purchase.email_template_edi_purchase
- msgid "RFQ_{{ (object.name or '').replace('/','_') }}"
- msgstr "RFQ_{{ (object.name or '').replace('/','_') }}"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- msgid "RFQs"
- msgstr "RdP"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "RFQs Sent Last 7 Days"
- msgstr "RdP inviate ultimi 7 giorni"
- #. module: purchase
- #: model:ir.actions.act_window,name:purchase.act_res_partner_2_purchase_order
- msgid "RFQs and Purchases"
- msgstr "RdP e acquisti"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__currency_rate
- msgid "Ratio between the purchase order currency and the company currency"
- msgstr "Rapporto tra la valuta dell'ordine di vendita e quella dell'azienda"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Re-Send by Email"
- msgstr "Reinvia con e-mail"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_config_settings__group_send_reminder
- #: model:ir.model.fields,field_description:purchase.field_res_partner__receipt_reminder_email
- #: model:ir.model.fields,field_description:purchase.field_res_users__receipt_reminder_email
- msgid "Receipt Reminder"
- msgstr "Promemoria ricezione"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__receipt_reminder_email
- msgid "Receipt Reminder Email"
- msgstr "E-mail promemoria ricezione"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Received"
- msgstr "Ricevuta"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__qty_received
- msgid "Received Qty"
- msgstr "Q.tà ricevuta"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__qty_received_method
- msgid "Received Qty Method"
- msgstr "Metodo q.tà ricevuta"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Received Quantity"
- msgstr "Quantità ricevuta"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.track_po_line_qty_received_template
- #: model_terms:ir.ui.view,arch_db:purchase.track_po_line_template
- msgid "Received Quantity:"
- msgstr "Quantità ricevuta:"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__res_config_settings__default_purchase_method__receive
- msgid "Received quantities"
- msgstr "Quantità ricevute"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__mail_reception_confirmed
- msgid "Reception Confirmed"
- msgstr "Ricezione confermata"
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.act_res_partner_2_supplier_invoices
- msgid "Record a new vendor bill"
- msgstr "Registra una nuova fattura fornitore"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_bill_union__name
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_kpis_tree
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_tree
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_tree
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_bill_union_filter
- msgid "Reference"
- msgstr "Riferimento"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_bill_union_tree
- msgid "Reference Document"
- msgstr "Documento di riferimento"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__product_uom
- msgid "Reference Unit of Measure"
- msgstr "Unità di misura di riferimento"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__origin
- msgid ""
- "Reference of the document that generated this purchase order request (e.g. a"
- " sales order)"
- msgstr ""
- "Riferimento al documento che ha generato la richiesta dell'ordine di "
- "acquisto (es. un ordine di vendita)"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__partner_ref
- msgid ""
- "Reference of the sales order or bid sent by the vendor. It's used to do the "
- "matching when you receive the products as this reference is usually written "
- "on the delivery order sent by your vendor."
- msgstr ""
- "Riferimento all'ordine di vendita o all'offerta inviata dal fornitore. "
- "Utilizzato per effettuare l'abbinamento quando vengono ricevuti i prodotti, "
- "di solito è riportato nel buono di consegna inviato dal fornitore."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__mail_reminder_confirmed
- msgid "Reminder Confirmed"
- msgstr "Promemoria confermato"
- #. module: purchase
- #: model:ir.ui.menu,name:purchase.purchase_report_main
- msgid "Reporting"
- msgstr "Rendiconto"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #: model:ir.actions.report,name:purchase.report_purchase_quotation
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchasequotation_document
- #, python-format
- msgid "Request for Quotation"
- msgstr "Richiesta di preventivo"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.report_purchaseorder_document
- msgid "Request for Quotation #"
- msgstr "Richiesta di preventivo n° "
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Request managers to approve orders above a minimum amount"
- msgstr ""
- "Richiesta ai supervisori di approvare ordini al di sopra di un importo "
- "minimo"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_rfqs
- msgid "Requests For Quotation"
- msgstr "Richiesta di preventivo"
- #. module: purchase
- #: model:ir.actions.act_window,name:purchase.action_rfq_form
- #: model:ir.actions.act_window,name:purchase.purchase_rfq
- #: model:ir.ui.menu,name:purchase.menu_purchase_rfq
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_home_menu_purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_home_purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search
- msgid "Requests for Quotation"
- msgstr "Richieste di preventivo"
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.purchase_rfq
- msgid ""
- "Requests for quotation are documents that will be sent to your suppliers to request prices for different products you consider buying.\n"
- " Once an agreement has been found with the supplier, they will be confirmed and turned into purchase orders."
- msgstr ""
- "Le richieste di preventivo sono documenti che vengono inviati al fornitori per richiedere prezzi di prodotti per i quali si sta valutando l'acquisto.\n"
- " Dopo aver trovato un accordo con il fornitore, vengono confermate e trasformate in ordini di acquisto."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__activity_user_id
- msgid "Responsible User"
- msgstr "Utente responsabile"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__message_has_sms_error
- msgid "SMS Delivery error"
- msgstr "Errore di consegna SMS"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "Scheduled Date"
- msgstr "Data programmata"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_search
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- msgid "Search Purchase Order"
- msgstr "Ricerca ordine di acquisto"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_bill_union_filter
- msgid "Search Reference Document"
- msgstr "Ricerca documento di riferimento"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/js/tours/purchase.js:0
- #, python-format
- msgid "Search a vendor name, or create one on the fly."
- msgstr "Cerca un nome fornitore oppure creane uno al volo."
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_order_line__display_type__line_section
- msgid "Section"
- msgstr "Sezione"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Section Name (eg. Products, Services)"
- msgstr "Nome sezione (es. prodotti, servizi)"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_config_settings__use_po_lead
- msgid "Security Lead Time for Purchase"
- msgstr "Tempo di risposta sicuro per acquisti"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__access_token
- msgid "Security Token"
- msgstr "Token di sicurezza"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/js/tours/purchase.js:0
- #, python-format
- msgid "Select a product, or create a new one on the fly."
- msgstr "Seleziona un prodotto oppure creane uno nuovo al volo."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_move_form_inherit_purchase
- msgid "Select a purchase order or an old bill"
- msgstr "Seleziona ordine di acquisto o una fattura precedente"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_product_product__purchase_line_warn
- #: model:ir.model.fields,help:purchase.field_product_template__purchase_line_warn
- #: model:ir.model.fields,help:purchase.field_res_partner__purchase_warn
- #: model:ir.model.fields,help:purchase.field_res_users__purchase_warn
- msgid ""
- "Selecting the \"Warning\" option will notify user with the message, "
- "Selecting \"Blocking Message\" will throw an exception with the message and "
- "block the flow. The Message has to be written in the next field."
- msgstr ""
- "Selezionando l'opzione \"Avviso\" l'utente viene notificato con un "
- "messaggio. Selezionando \"Messaggio di blocco\" viene inviata un'eccezione "
- "con il messaggio e viene bloccato il flusso. Scrivere il messaggio nel campo"
- " successivo."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Send PO by Email"
- msgstr "Invia OdA con e-mail"
- #. module: purchase
- #: model:ir.actions.server,name:purchase.action_purchase_send_reminder
- msgid "Send Reminder"
- msgstr "Invia promemoria"
- #. module: purchase
- #: model:res.groups,name:purchase.group_send_reminder
- msgid "Send an automatic reminder email to confirm delivery"
- msgstr "Invio e-mail promemoria automatico di conferma consegna"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Send by Email"
- msgstr "Invia con e-mail"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/js/tours/purchase.js:0
- #: code:addons/purchase/static/src/js/tours/purchase.js:0
- #, python-format
- msgid "Send the request for quotation to your vendor."
- msgstr "Invia la richiesta di preventivo al fornitore."
- #. module: purchase
- #: model:mail.template,description:purchase.email_template_edi_purchase
- msgid "Sent manually to vendor to request a quotation"
- msgstr "E-mail inviata manualmente al fornitore per richiedere un preventivo"
- #. module: purchase
- #: model:mail.template,description:purchase.email_template_edi_purchase_done
- msgid "Sent to vendor with the purchase order in attachment"
- msgstr "E-mail inviata ai fornitori con l'ordine di acquisto in allegato"
- #. module: purchase
- #: model:mail.template,description:purchase.email_template_edi_purchase_reminder
- msgid ""
- "Sent to vendors before expected arrival, based on the purchase order setting"
- msgstr ""
- "E-mail inviata ai fornitori prima della consegna prevista, in base alle "
- "impostazioni dell'ordine di acquisto"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__sequence
- msgid "Sequence"
- msgstr "Sequenza"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Set to Draft"
- msgstr "Imposta a bozza"
- #. module: purchase
- #: model:ir.actions.act_window,name:purchase.action_purchase_configuration
- #: model:ir.ui.menu,name:purchase.menu_purchase_general_settings
- msgid "Settings"
- msgstr "Impostazioni"
- #. module: purchase
- #: model:ir.actions.server,name:purchase.model_purchase_order_action_share
- msgid "Share"
- msgstr "Condividi"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- msgid "Show all records which has next action date is before today"
- msgstr "Mostra tutti i record con data prossima azione precedente a oggi"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_bill_union__reference
- msgid "Source"
- msgstr "Origine"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__origin
- msgid "Source Document"
- msgstr "Documento di origine"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- msgid "Starred"
- msgstr "Preferiti"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__state
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__state
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__state
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_search
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search
- msgid "Status"
- msgstr "Stato"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__activity_state
- msgid ""
- "Status based on activities\n"
- "Overdue: Due date is already passed\n"
- "Today: Activity date is today\n"
- "Planned: Future activities."
- msgstr ""
- "Stato basato sulle attività\n"
- "In ritardo: scadenza già superata\n"
- "Oggi: attività in data odierna\n"
- "Pianificato: attività future."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__price_subtotal
- msgid "Subtotal"
- msgstr "Totale parziale"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_report_view_tree
- msgid "Sum of Qty Billed"
- msgstr "Somma della quantità fatturata"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_report_view_tree
- msgid "Sum of Qty Ordered"
- msgstr "Somma della quantità ordinata"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_report_view_tree
- msgid "Sum of Qty Received"
- msgstr "Somma della quantità ricevuta"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_report_view_tree
- msgid "Sum of Total"
- msgstr "Somma totale"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_report_view_tree
- msgid "Sum of Untaxed Total"
- msgstr "Somma del totale non tassato"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_res_partner__property_purchase_currency_id
- #: model:ir.model.fields,field_description:purchase.field_res_users__property_purchase_currency_id
- msgid "Supplier Currency"
- msgstr "Valuta fornitore"
- #. module: purchase
- #: model:ir.model,name:purchase.model_product_supplierinfo
- msgid "Supplier Pricelist"
- msgstr "Listino prezzi fornitore"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__price_tax
- msgid "Tax"
- msgstr "Imposta"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__tax_country_id
- msgid "Tax Country"
- msgstr "Paese Imposte"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__tax_totals
- msgid "Tax Totals"
- msgstr "Totali tasse"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__amount_tax
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__taxes_id
- msgid "Taxes"
- msgstr "Imposte"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order_line__display_type
- msgid "Technical field for UX purpose."
- msgstr "Campo tecnico per l'esperienza utente (UX)."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__tax_country_id
- msgid ""
- "Technical field to filter the available taxes depending on the fiscal "
- "country and fiscal position."
- msgstr ""
- "Campo tecnico per filtrare le imposte disponibili in base al paese di "
- "tassazione e alla posizione di bilancio."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "Terms & Conditions"
- msgstr "Termini e condizioni"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__notes
- msgid "Terms and Conditions"
- msgstr "Termini e condizioni"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__country_code
- msgid ""
- "The ISO country code in two chars. \n"
- "You can use this field for quick search."
- msgstr ""
- "Codice ISO a due caratteri della nazione. \n"
- "È possibile usare questo campo per una ricerca rapida."
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "The order receipt has been acknowledged by %s."
- msgstr "La ricevuta dell'ordine è stata confermata da %s."
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.act_res_partner_2_purchase_order
- msgid ""
- "The request for quotation is the first step of the purchases flow. Once\n"
- " converted into a purchase order, you will be able to control the receipt\n"
- " of the products and the vendor bill."
- msgstr ""
- "La richiesta di preventivo è la prima fase del processo di acquisto. Dopo la\n"
- " conversione in un ordine di acquisto, è possibile tenere sotto controllo la\n"
- " ricezione dei prodotti e la fattura fornitore."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_orders
- msgid "There are currently no purchase orders for your account."
- msgstr "Al momento non ci sono ordini di acquisto per il tuo account."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_rfqs
- msgid "There are currently no requests for quotation for your account."
- msgstr "Al momento non ci sono richieste di preventivo per il tuo account."
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid ""
- "There is no invoiceable line. If a product has a control policy based on "
- "received quantity, please make sure that a quantity has been received."
- msgstr ""
- "Nessuna riga fatturabile. Se un prodotto ha una politica di controllo basata"
- " sulla quantità ricevuta, controllare che la quantità stessa sia stata "
- "ricevuta."
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.action_purchase_order_report_all
- msgid ""
- "This analysis allows you to easily check and analyse your company purchase history and performance.\n"
- " You can track your negotiation performance, the delivery performance of your vendors, etc"
- msgstr ""
- "L'analisi permette di verificare e analizzare facilmente lo storico degli acquisti dell'azienda e le prestazioni.\n"
- " Inoltre, puoi tracciare i risultati delle negoziazioni, le prestazioni di consegna dei fornitori ecc."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_res_partner__property_purchase_currency_id
- #: model:ir.model.fields,help:purchase.field_res_users__property_purchase_currency_id
- msgid ""
- "This currency will be used, instead of the default one, for purchases from "
- "the current partner"
- msgstr ""
- "Valuta utilizzata, al posto di quella predefinita, per acquisti dal partner "
- "corrente."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_res_config_settings__default_purchase_method
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid ""
- "This default value is applied to any new product created. This can be "
- "changed in the product detail form."
- msgstr ""
- "Questo valore predefinito viene applicato a qualsiasi nuovo prodotto creato."
- " Questo può essere modificato nel modulo di dettaglio del prodotto."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_product_supplier_inherit
- msgid "This note is added to purchase orders."
- msgstr "Nota aggiunta agli ordini di acquisto."
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid ""
- "This product is packaged by %(pack_size).2f %(pack_name)s. You should "
- "purchase %(quantity).2f %(unit)s."
- msgstr ""
- "Questo prodotto è confezionato da %(pack_size).2f%(pack_name)s. Dovresti "
- "acquistare %(quantity).2f%(unit)s."
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/account_invoice.py:0
- #, python-format
- msgid "This vendor bill has been created from: %s"
- msgstr "La fattura fornitore è stata creata da: %s"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/account_invoice.py:0
- #, python-format
- msgid "This vendor bill has been modified from: %s"
- msgstr "La fattura fornitore è stata modificata da: %s"
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.act_res_partner_2_purchase_order
- msgid "This vendor has no purchase order. Create a new RfQ"
- msgstr "Il fornitore non ha ordini di acquisto. Crea una nuova RdP"
- #. module: purchase
- #: model:digest.tip,name:purchase.digest_tip_purchase_0
- #: model_terms:digest.tip,tip_description:purchase.digest_tip_purchase_0
- msgid "Tip: How to keep late receipts under control?"
- msgstr "Consiglio: come tenere sotto controllo le Ricezioni in ritardo"
- #. module: purchase
- #: model:digest.tip,name:purchase.digest_tip_purchase_1
- #: model_terms:digest.tip,tip_description:purchase.digest_tip_purchase_1
- msgid "Tip: Never miss a purchase order"
- msgstr "Consiglio: non perdere mai un ordine di acquisto"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__state__to_approve
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_report__state__to_approve
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- msgid "To Approve"
- msgstr "Da approvare"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__qty_to_invoice
- msgid "To Invoice Quantity"
- msgstr "Quantità da fatturare"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "To Send"
- msgstr "Da inviare"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- msgid "Today Activities"
- msgstr "Attività odierne"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/controllers/portal.py:0
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__amount_total
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__price_total
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__price_total
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_orders
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_rfqs
- #, python-format
- msgid "Total"
- msgstr "Totale"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__product_uom_qty
- msgid "Total Quantity"
- msgstr "Quantità totale"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_kpis_tree
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_tree
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_tree
- msgid "Total Untaxed amount"
- msgstr "Totale imponibile"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_kpis_tree
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_tree
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_tree
- msgid "Total amount"
- msgstr "Importo totale"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__mail_reception_confirmed
- msgid "True if PO reception is confirmed by the vendor."
- msgstr "Vero se la ricezione dell'OdA viene confermata dal fornitore."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__mail_reminder_confirmed
- msgid "True if the reminder email is confirmed by the vendor."
- msgstr "Vero se l'e-mail di promemoria viene confermata dal fornitore."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_partner_view_purchase_buttons
- #: model_terms:ir.ui.view,arch_db:purchase.view_product_supplier_inherit
- msgid "Type a message..."
- msgstr "Scrivi un messaggio..."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__activity_exception_decoration
- msgid "Type of the exception activity on record."
- msgstr "Tipo di attività eccezione sul record."
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid ""
- "Unable to cancel this purchase order. You must first cancel the related "
- "vendor bills."
- msgstr ""
- "Impossibile annullare l'ordine di acquisto. Annullare prima le relative "
- "fatture fornitore."
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__price_unit
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_portal_content
- msgid "Unit Price"
- msgstr "Prezzo unitario"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Unit Price:"
- msgstr "Prezzo unitario:"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order_line__product_uom
- msgid "Unit of Measure"
- msgstr "Unità di misura"
- #. module: purchase
- #: model:ir.ui.menu,name:purchase.menu_purchase_uom_form_action
- msgid "Units of Measure"
- msgstr "Unità di misura"
- #. module: purchase
- #: model:ir.ui.menu,name:purchase.menu_purchase_uom_categ_form_action
- msgid "Units of Measure Categories"
- msgstr "Categorie unità di misura"
- #. module: purchase
- #: model:ir.ui.menu,name:purchase.menu_unit_of_measure_in_config_purchase
- msgid "Units of Measures"
- msgstr "Unità di misure"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "Unlock"
- msgstr "Sblocca"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_kpis_tree
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_tree
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_tree
- msgid "Untaxed"
- msgstr "Imponibile"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__amount_untaxed
- msgid "Untaxed Amount"
- msgstr "Importo imponibile"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__untaxed_total
- msgid "Untaxed Total"
- msgstr "Totale imponibile"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "UoM"
- msgstr "UdM"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "Update Dates"
- msgstr "Aggiorna date"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__priority__1
- msgid "Urgent"
- msgstr "Urgente"
- #. module: purchase
- #: model:res.groups,name:purchase.group_purchase_user
- msgid "User"
- msgstr "Utente"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/report/purchase_report.py:0
- #, python-format
- msgid ""
- "Value: 'avg_days_to_purchase' should only be used to show an average. If you"
- " are seeing this message then it is being accessed incorrectly."
- msgstr ""
- "Il valore: 'avg_days_to_purchase' deve essere utilizzato solo per mostrare "
- "una media. Se viene visualizzato questo messaggio, l'accesso non è corretto."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- msgid "Variant Grid Entry"
- msgstr "Voce griglia per variante"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_bill_union__partner_id
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__partner_id
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__partner_id
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_search
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_line_tree
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search
- msgid "Vendor"
- msgstr "Fornitore"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_bill_union__vendor_bill_id
- msgid "Vendor Bill"
- msgstr "Fattura fornitore"
- #. module: purchase
- #: model:ir.actions.act_window,name:purchase.act_res_partner_2_supplier_invoices
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- #: model_terms:ir.ui.view,arch_db:purchase.res_partner_view_purchase_account_buttons
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_bill_union_filter
- msgid "Vendor Bills"
- msgstr "Fatture fornitore"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_search
- msgid "Vendor Country"
- msgstr "Nazione fornitore"
- #. module: purchase
- #: model:ir.ui.menu,name:purchase.menu_product_pricelist_action2_purchase
- msgid "Vendor Pricelists"
- msgstr "Listini prezzi fornitore"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__partner_ref
- msgid "Vendor Reference"
- msgstr "Riferimento fornitore"
- #. module: purchase
- #: model:ir.ui.menu,name:purchase.menu_procurement_management_supplier_name
- msgid "Vendors"
- msgstr "Fornitori"
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.act_res_partner_2_supplier_invoices
- msgid ""
- "Vendors bills can be pre-generated based on purchase\n"
- " orders or receipts. This allows you to control bills\n"
- " you receive from your vendor according to the draft\n"
- " document in Odoo."
- msgstr ""
- "Le fatture fornitore possono essere pregenerate in base agli\n"
- " ordini di acquisto o alle ricezioni. Ciò consente di tenere\n"
- " sotto controllo le fatture ricevute dal fornitore in conformità\n"
- " con il documento in bozza di Odoo."
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "View"
- msgstr "Visualizza"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_report__volume
- msgid "Volume"
- msgstr "Volume"
- #. module: purchase
- #. odoo-javascript
- #: code:addons/purchase/static/src/views/purchase_dashboard.xml:0
- #, python-format
- msgid "Waiting"
- msgstr "In attesa"
- #. module: purchase
- #: model:ir.model.fields.selection,name:purchase.selection__purchase_order__invoice_status__to_invoice
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- msgid "Waiting Bills"
- msgstr "In attesa di fatturazione"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- msgid "Waiting RFQs"
- msgstr "RdP in attesa"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #: model:ir.model.fields.selection,name:purchase.selection__product_template__purchase_line_warn__warning
- #: model:ir.model.fields.selection,name:purchase.selection__res_partner__purchase_warn__warning
- #, python-format
- msgid "Warning"
- msgstr "Avviso"
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid "Warning for %s"
- msgstr "Avviso per %s"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.res_partner_view_purchase_buttons
- msgid "Warning on the Purchase Order"
- msgstr "Avviso su ordine di acquisto"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_product_supplier_inherit
- msgid "Warning when Purchasing this Product"
- msgstr "Avviso all'acquisto del prodotto"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_view_search
- #: model_terms:ir.ui.view,arch_db:purchase.res_config_settings_view_form_purchase
- #: model_terms:ir.ui.view,arch_db:purchase.view_purchase_order_filter
- msgid "Warnings"
- msgstr "Avvisi"
- #. module: purchase
- #: model:ir.model.fields,field_description:purchase.field_purchase_order__website_message_ids
- msgid "Website Messages"
- msgstr "Messaggi sito web"
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__website_message_ids
- msgid "Website communication history"
- msgstr "Cronologia comunicazioni sito web"
- #. module: purchase
- #: model_terms:digest.tip,tip_description:purchase.digest_tip_purchase_0
- msgid ""
- "When creating a purchase order, have a look at the vendor's <i>On Time "
- "Delivery</i> rate: the percentage of products shipped on time. If it is too "
- "low, activate the <i>automated reminders</i>. A few days before the due "
- "shipment, Odoo will send the vendor an email to ask confirmation of shipment"
- " dates and keep you informed in case of any delays. To get the vendor's "
- "performance statistics, click on the OTD rate."
- msgstr ""
- "Quando crei un ordine di acquisto, dai un'occhiata al tasso di <i>On Time "
- "Delivery</i> del venditore: la percentuale di prodotti spediti in tempo. Se "
- "è troppo bassa, attiva i <i>promemoria automatici</i>. Qualche giorno prima "
- "della spedizione prevista, Odoo invierà al venditore una mail per chiedere "
- "conferma delle date di spedizione e tenerti informato in caso di ritardi. "
- "Per ottenere le statistiche di performance del venditore, clicca sul tasso "
- "di OTD."
- #. module: purchase
- #: model_terms:digest.tip,tip_description:purchase.digest_tip_purchase_1
- msgid ""
- "When sending a purchase order by email, Odoo asks the vendor to acknowledge "
- "the reception of the order. When the vendor acknowledges the order by "
- "clicking on a button in the email, the information is added on the purchase "
- "order. Use filters to track orders that have not been acknowledged."
- msgstr ""
- "Quando si invia un ordine di acquisto via e-mail, Odoo chiede al venditore "
- "di confermare la ricezione dell'ordine. Quando il venditore conferma "
- "l'ordine cliccando su un pulsante nell'email, l'informazione viene aggiunta "
- "all'ordine di acquisto. Usa i filtri per rintracciare gli ordini che non "
- "sono stati confermati."
- #. module: purchase
- #: model:ir.model.fields,help:purchase.field_purchase_order__partner_id
- #: model:ir.model.fields,help:purchase.field_purchase_order_line__partner_id
- msgid "You can find a vendor by its Name, TIN, Email or Internal Reference."
- msgstr ""
- "Un fornitore può essere trovato per nome, codice fiscale, e-mail o "
- "riferimento interno."
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid ""
- "You cannot change the type of a purchase order line. Instead you should "
- "delete the current line and create a new line of the proper type."
- msgstr ""
- "Impossibile cambiare il tipo di riga in un ordine di acquisto. Eliminare "
- "invece la riga attuale e crearne una nuova del tipo corretto."
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.product_product_action
- msgid ""
- "You must define a product for everything you sell or purchase,\n"
- " whether it's a storable product, a consumable or a service."
- msgstr ""
- "Deve essere definito un prodotto per tutto ciò che viene venduto o acquistato,\n"
- " che sia un prodotto stoccabile, un consumabile o un servizio."
- #. module: purchase
- #: model_terms:ir.actions.act_window,help:purchase.product_normal_action_puchased
- msgid ""
- "You must define a product for everything you sell or purchase,\n"
- " whether it's a storable product, a consumable or a service."
- msgstr ""
- "Deve essere definito un prodotto per tutto ciò che viene venduto o acquistato,\n"
- " che sia un prodotto stoccabile, un consumabile o un servizio."
- #. module: purchase
- #. odoo-python
- #: code:addons/purchase/models/purchase.py:0
- #, python-format
- msgid ""
- "Your quotation contains products from company %(product_company)s whereas your quotation belongs to company %(quote_company)s. \n"
- " Please change the company of your quotation or remove the products from other companies (%(bad_products)s)."
- msgstr ""
- "Il preventivo contiene prodotti dell'azienda %(product_company)s ma appartiene invece a %(quote_company)s. \n"
- " Cambiare l'azienda del preventivo o rimuovere i prodotti dalle altre (%(bad_products)s)."
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.portal_my_purchase_order
- msgid "close"
- msgstr "chiudi"
- #. module: purchase
- #: model_terms:ir.ui.view,arch_db:purchase.purchase_order_form
- msgid "day(s) before"
- msgstr "giorno/i prima"
- #. module: purchase
- #: model:mail.template,subject:purchase.email_template_edi_purchase
- #: model:mail.template,subject:purchase.email_template_edi_purchase_done
- #: model:mail.template,subject:purchase.email_template_edi_purchase_reminder
- msgid "{{ object.company_id.name }} Order (Ref {{ object.name or 'n/a' }})"
- msgstr "{{ object.company_id.name }} Ordine (Ref {{ object.name or 'n/a' }})"
|