From 0c66ed22fe32a6030e8dd8722bcf8a01e0ce2281 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Mon, 30 Mar 2026 11:48:09 +0200 Subject: [PATCH 01/13] feat(UsageInfo): drop planned_lifespan field Use decommission_date for past and future decommission --- .../07_drop_planned_lifespan.php | 35 +++++++++++++++++++ install/mysql/plugin_carbon_empty.sql | 1 - src/UsageInfo.php | 24 ++----------- templates/usageinfo.html.twig | 15 -------- tests/units/UsageInfoTest.php | 22 ------------ 5 files changed, 38 insertions(+), 59 deletions(-) create mode 100644 install/migration/update_1.1.1_to_1.2.0/07_drop_planned_lifespan.php diff --git a/install/migration/update_1.1.1_to_1.2.0/07_drop_planned_lifespan.php b/install/migration/update_1.1.1_to_1.2.0/07_drop_planned_lifespan.php new file mode 100644 index 00000000..bc8265d6 --- /dev/null +++ b/install/migration/update_1.1.1_to_1.2.0/07_drop_planned_lifespan.php @@ -0,0 +1,35 @@ +. + * + * ------------------------------------------------------------------------- + */ + +/** @var Migration $migration */ +$table = 'glpi_plugin_carbon_usageinfos'; +$migration->dropField($table, 'planned_lifespan'); diff --git a/install/mysql/plugin_carbon_empty.sql b/install/mysql/plugin_carbon_empty.sql index c699f233..48a78f46 100644 --- a/install/mysql/plugin_carbon_empty.sql +++ b/install/mysql/plugin_carbon_empty.sql @@ -407,7 +407,6 @@ CREATE TABLE IF NOT EXISTS `glpi_plugin_carbon_usageinfos` ( `itemtype` varchar(255) DEFAULT NULL, `items_id` int unsigned NOT NULL DEFAULT '0', `plugin_carbon_computerusageprofiles_id` int unsigned NOT NULL DEFAULT '0', - `planned_lifespan` int unsigned NOT NULL DEFAULT '0' COMMENT '(unit months)', PRIMARY KEY (`id`), UNIQUE KEY `unicity` (`itemtype`, `items_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; diff --git a/src/UsageInfo.php b/src/UsageInfo.php index f9a24207..e8c06ce5 100644 --- a/src/UsageInfo.php +++ b/src/UsageInfo.php @@ -36,7 +36,6 @@ use CommonDBTM; use CommonGLPI; use Computer as GlpiComputer; -use DateInterval; use DateTime; use Glpi\Application\View\TemplateRenderer; use GlpiPlugin\Carbon\Dashboard\Provider; @@ -166,7 +165,6 @@ public function showForItem($ID, $withtemplate = '') 'items_id' => $this->fields['items_id'], ]); - $this->fields['planned_lifespan'] ??= Toolbox::getInfocomLifespanInMonth($infocom); TemplateRenderer::getInstance()->display('@carbon/usageinfo.html.twig', [ 'params' => $options, 'item' => $this, @@ -280,11 +278,9 @@ public static function showCharts(CommonDBTM $asset) } /** - * Get the lifespan of an asset from its infocom or usage info, in hours + * Get the lifespan of an asset from its infocom, in hours * - * determine an interval between the best date for interval start and the best date for interval end - * interval start comes from, by precedence: date_creation of the asset, then from infocom: use_date, delivery_date, buy_date - * interval end comes from, by precedence: decommission_date from infocom, then planned_lifespan from usage info + * determine an interval between the best date for interval start and the decommission_date * * @param CommonDBTM $item * @return int|null @@ -315,25 +311,11 @@ public static function getLifespanInHours(CommonDBTM $item): ?int } } - if ($start_date === null) { + if ($start_date === null || $end_date === null) { //Failed to find any date to use as start date, then we can't calculate a lifespan, return null return null; } - if ($end_date === null) { - // Try to get end date from usage info and start_date - $usage_info = new UsageInfo(); - $usage_info->getFromDBByCrit([ - 'itemtype' => get_class($item), - 'items_id' => $item->getID(), - ]); - if ($usage_info->isNewItem() || $usage_info->fields['planned_lifespan'] <= 0) { - // Failed to find a planned lifespan, then we can't calculate a lifespan, return null - return null; - } - $end_date = (new DateTime($start_date))->add(new DateInterval('P' . $usage_info->fields['planned_lifespan'] . 'M')); - } - $interval = $end_date->diff(new DateTime($start_date)); $lifespan_in_hours = $interval->days * 24 + $interval->h; return $lifespan_in_hours; diff --git a/templates/usageinfo.html.twig b/templates/usageinfo.html.twig index 1b74b47e..d9de1f57 100644 --- a/templates/usageinfo.html.twig +++ b/templates/usageinfo.html.twig @@ -44,19 +44,4 @@ item.fields['plugin_carbon_computerusageprofiles_id'], _n('Usage profile', 'Usage profiles', 1, 'carbon')) }} {% endif %} - {% set readonly = false %} - {% if (infocom.fields.decommission_date ?? null) is not null %} - {% set label = __('lifespan (in months)', 'carbon') %} - {% set readonly = true %} - {% else %} - {% set label = __('planned lifespan (in months)', 'carbon') %} - {% endif %} - {{ fields.numberField('planned_lifespan', - item.fields['planned_lifespan'], - label, - { - display_emptychoice: true, - min: 0, - readonly: readonly, - }) }} {% endblock %} diff --git a/tests/units/UsageInfoTest.php b/tests/units/UsageInfoTest.php index 3919afbb..46ed3aec 100644 --- a/tests/units/UsageInfoTest.php +++ b/tests/units/UsageInfoTest.php @@ -339,26 +339,4 @@ public function test_getLifespanInHours_returns_hours_when_date_creation() $result = $usage_info->getLifespanInHours($glpi_computer); $this->assertSame(35867, $result); } - - public function test_getLifespanInHours_returns_hours_when_no_decommission_date_but_has_planned_lifetime() - { - $glpi_computer = $this->createItem(GlpiComputer::class); - $infocom = $this->createItem(Infocom::class, [ - 'itemtype' => get_class($glpi_computer), - 'items_id' => $glpi_computer->getID(), - 'delivery_date' => null, - 'use_date' => '2022-01-01', - 'buy_date' => null, - 'decommission_date' => null, - ]); - $usage_info = $this->createItem(UsageInfo::class, [ - 'itemtype' => get_class($glpi_computer), - 'items_id' => $glpi_computer->getID(), - 'planned_lifespan' => 60, // 5 years = 60 months - ]); - - $usage_info = new UsageInfo(); - $result = $usage_info->getLifespanInHours($glpi_computer); - $this->assertSame(43824, $result); - } } From 637eae0cc049b66eb63dfbdc4530851b4976120e Mon Sep 17 00:00:00 2001 From: Arthur Schaefer Date: Sun, 12 Apr 2026 20:13:25 -0300 Subject: [PATCH 02/13] translation to pt_br po edited and mo compiled --- locales/pt_BR.mo | Bin 6663 -> 21028 bytes locales/pt_BR.po | 406 +++++++++++++++++++++++++---------------------- 2 files changed, 216 insertions(+), 190 deletions(-) diff --git a/locales/pt_BR.mo b/locales/pt_BR.mo index 061686dc570f319ad476565ac919b37ac7f91001..0332747961cdad30bb4f07b17fcb5ca6cb88bb1d 100644 GIT binary patch literal 21028 zcmche37jNVea9b10GBJA0V7&~9IHFM7Z6-rVRm;|Mp$;)gVhacYPxG?itVoIt*V}# zSxp3t@kDbdIW#C34=|_+m>4wC&;*aDNiflns4>QfL1Q%0oW$h&d+$~CF+J=?lk{i* z^Q(IG&j0&g@7OP%eB>Jqzi&cMfnIyGG3yUA=J6AhYRtDzG3GSz+u#l0(We^oqhQ11 zP2jn_zZrZI_!015z)yh3f)7ymEb!Bys{971{Qm*20iSldF~@-0!Q;Un2kC-|LFL~E z9tGY62H-2eGr@O(XMhiYCxU+o{xJA;a25DCxB?ve5jUd$?k z+WT|xJn&KQ67YB$IUC#rt_7z-mHQR&eDLF-+W!_f2C8%FUyVOhVXguhs`&~3J_oA4 z*MYFqybn}84}vFyUkBCi?}1MRpZR2CTHtd*_3s0q+W9DW4)|SA<358)IUHOL9s#ZZ zmA(pmIyer}MKcWs;7dXEokgH-Va;U7-4R zgMZ)a-!l+VFgJU=4b*tw4QiYZgBs_5f$INL5td2tY_JaQ1=oXr1nvWmC-W@$Qc(4L z4b;4x_%tVP8$s2x6%-$~gJ&LQ%=Mtg-wqtU3gn-;lRwJe1toV6fy=;8gX;Gq9={1{ zevW`?8t3WY<=}as@%_ya80Zw}ayIZ-Xa+9|gtlN5FCL+u#-8+H;s| zumBGSKMZOd4}jv+Lq7d)J$?-o|G)0>A3^o!-~9Iz&UNKa0>!V>K*{&BLCM7wsD8Wx zgvI79p!D*0efqaN9z$k*55U90=YSgDIH>Vl4N9J007_2wf$GOC;BnwDf{%f}2CDq) z>BJG>&x0Gl+d$=e1XO)r1;yuo1yN;lG@Vzur-I_|*`WG82A%^>fSR{iQ1g&`ycs-_ z_t%3*fo}kn?@gfe@*SY+`;brnm{0!P!!1eoB@F?C-1U0{>gQ{;O zsQeS4__YUQ2xi{n?V$AcL69jo{|E-)sTUfv6TBF_3Vbyv`T7ia9eB!eW43`2xCi_# zQ0<-c3|G$uAXS-3Q0?vmB`>e{>F)tyz4x^1tmxI%xaJ>o9nV z`yEj8`3U%9;NzhBeGyE<)S2gl>R$m`xdqj)w}6L%9|G0y-vf^Z9|kqvzwr14P;&Pr zQ02bj(+{h;d`E)%el#e)91ETRo(8I(r-N$e0#N0bgX-^OW+Q1X5hlXE?I7AQUy9&ZCFYCZrS4?YTBN4f8U$ML=y zW2pLfg5tvhsP=CK<%pgi>gNkUjq?C_3izv_ z`uQ7R9sC&hLU6^!PHtZVihq9ys{TI%>7w}ph$@*A>C6e>C7{wLK()6YlpMbwB&+!X zxC1-|VL+tJ40saw3*aj7?V#lCv!LYdyCAO1oN}p?rQ(I;i=%7*xInsP^VT_5ZCt z{ga^j`z8PVd!Xj!{L5TDE5TEFzXJRbaF@pxD1N@&f4>#feBB9(FL!zTpvO;vsF3+9 z5LTMwp6%?_Mo{v619&a?B2e@A9`HHf$xOyR@H+5DunS6_YkZVlx&b^Ed^4ze-UW&e z?*{iEkM9Mg&&#fG_zY0}crK{?`$3gI07?#i27D^`Mo{y0A1MBP7CZxd3>*iK;E&!X zK=J#9pyWOURo_d%0DL8=?{|UX%l+VK;3vV&;FrNo;4?NL8(<2mUmpfFjt9U1e8{Ii z>hUp9{Qi4T^Y9(;Oz?64{q&8l{F$KS{47v*Zxgs0Ou)0jw}O(l2f*ioUjxOjwRGyq z;0{pyO2EUxH-XE*+d+;0E>QCE0C*1gIq*dA-$BXwvI%TEcs8i=!IiFG=YoiWxd2pq zbx`*7WuW+U8>o4B7pQU{_357gHO|k2m?-nlpxQehW{R(uc)SKYlJ_a_7;pwuzuW%% zi$U3)p959?Eui}UUQqM*FsSyw2&(=61djma6psRq1fK#P3yKdHf*S8QsPQ}xl$_6l z;@^8gMAv*CR69?ebn*Ur@CCewAVV=92FYTMVlq;2E7(*zI1jG4+KvD1-~~ztHJ^`y z=YnTmRqOoJ-- zK2YEP29%tgw9Va1WaU{%)dqH&Ip}2Q4bUv4pT_q0(EIh`f4>5r06ibt2}$mxTf@JfCE+>Ht^UJ( z9&6w?q0d2kecDYP`{BmEm$&i!VQ3%Jfx3`>3l8kxyZQSw(4RqHf*ycA3q_FTLchO) ze%?MIV;)QR4IX|Ax(zx2y&8Hs^b?SL(MeDN{WSDGNI%rnybAgSz3}@<=x?C+=!IVf zNk8>VpqD{wAj$O6&}$+6u7KVOX%6-KO$YYxAM^Jy|NbQK9m1(N>aZtZUaf2F_reHHpBB>mIxC`ht=5A-_dQRqQvJ@g{z z3s4jKJLpvC*P!#EUx&_wj)P8wj)8t3Ivv^ry$RB9wS(&KAMx}{&?e|&=Pl3wcBoCj2HbTck zUxdb?o1q(^AA`<=^!rN())sx5=l4SQ`?RybzlB~2T@QT&rZ!0nJ0lLNT-z((m`6=RseC?t-2Rt%W`WeFVxO{dPgGfL@~)e%C^Q9{4SX&W5I; z-O$INt0Daw&=mA6=mn5|6VMColl${0z>}e0^l9$~e;hgzdY4aYfe-uVP{|U zqdcgG&3dO97E!~j4ra2j6{OR_#;sqz<(44MgJ@qTo(r2~4vI7=W+VS8YQ+Ubg8j2m z5-g;hppnIMQ4msH7EGsE5Kg6?B3QF3XhlVom>ZW>my!5^PHg>W#x@ z^{r8TYahzDU|%O}#>IjeZ|)Bl@*qvjcpmJJf>ugjigbUNHFEkilSNSy(XUR?$)Xj( zR40#GuM3b+(yGYdf{4`&!%($M&($j$ikoI&KZ zV8a5#Tyyb?pcN(yL6}9MuQp0xM4gVzM!71V5u06^@kZJ%;$+5uYiD5{-q4>U-A|i2 z-DGCcR=XL8300`&*{IpJiBn+_)SGdOIScBuVKNiJT}D&5Zt6L$$NI`R!o+vJou$)p zGcp^(2A!PgwBS9{vLU2zyS86bPVa^^oQn?>VLJ}uBrnvu*$~gnM0o*QlVY~X80Vr4 zek@`}(1yvav=KE;Sxxm297vPMShc@ldJ=+moC^a{9{N>F3K~&f&tfbEXX2?w*&@w%gjMfYb3~GC=QM^h+AD*eS(8;s1gyu* zqV`!Q$<3w+>uqar(^v{ah;3=q_}ogZ34pb*o1|bTPQ!9)Dr#cgkVmXsAp?t%lSCEr z9JDX*;zR{z*f$lM!a&u6^YTq`t_tCaZvlbc6gRB%*(PqOn+$c|0Wg6;UuXMeX%XWr&&lXDgtV+%_(F%YhB#^wJm0)8Y@MCv$NlN=KGeC^DNi z(q=ld@S?sVW+KZ_nEkVea8FlYZ`ovFCY-iliY25&^CxL_0aGtplEemEQe?faA<~9x zvTSz>js_(3Kf@;Nw~~%}SXY#*fpH=w{4XL=MP!HA#u77qh^3vDAHs-(Mkn(TP0$Q6 zXsg!*Q4{6BYT3YnQ0b6(^8L5C=3ot7852io2FIK2*>EjV-ysTK0ErncoZPW>?dnS| zS#Az3n@mgY5`RlwkyjhM5B53UU z3hO+HG@DLUSOt^}CO)=~q-HidGq&5CvED+!e^_kamikcHmCc2@iYOV6Q=+uZCzWo+ z&i8O)rWvdf31RDUN;45j{S#)cl4BGPoQd%(97&V6LQ-I&3Vbdr5j%PpIbgKfWtxq7#`8hyJuTChPW5lR^-a;YcQ&A?)FpYM}jH;9&RrJK!8a^T!k*hQW zR;Tl{IY(7J|J3g`%oe$1{86=Rlj>@*O59khzSU4y4bleQd~Kwhe}vgRhlo-By_GAuQ5nL&kFy zD!vP%db*|+&)cT8oFN^XAGfObsJ9j_!{_Y;{7gK3CAWQy5>}WhtG8*th}bd37QqhO z4}IT399*<#wRx}umLU#gluD^B^WVU@Uy+_Fciz}H>Qqy+%-9Pnz-nrZCgz-Bi zPKDWt$+QX+%vw)?t9Q%w;SX-hV>q=~Xh)0ca2izZ#S9g}xt5DSYikz7DpyBoEqqs` zY^<5sW@A2W3}agw$h8oKnU#FIVbz-q%YL4^o%>TU#7rD?8Rj1nM8FmjlZR!&(ab1q6Tn#U|Tph|cxI{7T>p==TO*(jI zT)w3%E6gspl*OD*Ykklsk7%J?rpn}4yXyVtu7qt@8*5fiiZ=US0vA^HlFBWs{%rVL z8x8f9ymnE1!^gahBbmlhnq6&~1p4Srk$*2Or+-Bfml|+oWP4d1hrALE)nqNeV&mWo zTTd_MRH3O4WbJqB&(RLQmEIV&tz~v;XWjiJqIO3Fqc%@$KE^$;`|isPrS@&rjVu+& zGTN1ttn0`u*bPiX=#CXifv`&^)?SHr!+g0V+3b9!tK6~HmvApgfjv^_+Z`yAMsV9^ zEuDrd=-+bAjCP0abjI$2wY2AOIcZq}{|(;k`MdcCICtPm4{P@G3$tf8|7OjeYSYp^ zRr`y33Xbb^KIB%Ki?<_sAN_okoAJFJ3**(MT#q>&xiRfDqujKc9h9w{;<3P4fsPyd zBKI_$+l^~T5*F22wvVz7S5SU(YiO^&!-z! zG`1z5i5p`ZIy3p$&XnYBTgSFXb2c0t+l1h))2Y!VW2-J2W20ovs&%W^jICO`YSpr9 z*gF~9nT1Kt3NFpo1>1;5(qLO0Wmz0NyREkxQrPG;<0QRerbW#F#*0SSSWz93A?6i!3q2HQC-apEkVi8+{PNs_aa z*nqf-O$A$lI}goL1^GJRczvut9LyLZe*O*VU!ol0~25KL+L$$*I5H5O<2F}8WcZjoJhX#Wbg%GPik20STn z?7lxzP~}xWtp(#n_pb6#wG$WA&FN`uv$fIB&{j_IdCO{+j4Wta%Fr!UPX=3n<5s(} zVjwg?tqtNA7G3sxJL}#dE@SCgy>UhyB8+%eMR0Z(#_^Se8#}Pb26i00Mugl%yCjKQ z$O-4LzM>i?T}#}6HQHQSp28|bhlA{|uqUQLx81%wd{PaJ~MPKtCco=@#mFp z^I!AXnENA?n!#J>uwK# z%Xg_VBktk+h>!0a9>b@Y``*5Q1kT45qPXl-8u zz7$srN`-Y=-Rrrr-z*PRmi`^$H~eEXFFhhZJkvHVg-exmC)C=!#Po20A-vae0IW*w#n0SP08KOR~Lk4}6ZaZD)Pd;8**`!l+(!@2SUW{^gtA!NIkw z7`vvUYg?z=x#-@3;BpA8V{7L>?Cfz^!7ZDxIfu<|NmjNI6_AvO8F)cDrg=734)oB? zO1*oBPOnqD)h)%S(|~rn7zj>_y+3D4H^rD^Mwv&PGuU?I*81lLMsP^jluuw6se?sj z#AX~fQg3#0Yu|bz;st}v1GXQvW6D6pI!>Rl$C+!?iWnWQ1zXj&6}qV~o`>hEu6M-E zrK(aM=>_JUF;_F8b1_&Z!9z_k)FWDgXV<6o?%i;43WI++_jclWax>;7bZuCvRRE4H zl|Kxm(pOPC8(sFq_Qfgt0E;hWsl9Z%J72fQzpIfs|;twfL_Y= z-Fr9_hodajwSzpzZhcCqhIW*;vzOVQLAjvG=Tn3s^UKLObHq3o7t0}I?K^}b3?0Vz_OrDE_rG+6-s`fr!#&}s z1mcjp=+>}qz>Wtx6JV`7d~4tbI79Ds*hbWYE@25Ct2rC=Vw}47H+8`v4>&|;vFH!$ zNAuqsY<4_@x(hNiq3y7HPhOs^_YTvwwv%~3q}-}Uo7fz?NGk|0M;)w>2gAxEEoIGt zUGKEqnYOP%{-tFXW4@z9=k1(`E@x%XbHeV-1|er%;^Ttyz+FQ?9G${p?^7E(^dgN~ zFd=8ip%3R(@@sP_i?G3dbN8L72ikXlvk*$!P7U|eMj_~?4&If2;5@z-?9e7O6>Gyy zONuPzn4%S~2XgikIK>DKU&SRs`0)L%f}H7IWB2$}O_wRCtOPZ$$*@-f(gS zmlG#W^wk&6Fm(0KiZI?`OUj$lz38xdv4+_8y?-fVmwx0M4h)H{2!a#?c3)LhZWrL@ zT6qH&%kwtGL9I+*V69b5>ou^C(=UL}?yVDYOSW@71VR2roV%w?IULJfEY2-)9frBk*+r{JBplQ*2)-&^LYTDQ zLYUhhb<4J3-mIe4s$fWRUAl6&4Ph-w@4HLv%hvnUSF{na+C#Z%z}r<Tfg; zbF>Wbfe0TlgIyEzSDE zDikto*o`e4{5HDx!~Zy}1-tAm1iLfGUMU;!^a#HzJ?Tb5^@ti0W_#_jOW(z-gMRNqFgYBV87?YpX8H)JZ9P)a zjGI1Uv=et8kTcy{(1nGey{A%&kv83*lDWjr&z379U0LAZH%?%st*v@@Q;Z{#CVUoF)v?fXgQs?YxiNXZ_ zzX*oMuH{EYraHgvKeK~(I(Osj%GEb`1Xju?9xLQjk|RiJR|APo1pNlsaFKEs#xm4K zk8ENS#Z^Hg;h6jrrq~77{ZY=rrjo%jPt~sA@T(j6LVz)5QXcgAUTu`~%Rp{si= zFqMI^QeyA3!haCqTd!2QBC!tMZuN^yy<2Z*Ki;|9a$M(SP%w}fR zIRx6If266PMdVQ=)QY1CLao}Sq6AX@C<+^@R#7M_;uic-p@<+5M=JsqNc_IpX`n(p z%{RaAUEjR#cyr;xf=9ZFzqxnO6N)yDtU{jpfKs0neK9ZEYfF^+7);ryg0pZLJOf%Whhtc9PC`3zi7 z{|Xd?zk`)<#a-on>tG}O2`C>fKzvbW;6nH)yc<3i&p!#PRZ*$uP-Nj1SOKrb{U1Tu z_~W?$vv~fOkZ-FS@%W#ita}@-fw$uE8jOkE`k1SrtXm7kktW#8_thwhc$$xS7Rtu2 z!h7I(_(6CH{vLimo`0S}G58|f0lx)h-7Q|Se-ZAA-KB5^Tnjmy>W1RLHdvH}qbOo% z58Ma$L8*uHa0ti{1}vlUxAXtr{n%bC>y^S_rD#_zYHk@^=dr+CX{tQ zfg1iI9)CCHzhX)_WZgn2MOa*l(t^?s#lr_+13V7pKnBXa{vza27kMor1+PMxzlIxP z@P}{KK(03tHxY8uQS`=CWkwWGosea_W7JYw&p5$H%5oh1my6Jrc zNg{*DCPc29QiGn#*-n=Eb^I=Iy%q%Fqr%?YQ%{8+!f;Q>x!^uA$Am+;Dt#&Itm?b9KfF zZIyDZ>8!0c>Om(E&74|Qn+VnL?(q>lVENOYtA;0e=G1VgM%)?C&sib6(L>t}obZHs zr7>YDn+}@4G$qab>lWXA(sONX&09_ugD*X?ZeoFHUEk2L-z)fOTVp}bIRS@q(pFaO z4=q2`p_8*wy?j|aFsTkq&Y4Rs{bpCouUCZXpgU)|nXH}B170p)2yH(wUrub@a(Gf5 z=4gjQH8sgIr=~(Rt3oyId!Mk=VPYhcIK*1cyIGHKAK0~hIHeDzCiai)9W%Q(CYE(4 zlD&y!r|#(7+}+ojOqxeGK4rR-Q&qbyceY^7+M9JgJhEfLJf1v~QXP8Mw{n)w*gDFB zEEevBK7A zE9c-}&I@$j@-1D+>6t=U@I9TgoIuape#UOoR-o-%-nWBD(bK*?Z|lJJOXof9O=H^1 zFk@-o&U-#V)t*j!Zcxa1a$eiD{aMG-95T>mUr)7peADU*E1x9^kqL8sQ$vNeGG6H$ zVliX>xM}Kkt<`o7nUh^(rmg#ksp@Gu*R#wF^>mo!y$6ixJ!^XV>de``7W0F?Ui0<- zY>lro-Z3}pSs9g@Tbf%(a(OEqdfLiOJH(6vNWHJvy#G|2akn>^@9k(e zH3JWr&cQ7!_k?Q9cIOIYfD$7OPLTK9()06n*4&wD-WilbA(0Qn=NXTr1QLZAr}VXX zn^?Ye>N7kx(GQ(;A?pQJF3KF0NEhz|T?kB=+E!1Xva{4^C~3i%*Nu v>ePR&RVn!g$llN+2jU-Pz+Ly$fl!sN7{Q>}bhPWeZ+d|l8Xv6tf4A=6W, YEAR. -# +# # Translators: # Eduardo Scott , 2025 # Thierry Bugier , 2025 # Pablo Pierri , 2025 -# +# #, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-29 08:10+0000\n" -"PO-Revision-Date: 2025-07-03 13:58+0000\n" +"PO-Revision-Date: 2026-04-12 20:12-0300\n" "Last-Translator: Pablo Pierri , 2025\n" -"Language-Team: Portuguese (Brazil) (https://app.transifex.com/teclib/teams/28042/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/teclib/teams/" +"28042/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " +"1000000 == 0 ? 1 : 2;\n" +"X-Generator: Poedit 3.9\n" #: templates/dashboard/usage-carbon-emission-last-year.html.twig msgid "Yearly Usage Carbon Emission" -msgstr "" +msgstr "Emissão de carbono decorrente do uso anual" #: templates/dashboard/monthly-carbon-emission.html.twig msgid "Monthly usage carbon emission" -msgstr "" +msgstr "Emissão de carbono decorrente do uso mensal" #: templates/dashboard/monthly-carbon-emission.html.twig #, php-format msgid "Compared to %s" -msgstr "" +msgstr "Comparado a %s" #: templates/dashboard/embodied-primary-energy.html.twig msgid "Embodied primary energy" -msgstr "" +msgstr "Energia primária incorporada" #: templates/dashboard/usage-abiotic-depletion.html.twig #: src/Dashboard/Widget.php:102 src/Dashboard/DemoProvider.php:95 #: src/Dashboard/Grid.php:184 src/Dashboard/Grid.php:287 #: src/Dashboard/Provider.php:812 msgid "Usage abiotic depletion potential" -msgstr "" +msgstr "Potencial de depleção abiótica" #: templates/dashboard/unhandled-network-equipments-card.html.twig #: templates/dashboard/unhandled-monitors-card.html.twig @@ -58,11 +61,13 @@ msgstr "Aviso" msgid "" "It represents %s percent of your parc that contains %s network equipments." msgstr "" +"Isso representa %s por cento do seu parque que contém %s equipamentos de " +"rede." #: templates/dashboard/unhandled-monitors-card.html.twig #, php-format msgid "It represents %s percent of your parc that contains %s monitors." -msgstr "" +msgstr "Isso representa %s por cento do seu parque que contém %s monitores." #: templates/dashboard/information-block.html.twig msgid "Information" @@ -71,27 +76,27 @@ msgstr "Informação" #: templates/dashboard/information-block.html.twig msgid "" "Our data is sourced from reliable sources and is meticulously calculated " -"using industry-standard methodologies. We utilize accurate measurement tools" -" and algorithms to ensure the precision and reliability of our environmental" -" metrics." +"using industry-standard methodologies. We utilize accurate measurement " +"tools and algorithms to ensure the precision and reliability of our " +"environmental metrics." msgstr "" -"Nossos dados são obtidos de fontes confiáveis ​​e meticulosamente calculados" -" usando metodologias padrão da indústria. Utilizamos ferramentas e " -"algoritmos de medição precisos para garantir a precisão e a confiabilidade " -"de nossas métricas ambientais." +"Nossos dados provêm de fontes confiáveis e são meticulosamente calculados " +"utilizando metodologias padrão da indústria. Utilizamos ferramentas de " +"medição e algoritmos precisos para garantir o rigor e a confiabilidade de " +"nossas métricas ambientais." #: templates/dashboard/information-block.html.twig msgid "" "As we move towards a greener future, businesses will soon be required to " "report energy usage and carbon emissions. By 2025, many areas will enforce " -"these regulations. Adopting these practices now ensures compliance and helps" -" combat climate change." +"these regulations. Adopting these practices now ensures compliance and " +"helps combat climate change." msgstr "" -"À medida que caminhamos para um futuro mais verde, as empresas em breve " -"serão obrigadas a reportar o consumo de energia e as emissões de carbono. " -"Até 2025, muitas regiões aplicarão essas regulamentações. A adoção dessas " -"práticas agora garante a conformidade e ajuda a combater as mudanças " -"climáticas." +"À medida que avançamos em direção a um futuro mais sustentável, as empresas " +"em breve deverão reportar seu consumo de energia e emissões de carbono. Até " +"2025, muitas regiões passarão a exigir o cumprimento dessas " +"regulamentações. Adotar essas práticas agora garante a conformidade e ajuda " +"a combater as mudanças climáticas." #: templates/dashboard/information-block.html.twig msgid "Did you know ?" @@ -102,13 +107,13 @@ msgid "" "1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " "about 20 meters." msgstr "" -"1 grama de CO₂ é equivalente ao CO₂ emitido quando você dirige um carro por " -"cerca de 20 metros." +"1 grama de CO₂ equivale ao CO₂ emitido ao dirigir um carro por cerca de 20 " +"metros." #: templates/dashboard/embodied-carbon-emission.html.twig #: src/Dashboard/Widget.php:111 msgid "Embodied carbon emission" -msgstr "" +msgstr "Carbono Incorporado" #: templates/dashboard/information-video-card.html.twig msgid "Want to know more ?" @@ -116,46 +121,49 @@ msgstr "Quer saber mais?" #: templates/dashboard/information-video-card.html.twig msgid "Here is a video about the impact of numeric on the enviromnent." -msgstr "" +msgstr "Aqui está um vídeo sobre o impacto do digital no meio ambiente." #: templates/dashboard/unhandled-computers-card.html.twig #, php-format msgid "It represents %s percent of your parc that contains %s computers." msgstr "" +"Isso representa %s por cento do seu parque que contém %s computadores." #: templates/dashboard/embodied-abiotic-depletion.html.twig #: src/Dashboard/Widget.php:118 src/Dashboard/DemoProvider.php:77 #: src/Dashboard/Grid.php:204 src/Dashboard/Grid.php:301 #: src/Dashboard/Provider.php:778 src/Dashboard/Provider.php:862 msgid "Embodied abiotic depletion potential" -msgstr "" +msgstr "Potencial de esgotamento abiótico incorporado" #: templates/monitortype.html.twig msgid "" "This power value is used as default when the power of a monitor model is " "unknown" msgstr "" -"Este valor de potência padrão quando a potência de um modelo de monitor não " -"existe" +"Este valor de potência é utilizado como padrão quando a potência de um " +"modelo de monitor é desconhecida" #: templates/monitortype.html.twig templates/computertype.html.twig #: templates/networkequipmenttype.html.twig src/AbstractType.php:56 msgid "Power" msgid_plural "Powers" -msgstr[0] "Energia" -msgstr[1] "Energias" +msgstr[0] "Potência" +msgstr[1] "Potências" msgstr[2] "Potências" #: templates/computertype.html.twig msgid "" "This power value is used as default when the power of a computer model is " "unknown" -msgstr "Valor padrão utilizado quando a potência não existe" +msgstr "" +"Este valor de potência é utilizado como padrão quando a potência de um " +"modelo de computador é desconhecida" #: templates/computertype.html.twig src/SearchOptions.php:251 #: src/ComputerType.php:78 msgid "Category" -msgstr "" +msgstr "Categoria" #: templates/pages/CarbonIntensitySource/tab_zone.html.twig msgid "No zone available" @@ -170,33 +178,33 @@ msgid "" "This power value is used as default when the power of a network equipment " "model is unknown" msgstr "" -"Este valor de potência padrão quando a potência de um modelo de equipamento " -"de rede não existe" +"Este valor de potência é utilizado como padrão quando a potência de um " +"modelo de equipamento de rede é desconhecida" #: templates/environmentalimpact-item.html.twig msgid "Usage" -msgstr "" +msgstr "Uso" #: templates/environmentalimpact-item.html.twig msgid "Reset data" -msgstr "" +msgstr "Redefinir dados" #: templates/environmentalimpact-item.html.twig msgid "Calculate data" -msgstr "" +msgstr "Calcular dados" #: templates/environmentalimpact-item.html.twig msgid "Embodied impact" -msgstr "" +msgstr "Impacto incorporado" #: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:125 #: src/ComputerUsageProfile.php:146 msgid "Start time" -msgstr "Iniciar o tempo" +msgstr "Hora de início" #: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:154 msgid "Stop time" -msgstr "Pare o tempo" +msgstr "Hora de fim" #: templates/computerusageprofile.html.twig msgid "Days of week where the computer usually runs" @@ -204,7 +212,7 @@ msgstr "Dias da semana em que o computador normalmente funciona" #: templates/usageinfo.html.twig msgid "Asset usage" -msgstr "" +msgstr "Uso do ativo" #: templates/usageinfo.html.twig msgid "Usage profile" @@ -215,98 +223,100 @@ msgstr[2] "Perfis de uso" #: templates/quick-report.html.twig front/report.php:55 msgid "GLPI Carbon" -msgstr "GLPI Carbono" +msgstr "GLPI Carbon" #: templates/location.html.twig src/Profile.php:45 src/UsageInfo.php:91 msgid "Environmental impact" -msgstr "" +msgstr "Impacto ambiental" #: templates/location.html.twig src/Location.php:78 src/SearchOptions.php:121 msgid "Boavizta zone" -msgstr "" +msgstr "Zona Boavizta" #: templates/history/status-item.html.twig msgid "Historization status" -msgstr "" +msgstr "Status de historização" #: templates/history/status-item.html.twig msgid "No status" -msgstr "" +msgstr "Sem status" #: templates/history/status-item.html.twig msgid "" "This data is missing and prevents from environmental impact calculation." -msgstr "" +msgstr "Esses dados estão ausentes e impedem o cálculo do impacto ambiental." #: templates/history/status-item.html.twig msgid "" "This data is missing and may reduce the quality of environmental impact " "calculation." msgstr "" +"Esses dados estão ausentes e podem comprometer a qualidade do cálculo do " +"impacto ambiental." #: templates/history/status-item.html.twig msgid "Is not in the trash bin" -msgstr "" +msgstr "Não está na lixeira" #: templates/history/status-item.html.twig msgid "Is not a template" -msgstr "" +msgstr "Não é um modelo" #: templates/history/status-item.html.twig msgid "Linked to a computer" -msgstr "" +msgstr "Conectado a um computador" #: templates/history/status-item.html.twig msgid "Has a location" -msgstr "" +msgstr "Possui uma localização" #: templates/history/status-item.html.twig msgid "The location has a state or a country" -msgstr "" +msgstr "A localização possui um estado ou um país" #: templates/history/status-item.html.twig msgid "Real time carbon intensity enabled" -msgstr "" +msgstr "Intensidade de carbono em tempo real habilitada" #: templates/history/status-item.html.twig msgid "The location has yearly carbon intensity data" -msgstr "" +msgstr "A localização possui dados anuais de intensidade de carbono" #: templates/history/status-item.html.twig msgid "The asset has a model" -msgstr "" +msgstr "O ativo possui um modelo" #: templates/history/status-item.html.twig msgid "The model has a power consumption" -msgstr "" +msgstr "O modelo possui consumo de energia" #: templates/history/status-item.html.twig msgid "The asset has a type" -msgstr "" +msgstr "O ativo possui um tipo" #: templates/history/status-item.html.twig msgid "The type has a power consumption" -msgstr "" +msgstr "O tipo possui um consumo de energia" #: templates/history/status-item.html.twig msgid "The asset has a category" -msgstr "" +msgstr "O ativo possui uma categoria" #: templates/history/status-item.html.twig msgid "The asset has a usage profile" -msgstr "" +msgstr "O ativo possui um perfil de uso" #: templates/history/status-item.html.twig msgid "The asset has an inventory entry date" -msgstr "" +msgstr "O ativo possui informações de entrada no inventário" #: templates/history/status-item.html.twig msgid "Legend" -msgstr "" +msgstr "Legenda" #: templates/config.html.twig msgid "Electricity maps" -msgstr "" +msgstr "Electricity maps" #: templates/config.html.twig msgid "Key for electricitymap.org API" @@ -314,20 +324,21 @@ msgstr "Chave para a API electricmap.org" #: templates/config.html.twig msgid "Impact engine" -msgstr "" +msgstr "Motor de impacto" #: templates/config.html.twig msgid "Usage carbon emissions are always calculated internally" msgstr "" +"As emissões de carbono durante o uso são sempre calculadas internamente" #: templates/config.html.twig src/Impact/Embodied/Engine.php:46 #: src/Impact/Usage/Engine.php:46 msgid "Boavizta" -msgstr "" +msgstr "Boavizta" #: templates/config.html.twig msgid "Base URL to the Boaviztapi instance" -msgstr "" +msgstr "URL base para a instância Boaviztapi" #: templates/config.html.twig msgid "" @@ -336,10 +347,15 @@ msgid "" "address stored in a location to nominatim.org service. If this is an issue, " "you can disable it below, and fill the coutry code manually." msgstr "" +"A geocodificação converte uma localização em um código ISO 3166 (3 letras). " +"A Boavizta precisa disso para determinar os impactos do uso dos ativos. " +"Este recurso envia o endereço armazenado em uma localização para o serviço " +"nominatim.org. Se isso for um problema, você pode desativá-lo abaixo e " +"preencher o código do país manualmente." #: templates/config.html.twig msgid "Enable geocoding" -msgstr "" +msgstr "Ativar geocodificação" #: setup.php:263 msgid "Environmental Impact" @@ -348,65 +364,66 @@ msgstr "Impacto ambiental" #: front/embodiedimpact.form.php:65 front/embodiedimpact.form.php:88 #: front/usageimpact.form.php:65 front/usageimpact.form.php:102 msgid "Missing arguments in request." -msgstr "" +msgstr "Argumentos faltantes na requisição." #: front/embodiedimpact.form.php:70 front/embodiedimpact.form.php:79 #: front/usageimpact.form.php:89 msgid "Reset denied." -msgstr "" +msgstr "Redefinição negada." #: front/embodiedimpact.form.php:84 front/usageimpact.form.php:94 msgid "Reset failed." -msgstr "" +msgstr "Redefinição falhou." #: front/embodiedimpact.form.php:94 front/usageimpact.form.php:133 msgid "Unable to find calculation engine for this asset." -msgstr "" +msgstr "Não foi possível encontrar um mecanismo de cálculo para este ativo." #: front/embodiedimpact.form.php:103 msgid "Update failed." -msgstr "" +msgstr "Atualização falhou." #: front/usageimpact.form.php:79 front/usageimpact.form.php:108 #: front/usageimpact.form.php:116 msgid "Bad arguments." -msgstr "" +msgstr "Argumentos errados." #: front/usageimpact.form.php:98 msgid "Delete of usage impact failed." -msgstr "" +msgstr "A exclusão do impacto de uso falhou." #: front/usageimpact.form.php:124 msgid "Missing data prevents historization of this asset." msgstr "" +"A falta de dados impede a criação de um registro histórico deste ativo." #: front/usageimpact.form.php:127 msgid "Update of global warming potential failed." -msgstr "" +msgstr "A atualização do potencial de aquecimento global falhou." #: front/usageimpact.form.php:138 msgid "Update of usage impact failed." -msgstr "" +msgstr "A atualização do impacto de uso falhou." #: hook.php:293 msgid "Associate to an usage profile" -msgstr "" +msgstr "Associar a um perfil de utilização" #: hook.php:297 hook.php:302 hook.php:306 msgid "Update type power consumption" -msgstr "" +msgstr "Atualizar tipo de consumo de energia" #: hook.php:298 msgid "Update category" -msgstr "" +msgstr "Atualizar categoria" #: hook.php:310 msgid "Update zone for Boavizta engine" -msgstr "" +msgstr "Atualizar zona para o motor Boavizta" #: install/install/create_automatic_actions.php:45 msgid "Find the Alpha3 country code (ISO3166) of locations" -msgstr "" +msgstr "Encontrar o código de país Alpha3 (ISO3166) de localizações" #: install/install/create_automatic_actions.php:57 msgid "Compute carbon emissions of computers" @@ -414,7 +431,7 @@ msgstr "Calcular as emissões de carbono dos computadores" #: install/install/create_automatic_actions.php:69 msgid "Collect carbon intensities from RTE" -msgstr "" +msgstr "Coletar intensidades de carbono do RTE" #: install/install/create_automatic_actions.php:81 msgid "Collect carbon intensities from ElectricityMap" @@ -422,11 +439,11 @@ msgstr "Coletar intensidades de carbono do ElectricityMap" #: install/install/create_automatic_actions.php:93 msgid "Compute embodied impact of assets" -msgstr "" +msgstr "Computar impacto incorporado dos ativos" #: install/install/create_uasge_profiles.php:41 msgid "Always on" -msgstr "" +msgstr "Sempre ligado" #: install/install/create_uasge_profiles.php:52 msgid "Office hours" @@ -439,11 +456,11 @@ msgstr "Carbon" #: src/CronTask.php:64 msgid "Find the Alpha3 country code (ISO3166)" -msgstr "" +msgstr "Encontrar o código de país Alpha3 (ISO3166)" #: src/CronTask.php:65 msgid "Maximum number of locations to solve" -msgstr "" +msgstr "Número máximo de localizações para solucionar" #: src/CronTask.php:70 msgid "Download carbon emissions from RTE" @@ -459,7 +476,7 @@ msgstr "Baixar as emissões de carbono do ElectricityMap" #: src/CronTask.php:82 msgid "Compute usage environnemental impact for all assets" -msgstr "" +msgstr "Computar o impacto ambiental de uso para todos ativos" #: src/CronTask.php:83 src/CronTask.php:88 msgid "Maximum number of entries to calculate" @@ -467,58 +484,58 @@ msgstr "Número máximo de entradas a calcular" #: src/CronTask.php:87 msgid "Compute embodied environnemental impact for all assets" -msgstr "" +msgstr "Calcular o impacto ambiental incorporado para todos os ativos" #: src/CronTask.php:211 msgid "No zone to download" -msgstr "" +msgstr "Sem zona para baixar" #: src/NetworkEquipmentType.php:50 src/MonitorType.php:50 #: src/SearchOptions.php:142 src/ComputerType.php:70 msgid "Power consumption" -msgstr "" +msgstr "Consumo de energia" #: src/Impact/Embodied/AbstractEmbodiedImpact.php:83 #: src/Impact/Usage/AbstractUsageImpact.php:83 msgid "grams of carbon dioxyde equivalent" -msgstr "" +msgstr "gramas de dióxido de carbono equivalente" #: src/Impact/Embodied/AbstractEmbodiedImpact.php:85 #: src/Impact/Usage/AbstractUsageImpact.php:85 msgid "grams of antimony equivalent" -msgstr "" +msgstr "gramas de antimônio equivalente" #: src/Impact/Embodied/AbstractEmbodiedImpact.php:87 #: src/Impact/Usage/AbstractUsageImpact.php:87 msgid "joules" -msgstr "" +msgstr "joules" #: src/Impact/History/AbstractAsset.php:364 msgid "Error while calculating impact" -msgstr "" +msgstr "Erro ao calcular impacto" #: src/Impact/History/AbstractAsset.php:372 msgid "Nothing to calculate" -msgstr "" +msgstr "Nada a calcular" #: src/Impact/History/AbstractAsset.php:378 #, php-format msgid "%d entries calculated" -msgstr "" +msgstr "%d entradas calculadas" #: src/CarbonIntensitySource.php:45 msgid "Carbon intensity source" msgid_plural "Carbon intensity sources" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Origem de intensidade de carbono" +msgstr[1] "Origem de intensidade de carbono" +msgstr[2] "Origens de intensidade de carbono" #: src/Report.php:50 msgid "Carbon report" msgid_plural "Carbon reports" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Relatório do Carbon" +msgstr[1] "Relatório do Carbon" +msgstr[2] "Relatórios do Carbon" #: src/Report.php:102 #, php-format @@ -526,6 +543,8 @@ msgid "" "Demo mode enabled. The data below are not representative of the assets in " "the database. %sDisable demo mode%s" msgstr "" +"Modo de demonstração ativado. Os dados abaixo não representam os ativos no " +"banco de dados. %sDesativar modo de demonstração%s" #: src/CarbonEmission.php:48 msgid "Carbon Emission" @@ -536,34 +555,34 @@ msgstr[2] "Emissões de carbono" #: src/CarbonEmission.php:119 msgid "Energy" -msgstr "" +msgstr "Energia" #: src/CarbonEmission.php:127 msgid "Emission" -msgstr "" +msgstr "Emissão" #: src/CarbonEmission.php:135 msgid "Energy quality" -msgstr "" +msgstr "Qualidade de energia" #: src/CarbonEmission.php:143 msgid "Emission quality" -msgstr "" +msgstr "Qulidade de emissão" #: src/CarbonEmission.php:150 src/UsageImpact.php:149 #: src/EmbodiedImpact.php:120 msgid "Date of evaluation" -msgstr "" +msgstr "Data de avaliação" #: src/CarbonEmission.php:157 src/UsageImpact.php:156 #: src/EmbodiedImpact.php:127 msgid "Engine" -msgstr "" +msgstr "Engine" #: src/CarbonEmission.php:164 src/UsageImpact.php:163 #: src/EmbodiedImpact.php:134 msgid "Engine version" -msgstr "" +msgstr "Versão do Engine" #: src/Command/CreateFakeCarbonIntensityCommand.php:67 #: src/Command/CollectCarbonIntensityCommand.php:68 @@ -576,24 +595,24 @@ msgstr "Criando nome de zona de dados" #: src/Command/CreateFakeCarbonIntensityCommand.php:89 msgid "Creating fake data..." -msgstr "" +msgstr "Criando dados fictícios…" #: src/Command/ExportDashboardCommand.php:69 msgid "Updating the report dashboard description" -msgstr "" +msgstr "Atualizando a descrição do painel de relatórios" #: src/Command/ExportDashboardCommand.php:74 msgid "Dashboard not found" -msgstr "" +msgstr "Painel não encontrado" #: src/Command/ExportDashboardCommand.php:100 #, php-format msgid "Dashboard description saved to %s" -msgstr "" +msgstr "Descrição do painel salva em %s" #: src/Command/CollectCarbonIntensityCommand.php:85 msgid "Zone not found" -msgstr "" +msgstr "Zona não encontrada" #: src/Command/CollectCarbonIntensityCommand.php:91 msgid "Reading eco2mix data..." @@ -605,11 +624,11 @@ msgstr "Criando um teste de inventário" #: src/Config.php:130 msgid "Invalid Boavizta API URL" -msgstr "" +msgstr "URL de API do Boavizta inválida" #: src/Config.php:138 msgid "Connection to Boavizta API established" -msgstr "" +msgstr "Conexão com a API do Boavizta estabelecida" #: src/Zone.php:53 msgid "Carbon intensity zone" @@ -626,30 +645,33 @@ msgstr "Fonte de dados para cálculo histórico" #: src/CarbonIntensitySource_Zone.php:169 #: src/CarbonIntensitySource_Zone.php:264 msgid "Download enabled" -msgstr "Habilitar download" +msgstr "Habilitado download" #: src/UsageInfo.php:59 msgid "Usage informations" -msgstr "" +msgstr "Informações de uso" #: src/UsageInfo.php:214 src/Dashboard/Widget.php:848 #, php-format msgid "" "Evaluates the carbon emission in CO₂ equivalent. %s More information %s" msgstr "" +"Avalia a emissão de carbono em equivalente de CO₂. %s Mais informações %s" #: src/UsageInfo.php:222 src/Dashboard/Widget.php:884 #: src/Dashboard/Widget.php:921 #, php-format msgid "" -"Evaluates the consumption of non renewable resources in Antimony equivalent." -" %s More information %s" +"Evaluates the consumption of non renewable resources in Antimony " +"equivalent. %s More information %s" msgstr "" +"Evaluates the consumption of non renewable resources in Antimony " +"equivalent. %s More information %s" #: src/UsageInfo.php:234 src/Dashboard/Widget.php:1102 #, php-format msgid "Evaluates the primary energy consumed. %s More information %s" -msgstr "" +msgstr "Avalia a energia primária consumida. %s Mais informações %s" #: src/ComputerUsageProfile.php:52 msgid "Computer usage profile" @@ -660,19 +682,19 @@ msgstr[2] "Perfis de uso do computador" #: src/ComputerUsageProfile.php:94 msgid "Start time is invalid" -msgstr "" +msgstr "O horário de início é inválido" #: src/ComputerUsageProfile.php:99 msgid "Stop time is invalid" -msgstr "" +msgstr "O horário de fim é inválido" #: src/Dashboard/Widget.php:57 src/Dashboard/Grid.php:317 msgid "Environmental impact information video" -msgstr "" +msgstr "Vídeo informativo sobre o impacto ambiental" #: src/Dashboard/Widget.php:64 msgid "Methodology information" -msgstr "" +msgstr "Informações sobre a metodologia" #: src/Dashboard/Widget.php:73 msgid "Total Carbon Emission" @@ -685,31 +707,31 @@ msgstr "Emissão de carbono mensalmente" #: src/Dashboard/Widget.php:87 src/Dashboard/Widget.php:599 #: src/Dashboard/Grid.php:281 msgid "Biggest monthly averaged carbon emission per model" -msgstr "" +msgstr "Maior média mensal de emissões de carbono por modelo" #: src/Dashboard/Widget.php:95 msgid "Carbon Emission Per month" -msgstr "" +msgstr "Emissão de carbono por mês" #: src/Dashboard/Widget.php:125 msgid "Embodied consumed primary energy" -msgstr "" +msgstr "Energia primária consumida incorporada" #: src/Dashboard/Widget.php:137 msgid "Unhandled Computers" -msgstr "Computadores não utilizados" +msgstr "Computadores não controlados" #: src/Dashboard/Widget.php:148 msgid "Unhandled Monitors" -msgstr "" +msgstr "Monitores não controlados" #: src/Dashboard/Widget.php:159 msgid "Unhandled Network equipments" -msgstr "" +msgstr "Equipamentos de rede não controlados" #: src/Dashboard/Widget.php:170 msgid "Radar chart" -msgstr "" +msgstr "Gráfico de radar" #: src/Dashboard/Widget.php:496 src/Dashboard/Provider.php:918 msgid "Consumed energy and carbon emission per month" @@ -733,6 +755,8 @@ msgid "" "Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " "months. %s More information %s" msgstr "" +"Avalia a emissão de carbono em equivalente de CO₂ durante os últimos 2 " +"meses. %s Mais informações %s" #: src/Dashboard/Widget.php:807 #, php-format @@ -740,14 +764,16 @@ msgid "" "Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " "elapsed months. %s More information %s" msgstr "" +"Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " +"elapsed months. %s More information %s" #: src/Dashboard/Widget.php:1092 msgid "Total embodied primary energy" -msgstr "" +msgstr "Energia primária incorporada total" #: src/Dashboard/Widget.php:1161 msgid "Handled percentage" -msgstr "" +msgstr "Porcentagem tratada" #: src/Dashboard/DemoProvider.php:49 src/Dashboard/DemoProvider.php:125 #: src/Dashboard/DemoProvider.php:226 src/Dashboard/DemoProvider.php:415 @@ -760,38 +786,38 @@ msgstr "CO₂eq" #: src/Dashboard/DemoProvider.php:83 src/Dashboard/DemoProvider.php:101 #: src/Dashboard/Provider.php:792 src/Dashboard/Provider.php:826 msgid "Sbeq" -msgstr "" +msgstr "Sbeq" #: src/Dashboard/DemoProvider.php:113 msgid "Usage carbon emission per month" -msgstr "" +msgstr "Emissão de carbono por utilização por mês" #: src/Dashboard/DemoProvider.php:279 src/Dashboard/Provider.php:430 #, php-format msgid "plugin carbon - handled %s" -msgstr "" +msgstr "plugin carbon - tratados %s" #: src/Dashboard/DemoProvider.php:280 src/Dashboard/Provider.php:431 #, php-format msgid "plugin carbon - unhandled %s" -msgstr "" +msgstr "plugin carbon - não tratados %s" #: src/Dashboard/DemoProvider.php:311 msgid "plugin carbon - handled assets ratio" -msgstr "" +msgstr "plugin carbono - proporção de ativos gerenciados" #: src/Dashboard/DemoProvider.php:334 src/Dashboard/Provider.php:398 msgid "Handled" -msgstr "" +msgstr "Gerenciados" #: src/Dashboard/DemoProvider.php:339 src/Dashboard/Provider.php:403 msgid "Unhandled" -msgstr "" +msgstr "Não gerenciados" #: src/Dashboard/DemoProvider.php:362 src/Dashboard/DemoProvider.php:411 #: src/Dashboard/Provider.php:548 msgid "plugin carbon - Usage carbon emission" -msgstr "" +msgstr "plugin carbon - Emissão de uso de carbono" #: src/Dashboard/Dashboard.php:69 msgid "Carbon dioxyde intensity" @@ -799,55 +825,55 @@ msgstr "Intensidade de dióxido de carbono" #: src/Dashboard/Grid.php:73 src/Dashboard/Provider.php:375 msgid "Handled assets ratio" -msgstr "" +msgstr "Proporção de ativos gerenciados" #: src/Dashboard/Grid.php:82 msgid "Handled assets count" -msgstr "" +msgstr "Contagem de ativos gerenciados" #: src/Dashboard/Grid.php:145 #, php-format msgid "Handled %s" -msgstr "" +msgstr "Gerenciados %s" #: src/Dashboard/Grid.php:156 #, php-format msgid "Unhandled %s" -msgstr "" +msgstr "Não gerenciados %s" #: src/Dashboard/Grid.php:172 msgid "Usage power consumption" -msgstr "" +msgstr "Consumo de energia devido ao uso" #: src/Dashboard/Grid.php:178 msgid "Usage carbon emission" -msgstr "" +msgstr "Emissão de carbono devido ao uso" #: src/Dashboard/Grid.php:192 src/Dashboard/Grid.php:295 #: src/Dashboard/Provider.php:893 msgid "Embodied global warming potential" -msgstr "" +msgstr "Potencial de aquecimento global incorporado" #: src/Dashboard/Grid.php:198 src/Dashboard/Grid.php:307 msgid "Embodied primary energy consumed" -msgstr "" +msgstr "Energia primária incorporada consumida" #: src/Dashboard/Grid.php:212 src/UsageImpact.php:105 msgid "Global warming potential" -msgstr "" +msgstr "Potencial de aquecimento global" #: src/Dashboard/Grid.php:218 src/UsageImpact.php:119 msgid "Abiotic depletion potential" -msgstr "" +msgstr "Potencial de depleção abiótica" #: src/Dashboard/Grid.php:245 #, php-format msgid "Unhandled %s ratio" -msgstr "" +msgstr "Proporção %s não tratada" #: src/Dashboard/Grid.php:257 msgid "Usage carbon emission year to date" -msgstr "" +msgstr "Emissões de carbono do uso no acumulado do ano" #: src/Dashboard/Grid.php:263 msgid "Monthly carbon emission" @@ -855,11 +881,11 @@ msgstr "Emissão mensal de carbono" #: src/Dashboard/Grid.php:272 msgid "Usage global warming potential chart" -msgstr "" +msgstr "Gráfico de potencial de aquecimento global de uso" #: src/Dashboard/Grid.php:322 msgid "Environmental impact methodology_information" -msgstr "" +msgstr "Informações sobre a metodologia de impacto ambiental" #: src/Dashboard/Provider.php:171 src/Dashboard/Provider.php:1010 #: src/Toolbox.php:201 @@ -918,31 +944,31 @@ msgstr "Yt" #: src/Dashboard/Provider.php:330 msgid "handled assets ratio" -msgstr "" +msgstr "índice de ativos tratados" #: src/Dashboard/Provider.php:479 msgid "plugin carbon - Total usage power consumption" -msgstr "" +msgstr "plugin carbon - Consumo total de energia" #: src/Dashboard/Provider.php:718 msgid "Total embodied global warming potential" -msgstr "" +msgstr "Potencial total de aquecimento global incorporado" #: src/Dashboard/Provider.php:846 msgid "Total abiotic depletion potential" -msgstr "" +msgstr "Potencial total de depleção abiótica" #: src/Dashboard/Provider.php:865 msgid "Total usage abiotic depletion potential" -msgstr "" +msgstr "Potencial total de depleção abiótica" #: src/Dashboard/Provider.php:877 msgid "Total global warming potential" -msgstr "" +msgstr "Potencial total de aquecimento global" #: src/Dashboard/Provider.php:896 msgid "Total usage global warming potential" -msgstr "" +msgstr "Potencial de aquecimento global do uso total" #: src/Dashboard/Provider.php:1029 src/Toolbox.php:287 msgid "KWh" @@ -1014,31 +1040,31 @@ msgstr "YW" #: src/Toolbox.php:286 msgid "Wh" -msgstr "" +msgstr "Wh" #: src/SearchOptions.php:196 src/SearchOptions.php:273 #: src/SearchOptions.php:346 msgid "Is historizable" -msgstr "" +msgstr "É historizável" #: src/UsageImpact.php:50 msgid "Usage impact" msgid_plural "Usage impacts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Impacto de uso" +msgstr[1] "Impacto do uso" +msgstr[2] "Impactos do uso" #: src/UsageImpact.php:112 msgid "Global warming potential quality" -msgstr "" +msgstr "Qualidade do potencial de aquecimento global" #: src/UsageImpact.php:127 msgid "Abiotic depletion potential quality" -msgstr "" +msgstr "Qualidade do potencial de depleção abiótica" #: src/UsageImpact.php:134 src/UsageImpact.php:142 msgid "Primary energy quality" -msgstr "" +msgstr "Qualidade da energia primária" #: src/CarbonIntensity.php:66 msgid "Carbon intensity" @@ -1054,55 +1080,55 @@ msgstr "Intensidade" #: src/EmbodiedImpact.php:90 msgid "Global Warming Potential" -msgstr "" +msgstr "Potencial de Aquecimento Global" #: src/EmbodiedImpact.php:100 msgid "Abiotic Depletion Potential" -msgstr "" +msgstr "Potencial de Depleção Abiótica" #: src/EmbodiedImpact.php:110 msgid "Primary energy" -msgstr "" +msgstr "Energia primária" #: src/ComputerType.php:56 msgid "Unspecified" -msgstr "" +msgstr "Não especificado" #: src/ComputerType.php:58 msgid "Server" -msgstr "" +msgstr "Servidor" #: src/ComputerType.php:59 msgid "Laptop" -msgstr "" +msgstr "Laptop" #: src/ComputerType.php:60 msgid "Tablet" -msgstr "" +msgstr "Tablet" #: src/ComputerType.php:61 msgid "Smartphone" -msgstr "" +msgstr "Smartphone" #: src/CarbonIntensitySource_Zone.php:70 msgid "Source name" -msgstr "" +msgstr "Nome da fonte" #: src/CarbonIntensitySource_Zone.php:78 msgid "Zone name" -msgstr "" +msgstr "Nome da zona" #: src/CarbonIntensitySource_Zone.php:94 msgid "Code" -msgstr "" +msgstr "Código" #: src/CarbonIntensitySource_Zone.php:148 msgid "Not downloadable" -msgstr "" +msgstr "Não é possível fazer o download" #: src/CarbonIntensitySource_Zone.php:148 msgid "This is a fallback source, there is no real-time data available" -msgstr "" +msgstr "Esta é uma fonte alternativa; não há dados em tempo real disponíveis" #: src/CarbonIntensitySource_Zone.php:170 msgid "Source for historical" From d7cc7cbb653e37a558dbc7afa229dcd340434bdb Mon Sep 17 00:00:00 2001 From: btry <14139801+btry@users.noreply.github.com> Date: Tue, 14 Apr 2026 02:52:00 +0000 Subject: [PATCH 03/13] Update locales --- locales/carbon.pot | 1420 +++++++++++++++---------------- locales/en_GB.mo | Bin 26255 -> 26257 bytes locales/en_GB.po | 1860 ++++++++++++++++++++--------------------- locales/es_MX.mo | Bin 28762 -> 28751 bytes locales/es_MX.po | 1992 ++++++++++++++++++++++---------------------- locales/tr_TR.mo | Bin 27277 -> 27110 bytes locales/tr_TR.po | 1860 ++++++++++++++++++++--------------------- 7 files changed, 3570 insertions(+), 3562 deletions(-) diff --git a/locales/carbon.pot b/locales/carbon.pot index 14504384..91a2a7ef 100644 --- a/locales/carbon.pot +++ b/locales/carbon.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-04-07 02:43+0000\n" +"POT-Creation-Date: 2026-04-14 02:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,6 +18,91 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 +#: src/ComputerUsageProfile.php:169 +msgid "Start time" +msgstr "" + +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 +msgid "Stop time" +msgstr "" + +#: templates/computerusageprofile.html.twig +msgid "Days of week where the computer usually runs" +msgstr "" + +#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 +#: src/Impact/Usage/Engine.php:48 +msgid "Boavizta" +msgstr "" + +#: templates/location.html.twig src/SearchOptions.php:138 src/Location.php:182 +msgid "Boavizta zone" +msgstr "" + +#: templates/location.html.twig src/CarbonIntensity.php:65 +msgid "Carbon intensity" +msgstr "" + +#: templates/usageinfo.html.twig +msgid "Asset usage" +msgstr "" + +#: templates/usageinfo.html.twig +msgid "Usage profile" +msgid_plural "Usage profiles" +msgstr[0] "" +msgstr[1] "" + +#: templates/usageinfo.html.twig +msgid "lifespan (in months)" +msgstr "" + +#: templates/usageinfo.html.twig +msgid "planned lifespan (in months)" +msgstr "" + +#: templates/quick-report.html.twig front/report.php:55 +msgid "GLPI Carbon" +msgstr "" + +#: templates/components/form/source_zone_selector.html.twig +#: src/AbstractModel.php:186 +msgid "Source" +msgstr "" + +#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 +msgid "Carbon intensity zone" +msgid_plural "Carbon intensity zones" +msgstr[0] "" +msgstr[1] "" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "No zone available" +msgstr "" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "Please run the automatic action to downlaod data from this source." +msgstr "" + +#: templates/environmentalimpact-item.html.twig +msgid "Usage" +msgstr "" + +#: templates/environmentalimpact-item.html.twig +msgid "Reset data" +msgstr "" + +#: templates/environmentalimpact-item.html.twig +msgid "Calculate data" +msgstr "" + +#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 +msgid "Embodied impact" +msgid_plural "Embodied impacts" +msgstr[0] "" +msgstr[1] "" + #: templates/history/status-item.html.twig msgid "Historization status" msgstr "" @@ -105,82 +190,114 @@ msgstr "" msgid "Legend" msgstr "" -#: templates/networkequipmenttype.html.twig +#: templates/monitortype.html.twig msgid "" -"This power value is used as default when the power of a network equipment " -"model is unknown" +"This power value is used as default when the power of a monitor model is " +"unknown" msgstr "" -#: templates/networkequipmenttype.html.twig templates/computertype.html.twig -#: templates/monitortype.html.twig +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig msgid "Power" msgid_plural "Powers" msgstr[0] "" msgstr[1] "" -#: templates/networkequipmenttype.html.twig templates/computertype.html.twig -#: templates/monitortype.html.twig +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig msgid "Do not evaluate" msgstr "" -#: templates/components/form/source_zone_selector.html.twig -#: src/AbstractModel.php:186 -msgid "Source" +#: templates/config.html.twig +msgid "Impact engine" msgstr "" -#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 -msgid "Carbon intensity zone" -msgid_plural "Carbon intensity zones" -msgstr[0] "" -msgstr[1] "" - -#: templates/quick-report.html.twig front/report.php:55 -msgid "GLPI Carbon" +#: templates/config.html.twig +msgid "Usage carbon emissions are always calculated internally" msgstr "" -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 -#: src/ComputerUsageProfile.php:169 -msgid "Start time" +#: templates/computertype.html.twig +msgid "" +"This power value is used as default when the power of a computer model is " +"unknown" msgstr "" -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 -msgid "Stop time" +#: templates/computertype.html.twig src/SearchOptions.php:303 +#: src/ComputerType.php:78 +msgid "Category" msgstr "" -#: templates/computerusageprofile.html.twig -msgid "Days of week where the computer usually runs" +#: templates/dashboard/information-block.html.twig +msgid "Information" msgstr "" -#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 -#: src/Impact/Usage/Engine.php:48 -msgid "Boavizta" +#: templates/dashboard/information-block.html.twig +msgid "" +"Our data is sourced from reliable sources and is meticulously calculated " +"using industry-standard methodologies. We utilize accurate measurement tools " +"and algorithms to ensure the precision and reliability of our environmental " +"metrics." msgstr "" -#: templates/location.html.twig src/Location.php:182 src/SearchOptions.php:138 -msgid "Boavizta zone" +#: templates/dashboard/information-block.html.twig +msgid "" +"As we move towards a greener future, businesses will soon be required to " +"report energy usage and carbon emissions. By 2025, many areas will enforce " +"these regulations. Adopting these practices now ensures compliance and helps " +"combat climate change." msgstr "" -#: templates/location.html.twig src/CarbonIntensity.php:66 -msgid "Carbon intensity" +#: templates/dashboard/information-block.html.twig +msgid "Did you know ?" msgstr "" -#: templates/computertype.html.twig +#: templates/dashboard/information-block.html.twig msgid "" -"This power value is used as default when the power of a computer model is " -"unknown" +"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " +"about 20 meters." msgstr "" -#: templates/computertype.html.twig src/ComputerType.php:78 -#: src/SearchOptions.php:303 -msgid "Category" +#: templates/dashboard/unhandled-monitors-card.html.twig +#: templates/dashboard/unhandled-computers-card.html.twig +#: templates/dashboard/unhandled-network-equipments-card.html.twig +msgid "Warning" msgstr "" -#: templates/pages/CarbonIntensitySource/tab_zone.html.twig -msgid "No zone available" +#: templates/dashboard/unhandled-monitors-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s monitors." msgstr "" -#: templates/pages/CarbonIntensitySource/tab_zone.html.twig -msgid "Please run the automatic action to downlaod data from this source." +#: templates/dashboard/usage-carbon-emission-last-year.html.twig +msgid "Yearly Usage Carbon Emission" +msgstr "" + +#: templates/dashboard/monthly-carbon-emission.html.twig +msgid "Monthly usage carbon emission" +msgstr "" + +#: templates/dashboard/monthly-carbon-emission.html.twig +#, php-format +msgid "Compared to %s" +msgstr "" + +#: templates/dashboard/unhandled-computers-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s computers." +msgstr "" + +#: templates/dashboard/unhandled-network-equipments-card.html.twig +#, php-format +msgid "" +"It represents %s percent of your parc that contains %s network equipments." +msgstr "" + +#: templates/dashboard/information-video-card.html.twig +msgid "Want to know more ?" +msgstr "" + +#: templates/dashboard/information-video-card.html.twig +msgid "Here is a video about the impact of numeric on the enviromnent." msgstr "" #: templates/abstractmodel.html.twig @@ -201,538 +318,473 @@ msgstr "" msgid "Data source" msgstr "" -#: templates/monitortype.html.twig +#: templates/networkequipmenttype.html.twig msgid "" -"This power value is used as default when the power of a monitor model is " -"unknown" +"This power value is used as default when the power of a network equipment " +"model is unknown" msgstr "" -#: templates/usageinfo.html.twig -msgid "Asset usage" +#: src/Command/CollectCarbonIntensityCommand.php:70 +msgid "Read carbon dioxyde intensity from external sources" msgstr "" -#: templates/usageinfo.html.twig -msgid "Usage profile" -msgid_plural "Usage profiles" -msgstr[0] "" -msgstr[1] "" +#: src/Command/CollectCarbonIntensityCommand.php:84 +msgid "Source:" +msgstr "" -#: templates/usageinfo.html.twig -msgid "lifespan (in months)" +#: src/Command/CollectCarbonIntensityCommand.php:95 +msgid "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" msgstr "" -#: templates/usageinfo.html.twig -msgid "planned lifespan (in months)" +#: src/Command/CollectCarbonIntensityCommand.php:99 +msgid "Geocoding is not enabled. Cannot resolve an address into a zone" msgstr "" -#: templates/environmentalimpact-item.html.twig -msgid "Usage" +#: src/Command/CollectCarbonIntensityCommand.php:104 +msgid "Address:" msgstr "" -#: templates/environmentalimpact-item.html.twig -msgid "Reset data" +#: src/Command/CollectCarbonIntensityCommand.php:107 +msgid "Zone:" msgstr "" -#: templates/environmentalimpact-item.html.twig -msgid "Calculate data" +#: src/Command/CollectCarbonIntensityCommand.php:123 +#: src/Command/CreateFakeCarbonIntensityCommand.php:67 +msgid "Creating data source name" msgstr "" -#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 -msgid "Embodied impact" -msgid_plural "Embodied impacts" -msgstr[0] "" -msgstr[1] "" +#: src/Command/CollectCarbonIntensityCommand.php:130 +msgid "This source does not exist" +msgstr "" -#: templates/config.html.twig -msgid "Impact engine" +#: src/Command/CollectCarbonIntensityCommand.php:149 +msgid "The zone is not handled by the data source" msgstr "" -#: templates/config.html.twig -msgid "Usage carbon emissions are always calculated internally" +#: src/Command/CollectCarbonIntensityCommand.php:155 +msgid "Reading data..." msgstr "" -#: templates/dashboard/information-video-card.html.twig -msgid "Want to know more ?" +#: src/Command/CreateFakeCarbonIntensityCommand.php:78 +msgid "Creating data zone name" msgstr "" -#: templates/dashboard/information-video-card.html.twig -msgid "Here is a video about the impact of numeric on the enviromnent." +#: src/Command/CreateFakeCarbonIntensityCommand.php:89 +msgid "Creating fake data..." msgstr "" -#: templates/dashboard/usage-carbon-emission-last-year.html.twig -msgid "Yearly Usage Carbon Emission" +#: src/Command/ExportDashboardCommand.php:68 +msgid "Updating the report dashboard description" msgstr "" -#: templates/dashboard/unhandled-monitors-card.html.twig -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#: templates/dashboard/unhandled-computers-card.html.twig -msgid "Warning" +#: src/Command/ExportDashboardCommand.php:73 +msgid "Dashboard not found" msgstr "" -#: templates/dashboard/unhandled-monitors-card.html.twig +#: src/Command/ExportDashboardCommand.php:99 #, php-format -msgid "It represents %s percent of your parc that contains %s monitors." +msgid "Dashboard description saved to %s" msgstr "" -#: templates/dashboard/monthly-carbon-emission.html.twig -msgid "Monthly usage carbon emission" -msgstr "" - -#: templates/dashboard/monthly-carbon-emission.html.twig -#, php-format -msgid "Compared to %s" -msgstr "" - -#: templates/dashboard/information-block.html.twig -msgid "Information" -msgstr "" - -#: templates/dashboard/information-block.html.twig -msgid "" -"Our data is sourced from reliable sources and is meticulously calculated " -"using industry-standard methodologies. We utilize accurate measurement tools " -"and algorithms to ensure the precision and reliability of our environmental " -"metrics." -msgstr "" - -#: templates/dashboard/information-block.html.twig -msgid "" -"As we move towards a greener future, businesses will soon be required to " -"report energy usage and carbon emissions. By 2025, many areas will enforce " -"these regulations. Adopting these practices now ensures compliance and helps " -"combat climate change." +#: src/Command/CreateTestInventoryCommand.php:145 +msgid "Creating test inventory" msgstr "" -#: templates/dashboard/information-block.html.twig -msgid "Did you know ?" +#: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 +#: src/ComputerType.php:70 src/MonitorType.php:50 +msgid "Power consumption" msgstr "" -#: templates/dashboard/information-block.html.twig -msgid "" -"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " -"about 20 meters." +#: src/UsageInfo.php:63 +msgid "Usage informations" msgstr "" -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#, php-format -msgid "" -"It represents %s percent of your parc that contains %s network equipments." +#: src/UsageInfo.php:95 src/AbstractModel.php:54 src/Location.php:73 +#: src/AbstractType.php:55 src/Profile.php:45 +msgid "Environmental impact" msgstr "" -#: templates/dashboard/unhandled-computers-card.html.twig +#: src/UsageInfo.php:243 #, php-format -msgid "It represents %s percent of your parc that contains %s computers." -msgstr "" - -#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 -#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 -msgid "Missing arguments in request." +msgid "%s More information %s" msgstr "" -#: front/embodiedimpact.form.php:68 front/embodiedimpact.form.php:77 -#: front/usageimpact.form.php:90 -msgid "Reset denied." +#: src/DataSource/Lca/Boaviztapi/Config.php:100 +msgid "Invalid Boavizta API URL" msgstr "" -#: front/embodiedimpact.form.php:82 front/usageimpact.form.php:95 -msgid "Reset failed." +#: src/DataSource/Lca/Boaviztapi/Config.php:108 +msgid "Connection to Boavizta API established" msgstr "" -#: front/embodiedimpact.form.php:92 front/usageimpact.form.php:80 -#: front/usageimpact.form.php:106 front/usageimpact.form.php:114 -msgid "Bad arguments." +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:56 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:53 +msgid "Resource diagnosis" msgstr "" -#: front/embodiedimpact.form.php:101 front/usageimpact.form.php:131 -msgid "Unable to find calculation engine for this asset." +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:71 +msgid "Collect carbon intensities from RTE" msgstr "" -#: front/usageimpact.form.php:122 -msgid "Missing data prevents historization of this asset." +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:89 +msgid "Download carbon emissions from RTE" msgstr "" -#: front/usageimpact.form.php:125 -msgid "Update of global warming potential failed." +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:90 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:87 +#: src/CronTask.php:107 +msgid "Maximum number of entries to download" msgstr "" -#: front/usageimpact.form.php:136 -msgid "Update of usage impact failed." +#: src/DataSource/CarbonIntensity/AbstractCronTask.php:103 +#: src/Source_Zone.php:537 +msgid "End" msgstr "" -#: hook.php:97 -msgid "" -"Please check the logs for more details. Fill an issue in the repository of " -"the plugin." +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:68 +msgid "Collect carbon intensities from Electricity Maps" msgstr "" -#: hook.php:301 -msgid "Associate to an usage profile" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:86 +msgid "Download carbon emissions from Electricity Maps" msgstr "" -#: hook.php:302 hook.php:307 -msgid "Delete all calculated environmental impacts" +#: src/AbstractImpact.php:125 src/CarbonEmission.php:151 +msgid "Date of evaluation" msgstr "" -#: hook.php:311 hook.php:316 hook.php:320 -msgid "Update type power consumption" +#: src/AbstractImpact.php:132 src/CarbonEmission.php:158 +msgid "Engine" msgstr "" -#: hook.php:312 -msgid "Update category" +#: src/AbstractImpact.php:139 src/CarbonEmission.php:165 +msgid "Engine version" msgstr "" -#: hook.php:324 -msgid "Update zone for Boavizta engine" +#: src/DataTracking/AbstractTracked.php:77 +msgid "Impact not evaluated" msgstr "" -#: hook.php:325 -msgid "Update carbon intensity source and zone" +#: src/DataTracking/AbstractTracked.php:78 +msgid "Unspecified quality" msgstr "" -#: install/install/create_automatic_actions.php:52 -msgid "Find the Alpha3 country code (ISO3166) of locations" +#: src/DataTracking/AbstractTracked.php:79 +msgid "Manual data" msgstr "" -#: install/install/create_automatic_actions.php:64 -msgid "Compute carbon emissions of computers" +#: src/DataTracking/AbstractTracked.php:80 +msgid "Estimated data" msgstr "" -#: install/install/create_automatic_actions.php:100 -msgid "Compute embodied impact of assets" +#: src/DataTracking/AbstractTracked.php:81 +msgid "Downsampled data" msgstr "" -#: install/install/create_uasge_profiles.php:41 -msgid "Always on" +#: src/DataTracking/AbstractTracked.php:82 +msgid "Measured data" msgstr "" -#: install/install/create_uasge_profiles.php:52 -msgid "Office hours" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 +#: src/Impact/Usage/AbstractUsageImpact.php:91 +msgid "grams of carbon dioxyde equivalent" msgstr "" -#: src/ComputerType.php:56 -msgid "Unspecified" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 +#: src/Impact/Usage/AbstractUsageImpact.php:93 +msgid "grams of antimony equivalent" msgstr "" -#: src/ComputerType.php:58 -msgid "Server" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 +#: src/Impact/Usage/AbstractUsageImpact.php:95 +msgid "joules" msgstr "" -#: src/ComputerType.php:59 -msgid "Laptop" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 +msgid "Connection to Boavizta failed." msgstr "" -#: src/ComputerType.php:60 -msgid "Tablet" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 +msgid "Embodied impact evaluation falied." msgstr "" -#: src/ComputerType.php:61 -msgid "Smartphone" +#: src/Impact/History/AbstractAsset.php:370 +msgid "Error while calculating impact" msgstr "" -#: src/ComputerType.php:70 src/MonitorType.php:50 -#: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 -msgid "Power consumption" +#: src/Impact/History/AbstractAsset.php:378 +msgid "Nothing to calculate" msgstr "" -#: src/Zone.php:127 src/Source_Zone.php:88 src/Source_Zone.php:171 -#: src/Source_Zone.php:268 -msgid "Download enabled" +#: src/Impact/History/AbstractAsset.php:384 +#, php-format +msgid "%d entries calculated" msgstr "" -#: src/AbstractImpact.php:125 src/CarbonEmission.php:151 -msgid "Date of evaluation" +#: src/Impact/Type.php:159 +msgid "Embodied Global warming potential" msgstr "" -#: src/AbstractImpact.php:132 src/CarbonEmission.php:158 -msgid "Engine" +#: src/Impact/Type.php:160 +msgid "Embodied Abiotic depletion potential" msgstr "" -#: src/AbstractImpact.php:139 src/CarbonEmission.php:165 -msgid "Engine version" +#: src/Impact/Type.php:161 +msgid "Embodied Primary energy consumed" msgstr "" -#: src/CarbonIntensity.php:88 -msgid "Emission date" +#: src/Impact/Type.php:162 +msgid "Embodied Climate change - Contribution of biogenic emissions" msgstr "" -#: src/CarbonIntensity.php:115 -msgid "Intensity" +#: src/Impact/Type.php:163 +msgid "Embodied Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/Location.php:73 src/AbstractModel.php:54 src/Profile.php:45 -#: src/UsageInfo.php:95 src/AbstractType.php:55 -msgid "Environmental impact" +#: src/Impact/Type.php:164 +msgid "" +"Embodied Climate change - Contribution of emissions from land use change" msgstr "" -#: src/Location.php:189 -msgid "Carbon intensity source and zone" +#: src/Impact/Type.php:165 +msgid "Embodied Emissions of radionizing substances" msgstr "" -#: src/AbstractModel.php:62 src/AbstractType.php:63 src/Dashboard/Grid.php:58 -#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 -msgid "Carbon" +#: src/Impact/Type.php:166 +msgid "Embodied Land use" msgstr "" -#: src/AbstractModel.php:197 -msgid "Quality" +#: src/Impact/Type.php:167 +msgid "Embodied Depletion of the ozone layer" msgstr "" -#: src/UsageInfo.php:63 -msgid "Usage informations" +#: src/Impact/Type.php:168 +msgid "Embodied Fine particle emissions" msgstr "" -#: src/UsageInfo.php:243 -#, php-format -msgid "%s More information %s" +#: src/Impact/Type.php:169 +msgid "Embodied Photochemical ozone formation" msgstr "" -#: src/ComputerUsageProfile.php:51 -msgid "Computer usage profile" -msgid_plural "Computer usage profiles" -msgstr[0] "" -msgstr[1] "" - -#: src/ComputerUsageProfile.php:117 -msgid "Start time is invalid" +#: src/Impact/Type.php:170 +msgid "Embodied Use of water resources" msgstr "" -#: src/ComputerUsageProfile.php:122 -msgid "Stop time is invalid" +#: src/Impact/Type.php:171 +msgid "Embodied Material input per unit of service" msgstr "" -#: src/Toolbox.php:243 src/Dashboard/Provider.php:195 -#: src/Dashboard/Provider.php:318 src/Dashboard/Provider.php:1199 -msgid "g" +#: src/Impact/Type.php:172 +msgid "Embodied Use of mineral and metal resources" msgstr "" -#: src/Toolbox.php:244 src/Dashboard/Provider.php:196 -#: src/Dashboard/Provider.php:319 src/Dashboard/Provider.php:1200 -msgid "Kg" +#: src/Impact/Type.php:173 +msgid "Embodied Use of fossil resources (including nuclear)" msgstr "" -#: src/Toolbox.php:245 src/Dashboard/Provider.php:197 -#: src/Dashboard/Provider.php:320 src/Dashboard/Provider.php:1201 -msgid "t" +#: src/Impact/Type.php:174 +msgid "Embodied Acidification" msgstr "" -#: src/Toolbox.php:246 src/Dashboard/Provider.php:198 -#: src/Dashboard/Provider.php:321 src/Dashboard/Provider.php:1202 -msgid "Kt" +#: src/Impact/Type.php:175 +msgid "Embodied Freshwater ecotoxicity" msgstr "" -#: src/Toolbox.php:247 src/Dashboard/Provider.php:199 -#: src/Dashboard/Provider.php:322 src/Dashboard/Provider.php:1203 -msgid "Mt" +#: src/Impact/Type.php:178 +msgid "Embodied Eutrophication of freshwater" msgstr "" -#: src/Toolbox.php:248 src/Dashboard/Provider.php:200 -#: src/Dashboard/Provider.php:323 src/Dashboard/Provider.php:1204 -msgid "Gt" +#: src/Impact/Type.php:179 +msgid "Embodied Eutrophication of marine waters" msgstr "" -#: src/Toolbox.php:249 src/Dashboard/Provider.php:201 -#: src/Dashboard/Provider.php:324 src/Dashboard/Provider.php:1205 -msgid "Tt" +#: src/Impact/Type.php:180 +msgid "Embodied Terrestrial eutrophication" msgstr "" -#: src/Toolbox.php:250 src/Dashboard/Provider.php:202 -#: src/Dashboard/Provider.php:325 src/Dashboard/Provider.php:1206 -msgid "Pt" +#: src/Impact/Type.php:195 +msgid "Usage Global warming potential" msgstr "" -#: src/Toolbox.php:251 src/Dashboard/Provider.php:203 -#: src/Dashboard/Provider.php:326 src/Dashboard/Provider.php:1207 -msgid "Et" +#: src/Impact/Type.php:196 +msgid "Usage Abiotic depletion potential" msgstr "" -#: src/Toolbox.php:252 src/Dashboard/Provider.php:204 -#: src/Dashboard/Provider.php:327 src/Dashboard/Provider.php:1208 -msgid "Zt" +#: src/Impact/Type.php:197 +msgid "Usage Primary energy consumed" msgstr "" -#: src/Toolbox.php:253 src/Dashboard/Provider.php:205 -#: src/Dashboard/Provider.php:328 src/Dashboard/Provider.php:1209 -msgid "Yt" +#: src/Impact/Type.php:198 +msgid "Usage Climate change - Contribution of biogenic emissions" msgstr "" -#: src/Toolbox.php:280 -msgid "W" +#: src/Impact/Type.php:199 +msgid "Usage Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/Toolbox.php:281 -msgid "KW" +#: src/Impact/Type.php:200 +msgid "Usage Climate change - Contribution of emissions from land use change" msgstr "" -#: src/Toolbox.php:282 -msgid "MW" +#: src/Impact/Type.php:201 +msgid "Usage Emissions of radionizing substances" msgstr "" -#: src/Toolbox.php:283 -msgid "GW" +#: src/Impact/Type.php:202 +msgid "Usage Land use" msgstr "" -#: src/Toolbox.php:284 -msgid "TW" +#: src/Impact/Type.php:203 +msgid "Usage Depletion of the ozone layer" msgstr "" -#: src/Toolbox.php:285 -msgid "PW" +#: src/Impact/Type.php:204 +msgid "Usage Fine particle emissions" msgstr "" -#: src/Toolbox.php:286 -msgid "EW" +#: src/Impact/Type.php:205 +msgid "Usage Photochemical ozone formation" msgstr "" -#: src/Toolbox.php:287 -msgid "ZW" +#: src/Impact/Type.php:206 +msgid "Usage Use of water resources" msgstr "" -#: src/Toolbox.php:288 -msgid "YW" +#: src/Impact/Type.php:207 +msgid "Usage Material input per unit of service" msgstr "" -#: src/Toolbox.php:315 -msgid "Wh" +#: src/Impact/Type.php:208 +msgid "Usage Use of mineral and metal resources" msgstr "" -#: src/Toolbox.php:316 src/Dashboard/Provider.php:1218 -msgid "KWh" +#: src/Impact/Type.php:209 +msgid "Usage Use of fossil resources (including nuclear)" msgstr "" -#: src/Toolbox.php:317 src/Dashboard/Provider.php:1219 -msgid "MWh" +#: src/Impact/Type.php:210 +msgid "Usage Acidification" msgstr "" -#: src/Toolbox.php:318 src/Dashboard/Provider.php:1220 -msgid "GWh" +#: src/Impact/Type.php:211 +msgid "Usage Freshwater ecotoxicity" msgstr "" -#: src/Toolbox.php:319 src/Dashboard/Provider.php:1221 -msgid "TWh" +#: src/Impact/Type.php:214 src/Impact/Type.php:342 +msgid "Usage Eutrophication of freshwater" msgstr "" -#: src/Toolbox.php:320 src/Dashboard/Provider.php:1222 -msgid "PWh" +#: src/Impact/Type.php:215 src/Impact/Type.php:343 +msgid "Usage Eutrophication of marine waters" msgstr "" -#: src/Toolbox.php:321 src/Dashboard/Provider.php:1223 -msgid "EWh" +#: src/Impact/Type.php:216 src/Impact/Type.php:344 +msgid "Usage Terrestrial eutrophication" msgstr "" -#: src/Toolbox.php:322 src/Dashboard/Provider.php:1224 -msgid "ZWh" +#: src/Impact/Type.php:231 +msgid "Total Global warming potential" msgstr "" -#: src/Toolbox.php:323 src/Dashboard/Provider.php:1225 -msgid "YWh" +#: src/Impact/Type.php:232 +msgid "Total Abiotic depletion potential" msgstr "" -#: src/Toolbox.php:373 src/Toolbox.php:378 -#, php-format -msgid "%1$s %2$s" +#: src/Impact/Type.php:233 +msgid "Total Primary energy consumed" msgstr "" -#: src/UsageImpact.php:39 -msgid "Usage impact" -msgid_plural "Usage impacts" -msgstr[0] "" -msgstr[1] "" - -#: src/DataTracking/AbstractTracked.php:77 -msgid "Impact not evaluated" +#: src/Impact/Type.php:234 +msgid "Total Climate change - Contribution of biogenic emissions" msgstr "" -#: src/DataTracking/AbstractTracked.php:78 -msgid "Unspecified quality" +#: src/Impact/Type.php:235 +msgid "Total Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/DataTracking/AbstractTracked.php:79 -msgid "Manual data" +#: src/Impact/Type.php:236 +msgid "Total Climate change - Contribution of emissions from land use change" msgstr "" -#: src/DataTracking/AbstractTracked.php:80 -msgid "Estimated data" +#: src/Impact/Type.php:237 +msgid "Total Emissions of radionizing substances" msgstr "" -#: src/DataTracking/AbstractTracked.php:81 -msgid "Downsampled data" +#: src/Impact/Type.php:238 +msgid "Total Land use" msgstr "" -#: src/DataTracking/AbstractTracked.php:82 -msgid "Measured data" +#: src/Impact/Type.php:239 +msgid "Total Depletion of the ozone layer" msgstr "" -#: src/Source.php:46 -msgid "Carbon intensity source" -msgid_plural "Carbon intensity sources" -msgstr[0] "" -msgstr[1] "" - -#: src/CronTask.php:100 -msgid "Find the Alpha3 country code (ISO3166)" +#: src/Impact/Type.php:240 +msgid "Total Fine particle emissions" msgstr "" -#: src/CronTask.php:101 -msgid "Maximum number of locations to solve" +#: src/Impact/Type.php:241 +msgid "Total Photochemical ozone formation" msgstr "" -#: src/CronTask.php:106 -msgid "Download carbon emissions from Watttime" +#: src/Impact/Type.php:242 +msgid "Total Use of water resources" msgstr "" -#: src/CronTask.php:107 -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:89 -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:105 -msgid "Maximum number of entries to download" +#: src/Impact/Type.php:243 +msgid "Total Material input per unit of service" msgstr "" -#: src/CronTask.php:112 -msgid "Compute usage environmental impact for all assets" +#: src/Impact/Type.php:244 +msgid "Total Use of mineral and metal resources" msgstr "" -#: src/CronTask.php:113 src/CronTask.php:118 -msgid "Maximum number of entries to calculate" +#: src/Impact/Type.php:245 +msgid "Total Use of fossil resources (including nuclear)" msgstr "" -#: src/CronTask.php:117 -msgid "Compute embodied environmental impact for all assets" +#: src/Impact/Type.php:246 +msgid "Total Acidification" msgstr "" -#: src/CronTask.php:278 -msgid "No zone to download" +#: src/Impact/Type.php:247 +msgid "Total Freshwater ecotoxicity" msgstr "" -#: src/Source_Zone.php:72 -msgid "Source name" +#: src/Impact/Type.php:250 +msgid "Total Eutrophication of freshwater" msgstr "" -#: src/Source_Zone.php:80 -msgid "Zone name" +#: src/Impact/Type.php:251 +msgid "Total Eutrophication of marine waters" msgstr "" -#: src/Source_Zone.php:96 -msgid "Code" +#: src/Impact/Type.php:252 +msgid "Total Terrestrial eutrophication" msgstr "" -#: src/Source_Zone.php:150 -msgid "Not downloadable" +#: src/Impact/Type.php:323 +msgid "Carbon emission in CO₂ equivalent" msgstr "" -#: src/Source_Zone.php:150 -msgid "This is a fallback source, there is no real-time data available" +#: src/Impact/Type.php:324 +msgid "Consumption of non renewable resources in Antimony equivalent." msgstr "" -#: src/Source_Zone.php:172 -msgid "Source for historical" +#: src/Impact/Type.php:325 +msgid "Primary energy consumed." msgstr "" -#: src/Source_Zone.php:411 -msgid "Enable / Disable" +#: src/Impact/Type.php:332 +msgid "Incidence of disease" msgstr "" -#: src/Source_Zone.php:538 -msgid "End" -msgstr "" +#: src/Source.php:46 +msgid "Carbon intensity source" +msgid_plural "Carbon intensity sources" +msgstr[0] "" +msgstr[1] "" #: src/SearchOptions.php:184 src/SearchOptions.php:316 #: src/SearchOptions.php:329 src/SearchOptions.php:342 @@ -744,159 +796,132 @@ msgstr "" msgid "Is historizable" msgstr "" -#: src/Report.php:49 -msgid "Carbon report" -msgid_plural "Carbon reports" -msgstr[0] "" -msgstr[1] "" - -#: src/Report.php:101 -#, php-format -msgid "" -"Demo mode enabled. The data below are not representative of the assets in " -"the database. %sDisable demo mode%s" -msgstr "" - -#: src/Dashboard/Grid.php:63 src/Dashboard/Provider.php:473 -msgid "Handled assets ratio" -msgstr "" - -#: src/Dashboard/Grid.php:72 -msgid "Handled assets count" -msgstr "" - -#: src/Dashboard/Grid.php:135 -#, php-format -msgid "Handled %s" -msgstr "" - -#: src/Dashboard/Grid.php:146 -#, php-format -msgid "Unhandled %s" -msgstr "" - -#: src/Dashboard/Grid.php:232 -#, php-format -msgid "Unhandled %s ratio" -msgstr "" - -#: src/Dashboard/Grid.php:244 -msgid "Usage carbon emission year to date" +#: src/ComputerType.php:56 +msgid "Unspecified" msgstr "" -#: src/Dashboard/Grid.php:250 -msgid "Monthly carbon emission" +#: src/ComputerType.php:58 +msgid "Server" msgstr "" -#: src/Dashboard/Grid.php:259 -msgid "Usage global warming potential chart" +#: src/ComputerType.php:59 +msgid "Laptop" msgstr "" -#: src/Dashboard/Grid.php:268 src/Dashboard/Widget.php:85 -#: src/Dashboard/Widget.php:604 -msgid "Biggest monthly averaged carbon emission per model" +#: src/ComputerType.php:60 +msgid "Tablet" msgstr "" -#: src/Dashboard/Grid.php:310 src/Dashboard/Widget.php:55 -msgid "Environmental impact information video" +#: src/ComputerType.php:61 +msgid "Smartphone" msgstr "" -#: src/Dashboard/Grid.php:315 -msgid "Environmental impact methodology information" -msgstr "" +#: src/UsageImpact.php:39 +msgid "Usage impact" +msgid_plural "Usage impacts" +msgstr[0] "" +msgstr[1] "" -#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 -#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 -#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 -#: src/Dashboard/DemoProvider.php:189 -msgid "CO₂eq" +#: src/AbstractModel.php:62 src/Dashboard/Grid.php:58 +#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 +#: src/AbstractType.php:63 +msgid "Carbon" msgstr "" -#: src/Dashboard/Provider.php:427 -msgid "handled assets ratio" +#: src/AbstractModel.php:197 +msgid "Quality" msgstr "" -#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 -msgid "Handled" +#: src/Report.php:49 +msgid "Carbon report" +msgid_plural "Carbon reports" +msgstr[0] "" +msgstr[1] "" + +#: src/Report.php:101 +#, php-format +msgid "" +"Demo mode enabled. The data below are not representative of the assets in " +"the database. %sDisable demo mode%s" msgstr "" -#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 -msgid "Unhandled" +#: src/ComputerUsageProfile.php:51 +msgid "Computer usage profile" +msgid_plural "Computer usage profiles" +msgstr[0] "" +msgstr[1] "" + +#: src/ComputerUsageProfile.php:117 +msgid "Start time is invalid" msgstr "" -#: src/Dashboard/Provider.php:507 -msgid "Ignored" +#: src/ComputerUsageProfile.php:122 +msgid "Stop time is invalid" msgstr "" -#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 -#, php-format -msgid "plugin carbon - handled %s" +#: src/Source_Zone.php:72 +msgid "Source name" msgstr "" -#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 -#, php-format -msgid "plugin carbon - unhandled %s" +#: src/Source_Zone.php:80 +msgid "Zone name" msgstr "" -#: src/Dashboard/Provider.php:584 -#, php-format -msgid "plugin carbon - ignored %s" +#: src/Source_Zone.php:88 src/Source_Zone.php:171 src/Source_Zone.php:268 +#: src/Zone.php:127 +msgid "Download enabled" msgstr "" -#: src/Dashboard/Provider.php:632 -msgid "plugin carbon - Total usage power consumption" +#: src/Source_Zone.php:96 +msgid "Code" msgstr "" -#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 -msgid "plugin carbon - Usage carbon emission" +#: src/Source_Zone.php:150 +msgid "Not downloadable" msgstr "" -#: src/Dashboard/Provider.php:733 src/Dashboard/Widget.php:100 -msgid "Usage abiotic depletion potential" +#: src/Source_Zone.php:150 +msgid "This is a fallback source, there is no real-time data available" msgstr "" -#: src/Dashboard/Provider.php:747 -msgid "Sbeq" +#: src/Source_Zone.php:172 +msgid "Source for historical" msgstr "" -#: src/Dashboard/Provider.php:1035 -msgid "Total abiotic depletion potential" +#: src/Source_Zone.php:411 +msgid "Enable / Disable" msgstr "" -#: src/Dashboard/Provider.php:1051 -msgid "Embodied abiotic depletion potential" +#: src/CronTask.php:100 +msgid "Find the Alpha3 country code (ISO3166)" msgstr "" -#: src/Dashboard/Provider.php:1054 -msgid "Total usage abiotic depletion potential" +#: src/CronTask.php:101 +msgid "Maximum number of locations to solve" msgstr "" -#: src/Dashboard/Provider.php:1066 -msgid "Total global warming potential" +#: src/CronTask.php:106 +msgid "Download carbon emissions from Watttime" msgstr "" -#: src/Dashboard/Provider.php:1082 -msgid "Embodied global warming potential" +#: src/CronTask.php:112 +msgid "Compute usage environmental impact for all assets" msgstr "" -#: src/Dashboard/Provider.php:1085 -msgid "Total usage global warming potential" +#: src/CronTask.php:113 src/CronTask.php:118 +msgid "Maximum number of entries to calculate" msgstr "" -#: src/Dashboard/Provider.php:1107 src/Dashboard/Widget.php:501 -msgid "Consumed energy and carbon emission per month" +#: src/CronTask.php:117 +msgid "Compute embodied environmental impact for all assets" msgstr "" -#: src/Dashboard/Provider.php:1212 src/Dashboard/Widget.php:546 -#: src/Dashboard/Widget.php:561 src/Dashboard/DemoProvider.php:88 -#: src/Dashboard/DemoProvider.php:189 -msgid "Carbon emission" +#: src/CronTask.php:278 +msgid "No zone to download" msgstr "" -#: src/Dashboard/Provider.php:1228 src/Dashboard/Widget.php:551 -#: src/Dashboard/Widget.php:564 src/Dashboard/DemoProvider.php:106 -#: src/Dashboard/DemoProvider.php:202 -msgid "Consumed energy" +#: src/Dashboard/Widget.php:55 src/Dashboard/Grid.php:310 +msgid "Environmental impact information video" msgstr "" #: src/Dashboard/Widget.php:62 @@ -911,10 +936,19 @@ msgstr "" msgid "Monthly Carbon Emission" msgstr "" +#: src/Dashboard/Widget.php:85 src/Dashboard/Widget.php:604 +#: src/Dashboard/Grid.php:268 +msgid "Biggest monthly averaged carbon emission per model" +msgstr "" + #: src/Dashboard/Widget.php:93 msgid "Carbon Emission Per month" msgstr "" +#: src/Dashboard/Widget.php:100 src/Dashboard/Provider.php:733 +msgid "Usage abiotic depletion potential" +msgstr "" + #: src/Dashboard/Widget.php:130 msgid "Impact criteria" msgstr "" @@ -935,6 +969,22 @@ msgstr "" msgid "Radar chart" msgstr "" +#: src/Dashboard/Widget.php:501 src/Dashboard/Provider.php:1107 +msgid "Consumed energy and carbon emission per month" +msgstr "" + +#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:561 +#: src/Dashboard/Provider.php:1212 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "Carbon emission" +msgstr "" + +#: src/Dashboard/Widget.php:551 src/Dashboard/Widget.php:564 +#: src/Dashboard/Provider.php:1228 src/Dashboard/DemoProvider.php:106 +#: src/Dashboard/DemoProvider.php:202 +msgid "Consumed energy" +msgstr "" + #: src/Dashboard/Widget.php:746 #, php-format msgid "" @@ -964,309 +1014,228 @@ msgstr "" msgid "Handled percentage" msgstr "" -#: src/Dashboard/Dashboard.php:68 -msgid "Carbon dioxyde intensity" -msgstr "" - -#: src/Dashboard/DemoProvider.php:76 -msgid "Usage carbon emission per month" -msgstr "" - -#: src/Dashboard/DemoProvider.php:274 -msgid "plugin carbon - handled assets ratio" -msgstr "" - -#: src/Impact/Type.php:159 -msgid "Embodied Global warming potential" -msgstr "" - -#: src/Impact/Type.php:160 -msgid "Embodied Abiotic depletion potential" -msgstr "" - -#: src/Impact/Type.php:161 -msgid "Embodied Primary energy consumed" -msgstr "" - -#: src/Impact/Type.php:162 -msgid "Embodied Climate change - Contribution of biogenic emissions" -msgstr "" - -#: src/Impact/Type.php:163 -msgid "Embodied Climate change - Contribution of fossil fuel emissions" -msgstr "" - -#: src/Impact/Type.php:164 -msgid "" -"Embodied Climate change - Contribution of emissions from land use change" -msgstr "" - -#: src/Impact/Type.php:165 -msgid "Embodied Emissions of radionizing substances" -msgstr "" - -#: src/Impact/Type.php:166 -msgid "Embodied Land use" -msgstr "" - -#: src/Impact/Type.php:167 -msgid "Embodied Depletion of the ozone layer" -msgstr "" - -#: src/Impact/Type.php:168 -msgid "Embodied Fine particle emissions" -msgstr "" - -#: src/Impact/Type.php:169 -msgid "Embodied Photochemical ozone formation" -msgstr "" - -#: src/Impact/Type.php:170 -msgid "Embodied Use of water resources" -msgstr "" - -#: src/Impact/Type.php:171 -msgid "Embodied Material input per unit of service" -msgstr "" - -#: src/Impact/Type.php:172 -msgid "Embodied Use of mineral and metal resources" -msgstr "" - -#: src/Impact/Type.php:173 -msgid "Embodied Use of fossil resources (including nuclear)" -msgstr "" - -#: src/Impact/Type.php:174 -msgid "Embodied Acidification" -msgstr "" - -#: src/Impact/Type.php:175 -msgid "Embodied Freshwater ecotoxicity" -msgstr "" - -#: src/Impact/Type.php:178 -msgid "Embodied Eutrophication of freshwater" -msgstr "" - -#: src/Impact/Type.php:179 -msgid "Embodied Eutrophication of marine waters" -msgstr "" - -#: src/Impact/Type.php:180 -msgid "Embodied Terrestrial eutrophication" -msgstr "" - -#: src/Impact/Type.php:195 -msgid "Usage Global warming potential" -msgstr "" - -#: src/Impact/Type.php:196 -msgid "Usage Abiotic depletion potential" +#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 +#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 +#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "CO₂eq" msgstr "" -#: src/Impact/Type.php:197 -msgid "Usage Primary energy consumed" +#: src/Dashboard/Provider.php:195 src/Dashboard/Provider.php:318 +#: src/Dashboard/Provider.php:1199 src/Toolbox.php:243 +msgid "g" msgstr "" -#: src/Impact/Type.php:198 -msgid "Usage Climate change - Contribution of biogenic emissions" +#: src/Dashboard/Provider.php:196 src/Dashboard/Provider.php:319 +#: src/Dashboard/Provider.php:1200 src/Toolbox.php:244 +msgid "Kg" msgstr "" -#: src/Impact/Type.php:199 -msgid "Usage Climate change - Contribution of fossil fuel emissions" +#: src/Dashboard/Provider.php:197 src/Dashboard/Provider.php:320 +#: src/Dashboard/Provider.php:1201 src/Toolbox.php:245 +msgid "t" msgstr "" -#: src/Impact/Type.php:200 -msgid "Usage Climate change - Contribution of emissions from land use change" +#: src/Dashboard/Provider.php:198 src/Dashboard/Provider.php:321 +#: src/Dashboard/Provider.php:1202 src/Toolbox.php:246 +msgid "Kt" msgstr "" -#: src/Impact/Type.php:201 -msgid "Usage Emissions of radionizing substances" +#: src/Dashboard/Provider.php:199 src/Dashboard/Provider.php:322 +#: src/Dashboard/Provider.php:1203 src/Toolbox.php:247 +msgid "Mt" msgstr "" -#: src/Impact/Type.php:202 -msgid "Usage Land use" +#: src/Dashboard/Provider.php:200 src/Dashboard/Provider.php:323 +#: src/Dashboard/Provider.php:1204 src/Toolbox.php:248 +msgid "Gt" msgstr "" -#: src/Impact/Type.php:203 -msgid "Usage Depletion of the ozone layer" +#: src/Dashboard/Provider.php:201 src/Dashboard/Provider.php:324 +#: src/Dashboard/Provider.php:1205 src/Toolbox.php:249 +msgid "Tt" msgstr "" -#: src/Impact/Type.php:204 -msgid "Usage Fine particle emissions" +#: src/Dashboard/Provider.php:202 src/Dashboard/Provider.php:325 +#: src/Dashboard/Provider.php:1206 src/Toolbox.php:250 +msgid "Pt" msgstr "" -#: src/Impact/Type.php:205 -msgid "Usage Photochemical ozone formation" +#: src/Dashboard/Provider.php:203 src/Dashboard/Provider.php:326 +#: src/Dashboard/Provider.php:1207 src/Toolbox.php:251 +msgid "Et" msgstr "" -#: src/Impact/Type.php:206 -msgid "Usage Use of water resources" +#: src/Dashboard/Provider.php:204 src/Dashboard/Provider.php:327 +#: src/Dashboard/Provider.php:1208 src/Toolbox.php:252 +msgid "Zt" msgstr "" -#: src/Impact/Type.php:207 -msgid "Usage Material input per unit of service" +#: src/Dashboard/Provider.php:205 src/Dashboard/Provider.php:328 +#: src/Dashboard/Provider.php:1209 src/Toolbox.php:253 +msgid "Yt" msgstr "" -#: src/Impact/Type.php:208 -msgid "Usage Use of mineral and metal resources" +#: src/Dashboard/Provider.php:427 +msgid "handled assets ratio" msgstr "" -#: src/Impact/Type.php:209 -msgid "Usage Use of fossil resources (including nuclear)" +#: src/Dashboard/Provider.php:473 src/Dashboard/Grid.php:63 +msgid "Handled assets ratio" msgstr "" -#: src/Impact/Type.php:210 -msgid "Usage Acidification" +#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 +msgid "Handled" msgstr "" -#: src/Impact/Type.php:211 -msgid "Usage Freshwater ecotoxicity" +#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 +msgid "Unhandled" msgstr "" -#: src/Impact/Type.php:214 src/Impact/Type.php:342 -msgid "Usage Eutrophication of freshwater" +#: src/Dashboard/Provider.php:507 +msgid "Ignored" msgstr "" -#: src/Impact/Type.php:215 src/Impact/Type.php:343 -msgid "Usage Eutrophication of marine waters" +#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 +#, php-format +msgid "plugin carbon - handled %s" msgstr "" -#: src/Impact/Type.php:216 src/Impact/Type.php:344 -msgid "Usage Terrestrial eutrophication" +#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 +#, php-format +msgid "plugin carbon - unhandled %s" msgstr "" -#: src/Impact/Type.php:231 -msgid "Total Global warming potential" +#: src/Dashboard/Provider.php:584 +#, php-format +msgid "plugin carbon - ignored %s" msgstr "" -#: src/Impact/Type.php:232 -msgid "Total Abiotic depletion potential" +#: src/Dashboard/Provider.php:632 +msgid "plugin carbon - Total usage power consumption" msgstr "" -#: src/Impact/Type.php:233 -msgid "Total Primary energy consumed" +#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 +msgid "plugin carbon - Usage carbon emission" msgstr "" -#: src/Impact/Type.php:234 -msgid "Total Climate change - Contribution of biogenic emissions" +#: src/Dashboard/Provider.php:747 +msgid "Sbeq" msgstr "" -#: src/Impact/Type.php:235 -msgid "Total Climate change - Contribution of fossil fuel emissions" +#: src/Dashboard/Provider.php:1035 +msgid "Total abiotic depletion potential" msgstr "" -#: src/Impact/Type.php:236 -msgid "Total Climate change - Contribution of emissions from land use change" +#: src/Dashboard/Provider.php:1051 +msgid "Embodied abiotic depletion potential" msgstr "" -#: src/Impact/Type.php:237 -msgid "Total Emissions of radionizing substances" +#: src/Dashboard/Provider.php:1054 +msgid "Total usage abiotic depletion potential" msgstr "" -#: src/Impact/Type.php:238 -msgid "Total Land use" +#: src/Dashboard/Provider.php:1066 +msgid "Total global warming potential" msgstr "" -#: src/Impact/Type.php:239 -msgid "Total Depletion of the ozone layer" +#: src/Dashboard/Provider.php:1082 +msgid "Embodied global warming potential" msgstr "" -#: src/Impact/Type.php:240 -msgid "Total Fine particle emissions" +#: src/Dashboard/Provider.php:1085 +msgid "Total usage global warming potential" msgstr "" -#: src/Impact/Type.php:241 -msgid "Total Photochemical ozone formation" +#: src/Dashboard/Provider.php:1218 src/Toolbox.php:316 +msgid "KWh" msgstr "" -#: src/Impact/Type.php:242 -msgid "Total Use of water resources" +#: src/Dashboard/Provider.php:1219 src/Toolbox.php:317 +msgid "MWh" msgstr "" -#: src/Impact/Type.php:243 -msgid "Total Material input per unit of service" +#: src/Dashboard/Provider.php:1220 src/Toolbox.php:318 +msgid "GWh" msgstr "" -#: src/Impact/Type.php:244 -msgid "Total Use of mineral and metal resources" +#: src/Dashboard/Provider.php:1221 src/Toolbox.php:319 +msgid "TWh" msgstr "" -#: src/Impact/Type.php:245 -msgid "Total Use of fossil resources (including nuclear)" +#: src/Dashboard/Provider.php:1222 src/Toolbox.php:320 +msgid "PWh" msgstr "" -#: src/Impact/Type.php:246 -msgid "Total Acidification" +#: src/Dashboard/Provider.php:1223 src/Toolbox.php:321 +msgid "EWh" msgstr "" -#: src/Impact/Type.php:247 -msgid "Total Freshwater ecotoxicity" +#: src/Dashboard/Provider.php:1224 src/Toolbox.php:322 +msgid "ZWh" msgstr "" -#: src/Impact/Type.php:250 -msgid "Total Eutrophication of freshwater" +#: src/Dashboard/Provider.php:1225 src/Toolbox.php:323 +msgid "YWh" msgstr "" -#: src/Impact/Type.php:251 -msgid "Total Eutrophication of marine waters" +#: src/Dashboard/Grid.php:72 +msgid "Handled assets count" msgstr "" -#: src/Impact/Type.php:252 -msgid "Total Terrestrial eutrophication" +#: src/Dashboard/Grid.php:135 +#, php-format +msgid "Handled %s" msgstr "" -#: src/Impact/Type.php:323 -msgid "Carbon emission in CO₂ equivalent" +#: src/Dashboard/Grid.php:146 +#, php-format +msgid "Unhandled %s" msgstr "" -#: src/Impact/Type.php:324 -msgid "Consumption of non renewable resources in Antimony equivalent." +#: src/Dashboard/Grid.php:232 +#, php-format +msgid "Unhandled %s ratio" msgstr "" -#: src/Impact/Type.php:325 -msgid "Primary energy consumed." +#: src/Dashboard/Grid.php:244 +msgid "Usage carbon emission year to date" msgstr "" -#: src/Impact/Type.php:332 -msgid "Incidence of disease" +#: src/Dashboard/Grid.php:250 +msgid "Monthly carbon emission" msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 -#: src/Impact/Usage/AbstractUsageImpact.php:91 -msgid "grams of carbon dioxyde equivalent" +#: src/Dashboard/Grid.php:259 +msgid "Usage global warming potential chart" msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 -#: src/Impact/Usage/AbstractUsageImpact.php:93 -msgid "grams of antimony equivalent" +#: src/Dashboard/Grid.php:315 +msgid "Environmental impact methodology information" msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 -#: src/Impact/Usage/AbstractUsageImpact.php:95 -msgid "joules" +#: src/Dashboard/DemoProvider.php:76 +msgid "Usage carbon emission per month" msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 -msgid "Connection to Boavizta failed." +#: src/Dashboard/DemoProvider.php:274 +msgid "plugin carbon - handled assets ratio" msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 -msgid "Embodied impact evaluation falied." +#: src/Dashboard/Dashboard.php:68 +msgid "Carbon dioxyde intensity" msgstr "" -#: src/Impact/History/AbstractAsset.php:370 -msgid "Error while calculating impact" +#: src/Location.php:189 +msgid "Carbon intensity source and zone" msgstr "" -#: src/Impact/History/AbstractAsset.php:378 -msgid "Nothing to calculate" +#: src/CarbonIntensity.php:87 +msgid "Emission date" msgstr "" -#: src/Impact/History/AbstractAsset.php:384 -#, php-format -msgid "%d entries calculated" +#: src/CarbonIntensity.php:114 +msgid "Intensity" msgstr "" #: src/CarbonEmission.php:49 @@ -1291,103 +1260,136 @@ msgstr "" msgid "Emission quality" msgstr "" -#: src/Command/CreateTestInventoryCommand.php:145 -msgid "Creating test inventory" +#: src/Toolbox.php:280 +msgid "W" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:67 -#: src/Command/CollectCarbonIntensityCommand.php:122 -msgid "Creating data source name" +#: src/Toolbox.php:281 +msgid "KW" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:78 -msgid "Creating data zone name" +#: src/Toolbox.php:282 +msgid "MW" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:89 -msgid "Creating fake data..." +#: src/Toolbox.php:283 +msgid "GW" msgstr "" -#: src/Command/ExportDashboardCommand.php:68 -msgid "Updating the report dashboard description" +#: src/Toolbox.php:284 +msgid "TW" msgstr "" -#: src/Command/ExportDashboardCommand.php:73 -msgid "Dashboard not found" +#: src/Toolbox.php:285 +msgid "PW" msgstr "" -#: src/Command/ExportDashboardCommand.php:99 -#, php-format -msgid "Dashboard description saved to %s" +#: src/Toolbox.php:286 +msgid "EW" msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:69 -msgid "Read carbon dioxyde intensity from external sources" +#: src/Toolbox.php:287 +msgid "ZW" msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:83 -msgid "Source:" +#: src/Toolbox.php:288 +msgid "YW" +msgstr "" + +#: src/Toolbox.php:315 +msgid "Wh" +msgstr "" + +#: src/Toolbox.php:373 src/Toolbox.php:378 +#, php-format +msgid "%1$s %2$s" +msgstr "" + +#: setup.php:285 +msgid "Environmental Impact" msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:94 +#: hook.php:97 msgid "" -"The selected source does not enumerates its supported zones. Trying to " -"identify a zone from an address" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:98 -msgid "Geocoding is not enabled. Cannot resolve an address into a zone" +#: hook.php:301 +msgid "Associate to an usage profile" msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:103 -msgid "Address:" +#: hook.php:302 hook.php:307 +msgid "Delete all calculated environmental impacts" msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:106 -msgid "Zone:" +#: hook.php:311 hook.php:316 hook.php:320 +msgid "Update type power consumption" msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:133 -msgid "Source not found" +#: hook.php:312 +msgid "Update category" msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:157 -msgid "Creation of relation between source and zone failed" +#: hook.php:324 +msgid "Update zone for Boavizta engine" msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:163 -msgid "Reading data..." +#: hook.php:325 +msgid "Update carbon intensity source and zone" msgstr "" -#: src/DataSource/Lca/Boaviztapi/Config.php:100 -msgid "Invalid Boavizta API URL" +#: install/install/create_automatic_actions.php:52 +msgid "Find the Alpha3 country code (ISO3166) of locations" msgstr "" -#: src/DataSource/Lca/Boaviztapi/Config.php:108 -msgid "Connection to Boavizta API established" +#: install/install/create_automatic_actions.php:64 +msgid "Compute carbon emissions of computers" msgstr "" -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:55 -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:55 -msgid "Resource diagnosis" +#: install/install/create_automatic_actions.php:76 +msgid "Compute embodied impact of assets" msgstr "" -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:70 -msgid "Collect carbon intensities from Electricity Maps" +#: install/install/create_uasge_profiles.php:41 +msgid "Always on" msgstr "" -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:88 -msgid "Download carbon emissions from Electricity Maps" +#: install/install/create_uasge_profiles.php:52 +msgid "Office hours" msgstr "" -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:86 -msgid "Collect carbon intensities from RTE" +#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 +#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 +msgid "Missing arguments in request." msgstr "" -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:104 -msgid "Download carbon emissions from RTE" +#: front/usageimpact.form.php:80 front/usageimpact.form.php:106 +#: front/usageimpact.form.php:114 front/embodiedimpact.form.php:92 +msgid "Bad arguments." msgstr "" -#: setup.php:285 -msgid "Environmental Impact" +#: front/usageimpact.form.php:90 front/embodiedimpact.form.php:68 +#: front/embodiedimpact.form.php:77 +msgid "Reset denied." +msgstr "" + +#: front/usageimpact.form.php:95 front/embodiedimpact.form.php:82 +msgid "Reset failed." +msgstr "" + +#: front/usageimpact.form.php:122 +msgid "Missing data prevents historization of this asset." +msgstr "" + +#: front/usageimpact.form.php:125 +msgid "Update of global warming potential failed." +msgstr "" + +#: front/usageimpact.form.php:131 front/embodiedimpact.form.php:101 +msgid "Unable to find calculation engine for this asset." +msgstr "" + +#: front/usageimpact.form.php:136 +msgid "Update of usage impact failed." msgstr "" diff --git a/locales/en_GB.mo b/locales/en_GB.mo index fb191de658348f7432ef6c776ac06e3a318886eb..14edcf11dbcbfdc2305e4ddd0e62ac2bb4aedb52 100644 GIT binary patch delta 6475 zcmcK8iC?*^A_9Vd$f7AcfFO$t2#6wXs6mS6mb(cEh#8t8mNa^s$|Z7iiuTN+ zW^`J{RJ1g;NV7%Drf6R@Np0V>Fh`r_^W_{~^B2r{_2Yfcx#ymHwtF9EHooa~=bK*J z@Ah)z9LK5kI8Hcj!XVs^o$vs5!Pl`5eu`-rz)e+{jh*pv48fh)9}i+Yp2gl6K_L`} zS|^}4<$3Xr>-dl;t3p%$q9~=h?S@TZLsBim`wR3dN7dAVlfRF zgEJ1punIK+7nAU*Uaq;}9V)ojIfq#o#Z%O<2-VSz$R+1~REG!9gC~%&we{u?3G^C_ zeNZ#bwT?p{%5%^Ui%~1Lz_k_2ZN*CL%7yjT2IN2IS^j9opJ5CJvaaeN1-)?)&c`9R z6d%D#3}abze=TNW18QsEL*3_|B%_g?LM`!E_Cj)s<8-8)hJl!g8rU%F6x7+ML=EI7 z)ctk#`VqX0@(ENw7g1-#C)KP_IMSc%#F>mU5H+%K7=Y6;8cR?&)}r>X4x?}rj>KI! z0$Xt`=CE&?*)6Dvt+wUct?SW``i*U}|M!y7%pSH4cA{?Fjh%2WY6%Y`+wFXZItyLc z5AAghYCvPKC(gwIc$2N)W_`t8KaM&Zm(ZK%JHdU;j6+c~?2dXJ`=A<*Kn-vb24Mw$ zgVm^+Ufs_OxCEzBF2{V_k81x1s^1{qO|57Q>b@LwwKutBG}C<4A(?<7cnikkT^NYF zF&LYy$53bBQ}o3jQA_&^s{KV<_Dkm*KsgxooCMT!`=_)2YM5giL>Dh`R3w)K>Upm@SLLnUo7qTiJjtp7UA;>#z5@m5K_CX5&2Q zVk$n0Q}HMkqKDc;{@+3l_R$^rhQ? zTI!?7o8tUn%h3bP42Ga)RDwOwMSTZ0VQ1Wjyt&R1Ou%!f_E9-zLfOb1ooT3c>#(h# z9b`1pW2g>)!rmA%$ei*V)E3M^&14>`qiWPv{T+44p204-AJy(HTmAy|pjOo0hckU$ zk42v2I+4sQZj8ld)XJR04%jo-3_JnV;TYtSGZVG6^{AEo2(_}2 zL(KhyQRVrV$n%{wWb~k?Q6oKq8o-yRrS+p1Em;I=X@{ZOm!b!6My*H#s$Dboz)Pr= z?Kad*UoM*{&$4^j8*ox{PV3^~0VG?SF$*9*R549zutp%vJV=U^v z3ATQbb+Ns^6t!hFs17Ld{VI~%p6m8e6w z3^k**n1;Ks3O`4Ud_tiaz+B`r?^L1A%){6ln@}tDmGuI8Qx3es9M)j$#q*soGTQTj zn1|z$woV;#PMl^;#PG3ZK!Z``3QWfJ=)v6>i|?aWuoc5FdYqX+Dkf2$h8|pr33~rG zlhM*2#56pQ>L{VeoZ?Za4lB`vb*Py>h5mR9b+|r2&G@vn6@4go9B;wjh`%(8NUTJ>Li?9>rn^E_z zM-6Nvy2HuT+Y8Ouk@EW(h{sU_``Y>+)Y%B1XaNFSNNSucwumRa-rv){$zLU+&(oy9sYYzHR z&b5w24Ww`~>#v4$snC)XqXtxlTEgp4hwVP(v^ob+GigB$=qK!n{!`2cCka(Q)4CLO z{dNq+t*GbiK}~p{OD2rWVGPF)Pz}FDjqnl%Vc1mjZ@w5*2LV@^0SDnU%AuH#3sCK! zMD_a|>O=NA>b@4#)|^I7)cu}JCYcMUCGSgb@i-K928vNLUSwT?T_~?bUwja?w2z?L zZ?WYa7(sat>Osd)5B?a{uEkt;o$twLDSW1z83&_A8jsqNMAQRPP`~f#s2N>@dcduy zm3jcR)Z0*7_6E+xv#6~snqj__)u`9G0W0+WA0p$SB9+#uI1X85XF2LabQE>UyUsHI z=9`L~S7!_IpL3o+-Es14({UAsQ{IRg;Nv(L_u?2lhx*VB<`*uW=R3>Eq~HUpz(c4R zoI%YfXs-EDNkx4J3Q*sH3e*>{1`}{I_QZqe!Ot-Ry{4QRV+VWJbYF0J_ z^_=OYt{G_!6uw?5;mYZ*o9vBHfn~=sMqF8^u`~pXVHi9uc-Sj*!swF)2c@AD>b8!Y zl0GcI5&Ma1Vp{#muCZ;YrT&V)-YlE}E`cK?V zMA6q^LTQSj?Z{uSdEh6G2BqY*@ZS*sARZx<))NPaF0^?AZz0;#9y0xikBH9*eRV=< zHv*MzC;C$!-&W$+1jpHYJG1nOdydkVLVJQWiNe*N0g0NQRO_W;q0yf^U*`GLg4It4!ydanj?LFsNnFXq_#?8sPmF1a6w zbmBfjX{Mp=uii|(WtZE!M0y!R{tqIL=tJC3DE*lj(w5`U({4HWA|i|YAX_iC{4ei1 zYbk^gCy4|a>Wx&IL0nD5QTHJF67A^;GQEixhC_-N$X!5UK(Q{qLhu)YaJfqxd56H(~|xJP}5ld+1DLPwg!+(&lf#!$d4`9g)F3 z9f-5!+tWfa(bRo{lWb+Z^(w1yb%c}#+6Qkn#kRkn^EZh4p%_7ot`F-L>pn$J>5!rA zcc>4oE>ZrG$R_-VETV;|B9;=Fv`HmSkoUoZ*q*wRNvEy}lW{gqAe7=2)Gfw;>8p}U z=33$$p|pdjY|HWg%HR@W4)HM&%Z=TL>EwSQjuD|m5TO)KWDqwK?-5GB6FZ4Jh(;oc zc#TLTp4B^6K;{Uc^eItDTu%h@pi_7+p_D|tP28mdDW`E^_b@-N(e*ouyEax8Yzb-X zHNDC^x!hB`WO2D?VYO%Rl4YLClEr1$mX~=-S9q3HmV3%dmX&y_m(*N8zr1n7%;R45 tO|yI>OxaVmq}<$7e&fRGWsOZ)wVnJkvOMVnaAwP1=>`A* delta 6463 zcmcK7iC?(mA_9VftSZ7Ih%7FE;0CzjZkn14?zn(ExL}K^w=AZur)vFI1nRo zfpbNQ@k}5U)l}5O2e1`x#yG6SB76@AV05Z6J#Yf1;Z{_K4!QD0%%B|0LwwjBlW{WA z7vo_RK86}VO)HPyk@=Jg9|rSOo?+549|xlv-iCV6vq)3(2I_&A(TCAIgg%;l48buN zfu*PsS2#VaM|m9v;|5h|>bAIwr(O9ujG_L3^IhaWbAca?IEwj9!tSX1Ct@JZ#c5cH z3-E26iG7(C-M<61F7 zVixN)2Wu-lQFSgZG;pGU{nB)QJ0_MmQ9897|D~s0!7=l^Bkj z@d9o~-M_xQ?eIn%O?eac#!IO7d7Mc-w=&{e{cro*gX)5LDZ*WFlM0IXS;F%#!~Kude4{~=0B3mG%D1AD%1^2Q4Lq2X5=B% z$hV_9yce}JwWt>z#;$lAHL{>wdw&bmeR-%Q8Gu^4avY1RbD4jw>3J%cMH9h->0B3L zIZi|$9>I}#4hLWX)1zH}2M))>I1FR+jTwjKsOKESX#4^-pr243jp)dc#Qq)`ec{%i zruaB=V$8R$9N)?IxBxYRQcT359@q!DWJ*v|yB;;OAE0J7 zw$R?+1y!DkX*&Na$>>GTpn7@?)q(S0=3!;er?cop@4knY9=U>a(K>8Mjuh+2|jXFt?w7>K%W zh^wFNoae63M=e>`3NZ59VJzYTnBpk2H*hpahkVw}4Ae+BpkDkO2H_r5`&!gM8o&{Z$1@mwfBR`~g?f)yLPncw3F;i*hnm_g zsLi+?HL^X}2EW947(Kv_;C56;)?qe2irPCTF&)20%~Z1lifu6KI{To}s1DwUnzAkE!+ofcp1}|d7-BbB7;3}`&P-&arT~MnJ8JFw zs?7V%NLMi)b=+nE(8y=$0QWPsEZ+8h0_5spROKhs@*3Y$~jhYj#UY>b~{ z1YSlx?~h^3zcMkyZO<|>lyXPZ@#}%Qu>_-VCTdqN!Ctr?d*VCDvYXfuc4VcfflYJe z8P3_LC79=|8o~Ul1Gl;c>rgjVqo(RX)D%9BX?Ps97cQYj5_^N~P%5^dT!E`1v<;I`9n8jX?1L9@IO+jKqilzJ;AqOl*c&&a z+JAz2?giA0{)W0Qmd08dFM*6k>cc#2i<40aF$moXFsD`o68rcri z{jZ_!`vkQlS5QkASz`aq*9o#&{9|86om*XOVt8;rH*y8@YIvljIsszdGacH`{7 z`Q{-T+0-KcnaJ_>Idf1;xCYgs$FM8zM!w?aGU@}@nZIx;yx&xj$;1a$fd^4Nu0xF= zY@+?6l7Tw^eNo45I_k@}2vcz@w!j1E!!wwRf1ujsPO{G#hZ^ur=;?u*$mm=BGHQ2! zhMMyFlkG@CP!CE(EzMBW<|;w$fil#HZ+7L?m`M2%)SB;g*I!4y=VR0!3o2#)v&h7h z+L84@jbIWc<5JYjY{mL`6xH)LP%r!rHMN0L?9>)v5#<%AnXEH*JV0KSD9;VI;pm~$A2-#Ra0J<8vs?)%Br$CTN2@u=&~P)nAC z^)UnWoc5^qc)4WsfIL)BhoO$oBGfUv+m+X%+HJ#jco5U@B5EYD9GzB}gDQ_gwV#iA z(Hdt2g#^kW_?#wNFT0i=s{TDXwcV{0i-{h@W5i-YDU)07#dnFu>gY|2Ajc`sh)^4A!zPu$Ctz9gm+4Y;9*_#62)xDu6?6LX1{Dv*M?*4t*y9=ww{ z?8>7smAJu`JJ5C=`OQQt@`1$byvi`0vji>Y@UrTf&+7g=xr4>YxKgUU>-A&|&5c%Z0x_Ytwe|gW`O(BZ- zoJggiPNdRUVlvT^x-A$)TuV=rNhb~vrNlQx4)G5{=@fB4F@@Mg^d!y@N-tVW0neSm zKQ`jyylt+kkg8BZ|9{knx*J{n2|P$VK`bF&C8B8a0Nz5}MPw26s8b3d8oB&A@*F?2 zlu&9%v?1oGV3TK7kx6$qsP1v%8D&UEiA1hNAlu2GuJXH+C?n1jEx4YC&G3EH2VNS3Mo+YRBcZ(^&wzT>U zFA|-IV4@>&mZ%^W5_z=AB0eRrbj0HSZN_g7*A8I@PQdH^SM0|*g}O@0r?m`)Wabgy zy9UqWESG;0=Mxi&kBDS$Y)X`n|A9D3L=xeIlK#|mAZ{n#Bb0t8YKYau3q(9|oJb>f z>+J)`yg?{^ObjFz5n;Tj4j&|xS`%**)hdv>)XZuY6`WVRuxv`ztjY>sWw~!**<72S zT2^&aSy_c|QRU)=)5?5PDyI9ER92Mv%BRelTQ}t?Q^OE nt5fpgYu1iE5>RtE|K^4vIh}nu9SZXEYKnWF{r|iqwc&pOaL3}n diff --git a/locales/en_GB.po b/locales/en_GB.po index bfcc8a5e..8bdfcc41 100644 --- a/locales/en_GB.po +++ b/locales/en_GB.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-04-07 02:43+0000\n" -"PO-Revision-Date: 2026-04-07 02:43+0000\n" +"POT-Creation-Date: 2026-04-14 02:51+0000\n" +"PO-Revision-Date: 2026-04-14 02:51+0000\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: en_GB\n" @@ -17,6 +17,91 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 +#: src/ComputerUsageProfile.php:169 +msgid "Start time" +msgstr "Start time" + +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 +msgid "Stop time" +msgstr "Stop time" + +#: templates/computerusageprofile.html.twig +msgid "Days of week where the computer usually runs" +msgstr "Days of week where the computer usually runs" + +#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 +#: src/Impact/Usage/Engine.php:48 +msgid "Boavizta" +msgstr "Boavizta" + +#: templates/location.html.twig src/SearchOptions.php:138 src/Location.php:182 +msgid "Boavizta zone" +msgstr "Boavizta zone" + +#: templates/location.html.twig src/CarbonIntensity.php:65 +msgid "Carbon intensity" +msgstr "Carbon intensity" + +#: templates/usageinfo.html.twig +msgid "Asset usage" +msgstr "Asset usage" + +#: templates/usageinfo.html.twig +msgid "Usage profile" +msgid_plural "Usage profiles" +msgstr[0] "Usage profile" +msgstr[1] "Usage profiles" + +#: templates/usageinfo.html.twig +msgid "lifespan (in months)" +msgstr "lifespan (in months)" + +#: templates/usageinfo.html.twig +msgid "planned lifespan (in months)" +msgstr "planned lifespan (in months)" + +#: templates/quick-report.html.twig front/report.php:55 +msgid "GLPI Carbon" +msgstr "GLPI Carbon" + +#: templates/components/form/source_zone_selector.html.twig +#: src/AbstractModel.php:186 +msgid "Source" +msgstr "Source" + +#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 +msgid "Carbon intensity zone" +msgid_plural "Carbon intensity zones" +msgstr[0] "Carbon intensity zone" +msgstr[1] "Carbon intensity zones" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "No zone available" +msgstr "No zone available" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "Please run the automatic action to downlaod data from this source." +msgstr "Please run the automatic action to downlaod data from this source." + +#: templates/environmentalimpact-item.html.twig +msgid "Usage" +msgstr "Usage" + +#: templates/environmentalimpact-item.html.twig +msgid "Reset data" +msgstr "Reset data" + +#: templates/environmentalimpact-item.html.twig +msgid "Calculate data" +msgstr "Calculate data" + +#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 +msgid "Embodied impact" +msgid_plural "Embodied impacts" +msgstr[0] "Embodied impact" +msgstr[1] "Embodied impacts" + #: templates/history/status-item.html.twig msgid "Historization status" msgstr "Historization status" @@ -107,66 +192,33 @@ msgstr "The asset has an inventory entry date" msgid "Legend" msgstr "Legend" -#: templates/networkequipmenttype.html.twig +#: templates/monitortype.html.twig msgid "" -"This power value is used as default when the power of a network equipment " -"model is unknown" +"This power value is used as default when the power of a monitor model is " +"unknown" msgstr "" -"This power value is used as default when the power of a network equipment " -"model is unknown" +"This power value is used as default when the power of a monitor model is " +"unknown" -#: templates/networkequipmenttype.html.twig templates/computertype.html.twig -#: templates/monitortype.html.twig +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig msgid "Power" msgid_plural "Powers" msgstr[0] "Power" msgstr[1] "Powers" -#: templates/networkequipmenttype.html.twig templates/computertype.html.twig -#: templates/monitortype.html.twig +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig msgid "Do not evaluate" msgstr "Do not evaluate" -#: templates/components/form/source_zone_selector.html.twig -#: src/AbstractModel.php:186 -msgid "Source" -msgstr "Source" - -#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 -msgid "Carbon intensity zone" -msgid_plural "Carbon intensity zones" -msgstr[0] "Carbon intensity zone" -msgstr[1] "Carbon intensity zones" - -#: templates/quick-report.html.twig front/report.php:55 -msgid "GLPI Carbon" -msgstr "GLPI Carbon" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 -#: src/ComputerUsageProfile.php:169 -msgid "Start time" -msgstr "Start time" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 -msgid "Stop time" -msgstr "Stop time" - -#: templates/computerusageprofile.html.twig -msgid "Days of week where the computer usually runs" -msgstr "Days of week where the computer usually runs" - -#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 -#: src/Impact/Usage/Engine.php:48 -msgid "Boavizta" -msgstr "Boavizta" - -#: templates/location.html.twig src/Location.php:182 src/SearchOptions.php:138 -msgid "Boavizta zone" -msgstr "Boavizta zone" +#: templates/config.html.twig +msgid "Impact engine" +msgstr "Impact engine" -#: templates/location.html.twig src/CarbonIntensity.php:66 -msgid "Carbon intensity" -msgstr "Carbon intensity" +#: templates/config.html.twig +msgid "Usage carbon emissions are always calculated internally" +msgstr "Usage carbon emissions are always calculated internally" #: templates/computertype.html.twig msgid "" @@ -176,123 +228,11 @@ msgstr "" "This power value is used as default when the power of a computer model is " "unknown" -#: templates/computertype.html.twig src/ComputerType.php:78 -#: src/SearchOptions.php:303 +#: templates/computertype.html.twig src/SearchOptions.php:303 +#: src/ComputerType.php:78 msgid "Category" msgstr "Category" -#: templates/pages/CarbonIntensitySource/tab_zone.html.twig -msgid "No zone available" -msgstr "No zone available" - -#: templates/pages/CarbonIntensitySource/tab_zone.html.twig -msgid "Please run the automatic action to downlaod data from this source." -msgstr "Please run the automatic action to downlaod data from this source." - -#: templates/abstractmodel.html.twig -msgid "" -"The impacts below shall include the manufacturing, disposal and recycling " -"processes only." -msgstr "" -"The impacts below shall include the manufacturing, disposal and recycling " -"processes only." - -#: templates/abstractmodel.html.twig -msgid "Take care of the expected units before setting an impact." -msgstr "Take care of the expected units before setting an impact." - -#: templates/abstractmodel.html.twig -msgid "Data quality" -msgstr "Data quality" - -#: templates/abstractmodel.html.twig -msgid "Data source" -msgstr "Data source" - -#: templates/monitortype.html.twig -msgid "" -"This power value is used as default when the power of a monitor model is " -"unknown" -msgstr "" -"This power value is used as default when the power of a monitor model is " -"unknown" - -#: templates/usageinfo.html.twig -msgid "Asset usage" -msgstr "Asset usage" - -#: templates/usageinfo.html.twig -msgid "Usage profile" -msgid_plural "Usage profiles" -msgstr[0] "Usage profile" -msgstr[1] "Usage profiles" - -#: templates/usageinfo.html.twig -msgid "lifespan (in months)" -msgstr "lifespan (in months)" - -#: templates/usageinfo.html.twig -msgid "planned lifespan (in months)" -msgstr "planned lifespan (in months)" - -#: templates/environmentalimpact-item.html.twig -msgid "Usage" -msgstr "Usage" - -#: templates/environmentalimpact-item.html.twig -msgid "Reset data" -msgstr "Reset data" - -#: templates/environmentalimpact-item.html.twig -msgid "Calculate data" -msgstr "Calculate data" - -#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 -msgid "Embodied impact" -msgid_plural "Embodied impacts" -msgstr[0] "Embodied impact" -msgstr[1] "Embodied impacts" - -#: templates/config.html.twig -msgid "Impact engine" -msgstr "Impact engine" - -#: templates/config.html.twig -msgid "Usage carbon emissions are always calculated internally" -msgstr "Usage carbon emissions are always calculated internally" - -#: templates/dashboard/information-video-card.html.twig -msgid "Want to know more ?" -msgstr "Want to know more ?" - -#: templates/dashboard/information-video-card.html.twig -msgid "Here is a video about the impact of numeric on the enviromnent." -msgstr "Here is a video about the impact of numeric on the enviromnent." - -#: templates/dashboard/usage-carbon-emission-last-year.html.twig -msgid "Yearly Usage Carbon Emission" -msgstr "Yearly Usage Carbon Emission" - -#: templates/dashboard/unhandled-monitors-card.html.twig -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#: templates/dashboard/unhandled-computers-card.html.twig -msgid "Warning" -msgstr "Warning" - -#: templates/dashboard/unhandled-monitors-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s monitors." -msgstr "It represents %s percent of your parc that contains %s monitors." - -#: templates/dashboard/monthly-carbon-emission.html.twig -msgid "Monthly usage carbon emission" -msgstr "Monthly usage carbon emission" - -#: templates/dashboard/monthly-carbon-emission.html.twig -#, php-format -msgid "Compared to %s" -msgstr "Compared to %s" - #: templates/dashboard/information-block.html.twig msgid "Information" msgstr "Information" @@ -333,134 +273,206 @@ msgstr "" "1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " "about 20 meters." +#: templates/dashboard/unhandled-monitors-card.html.twig +#: templates/dashboard/unhandled-computers-card.html.twig #: templates/dashboard/unhandled-network-equipments-card.html.twig -#, php-format -msgid "" -"It represents %s percent of your parc that contains %s network equipments." -msgstr "" -"It represents %s percent of your parc that contains %s network equipments." +msgid "Warning" +msgstr "Warning" + +#: templates/dashboard/unhandled-monitors-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s monitors." +msgstr "It represents %s percent of your parc that contains %s monitors." + +#: templates/dashboard/usage-carbon-emission-last-year.html.twig +msgid "Yearly Usage Carbon Emission" +msgstr "Yearly Usage Carbon Emission" + +#: templates/dashboard/monthly-carbon-emission.html.twig +msgid "Monthly usage carbon emission" +msgstr "Monthly usage carbon emission" + +#: templates/dashboard/monthly-carbon-emission.html.twig +#, php-format +msgid "Compared to %s" +msgstr "Compared to %s" #: templates/dashboard/unhandled-computers-card.html.twig #, php-format msgid "It represents %s percent of your parc that contains %s computers." msgstr "It represents %s percent of your parc that contains %s computers." -#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 -#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 -msgid "Missing arguments in request." -msgstr "Missing arguments in request." - -#: front/embodiedimpact.form.php:68 front/embodiedimpact.form.php:77 -#: front/usageimpact.form.php:90 -msgid "Reset denied." -msgstr "Reset denied." +#: templates/dashboard/unhandled-network-equipments-card.html.twig +#, php-format +msgid "" +"It represents %s percent of your parc that contains %s network equipments." +msgstr "" +"It represents %s percent of your parc that contains %s network equipments." -#: front/embodiedimpact.form.php:82 front/usageimpact.form.php:95 -msgid "Reset failed." -msgstr "Reset failed." +#: templates/dashboard/information-video-card.html.twig +msgid "Want to know more ?" +msgstr "Want to know more ?" -#: front/embodiedimpact.form.php:92 front/usageimpact.form.php:80 -#: front/usageimpact.form.php:106 front/usageimpact.form.php:114 -msgid "Bad arguments." -msgstr "Bad arguments." +#: templates/dashboard/information-video-card.html.twig +msgid "Here is a video about the impact of numeric on the enviromnent." +msgstr "Here is a video about the impact of numeric on the enviromnent." -#: front/embodiedimpact.form.php:101 front/usageimpact.form.php:131 -msgid "Unable to find calculation engine for this asset." -msgstr "Unable to find calculation engine for this asset." +#: templates/abstractmodel.html.twig +msgid "" +"The impacts below shall include the manufacturing, disposal and recycling " +"processes only." +msgstr "" +"The impacts below shall include the manufacturing, disposal and recycling " +"processes only." -#: front/usageimpact.form.php:122 -msgid "Missing data prevents historization of this asset." -msgstr "Missing data prevents historization of this asset." +#: templates/abstractmodel.html.twig +msgid "Take care of the expected units before setting an impact." +msgstr "Take care of the expected units before setting an impact." -#: front/usageimpact.form.php:125 -msgid "Update of global warming potential failed." -msgstr "Update of global warming potential failed." +#: templates/abstractmodel.html.twig +msgid "Data quality" +msgstr "Data quality" -#: front/usageimpact.form.php:136 -msgid "Update of usage impact failed." -msgstr "Update of usage impact failed." +#: templates/abstractmodel.html.twig +msgid "Data source" +msgstr "Data source" -#: hook.php:97 +#: templates/networkequipmenttype.html.twig msgid "" -"Please check the logs for more details. Fill an issue in the repository of " -"the plugin." +"This power value is used as default when the power of a network equipment " +"model is unknown" msgstr "" -"Please check the logs for more details. Fill an issue in the repository of " -"the plugin." +"This power value is used as default when the power of a network equipment " +"model is unknown" -#: hook.php:301 -msgid "Associate to an usage profile" -msgstr "Associate to an usage profile" +#: src/Command/CollectCarbonIntensityCommand.php:70 +msgid "Read carbon dioxyde intensity from external sources" +msgstr "Read carbon dioxyde intensity from external sources" -#: hook.php:302 hook.php:307 -msgid "Delete all calculated environmental impacts" -msgstr "Delete all calculated environmental impacts" +#: src/Command/CollectCarbonIntensityCommand.php:84 +msgid "Source:" +msgstr "Source:" -#: hook.php:311 hook.php:316 hook.php:320 -msgid "Update type power consumption" -msgstr "Update type power consumption" +#: src/Command/CollectCarbonIntensityCommand.php:95 +msgid "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" +msgstr "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" -#: hook.php:312 -msgid "Update category" -msgstr "Update category" +#: src/Command/CollectCarbonIntensityCommand.php:99 +msgid "Geocoding is not enabled. Cannot resolve an address into a zone" +msgstr "Geocoding is not enabled. Cannot resolve an address into a zone" -#: hook.php:324 -msgid "Update zone for Boavizta engine" -msgstr "Update zone for Boavizta engine" +#: src/Command/CollectCarbonIntensityCommand.php:104 +msgid "Address:" +msgstr "Address:" -#: hook.php:325 -msgid "Update carbon intensity source and zone" -msgstr "Update carbon intensity source and zone" +#: src/Command/CollectCarbonIntensityCommand.php:107 +msgid "Zone:" +msgstr "Zone:" -#: install/install/create_automatic_actions.php:52 -msgid "Find the Alpha3 country code (ISO3166) of locations" -msgstr "Find the Alpha3 country code (ISO3166) of locations" +#: src/Command/CollectCarbonIntensityCommand.php:123 +#: src/Command/CreateFakeCarbonIntensityCommand.php:67 +msgid "Creating data source name" +msgstr "Creating data source name" -#: install/install/create_automatic_actions.php:64 -msgid "Compute carbon emissions of computers" -msgstr "Compute carbon emissions of computers" +#: src/Command/CollectCarbonIntensityCommand.php:130 +msgid "This source does not exist" +msgstr "This source does not exist" -#: install/install/create_automatic_actions.php:100 -msgid "Compute embodied impact of assets" -msgstr "Compute embodied impact of assets" +#: src/Command/CollectCarbonIntensityCommand.php:149 +msgid "The zone is not handled by the data source" +msgstr "The zone is not handled by the data source" -#: install/install/create_uasge_profiles.php:41 -msgid "Always on" -msgstr "Always on" +#: src/Command/CollectCarbonIntensityCommand.php:155 +msgid "Reading data..." +msgstr "Reading data..." -#: install/install/create_uasge_profiles.php:52 -msgid "Office hours" -msgstr "Office hours" +#: src/Command/CreateFakeCarbonIntensityCommand.php:78 +msgid "Creating data zone name" +msgstr "Creating data zone name" -#: src/ComputerType.php:56 -msgid "Unspecified" -msgstr "Unspecified" +#: src/Command/CreateFakeCarbonIntensityCommand.php:89 +msgid "Creating fake data..." +msgstr "Creating fake data..." -#: src/ComputerType.php:58 -msgid "Server" -msgstr "Server" +#: src/Command/ExportDashboardCommand.php:68 +msgid "Updating the report dashboard description" +msgstr "Updating the report dashboard description" -#: src/ComputerType.php:59 -msgid "Laptop" -msgstr "Laptop" +#: src/Command/ExportDashboardCommand.php:73 +msgid "Dashboard not found" +msgstr "Dashboard not found" -#: src/ComputerType.php:60 -msgid "Tablet" -msgstr "Tablet" +#: src/Command/ExportDashboardCommand.php:99 +#, php-format +msgid "Dashboard description saved to %s" +msgstr "Dashboard description saved to %s" -#: src/ComputerType.php:61 -msgid "Smartphone" -msgstr "Smartphone" +#: src/Command/CreateTestInventoryCommand.php:145 +msgid "Creating test inventory" +msgstr "Creating test inventory" -#: src/ComputerType.php:70 src/MonitorType.php:50 #: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 +#: src/ComputerType.php:70 src/MonitorType.php:50 msgid "Power consumption" msgstr "Power consumption" -#: src/Zone.php:127 src/Source_Zone.php:88 src/Source_Zone.php:171 -#: src/Source_Zone.php:268 -msgid "Download enabled" -msgstr "Download enabled" +#: src/UsageInfo.php:63 +msgid "Usage informations" +msgstr "Usage informations" + +#: src/UsageInfo.php:95 src/AbstractModel.php:54 src/Location.php:73 +#: src/AbstractType.php:55 src/Profile.php:45 +msgid "Environmental impact" +msgstr "Environmental impact" + +#: src/UsageInfo.php:243 +#, php-format +msgid "%s More information %s" +msgstr "%s More information %s" + +#: src/DataSource/Lca/Boaviztapi/Config.php:100 +msgid "Invalid Boavizta API URL" +msgstr "Invalid Boavizta API URL" + +#: src/DataSource/Lca/Boaviztapi/Config.php:108 +msgid "Connection to Boavizta API established" +msgstr "Connection to Boavizta API established" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:56 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:53 +msgid "Resource diagnosis" +msgstr "Resource diagnosis" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:71 +msgid "Collect carbon intensities from RTE" +msgstr "Collect carbon intensities from RTE" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:89 +msgid "Download carbon emissions from RTE" +msgstr "Download carbon emissions from RTE" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:90 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:87 +#: src/CronTask.php:107 +msgid "Maximum number of entries to download" +msgstr "Maximum number of entries to download" + +#: src/DataSource/CarbonIntensity/AbstractCronTask.php:103 +#: src/Source_Zone.php:537 +msgid "End" +msgstr "End" + +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:68 +msgid "Collect carbon intensities from Electricity Maps" +msgstr "Collect carbon intensities from Electricity Maps" + +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:86 +msgid "Download carbon emissions from Electricity Maps" +msgstr "Download carbon emissions from Electricity Maps" #: src/AbstractImpact.php:125 src/CarbonEmission.php:151 msgid "Date of evaluation" @@ -474,288 +486,329 @@ msgstr "Engine" msgid "Engine version" msgstr "Engine version" -#: src/CarbonIntensity.php:88 -msgid "Emission date" -msgstr "Emission date" +#: src/DataTracking/AbstractTracked.php:77 +msgid "Impact not evaluated" +msgstr "Impact not evaluated" -#: src/CarbonIntensity.php:115 -msgid "Intensity" -msgstr "Intensity" +#: src/DataTracking/AbstractTracked.php:78 +msgid "Unspecified quality" +msgstr "Unspecified quality" -#: src/Location.php:73 src/AbstractModel.php:54 src/Profile.php:45 -#: src/UsageInfo.php:95 src/AbstractType.php:55 -msgid "Environmental impact" -msgstr "Environmental impact" +#: src/DataTracking/AbstractTracked.php:79 +msgid "Manual data" +msgstr "Manual data" -#: src/Location.php:189 -msgid "Carbon intensity source and zone" -msgstr "Carbon intensity source and zone" +#: src/DataTracking/AbstractTracked.php:80 +msgid "Estimated data" +msgstr "Estimated data" -#: src/AbstractModel.php:62 src/AbstractType.php:63 src/Dashboard/Grid.php:58 -#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 -msgid "Carbon" -msgstr "Carbon" +#: src/DataTracking/AbstractTracked.php:81 +msgid "Downsampled data" +msgstr "Downsampled data" -#: src/AbstractModel.php:197 -msgid "Quality" -msgstr "Quality" +#: src/DataTracking/AbstractTracked.php:82 +msgid "Measured data" +msgstr "Measured data" -#: src/UsageInfo.php:63 -msgid "Usage informations" -msgstr "Usage informations" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 +#: src/Impact/Usage/AbstractUsageImpact.php:91 +msgid "grams of carbon dioxyde equivalent" +msgstr "grams of carbon dioxyde equivalent" -#: src/UsageInfo.php:243 -#, php-format -msgid "%s More information %s" -msgstr "%s More information %s" - -#: src/ComputerUsageProfile.php:51 -msgid "Computer usage profile" -msgid_plural "Computer usage profiles" -msgstr[0] "Computer usage profile" -msgstr[1] "Computer usage profiles" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 +#: src/Impact/Usage/AbstractUsageImpact.php:93 +msgid "grams of antimony equivalent" +msgstr "grams of antimony equivalent" -#: src/ComputerUsageProfile.php:117 -msgid "Start time is invalid" -msgstr "Start time is invalid" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 +#: src/Impact/Usage/AbstractUsageImpact.php:95 +msgid "joules" +msgstr "joules" -#: src/ComputerUsageProfile.php:122 -msgid "Stop time is invalid" -msgstr "Stop time is invalid" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 +msgid "Connection to Boavizta failed." +msgstr "Connection to Boavizta failed." -#: src/Toolbox.php:243 src/Dashboard/Provider.php:195 -#: src/Dashboard/Provider.php:318 src/Dashboard/Provider.php:1199 -msgid "g" -msgstr "g" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 +msgid "Embodied impact evaluation falied." +msgstr "Embodied impact evaluation falied." -#: src/Toolbox.php:244 src/Dashboard/Provider.php:196 -#: src/Dashboard/Provider.php:319 src/Dashboard/Provider.php:1200 -msgid "Kg" -msgstr "Kg" +#: src/Impact/History/AbstractAsset.php:370 +msgid "Error while calculating impact" +msgstr "Error while calculating impact" -#: src/Toolbox.php:245 src/Dashboard/Provider.php:197 -#: src/Dashboard/Provider.php:320 src/Dashboard/Provider.php:1201 -msgid "t" -msgstr "t" +#: src/Impact/History/AbstractAsset.php:378 +msgid "Nothing to calculate" +msgstr "Nothing to calculate" -#: src/Toolbox.php:246 src/Dashboard/Provider.php:198 -#: src/Dashboard/Provider.php:321 src/Dashboard/Provider.php:1202 -msgid "Kt" -msgstr "Kt" +#: src/Impact/History/AbstractAsset.php:384 +#, php-format +msgid "%d entries calculated" +msgstr "%d entries calculated" -#: src/Toolbox.php:247 src/Dashboard/Provider.php:199 -#: src/Dashboard/Provider.php:322 src/Dashboard/Provider.php:1203 -msgid "Mt" -msgstr "Mt" +#: src/Impact/Type.php:159 +msgid "Embodied Global warming potential" +msgstr "Embodied Global warming potential" -#: src/Toolbox.php:248 src/Dashboard/Provider.php:200 -#: src/Dashboard/Provider.php:323 src/Dashboard/Provider.php:1204 -msgid "Gt" -msgstr "Gt" +#: src/Impact/Type.php:160 +msgid "Embodied Abiotic depletion potential" +msgstr "Embodied Abiotic depletion potential" -#: src/Toolbox.php:249 src/Dashboard/Provider.php:201 -#: src/Dashboard/Provider.php:324 src/Dashboard/Provider.php:1205 -msgid "Tt" -msgstr "Tt" +#: src/Impact/Type.php:161 +msgid "Embodied Primary energy consumed" +msgstr "Embodied Primary energy consumed" -#: src/Toolbox.php:250 src/Dashboard/Provider.php:202 -#: src/Dashboard/Provider.php:325 src/Dashboard/Provider.php:1206 -msgid "Pt" -msgstr "Pt" +#: src/Impact/Type.php:162 +msgid "Embodied Climate change - Contribution of biogenic emissions" +msgstr "Embodied Climate change - Contribution of biogenic emissions" -#: src/Toolbox.php:251 src/Dashboard/Provider.php:203 -#: src/Dashboard/Provider.php:326 src/Dashboard/Provider.php:1207 -msgid "Et" -msgstr "Et" +#: src/Impact/Type.php:163 +msgid "Embodied Climate change - Contribution of fossil fuel emissions" +msgstr "Embodied Climate change - Contribution of fossil fuel emissions" -#: src/Toolbox.php:252 src/Dashboard/Provider.php:204 -#: src/Dashboard/Provider.php:327 src/Dashboard/Provider.php:1208 -msgid "Zt" -msgstr "Zt" +#: src/Impact/Type.php:164 +msgid "" +"Embodied Climate change - Contribution of emissions from land use change" +msgstr "" +"Embodied Climate change - Contribution of emissions from land use change" -#: src/Toolbox.php:253 src/Dashboard/Provider.php:205 -#: src/Dashboard/Provider.php:328 src/Dashboard/Provider.php:1209 -msgid "Yt" -msgstr "Yt" +#: src/Impact/Type.php:165 +msgid "Embodied Emissions of radionizing substances" +msgstr "Embodied Emissions of radionizing substances" -#: src/Toolbox.php:280 -msgid "W" -msgstr "W" +#: src/Impact/Type.php:166 +msgid "Embodied Land use" +msgstr "Embodied Land use" -#: src/Toolbox.php:281 -msgid "KW" -msgstr "KW" +#: src/Impact/Type.php:167 +msgid "Embodied Depletion of the ozone layer" +msgstr "Embodied Depletion of the ozone layer" -#: src/Toolbox.php:282 -msgid "MW" -msgstr "MW" +#: src/Impact/Type.php:168 +msgid "Embodied Fine particle emissions" +msgstr "Embodied Fine particle emissions" -#: src/Toolbox.php:283 -msgid "GW" -msgstr "GW" +#: src/Impact/Type.php:169 +msgid "Embodied Photochemical ozone formation" +msgstr "Embodied Photochemical ozone formation" -#: src/Toolbox.php:284 -msgid "TW" -msgstr "TW" +#: src/Impact/Type.php:170 +msgid "Embodied Use of water resources" +msgstr "Embodied Use of water resources" -#: src/Toolbox.php:285 -msgid "PW" -msgstr "PW" +#: src/Impact/Type.php:171 +msgid "Embodied Material input per unit of service" +msgstr "Embodied Material input per unit of service" -#: src/Toolbox.php:286 -msgid "EW" -msgstr "EW" +#: src/Impact/Type.php:172 +msgid "Embodied Use of mineral and metal resources" +msgstr "Embodied Use of mineral and metal resources" -#: src/Toolbox.php:287 -msgid "ZW" -msgstr "ZW" +#: src/Impact/Type.php:173 +msgid "Embodied Use of fossil resources (including nuclear)" +msgstr "Embodied Use of fossil resources (including nuclear)" -#: src/Toolbox.php:288 -msgid "YW" -msgstr "YW" +#: src/Impact/Type.php:174 +msgid "Embodied Acidification" +msgstr "Embodied Acidification" -#: src/Toolbox.php:315 -msgid "Wh" -msgstr "Wh" +#: src/Impact/Type.php:175 +msgid "Embodied Freshwater ecotoxicity" +msgstr "Embodied Freshwater ecotoxicity" -#: src/Toolbox.php:316 src/Dashboard/Provider.php:1218 -msgid "KWh" -msgstr "KWh" +#: src/Impact/Type.php:178 +msgid "Embodied Eutrophication of freshwater" +msgstr "Embodied Eutrophication of freshwater" -#: src/Toolbox.php:317 src/Dashboard/Provider.php:1219 -msgid "MWh" -msgstr "MWh" +#: src/Impact/Type.php:179 +msgid "Embodied Eutrophication of marine waters" +msgstr "Embodied Eutrophication of marine waters" -#: src/Toolbox.php:318 src/Dashboard/Provider.php:1220 -msgid "GWh" -msgstr "GWh" +#: src/Impact/Type.php:180 +msgid "Embodied Terrestrial eutrophication" +msgstr "Embodied Terrestrial eutrophication" -#: src/Toolbox.php:319 src/Dashboard/Provider.php:1221 -msgid "TWh" -msgstr "TWh" +#: src/Impact/Type.php:195 +msgid "Usage Global warming potential" +msgstr "Usage Global warming potential" -#: src/Toolbox.php:320 src/Dashboard/Provider.php:1222 -msgid "PWh" -msgstr "PWh" +#: src/Impact/Type.php:196 +msgid "Usage Abiotic depletion potential" +msgstr "Usage Abiotic depletion potential" -#: src/Toolbox.php:321 src/Dashboard/Provider.php:1223 -msgid "EWh" -msgstr "EWh" +#: src/Impact/Type.php:197 +msgid "Usage Primary energy consumed" +msgstr "Usage Primary energy consumed" -#: src/Toolbox.php:322 src/Dashboard/Provider.php:1224 -msgid "ZWh" -msgstr "ZWh" +#: src/Impact/Type.php:198 +msgid "Usage Climate change - Contribution of biogenic emissions" +msgstr "Usage Climate change - Contribution of biogenic emissions" -#: src/Toolbox.php:323 src/Dashboard/Provider.php:1225 -msgid "YWh" -msgstr "YWh" +#: src/Impact/Type.php:199 +msgid "Usage Climate change - Contribution of fossil fuel emissions" +msgstr "Usage Climate change - Contribution of fossil fuel emissions" -#: src/Toolbox.php:373 src/Toolbox.php:378 -#, php-format -msgid "%1$s %2$s" -msgstr "%1$s %2$s" +#: src/Impact/Type.php:200 +msgid "Usage Climate change - Contribution of emissions from land use change" +msgstr "Usage Climate change - Contribution of emissions from land use change" -#: src/UsageImpact.php:39 -msgid "Usage impact" -msgid_plural "Usage impacts" -msgstr[0] "Usage impact" -msgstr[1] "Usage impacts" +#: src/Impact/Type.php:201 +msgid "Usage Emissions of radionizing substances" +msgstr "Usage Emissions of radionizing substances" -#: src/DataTracking/AbstractTracked.php:77 -msgid "Impact not evaluated" -msgstr "Impact not evaluated" +#: src/Impact/Type.php:202 +msgid "Usage Land use" +msgstr "Usage Land use" -#: src/DataTracking/AbstractTracked.php:78 -msgid "Unspecified quality" -msgstr "Unspecified quality" +#: src/Impact/Type.php:203 +msgid "Usage Depletion of the ozone layer" +msgstr "Usage Depletion of the ozone layer" -#: src/DataTracking/AbstractTracked.php:79 -msgid "Manual data" -msgstr "Manual data" +#: src/Impact/Type.php:204 +msgid "Usage Fine particle emissions" +msgstr "Usage Fine particle emissions" -#: src/DataTracking/AbstractTracked.php:80 -msgid "Estimated data" -msgstr "Estimated data" +#: src/Impact/Type.php:205 +msgid "Usage Photochemical ozone formation" +msgstr "Usage Photochemical ozone formation" -#: src/DataTracking/AbstractTracked.php:81 -msgid "Downsampled data" -msgstr "Downsampled data" +#: src/Impact/Type.php:206 +msgid "Usage Use of water resources" +msgstr "Usage Use of water resources" -#: src/DataTracking/AbstractTracked.php:82 -msgid "Measured data" -msgstr "Measured data" +#: src/Impact/Type.php:207 +msgid "Usage Material input per unit of service" +msgstr "Usage Material input per unit of service" -#: src/Source.php:46 -msgid "Carbon intensity source" -msgid_plural "Carbon intensity sources" -msgstr[0] "Carbon intensity source" -msgstr[1] "Carbon intensity sources" +#: src/Impact/Type.php:208 +msgid "Usage Use of mineral and metal resources" +msgstr "Usage Use of mineral and metal resources" -#: src/CronTask.php:100 -msgid "Find the Alpha3 country code (ISO3166)" -msgstr "Find the Alpha3 country code (ISO3166)" +#: src/Impact/Type.php:209 +msgid "Usage Use of fossil resources (including nuclear)" +msgstr "Usage Use of fossil resources (including nuclear)" -#: src/CronTask.php:101 -msgid "Maximum number of locations to solve" -msgstr "Maximum number of locations to solve" +#: src/Impact/Type.php:210 +msgid "Usage Acidification" +msgstr "Usage Acidification" -#: src/CronTask.php:106 -msgid "Download carbon emissions from Watttime" -msgstr "Download carbon emissions from Watttime" +#: src/Impact/Type.php:211 +msgid "Usage Freshwater ecotoxicity" +msgstr "Usage Freshwater ecotoxicity" -#: src/CronTask.php:107 -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:89 -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:105 -msgid "Maximum number of entries to download" -msgstr "Maximum number of entries to download" +#: src/Impact/Type.php:214 src/Impact/Type.php:342 +msgid "Usage Eutrophication of freshwater" +msgstr "Usage Eutrophication of freshwater" -#: src/CronTask.php:112 -msgid "Compute usage environmental impact for all assets" -msgstr "Compute usage environmental impact for all assets" +#: src/Impact/Type.php:215 src/Impact/Type.php:343 +msgid "Usage Eutrophication of marine waters" +msgstr "Usage Eutrophication of marine waters" -#: src/CronTask.php:113 src/CronTask.php:118 -msgid "Maximum number of entries to calculate" -msgstr "Maximum number of entries to calculate" +#: src/Impact/Type.php:216 src/Impact/Type.php:344 +msgid "Usage Terrestrial eutrophication" +msgstr "Usage Terrestrial eutrophication" -#: src/CronTask.php:117 -msgid "Compute embodied environmental impact for all assets" -msgstr "Compute embodied environmental impact for all assets" +#: src/Impact/Type.php:231 +msgid "Total Global warming potential" +msgstr "Total Global warming potential" -#: src/CronTask.php:278 -msgid "No zone to download" -msgstr "No zone to download" +#: src/Impact/Type.php:232 +msgid "Total Abiotic depletion potential" +msgstr "Total Abiotic depletion potential" -#: src/Source_Zone.php:72 -msgid "Source name" -msgstr "Source name" +#: src/Impact/Type.php:233 +msgid "Total Primary energy consumed" +msgstr "Total Primary energy consumed" -#: src/Source_Zone.php:80 -msgid "Zone name" -msgstr "Zone name" +#: src/Impact/Type.php:234 +msgid "Total Climate change - Contribution of biogenic emissions" +msgstr "Total Climate change - Contribution of biogenic emissions" -#: src/Source_Zone.php:96 -msgid "Code" -msgstr "Code" +#: src/Impact/Type.php:235 +msgid "Total Climate change - Contribution of fossil fuel emissions" +msgstr "Total Climate change - Contribution of fossil fuel emissions" -#: src/Source_Zone.php:150 -msgid "Not downloadable" -msgstr "Not downloadable" +#: src/Impact/Type.php:236 +msgid "Total Climate change - Contribution of emissions from land use change" +msgstr "Total Climate change - Contribution of emissions from land use change" -#: src/Source_Zone.php:150 -msgid "This is a fallback source, there is no real-time data available" -msgstr "This is a fallback source, there is no real-time data available" +#: src/Impact/Type.php:237 +msgid "Total Emissions of radionizing substances" +msgstr "Total Emissions of radionizing substances" -#: src/Source_Zone.php:172 -msgid "Source for historical" -msgstr "Source for historical" +#: src/Impact/Type.php:238 +msgid "Total Land use" +msgstr "Total Land use" -#: src/Source_Zone.php:411 -msgid "Enable / Disable" -msgstr "Enable / Disable" +#: src/Impact/Type.php:239 +msgid "Total Depletion of the ozone layer" +msgstr "Total Depletion of the ozone layer" -#: src/Source_Zone.php:538 -msgid "End" -msgstr "End" +#: src/Impact/Type.php:240 +msgid "Total Fine particle emissions" +msgstr "Total Fine particle emissions" + +#: src/Impact/Type.php:241 +msgid "Total Photochemical ozone formation" +msgstr "Total Photochemical ozone formation" + +#: src/Impact/Type.php:242 +msgid "Total Use of water resources" +msgstr "Total Use of water resources" + +#: src/Impact/Type.php:243 +msgid "Total Material input per unit of service" +msgstr "Total Material input per unit of service" + +#: src/Impact/Type.php:244 +msgid "Total Use of mineral and metal resources" +msgstr "Total Use of mineral and metal resources" + +#: src/Impact/Type.php:245 +msgid "Total Use of fossil resources (including nuclear)" +msgstr "Total Use of fossil resources (including nuclear)" + +#: src/Impact/Type.php:246 +msgid "Total Acidification" +msgstr "Total Acidification" + +#: src/Impact/Type.php:247 +msgid "Total Freshwater ecotoxicity" +msgstr "Total Freshwater ecotoxicity" + +#: src/Impact/Type.php:250 +msgid "Total Eutrophication of freshwater" +msgstr "Total Eutrophication of freshwater" + +#: src/Impact/Type.php:251 +msgid "Total Eutrophication of marine waters" +msgstr "Total Eutrophication of marine waters" + +#: src/Impact/Type.php:252 +msgid "Total Terrestrial eutrophication" +msgstr "Total Terrestrial eutrophication" + +#: src/Impact/Type.php:323 +msgid "Carbon emission in CO₂ equivalent" +msgstr "Carbon emission in CO₂ equivalent" + +#: src/Impact/Type.php:324 +msgid "Consumption of non renewable resources in Antimony equivalent." +msgstr "Consumption of non renewable resources in Antimony equivalent." + +#: src/Impact/Type.php:325 +msgid "Primary energy consumed." +msgstr "Primary energy consumed." + +#: src/Impact/Type.php:332 +msgid "Incidence of disease" +msgstr "Incidence of disease" + +#: src/Source.php:46 +msgid "Carbon intensity source" +msgid_plural "Carbon intensity sources" +msgstr[0] "Carbon intensity source" +msgstr[1] "Carbon intensity sources" #: src/SearchOptions.php:184 src/SearchOptions.php:316 #: src/SearchOptions.php:329 src/SearchOptions.php:342 @@ -767,6 +820,42 @@ msgstr "Ignore environmental impact" msgid "Is historizable" msgstr "Is historizable" +#: src/ComputerType.php:56 +msgid "Unspecified" +msgstr "Unspecified" + +#: src/ComputerType.php:58 +msgid "Server" +msgstr "Server" + +#: src/ComputerType.php:59 +msgid "Laptop" +msgstr "Laptop" + +#: src/ComputerType.php:60 +msgid "Tablet" +msgstr "Tablet" + +#: src/ComputerType.php:61 +msgid "Smartphone" +msgstr "Smartphone" + +#: src/UsageImpact.php:39 +msgid "Usage impact" +msgid_plural "Usage impacts" +msgstr[0] "Usage impact" +msgstr[1] "Usage impacts" + +#: src/AbstractModel.php:62 src/Dashboard/Grid.php:58 +#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 +#: src/AbstractType.php:63 +msgid "Carbon" +msgstr "Carbon" + +#: src/AbstractModel.php:197 +msgid "Quality" +msgstr "Quality" + #: src/Report.php:49 msgid "Carbon report" msgid_plural "Carbon reports" @@ -782,147 +871,84 @@ msgstr "" "Demo mode enabled. The data below are not representative of the assets in " "the database. %sDisable demo mode%s" -#: src/Dashboard/Grid.php:63 src/Dashboard/Provider.php:473 -msgid "Handled assets ratio" -msgstr "Handled assets ratio" +#: src/ComputerUsageProfile.php:51 +msgid "Computer usage profile" +msgid_plural "Computer usage profiles" +msgstr[0] "Computer usage profile" +msgstr[1] "Computer usage profiles" -#: src/Dashboard/Grid.php:72 -msgid "Handled assets count" -msgstr "Handled assets count" +#: src/ComputerUsageProfile.php:117 +msgid "Start time is invalid" +msgstr "Start time is invalid" -#: src/Dashboard/Grid.php:135 -#, php-format -msgid "Handled %s" -msgstr "Handled %s" +#: src/ComputerUsageProfile.php:122 +msgid "Stop time is invalid" +msgstr "Stop time is invalid" -#: src/Dashboard/Grid.php:146 -#, php-format -msgid "Unhandled %s" -msgstr "Unhandled %s" +#: src/Source_Zone.php:72 +msgid "Source name" +msgstr "Source name" -#: src/Dashboard/Grid.php:232 -#, php-format -msgid "Unhandled %s ratio" -msgstr "Unhandled %s ratio" +#: src/Source_Zone.php:80 +msgid "Zone name" +msgstr "Zone name" -#: src/Dashboard/Grid.php:244 -msgid "Usage carbon emission year to date" -msgstr "Usage carbon emission year to date" +#: src/Source_Zone.php:88 src/Source_Zone.php:171 src/Source_Zone.php:268 +#: src/Zone.php:127 +msgid "Download enabled" +msgstr "Download enabled" -#: src/Dashboard/Grid.php:250 -msgid "Monthly carbon emission" -msgstr "Monthly carbon emission" +#: src/Source_Zone.php:96 +msgid "Code" +msgstr "Code" -#: src/Dashboard/Grid.php:259 -msgid "Usage global warming potential chart" -msgstr "Usage global warming potential chart" +#: src/Source_Zone.php:150 +msgid "Not downloadable" +msgstr "Not downloadable" -#: src/Dashboard/Grid.php:268 src/Dashboard/Widget.php:85 -#: src/Dashboard/Widget.php:604 -msgid "Biggest monthly averaged carbon emission per model" -msgstr "Biggest monthly averaged carbon emission per model" +#: src/Source_Zone.php:150 +msgid "This is a fallback source, there is no real-time data available" +msgstr "This is a fallback source, there is no real-time data available" -#: src/Dashboard/Grid.php:310 src/Dashboard/Widget.php:55 -msgid "Environmental impact information video" -msgstr "Environmental impact information video" +#: src/Source_Zone.php:172 +msgid "Source for historical" +msgstr "Source for historical" -#: src/Dashboard/Grid.php:315 -msgid "Environmental impact methodology information" -msgstr "Environmental impact methodology information" +#: src/Source_Zone.php:411 +msgid "Enable / Disable" +msgstr "Enable / Disable" -#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 -#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 -#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 -#: src/Dashboard/DemoProvider.php:189 -msgid "CO₂eq" -msgstr "CO₂eq" +#: src/CronTask.php:100 +msgid "Find the Alpha3 country code (ISO3166)" +msgstr "Find the Alpha3 country code (ISO3166)" -#: src/Dashboard/Provider.php:427 -msgid "handled assets ratio" -msgstr "handled assets ratio" - -#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 -msgid "Handled" -msgstr "Handled" - -#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 -msgid "Unhandled" -msgstr "Unhandled" - -#: src/Dashboard/Provider.php:507 -msgid "Ignored" -msgstr "Ignored" - -#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 -#, php-format -msgid "plugin carbon - handled %s" -msgstr "plugin carbon - handled %s" - -#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 -#, php-format -msgid "plugin carbon - unhandled %s" -msgstr "plugin carbon - unhandled %s" - -#: src/Dashboard/Provider.php:584 -#, php-format -msgid "plugin carbon - ignored %s" -msgstr "plugin carbon - ignored %s" - -#: src/Dashboard/Provider.php:632 -msgid "plugin carbon - Total usage power consumption" -msgstr "plugin carbon - Total usage power consumption" - -#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 -msgid "plugin carbon - Usage carbon emission" -msgstr "plugin carbon - Usage carbon emission" - -#: src/Dashboard/Provider.php:733 src/Dashboard/Widget.php:100 -msgid "Usage abiotic depletion potential" -msgstr "Usage abiotic depletion potential" - -#: src/Dashboard/Provider.php:747 -msgid "Sbeq" -msgstr "Sbeq" - -#: src/Dashboard/Provider.php:1035 -msgid "Total abiotic depletion potential" -msgstr "Total abiotic depletion potential" - -#: src/Dashboard/Provider.php:1051 -msgid "Embodied abiotic depletion potential" -msgstr "Embodied abiotic depletion potential" - -#: src/Dashboard/Provider.php:1054 -msgid "Total usage abiotic depletion potential" -msgstr "Total usage abiotic depletion potential" +#: src/CronTask.php:101 +msgid "Maximum number of locations to solve" +msgstr "Maximum number of locations to solve" -#: src/Dashboard/Provider.php:1066 -msgid "Total global warming potential" -msgstr "Total global warming potential" +#: src/CronTask.php:106 +msgid "Download carbon emissions from Watttime" +msgstr "Download carbon emissions from Watttime" -#: src/Dashboard/Provider.php:1082 -msgid "Embodied global warming potential" -msgstr "Embodied global warming potential" +#: src/CronTask.php:112 +msgid "Compute usage environmental impact for all assets" +msgstr "Compute usage environmental impact for all assets" -#: src/Dashboard/Provider.php:1085 -msgid "Total usage global warming potential" -msgstr "Total usage global warming potential" +#: src/CronTask.php:113 src/CronTask.php:118 +msgid "Maximum number of entries to calculate" +msgstr "Maximum number of entries to calculate" -#: src/Dashboard/Provider.php:1107 src/Dashboard/Widget.php:501 -msgid "Consumed energy and carbon emission per month" -msgstr "Consumed energy and carbon emission per month" +#: src/CronTask.php:117 +msgid "Compute embodied environmental impact for all assets" +msgstr "Compute embodied environmental impact for all assets" -#: src/Dashboard/Provider.php:1212 src/Dashboard/Widget.php:546 -#: src/Dashboard/Widget.php:561 src/Dashboard/DemoProvider.php:88 -#: src/Dashboard/DemoProvider.php:189 -msgid "Carbon emission" -msgstr "Carbon emission" +#: src/CronTask.php:278 +msgid "No zone to download" +msgstr "No zone to download" -#: src/Dashboard/Provider.php:1228 src/Dashboard/Widget.php:551 -#: src/Dashboard/Widget.php:564 src/Dashboard/DemoProvider.php:106 -#: src/Dashboard/DemoProvider.php:202 -msgid "Consumed energy" -msgstr "Consumed energy" +#: src/Dashboard/Widget.php:55 src/Dashboard/Grid.php:310 +msgid "Environmental impact information video" +msgstr "Environmental impact information video" #: src/Dashboard/Widget.php:62 msgid "Methodology information" @@ -936,10 +962,19 @@ msgstr "Total Carbon Emission" msgid "Monthly Carbon Emission" msgstr "Monthly Carbon Emission" +#: src/Dashboard/Widget.php:85 src/Dashboard/Widget.php:604 +#: src/Dashboard/Grid.php:268 +msgid "Biggest monthly averaged carbon emission per model" +msgstr "Biggest monthly averaged carbon emission per model" + #: src/Dashboard/Widget.php:93 msgid "Carbon Emission Per month" msgstr "Carbon Emission Per month" +#: src/Dashboard/Widget.php:100 src/Dashboard/Provider.php:733 +msgid "Usage abiotic depletion potential" +msgstr "Usage abiotic depletion potential" + #: src/Dashboard/Widget.php:130 msgid "Impact criteria" msgstr "Impact criteria" @@ -960,6 +995,22 @@ msgstr "Unhandled Network equipments" msgid "Radar chart" msgstr "Radar chart" +#: src/Dashboard/Widget.php:501 src/Dashboard/Provider.php:1107 +msgid "Consumed energy and carbon emission per month" +msgstr "Consumed energy and carbon emission per month" + +#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:561 +#: src/Dashboard/Provider.php:1212 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "Carbon emission" +msgstr "Carbon emission" + +#: src/Dashboard/Widget.php:551 src/Dashboard/Widget.php:564 +#: src/Dashboard/Provider.php:1228 src/Dashboard/DemoProvider.php:106 +#: src/Dashboard/DemoProvider.php:202 +msgid "Consumed energy" +msgstr "Consumed energy" + #: src/Dashboard/Widget.php:746 #, php-format msgid "" @@ -995,311 +1046,229 @@ msgstr "" msgid "Handled percentage" msgstr "Handled percentage" -#: src/Dashboard/Dashboard.php:68 -msgid "Carbon dioxyde intensity" -msgstr "Carbon dioxyde intensity" - -#: src/Dashboard/DemoProvider.php:76 -msgid "Usage carbon emission per month" -msgstr "Usage carbon emission per month" - -#: src/Dashboard/DemoProvider.php:274 -msgid "plugin carbon - handled assets ratio" -msgstr "plugin carbon - handled assets ratio" - -#: src/Impact/Type.php:159 -msgid "Embodied Global warming potential" -msgstr "Embodied Global warming potential" - -#: src/Impact/Type.php:160 -msgid "Embodied Abiotic depletion potential" -msgstr "Embodied Abiotic depletion potential" - -#: src/Impact/Type.php:161 -msgid "Embodied Primary energy consumed" -msgstr "Embodied Primary energy consumed" - -#: src/Impact/Type.php:162 -msgid "Embodied Climate change - Contribution of biogenic emissions" -msgstr "Embodied Climate change - Contribution of biogenic emissions" - -#: src/Impact/Type.php:163 -msgid "Embodied Climate change - Contribution of fossil fuel emissions" -msgstr "Embodied Climate change - Contribution of fossil fuel emissions" - -#: src/Impact/Type.php:164 -msgid "" -"Embodied Climate change - Contribution of emissions from land use change" -msgstr "" -"Embodied Climate change - Contribution of emissions from land use change" - -#: src/Impact/Type.php:165 -msgid "Embodied Emissions of radionizing substances" -msgstr "Embodied Emissions of radionizing substances" - -#: src/Impact/Type.php:166 -msgid "Embodied Land use" -msgstr "Embodied Land use" - -#: src/Impact/Type.php:167 -msgid "Embodied Depletion of the ozone layer" -msgstr "Embodied Depletion of the ozone layer" - -#: src/Impact/Type.php:168 -msgid "Embodied Fine particle emissions" -msgstr "Embodied Fine particle emissions" - -#: src/Impact/Type.php:169 -msgid "Embodied Photochemical ozone formation" -msgstr "Embodied Photochemical ozone formation" - -#: src/Impact/Type.php:170 -msgid "Embodied Use of water resources" -msgstr "Embodied Use of water resources" - -#: src/Impact/Type.php:171 -msgid "Embodied Material input per unit of service" -msgstr "Embodied Material input per unit of service" - -#: src/Impact/Type.php:172 -msgid "Embodied Use of mineral and metal resources" -msgstr "Embodied Use of mineral and metal resources" - -#: src/Impact/Type.php:173 -msgid "Embodied Use of fossil resources (including nuclear)" -msgstr "Embodied Use of fossil resources (including nuclear)" - -#: src/Impact/Type.php:174 -msgid "Embodied Acidification" -msgstr "Embodied Acidification" - -#: src/Impact/Type.php:175 -msgid "Embodied Freshwater ecotoxicity" -msgstr "Embodied Freshwater ecotoxicity" - -#: src/Impact/Type.php:178 -msgid "Embodied Eutrophication of freshwater" -msgstr "Embodied Eutrophication of freshwater" - -#: src/Impact/Type.php:179 -msgid "Embodied Eutrophication of marine waters" -msgstr "Embodied Eutrophication of marine waters" - -#: src/Impact/Type.php:180 -msgid "Embodied Terrestrial eutrophication" -msgstr "Embodied Terrestrial eutrophication" - -#: src/Impact/Type.php:195 -msgid "Usage Global warming potential" -msgstr "Usage Global warming potential" - -#: src/Impact/Type.php:196 -msgid "Usage Abiotic depletion potential" -msgstr "Usage Abiotic depletion potential" +#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 +#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 +#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "CO₂eq" +msgstr "CO₂eq" -#: src/Impact/Type.php:197 -msgid "Usage Primary energy consumed" -msgstr "Usage Primary energy consumed" +#: src/Dashboard/Provider.php:195 src/Dashboard/Provider.php:318 +#: src/Dashboard/Provider.php:1199 src/Toolbox.php:243 +msgid "g" +msgstr "g" -#: src/Impact/Type.php:198 -msgid "Usage Climate change - Contribution of biogenic emissions" -msgstr "Usage Climate change - Contribution of biogenic emissions" +#: src/Dashboard/Provider.php:196 src/Dashboard/Provider.php:319 +#: src/Dashboard/Provider.php:1200 src/Toolbox.php:244 +msgid "Kg" +msgstr "Kg" -#: src/Impact/Type.php:199 -msgid "Usage Climate change - Contribution of fossil fuel emissions" -msgstr "Usage Climate change - Contribution of fossil fuel emissions" +#: src/Dashboard/Provider.php:197 src/Dashboard/Provider.php:320 +#: src/Dashboard/Provider.php:1201 src/Toolbox.php:245 +msgid "t" +msgstr "t" -#: src/Impact/Type.php:200 -msgid "Usage Climate change - Contribution of emissions from land use change" -msgstr "Usage Climate change - Contribution of emissions from land use change" +#: src/Dashboard/Provider.php:198 src/Dashboard/Provider.php:321 +#: src/Dashboard/Provider.php:1202 src/Toolbox.php:246 +msgid "Kt" +msgstr "Kt" -#: src/Impact/Type.php:201 -msgid "Usage Emissions of radionizing substances" -msgstr "Usage Emissions of radionizing substances" +#: src/Dashboard/Provider.php:199 src/Dashboard/Provider.php:322 +#: src/Dashboard/Provider.php:1203 src/Toolbox.php:247 +msgid "Mt" +msgstr "Mt" -#: src/Impact/Type.php:202 -msgid "Usage Land use" -msgstr "Usage Land use" +#: src/Dashboard/Provider.php:200 src/Dashboard/Provider.php:323 +#: src/Dashboard/Provider.php:1204 src/Toolbox.php:248 +msgid "Gt" +msgstr "Gt" -#: src/Impact/Type.php:203 -msgid "Usage Depletion of the ozone layer" -msgstr "Usage Depletion of the ozone layer" +#: src/Dashboard/Provider.php:201 src/Dashboard/Provider.php:324 +#: src/Dashboard/Provider.php:1205 src/Toolbox.php:249 +msgid "Tt" +msgstr "Tt" -#: src/Impact/Type.php:204 -msgid "Usage Fine particle emissions" -msgstr "Usage Fine particle emissions" +#: src/Dashboard/Provider.php:202 src/Dashboard/Provider.php:325 +#: src/Dashboard/Provider.php:1206 src/Toolbox.php:250 +msgid "Pt" +msgstr "Pt" -#: src/Impact/Type.php:205 -msgid "Usage Photochemical ozone formation" -msgstr "Usage Photochemical ozone formation" +#: src/Dashboard/Provider.php:203 src/Dashboard/Provider.php:326 +#: src/Dashboard/Provider.php:1207 src/Toolbox.php:251 +msgid "Et" +msgstr "Et" -#: src/Impact/Type.php:206 -msgid "Usage Use of water resources" -msgstr "Usage Use of water resources" +#: src/Dashboard/Provider.php:204 src/Dashboard/Provider.php:327 +#: src/Dashboard/Provider.php:1208 src/Toolbox.php:252 +msgid "Zt" +msgstr "Zt" -#: src/Impact/Type.php:207 -msgid "Usage Material input per unit of service" -msgstr "Usage Material input per unit of service" +#: src/Dashboard/Provider.php:205 src/Dashboard/Provider.php:328 +#: src/Dashboard/Provider.php:1209 src/Toolbox.php:253 +msgid "Yt" +msgstr "Yt" -#: src/Impact/Type.php:208 -msgid "Usage Use of mineral and metal resources" -msgstr "Usage Use of mineral and metal resources" +#: src/Dashboard/Provider.php:427 +msgid "handled assets ratio" +msgstr "handled assets ratio" -#: src/Impact/Type.php:209 -msgid "Usage Use of fossil resources (including nuclear)" -msgstr "Usage Use of fossil resources (including nuclear)" +#: src/Dashboard/Provider.php:473 src/Dashboard/Grid.php:63 +msgid "Handled assets ratio" +msgstr "Handled assets ratio" -#: src/Impact/Type.php:210 -msgid "Usage Acidification" -msgstr "Usage Acidification" +#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 +msgid "Handled" +msgstr "Handled" -#: src/Impact/Type.php:211 -msgid "Usage Freshwater ecotoxicity" -msgstr "Usage Freshwater ecotoxicity" +#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 +msgid "Unhandled" +msgstr "Unhandled" -#: src/Impact/Type.php:214 src/Impact/Type.php:342 -msgid "Usage Eutrophication of freshwater" -msgstr "Usage Eutrophication of freshwater" +#: src/Dashboard/Provider.php:507 +msgid "Ignored" +msgstr "Ignored" -#: src/Impact/Type.php:215 src/Impact/Type.php:343 -msgid "Usage Eutrophication of marine waters" -msgstr "Usage Eutrophication of marine waters" +#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 +#, php-format +msgid "plugin carbon - handled %s" +msgstr "plugin carbon - handled %s" -#: src/Impact/Type.php:216 src/Impact/Type.php:344 -msgid "Usage Terrestrial eutrophication" -msgstr "Usage Terrestrial eutrophication" +#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 +#, php-format +msgid "plugin carbon - unhandled %s" +msgstr "plugin carbon - unhandled %s" -#: src/Impact/Type.php:231 -msgid "Total Global warming potential" -msgstr "Total Global warming potential" +#: src/Dashboard/Provider.php:584 +#, php-format +msgid "plugin carbon - ignored %s" +msgstr "plugin carbon - ignored %s" -#: src/Impact/Type.php:232 -msgid "Total Abiotic depletion potential" -msgstr "Total Abiotic depletion potential" +#: src/Dashboard/Provider.php:632 +msgid "plugin carbon - Total usage power consumption" +msgstr "plugin carbon - Total usage power consumption" -#: src/Impact/Type.php:233 -msgid "Total Primary energy consumed" -msgstr "Total Primary energy consumed" +#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 +msgid "plugin carbon - Usage carbon emission" +msgstr "plugin carbon - Usage carbon emission" -#: src/Impact/Type.php:234 -msgid "Total Climate change - Contribution of biogenic emissions" -msgstr "Total Climate change - Contribution of biogenic emissions" +#: src/Dashboard/Provider.php:747 +msgid "Sbeq" +msgstr "Sbeq" -#: src/Impact/Type.php:235 -msgid "Total Climate change - Contribution of fossil fuel emissions" -msgstr "Total Climate change - Contribution of fossil fuel emissions" +#: src/Dashboard/Provider.php:1035 +msgid "Total abiotic depletion potential" +msgstr "Total abiotic depletion potential" -#: src/Impact/Type.php:236 -msgid "Total Climate change - Contribution of emissions from land use change" -msgstr "Total Climate change - Contribution of emissions from land use change" +#: src/Dashboard/Provider.php:1051 +msgid "Embodied abiotic depletion potential" +msgstr "Embodied abiotic depletion potential" -#: src/Impact/Type.php:237 -msgid "Total Emissions of radionizing substances" -msgstr "Total Emissions of radionizing substances" +#: src/Dashboard/Provider.php:1054 +msgid "Total usage abiotic depletion potential" +msgstr "Total usage abiotic depletion potential" -#: src/Impact/Type.php:238 -msgid "Total Land use" -msgstr "Total Land use" +#: src/Dashboard/Provider.php:1066 +msgid "Total global warming potential" +msgstr "Total global warming potential" -#: src/Impact/Type.php:239 -msgid "Total Depletion of the ozone layer" -msgstr "Total Depletion of the ozone layer" +#: src/Dashboard/Provider.php:1082 +msgid "Embodied global warming potential" +msgstr "Embodied global warming potential" -#: src/Impact/Type.php:240 -msgid "Total Fine particle emissions" -msgstr "Total Fine particle emissions" +#: src/Dashboard/Provider.php:1085 +msgid "Total usage global warming potential" +msgstr "Total usage global warming potential" -#: src/Impact/Type.php:241 -msgid "Total Photochemical ozone formation" -msgstr "Total Photochemical ozone formation" +#: src/Dashboard/Provider.php:1218 src/Toolbox.php:316 +msgid "KWh" +msgstr "KWh" -#: src/Impact/Type.php:242 -msgid "Total Use of water resources" -msgstr "Total Use of water resources" +#: src/Dashboard/Provider.php:1219 src/Toolbox.php:317 +msgid "MWh" +msgstr "MWh" -#: src/Impact/Type.php:243 -msgid "Total Material input per unit of service" -msgstr "Total Material input per unit of service" +#: src/Dashboard/Provider.php:1220 src/Toolbox.php:318 +msgid "GWh" +msgstr "GWh" -#: src/Impact/Type.php:244 -msgid "Total Use of mineral and metal resources" -msgstr "Total Use of mineral and metal resources" +#: src/Dashboard/Provider.php:1221 src/Toolbox.php:319 +msgid "TWh" +msgstr "TWh" -#: src/Impact/Type.php:245 -msgid "Total Use of fossil resources (including nuclear)" -msgstr "Total Use of fossil resources (including nuclear)" +#: src/Dashboard/Provider.php:1222 src/Toolbox.php:320 +msgid "PWh" +msgstr "PWh" -#: src/Impact/Type.php:246 -msgid "Total Acidification" -msgstr "Total Acidification" +#: src/Dashboard/Provider.php:1223 src/Toolbox.php:321 +msgid "EWh" +msgstr "EWh" -#: src/Impact/Type.php:247 -msgid "Total Freshwater ecotoxicity" -msgstr "Total Freshwater ecotoxicity" +#: src/Dashboard/Provider.php:1224 src/Toolbox.php:322 +msgid "ZWh" +msgstr "ZWh" -#: src/Impact/Type.php:250 -msgid "Total Eutrophication of freshwater" -msgstr "Total Eutrophication of freshwater" +#: src/Dashboard/Provider.php:1225 src/Toolbox.php:323 +msgid "YWh" +msgstr "YWh" -#: src/Impact/Type.php:251 -msgid "Total Eutrophication of marine waters" -msgstr "Total Eutrophication of marine waters" +#: src/Dashboard/Grid.php:72 +msgid "Handled assets count" +msgstr "Handled assets count" -#: src/Impact/Type.php:252 -msgid "Total Terrestrial eutrophication" -msgstr "Total Terrestrial eutrophication" +#: src/Dashboard/Grid.php:135 +#, php-format +msgid "Handled %s" +msgstr "Handled %s" -#: src/Impact/Type.php:323 -msgid "Carbon emission in CO₂ equivalent" -msgstr "Carbon emission in CO₂ equivalent" +#: src/Dashboard/Grid.php:146 +#, php-format +msgid "Unhandled %s" +msgstr "Unhandled %s" -#: src/Impact/Type.php:324 -msgid "Consumption of non renewable resources in Antimony equivalent." -msgstr "Consumption of non renewable resources in Antimony equivalent." +#: src/Dashboard/Grid.php:232 +#, php-format +msgid "Unhandled %s ratio" +msgstr "Unhandled %s ratio" -#: src/Impact/Type.php:325 -msgid "Primary energy consumed." -msgstr "Primary energy consumed." +#: src/Dashboard/Grid.php:244 +msgid "Usage carbon emission year to date" +msgstr "Usage carbon emission year to date" -#: src/Impact/Type.php:332 -msgid "Incidence of disease" -msgstr "Incidence of disease" +#: src/Dashboard/Grid.php:250 +msgid "Monthly carbon emission" +msgstr "Monthly carbon emission" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 -#: src/Impact/Usage/AbstractUsageImpact.php:91 -msgid "grams of carbon dioxyde equivalent" -msgstr "grams of carbon dioxyde equivalent" +#: src/Dashboard/Grid.php:259 +msgid "Usage global warming potential chart" +msgstr "Usage global warming potential chart" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 -#: src/Impact/Usage/AbstractUsageImpact.php:93 -msgid "grams of antimony equivalent" -msgstr "grams of antimony equivalent" +#: src/Dashboard/Grid.php:315 +msgid "Environmental impact methodology information" +msgstr "Environmental impact methodology information" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 -#: src/Impact/Usage/AbstractUsageImpact.php:95 -msgid "joules" -msgstr "joules" +#: src/Dashboard/DemoProvider.php:76 +msgid "Usage carbon emission per month" +msgstr "Usage carbon emission per month" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 -msgid "Connection to Boavizta failed." -msgstr "Connection to Boavizta failed." +#: src/Dashboard/DemoProvider.php:274 +msgid "plugin carbon - handled assets ratio" +msgstr "plugin carbon - handled assets ratio" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 -msgid "Embodied impact evaluation falied." -msgstr "Embodied impact evaluation falied." +#: src/Dashboard/Dashboard.php:68 +msgid "Carbon dioxyde intensity" +msgstr "Carbon dioxyde intensity" -#: src/Impact/History/AbstractAsset.php:370 -msgid "Error while calculating impact" -msgstr "Error while calculating impact" +#: src/Location.php:189 +msgid "Carbon intensity source and zone" +msgstr "Carbon intensity source and zone" -#: src/Impact/History/AbstractAsset.php:378 -msgid "Nothing to calculate" -msgstr "Nothing to calculate" +#: src/CarbonIntensity.php:87 +msgid "Emission date" +msgstr "Emission date" -#: src/Impact/History/AbstractAsset.php:384 -#, php-format -msgid "%d entries calculated" -msgstr "%d entries calculated" +#: src/CarbonIntensity.php:114 +msgid "Intensity" +msgstr "Intensity" #: src/CarbonEmission.php:49 msgid "Carbon Emission" @@ -1323,105 +1292,138 @@ msgstr "Energy quality" msgid "Emission quality" msgstr "Emission quality" -#: src/Command/CreateTestInventoryCommand.php:145 -msgid "Creating test inventory" -msgstr "Creating test inventory" +#: src/Toolbox.php:280 +msgid "W" +msgstr "W" -#: src/Command/CreateFakeCarbonIntensityCommand.php:67 -#: src/Command/CollectCarbonIntensityCommand.php:122 -msgid "Creating data source name" -msgstr "Creating data source name" +#: src/Toolbox.php:281 +msgid "KW" +msgstr "KW" -#: src/Command/CreateFakeCarbonIntensityCommand.php:78 -msgid "Creating data zone name" -msgstr "Creating data zone name" +#: src/Toolbox.php:282 +msgid "MW" +msgstr "MW" -#: src/Command/CreateFakeCarbonIntensityCommand.php:89 -msgid "Creating fake data..." -msgstr "Creating fake data..." +#: src/Toolbox.php:283 +msgid "GW" +msgstr "GW" -#: src/Command/ExportDashboardCommand.php:68 -msgid "Updating the report dashboard description" -msgstr "Updating the report dashboard description" +#: src/Toolbox.php:284 +msgid "TW" +msgstr "TW" -#: src/Command/ExportDashboardCommand.php:73 -msgid "Dashboard not found" -msgstr "Dashboard not found" +#: src/Toolbox.php:285 +msgid "PW" +msgstr "PW" -#: src/Command/ExportDashboardCommand.php:99 -#, php-format -msgid "Dashboard description saved to %s" -msgstr "Dashboard description saved to %s" +#: src/Toolbox.php:286 +msgid "EW" +msgstr "EW" -#: src/Command/CollectCarbonIntensityCommand.php:69 -msgid "Read carbon dioxyde intensity from external sources" -msgstr "Read carbon dioxyde intensity from external sources" +#: src/Toolbox.php:287 +msgid "ZW" +msgstr "ZW" -#: src/Command/CollectCarbonIntensityCommand.php:83 -msgid "Source:" -msgstr "Source:" +#: src/Toolbox.php:288 +msgid "YW" +msgstr "YW" + +#: src/Toolbox.php:315 +msgid "Wh" +msgstr "Wh" + +#: src/Toolbox.php:373 src/Toolbox.php:378 +#, php-format +msgid "%1$s %2$s" +msgstr "%1$s %2$s" + +#: setup.php:285 +msgid "Environmental Impact" +msgstr "Environmental Impact" -#: src/Command/CollectCarbonIntensityCommand.php:94 +#: hook.php:97 msgid "" -"The selected source does not enumerates its supported zones. Trying to " -"identify a zone from an address" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." msgstr "" -"The selected source does not enumerates its supported zones. Trying to " -"identify a zone from an address" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." -#: src/Command/CollectCarbonIntensityCommand.php:98 -msgid "Geocoding is not enabled. Cannot resolve an address into a zone" -msgstr "Geocoding is not enabled. Cannot resolve an address into a zone" +#: hook.php:301 +msgid "Associate to an usage profile" +msgstr "Associate to an usage profile" -#: src/Command/CollectCarbonIntensityCommand.php:103 -msgid "Address:" -msgstr "Address:" +#: hook.php:302 hook.php:307 +msgid "Delete all calculated environmental impacts" +msgstr "Delete all calculated environmental impacts" -#: src/Command/CollectCarbonIntensityCommand.php:106 -msgid "Zone:" -msgstr "Zone:" +#: hook.php:311 hook.php:316 hook.php:320 +msgid "Update type power consumption" +msgstr "Update type power consumption" + +#: hook.php:312 +msgid "Update category" +msgstr "Update category" + +#: hook.php:324 +msgid "Update zone for Boavizta engine" +msgstr "Update zone for Boavizta engine" -#: src/Command/CollectCarbonIntensityCommand.php:133 -msgid "Source not found" -msgstr "Source not found" +#: hook.php:325 +msgid "Update carbon intensity source and zone" +msgstr "Update carbon intensity source and zone" -#: src/Command/CollectCarbonIntensityCommand.php:157 -msgid "Creation of relation between source and zone failed" -msgstr "Creation of relation between source and zone failed" +#: install/install/create_automatic_actions.php:52 +msgid "Find the Alpha3 country code (ISO3166) of locations" +msgstr "Find the Alpha3 country code (ISO3166) of locations" -#: src/Command/CollectCarbonIntensityCommand.php:163 -msgid "Reading data..." -msgstr "Reading data..." +#: install/install/create_automatic_actions.php:64 +msgid "Compute carbon emissions of computers" +msgstr "Compute carbon emissions of computers" -#: src/DataSource/Lca/Boaviztapi/Config.php:100 -msgid "Invalid Boavizta API URL" -msgstr "Invalid Boavizta API URL" +#: install/install/create_automatic_actions.php:76 +msgid "Compute embodied impact of assets" +msgstr "Compute embodied impact of assets" -#: src/DataSource/Lca/Boaviztapi/Config.php:108 -msgid "Connection to Boavizta API established" -msgstr "Connection to Boavizta API established" +#: install/install/create_uasge_profiles.php:41 +msgid "Always on" +msgstr "Always on" -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:55 -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:55 -msgid "Resource diagnosis" -msgstr "Resource diagnosis" +#: install/install/create_uasge_profiles.php:52 +msgid "Office hours" +msgstr "Office hours" -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:70 -msgid "Collect carbon intensities from Electricity Maps" -msgstr "Collect carbon intensities from Electricity Maps" +#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 +#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 +msgid "Missing arguments in request." +msgstr "Missing arguments in request." -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:88 -msgid "Download carbon emissions from Electricity Maps" -msgstr "Download carbon emissions from Electricity Maps" +#: front/usageimpact.form.php:80 front/usageimpact.form.php:106 +#: front/usageimpact.form.php:114 front/embodiedimpact.form.php:92 +msgid "Bad arguments." +msgstr "Bad arguments." -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:86 -msgid "Collect carbon intensities from RTE" -msgstr "Collect carbon intensities from RTE" +#: front/usageimpact.form.php:90 front/embodiedimpact.form.php:68 +#: front/embodiedimpact.form.php:77 +msgid "Reset denied." +msgstr "Reset denied." -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:104 -msgid "Download carbon emissions from RTE" -msgstr "Download carbon emissions from RTE" +#: front/usageimpact.form.php:95 front/embodiedimpact.form.php:82 +msgid "Reset failed." +msgstr "Reset failed." -#: setup.php:285 -msgid "Environmental Impact" -msgstr "Environmental Impact" +#: front/usageimpact.form.php:122 +msgid "Missing data prevents historization of this asset." +msgstr "Missing data prevents historization of this asset." + +#: front/usageimpact.form.php:125 +msgid "Update of global warming potential failed." +msgstr "Update of global warming potential failed." + +#: front/usageimpact.form.php:131 front/embodiedimpact.form.php:101 +msgid "Unable to find calculation engine for this asset." +msgstr "Unable to find calculation engine for this asset." + +#: front/usageimpact.form.php:136 +msgid "Update of usage impact failed." +msgstr "Update of usage impact failed." diff --git a/locales/es_MX.mo b/locales/es_MX.mo index 1fdc3cdb8ca3c1515a60a5f6b43390e1a4533fcd..37e41994f9793e757f930b2de96fd63b62d711be 100644 GIT binary patch delta 6453 zcmXxm30PKD0><$JC<=;*3yTYUf*^|vE{LKj?)$#y`XQe}DyZOw>9x`pGnGgNc{qAzMd+Fr)prhx5Djp8<+8ATX ze8x1zt=JGNumK*xCU^+j<7v#mFfLkzS=b1l!${nPo$y0U#H-j2o6~5Fw>U>*Fzwli z#xo&Q@;J~I=V3J7kG=6(9E#_#FQz6LlZ*wZ4sCYreV9u70{SqVnp%*cG>-mi9R6I`0A%_3R>QiobV1q^22Dk9G!zV^>ti`Zy<`_C^7!Bdbx@Z*;#` zVN2TQQ1`is+9M(9c7~cF_w!5}TQS{HJsW{xI0a+TkGil7wT2rp2Df5Ad=qo=Iu6Hd z)=eY36E(06u6>_#6NYm9!5UfrEmSnJr`!p2?p0`)q!N1d39>fktRi1Y9gmY_yD ztE26(A1BieV1L|?I{#19eH-#_YDVKx*JY!pwaKBPk@iPzlF=B6cVZ$wgyFawBk+Ca z5!4E^hd4zRMd#`P(59NT9Pu< z1J+_s+<+RD$pc{fq7Q7o@SG7d%! zWFhJcd5>#vN1gvM>Nyv2HWjM%XmVHN6iNgHKH=tn*9Db(>}$j8ovkG37{hx!hbVlwVP zR?mEie1lBf7`qhXQGb8T-Bj2wW-qd#%}vyl=I~+fhzqd;K8b8xa|m-WjNaDA;TVMz zPw;tH@F1zC)l^)1ZqIR6YX2n4|UxrRL91mH<`*r_rq(bHQj-Y@NG=MPcRX`M{Sx0 zlk5oFAp6pE$5>p8arh{P;ZAIZ`>-*7hMJ)ZsJHCeB<8;%l_+|l2gjp!ZyIW(qfr;k zLVXvOqSkUFYI7b%UK|rO#g1$$YGl)0d$uzV)u8~^!(vniR!m|3H6`U7(1lx2BYy(* zn!JLk_&KKI4UE9#sdh%XIwzyPAFD7P_o5zf0+aA6Mq%_c`@B@tfHOQQu~fRFE*OLA zzygfJGHikmWBnjL$*2xj@KI2QE3p9gBKy|(rrW);7&UVbxb`;Gb?>5P-~&{LyhBv9 z%TJ-!D13(9?JZF!48s;U9h>8FREIZV9ee?`yI)0(s1if*U5v(qsE(XQJ@^W0fWIO$ z<(Yaj?e0uLy{}zRJ)Md*Yl*sWHnRWBeAE>0N6pYFjKOQ@!-!e-JJ1pJcKKcV0_MTo)0f~kdW zq^Qj`1^ZzUj>QTbjX}5B*LN&x##UlmeBK>DgnHi3w=w^ks#q2>4SS(_7C=3CHKt+( zYU;j5AO3+|F@B+ad&XlM+IL_&K8JeX5zN49R7VpQ*(LE~XWEZ?RP=fr!VY)_gRnu7 z?MMWM(oVu~Oh+wE7HUR%pdQ@Y9iQd&yWjIsOI3h%vCRFx4)q-GE-DFBHlSwU1=Nfj zMLqZ`w!+^q8KaBs8umtwpcFMTFJcd@LR}xS*iLZ@>OrHN5j3<%^f9Z@r$B!oYRlI0 zKbj_WD5Ke*^dZlXQlgT^B^&We5=s3l++04YSxnr$)KoM>zmol=giJ19(=5T;M(qYs z`Ixlk+6QV{b`k&T>i=_!zmd6Qj2e{xT53K3s=iKklNj#Rlc-Fv)chaoZ>|oWX}}42 z)Pl(+@-lgvsB9t!NE6Qa6z?Rp-UM{NKM>^3SRny|{ERJyXT5i=R zZZECxh@aHsg5G31^$c8(Dr*S4x@I@29m;S0RH3|0?jj$kL77Oj==z+gbm80w@p00Y zdNBEjy1q_NY4`k08j&9Spz<)$ZW~^n6`kPCr1lfZB##o6X_lIQ34bL_)|g5=OouUyvV3ZK)IF+3)3( z9O=jn;$27nMf;!R_S!R1AAXe;uPudCVmWpS$GL;$&Ph(;X$z@z zcMpEaHf#Pp&%X^hehW4y1Iwf061>-_sr=ni^LMO0XZ=q5GRY#Lq#OA+SwxnQuAGxj z&QTA+53#nippwb4_c0Zx<7lFisBo+ZKhvhop|X%v6P2B$pr*!G9E-^ea*`x)VH}x4 z{TFhCG$sv+N>kFAtRu&X${%DGxt~;$81e~8CVTXb4WUv+R8EtjWGM;fK^JigQAr`6 zlZVuxWLFlphzhOT;oBEkS(dpdI5praD=rH73QK%N#ihOie^LIzK)x?;m9MlQ;LG=y z`h6wE%a+a!R9@_IHYl!u^K9FfUmUR41XdQ7lvcjqZD+H}H-@cmS~+xPTuA0fzwYbj zran%aA1Em;q?zycEiPW_Tj=-ATNWrPkK GM*JT?$@Sa- delta 6458 zcmYM%33!cH9>?*MgxIq02)PmwLJ|`Dz9yE^%}yFg+*F90h-j-*UPIBAwls933thCR zWiGl3o0pJ)Sv_|NWeE?s?z$tnZCaz70C|ZP2z=K~A1A z=1z|>t#Av*;z10<6W9bVU<_Wt4j4t__Sgq!VmU_O5sbuBn1jD!Dz@Px1BYQ0&ay5{ zHI50UqLzvfd>C8fZg$F~qEB7!N*cnHl8ZJQHXfx8(e2BW?1@vGnH=&QFGd9F=7>-j= zBlcMx457RNLvfWVG<9oi#YS7+j&an#X+4bmGiUhFh@+X$me?0{eIW*81(sqZ&ce@e z8V+Gvbp008k{?Dbt<$KTdtp4PXGy3jPPX-vu>s{GY>c;}I#z96irO1%Q61Tex_+`8DkEhI`XM)a0+$dkJtpyp{DS6WZ8{}bv(cJ@4SdaQN48^vn_BpoP6XPilKs{$%N9I3@Oeq!WKn?1GyHE|6qGsd?)W|oW zI=lz9G;g3DREItA0BU6QI=R=kKwX!IT9Totr7Ob;xV#hduQfeI1+!?vSumaJURZ{O z=)rwB8c*U-?8)?KmoLH_u?}y*_|C>m#4^-<-ojY?9yOr-;Y!qX%t5^>ja~1E)|^Tc5jV%HmK{+XvOY7(M8qX5?v9yU#EgFQaBQ zsgFB=o~Q>;L?+qHL;e1kon)HfG1L_Pg1SM&zQzP$I%^E`M;Zt9<&s7gL_dueIDa*KkAr$ZObQ7?fyWWnnaF5Iu1b% zWCrTZxWtw>q1wNTdd~N_lg!C}%)ffHW`O&9{~RV#-h;(>2(@Xt4s_pK1F>HaM-jC& zs|L9bdU6-);5@-yW)57%NeHXGrNv;*>TGu^NqR-pFA!>D%qQ1|}=gYhhe z==}dgMpJeX+hEpp?kjaPPNDof-hvHAy2qvrHPRNkQIv@2u*pBIV z7Fk6TeZ4Wfi_BQe)A@gp48I$u4%s*660)&PcV6h4+S@T3U&JgtifmvLdZW8!`Ph*1 zQjEqGs6DeDHR4^!NX-YRcAua&=~1lD^UZlOfpd@1lpEgU+6=Yk9Z)Zf38*z(iIKPk zHI;i&GxQcNK+nzY-+t?`J>}TZ?tuDX6Uy^Z*WHJXdUijVvAEKHaT*&_K8q3fE2d!m zG47^HN9~!R7>BnY`_s(EB;1Wn@enq`pHS_7!zc{rVVa?qW10WvWOAtp!%?UQPeSeD zGSot^D%^5b1vyG!rBU_Cc*rT?**7_8xL+h~tZXU<{s{=c1gM+9G zKSz!H28xW64as3pD`)lsiQMkAhv zNjMvI!E#gwUcjdKGREMi*f5CynxSrRj+cWv{4-9&OUV8;g_GR9@)Bz14%qV7sOv7H zX27{hMm-9h?C$a;)EX6_cKdkL_e-!DK8o?^M|F5V*2Ckd-Tebd5qBYg?g^X*3($i_ zn2QTgr_FE6c}05fP*X-mFP?Qc8{bE5zTQ(9Jr-ksd<_fmGTw@VidjG0gflR@#67O_ zP&2a;)uB2ZgkK>i)U+yf|5mKQb`BNqkkM41M|GsdRQDA+7`5qqs17}XI?sDhBRq{= zQN757Zm1b6!Bo5lyWl45h~Hrv#+14D?TStY6-8v!U@7L{D;SKYQ6o5uy|6yR)~+9b z+7s8K2aB;eE<}y|No;{HqmJ)kREJMuH@t${LtUmZ|2@czVC%NQ#i)^Nw&f$(netT( z!Mt)iQq-m@!2viIZ@}F+3d5$m$958G#ulMwaI399gnHhe)0uxwRT>M}4)akxt3o|^ z3AV-EsHr=F9&A|Q{+_qPY|4e$3YTLhZb3cpOKguXUWrZ1`WwYTL_cC3F^5oU$0f_~FcC@qOMI|)WL#p?d&wzjhJGVnCu)dswe#Xq zob}}XAe8nKe-RI;K++;V6v*)|wTh<*j#pq;sr;ipNNmJF+QR29B9VUdAe2VC1m0f1 z+dMd?2@OigY2nTgFA`4^O7|0ci5S{^jEjhC=~Xh>w(u3+NJP_si`P3;a zuyyI&C7=8oL?5C9@fe}Bkmw!AaZ+h_JNc1BXYxI4z1Z;oykqX65KVkXq|s2nv`Q0* zBBB*_Yp@=1Eo~%|LA*&!A+Pl=U8F|m#4Pkc=%?Q}6cx$mu}_NK%H=UH3T zi>gLM7h*7Vx7qrS@Gasw;!a{W5lx$iaW1ih$Rt9jQ));=*!)TIWyD>CQWl}N(hL>c zUOMB)IEPQ0wA z4<+*Qb+#*f-U4XQj{UDJw3o@J{v5_3Vjk?D19Bc*-j0_@?@^JJtl(rsgI3 zPvq_k^4E3V8rM6&xT2!Y@2M#El=6Vm@;blIGu5lI9^#h0zMASlRoNV}Ue8>8&2#)! j!, 2026\n" "Language-Team: Spanish (Mexico) (https://app.transifex.com/teclib/teams/28042/es_MX/)\n" @@ -21,6 +21,95 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 +#: src/ComputerUsageProfile.php:169 +msgid "Start time" +msgstr "Hora de inicio" + +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 +msgid "Stop time" +msgstr "Hora de fin" + +#: templates/computerusageprofile.html.twig +msgid "Days of week where the computer usually runs" +msgstr "Días de la semana en los que el ordenador funciona habitualmente" + +#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 +#: src/Impact/Usage/Engine.php:48 +msgid "Boavizta" +msgstr "Boavizta" + +#: templates/location.html.twig src/SearchOptions.php:138 src/Location.php:182 +msgid "Boavizta zone" +msgstr "Zona de Boavizta" + +#: templates/location.html.twig src/CarbonIntensity.php:65 +msgid "Carbon intensity" +msgstr "Intensidad de carbono" + +#: templates/usageinfo.html.twig +msgid "Asset usage" +msgstr "Uso del activo" + +#: templates/usageinfo.html.twig +msgid "Usage profile" +msgid_plural "Usage profiles" +msgstr[0] "Perfil de uso" +msgstr[1] "Perfiles de uso" +msgstr[2] "Perfiles de uso" + +#: templates/usageinfo.html.twig +msgid "lifespan (in months)" +msgstr "esperanza de vida (en meses)" + +#: templates/usageinfo.html.twig +msgid "planned lifespan (in months)" +msgstr "esperanza de vida prevista (en meses)" + +#: templates/quick-report.html.twig front/report.php:55 +msgid "GLPI Carbon" +msgstr "GLPI Carbon" + +#: templates/components/form/source_zone_selector.html.twig +#: src/AbstractModel.php:186 +msgid "Source" +msgstr "Fuente" + +#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 +msgid "Carbon intensity zone" +msgid_plural "Carbon intensity zones" +msgstr[0] "Zona de intensidad de carbono" +msgstr[1] "Zonas de intensidad de carbono" +msgstr[2] "Zonas de intensidad de carbono" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "No zone available" +msgstr "No hay zonas disponibles" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "Please run the automatic action to downlaod data from this source." +msgstr "" +"Por favor, ejecutá la acción automática para descargar datos de esta fuente." + +#: templates/environmentalimpact-item.html.twig +msgid "Usage" +msgstr "Uso" + +#: templates/environmentalimpact-item.html.twig +msgid "Reset data" +msgstr "Restablecer datos" + +#: templates/environmentalimpact-item.html.twig +msgid "Calculate data" +msgstr "Calcular datos" + +#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 +msgid "Embodied impact" +msgid_plural "Embodied impacts" +msgstr[0] "Impacto incorporado" +msgstr[1] "Impactos incorporados" +msgstr[2] "Impactos incorporados" + #: templates/history/status-item.html.twig msgid "Historization status" msgstr "Estado de historización" @@ -110,68 +199,34 @@ msgstr "El activo tiene una fecha de alta en el inventario" msgid "Legend" msgstr "Leyenda" -#: templates/networkequipmenttype.html.twig +#: templates/monitortype.html.twig msgid "" -"This power value is used as default when the power of a network equipment " -"model is unknown" +"This power value is used as default when the power of a monitor model is " +"unknown" msgstr "" "Este valor de potencia se utiliza por defecto cuando se desconoce la " -"potencia de un modelo de equipo de red" +"potencia de un modelo de monitor" -#: templates/networkequipmenttype.html.twig templates/computertype.html.twig -#: templates/monitortype.html.twig +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig msgid "Power" msgid_plural "Powers" msgstr[0] "Potencia" msgstr[1] "Potencias" msgstr[2] "Potencias" -#: templates/networkequipmenttype.html.twig templates/computertype.html.twig -#: templates/monitortype.html.twig +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig msgid "Do not evaluate" msgstr "No evaluar" -#: templates/components/form/source_zone_selector.html.twig -#: src/AbstractModel.php:186 -msgid "Source" -msgstr "Fuente" - -#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 -msgid "Carbon intensity zone" -msgid_plural "Carbon intensity zones" -msgstr[0] "Zona de intensidad de carbono" -msgstr[1] "Zonas de intensidad de carbono" -msgstr[2] "Zonas de intensidad de carbono" - -#: templates/quick-report.html.twig front/report.php:55 -msgid "GLPI Carbon" -msgstr "GLPI Carbon" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 -#: src/ComputerUsageProfile.php:169 -msgid "Start time" -msgstr "Hora de inicio" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 -msgid "Stop time" -msgstr "Hora de fin" - -#: templates/computerusageprofile.html.twig -msgid "Days of week where the computer usually runs" -msgstr "Días de la semana en los que el ordenador funciona habitualmente" - -#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 -#: src/Impact/Usage/Engine.php:48 -msgid "Boavizta" -msgstr "Boavizta" - -#: templates/location.html.twig src/Location.php:182 src/SearchOptions.php:138 -msgid "Boavizta zone" -msgstr "Zona de Boavizta" +#: templates/config.html.twig +msgid "Impact engine" +msgstr "Motor de impacto" -#: templates/location.html.twig src/CarbonIntensity.php:66 -msgid "Carbon intensity" -msgstr "Intensidad de carbono" +#: templates/config.html.twig +msgid "Usage carbon emissions are always calculated internally" +msgstr "Las emisiones de carbono por uso siempre se calculan internamente" #: templates/computertype.html.twig msgid "" @@ -181,19 +236,96 @@ msgstr "" "Este valor de potencia se utiliza por defecto cuando se desconoce la " "potencia de un modelo de ordenador" -#: templates/computertype.html.twig src/ComputerType.php:78 -#: src/SearchOptions.php:303 +#: templates/computertype.html.twig src/SearchOptions.php:303 +#: src/ComputerType.php:78 msgid "Category" msgstr "Categoría" -#: templates/pages/CarbonIntensitySource/tab_zone.html.twig -msgid "No zone available" -msgstr "No hay zonas disponibles" +#: templates/dashboard/information-block.html.twig +msgid "Information" +msgstr "Información" -#: templates/pages/CarbonIntensitySource/tab_zone.html.twig -msgid "Please run the automatic action to downlaod data from this source." +#: templates/dashboard/information-block.html.twig +msgid "" +"Our data is sourced from reliable sources and is meticulously calculated " +"using industry-standard methodologies. We utilize accurate measurement tools" +" and algorithms to ensure the precision and reliability of our environmental" +" metrics." msgstr "" -"Por favor, ejecutá la acción automática para descargar datos de esta fuente." +"Nuestros datos provienen de fuentes confiables y se calculan meticulosamente" +" utilizando metodologías estándar de la industria. Utilizamos herramientas " +"de medición precisas y algoritmos para garantizar la exactitud y fiabilidad " +"de nuestras métricas ambientales." + +#: templates/dashboard/information-block.html.twig +msgid "" +"As we move towards a greener future, businesses will soon be required to " +"report energy usage and carbon emissions. By 2025, many areas will enforce " +"these regulations. Adopting these practices now ensures compliance and helps" +" combat climate change." +msgstr "" +"A medida que avanzamos hacia un futuro más ecológico, las empresas pronto " +"deberán reportar el consumo de energía y las emisiones de carbono. Para " +"2025, muchas jurisdicciones implementarán estas regulaciones. Adoptar estas " +"prácticas desde ahora asegura el cumplimiento y contribuye a combatir el " +"cambio climático." + +#: templates/dashboard/information-block.html.twig +msgid "Did you know ?" +msgstr "¿Sabías que...?" + +#: templates/dashboard/information-block.html.twig +msgid "" +"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " +"about 20 meters." +msgstr "" +"1 gramo de CO₂ equivale al CO₂ emitido al conducir un auto durante " +"aproximadamente 20 metros." + +#: templates/dashboard/unhandled-monitors-card.html.twig +#: templates/dashboard/unhandled-computers-card.html.twig +#: templates/dashboard/unhandled-network-equipments-card.html.twig +msgid "Warning" +msgstr "Alerta" + +#: templates/dashboard/unhandled-monitors-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s monitors." +msgstr "Representa %s por ciento de tu parque, que contiene %s monitores." + +#: templates/dashboard/usage-carbon-emission-last-year.html.twig +msgid "Yearly Usage Carbon Emission" +msgstr "Emisión de carbono por uso anual" + +#: templates/dashboard/monthly-carbon-emission.html.twig +msgid "Monthly usage carbon emission" +msgstr "Emisión de carbono por uso mensual" + +#: templates/dashboard/monthly-carbon-emission.html.twig +#, php-format +msgid "Compared to %s" +msgstr "Comparado con %s" + +#: templates/dashboard/unhandled-computers-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s computers." +msgstr "Representa %s por ciento de tu parque, que contiene %s computadoras." + +#: templates/dashboard/unhandled-network-equipments-card.html.twig +#, php-format +msgid "" +"It represents %s percent of your parc that contains %s network equipments." +msgstr "" +"Representa %s por ciento de tu parque, que contiene %s equipos de red." + +#: templates/dashboard/information-video-card.html.twig +msgid "Want to know more ?" +msgstr "¿Querés saber más?" + +#: templates/dashboard/information-video-card.html.twig +msgid "Here is a video about the impact of numeric on the enviromnent." +msgstr "" +"Aquí hay un video sobre el impacto de lo digital en el medio ambiente." #: templates/abstractmodel.html.twig msgid "" @@ -217,561 +349,490 @@ msgstr "Calidad de los datos" msgid "Data source" msgstr "Fuente de datos" -#: templates/monitortype.html.twig +#: templates/networkequipmenttype.html.twig msgid "" -"This power value is used as default when the power of a monitor model is " -"unknown" +"This power value is used as default when the power of a network equipment " +"model is unknown" msgstr "" "Este valor de potencia se utiliza por defecto cuando se desconoce la " -"potencia de un modelo de monitor" +"potencia de un modelo de equipo de red" -#: templates/usageinfo.html.twig -msgid "Asset usage" -msgstr "Uso del activo" +#: src/Command/CollectCarbonIntensityCommand.php:70 +msgid "Read carbon dioxyde intensity from external sources" +msgstr "Leer intensidad de carbono de fuentes externas" -#: templates/usageinfo.html.twig -msgid "Usage profile" -msgid_plural "Usage profiles" -msgstr[0] "Perfil de uso" -msgstr[1] "Perfiles de uso" -msgstr[2] "Perfiles de uso" +#: src/Command/CollectCarbonIntensityCommand.php:84 +msgid "Source:" +msgstr "Fuente:" -#: templates/usageinfo.html.twig -msgid "lifespan (in months)" -msgstr "esperanza de vida (en meses)" - -#: templates/usageinfo.html.twig -msgid "planned lifespan (in months)" -msgstr "esperanza de vida prevista (en meses)" - -#: templates/environmentalimpact-item.html.twig -msgid "Usage" -msgstr "Uso" - -#: templates/environmentalimpact-item.html.twig -msgid "Reset data" -msgstr "Restablecer datos" - -#: templates/environmentalimpact-item.html.twig -msgid "Calculate data" -msgstr "Calcular datos" - -#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 -msgid "Embodied impact" -msgid_plural "Embodied impacts" -msgstr[0] "Impacto incorporado" -msgstr[1] "Impactos incorporados" -msgstr[2] "Impactos incorporados" - -#: templates/config.html.twig -msgid "Impact engine" -msgstr "Motor de impacto" - -#: templates/config.html.twig -msgid "Usage carbon emissions are always calculated internally" -msgstr "Las emisiones de carbono por uso siempre se calculan internamente" - -#: templates/dashboard/information-video-card.html.twig -msgid "Want to know more ?" -msgstr "¿Querés saber más?" +#: src/Command/CollectCarbonIntensityCommand.php:95 +msgid "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" +msgstr "" +"La fuente seleccionada no enumera sus zonas compatibles. Intentando " +"identificar una zona a partir de una dirección" -#: templates/dashboard/information-video-card.html.twig -msgid "Here is a video about the impact of numeric on the enviromnent." +#: src/Command/CollectCarbonIntensityCommand.php:99 +msgid "Geocoding is not enabled. Cannot resolve an address into a zone" msgstr "" -"Aquí hay un video sobre el impacto de lo digital en el medio ambiente." +"La geolocalización no está activada. No se puede resolver una dirección en " +"una zona" -#: templates/dashboard/usage-carbon-emission-last-year.html.twig -msgid "Yearly Usage Carbon Emission" -msgstr "Emisión de carbono por uso anual" +#: src/Command/CollectCarbonIntensityCommand.php:104 +msgid "Address:" +msgstr "Dirección:" -#: templates/dashboard/unhandled-monitors-card.html.twig -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#: templates/dashboard/unhandled-computers-card.html.twig -msgid "Warning" -msgstr "Alerta" +#: src/Command/CollectCarbonIntensityCommand.php:107 +msgid "Zone:" +msgstr "Zona:" -#: templates/dashboard/unhandled-monitors-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s monitors." -msgstr "Representa %s por ciento de tu parque, que contiene %s monitores." +#: src/Command/CollectCarbonIntensityCommand.php:123 +#: src/Command/CreateFakeCarbonIntensityCommand.php:67 +msgid "Creating data source name" +msgstr "Creando nombre de la fuente de datos" -#: templates/dashboard/monthly-carbon-emission.html.twig -msgid "Monthly usage carbon emission" -msgstr "Emisión de carbono por uso mensual" +#: src/Command/CollectCarbonIntensityCommand.php:130 +msgid "This source does not exist" +msgstr "Esta fuente no existe" -#: templates/dashboard/monthly-carbon-emission.html.twig -#, php-format -msgid "Compared to %s" -msgstr "Comparado con %s" +#: src/Command/CollectCarbonIntensityCommand.php:149 +msgid "The zone is not handled by the data source" +msgstr "La zona no es gestionada por la fuente de datos." -#: templates/dashboard/information-block.html.twig -msgid "Information" -msgstr "Información" +#: src/Command/CollectCarbonIntensityCommand.php:155 +msgid "Reading data..." +msgstr "Leyendo datos..." -#: templates/dashboard/information-block.html.twig -msgid "" -"Our data is sourced from reliable sources and is meticulously calculated " -"using industry-standard methodologies. We utilize accurate measurement tools" -" and algorithms to ensure the precision and reliability of our environmental" -" metrics." -msgstr "" -"Nuestros datos provienen de fuentes confiables y se calculan meticulosamente" -" utilizando metodologías estándar de la industria. Utilizamos herramientas " -"de medición precisas y algoritmos para garantizar la exactitud y fiabilidad " -"de nuestras métricas ambientales." +#: src/Command/CreateFakeCarbonIntensityCommand.php:78 +msgid "Creating data zone name" +msgstr "Creando nombre de la zona de datos" -#: templates/dashboard/information-block.html.twig -msgid "" -"As we move towards a greener future, businesses will soon be required to " -"report energy usage and carbon emissions. By 2025, many areas will enforce " -"these regulations. Adopting these practices now ensures compliance and helps" -" combat climate change." -msgstr "" -"A medida que avanzamos hacia un futuro más ecológico, las empresas pronto " -"deberán reportar el consumo de energía y las emisiones de carbono. Para " -"2025, muchas jurisdicciones implementarán estas regulaciones. Adoptar estas " -"prácticas desde ahora asegura el cumplimiento y contribuye a combatir el " -"cambio climático." +#: src/Command/CreateFakeCarbonIntensityCommand.php:89 +msgid "Creating fake data..." +msgstr "Creando datos de prueba..." -#: templates/dashboard/information-block.html.twig -msgid "Did you know ?" -msgstr "¿Sabías que...?" +#: src/Command/ExportDashboardCommand.php:68 +msgid "Updating the report dashboard description" +msgstr "Actualizando la descripción del tablero de reportes" -#: templates/dashboard/information-block.html.twig -msgid "" -"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " -"about 20 meters." -msgstr "" -"1 gramo de CO₂ equivale al CO₂ emitido al conducir un auto durante " -"aproximadamente 20 metros." +#: src/Command/ExportDashboardCommand.php:73 +msgid "Dashboard not found" +msgstr "Tablero no encontrado" -#: templates/dashboard/unhandled-network-equipments-card.html.twig +#: src/Command/ExportDashboardCommand.php:99 #, php-format -msgid "" -"It represents %s percent of your parc that contains %s network equipments." -msgstr "" -"Representa %s por ciento de tu parque, que contiene %s equipos de red." +msgid "Dashboard description saved to %s" +msgstr "Descripción del tablero guardada en %s" -#: templates/dashboard/unhandled-computers-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s computers." -msgstr "Representa %s por ciento de tu parque, que contiene %s computadoras." +#: src/Command/CreateTestInventoryCommand.php:145 +msgid "Creating test inventory" +msgstr "Creando inventario de prueba" -#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 -#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 -msgid "Missing arguments in request." -msgstr "Faltan argumentos en la solicitud." +#: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 +#: src/ComputerType.php:70 src/MonitorType.php:50 +msgid "Power consumption" +msgstr "Consumo de potencia" -#: front/embodiedimpact.form.php:68 front/embodiedimpact.form.php:77 -#: front/usageimpact.form.php:90 -msgid "Reset denied." -msgstr "Restablecimiento denegado." +#: src/UsageInfo.php:63 +msgid "Usage informations" +msgstr "Información de uso" -#: front/embodiedimpact.form.php:82 front/usageimpact.form.php:95 -msgid "Reset failed." -msgstr "Error al restablecer." +#: src/UsageInfo.php:95 src/AbstractModel.php:54 src/Location.php:73 +#: src/AbstractType.php:55 src/Profile.php:45 +msgid "Environmental impact" +msgstr "Impacto ambiental" -#: front/embodiedimpact.form.php:92 front/usageimpact.form.php:80 -#: front/usageimpact.form.php:106 front/usageimpact.form.php:114 -msgid "Bad arguments." -msgstr "Argumentos inválidos." +#: src/UsageInfo.php:243 +#, php-format +msgid "%s More information %s" +msgstr "%s Más información %s" -#: front/embodiedimpact.form.php:101 front/usageimpact.form.php:131 -msgid "Unable to find calculation engine for this asset." -msgstr "No se pudo encontrar el motor de cálculo para este activo." +#: src/DataSource/Lca/Boaviztapi/Config.php:100 +msgid "Invalid Boavizta API URL" +msgstr "URL de la API de Boavizta no válida" -#: front/usageimpact.form.php:122 -msgid "Missing data prevents historization of this asset." -msgstr "La falta de datos impide generar el historial de este activo." +#: src/DataSource/Lca/Boaviztapi/Config.php:108 +msgid "Connection to Boavizta API established" +msgstr "Conexión con la API de Boavizta establecida" -#: front/usageimpact.form.php:125 -msgid "Update of global warming potential failed." -msgstr "Error al actualizar el potencial de calentamiento global." +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:56 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:53 +msgid "Resource diagnosis" +msgstr "Diagnóstico de recursos" -#: front/usageimpact.form.php:136 -msgid "Update of usage impact failed." -msgstr "Error al actualizar el impacto de uso." +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:71 +msgid "Collect carbon intensities from RTE" +msgstr "Recopilar intensidades de carbono de RTE" -#: hook.php:97 -msgid "" -"Please check the logs for more details. Fill an issue in the repository of " -"the plugin." -msgstr "" -"Por favor, revisá los registros para más detalles. Abrí un reporte en el " -"repositorio del complemento." +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:89 +msgid "Download carbon emissions from RTE" +msgstr "Descargar las emisiones de carbono de RTE" -#: hook.php:301 -msgid "Associate to an usage profile" -msgstr "Asociar a un perfil de uso" +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:90 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:87 +#: src/CronTask.php:107 +msgid "Maximum number of entries to download" +msgstr "Cantidad máxima de entradas a descargar" -#: hook.php:302 hook.php:307 -msgid "Delete all calculated environmental impacts" -msgstr "Eliminar todos los impactos ambientales calculados" +#: src/DataSource/CarbonIntensity/AbstractCronTask.php:103 +#: src/Source_Zone.php:537 +msgid "End" +msgstr "Fin" -#: hook.php:311 hook.php:316 hook.php:320 -msgid "Update type power consumption" -msgstr "Actualizar el consumo de potencia del tipo" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:68 +msgid "Collect carbon intensities from Electricity Maps" +msgstr "Recopilar intensidades de carbono de ElectricityMap" -#: hook.php:312 -msgid "Update category" -msgstr "Actualizar categoría" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:86 +msgid "Download carbon emissions from Electricity Maps" +msgstr "Descargar las emisiones de carbono de ElectricityMap" -#: hook.php:324 -msgid "Update zone for Boavizta engine" -msgstr "Actualizar zona para el motor Boavizta" +#: src/AbstractImpact.php:125 src/CarbonEmission.php:151 +msgid "Date of evaluation" +msgstr "Fecha de evaluación" -#: hook.php:325 -msgid "Update carbon intensity source and zone" -msgstr "Actualizar la fuente y la zona de intensidad de carbono" +#: src/AbstractImpact.php:132 src/CarbonEmission.php:158 +msgid "Engine" +msgstr "Motor" -#: install/install/create_automatic_actions.php:52 -msgid "Find the Alpha3 country code (ISO3166) of locations" -msgstr "Buscar el código de país Alpha3 (ISO3166) de las ubicaciones" +#: src/AbstractImpact.php:139 src/CarbonEmission.php:165 +msgid "Engine version" +msgstr "Versión del motor" -#: install/install/create_automatic_actions.php:64 -msgid "Compute carbon emissions of computers" -msgstr "Calcular las emisiones de carbono de las computadoras" +#: src/DataTracking/AbstractTracked.php:77 +msgid "Impact not evaluated" +msgstr "Impacto no evaluado" -#: install/install/create_automatic_actions.php:100 -msgid "Compute embodied impact of assets" -msgstr "Calcular el impacto incorporado de los activos" +#: src/DataTracking/AbstractTracked.php:78 +msgid "Unspecified quality" +msgstr "Calidad sin especificar" -#: install/install/create_uasge_profiles.php:41 -msgid "Always on" -msgstr "Siempre encendido" +#: src/DataTracking/AbstractTracked.php:79 +msgid "Manual data" +msgstr "Datos manuales" -#: install/install/create_uasge_profiles.php:52 -msgid "Office hours" -msgstr "Horario de oficina" +#: src/DataTracking/AbstractTracked.php:80 +msgid "Estimated data" +msgstr "Datos estimados" -#: src/ComputerType.php:56 -msgid "Unspecified" -msgstr "Sin especificar" +#: src/DataTracking/AbstractTracked.php:81 +msgid "Downsampled data" +msgstr "Datos submuestreados" -#: src/ComputerType.php:58 -msgid "Server" -msgstr "Servidor" +#: src/DataTracking/AbstractTracked.php:82 +msgid "Measured data" +msgstr "Datos medidos" -#: src/ComputerType.php:59 -msgid "Laptop" -msgstr "Portátil" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 +#: src/Impact/Usage/AbstractUsageImpact.php:91 +msgid "grams of carbon dioxyde equivalent" +msgstr "gramos de dióxido de carbono equivalente" -#: src/ComputerType.php:60 -msgid "Tablet" -msgstr "Tableta" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 +#: src/Impact/Usage/AbstractUsageImpact.php:93 +msgid "grams of antimony equivalent" +msgstr "gramos de antimonio equivalente" -#: src/ComputerType.php:61 -msgid "Smartphone" -msgstr "Smartphone" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 +#: src/Impact/Usage/AbstractUsageImpact.php:95 +msgid "joules" +msgstr "joules" -#: src/ComputerType.php:70 src/MonitorType.php:50 -#: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 -msgid "Power consumption" -msgstr "Consumo de potencia" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 +msgid "Connection to Boavizta failed." +msgstr "La conexión a Boavizta falló." -#: src/Zone.php:127 src/Source_Zone.php:88 src/Source_Zone.php:171 -#: src/Source_Zone.php:268 -msgid "Download enabled" -msgstr "Descarga activada" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 +msgid "Embodied impact evaluation falied." +msgstr "La valoración de la evaluación del impacto incorporado falló." -#: src/AbstractImpact.php:125 src/CarbonEmission.php:151 -msgid "Date of evaluation" -msgstr "Fecha de evaluación" +#: src/Impact/History/AbstractAsset.php:370 +msgid "Error while calculating impact" +msgstr "Error al calcular el impacto" -#: src/AbstractImpact.php:132 src/CarbonEmission.php:158 -msgid "Engine" -msgstr "Motor" +#: src/Impact/History/AbstractAsset.php:378 +msgid "Nothing to calculate" +msgstr "No hay nada para calcular" -#: src/AbstractImpact.php:139 src/CarbonEmission.php:165 -msgid "Engine version" -msgstr "Versión del motor" +#: src/Impact/History/AbstractAsset.php:384 +#, php-format +msgid "%d entries calculated" +msgstr "%d entradas calculadas" -#: src/CarbonIntensity.php:88 -msgid "Emission date" -msgstr "Fecha de emisión" +#: src/Impact/Type.php:159 +msgid "Embodied Global warming potential" +msgstr "Impacto incorporado – Potencial de calentamiento global" -#: src/CarbonIntensity.php:115 -msgid "Intensity" -msgstr "Intensidad" +#: src/Impact/Type.php:160 +msgid "Embodied Abiotic depletion potential" +msgstr "Impacto incorporado – Potencial de agotamiento abiótico" -#: src/Location.php:73 src/AbstractModel.php:54 src/Profile.php:45 -#: src/UsageInfo.php:95 src/AbstractType.php:55 -msgid "Environmental impact" -msgstr "Impacto ambiental" +#: src/Impact/Type.php:161 +msgid "Embodied Primary energy consumed" +msgstr "Impacto incorporado – Energía primaria consumida" -#: src/Location.php:189 -msgid "Carbon intensity source and zone" -msgstr "Fuente y zona de intensidad de carbono" +#: src/Impact/Type.php:162 +msgid "Embodied Climate change - Contribution of biogenic emissions" +msgstr "" +"Impacto incorporado – Cambio climático: contribución de emisiones biogénicas" -#: src/AbstractModel.php:62 src/AbstractType.php:63 src/Dashboard/Grid.php:58 -#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 -msgid "Carbon" -msgstr "Carbono" +#: src/Impact/Type.php:163 +msgid "Embodied Climate change - Contribution of fossil fuel emissions" +msgstr "" +"Impacto incorporado – Cambio climático: contribución de emisiones de " +"combustibles fósiles" -#: src/AbstractModel.php:197 -msgid "Quality" -msgstr "Calidad" +#: src/Impact/Type.php:164 +msgid "" +"Embodied Climate change - Contribution of emissions from land use change" +msgstr "" +"Impacto incorporado – Cambio climático: contribución de emisiones por cambio" +" de uso de suelo" -#: src/UsageInfo.php:63 -msgid "Usage informations" -msgstr "Información de uso" +#: src/Impact/Type.php:165 +msgid "Embodied Emissions of radionizing substances" +msgstr "Impacto incorporado – Emisiones de sustancias radiactivas" -#: src/UsageInfo.php:243 -#, php-format -msgid "%s More information %s" -msgstr "%s Más información %s" +#: src/Impact/Type.php:166 +msgid "Embodied Land use" +msgstr "Impacto incorporado – Uso del suelo" -#: src/ComputerUsageProfile.php:51 -msgid "Computer usage profile" -msgid_plural "Computer usage profiles" -msgstr[0] "Perfil de uso de computadora" -msgstr[1] "Perfiles de uso de computadora" -msgstr[2] "Perfiles de uso de computadora" +#: src/Impact/Type.php:167 +msgid "Embodied Depletion of the ozone layer" +msgstr "Impacto incorporado – Agotamiento de la capa de ozono" -#: src/ComputerUsageProfile.php:117 -msgid "Start time is invalid" -msgstr "La hora de inicio es inválida" +#: src/Impact/Type.php:168 +msgid "Embodied Fine particle emissions" +msgstr "Impacto incorporado – Emisiones de partículas finas" -#: src/ComputerUsageProfile.php:122 -msgid "Stop time is invalid" -msgstr "La hora de finalización es inválida" +#: src/Impact/Type.php:169 +msgid "Embodied Photochemical ozone formation" +msgstr "Impacto incorporado – Formación fotoquímica de ozono" -#: src/Toolbox.php:243 src/Dashboard/Provider.php:195 -#: src/Dashboard/Provider.php:318 src/Dashboard/Provider.php:1199 -msgid "g" -msgstr "g" +#: src/Impact/Type.php:170 +msgid "Embodied Use of water resources" +msgstr "Impacto incorporado – Uso de recursos hídricos" -#: src/Toolbox.php:244 src/Dashboard/Provider.php:196 -#: src/Dashboard/Provider.php:319 src/Dashboard/Provider.php:1200 -msgid "Kg" -msgstr "Kg" +#: src/Impact/Type.php:171 +msgid "Embodied Material input per unit of service" +msgstr "Impacto incorporado – Entrada de materiales por unidad de servicio" -#: src/Toolbox.php:245 src/Dashboard/Provider.php:197 -#: src/Dashboard/Provider.php:320 src/Dashboard/Provider.php:1201 -msgid "t" -msgstr "t" +#: src/Impact/Type.php:172 +msgid "Embodied Use of mineral and metal resources" +msgstr "Impacto incorporado – Uso de recursos minerales y metálicos" -#: src/Toolbox.php:246 src/Dashboard/Provider.php:198 -#: src/Dashboard/Provider.php:321 src/Dashboard/Provider.php:1202 -msgid "Kt" -msgstr "Kt" +#: src/Impact/Type.php:173 +msgid "Embodied Use of fossil resources (including nuclear)" +msgstr "Impacto incorporado – Uso de recursos fósiles (incluido nuclear)" -#: src/Toolbox.php:247 src/Dashboard/Provider.php:199 -#: src/Dashboard/Provider.php:322 src/Dashboard/Provider.php:1203 -msgid "Mt" -msgstr "Mt" +#: src/Impact/Type.php:174 +msgid "Embodied Acidification" +msgstr "Impacto incorporado – Acidificación" -#: src/Toolbox.php:248 src/Dashboard/Provider.php:200 -#: src/Dashboard/Provider.php:323 src/Dashboard/Provider.php:1204 -msgid "Gt" -msgstr "Gt" +#: src/Impact/Type.php:175 +msgid "Embodied Freshwater ecotoxicity" +msgstr "Impacto incorporado – Ecotoxicidad de agua dulce" -#: src/Toolbox.php:249 src/Dashboard/Provider.php:201 -#: src/Dashboard/Provider.php:324 src/Dashboard/Provider.php:1205 -msgid "Tt" -msgstr "Tt" +#: src/Impact/Type.php:178 +msgid "Embodied Eutrophication of freshwater" +msgstr "Impacto incorporado – Eutrofización de agua dulce" -#: src/Toolbox.php:250 src/Dashboard/Provider.php:202 -#: src/Dashboard/Provider.php:325 src/Dashboard/Provider.php:1206 -msgid "Pt" -msgstr "Pt" +#: src/Impact/Type.php:179 +msgid "Embodied Eutrophication of marine waters" +msgstr "Impacto incorporado – Eutrofización de aguas marinas" -#: src/Toolbox.php:251 src/Dashboard/Provider.php:203 -#: src/Dashboard/Provider.php:326 src/Dashboard/Provider.php:1207 -msgid "Et" -msgstr "Et" +#: src/Impact/Type.php:180 +msgid "Embodied Terrestrial eutrophication" +msgstr "Impacto incorporado – Eutrofización terrestre" -#: src/Toolbox.php:252 src/Dashboard/Provider.php:204 -#: src/Dashboard/Provider.php:327 src/Dashboard/Provider.php:1208 -msgid "Zt" -msgstr "Zt" +#: src/Impact/Type.php:195 +msgid "Usage Global warming potential" +msgstr "Uso – Potencial de calentamiento global" -#: src/Toolbox.php:253 src/Dashboard/Provider.php:205 -#: src/Dashboard/Provider.php:328 src/Dashboard/Provider.php:1209 -msgid "Yt" -msgstr "Yt" +#: src/Impact/Type.php:196 +msgid "Usage Abiotic depletion potential" +msgstr "Uso – Potencial de agotamiento abiótico" -#: src/Toolbox.php:280 -msgid "W" -msgstr "W" +#: src/Impact/Type.php:197 +msgid "Usage Primary energy consumed" +msgstr "Uso – Energía primaria consumida" -#: src/Toolbox.php:281 -msgid "KW" -msgstr "KW" +#: src/Impact/Type.php:198 +msgid "Usage Climate change - Contribution of biogenic emissions" +msgstr "Uso – Cambio climático: contribución de emisiones biogénicas" -#: src/Toolbox.php:282 -msgid "MW" -msgstr "MW" +#: src/Impact/Type.php:199 +msgid "Usage Climate change - Contribution of fossil fuel emissions" +msgstr "" +"Uso – Cambio climático: contribución de emisiones de combustibles fósiles" -#: src/Toolbox.php:283 -msgid "GW" -msgstr "GW" +#: src/Impact/Type.php:200 +msgid "Usage Climate change - Contribution of emissions from land use change" +msgstr "" +"Uso – Cambio climático: contribución de emisiones por cambio de uso de suelo" -#: src/Toolbox.php:284 -msgid "TW" -msgstr "TW" +#: src/Impact/Type.php:201 +msgid "Usage Emissions of radionizing substances" +msgstr "Uso – Emisiones de sustancias radiactivas" -#: src/Toolbox.php:285 -msgid "PW" -msgstr "PW" +#: src/Impact/Type.php:202 +msgid "Usage Land use" +msgstr "Uso – Uso del suelo" -#: src/Toolbox.php:286 -msgid "EW" -msgstr "EW" +#: src/Impact/Type.php:203 +msgid "Usage Depletion of the ozone layer" +msgstr "Uso – Agotamiento de la capa de ozono" -#: src/Toolbox.php:287 -msgid "ZW" -msgstr "ZW" +#: src/Impact/Type.php:204 +msgid "Usage Fine particle emissions" +msgstr "Uso – Emisiones de partículas finas" -#: src/Toolbox.php:288 -msgid "YW" -msgstr "YW" +#: src/Impact/Type.php:205 +msgid "Usage Photochemical ozone formation" +msgstr "Uso – Formación fotoquímica de ozono" -#: src/Toolbox.php:315 -msgid "Wh" -msgstr "Watts-hora" +#: src/Impact/Type.php:206 +msgid "Usage Use of water resources" +msgstr "Uso – Uso de recursos hídricos" -#: src/Toolbox.php:316 src/Dashboard/Provider.php:1218 -msgid "KWh" -msgstr "KWh" +#: src/Impact/Type.php:207 +msgid "Usage Material input per unit of service" +msgstr "Uso – Entrada de materiales por unidad de servicio" -#: src/Toolbox.php:317 src/Dashboard/Provider.php:1219 -msgid "MWh" -msgstr "MWh" +#: src/Impact/Type.php:208 +msgid "Usage Use of mineral and metal resources" +msgstr "Uso – Uso de recursos minerales y metálicos" -#: src/Toolbox.php:318 src/Dashboard/Provider.php:1220 -msgid "GWh" -msgstr "GWh" +#: src/Impact/Type.php:209 +msgid "Usage Use of fossil resources (including nuclear)" +msgstr "Uso – Uso de recursos fósiles (incluido nuclear)" -#: src/Toolbox.php:319 src/Dashboard/Provider.php:1221 -msgid "TWh" -msgstr "TWh" +#: src/Impact/Type.php:210 +msgid "Usage Acidification" +msgstr "Uso – Acidificación" -#: src/Toolbox.php:320 src/Dashboard/Provider.php:1222 -msgid "PWh" -msgstr "PWh" +#: src/Impact/Type.php:211 +msgid "Usage Freshwater ecotoxicity" +msgstr "Uso – Ecotoxicidad de agua dulce" -#: src/Toolbox.php:321 src/Dashboard/Provider.php:1223 -msgid "EWh" -msgstr "EWh" +#: src/Impact/Type.php:214 src/Impact/Type.php:342 +msgid "Usage Eutrophication of freshwater" +msgstr "Uso – Eutrofización de agua dulce" -#: src/Toolbox.php:322 src/Dashboard/Provider.php:1224 -msgid "ZWh" -msgstr "ZWh" +#: src/Impact/Type.php:215 src/Impact/Type.php:343 +msgid "Usage Eutrophication of marine waters" +msgstr "Uso – Eutrofización de aguas marinas" -#: src/Toolbox.php:323 src/Dashboard/Provider.php:1225 -msgid "YWh" -msgstr "YWh" +#: src/Impact/Type.php:216 src/Impact/Type.php:344 +msgid "Usage Terrestrial eutrophication" +msgstr "Uso – Eutrofización terrestre" -#: src/Toolbox.php:373 src/Toolbox.php:378 -#, php-format -msgid "%1$s %2$s" -msgstr "%1$s %2$s" +#: src/Impact/Type.php:231 +msgid "Total Global warming potential" +msgstr "Total – Potencial de calentamiento global" -#: src/UsageImpact.php:39 -msgid "Usage impact" -msgid_plural "Usage impacts" -msgstr[0] "Impacto por uso" -msgstr[1] "Impactos por uso" -msgstr[2] "Impactos por uso" +#: src/Impact/Type.php:232 +msgid "Total Abiotic depletion potential" +msgstr "Total – Potencial de agotamiento abiótico" -#: src/DataTracking/AbstractTracked.php:77 -msgid "Impact not evaluated" -msgstr "Impacto no evaluado" +#: src/Impact/Type.php:233 +msgid "Total Primary energy consumed" +msgstr "Total – Energía primaria consumida" -#: src/DataTracking/AbstractTracked.php:78 -msgid "Unspecified quality" -msgstr "Calidad sin especificar" +#: src/Impact/Type.php:234 +msgid "Total Climate change - Contribution of biogenic emissions" +msgstr "Total – Cambio climático: contribución de emisiones biogénicas" -#: src/DataTracking/AbstractTracked.php:79 -msgid "Manual data" -msgstr "Datos manuales" +#: src/Impact/Type.php:235 +msgid "Total Climate change - Contribution of fossil fuel emissions" +msgstr "" +"Total – Cambio climático: contribución de emisiones de combustibles fósiles" -#: src/DataTracking/AbstractTracked.php:80 -msgid "Estimated data" -msgstr "Datos estimados" +#: src/Impact/Type.php:236 +msgid "Total Climate change - Contribution of emissions from land use change" +msgstr "" +"Total – Cambio climático: contribución de emisiones por cambio de uso de " +"suelo" -#: src/DataTracking/AbstractTracked.php:81 -msgid "Downsampled data" -msgstr "Datos submuestreados" +#: src/Impact/Type.php:237 +msgid "Total Emissions of radionizing substances" +msgstr "Total – Emisiones de sustancias radiactivas" -#: src/DataTracking/AbstractTracked.php:82 -msgid "Measured data" -msgstr "Datos medidos" +#: src/Impact/Type.php:238 +msgid "Total Land use" +msgstr "Total – Uso del suelo" -#: src/Source.php:46 -msgid "Carbon intensity source" -msgid_plural "Carbon intensity sources" -msgstr[0] "Fuente de intensidad de carbono" -msgstr[1] "Fuentes de intensidad de carbono" -msgstr[2] "Fuentes de intensidad de carbono" +#: src/Impact/Type.php:239 +msgid "Total Depletion of the ozone layer" +msgstr "Total – Agotamiento de la capa de ozono" -#: src/CronTask.php:100 -msgid "Find the Alpha3 country code (ISO3166)" -msgstr "Buscar el código de país Alpha3 (ISO3166)" +#: src/Impact/Type.php:240 +msgid "Total Fine particle emissions" +msgstr "Total – Emisiones de partículas finas" -#: src/CronTask.php:101 -msgid "Maximum number of locations to solve" -msgstr "Cantidad máxima de ubicaciones a resolver" +#: src/Impact/Type.php:241 +msgid "Total Photochemical ozone formation" +msgstr "Total – Formación fotoquímica de ozono" -#: src/CronTask.php:106 -msgid "Download carbon emissions from Watttime" -msgstr "Descargar emisiones de carbono desde Watttime" +#: src/Impact/Type.php:242 +msgid "Total Use of water resources" +msgstr "Total – Uso de recursos hídricos" -#: src/CronTask.php:107 -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:89 -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:105 -msgid "Maximum number of entries to download" -msgstr "Cantidad máxima de entradas a descargar" +#: src/Impact/Type.php:243 +msgid "Total Material input per unit of service" +msgstr "Total – Entrada de materiales por unidad de servicio" -#: src/CronTask.php:112 -msgid "Compute usage environmental impact for all assets" -msgstr "Calcular el impacto ambiental de uso para todos los activos" +#: src/Impact/Type.php:244 +msgid "Total Use of mineral and metal resources" +msgstr "Total – Uso de recursos minerales y metálicos" -#: src/CronTask.php:113 src/CronTask.php:118 -msgid "Maximum number of entries to calculate" -msgstr "Cantidad máxima de entradas a calcular" +#: src/Impact/Type.php:245 +msgid "Total Use of fossil resources (including nuclear)" +msgstr "Total – Uso de recursos fósiles (incluido nuclear)" -#: src/CronTask.php:117 -msgid "Compute embodied environmental impact for all assets" -msgstr "Calcular el impacto ambiental incorporado para todos los activos" +#: src/Impact/Type.php:246 +msgid "Total Acidification" +msgstr "Total – Acidificación" -#: src/CronTask.php:278 -msgid "No zone to download" -msgstr "No hay zonas para descargar" +#: src/Impact/Type.php:247 +msgid "Total Freshwater ecotoxicity" +msgstr "Total – Ecotoxicidad de agua dulce" -#: src/Source_Zone.php:72 -msgid "Source name" -msgstr "Nombre de la fuente" +#: src/Impact/Type.php:250 +msgid "Total Eutrophication of freshwater" +msgstr "Total – Eutrofización de agua dulce" -#: src/Source_Zone.php:80 -msgid "Zone name" -msgstr "Nombre de la zona" +#: src/Impact/Type.php:251 +msgid "Total Eutrophication of marine waters" +msgstr "Total – Eutrofización de aguas marinas" -#: src/Source_Zone.php:96 -msgid "Code" -msgstr "Código" +#: src/Impact/Type.php:252 +msgid "Total Terrestrial eutrophication" +msgstr "Total – Eutrofización terrestre" -#: src/Source_Zone.php:150 -msgid "Not downloadable" -msgstr "No descargable" +#: src/Impact/Type.php:323 +msgid "Carbon emission in CO₂ equivalent" +msgstr "Emisión de carbono en CO₂ equivalente" -#: src/Source_Zone.php:150 -msgid "This is a fallback source, there is no real-time data available" -msgstr "" -"Esta es una fuente de respaldo; no hay datos en tiempo real disponibles" +#: src/Impact/Type.php:324 +msgid "Consumption of non renewable resources in Antimony equivalent." +msgstr "Consumo de recursos no renovables en antimonio equivalente." -#: src/Source_Zone.php:172 -msgid "Source for historical" -msgstr "Fuente para histórico" +#: src/Impact/Type.php:325 +msgid "Primary energy consumed." +msgstr "Energía primaria consumida." -#: src/Source_Zone.php:411 -msgid "Enable / Disable" -msgstr "Activar / Desactivar" +#: src/Impact/Type.php:332 +msgid "Incidence of disease" +msgstr "Incidencia de la enfermedad" -#: src/Source_Zone.php:538 -msgid "End" -msgstr "Fin" +#: src/Source.php:46 +msgid "Carbon intensity source" +msgid_plural "Carbon intensity sources" +msgstr[0] "Fuente de intensidad de carbono" +msgstr[1] "Fuentes de intensidad de carbono" +msgstr[2] "Fuentes de intensidad de carbono" #: src/SearchOptions.php:184 src/SearchOptions.php:316 #: src/SearchOptions.php:329 src/SearchOptions.php:342 @@ -783,163 +844,139 @@ msgstr "Ignorar impacto ambiental" msgid "Is historizable" msgstr "Es historizable" -#: src/Report.php:49 -msgid "Carbon report" -msgid_plural "Carbon reports" -msgstr[0] "Informe de carbono" -msgstr[1] "Informes de carbono" -msgstr[2] "Informes de carbono" - -#: src/Report.php:101 -#, php-format -msgid "" -"Demo mode enabled. The data below are not representative of the assets in " -"the database. %sDisable demo mode%s" -msgstr "" -"Modo demo activado. Los datos de abajo no son representativos de los activos" -" en la base de datos. %sDesactivar el modo demo%s" - -#: src/Dashboard/Grid.php:63 src/Dashboard/Provider.php:473 -msgid "Handled assets ratio" -msgstr "Proporción de activos gestionados" - -#: src/Dashboard/Grid.php:72 -msgid "Handled assets count" -msgstr "Cantidad de activos gestionados" - -#: src/Dashboard/Grid.php:135 -#, php-format -msgid "Handled %s" -msgstr "Gestionados %s" - -#: src/Dashboard/Grid.php:146 -#, php-format -msgid "Unhandled %s" -msgstr "No gestionados %s" +#: src/ComputerType.php:56 +msgid "Unspecified" +msgstr "Sin especificar" -#: src/Dashboard/Grid.php:232 -#, php-format -msgid "Unhandled %s ratio" -msgstr "Proporción de %s no gestionados" +#: src/ComputerType.php:58 +msgid "Server" +msgstr "Servidor" -#: src/Dashboard/Grid.php:244 -msgid "Usage carbon emission year to date" -msgstr "Emisión de carbono por uso acumulada anual" +#: src/ComputerType.php:59 +msgid "Laptop" +msgstr "Portátil" -#: src/Dashboard/Grid.php:250 -msgid "Monthly carbon emission" -msgstr "Emisión de carbono mensual" +#: src/ComputerType.php:60 +msgid "Tablet" +msgstr "Tableta" -#: src/Dashboard/Grid.php:259 -msgid "Usage global warming potential chart" -msgstr "Gráfico de potencial de calentamiento global por uso" +#: src/ComputerType.php:61 +msgid "Smartphone" +msgstr "Smartphone" -#: src/Dashboard/Grid.php:268 src/Dashboard/Widget.php:85 -#: src/Dashboard/Widget.php:604 -msgid "Biggest monthly averaged carbon emission per model" -msgstr "Máximo promedio mensual de emisiones de carbono por modelo" +#: src/UsageImpact.php:39 +msgid "Usage impact" +msgid_plural "Usage impacts" +msgstr[0] "Impacto por uso" +msgstr[1] "Impactos por uso" +msgstr[2] "Impactos por uso" -#: src/Dashboard/Grid.php:310 src/Dashboard/Widget.php:55 -msgid "Environmental impact information video" -msgstr "Video informativo sobre el impacto ambiental" +#: src/AbstractModel.php:62 src/Dashboard/Grid.php:58 +#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 +#: src/AbstractType.php:63 +msgid "Carbon" +msgstr "Carbono" -#: src/Dashboard/Grid.php:315 -msgid "Environmental impact methodology information" -msgstr "Información sobre la metodología de impacto ambiental" +#: src/AbstractModel.php:197 +msgid "Quality" +msgstr "Calidad" -#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 -#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 -#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 -#: src/Dashboard/DemoProvider.php:189 -msgid "CO₂eq" -msgstr "CO₂eq" +#: src/Report.php:49 +msgid "Carbon report" +msgid_plural "Carbon reports" +msgstr[0] "Informe de carbono" +msgstr[1] "Informes de carbono" +msgstr[2] "Informes de carbono" -#: src/Dashboard/Provider.php:427 -msgid "handled assets ratio" -msgstr "proporción de activos gestionados" +#: src/Report.php:101 +#, php-format +msgid "" +"Demo mode enabled. The data below are not representative of the assets in " +"the database. %sDisable demo mode%s" +msgstr "" +"Modo demo activado. Los datos de abajo no son representativos de los activos" +" en la base de datos. %sDesactivar el modo demo%s" -#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 -msgid "Handled" -msgstr "Gestionado" +#: src/ComputerUsageProfile.php:51 +msgid "Computer usage profile" +msgid_plural "Computer usage profiles" +msgstr[0] "Perfil de uso de computadora" +msgstr[1] "Perfiles de uso de computadora" +msgstr[2] "Perfiles de uso de computadora" -#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 -msgid "Unhandled" -msgstr "No gestionado" +#: src/ComputerUsageProfile.php:117 +msgid "Start time is invalid" +msgstr "La hora de inicio es inválida" -#: src/Dashboard/Provider.php:507 -msgid "Ignored" -msgstr "Ignorados" +#: src/ComputerUsageProfile.php:122 +msgid "Stop time is invalid" +msgstr "La hora de finalización es inválida" -#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 -#, php-format -msgid "plugin carbon - handled %s" -msgstr "complemento carbono - gestionado %s" +#: src/Source_Zone.php:72 +msgid "Source name" +msgstr "Nombre de la fuente" -#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 -#, php-format -msgid "plugin carbon - unhandled %s" -msgstr "complemento carbono - no gestionado %s" +#: src/Source_Zone.php:80 +msgid "Zone name" +msgstr "Nombre de la zona" -#: src/Dashboard/Provider.php:584 -#, php-format -msgid "plugin carbon - ignored %s" -msgstr "complemento carbono - ignorados %s" +#: src/Source_Zone.php:88 src/Source_Zone.php:171 src/Source_Zone.php:268 +#: src/Zone.php:127 +msgid "Download enabled" +msgstr "Descarga activada" -#: src/Dashboard/Provider.php:632 -msgid "plugin carbon - Total usage power consumption" -msgstr "complemento carbono - Consumo total de potencia por uso" +#: src/Source_Zone.php:96 +msgid "Code" +msgstr "Código" -#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 -msgid "plugin carbon - Usage carbon emission" -msgstr "complemento carbono - Emisión de carbono por uso" +#: src/Source_Zone.php:150 +msgid "Not downloadable" +msgstr "No descargable" -#: src/Dashboard/Provider.php:733 src/Dashboard/Widget.php:100 -msgid "Usage abiotic depletion potential" -msgstr "Potencial de agotamiento abiótico por uso" +#: src/Source_Zone.php:150 +msgid "This is a fallback source, there is no real-time data available" +msgstr "" +"Esta es una fuente de respaldo; no hay datos en tiempo real disponibles" -#: src/Dashboard/Provider.php:747 -msgid "Sbeq" -msgstr "Sbeq" +#: src/Source_Zone.php:172 +msgid "Source for historical" +msgstr "Fuente para histórico" -#: src/Dashboard/Provider.php:1035 -msgid "Total abiotic depletion potential" -msgstr "Potencial de agotamiento abiótico total" +#: src/Source_Zone.php:411 +msgid "Enable / Disable" +msgstr "Activar / Desactivar" -#: src/Dashboard/Provider.php:1051 -msgid "Embodied abiotic depletion potential" -msgstr "Potencial de agotamiento abiótico incorporado" +#: src/CronTask.php:100 +msgid "Find the Alpha3 country code (ISO3166)" +msgstr "Buscar el código de país Alpha3 (ISO3166)" -#: src/Dashboard/Provider.php:1054 -msgid "Total usage abiotic depletion potential" -msgstr "Potencial de agotamiento abiótico por uso total" +#: src/CronTask.php:101 +msgid "Maximum number of locations to solve" +msgstr "Cantidad máxima de ubicaciones a resolver" -#: src/Dashboard/Provider.php:1066 -msgid "Total global warming potential" -msgstr "Potencial de calentamiento global total" +#: src/CronTask.php:106 +msgid "Download carbon emissions from Watttime" +msgstr "Descargar emisiones de carbono desde Watttime" -#: src/Dashboard/Provider.php:1082 -msgid "Embodied global warming potential" -msgstr "Potencial de calentamiento global incorporado" +#: src/CronTask.php:112 +msgid "Compute usage environmental impact for all assets" +msgstr "Calcular el impacto ambiental de uso para todos los activos" -#: src/Dashboard/Provider.php:1085 -msgid "Total usage global warming potential" -msgstr "Potencial de calentamiento global por uso total" +#: src/CronTask.php:113 src/CronTask.php:118 +msgid "Maximum number of entries to calculate" +msgstr "Cantidad máxima de entradas a calcular" -#: src/Dashboard/Provider.php:1107 src/Dashboard/Widget.php:501 -msgid "Consumed energy and carbon emission per month" -msgstr "Consumo de energía y emisión de carbono por mes" +#: src/CronTask.php:117 +msgid "Compute embodied environmental impact for all assets" +msgstr "Calcular el impacto ambiental incorporado para todos los activos" -#: src/Dashboard/Provider.php:1212 src/Dashboard/Widget.php:546 -#: src/Dashboard/Widget.php:561 src/Dashboard/DemoProvider.php:88 -#: src/Dashboard/DemoProvider.php:189 -msgid "Carbon emission" -msgstr "Emisión de carbono" +#: src/CronTask.php:278 +msgid "No zone to download" +msgstr "No hay zonas para descargar" -#: src/Dashboard/Provider.php:1228 src/Dashboard/Widget.php:551 -#: src/Dashboard/Widget.php:564 src/Dashboard/DemoProvider.php:106 -#: src/Dashboard/DemoProvider.php:202 -msgid "Consumed energy" -msgstr "Energía consumida" +#: src/Dashboard/Widget.php:55 src/Dashboard/Grid.php:310 +msgid "Environmental impact information video" +msgstr "Video informativo sobre el impacto ambiental" #: src/Dashboard/Widget.php:62 msgid "Methodology information" @@ -953,10 +990,19 @@ msgstr "Emisión Total de Carbono" msgid "Monthly Carbon Emission" msgstr "Emisiones de Carbono Mensuales" +#: src/Dashboard/Widget.php:85 src/Dashboard/Widget.php:604 +#: src/Dashboard/Grid.php:268 +msgid "Biggest monthly averaged carbon emission per model" +msgstr "Máximo promedio mensual de emisiones de carbono por modelo" + #: src/Dashboard/Widget.php:93 msgid "Carbon Emission Per month" msgstr "Emisión de carbono por mes" +#: src/Dashboard/Widget.php:100 src/Dashboard/Provider.php:733 +msgid "Usage abiotic depletion potential" +msgstr "Potencial de agotamiento abiótico por uso" + #: src/Dashboard/Widget.php:130 msgid "Impact criteria" msgstr "Criterios de impacto" @@ -977,355 +1023,280 @@ msgstr "Equipos de red no gestionados" msgid "Radar chart" msgstr "Gráfico de radar" -#: src/Dashboard/Widget.php:746 -#, php-format -msgid "" -"Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " -"months. %s More information %s" -msgstr "" -"Evalúa la emisión de carbono por uso en CO₂ equivalente durante los últimos " -"2 meses. %s Más información %s" - -#: src/Dashboard/Widget.php:812 -#, php-format -msgid "" -"Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " -"elapsed months. %s More information %s" -msgstr "" -"Evalúa la emisión de carbono por uso en CO₂ equivalente durante los últimos " -"12 meses transcurridos. %s Más información %s" - -#: src/Dashboard/Widget.php:854 -msgid "More information" -msgstr "Más información" - -#: src/Dashboard/Widget.php:893 -#, php-format -msgid "" -"Evaluates the consumption of non renewable resources in Antimony equivalent." -" %s More information %s" -msgstr "" -"Evalúa el consumo de recursos no renovables en Antimonio equivalente. %s Más" -" información %s" - -#: src/Dashboard/Widget.php:1097 -msgid "Handled percentage" -msgstr "Porcentaje gestionado" - -#: src/Dashboard/Dashboard.php:68 -msgid "Carbon dioxyde intensity" -msgstr "Intensidad de dióxido de carbono" - -#: src/Dashboard/DemoProvider.php:76 -msgid "Usage carbon emission per month" -msgstr "Emisiones de carbono por uso por mes" - -#: src/Dashboard/DemoProvider.php:274 -msgid "plugin carbon - handled assets ratio" -msgstr "complemento carbono - proporción de activos gestionados" - -#: src/Impact/Type.php:159 -msgid "Embodied Global warming potential" -msgstr "Impacto incorporado – Potencial de calentamiento global" - -#: src/Impact/Type.php:160 -msgid "Embodied Abiotic depletion potential" -msgstr "Impacto incorporado – Potencial de agotamiento abiótico" - -#: src/Impact/Type.php:161 -msgid "Embodied Primary energy consumed" -msgstr "Impacto incorporado – Energía primaria consumida" - -#: src/Impact/Type.php:162 -msgid "Embodied Climate change - Contribution of biogenic emissions" -msgstr "" -"Impacto incorporado – Cambio climático: contribución de emisiones biogénicas" - -#: src/Impact/Type.php:163 -msgid "Embodied Climate change - Contribution of fossil fuel emissions" -msgstr "" -"Impacto incorporado – Cambio climático: contribución de emisiones de " -"combustibles fósiles" - -#: src/Impact/Type.php:164 -msgid "" -"Embodied Climate change - Contribution of emissions from land use change" -msgstr "" -"Impacto incorporado – Cambio climático: contribución de emisiones por cambio" -" de uso de suelo" - -#: src/Impact/Type.php:165 -msgid "Embodied Emissions of radionizing substances" -msgstr "Impacto incorporado – Emisiones de sustancias radiactivas" - -#: src/Impact/Type.php:166 -msgid "Embodied Land use" -msgstr "Impacto incorporado – Uso del suelo" - -#: src/Impact/Type.php:167 -msgid "Embodied Depletion of the ozone layer" -msgstr "Impacto incorporado – Agotamiento de la capa de ozono" - -#: src/Impact/Type.php:168 -msgid "Embodied Fine particle emissions" -msgstr "Impacto incorporado – Emisiones de partículas finas" - -#: src/Impact/Type.php:169 -msgid "Embodied Photochemical ozone formation" -msgstr "Impacto incorporado – Formación fotoquímica de ozono" - -#: src/Impact/Type.php:170 -msgid "Embodied Use of water resources" -msgstr "Impacto incorporado – Uso de recursos hídricos" - -#: src/Impact/Type.php:171 -msgid "Embodied Material input per unit of service" -msgstr "Impacto incorporado – Entrada de materiales por unidad de servicio" - -#: src/Impact/Type.php:172 -msgid "Embodied Use of mineral and metal resources" -msgstr "Impacto incorporado – Uso de recursos minerales y metálicos" +#: src/Dashboard/Widget.php:501 src/Dashboard/Provider.php:1107 +msgid "Consumed energy and carbon emission per month" +msgstr "Consumo de energía y emisión de carbono por mes" -#: src/Impact/Type.php:173 -msgid "Embodied Use of fossil resources (including nuclear)" -msgstr "Impacto incorporado – Uso de recursos fósiles (incluido nuclear)" +#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:561 +#: src/Dashboard/Provider.php:1212 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "Carbon emission" +msgstr "Emisión de carbono" -#: src/Impact/Type.php:174 -msgid "Embodied Acidification" -msgstr "Impacto incorporado – Acidificación" +#: src/Dashboard/Widget.php:551 src/Dashboard/Widget.php:564 +#: src/Dashboard/Provider.php:1228 src/Dashboard/DemoProvider.php:106 +#: src/Dashboard/DemoProvider.php:202 +msgid "Consumed energy" +msgstr "Energía consumida" -#: src/Impact/Type.php:175 -msgid "Embodied Freshwater ecotoxicity" -msgstr "Impacto incorporado – Ecotoxicidad de agua dulce" +#: src/Dashboard/Widget.php:746 +#, php-format +msgid "" +"Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " +"months. %s More information %s" +msgstr "" +"Evalúa la emisión de carbono por uso en CO₂ equivalente durante los últimos " +"2 meses. %s Más información %s" -#: src/Impact/Type.php:178 -msgid "Embodied Eutrophication of freshwater" -msgstr "Impacto incorporado – Eutrofización de agua dulce" +#: src/Dashboard/Widget.php:812 +#, php-format +msgid "" +"Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " +"elapsed months. %s More information %s" +msgstr "" +"Evalúa la emisión de carbono por uso en CO₂ equivalente durante los últimos " +"12 meses transcurridos. %s Más información %s" -#: src/Impact/Type.php:179 -msgid "Embodied Eutrophication of marine waters" -msgstr "Impacto incorporado – Eutrofización de aguas marinas" +#: src/Dashboard/Widget.php:854 +msgid "More information" +msgstr "Más información" -#: src/Impact/Type.php:180 -msgid "Embodied Terrestrial eutrophication" -msgstr "Impacto incorporado – Eutrofización terrestre" +#: src/Dashboard/Widget.php:893 +#, php-format +msgid "" +"Evaluates the consumption of non renewable resources in Antimony equivalent." +" %s More information %s" +msgstr "" +"Evalúa el consumo de recursos no renovables en Antimonio equivalente. %s Más" +" información %s" -#: src/Impact/Type.php:195 -msgid "Usage Global warming potential" -msgstr "Uso – Potencial de calentamiento global" +#: src/Dashboard/Widget.php:1097 +msgid "Handled percentage" +msgstr "Porcentaje gestionado" -#: src/Impact/Type.php:196 -msgid "Usage Abiotic depletion potential" -msgstr "Uso – Potencial de agotamiento abiótico" +#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 +#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 +#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "CO₂eq" +msgstr "CO₂eq" -#: src/Impact/Type.php:197 -msgid "Usage Primary energy consumed" -msgstr "Uso – Energía primaria consumida" +#: src/Dashboard/Provider.php:195 src/Dashboard/Provider.php:318 +#: src/Dashboard/Provider.php:1199 src/Toolbox.php:243 +msgid "g" +msgstr "g" -#: src/Impact/Type.php:198 -msgid "Usage Climate change - Contribution of biogenic emissions" -msgstr "Uso – Cambio climático: contribución de emisiones biogénicas" +#: src/Dashboard/Provider.php:196 src/Dashboard/Provider.php:319 +#: src/Dashboard/Provider.php:1200 src/Toolbox.php:244 +msgid "Kg" +msgstr "Kg" -#: src/Impact/Type.php:199 -msgid "Usage Climate change - Contribution of fossil fuel emissions" -msgstr "" -"Uso – Cambio climático: contribución de emisiones de combustibles fósiles" +#: src/Dashboard/Provider.php:197 src/Dashboard/Provider.php:320 +#: src/Dashboard/Provider.php:1201 src/Toolbox.php:245 +msgid "t" +msgstr "t" -#: src/Impact/Type.php:200 -msgid "Usage Climate change - Contribution of emissions from land use change" -msgstr "" -"Uso – Cambio climático: contribución de emisiones por cambio de uso de suelo" +#: src/Dashboard/Provider.php:198 src/Dashboard/Provider.php:321 +#: src/Dashboard/Provider.php:1202 src/Toolbox.php:246 +msgid "Kt" +msgstr "Kt" -#: src/Impact/Type.php:201 -msgid "Usage Emissions of radionizing substances" -msgstr "Uso – Emisiones de sustancias radiactivas" +#: src/Dashboard/Provider.php:199 src/Dashboard/Provider.php:322 +#: src/Dashboard/Provider.php:1203 src/Toolbox.php:247 +msgid "Mt" +msgstr "Mt" -#: src/Impact/Type.php:202 -msgid "Usage Land use" -msgstr "Uso – Uso del suelo" +#: src/Dashboard/Provider.php:200 src/Dashboard/Provider.php:323 +#: src/Dashboard/Provider.php:1204 src/Toolbox.php:248 +msgid "Gt" +msgstr "Gt" -#: src/Impact/Type.php:203 -msgid "Usage Depletion of the ozone layer" -msgstr "Uso – Agotamiento de la capa de ozono" +#: src/Dashboard/Provider.php:201 src/Dashboard/Provider.php:324 +#: src/Dashboard/Provider.php:1205 src/Toolbox.php:249 +msgid "Tt" +msgstr "Tt" -#: src/Impact/Type.php:204 -msgid "Usage Fine particle emissions" -msgstr "Uso – Emisiones de partículas finas" +#: src/Dashboard/Provider.php:202 src/Dashboard/Provider.php:325 +#: src/Dashboard/Provider.php:1206 src/Toolbox.php:250 +msgid "Pt" +msgstr "Pt" -#: src/Impact/Type.php:205 -msgid "Usage Photochemical ozone formation" -msgstr "Uso – Formación fotoquímica de ozono" +#: src/Dashboard/Provider.php:203 src/Dashboard/Provider.php:326 +#: src/Dashboard/Provider.php:1207 src/Toolbox.php:251 +msgid "Et" +msgstr "Et" -#: src/Impact/Type.php:206 -msgid "Usage Use of water resources" -msgstr "Uso – Uso de recursos hídricos" +#: src/Dashboard/Provider.php:204 src/Dashboard/Provider.php:327 +#: src/Dashboard/Provider.php:1208 src/Toolbox.php:252 +msgid "Zt" +msgstr "Zt" -#: src/Impact/Type.php:207 -msgid "Usage Material input per unit of service" -msgstr "Uso – Entrada de materiales por unidad de servicio" +#: src/Dashboard/Provider.php:205 src/Dashboard/Provider.php:328 +#: src/Dashboard/Provider.php:1209 src/Toolbox.php:253 +msgid "Yt" +msgstr "Yt" -#: src/Impact/Type.php:208 -msgid "Usage Use of mineral and metal resources" -msgstr "Uso – Uso de recursos minerales y metálicos" +#: src/Dashboard/Provider.php:427 +msgid "handled assets ratio" +msgstr "proporción de activos gestionados" -#: src/Impact/Type.php:209 -msgid "Usage Use of fossil resources (including nuclear)" -msgstr "Uso – Uso de recursos fósiles (incluido nuclear)" +#: src/Dashboard/Provider.php:473 src/Dashboard/Grid.php:63 +msgid "Handled assets ratio" +msgstr "Proporción de activos gestionados" -#: src/Impact/Type.php:210 -msgid "Usage Acidification" -msgstr "Uso – Acidificación" +#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 +msgid "Handled" +msgstr "Gestionado" -#: src/Impact/Type.php:211 -msgid "Usage Freshwater ecotoxicity" -msgstr "Uso – Ecotoxicidad de agua dulce" +#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 +msgid "Unhandled" +msgstr "No gestionado" -#: src/Impact/Type.php:214 src/Impact/Type.php:342 -msgid "Usage Eutrophication of freshwater" -msgstr "Uso – Eutrofización de agua dulce" +#: src/Dashboard/Provider.php:507 +msgid "Ignored" +msgstr "Ignorados" -#: src/Impact/Type.php:215 src/Impact/Type.php:343 -msgid "Usage Eutrophication of marine waters" -msgstr "Uso – Eutrofización de aguas marinas" +#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 +#, php-format +msgid "plugin carbon - handled %s" +msgstr "complemento carbono - gestionado %s" -#: src/Impact/Type.php:216 src/Impact/Type.php:344 -msgid "Usage Terrestrial eutrophication" -msgstr "Uso – Eutrofización terrestre" +#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 +#, php-format +msgid "plugin carbon - unhandled %s" +msgstr "complemento carbono - no gestionado %s" -#: src/Impact/Type.php:231 -msgid "Total Global warming potential" -msgstr "Total – Potencial de calentamiento global" +#: src/Dashboard/Provider.php:584 +#, php-format +msgid "plugin carbon - ignored %s" +msgstr "complemento carbono - ignorados %s" -#: src/Impact/Type.php:232 -msgid "Total Abiotic depletion potential" -msgstr "Total – Potencial de agotamiento abiótico" +#: src/Dashboard/Provider.php:632 +msgid "plugin carbon - Total usage power consumption" +msgstr "complemento carbono - Consumo total de potencia por uso" -#: src/Impact/Type.php:233 -msgid "Total Primary energy consumed" -msgstr "Total – Energía primaria consumida" +#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 +msgid "plugin carbon - Usage carbon emission" +msgstr "complemento carbono - Emisión de carbono por uso" -#: src/Impact/Type.php:234 -msgid "Total Climate change - Contribution of biogenic emissions" -msgstr "Total – Cambio climático: contribución de emisiones biogénicas" +#: src/Dashboard/Provider.php:747 +msgid "Sbeq" +msgstr "Sbeq" -#: src/Impact/Type.php:235 -msgid "Total Climate change - Contribution of fossil fuel emissions" -msgstr "" -"Total – Cambio climático: contribución de emisiones de combustibles fósiles" +#: src/Dashboard/Provider.php:1035 +msgid "Total abiotic depletion potential" +msgstr "Potencial de agotamiento abiótico total" -#: src/Impact/Type.php:236 -msgid "Total Climate change - Contribution of emissions from land use change" -msgstr "" -"Total – Cambio climático: contribución de emisiones por cambio de uso de " -"suelo" +#: src/Dashboard/Provider.php:1051 +msgid "Embodied abiotic depletion potential" +msgstr "Potencial de agotamiento abiótico incorporado" -#: src/Impact/Type.php:237 -msgid "Total Emissions of radionizing substances" -msgstr "Total – Emisiones de sustancias radiactivas" +#: src/Dashboard/Provider.php:1054 +msgid "Total usage abiotic depletion potential" +msgstr "Potencial de agotamiento abiótico por uso total" -#: src/Impact/Type.php:238 -msgid "Total Land use" -msgstr "Total – Uso del suelo" +#: src/Dashboard/Provider.php:1066 +msgid "Total global warming potential" +msgstr "Potencial de calentamiento global total" -#: src/Impact/Type.php:239 -msgid "Total Depletion of the ozone layer" -msgstr "Total – Agotamiento de la capa de ozono" +#: src/Dashboard/Provider.php:1082 +msgid "Embodied global warming potential" +msgstr "Potencial de calentamiento global incorporado" -#: src/Impact/Type.php:240 -msgid "Total Fine particle emissions" -msgstr "Total – Emisiones de partículas finas" +#: src/Dashboard/Provider.php:1085 +msgid "Total usage global warming potential" +msgstr "Potencial de calentamiento global por uso total" -#: src/Impact/Type.php:241 -msgid "Total Photochemical ozone formation" -msgstr "Total – Formación fotoquímica de ozono" +#: src/Dashboard/Provider.php:1218 src/Toolbox.php:316 +msgid "KWh" +msgstr "KWh" -#: src/Impact/Type.php:242 -msgid "Total Use of water resources" -msgstr "Total – Uso de recursos hídricos" +#: src/Dashboard/Provider.php:1219 src/Toolbox.php:317 +msgid "MWh" +msgstr "MWh" -#: src/Impact/Type.php:243 -msgid "Total Material input per unit of service" -msgstr "Total – Entrada de materiales por unidad de servicio" +#: src/Dashboard/Provider.php:1220 src/Toolbox.php:318 +msgid "GWh" +msgstr "GWh" -#: src/Impact/Type.php:244 -msgid "Total Use of mineral and metal resources" -msgstr "Total – Uso de recursos minerales y metálicos" +#: src/Dashboard/Provider.php:1221 src/Toolbox.php:319 +msgid "TWh" +msgstr "TWh" -#: src/Impact/Type.php:245 -msgid "Total Use of fossil resources (including nuclear)" -msgstr "Total – Uso de recursos fósiles (incluido nuclear)" +#: src/Dashboard/Provider.php:1222 src/Toolbox.php:320 +msgid "PWh" +msgstr "PWh" -#: src/Impact/Type.php:246 -msgid "Total Acidification" -msgstr "Total – Acidificación" +#: src/Dashboard/Provider.php:1223 src/Toolbox.php:321 +msgid "EWh" +msgstr "EWh" -#: src/Impact/Type.php:247 -msgid "Total Freshwater ecotoxicity" -msgstr "Total – Ecotoxicidad de agua dulce" +#: src/Dashboard/Provider.php:1224 src/Toolbox.php:322 +msgid "ZWh" +msgstr "ZWh" -#: src/Impact/Type.php:250 -msgid "Total Eutrophication of freshwater" -msgstr "Total – Eutrofización de agua dulce" +#: src/Dashboard/Provider.php:1225 src/Toolbox.php:323 +msgid "YWh" +msgstr "YWh" -#: src/Impact/Type.php:251 -msgid "Total Eutrophication of marine waters" -msgstr "Total – Eutrofización de aguas marinas" +#: src/Dashboard/Grid.php:72 +msgid "Handled assets count" +msgstr "Cantidad de activos gestionados" -#: src/Impact/Type.php:252 -msgid "Total Terrestrial eutrophication" -msgstr "Total – Eutrofización terrestre" +#: src/Dashboard/Grid.php:135 +#, php-format +msgid "Handled %s" +msgstr "Gestionados %s" -#: src/Impact/Type.php:323 -msgid "Carbon emission in CO₂ equivalent" -msgstr "Emisión de carbono en CO₂ equivalente" +#: src/Dashboard/Grid.php:146 +#, php-format +msgid "Unhandled %s" +msgstr "No gestionados %s" -#: src/Impact/Type.php:324 -msgid "Consumption of non renewable resources in Antimony equivalent." -msgstr "Consumo de recursos no renovables en antimonio equivalente." +#: src/Dashboard/Grid.php:232 +#, php-format +msgid "Unhandled %s ratio" +msgstr "Proporción de %s no gestionados" -#: src/Impact/Type.php:325 -msgid "Primary energy consumed." -msgstr "Energía primaria consumida." +#: src/Dashboard/Grid.php:244 +msgid "Usage carbon emission year to date" +msgstr "Emisión de carbono por uso acumulada anual" -#: src/Impact/Type.php:332 -msgid "Incidence of disease" -msgstr "Incidencia de la enfermedad" +#: src/Dashboard/Grid.php:250 +msgid "Monthly carbon emission" +msgstr "Emisión de carbono mensual" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 -#: src/Impact/Usage/AbstractUsageImpact.php:91 -msgid "grams of carbon dioxyde equivalent" -msgstr "gramos de dióxido de carbono equivalente" +#: src/Dashboard/Grid.php:259 +msgid "Usage global warming potential chart" +msgstr "Gráfico de potencial de calentamiento global por uso" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 -#: src/Impact/Usage/AbstractUsageImpact.php:93 -msgid "grams of antimony equivalent" -msgstr "gramos de antimonio equivalente" +#: src/Dashboard/Grid.php:315 +msgid "Environmental impact methodology information" +msgstr "Información sobre la metodología de impacto ambiental" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 -#: src/Impact/Usage/AbstractUsageImpact.php:95 -msgid "joules" -msgstr "joules" +#: src/Dashboard/DemoProvider.php:76 +msgid "Usage carbon emission per month" +msgstr "Emisiones de carbono por uso por mes" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 -msgid "Connection to Boavizta failed." -msgstr "La conexión a Boavizta falló." +#: src/Dashboard/DemoProvider.php:274 +msgid "plugin carbon - handled assets ratio" +msgstr "complemento carbono - proporción de activos gestionados" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 -msgid "Embodied impact evaluation falied." -msgstr "La valoración de la evaluación del impacto incorporado falló." +#: src/Dashboard/Dashboard.php:68 +msgid "Carbon dioxyde intensity" +msgstr "Intensidad de dióxido de carbono" -#: src/Impact/History/AbstractAsset.php:370 -msgid "Error while calculating impact" -msgstr "Error al calcular el impacto" +#: src/Location.php:189 +msgid "Carbon intensity source and zone" +msgstr "Fuente y zona de intensidad de carbono" -#: src/Impact/History/AbstractAsset.php:378 -msgid "Nothing to calculate" -msgstr "No hay nada para calcular" +#: src/CarbonIntensity.php:87 +msgid "Emission date" +msgstr "Fecha de emisión" -#: src/Impact/History/AbstractAsset.php:384 -#, php-format -msgid "%d entries calculated" -msgstr "%d entradas calculadas" +#: src/CarbonIntensity.php:114 +msgid "Intensity" +msgstr "Intensidad" #: src/CarbonEmission.php:49 msgid "Carbon Emission" @@ -1350,107 +1321,138 @@ msgstr "Calidad de la energía" msgid "Emission quality" msgstr "Calidad de emisión" -#: src/Command/CreateTestInventoryCommand.php:145 -msgid "Creating test inventory" -msgstr "Creando inventario de prueba" +#: src/Toolbox.php:280 +msgid "W" +msgstr "W" -#: src/Command/CreateFakeCarbonIntensityCommand.php:67 -#: src/Command/CollectCarbonIntensityCommand.php:122 -msgid "Creating data source name" -msgstr "Creando nombre de la fuente de datos" +#: src/Toolbox.php:281 +msgid "KW" +msgstr "KW" -#: src/Command/CreateFakeCarbonIntensityCommand.php:78 -msgid "Creating data zone name" -msgstr "Creando nombre de la zona de datos" +#: src/Toolbox.php:282 +msgid "MW" +msgstr "MW" -#: src/Command/CreateFakeCarbonIntensityCommand.php:89 -msgid "Creating fake data..." -msgstr "Creando datos de prueba..." +#: src/Toolbox.php:283 +msgid "GW" +msgstr "GW" -#: src/Command/ExportDashboardCommand.php:68 -msgid "Updating the report dashboard description" -msgstr "Actualizando la descripción del tablero de reportes" +#: src/Toolbox.php:284 +msgid "TW" +msgstr "TW" -#: src/Command/ExportDashboardCommand.php:73 -msgid "Dashboard not found" -msgstr "Tablero no encontrado" +#: src/Toolbox.php:285 +msgid "PW" +msgstr "PW" -#: src/Command/ExportDashboardCommand.php:99 -#, php-format -msgid "Dashboard description saved to %s" -msgstr "Descripción del tablero guardada en %s" +#: src/Toolbox.php:286 +msgid "EW" +msgstr "EW" -#: src/Command/CollectCarbonIntensityCommand.php:69 -msgid "Read carbon dioxyde intensity from external sources" -msgstr "Leer intensidad de carbono de fuentes externas" +#: src/Toolbox.php:287 +msgid "ZW" +msgstr "ZW" -#: src/Command/CollectCarbonIntensityCommand.php:83 -msgid "Source:" -msgstr "Fuente:" +#: src/Toolbox.php:288 +msgid "YW" +msgstr "YW" + +#: src/Toolbox.php:315 +msgid "Wh" +msgstr "Watts-hora" + +#: src/Toolbox.php:373 src/Toolbox.php:378 +#, php-format +msgid "%1$s %2$s" +msgstr "%1$s %2$s" + +#: setup.php:285 +msgid "Environmental Impact" +msgstr "Impacto Ambiental" -#: src/Command/CollectCarbonIntensityCommand.php:94 +#: hook.php:97 msgid "" -"The selected source does not enumerates its supported zones. Trying to " -"identify a zone from an address" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." msgstr "" -"La fuente seleccionada no enumera sus zonas compatibles. Intentando " -"identificar una zona a partir de una dirección" +"Por favor, revisá los registros para más detalles. Abrí un reporte en el " +"repositorio del complemento." -#: src/Command/CollectCarbonIntensityCommand.php:98 -msgid "Geocoding is not enabled. Cannot resolve an address into a zone" -msgstr "" -"La geolocalización no está activada. No se puede resolver una dirección en " -"una zona" +#: hook.php:301 +msgid "Associate to an usage profile" +msgstr "Asociar a un perfil de uso" -#: src/Command/CollectCarbonIntensityCommand.php:103 -msgid "Address:" -msgstr "Dirección:" +#: hook.php:302 hook.php:307 +msgid "Delete all calculated environmental impacts" +msgstr "Eliminar todos los impactos ambientales calculados" -#: src/Command/CollectCarbonIntensityCommand.php:106 -msgid "Zone:" -msgstr "Zona:" +#: hook.php:311 hook.php:316 hook.php:320 +msgid "Update type power consumption" +msgstr "Actualizar el consumo de potencia del tipo" + +#: hook.php:312 +msgid "Update category" +msgstr "Actualizar categoría" + +#: hook.php:324 +msgid "Update zone for Boavizta engine" +msgstr "Actualizar zona para el motor Boavizta" -#: src/Command/CollectCarbonIntensityCommand.php:133 -msgid "Source not found" -msgstr "Fuente no encontrada" +#: hook.php:325 +msgid "Update carbon intensity source and zone" +msgstr "Actualizar la fuente y la zona de intensidad de carbono" -#: src/Command/CollectCarbonIntensityCommand.php:157 -msgid "Creation of relation between source and zone failed" -msgstr "Falló la creación de la relación entre la fuente y la zona" +#: install/install/create_automatic_actions.php:52 +msgid "Find the Alpha3 country code (ISO3166) of locations" +msgstr "Buscar el código de país Alpha3 (ISO3166) de las ubicaciones" -#: src/Command/CollectCarbonIntensityCommand.php:163 -msgid "Reading data..." -msgstr "Leyendo datos..." +#: install/install/create_automatic_actions.php:64 +msgid "Compute carbon emissions of computers" +msgstr "Calcular las emisiones de carbono de las computadoras" -#: src/DataSource/Lca/Boaviztapi/Config.php:100 -msgid "Invalid Boavizta API URL" -msgstr "URL de la API de Boavizta no válida" +#: install/install/create_automatic_actions.php:76 +msgid "Compute embodied impact of assets" +msgstr "Calcular el impacto incorporado de los activos" -#: src/DataSource/Lca/Boaviztapi/Config.php:108 -msgid "Connection to Boavizta API established" -msgstr "Conexión con la API de Boavizta establecida" +#: install/install/create_uasge_profiles.php:41 +msgid "Always on" +msgstr "Siempre encendido" -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:55 -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:55 -msgid "Resource diagnosis" -msgstr "Diagnóstico de recursos" +#: install/install/create_uasge_profiles.php:52 +msgid "Office hours" +msgstr "Horario de oficina" -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:70 -msgid "Collect carbon intensities from Electricity Maps" -msgstr "Recopilar intensidades de carbono de ElectricityMap" +#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 +#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 +msgid "Missing arguments in request." +msgstr "Faltan argumentos en la solicitud." -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:88 -msgid "Download carbon emissions from Electricity Maps" -msgstr "Descargar las emisiones de carbono de ElectricityMap" +#: front/usageimpact.form.php:80 front/usageimpact.form.php:106 +#: front/usageimpact.form.php:114 front/embodiedimpact.form.php:92 +msgid "Bad arguments." +msgstr "Argumentos inválidos." -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:86 -msgid "Collect carbon intensities from RTE" -msgstr "Recopilar intensidades de carbono de RTE" +#: front/usageimpact.form.php:90 front/embodiedimpact.form.php:68 +#: front/embodiedimpact.form.php:77 +msgid "Reset denied." +msgstr "Restablecimiento denegado." -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:104 -msgid "Download carbon emissions from RTE" -msgstr "Descargar las emisiones de carbono de RTE" +#: front/usageimpact.form.php:95 front/embodiedimpact.form.php:82 +msgid "Reset failed." +msgstr "Error al restablecer." -#: setup.php:285 -msgid "Environmental Impact" -msgstr "Impacto Ambiental" +#: front/usageimpact.form.php:122 +msgid "Missing data prevents historization of this asset." +msgstr "La falta de datos impide generar el historial de este activo." + +#: front/usageimpact.form.php:125 +msgid "Update of global warming potential failed." +msgstr "Error al actualizar el potencial de calentamiento global." + +#: front/usageimpact.form.php:131 front/embodiedimpact.form.php:101 +msgid "Unable to find calculation engine for this asset." +msgstr "No se pudo encontrar el motor de cálculo para este activo." + +#: front/usageimpact.form.php:136 +msgid "Update of usage impact failed." +msgstr "Error al actualizar el impacto de uso." diff --git a/locales/tr_TR.mo b/locales/tr_TR.mo index b29b89d9ee2ac642644d5211a416914d3e4c0f9c..928e25f0433aa49edba322eb79260e99d5480cb2 100644 GIT binary patch delta 6686 zcmYk=3w+P@9>?+THoF;Pb~VO-ciW7a37NGBb2nxo$s$J4W#XvmAEk>#3#XFYc2b#3 znoc*@=^`goB9fM(i^wIEPIO-HeZPA=&hOF3^Yi`we!uVU`})fy8NYYbH;7$Y$pqc9CeV?GAqOQ`GC;P3c4hTy9$jETd| z=)uo16o12PW4y+fr>cQY*ckIL5C@}hfVPUW}zQX zZ;Lrdl_^0z?;&i!^UdQVx^OuJ(GT|+(+E>hLz#okFdy|s!!QFM#woZC z)$v#wQ3uknJ$A(eoP?=3A2mXo(W~SG5??%oes~0v@EB^YeYraqn_~eM;|;h1HA1zh z4*4^DDraLG9DyF3jl7dtjWlU$Fbq#5GX8pl%T#Cx6L_iz`yy3lGHU1-psw46YUnKT zpJ~F=)L;&Juo&r!nSq+)rKmMkiF(mZ&KmTid?49t7uT0mXz0E{Ew(eRd=Vok`_VfY zgX(A|f9Q>iP;)*Tb^l8A#f>-)-@tn@ig7Q+Cy*+09y?-;mvPeE4nW;F0@bryP(ys1 zt6zbElviUzT#M?^o6bF`wNZ=e$OY8>K56#48<8Dnic#&{hgu`v2S_wT^H2>w?_7`S zSPcf_KGb$QjJokWY7TwU?P?Ck8!2aCK2E`YxB>NIS5PnZmn&;NsrMQ`k^oKwI2)rn z5@9beX{a09VhCoThAi&b7w!??9nDW=y13R{}*H1^a`v}JH ze6xf^H*UZX+=N;jTd{7aF@drVo4Fw-q29E;vpZ_;`(pzfgBsCssOu-Y^8Kh!csc4h z&!Sh0VL6E|T;nd-gc^a5P;dGfs)IkErs8MR1J0n<#6?uYjkE0aiKwCPf|{aY9Es(q zsXK%Win*G__-p@WbTDQD4nz-b#v(k31(?nRYBiT(Ay(rM^k`P#yXa zyW&;sg`IQkhin#VMBmL}{8`B6n5zivWP6;BdV?XTAC0M~ef|`N;#y>fnRhS|ze8Og zaGiaDB&6@A7wWnhsCHJOI=U6rUagmeZ-KdnTE!`y?NIkey~!X{L${-*WHD;dEl16H z73#WeuKYRbK_^jj?Ayhj55*>w6EGdKQ62E!N}`^ZV{2TB8j*L=A5Wlqdcc+Cb94e4IgP<@RWQvYuDhBWk0 z?t>bMQq*-zQ4Q@vb?{r%3;5C-btC~91k(#Ova>K2SEEL5E4I}B|CGdsiZiG;Jd4^D ze%!V5H|dCavq7$0hPr+M>OoaFmt;MvLml(&uITO@hTgk5F^NPEK7vj0 zTkOk?=TRflt%qHtgHcm310(S@WVXz948lJ#4E=iA5sXB&7l&%U9VTKYjKYyU8UN-a z_fVnLIS;iPmZIjU2ANiK5Ls6y>?S+M{ZS9R6a8=+YOeo*THUW>3?48sg;B^cI^zjL6sj3kw02kM5OFbyO6+j1VJQ=W_|xWv_OK@a7hkdLPc zrnNShhiY#kYOyXvzHR1B)ODv(?ZgkPYu{@MY+|ON8d!#2v6sJ4qViM)W7_a^R4vFUUC~7FLp@uSIFe@FS@orp*Q}J)q z+)o{1x8*aa4sAo-w+A%^dr^z_Gglu{Xt!Y~HljWTV|l(wCedom$EG;aIT@J^^B`&t zKSW)39M!;|*aQQI+T9Y3I-idE4)nwz9E-s?3FEK~wd*R-+l-`&L_@U=Z@@#SeH}H- z{>`Nj^=6AvZ}yxkzvx_!dcZ2w1FKMTzuBGt3U%Kx48`N_{JCL_zb=d_vU8G)>QD)W z;WTW4k6{m7jrwq$bpC}}oZ-XmNaUe9ItX=LA$qVB)y|U`i7%r@;Jx9De>llOD*S!; zn+>Xgv&FW@7jP`)%g86f+7*rN4ue3Z~{i- zOfQMvv;x&&B{sln)arg4wI;T^@~5ad{1Ub3E}?db&q(_l5{#`Vw?YkdcZ|USs1DwN znu=0X``)`q^af?99xZgff(ewjqxSQ6$RL=8qwJfMU`NXH(Stj1JRW!D-nZB(n~41W zn6=mkf5x%cVKo29;rZrSlG~~H6}2x5Z?!`<9iu4ELoLcxNZaN(YASNa*ay!+-B*d~ z@NQTB1rsSZz0H22b5Pe6VRM{`ncDx0NVK1KI={zOl>NurACDx=q+EopaSp1X)y|Kw z9p%%`7A1D5`=RE3AZB9;YTGVGP4y~_@{(*KiN)Qh)%iWP#4D&djAD3HpNtxjZm0(i z#dw^J30R34_#x^OegU;DTaL3+n1WghgRloqL@%Rh){+!p(0JQWA!^R2p|Vlh_;M zCfXavqZ)h;HMH+x3hqZAyo{;%2L_<0)J{dJGadb?&&0Oap_K9WB^l!`C~+5zM{TcC z48&>fd^zetUes=xjdA#bE5C($z<$*I2T)U2i`p%hP!CR=mRLe)7FQ8Ev}@bcW%k>qG|Dx8(AC$| zkox%)v^;c_SnB?K#^suBQ%U^pDjvpUqU)lMBU^Z1BKw5U5kYfrQ@% zg~X@C8^p)NKH_UaM>+8~(ZF?L8~GYy1@Qv0iTEcG$ocj}H2Leqt;AeHM=14SI8dvj z{&L%5}SsSCPf9$h4ta`)9+NS>l(cIH` delta 6837 zcmYk=30PKD9>?(mh@dE|pyI+6TtHDl+$}{A#eE6frpy;*6NE&;vgNHTw=%aJ%QUT~ zQPC+Cw=#7qmnqZCWwLRZvaHFaR%1L+34T`Y>XSR5gx!0JdbgB8ACCgUXw5m z6EO?9WS&6v_cGR^f3uE^Zrp@w;2f%BpXSE2!cgptU9klgVKOen4!93n<7MQZiHvav z)EV1T?uWgx3^njA*bon6q?gQ>w&EtHP!4n4jxtcYkdO87Vbqe&!*F~aHM4ct4o~7# z)F?H964c5(iXCww#^N4qgP)^UOBG11Y>d9x7X7e2w!~!Ao{z@6a4KeECHBFqsFg}# z`81$$sPY_)$4%(qDP)f3I?}g^YRUSCk?Bq^n!zB{QdXdYtC4%nUep#`K;74n*40ot zQe`Hg8k~m?Rw83Ehf#Zd8TD@6Kuy%2PGnSTuRGH=RMe)T9ct-1*>Yc7&cp`PkFgdb z|I8Eo(2Uok_Wl&=`D^HleysB(tc}xf3Krm50l)!_G5pSJG6 zqOcD2v8ZF0hlsDq8C%~T^xkI?3*Sw6g9CCZrN+H?1eE{n+xNu9@Ibz z?Da=c4?d1T_!Mdh7bDwhcB0;ebEt{Tvx19e|edv}0Mu^#1Qyo9|`&nI+n2b_qbDJNkX&PCn-A%@Yv`IL;7 z^jp+}z8uyd^vCM&0ahJYR(+He`<8e2tov6<4mUTxB zXbASe9L&H~omqc<(JoM-rH$#rzF``wT#Op=BGe4Fqkf5;K%MuWFc?F+x?j5H7)N;k z>i!~ha6U2@Q;D2da~9Q(zqgw^(pXf3{g7{inS^?qpFu74W{kipR6~bQTXGZiGWm6P z_dXPLUz{y>Lv=I=wbl9d`g9DT?43)dEtwUl0lbGA`4M|Cs} z`DdQyhn937YDN8fx+|E5dOp{d7ok>kE7FhGoF=0YUPlceqL=*yqn4^KYDuS{2KF2} zxCylqM^N|OLA4W4?;2nRY6AJFt(=Q2mZ?Oo>;;Ube-m)GyL7SGlnY(Z2S=f1n1wnO z1*olfz&aiE_E(^un`P@)SXbKXt5I9^3Tg#6+Ur};hyKkrGHPH4YNRKy0bWNPtDxR) zIUIFg8{`{f`k|Jx45RS{)Xb`E`84YOtEdTu_F?UVqfsleHqCuWx1qM+Eb95-bdD&t#6Y|s!>|Cgg0nCbpG394ES>d_BeRl< zDBO#U@f7Oq{1J5;?qE2!>BqMMd!k;t3XH+cs1A>zAAW|~>vO1=J2J!lFr^~jI5Q5_ z&ioA4KatD+Et8R9o zPQf>*cEU2x8>v5mhx?EjR`!| z4o9Gak02javl`>^IJUuC*b3u@@_R(*e;^s%_&BPe?Wl&%S_6l<4Rl7`cOM4eQVhnG zsFm4(LHIV-#)H-)s1-Sh_3*lJ*Y~2n2cKdfUPG@s{)0?247kTVeyuQ^av#)E zjlw=S1$DkFF%2)GW)`32&a54(+|k+z)qWRLhka0cpJ}g`WU>BQl4(=~W4XQIDQhKa zOOBxi^b3YzV7B{LY&2>hT~XhUhpdZHFXuYcN*qTG?1H_15gp3EXS4oI$TS=6?r{&) z2WU7(U?KYZ@Sjkq24;_OXF3NbQeJ?3GR$|V2_%noJ4{8jI|B7wG3t6L>ihB-s{P$w zG8*Z}s2To-4YB?>cc!gSGw6o3Z~*G<9)fx&?y=>`s4Xl)y>#GH)C@= zfEtkZD>9A9Tt$tv-gtM0A*hZbP&0`}4Xmqm7{*f0L!ImS$Re37s0juB#r@+o1s%%y zI2q^J@(-A%^B;V#`=7@naR4_g#))_uxySUlkH6P&IqF^b6}5EDCb)Z^jCwgUk-p75 z)RugS4kq01J~s$8;8I&&ig7ysJITaw;S8#STi6(#iS9Y>i7hA>SQlV(%A2qw9>(@~ z3)N17$8BezwFEm*zs&j``cnQGBfMm;k?DkiOjGB#7i!NlF$%|GG?ro{F2JU^7PW_a zZ2d>5`!Aq6yooI^ev&)$LD-J+R7}7ZvHJYKPeyxq1obZbf@v7chOydaBxd597>mE6 z?r)Oop67H_xe)aUUxK=Cm#sg88n9oU`%B8fmXt^4vHo#nDyYy%SE5$p9ed-CsD_+; zw}W(aC>LQjd=~rTe$;b81@5ow-l%sZ2U}wW`rvA8gKMxh9x7n{eaRf9LVkjNcoGxw zw5|6qbgu`Zt_PuxSqKJT6MH=l)lqBIX^F>Xm}<)tP|sJOo}bm1jP`U6rr;`6$H!1F z*&nFm)O3owLIbRYsE(eQvTRmFwD&WznpjQJ`y0>oH*AIGmPRzAE{N!1>${NOPreh@ zq>P#jK1X~)EFjVeC5OmVhNML%=`Ch_G}4xsO`bQT`a>6D8`i;4dXd;f^dfX-w?GKYl#0(DfYVlUugvwp0yYI(SP;HeGRV>i|mD6_%rcWqAl?%p`=qA zU!8OR_mHxUY~!EW`Wos{zmP&_Tai<90hidkw%h!TxM?e%z*a=hWg8-!cwZ)W)Lx0A zIsQj&w57Zbzv z(Rw@fP|gS)FM_`lLPia1VG5r>Im#CbyLQNoA&YuiEmlkz%ZEwPf=N~|F2 za6OsOS>HlTAm$KCq11=rFuff$=^Zk+iLZ&r2_;>>j~GJu@lazTmWU?!a+*WLlSECr zNM;q$p6f~<62B0gZMix5`GnFH!n>h5%b!QqINVGeAbuqV5Q~YfL^zR6gwfc?s8oym zD{j^tu{Kp_3Q~6>n0zGOB32Wz#3_Q5V^aC~15u0EMzpjK?j`>tp`<^v^6(3yKKbeR z0nxzT`w{sYgg;S41QJRP*Do)7rBQ^}ms}TW0_+oY$af(AK`1@#V)CsWG1=zDMB;Vg zJE9LUmuN;Pb)(IW#P8$>6A|R2FdP$!5^ZBQDjp^(i8qNXLMf6Pp29?;EBVjyEy6>z zqWmSEB?^e^#08?1Q2LLH`37eYCyB3!X~aFmX+r6Kl^!6ooQPHp=^(MQI>)ahI(nY` zEaE}poUJdkj={T$cHCEnQ-~L;{G-43Pf0J!^~@+NEpbZooU+_vH=mO`V`gq{i8H;l zylhgg<0+Z!%qlI(b@Dug#krHKeu~)^Qr9Udo#Et_mX}PfTHSF+!w!Qz50!X|oQhm0 z=lvbU`8-wTnZAEZ$z+dHSX_8uO;Mp!R9;qI?3wDBynjp8r~%u<0-c=l;_?#D)T-ad HUJCsa2|oE( diff --git a/locales/tr_TR.po b/locales/tr_TR.po index e6769cc1..2577b238 100644 --- a/locales/tr_TR.po +++ b/locales/tr_TR.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-04-03 02:40+0000\n" +"POT-Creation-Date: 2026-04-10 02:51+0000\n" "PO-Revision-Date: 2025-10-29 09:26+0000\n" "Last-Translator: Kaya Zeren , 2026\n" "Language-Team: Turkish (Turkey) (https://app.transifex.com/teclib/teams/28042/tr_TR/)\n" @@ -22,6 +22,91 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 +#: src/ComputerUsageProfile.php:169 +msgid "Start time" +msgstr "Başlangıç zamanı" + +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 +msgid "Stop time" +msgstr "Bitiş zamanı" + +#: templates/computerusageprofile.html.twig +msgid "Days of week where the computer usually runs" +msgstr "Bilgisayarın genellikle çalıştığı haftanın günleri" + +#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 +#: src/Impact/Usage/Engine.php:48 +msgid "Boavizta" +msgstr "Boavizta" + +#: templates/location.html.twig src/SearchOptions.php:138 src/Location.php:182 +msgid "Boavizta zone" +msgstr "Boavizta bölgesi" + +#: templates/location.html.twig src/CarbonIntensity.php:65 +msgid "Carbon intensity" +msgstr "Karbon yoğunluğu" + +#: templates/usageinfo.html.twig +msgid "Asset usage" +msgstr "Varlık kullanımı" + +#: templates/usageinfo.html.twig +msgid "Usage profile" +msgid_plural "Usage profiles" +msgstr[0] "Kullanım profili" +msgstr[1] "Kullanım profilleri" + +#: templates/usageinfo.html.twig +msgid "lifespan (in months)" +msgstr "ömür (ay)" + +#: templates/usageinfo.html.twig +msgid "planned lifespan (in months)" +msgstr "planlanan ömür (ay)" + +#: templates/quick-report.html.twig front/report.php:55 +msgid "GLPI Carbon" +msgstr "GLPI Carbon" + +#: templates/components/form/source_zone_selector.html.twig +#: src/AbstractModel.php:186 +msgid "Source" +msgstr "Kaynak" + +#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 +msgid "Carbon intensity zone" +msgid_plural "Carbon intensity zones" +msgstr[0] "Karbon yoğunluğu bölgesi" +msgstr[1] "Karbon yoğunluğu bölgeleri" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "No zone available" +msgstr "Kullanılabilecek bir bölge yok" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "Please run the automatic action to downlaod data from this source." +msgstr "Lütfen bu kaynaktan veri indirecek otomatik işlemi çalıştırın." + +#: templates/environmentalimpact-item.html.twig +msgid "Usage" +msgstr "Kullanım" + +#: templates/environmentalimpact-item.html.twig +msgid "Reset data" +msgstr "Verileri sıfırla" + +#: templates/environmentalimpact-item.html.twig +msgid "Calculate data" +msgstr "Verileri hesapla" + +#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 +msgid "Embodied impact" +msgid_plural "Embodied impacts" +msgstr[0] "Gerçekleşen etki" +msgstr[1] "Gerçekleşen etkiler" + #: templates/history/status-item.html.twig msgid "Historization status" msgstr "Geçmiş oluşturma durumu" @@ -109,66 +194,33 @@ msgstr "Varlık envanter kaydı tarihi şu olan" msgid "Legend" msgstr "İşaret" -#: templates/networkequipmenttype.html.twig +#: templates/monitortype.html.twig msgid "" -"This power value is used as default when the power of a network equipment " -"model is unknown" +"This power value is used as default when the power of a monitor model is " +"unknown" msgstr "" -"Bir ağ aygıtı modelinin gücü bilinmediğinde varsayılan olarak bu güç değeri " +"Bir ekran modelinin gücü bilinmediğinde varsayılan olarak bu güç değeri " "kullanılır" -#: templates/networkequipmenttype.html.twig templates/computertype.html.twig -#: templates/monitortype.html.twig +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig msgid "Power" msgid_plural "Powers" msgstr[0] "Güç" msgstr[1] "Güçler" -#: templates/networkequipmenttype.html.twig templates/computertype.html.twig -#: templates/monitortype.html.twig +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig msgid "Do not evaluate" msgstr "Değerlendirilmesin" -#: templates/components/form/source_zone_selector.html.twig -#: src/AbstractModel.php:186 -msgid "Source" -msgstr "Kaynak" - -#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 -msgid "Carbon intensity zone" -msgid_plural "Carbon intensity zones" -msgstr[0] "Karbon yoğunluğu bölgesi" -msgstr[1] "Karbon yoğunluğu bölgeleri" - -#: templates/quick-report.html.twig front/report.php:55 -msgid "GLPI Carbon" -msgstr "GLPI Carbon" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 -#: src/ComputerUsageProfile.php:169 -msgid "Start time" -msgstr "Başlangıç zamanı" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 -msgid "Stop time" -msgstr "Bitiş zamanı" - -#: templates/computerusageprofile.html.twig -msgid "Days of week where the computer usually runs" -msgstr "Bilgisayarın genellikle çalıştığı haftanın günleri" - -#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 -#: src/Impact/Usage/Engine.php:48 -msgid "Boavizta" -msgstr "Boavizta" - -#: templates/location.html.twig src/Location.php:182 src/SearchOptions.php:138 -msgid "Boavizta zone" -msgstr "Boavizta bölgesi" +#: templates/config.html.twig +msgid "Impact engine" +msgstr "Etki hesaplayıcı" -#: templates/location.html.twig src/CarbonIntensity.php:66 -msgid "Carbon intensity" -msgstr "Karbon yoğunluğu" +#: templates/config.html.twig +msgid "Usage carbon emissions are always calculated internally" +msgstr "Kullanım kaynaklı karbon emisyonları her zaman içeride hesaplanır" #: templates/computertype.html.twig msgid "" @@ -178,123 +230,11 @@ msgstr "" "Bir bilgisayar modelinin gücü bilinmediğinde varsayılan olarak bu güç değeri" " kullanılır" -#: templates/computertype.html.twig src/ComputerType.php:78 -#: src/SearchOptions.php:303 +#: templates/computertype.html.twig src/SearchOptions.php:303 +#: src/ComputerType.php:78 msgid "Category" msgstr "Kategori" -#: templates/pages/CarbonIntensitySource/tab_zone.html.twig -msgid "No zone available" -msgstr "Kullanılabilecek bir bölge yok" - -#: templates/pages/CarbonIntensitySource/tab_zone.html.twig -msgid "Please run the automatic action to downlaod data from this source." -msgstr "Lütfen bu kaynaktan veri indirecek otomatik işlemi çalıştırın." - -#: templates/abstractmodel.html.twig -msgid "" -"The impacts below shall include the manufacturing, disposal and recycling " -"processes only." -msgstr "" -"Aşağıdaki etkiler yalnızca üretim, imha ve geri dönüşüm süreçlerini kapsar." - -#: templates/abstractmodel.html.twig -msgid "Take care of the expected units before setting an impact." -msgstr "" - -#: templates/abstractmodel.html.twig -msgid "Data quality" -msgstr "Veri kalitesi" - -#: templates/abstractmodel.html.twig -msgid "Data source" -msgstr "Veri kaynağı" - -#: templates/monitortype.html.twig -msgid "" -"This power value is used as default when the power of a monitor model is " -"unknown" -msgstr "" -"Bir ekran modelinin gücü bilinmediğinde varsayılan olarak bu güç değeri " -"kullanılır" - -#: templates/usageinfo.html.twig -msgid "Asset usage" -msgstr "Varlık kullanımı" - -#: templates/usageinfo.html.twig -msgid "Usage profile" -msgid_plural "Usage profiles" -msgstr[0] "Kullanım profili" -msgstr[1] "Kullanım profilleri" - -#: templates/usageinfo.html.twig -msgid "lifespan (in months)" -msgstr "ömür (ay)" - -#: templates/usageinfo.html.twig -msgid "planned lifespan (in months)" -msgstr "planlanan ömür (ay)" - -#: templates/environmentalimpact-item.html.twig -msgid "Usage" -msgstr "Kullanım" - -#: templates/environmentalimpact-item.html.twig -msgid "Reset data" -msgstr "Verileri sıfırla" - -#: templates/environmentalimpact-item.html.twig -msgid "Calculate data" -msgstr "Verileri hesapla" - -#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 -msgid "Embodied impact" -msgid_plural "Embodied impacts" -msgstr[0] "Gerçekleşen etki" -msgstr[1] "Gerçekleşen etkiler" - -#: templates/config.html.twig -msgid "Impact engine" -msgstr "Etki hesaplayıcı" - -#: templates/config.html.twig -msgid "Usage carbon emissions are always calculated internally" -msgstr "Kullanım kaynaklı karbon emisyonları her zaman içeride hesaplanır" - -#: templates/dashboard/information-video-card.html.twig -msgid "Want to know more ?" -msgstr "Ayrıntılı bilgi almak ister misiniz?" - -#: templates/dashboard/information-video-card.html.twig -msgid "Here is a video about the impact of numeric on the enviromnent." -msgstr "" -"Sayısal değerlerin çevreye etkisini anlatan bir videoya bakabilirsiniz." - -#: templates/dashboard/usage-carbon-emission-last-year.html.twig -msgid "Yearly Usage Carbon Emission" -msgstr "Yıllık kullanım kaynaklı karbon emisyonu" - -#: templates/dashboard/unhandled-monitors-card.html.twig -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#: templates/dashboard/unhandled-computers-card.html.twig -msgid "Warning" -msgstr "Uyarı" - -#: templates/dashboard/unhandled-monitors-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s monitors." -msgstr "Parkınızın yüzde %s kadarındaki %s ekranı gösterir." - -#: templates/dashboard/monthly-carbon-emission.html.twig -msgid "Monthly usage carbon emission" -msgstr "Aylık kullanım kaynaklı karbon emisyonu" - -#: templates/dashboard/monthly-carbon-emission.html.twig -#, php-format -msgid "Compared to %s" -msgstr "%s ile karşılaştırma" - #: templates/dashboard/information-block.html.twig msgid "Information" msgstr "Bilgiler" @@ -336,133 +276,205 @@ msgstr "" "1 gram CO₂, bir otomobili yaklaşık 20 metre sürdüğünüzde ortaya çıkan CO₂ " "miktarına eşdeğerdir." +#: templates/dashboard/unhandled-monitors-card.html.twig +#: templates/dashboard/unhandled-computers-card.html.twig #: templates/dashboard/unhandled-network-equipments-card.html.twig +msgid "Warning" +msgstr "Uyarı" + +#: templates/dashboard/unhandled-monitors-card.html.twig #, php-format -msgid "" -"It represents %s percent of your parc that contains %s network equipments." -msgstr "Parkınızın yüzde %s kadarındaki %s ağ aygıtını gösterir." +msgid "It represents %s percent of your parc that contains %s monitors." +msgstr "Parkınızın yüzde %s kadarındaki %s ekranı gösterir." + +#: templates/dashboard/usage-carbon-emission-last-year.html.twig +msgid "Yearly Usage Carbon Emission" +msgstr "Yıllık kullanım kaynaklı karbon emisyonu" + +#: templates/dashboard/monthly-carbon-emission.html.twig +msgid "Monthly usage carbon emission" +msgstr "Aylık kullanım kaynaklı karbon emisyonu" + +#: templates/dashboard/monthly-carbon-emission.html.twig +#, php-format +msgid "Compared to %s" +msgstr "%s ile karşılaştırma" #: templates/dashboard/unhandled-computers-card.html.twig #, php-format msgid "It represents %s percent of your parc that contains %s computers." msgstr "Parkınızın yüzde %s kadarındaki %s bilgisayarı gösterir." -#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 -#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 -msgid "Missing arguments in request." -msgstr "İstekte argümanlar eksik." - -#: front/embodiedimpact.form.php:68 front/embodiedimpact.form.php:77 -#: front/usageimpact.form.php:90 -msgid "Reset denied." -msgstr "Sıfırlama reddedildi." +#: templates/dashboard/unhandled-network-equipments-card.html.twig +#, php-format +msgid "" +"It represents %s percent of your parc that contains %s network equipments." +msgstr "Parkınızın yüzde %s kadarındaki %s ağ aygıtını gösterir." -#: front/embodiedimpact.form.php:82 front/usageimpact.form.php:95 -msgid "Reset failed." -msgstr "Sıfırlanamadı." +#: templates/dashboard/information-video-card.html.twig +msgid "Want to know more ?" +msgstr "Ayrıntılı bilgi almak ister misiniz?" -#: front/embodiedimpact.form.php:92 front/usageimpact.form.php:80 -#: front/usageimpact.form.php:106 front/usageimpact.form.php:114 -msgid "Bad arguments." -msgstr "Argümanlar yanlış." +#: templates/dashboard/information-video-card.html.twig +msgid "Here is a video about the impact of numeric on the enviromnent." +msgstr "" +"Sayısal değerlerin çevreye etkisini anlatan bir videoya bakabilirsiniz." -#: front/embodiedimpact.form.php:101 front/usageimpact.form.php:131 -msgid "Unable to find calculation engine for this asset." -msgstr "Bu varlık için bir hesaplayıcısı bulunamadı." +#: templates/abstractmodel.html.twig +msgid "" +"The impacts below shall include the manufacturing, disposal and recycling " +"processes only." +msgstr "" +"Aşağıdaki etkiler yalnızca üretim, imha ve geri dönüşüm süreçlerini kapsar." -#: front/usageimpact.form.php:122 -msgid "Missing data prevents historization of this asset." -msgstr "Eksik veriler bu varlığın geçmiş hesaplamasını engelliyor. " +#: templates/abstractmodel.html.twig +msgid "Take care of the expected units before setting an impact." +msgstr "" -#: front/usageimpact.form.php:125 -msgid "Update of global warming potential failed." -msgstr "Küresel ısınma potansiyeli güncellenemedi." +#: templates/abstractmodel.html.twig +msgid "Data quality" +msgstr "Veri kalitesi" -#: front/usageimpact.form.php:136 -msgid "Update of usage impact failed." -msgstr "Kullanım etkisi güncellenemedi." +#: templates/abstractmodel.html.twig +msgid "Data source" +msgstr "Veri kaynağı" -#: hook.php:97 +#: templates/networkequipmenttype.html.twig msgid "" -"Please check the logs for more details. Fill an issue in the repository of " -"the plugin." +"This power value is used as default when the power of a network equipment " +"model is unknown" msgstr "" -"Ayrıntılı bilgi almak için lütfen günlüklere bakın. Eklenti deposuna bir " -"sorun bildirin." +"Bir ağ aygıtı modelinin gücü bilinmediğinde varsayılan olarak bu güç değeri " +"kullanılır" -#: hook.php:301 -msgid "Associate to an usage profile" -msgstr "Bir kullanım profili ile ilişkilendir" +#: src/Command/CollectCarbonIntensityCommand.php:70 +msgid "Read carbon dioxyde intensity from external sources" +msgstr "Dış kaynaklardan gelen karbon dioksit yoğunluğunu okuyun" -#: hook.php:302 hook.php:307 -msgid "Delete all calculated environmental impacts" -msgstr "Tüm hesaplanmış çevresel etkileri sil" +#: src/Command/CollectCarbonIntensityCommand.php:84 +msgid "Source:" +msgstr "Kaynak:" -#: hook.php:311 hook.php:316 hook.php:320 -msgid "Update type power consumption" -msgstr "Güncelleme türü güç tüketimi" +#: src/Command/CollectCarbonIntensityCommand.php:95 +msgid "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" +msgstr "" +"Seçilmiş kaynak, desteklenen bölgeleri belirtmiyor. Adresten bölge " +"belirlenmeye çalışılıyor" -#: hook.php:312 -msgid "Update category" -msgstr "Güncelleme kategorisi" +#: src/Command/CollectCarbonIntensityCommand.php:99 +msgid "Geocoding is not enabled. Cannot resolve an address into a zone" +msgstr "Coğrafi kodlama açılmamış. Adresten bölge bulunamaz" -#: hook.php:324 -msgid "Update zone for Boavizta engine" -msgstr "Boavizta hesaplayıcı bölgesini güncelle" +#: src/Command/CollectCarbonIntensityCommand.php:104 +msgid "Address:" +msgstr "Adres:" -#: hook.php:325 -msgid "Update carbon intensity source and zone" -msgstr "" +#: src/Command/CollectCarbonIntensityCommand.php:107 +msgid "Zone:" +msgstr "Bölge:" -#: install/install/create_automatic_actions.php:52 -msgid "Find the Alpha3 country code (ISO3166) of locations" -msgstr "Konumların Alpha3 ülke kodunu bul (ISO3166)" +#: src/Command/CollectCarbonIntensityCommand.php:123 +#: src/Command/CreateFakeCarbonIntensityCommand.php:67 +msgid "Creating data source name" +msgstr "Veri kaynağı adı oluşturuluyor" -#: install/install/create_automatic_actions.php:64 -msgid "Compute carbon emissions of computers" -msgstr "Bilgisayarların karbon emisyonlarını hesapla" +#: src/Command/CollectCarbonIntensityCommand.php:130 +msgid "This source does not exist" +msgstr "" -#: install/install/create_automatic_actions.php:100 -msgid "Compute embodied impact of assets" -msgstr "Varlıkların gerçekleşen etkisini hesapla" +#: src/Command/CollectCarbonIntensityCommand.php:149 +msgid "The zone is not handled by the data source" +msgstr "" -#: install/install/create_uasge_profiles.php:41 -msgid "Always on" -msgstr "Her zaman açık" +#: src/Command/CollectCarbonIntensityCommand.php:155 +msgid "Reading data..." +msgstr "Veriler okunuyor..." -#: install/install/create_uasge_profiles.php:52 -msgid "Office hours" -msgstr "Çalışma saatleri" +#: src/Command/CreateFakeCarbonIntensityCommand.php:78 +msgid "Creating data zone name" +msgstr "Veri bölgesi adı oluşturuluyor" -#: src/ComputerType.php:56 -msgid "Unspecified" -msgstr "Belirtilmemiş" +#: src/Command/CreateFakeCarbonIntensityCommand.php:89 +msgid "Creating fake data..." +msgstr "Sahte veriler oluşturuluyor..." -#: src/ComputerType.php:58 -msgid "Server" -msgstr "Sunucu" +#: src/Command/ExportDashboardCommand.php:68 +msgid "Updating the report dashboard description" +msgstr "Rapor panosu açıklaması güncelleniyor" -#: src/ComputerType.php:59 -msgid "Laptop" -msgstr "Dizüstü" +#: src/Command/ExportDashboardCommand.php:73 +msgid "Dashboard not found" +msgstr "Pano bulunamadı" -#: src/ComputerType.php:60 -msgid "Tablet" -msgstr "Tablet" +#: src/Command/ExportDashboardCommand.php:99 +#, php-format +msgid "Dashboard description saved to %s" +msgstr "Pano açıklaması %s üzerine kaydedildi" -#: src/ComputerType.php:61 -msgid "Smartphone" -msgstr "Akıllı telefon" +#: src/Command/CreateTestInventoryCommand.php:145 +msgid "Creating test inventory" +msgstr "Sınama envanteri oluşturuluyor" -#: src/ComputerType.php:70 src/MonitorType.php:50 #: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 +#: src/ComputerType.php:70 src/MonitorType.php:50 msgid "Power consumption" msgstr "Güç tüketimi" -#: src/Zone.php:127 src/Source_Zone.php:88 src/Source_Zone.php:171 -#: src/Source_Zone.php:268 -msgid "Download enabled" -msgstr "İndirme açık" +#: src/UsageInfo.php:63 +msgid "Usage informations" +msgstr "Kullanım bilgileri" + +#: src/UsageInfo.php:95 src/AbstractModel.php:54 src/Location.php:73 +#: src/AbstractType.php:55 src/Profile.php:45 +msgid "Environmental impact" +msgstr "Çevresel etki" + +#: src/UsageInfo.php:243 +#, php-format +msgid "%s More information %s" +msgstr "%s Diğer bilgiler %s" + +#: src/DataSource/Lca/Boaviztapi/Config.php:100 +msgid "Invalid Boavizta API URL" +msgstr "Boavizta API adresi geçersiz" + +#: src/DataSource/Lca/Boaviztapi/Config.php:108 +msgid "Connection to Boavizta API established" +msgstr "Boavizta API bağlantısı kuruldu" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:56 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:53 +msgid "Resource diagnosis" +msgstr "Kaynak teşhisi" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:71 +msgid "Collect carbon intensities from RTE" +msgstr "RTE üzerinden karbon yoğunluklarını al" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:89 +msgid "Download carbon emissions from RTE" +msgstr "RTE üzerinden karbon emisyonlarını indir" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:90 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:87 +#: src/CronTask.php:107 +msgid "Maximum number of entries to download" +msgstr "İndirilecek en fazla kayıt sayısı" + +#: src/DataSource/CarbonIntensity/AbstractCronTask.php:103 +#: src/Source_Zone.php:537 +msgid "End" +msgstr "Bitiş" + +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:68 +msgid "Collect carbon intensities from Electricity Maps" +msgstr "Electricity Maps üzerinden karbon yoğunluklarını al" + +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:86 +msgid "Download carbon emissions from Electricity Maps" +msgstr "Electricity Maps üzerinden karbon emisyonlarını indir" #: src/AbstractImpact.php:125 src/CarbonEmission.php:151 msgid "Date of evaluation" @@ -476,288 +488,334 @@ msgstr "Hesaplayıcı" msgid "Engine version" msgstr "Hesaplayıcı sürümü" -#: src/CarbonIntensity.php:88 -msgid "Emission date" -msgstr "Emisyon tarihi" - -#: src/CarbonIntensity.php:115 -msgid "Intensity" -msgstr "Yoğunluk" +#: src/DataTracking/AbstractTracked.php:77 +msgid "Impact not evaluated" +msgstr "Etki değerlendirilemedi" -#: src/Location.php:73 src/AbstractModel.php:54 src/Profile.php:45 -#: src/UsageInfo.php:95 src/AbstractType.php:55 -msgid "Environmental impact" -msgstr "Çevresel etki" +#: src/DataTracking/AbstractTracked.php:78 +msgid "Unspecified quality" +msgstr "Kalite belirtilmemiş" -#: src/Location.php:189 -msgid "Carbon intensity source and zone" -msgstr "" +#: src/DataTracking/AbstractTracked.php:79 +msgid "Manual data" +msgstr "El ile veriler" -#: src/AbstractModel.php:62 src/AbstractType.php:63 src/Dashboard/Grid.php:58 -#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 -msgid "Carbon" -msgstr "Karbon" +#: src/DataTracking/AbstractTracked.php:80 +msgid "Estimated data" +msgstr "Ön görülen veriler" -#: src/AbstractModel.php:197 -msgid "Quality" -msgstr "" +#: src/DataTracking/AbstractTracked.php:81 +msgid "Downsampled data" +msgstr "İndirgenmiş veriler" -#: src/UsageInfo.php:63 -msgid "Usage informations" -msgstr "Kullanım bilgileri" +#: src/DataTracking/AbstractTracked.php:82 +msgid "Measured data" +msgstr "Ölçülen veriler" -#: src/UsageInfo.php:243 -#, php-format -msgid "%s More information %s" -msgstr "%s Diğer bilgiler %s" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 +#: src/Impact/Usage/AbstractUsageImpact.php:91 +msgid "grams of carbon dioxyde equivalent" +msgstr "gram karbondioksit eşdeğeri" -#: src/ComputerUsageProfile.php:51 -msgid "Computer usage profile" -msgid_plural "Computer usage profiles" -msgstr[0] "Bilgisayar kullanım profili" -msgstr[1] "Bilgisayar kullanım profilleri" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 +#: src/Impact/Usage/AbstractUsageImpact.php:93 +msgid "grams of antimony equivalent" +msgstr "gram antimon eşdeğeri" -#: src/ComputerUsageProfile.php:117 -msgid "Start time is invalid" -msgstr "Başlangıç zamanı geçersiz" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 +#: src/Impact/Usage/AbstractUsageImpact.php:95 +msgid "joules" +msgstr "jul" -#: src/ComputerUsageProfile.php:122 -msgid "Stop time is invalid" -msgstr "Bitiş zamanı geçersiz" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 +msgid "Connection to Boavizta failed." +msgstr "Boavizta bağlantısı kurulamadı." -#: src/Toolbox.php:243 src/Dashboard/Provider.php:195 -#: src/Dashboard/Provider.php:318 src/Dashboard/Provider.php:1199 -msgid "g" -msgstr "g" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 +msgid "Embodied impact evaluation falied." +msgstr "Birleştirilmiş etki değerlendirmesi yapılamadı." -#: src/Toolbox.php:244 src/Dashboard/Provider.php:196 -#: src/Dashboard/Provider.php:319 src/Dashboard/Provider.php:1200 -msgid "Kg" -msgstr "Kg" +#: src/Impact/History/AbstractAsset.php:370 +msgid "Error while calculating impact" +msgstr "Etki hesaplanırken sorun çıktı" -#: src/Toolbox.php:245 src/Dashboard/Provider.php:197 -#: src/Dashboard/Provider.php:320 src/Dashboard/Provider.php:1201 -msgid "t" -msgstr "t" +#: src/Impact/History/AbstractAsset.php:378 +msgid "Nothing to calculate" +msgstr "Hesaplanacak bir şey yok" -#: src/Toolbox.php:246 src/Dashboard/Provider.php:198 -#: src/Dashboard/Provider.php:321 src/Dashboard/Provider.php:1202 -msgid "Kt" -msgstr "Kt" +#: src/Impact/History/AbstractAsset.php:384 +#, php-format +msgid "%d entries calculated" +msgstr "%d kayıt hesaplandı" -#: src/Toolbox.php:247 src/Dashboard/Provider.php:199 -#: src/Dashboard/Provider.php:322 src/Dashboard/Provider.php:1203 -msgid "Mt" -msgstr "Mt" +#: src/Impact/Type.php:159 +msgid "Embodied Global warming potential" +msgstr "Gerçekleşen küresel ısınma potansiyeli" -#: src/Toolbox.php:248 src/Dashboard/Provider.php:200 -#: src/Dashboard/Provider.php:323 src/Dashboard/Provider.php:1204 -msgid "Gt" -msgstr "Gt" +#: src/Impact/Type.php:160 +msgid "Embodied Abiotic depletion potential" +msgstr "Gerçekleşen abiyotik tükenme potansiyeli" -#: src/Toolbox.php:249 src/Dashboard/Provider.php:201 -#: src/Dashboard/Provider.php:324 src/Dashboard/Provider.php:1205 -msgid "Tt" -msgstr "Tt" +#: src/Impact/Type.php:161 +msgid "Embodied Primary energy consumed" +msgstr "Gerçekleşen birincil enerji tüketimi" -#: src/Toolbox.php:250 src/Dashboard/Provider.php:202 -#: src/Dashboard/Provider.php:325 src/Dashboard/Provider.php:1206 -msgid "Pt" -msgstr "Pt" +#: src/Impact/Type.php:162 +msgid "Embodied Climate change - Contribution of biogenic emissions" +msgstr "Gerçekleşen iklim değişikliği - Biyojenik emisyonların katkısı" -#: src/Toolbox.php:251 src/Dashboard/Provider.php:203 -#: src/Dashboard/Provider.php:326 src/Dashboard/Provider.php:1207 -msgid "Et" -msgstr "Et" +#: src/Impact/Type.php:163 +msgid "Embodied Climate change - Contribution of fossil fuel emissions" +msgstr "Gerçekleşen iklim değişikliği - Fosil yakıt emisyonlarının katkısı" -#: src/Toolbox.php:252 src/Dashboard/Provider.php:204 -#: src/Dashboard/Provider.php:327 src/Dashboard/Provider.php:1208 -msgid "Zt" -msgstr "Zt" +#: src/Impact/Type.php:164 +msgid "" +"Embodied Climate change - Contribution of emissions from land use change" +msgstr "" +"Gerçekleşen iklim değişikliği - Toprak kullanımı değişikliği emisyonlarının " +"katkısı" -#: src/Toolbox.php:253 src/Dashboard/Provider.php:205 -#: src/Dashboard/Provider.php:328 src/Dashboard/Provider.php:1209 -msgid "Yt" -msgstr "Yt" +#: src/Impact/Type.php:165 +msgid "Embodied Emissions of radionizing substances" +msgstr "Gerçekleşen radyoaktif madde emisyonları" -#: src/Toolbox.php:280 -msgid "W" -msgstr "W" +#: src/Impact/Type.php:166 +msgid "Embodied Land use" +msgstr "Gerçekleşen toprak kullanımı" -#: src/Toolbox.php:281 -msgid "KW" -msgstr "KW" +#: src/Impact/Type.php:167 +msgid "Embodied Depletion of the ozone layer" +msgstr "Gerçekleşen ozon tabakası tükenmesi" -#: src/Toolbox.php:282 -msgid "MW" -msgstr "MW" +#: src/Impact/Type.php:168 +msgid "Embodied Fine particle emissions" +msgstr "Gerçekleşen ince parçacık emisyonları" -#: src/Toolbox.php:283 -msgid "GW" -msgstr "GW" +#: src/Impact/Type.php:169 +msgid "Embodied Photochemical ozone formation" +msgstr "Gerçekleşen fotokimyasal ozon oluşumu" -#: src/Toolbox.php:284 -msgid "TW" -msgstr "TW" +#: src/Impact/Type.php:170 +msgid "Embodied Use of water resources" +msgstr "Gerçekleşen su kaynakları tüketimi" -#: src/Toolbox.php:285 -msgid "PW" -msgstr "PW" +#: src/Impact/Type.php:171 +msgid "Embodied Material input per unit of service" +msgstr "Gerçekleşen hizmet birimi başına malzeme girişi" -#: src/Toolbox.php:286 -msgid "EW" -msgstr "EW" +#: src/Impact/Type.php:172 +msgid "Embodied Use of mineral and metal resources" +msgstr "Gerçekleşen mineral ve metal kaynakları tüketimi" -#: src/Toolbox.php:287 -msgid "ZW" -msgstr "ZW" +#: src/Impact/Type.php:173 +msgid "Embodied Use of fossil resources (including nuclear)" +msgstr "Gerçekleşen fosil kaynaklar tüketimi (nükleer ile)" -#: src/Toolbox.php:288 -msgid "YW" -msgstr "YW" +#: src/Impact/Type.php:174 +msgid "Embodied Acidification" +msgstr "Gerçekleşen asitlendirme" -#: src/Toolbox.php:315 -msgid "Wh" -msgstr "Wh" +#: src/Impact/Type.php:175 +msgid "Embodied Freshwater ecotoxicity" +msgstr "Gerçekleşen tatlı su ekotoksikliği" -#: src/Toolbox.php:316 src/Dashboard/Provider.php:1218 -msgid "KWh" -msgstr "KWh" +#: src/Impact/Type.php:178 +msgid "Embodied Eutrophication of freshwater" +msgstr "Gerçekleşen tatlı suda besin artışı" -#: src/Toolbox.php:317 src/Dashboard/Provider.php:1219 -msgid "MWh" -msgstr "MWh" +#: src/Impact/Type.php:179 +msgid "Embodied Eutrophication of marine waters" +msgstr "Gerçekleşen deniz suyunda besin artışı" -#: src/Toolbox.php:318 src/Dashboard/Provider.php:1220 -msgid "GWh" -msgstr "GWh" +#: src/Impact/Type.php:180 +msgid "Embodied Terrestrial eutrophication" +msgstr "Gerçekleşen karasal besin artışı" -#: src/Toolbox.php:319 src/Dashboard/Provider.php:1221 -msgid "TWh" -msgstr "TWh" +#: src/Impact/Type.php:195 +msgid "Usage Global warming potential" +msgstr "Kullanım küresel ısınma potansiyeli" -#: src/Toolbox.php:320 src/Dashboard/Provider.php:1222 -msgid "PWh" -msgstr "PWh" +#: src/Impact/Type.php:196 +msgid "Usage Abiotic depletion potential" +msgstr "Kullanım abiyotik tükenme potansiyeli" -#: src/Toolbox.php:321 src/Dashboard/Provider.php:1223 -msgid "EWh" -msgstr "EWh" +#: src/Impact/Type.php:197 +msgid "Usage Primary energy consumed" +msgstr "Kullanım birincil enerji tüketimi" -#: src/Toolbox.php:322 src/Dashboard/Provider.php:1224 -msgid "ZWh" -msgstr "ZWh" +#: src/Impact/Type.php:198 +msgid "Usage Climate change - Contribution of biogenic emissions" +msgstr "Kullanım iklim değişikliği - Biyojenik emisyonların katkısı" -#: src/Toolbox.php:323 src/Dashboard/Provider.php:1225 -msgid "YWh" -msgstr "YWh" +#: src/Impact/Type.php:199 +msgid "Usage Climate change - Contribution of fossil fuel emissions" +msgstr "Kullanım iklim değişikliği - Fosil yakıt emisyonlarının katkısı" -#: src/Toolbox.php:373 src/Toolbox.php:378 -#, php-format -msgid "%1$s %2$s" -msgstr "%1$s %2$s" +#: src/Impact/Type.php:200 +msgid "Usage Climate change - Contribution of emissions from land use change" +msgstr "" +"Kullanım iklim değişikliği - Toprak kullanımı değişikliği emisyonlarının " +"katkısı" -#: src/UsageImpact.php:39 -msgid "Usage impact" -msgid_plural "Usage impacts" -msgstr[0] "Kullanım etkisi" -msgstr[1] "Kullanım etkileri" +#: src/Impact/Type.php:201 +msgid "Usage Emissions of radionizing substances" +msgstr "Kullanım radyoaktif madde emisyonları" -#: src/DataTracking/AbstractTracked.php:77 -msgid "Impact not evaluated" -msgstr "Etki değerlendirilemedi" +#: src/Impact/Type.php:202 +msgid "Usage Land use" +msgstr "Kullanım toprak kullanımı" -#: src/DataTracking/AbstractTracked.php:78 -msgid "Unspecified quality" -msgstr "Kalite belirtilmemiş" +#: src/Impact/Type.php:203 +msgid "Usage Depletion of the ozone layer" +msgstr "Kullanım ozon tabakası tüketimi" -#: src/DataTracking/AbstractTracked.php:79 -msgid "Manual data" -msgstr "El ile veriler" +#: src/Impact/Type.php:204 +msgid "Usage Fine particle emissions" +msgstr "Kullanım ince parçacık emisyonları" -#: src/DataTracking/AbstractTracked.php:80 -msgid "Estimated data" -msgstr "Ön görülen veriler" +#: src/Impact/Type.php:205 +msgid "Usage Photochemical ozone formation" +msgstr "Kullanım fotokimyasal ozon oluşumu" -#: src/DataTracking/AbstractTracked.php:81 -msgid "Downsampled data" -msgstr "İndirgenmiş veriler" +#: src/Impact/Type.php:206 +msgid "Usage Use of water resources" +msgstr "Kullanım su kaynakları tüketimi" -#: src/DataTracking/AbstractTracked.php:82 -msgid "Measured data" -msgstr "Ölçülen veriler" +#: src/Impact/Type.php:207 +msgid "Usage Material input per unit of service" +msgstr "Kullanım hizmet birimi başına malzeme girişi" -#: src/Source.php:46 -msgid "Carbon intensity source" -msgid_plural "Carbon intensity sources" -msgstr[0] "Karbon yoğunluğu kaynağı" -msgstr[1] "Karbon yoğunluğu kaynakları" +#: src/Impact/Type.php:208 +msgid "Usage Use of mineral and metal resources" +msgstr "Kullanım mineral ve metal kaynakları tüketimi" -#: src/CronTask.php:100 -msgid "Find the Alpha3 country code (ISO3166)" -msgstr "Alpha3 ülke kodunu bul (ISO3166)" +#: src/Impact/Type.php:209 +msgid "Usage Use of fossil resources (including nuclear)" +msgstr "Kullanım fosil kaynaklar tüketimi (nükleer ile)" -#: src/CronTask.php:101 -msgid "Maximum number of locations to solve" -msgstr "Çözülecek en fazla konum sayısı" +#: src/Impact/Type.php:210 +msgid "Usage Acidification" +msgstr "Kullanım asitlendirmesi" -#: src/CronTask.php:106 -msgid "Download carbon emissions from Watttime" -msgstr "Watttime üzerinden karbon emisyonlarını indir" +#: src/Impact/Type.php:211 +msgid "Usage Freshwater ecotoxicity" +msgstr "Kullanım tatlı su ekotoksikliği" -#: src/CronTask.php:107 -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:89 -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:105 -msgid "Maximum number of entries to download" -msgstr "İndirilecek en fazla kayıt sayısı" +#: src/Impact/Type.php:214 src/Impact/Type.php:342 +msgid "Usage Eutrophication of freshwater" +msgstr "Kullanım tatlı suda besin artışı" -#: src/CronTask.php:112 -msgid "Compute usage environmental impact for all assets" -msgstr "Tüm varlıkların kullanım çevresel etkisini hesapla" +#: src/Impact/Type.php:215 src/Impact/Type.php:343 +msgid "Usage Eutrophication of marine waters" +msgstr "Kullanım deniz suyunda besin artışı" -#: src/CronTask.php:113 src/CronTask.php:118 -msgid "Maximum number of entries to calculate" -msgstr "Hesaplanacak en fazla kayıt sayısı" +#: src/Impact/Type.php:216 src/Impact/Type.php:344 +msgid "Usage Terrestrial eutrophication" +msgstr "Kullanım karasal besin artışı" -#: src/CronTask.php:117 -msgid "Compute embodied environmental impact for all assets" -msgstr "Tüm varlıkların gerçekleşen çevresel etkisini hesapla" +#: src/Impact/Type.php:231 +msgid "Total Global warming potential" +msgstr "Toplam küresel ısınma potansiyeli" -#: src/CronTask.php:278 -msgid "No zone to download" -msgstr "İndirilecek bir bölge yok" +#: src/Impact/Type.php:232 +msgid "Total Abiotic depletion potential" +msgstr "Toplam abiyotik tükenme potansiyeli" -#: src/Source_Zone.php:72 -msgid "Source name" -msgstr "Kaynak adı" +#: src/Impact/Type.php:233 +msgid "Total Primary energy consumed" +msgstr "Toplam tüketilen birincil enerji" -#: src/Source_Zone.php:80 -msgid "Zone name" -msgstr "Bölge adı" +#: src/Impact/Type.php:234 +msgid "Total Climate change - Contribution of biogenic emissions" +msgstr "Toplam iklim değişikliği - Biyojenik emisyonların katkısı" -#: src/Source_Zone.php:96 -msgid "Code" -msgstr "Kod" +#: src/Impact/Type.php:235 +msgid "Total Climate change - Contribution of fossil fuel emissions" +msgstr "Toplam iklim değişikliği - Fosil yakıt emisyonlarının katkısı" -#: src/Source_Zone.php:150 -msgid "Not downloadable" -msgstr "İndirilebilir değil" +#: src/Impact/Type.php:236 +msgid "Total Climate change - Contribution of emissions from land use change" +msgstr "" +"Toplam iklim değişikliği - Toprak kullanımı değişikliği emisyonlarının " +"katkısı" -#: src/Source_Zone.php:150 -msgid "This is a fallback source, there is no real-time data available" -msgstr "Bu varsayılan bir kaynaktır. Burada gerçek zamanlı veriler bulunmaz" +#: src/Impact/Type.php:237 +msgid "Total Emissions of radionizing substances" +msgstr "Toplam radyoaktif madde emisyonları" -#: src/Source_Zone.php:172 -msgid "Source for historical" -msgstr "Geçmiş oluşturma kaynağı" +#: src/Impact/Type.php:238 +msgid "Total Land use" +msgstr "Toplam toprak kullanımı" -#: src/Source_Zone.php:411 -msgid "Enable / Disable" -msgstr "Aç / Kapat" +#: src/Impact/Type.php:239 +msgid "Total Depletion of the ozone layer" +msgstr "Toplam ozon tabakası tükenmesi" -#: src/Source_Zone.php:538 -msgid "End" -msgstr "Bitiş" +#: src/Impact/Type.php:240 +msgid "Total Fine particle emissions" +msgstr "Toplam ince parçacık emisyonları" + +#: src/Impact/Type.php:241 +msgid "Total Photochemical ozone formation" +msgstr "Toplam fotokimyasal ozon oluşumu" + +#: src/Impact/Type.php:242 +msgid "Total Use of water resources" +msgstr "Toplam su kaynakları tüketimi" + +#: src/Impact/Type.php:243 +msgid "Total Material input per unit of service" +msgstr "Toplam hizmet birimi başına malzeme girişi" + +#: src/Impact/Type.php:244 +msgid "Total Use of mineral and metal resources" +msgstr "Toplam mineral ve metal kaynakları tüketimi" + +#: src/Impact/Type.php:245 +msgid "Total Use of fossil resources (including nuclear)" +msgstr "Toplam fosil kaynaklar tüketimi (nükleer ile)" + +#: src/Impact/Type.php:246 +msgid "Total Acidification" +msgstr "Toplam asitlendirme" + +#: src/Impact/Type.php:247 +msgid "Total Freshwater ecotoxicity" +msgstr "Toplam tatlı su ekotoksikliği" + +#: src/Impact/Type.php:250 +msgid "Total Eutrophication of freshwater" +msgstr "Toplam tatlı suda besin artışı" + +#: src/Impact/Type.php:251 +msgid "Total Eutrophication of marine waters" +msgstr "Toplam deniz suyunda besin artışı" + +#: src/Impact/Type.php:252 +msgid "Total Terrestrial eutrophication" +msgstr "Toplam karasal besin artışı" + +#: src/Impact/Type.php:323 +msgid "Carbon emission in CO₂ equivalent" +msgstr "CO₂ eşdeğeri olarak karbon emisyonu" + +#: src/Impact/Type.php:324 +msgid "Consumption of non renewable resources in Antimony equivalent." +msgstr "Yenilenebilir olmayan kaynakların antimon eşdeğeri olarak tüketimi." + +#: src/Impact/Type.php:325 +msgid "Primary energy consumed." +msgstr "Tüketilen birincil enerji." + +#: src/Impact/Type.php:332 +msgid "Incidence of disease" +msgstr "Krizin görülme sıklığı" + +#: src/Source.php:46 +msgid "Carbon intensity source" +msgid_plural "Carbon intensity sources" +msgstr[0] "Karbon yoğunluğu kaynağı" +msgstr[1] "Karbon yoğunluğu kaynakları" #: src/SearchOptions.php:184 src/SearchOptions.php:316 #: src/SearchOptions.php:329 src/SearchOptions.php:342 @@ -769,6 +827,42 @@ msgstr "Çevresel etkiyi yok say" msgid "Is historizable" msgstr "Geçmiş oluşturulabilir" +#: src/ComputerType.php:56 +msgid "Unspecified" +msgstr "Belirtilmemiş" + +#: src/ComputerType.php:58 +msgid "Server" +msgstr "Sunucu" + +#: src/ComputerType.php:59 +msgid "Laptop" +msgstr "Dizüstü" + +#: src/ComputerType.php:60 +msgid "Tablet" +msgstr "Tablet" + +#: src/ComputerType.php:61 +msgid "Smartphone" +msgstr "Akıllı telefon" + +#: src/UsageImpact.php:39 +msgid "Usage impact" +msgid_plural "Usage impacts" +msgstr[0] "Kullanım etkisi" +msgstr[1] "Kullanım etkileri" + +#: src/AbstractModel.php:62 src/Dashboard/Grid.php:58 +#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 +#: src/AbstractType.php:63 +msgid "Carbon" +msgstr "Karbon" + +#: src/AbstractModel.php:197 +msgid "Quality" +msgstr "" + #: src/Report.php:49 msgid "Carbon report" msgid_plural "Carbon reports" @@ -784,147 +878,84 @@ msgstr "" "Tanıtım kipi açık. Aşağıdaki veriler veri tabanındaki varlıkları " "göstermiyor. %sTanıtım kipini kapat%s" -#: src/Dashboard/Grid.php:63 src/Dashboard/Provider.php:473 -msgid "Handled assets ratio" -msgstr "İşlenen varlık oranı" +#: src/ComputerUsageProfile.php:51 +msgid "Computer usage profile" +msgid_plural "Computer usage profiles" +msgstr[0] "Bilgisayar kullanım profili" +msgstr[1] "Bilgisayar kullanım profilleri" -#: src/Dashboard/Grid.php:72 -msgid "Handled assets count" -msgstr "İşlenen varlık sayısı" +#: src/ComputerUsageProfile.php:117 +msgid "Start time is invalid" +msgstr "Başlangıç zamanı geçersiz" -#: src/Dashboard/Grid.php:135 -#, php-format -msgid "Handled %s" -msgstr "İşlenen %s" +#: src/ComputerUsageProfile.php:122 +msgid "Stop time is invalid" +msgstr "Bitiş zamanı geçersiz" -#: src/Dashboard/Grid.php:146 -#, php-format -msgid "Unhandled %s" -msgstr "İşlenmeyen %s" +#: src/Source_Zone.php:72 +msgid "Source name" +msgstr "Kaynak adı" -#: src/Dashboard/Grid.php:232 -#, php-format -msgid "Unhandled %s ratio" -msgstr "İşlenmeyen %s oranı" +#: src/Source_Zone.php:80 +msgid "Zone name" +msgstr "Bölge adı" -#: src/Dashboard/Grid.php:244 -msgid "Usage carbon emission year to date" -msgstr "Yıl başından bugüne kadar kullanım karbon emisyonu" +#: src/Source_Zone.php:88 src/Source_Zone.php:171 src/Source_Zone.php:268 +#: src/Zone.php:127 +msgid "Download enabled" +msgstr "İndirme açık" -#: src/Dashboard/Grid.php:250 -msgid "Monthly carbon emission" -msgstr "Aylık karbon emisyonu" +#: src/Source_Zone.php:96 +msgid "Code" +msgstr "Kod" -#: src/Dashboard/Grid.php:259 -msgid "Usage global warming potential chart" -msgstr "Kullanım küresel ısınma potansiyeli çizelgesi" +#: src/Source_Zone.php:150 +msgid "Not downloadable" +msgstr "İndirilebilir değil" -#: src/Dashboard/Grid.php:268 src/Dashboard/Widget.php:85 -#: src/Dashboard/Widget.php:604 -msgid "Biggest monthly averaged carbon emission per model" -msgstr "Her model için en büyük aylık ortalama karbon emisyonu" +#: src/Source_Zone.php:150 +msgid "This is a fallback source, there is no real-time data available" +msgstr "Bu varsayılan bir kaynaktır. Burada gerçek zamanlı veriler bulunmaz" -#: src/Dashboard/Grid.php:310 src/Dashboard/Widget.php:55 -msgid "Environmental impact information video" -msgstr "Çevresel etki bilgilendirme videosu" +#: src/Source_Zone.php:172 +msgid "Source for historical" +msgstr "Geçmiş oluşturma kaynağı" -#: src/Dashboard/Grid.php:315 -msgid "Environmental impact methodology information" -msgstr "Çevresel etki yöntemi bilgileri" +#: src/Source_Zone.php:411 +msgid "Enable / Disable" +msgstr "Aç / Kapat" -#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 -#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 -#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 -#: src/Dashboard/DemoProvider.php:189 -msgid "CO₂eq" -msgstr "CO₂eq" +#: src/CronTask.php:100 +msgid "Find the Alpha3 country code (ISO3166)" +msgstr "Alpha3 ülke kodunu bul (ISO3166)" -#: src/Dashboard/Provider.php:427 -msgid "handled assets ratio" -msgstr "işlenen varlık oranı" - -#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 -msgid "Handled" -msgstr "İşlenen" - -#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 -msgid "Unhandled" -msgstr "İşlenmeyen" - -#: src/Dashboard/Provider.php:507 -msgid "Ignored" -msgstr "Yok sayılan" - -#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 -#, php-format -msgid "plugin carbon - handled %s" -msgstr "Carbon eklentisi- İşlenen %s" - -#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 -#, php-format -msgid "plugin carbon - unhandled %s" -msgstr "Carbon eklentisi- İşlenmeyen %s" - -#: src/Dashboard/Provider.php:584 -#, php-format -msgid "plugin carbon - ignored %s" -msgstr "Carbon eklentisi- Yok sayılan %s" - -#: src/Dashboard/Provider.php:632 -msgid "plugin carbon - Total usage power consumption" -msgstr "Carbon eklentisi - Kullanım toplam güç tüketimi" - -#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 -msgid "plugin carbon - Usage carbon emission" -msgstr "Carbon eklentisi - Kullanım karbon emisyonu" - -#: src/Dashboard/Provider.php:733 src/Dashboard/Widget.php:100 -msgid "Usage abiotic depletion potential" -msgstr "Kullanım abiyotik tükenme potansiyeli" - -#: src/Dashboard/Provider.php:747 -msgid "Sbeq" -msgstr "Sbeq" - -#: src/Dashboard/Provider.php:1035 -msgid "Total abiotic depletion potential" -msgstr "Toplam abiyotik tükenme potansiyeli" - -#: src/Dashboard/Provider.php:1051 -msgid "Embodied abiotic depletion potential" -msgstr "Gerçekleşen abiyotik tükenme potansiyeli" - -#: src/Dashboard/Provider.php:1054 -msgid "Total usage abiotic depletion potential" -msgstr "Kullanım toplam abiyotik tükenme potansiyeli" +#: src/CronTask.php:101 +msgid "Maximum number of locations to solve" +msgstr "Çözülecek en fazla konum sayısı" -#: src/Dashboard/Provider.php:1066 -msgid "Total global warming potential" -msgstr "Toplam küresel ısınma potansiyeli" +#: src/CronTask.php:106 +msgid "Download carbon emissions from Watttime" +msgstr "Watttime üzerinden karbon emisyonlarını indir" -#: src/Dashboard/Provider.php:1082 -msgid "Embodied global warming potential" -msgstr "Gerçekleşen küresel ısınma potansiyeli" +#: src/CronTask.php:112 +msgid "Compute usage environmental impact for all assets" +msgstr "Tüm varlıkların kullanım çevresel etkisini hesapla" -#: src/Dashboard/Provider.php:1085 -msgid "Total usage global warming potential" -msgstr "Kullanım toplam küresel ısınma potansiyeli" +#: src/CronTask.php:113 src/CronTask.php:118 +msgid "Maximum number of entries to calculate" +msgstr "Hesaplanacak en fazla kayıt sayısı" -#: src/Dashboard/Provider.php:1107 src/Dashboard/Widget.php:501 -msgid "Consumed energy and carbon emission per month" -msgstr "Aylık enerji tüketimi ve karbon emisyonu" +#: src/CronTask.php:117 +msgid "Compute embodied environmental impact for all assets" +msgstr "Tüm varlıkların gerçekleşen çevresel etkisini hesapla" -#: src/Dashboard/Provider.php:1212 src/Dashboard/Widget.php:546 -#: src/Dashboard/Widget.php:561 src/Dashboard/DemoProvider.php:88 -#: src/Dashboard/DemoProvider.php:189 -msgid "Carbon emission" -msgstr "Karbon emisyonu" +#: src/CronTask.php:278 +msgid "No zone to download" +msgstr "İndirilecek bir bölge yok" -#: src/Dashboard/Provider.php:1228 src/Dashboard/Widget.php:551 -#: src/Dashboard/Widget.php:564 src/Dashboard/DemoProvider.php:106 -#: src/Dashboard/DemoProvider.php:202 -msgid "Consumed energy" -msgstr "Enerji tüketimi" +#: src/Dashboard/Widget.php:55 src/Dashboard/Grid.php:310 +msgid "Environmental impact information video" +msgstr "Çevresel etki bilgilendirme videosu" #: src/Dashboard/Widget.php:62 msgid "Methodology information" @@ -938,10 +969,19 @@ msgstr "Toplam karbon emisyonu" msgid "Monthly Carbon Emission" msgstr "Aylık karbon emisyonu" +#: src/Dashboard/Widget.php:85 src/Dashboard/Widget.php:604 +#: src/Dashboard/Grid.php:268 +msgid "Biggest monthly averaged carbon emission per model" +msgstr "Her model için en büyük aylık ortalama karbon emisyonu" + #: src/Dashboard/Widget.php:93 msgid "Carbon Emission Per month" msgstr "Aylık karbon emisyonu" +#: src/Dashboard/Widget.php:100 src/Dashboard/Provider.php:733 +msgid "Usage abiotic depletion potential" +msgstr "Kullanım abiyotik tükenme potansiyeli" + #: src/Dashboard/Widget.php:130 msgid "Impact criteria" msgstr "Etki ölçütü" @@ -962,6 +1002,22 @@ msgstr "İşlenmeyen ağ aygıtları" msgid "Radar chart" msgstr "Radar çizelge" +#: src/Dashboard/Widget.php:501 src/Dashboard/Provider.php:1107 +msgid "Consumed energy and carbon emission per month" +msgstr "Aylık enerji tüketimi ve karbon emisyonu" + +#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:561 +#: src/Dashboard/Provider.php:1212 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "Carbon emission" +msgstr "Karbon emisyonu" + +#: src/Dashboard/Widget.php:551 src/Dashboard/Widget.php:564 +#: src/Dashboard/Provider.php:1228 src/Dashboard/DemoProvider.php:106 +#: src/Dashboard/DemoProvider.php:202 +msgid "Consumed energy" +msgstr "Enerji tüketimi" + #: src/Dashboard/Widget.php:746 #, php-format msgid "" @@ -997,316 +1053,229 @@ msgstr "" msgid "Handled percentage" msgstr "İşlenen yüzde" -#: src/Dashboard/Dashboard.php:68 -msgid "Carbon dioxyde intensity" -msgstr "Karbondioksit yoğunluğu" - -#: src/Dashboard/DemoProvider.php:76 -msgid "Usage carbon emission per month" -msgstr "Aylık kullanım karbon emisyonu" - -#: src/Dashboard/DemoProvider.php:274 -msgid "plugin carbon - handled assets ratio" -msgstr "Carbon eklentisi- İşlenen varlık oranı" - -#: src/Impact/Type.php:159 -msgid "Embodied Global warming potential" -msgstr "Gerçekleşen küresel ısınma potansiyeli" - -#: src/Impact/Type.php:160 -msgid "Embodied Abiotic depletion potential" -msgstr "Gerçekleşen abiyotik tükenme potansiyeli" - -#: src/Impact/Type.php:161 -msgid "Embodied Primary energy consumed" -msgstr "Gerçekleşen birincil enerji tüketimi" - -#: src/Impact/Type.php:162 -msgid "Embodied Climate change - Contribution of biogenic emissions" -msgstr "Gerçekleşen iklim değişikliği - Biyojenik emisyonların katkısı" - -#: src/Impact/Type.php:163 -msgid "Embodied Climate change - Contribution of fossil fuel emissions" -msgstr "Gerçekleşen iklim değişikliği - Fosil yakıt emisyonlarının katkısı" - -#: src/Impact/Type.php:164 -msgid "" -"Embodied Climate change - Contribution of emissions from land use change" -msgstr "" -"Gerçekleşen iklim değişikliği - Toprak kullanımı değişikliği emisyonlarının " -"katkısı" - -#: src/Impact/Type.php:165 -msgid "Embodied Emissions of radionizing substances" -msgstr "Gerçekleşen radyoaktif madde emisyonları" - -#: src/Impact/Type.php:166 -msgid "Embodied Land use" -msgstr "Gerçekleşen toprak kullanımı" - -#: src/Impact/Type.php:167 -msgid "Embodied Depletion of the ozone layer" -msgstr "Gerçekleşen ozon tabakası tükenmesi" - -#: src/Impact/Type.php:168 -msgid "Embodied Fine particle emissions" -msgstr "Gerçekleşen ince parçacık emisyonları" - -#: src/Impact/Type.php:169 -msgid "Embodied Photochemical ozone formation" -msgstr "Gerçekleşen fotokimyasal ozon oluşumu" - -#: src/Impact/Type.php:170 -msgid "Embodied Use of water resources" -msgstr "Gerçekleşen su kaynakları tüketimi" - -#: src/Impact/Type.php:171 -msgid "Embodied Material input per unit of service" -msgstr "Gerçekleşen hizmet birimi başına malzeme girişi" - -#: src/Impact/Type.php:172 -msgid "Embodied Use of mineral and metal resources" -msgstr "Gerçekleşen mineral ve metal kaynakları tüketimi" - -#: src/Impact/Type.php:173 -msgid "Embodied Use of fossil resources (including nuclear)" -msgstr "Gerçekleşen fosil kaynaklar tüketimi (nükleer ile)" - -#: src/Impact/Type.php:174 -msgid "Embodied Acidification" -msgstr "Gerçekleşen asitlendirme" - -#: src/Impact/Type.php:175 -msgid "Embodied Freshwater ecotoxicity" -msgstr "Gerçekleşen tatlı su ekotoksikliği" - -#: src/Impact/Type.php:178 -msgid "Embodied Eutrophication of freshwater" -msgstr "Gerçekleşen tatlı suda besin artışı" - -#: src/Impact/Type.php:179 -msgid "Embodied Eutrophication of marine waters" -msgstr "Gerçekleşen deniz suyunda besin artışı" +#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 +#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 +#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "CO₂eq" +msgstr "CO₂eq" -#: src/Impact/Type.php:180 -msgid "Embodied Terrestrial eutrophication" -msgstr "Gerçekleşen karasal besin artışı" +#: src/Dashboard/Provider.php:195 src/Dashboard/Provider.php:318 +#: src/Dashboard/Provider.php:1199 src/Toolbox.php:243 +msgid "g" +msgstr "g" -#: src/Impact/Type.php:195 -msgid "Usage Global warming potential" -msgstr "Kullanım küresel ısınma potansiyeli" +#: src/Dashboard/Provider.php:196 src/Dashboard/Provider.php:319 +#: src/Dashboard/Provider.php:1200 src/Toolbox.php:244 +msgid "Kg" +msgstr "Kg" -#: src/Impact/Type.php:196 -msgid "Usage Abiotic depletion potential" -msgstr "Kullanım abiyotik tükenme potansiyeli" +#: src/Dashboard/Provider.php:197 src/Dashboard/Provider.php:320 +#: src/Dashboard/Provider.php:1201 src/Toolbox.php:245 +msgid "t" +msgstr "t" -#: src/Impact/Type.php:197 -msgid "Usage Primary energy consumed" -msgstr "Kullanım birincil enerji tüketimi" +#: src/Dashboard/Provider.php:198 src/Dashboard/Provider.php:321 +#: src/Dashboard/Provider.php:1202 src/Toolbox.php:246 +msgid "Kt" +msgstr "Kt" -#: src/Impact/Type.php:198 -msgid "Usage Climate change - Contribution of biogenic emissions" -msgstr "Kullanım iklim değişikliği - Biyojenik emisyonların katkısı" +#: src/Dashboard/Provider.php:199 src/Dashboard/Provider.php:322 +#: src/Dashboard/Provider.php:1203 src/Toolbox.php:247 +msgid "Mt" +msgstr "Mt" -#: src/Impact/Type.php:199 -msgid "Usage Climate change - Contribution of fossil fuel emissions" -msgstr "Kullanım iklim değişikliği - Fosil yakıt emisyonlarının katkısı" +#: src/Dashboard/Provider.php:200 src/Dashboard/Provider.php:323 +#: src/Dashboard/Provider.php:1204 src/Toolbox.php:248 +msgid "Gt" +msgstr "Gt" -#: src/Impact/Type.php:200 -msgid "Usage Climate change - Contribution of emissions from land use change" -msgstr "" -"Kullanım iklim değişikliği - Toprak kullanımı değişikliği emisyonlarının " -"katkısı" +#: src/Dashboard/Provider.php:201 src/Dashboard/Provider.php:324 +#: src/Dashboard/Provider.php:1205 src/Toolbox.php:249 +msgid "Tt" +msgstr "Tt" -#: src/Impact/Type.php:201 -msgid "Usage Emissions of radionizing substances" -msgstr "Kullanım radyoaktif madde emisyonları" +#: src/Dashboard/Provider.php:202 src/Dashboard/Provider.php:325 +#: src/Dashboard/Provider.php:1206 src/Toolbox.php:250 +msgid "Pt" +msgstr "Pt" -#: src/Impact/Type.php:202 -msgid "Usage Land use" -msgstr "Kullanım toprak kullanımı" +#: src/Dashboard/Provider.php:203 src/Dashboard/Provider.php:326 +#: src/Dashboard/Provider.php:1207 src/Toolbox.php:251 +msgid "Et" +msgstr "Et" -#: src/Impact/Type.php:203 -msgid "Usage Depletion of the ozone layer" -msgstr "Kullanım ozon tabakası tüketimi" +#: src/Dashboard/Provider.php:204 src/Dashboard/Provider.php:327 +#: src/Dashboard/Provider.php:1208 src/Toolbox.php:252 +msgid "Zt" +msgstr "Zt" -#: src/Impact/Type.php:204 -msgid "Usage Fine particle emissions" -msgstr "Kullanım ince parçacık emisyonları" +#: src/Dashboard/Provider.php:205 src/Dashboard/Provider.php:328 +#: src/Dashboard/Provider.php:1209 src/Toolbox.php:253 +msgid "Yt" +msgstr "Yt" -#: src/Impact/Type.php:205 -msgid "Usage Photochemical ozone formation" -msgstr "Kullanım fotokimyasal ozon oluşumu" +#: src/Dashboard/Provider.php:427 +msgid "handled assets ratio" +msgstr "işlenen varlık oranı" -#: src/Impact/Type.php:206 -msgid "Usage Use of water resources" -msgstr "Kullanım su kaynakları tüketimi" +#: src/Dashboard/Provider.php:473 src/Dashboard/Grid.php:63 +msgid "Handled assets ratio" +msgstr "İşlenen varlık oranı" -#: src/Impact/Type.php:207 -msgid "Usage Material input per unit of service" -msgstr "Kullanım hizmet birimi başına malzeme girişi" +#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 +msgid "Handled" +msgstr "İşlenen" -#: src/Impact/Type.php:208 -msgid "Usage Use of mineral and metal resources" -msgstr "Kullanım mineral ve metal kaynakları tüketimi" +#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 +msgid "Unhandled" +msgstr "İşlenmeyen" -#: src/Impact/Type.php:209 -msgid "Usage Use of fossil resources (including nuclear)" -msgstr "Kullanım fosil kaynaklar tüketimi (nükleer ile)" +#: src/Dashboard/Provider.php:507 +msgid "Ignored" +msgstr "Yok sayılan" -#: src/Impact/Type.php:210 -msgid "Usage Acidification" -msgstr "Kullanım asitlendirmesi" +#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 +#, php-format +msgid "plugin carbon - handled %s" +msgstr "Carbon eklentisi- İşlenen %s" -#: src/Impact/Type.php:211 -msgid "Usage Freshwater ecotoxicity" -msgstr "Kullanım tatlı su ekotoksikliği" +#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 +#, php-format +msgid "plugin carbon - unhandled %s" +msgstr "Carbon eklentisi- İşlenmeyen %s" -#: src/Impact/Type.php:214 src/Impact/Type.php:342 -msgid "Usage Eutrophication of freshwater" -msgstr "Kullanım tatlı suda besin artışı" +#: src/Dashboard/Provider.php:584 +#, php-format +msgid "plugin carbon - ignored %s" +msgstr "Carbon eklentisi- Yok sayılan %s" -#: src/Impact/Type.php:215 src/Impact/Type.php:343 -msgid "Usage Eutrophication of marine waters" -msgstr "Kullanım deniz suyunda besin artışı" +#: src/Dashboard/Provider.php:632 +msgid "plugin carbon - Total usage power consumption" +msgstr "Carbon eklentisi - Kullanım toplam güç tüketimi" -#: src/Impact/Type.php:216 src/Impact/Type.php:344 -msgid "Usage Terrestrial eutrophication" -msgstr "Kullanım karasal besin artışı" +#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 +msgid "plugin carbon - Usage carbon emission" +msgstr "Carbon eklentisi - Kullanım karbon emisyonu" -#: src/Impact/Type.php:231 -msgid "Total Global warming potential" -msgstr "Toplam küresel ısınma potansiyeli" +#: src/Dashboard/Provider.php:747 +msgid "Sbeq" +msgstr "Sbeq" -#: src/Impact/Type.php:232 -msgid "Total Abiotic depletion potential" +#: src/Dashboard/Provider.php:1035 +msgid "Total abiotic depletion potential" msgstr "Toplam abiyotik tükenme potansiyeli" -#: src/Impact/Type.php:233 -msgid "Total Primary energy consumed" -msgstr "Toplam tüketilen birincil enerji" - -#: src/Impact/Type.php:234 -msgid "Total Climate change - Contribution of biogenic emissions" -msgstr "Toplam iklim değişikliği - Biyojenik emisyonların katkısı" - -#: src/Impact/Type.php:235 -msgid "Total Climate change - Contribution of fossil fuel emissions" -msgstr "Toplam iklim değişikliği - Fosil yakıt emisyonlarının katkısı" - -#: src/Impact/Type.php:236 -msgid "Total Climate change - Contribution of emissions from land use change" -msgstr "" -"Toplam iklim değişikliği - Toprak kullanımı değişikliği emisyonlarının " -"katkısı" +#: src/Dashboard/Provider.php:1051 +msgid "Embodied abiotic depletion potential" +msgstr "Gerçekleşen abiyotik tükenme potansiyeli" -#: src/Impact/Type.php:237 -msgid "Total Emissions of radionizing substances" -msgstr "Toplam radyoaktif madde emisyonları" +#: src/Dashboard/Provider.php:1054 +msgid "Total usage abiotic depletion potential" +msgstr "Kullanım toplam abiyotik tükenme potansiyeli" -#: src/Impact/Type.php:238 -msgid "Total Land use" -msgstr "Toplam toprak kullanımı" +#: src/Dashboard/Provider.php:1066 +msgid "Total global warming potential" +msgstr "Toplam küresel ısınma potansiyeli" -#: src/Impact/Type.php:239 -msgid "Total Depletion of the ozone layer" -msgstr "Toplam ozon tabakası tükenmesi" +#: src/Dashboard/Provider.php:1082 +msgid "Embodied global warming potential" +msgstr "Gerçekleşen küresel ısınma potansiyeli" -#: src/Impact/Type.php:240 -msgid "Total Fine particle emissions" -msgstr "Toplam ince parçacık emisyonları" +#: src/Dashboard/Provider.php:1085 +msgid "Total usage global warming potential" +msgstr "Kullanım toplam küresel ısınma potansiyeli" -#: src/Impact/Type.php:241 -msgid "Total Photochemical ozone formation" -msgstr "Toplam fotokimyasal ozon oluşumu" +#: src/Dashboard/Provider.php:1218 src/Toolbox.php:316 +msgid "KWh" +msgstr "KWh" -#: src/Impact/Type.php:242 -msgid "Total Use of water resources" -msgstr "Toplam su kaynakları tüketimi" +#: src/Dashboard/Provider.php:1219 src/Toolbox.php:317 +msgid "MWh" +msgstr "MWh" -#: src/Impact/Type.php:243 -msgid "Total Material input per unit of service" -msgstr "Toplam hizmet birimi başına malzeme girişi" +#: src/Dashboard/Provider.php:1220 src/Toolbox.php:318 +msgid "GWh" +msgstr "GWh" -#: src/Impact/Type.php:244 -msgid "Total Use of mineral and metal resources" -msgstr "Toplam mineral ve metal kaynakları tüketimi" +#: src/Dashboard/Provider.php:1221 src/Toolbox.php:319 +msgid "TWh" +msgstr "TWh" -#: src/Impact/Type.php:245 -msgid "Total Use of fossil resources (including nuclear)" -msgstr "Toplam fosil kaynaklar tüketimi (nükleer ile)" +#: src/Dashboard/Provider.php:1222 src/Toolbox.php:320 +msgid "PWh" +msgstr "PWh" -#: src/Impact/Type.php:246 -msgid "Total Acidification" -msgstr "Toplam asitlendirme" +#: src/Dashboard/Provider.php:1223 src/Toolbox.php:321 +msgid "EWh" +msgstr "EWh" -#: src/Impact/Type.php:247 -msgid "Total Freshwater ecotoxicity" -msgstr "Toplam tatlı su ekotoksikliği" +#: src/Dashboard/Provider.php:1224 src/Toolbox.php:322 +msgid "ZWh" +msgstr "ZWh" -#: src/Impact/Type.php:250 -msgid "Total Eutrophication of freshwater" -msgstr "Toplam tatlı suda besin artışı" +#: src/Dashboard/Provider.php:1225 src/Toolbox.php:323 +msgid "YWh" +msgstr "YWh" -#: src/Impact/Type.php:251 -msgid "Total Eutrophication of marine waters" -msgstr "Toplam deniz suyunda besin artışı" +#: src/Dashboard/Grid.php:72 +msgid "Handled assets count" +msgstr "İşlenen varlık sayısı" -#: src/Impact/Type.php:252 -msgid "Total Terrestrial eutrophication" -msgstr "Toplam karasal besin artışı" +#: src/Dashboard/Grid.php:135 +#, php-format +msgid "Handled %s" +msgstr "İşlenen %s" -#: src/Impact/Type.php:323 -msgid "Carbon emission in CO₂ equivalent" -msgstr "CO₂ eşdeğeri olarak karbon emisyonu" +#: src/Dashboard/Grid.php:146 +#, php-format +msgid "Unhandled %s" +msgstr "İşlenmeyen %s" -#: src/Impact/Type.php:324 -msgid "Consumption of non renewable resources in Antimony equivalent." -msgstr "Yenilenebilir olmayan kaynakların antimon eşdeğeri olarak tüketimi." +#: src/Dashboard/Grid.php:232 +#, php-format +msgid "Unhandled %s ratio" +msgstr "İşlenmeyen %s oranı" -#: src/Impact/Type.php:325 -msgid "Primary energy consumed." -msgstr "Tüketilen birincil enerji." +#: src/Dashboard/Grid.php:244 +msgid "Usage carbon emission year to date" +msgstr "Yıl başından bugüne kadar kullanım karbon emisyonu" -#: src/Impact/Type.php:332 -msgid "Incidence of disease" -msgstr "Krizin görülme sıklığı" +#: src/Dashboard/Grid.php:250 +msgid "Monthly carbon emission" +msgstr "Aylık karbon emisyonu" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 -#: src/Impact/Usage/AbstractUsageImpact.php:91 -msgid "grams of carbon dioxyde equivalent" -msgstr "gram karbondioksit eşdeğeri" +#: src/Dashboard/Grid.php:259 +msgid "Usage global warming potential chart" +msgstr "Kullanım küresel ısınma potansiyeli çizelgesi" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 -#: src/Impact/Usage/AbstractUsageImpact.php:93 -msgid "grams of antimony equivalent" -msgstr "gram antimon eşdeğeri" +#: src/Dashboard/Grid.php:315 +msgid "Environmental impact methodology information" +msgstr "Çevresel etki yöntemi bilgileri" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 -#: src/Impact/Usage/AbstractUsageImpact.php:95 -msgid "joules" -msgstr "jul" +#: src/Dashboard/DemoProvider.php:76 +msgid "Usage carbon emission per month" +msgstr "Aylık kullanım karbon emisyonu" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 -msgid "Connection to Boavizta failed." -msgstr "Boavizta bağlantısı kurulamadı." +#: src/Dashboard/DemoProvider.php:274 +msgid "plugin carbon - handled assets ratio" +msgstr "Carbon eklentisi- İşlenen varlık oranı" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 -msgid "Embodied impact evaluation falied." -msgstr "Birleştirilmiş etki değerlendirmesi yapılamadı." +#: src/Dashboard/Dashboard.php:68 +msgid "Carbon dioxyde intensity" +msgstr "Karbondioksit yoğunluğu" -#: src/Impact/History/AbstractAsset.php:370 -msgid "Error while calculating impact" -msgstr "Etki hesaplanırken sorun çıktı" +#: src/Location.php:189 +msgid "Carbon intensity source and zone" +msgstr "" -#: src/Impact/History/AbstractAsset.php:378 -msgid "Nothing to calculate" -msgstr "Hesaplanacak bir şey yok" +#: src/CarbonIntensity.php:87 +msgid "Emission date" +msgstr "Emisyon tarihi" -#: src/Impact/History/AbstractAsset.php:384 -#, php-format -msgid "%d entries calculated" -msgstr "%d kayıt hesaplandı" +#: src/CarbonIntensity.php:114 +msgid "Intensity" +msgstr "Yoğunluk" #: src/CarbonEmission.php:49 msgid "Carbon Emission" @@ -1330,105 +1299,138 @@ msgstr "Enerji kalitesi" msgid "Emission quality" msgstr "Emisyon kalitesi" -#: src/Command/CreateTestInventoryCommand.php:145 -msgid "Creating test inventory" -msgstr "Sınama envanteri oluşturuluyor" +#: src/Toolbox.php:280 +msgid "W" +msgstr "W" -#: src/Command/CreateFakeCarbonIntensityCommand.php:67 -#: src/Command/CollectCarbonIntensityCommand.php:122 -msgid "Creating data source name" -msgstr "Veri kaynağı adı oluşturuluyor" +#: src/Toolbox.php:281 +msgid "KW" +msgstr "KW" -#: src/Command/CreateFakeCarbonIntensityCommand.php:78 -msgid "Creating data zone name" -msgstr "Veri bölgesi adı oluşturuluyor" +#: src/Toolbox.php:282 +msgid "MW" +msgstr "MW" -#: src/Command/CreateFakeCarbonIntensityCommand.php:89 -msgid "Creating fake data..." -msgstr "Sahte veriler oluşturuluyor..." +#: src/Toolbox.php:283 +msgid "GW" +msgstr "GW" -#: src/Command/ExportDashboardCommand.php:68 -msgid "Updating the report dashboard description" -msgstr "Rapor panosu açıklaması güncelleniyor" +#: src/Toolbox.php:284 +msgid "TW" +msgstr "TW" -#: src/Command/ExportDashboardCommand.php:73 -msgid "Dashboard not found" -msgstr "Pano bulunamadı" +#: src/Toolbox.php:285 +msgid "PW" +msgstr "PW" -#: src/Command/ExportDashboardCommand.php:99 -#, php-format -msgid "Dashboard description saved to %s" -msgstr "Pano açıklaması %s üzerine kaydedildi" +#: src/Toolbox.php:286 +msgid "EW" +msgstr "EW" -#: src/Command/CollectCarbonIntensityCommand.php:69 -msgid "Read carbon dioxyde intensity from external sources" -msgstr "Dış kaynaklardan gelen karbon dioksit yoğunluğunu okuyun" +#: src/Toolbox.php:287 +msgid "ZW" +msgstr "ZW" -#: src/Command/CollectCarbonIntensityCommand.php:83 -msgid "Source:" -msgstr "Kaynak:" +#: src/Toolbox.php:288 +msgid "YW" +msgstr "YW" + +#: src/Toolbox.php:315 +msgid "Wh" +msgstr "Wh" + +#: src/Toolbox.php:373 src/Toolbox.php:378 +#, php-format +msgid "%1$s %2$s" +msgstr "%1$s %2$s" + +#: setup.php:285 +msgid "Environmental Impact" +msgstr "Çevresel etki" -#: src/Command/CollectCarbonIntensityCommand.php:94 +#: hook.php:97 msgid "" -"The selected source does not enumerates its supported zones. Trying to " -"identify a zone from an address" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." msgstr "" -"Seçilmiş kaynak, desteklenen bölgeleri belirtmiyor. Adresten bölge " -"belirlenmeye çalışılıyor" +"Ayrıntılı bilgi almak için lütfen günlüklere bakın. Eklenti deposuna bir " +"sorun bildirin." -#: src/Command/CollectCarbonIntensityCommand.php:98 -msgid "Geocoding is not enabled. Cannot resolve an address into a zone" -msgstr "Coğrafi kodlama açılmamış. Adresten bölge bulunamaz" +#: hook.php:301 +msgid "Associate to an usage profile" +msgstr "Bir kullanım profili ile ilişkilendir" -#: src/Command/CollectCarbonIntensityCommand.php:103 -msgid "Address:" -msgstr "Adres:" +#: hook.php:302 hook.php:307 +msgid "Delete all calculated environmental impacts" +msgstr "Tüm hesaplanmış çevresel etkileri sil" -#: src/Command/CollectCarbonIntensityCommand.php:106 -msgid "Zone:" -msgstr "Bölge:" +#: hook.php:311 hook.php:316 hook.php:320 +msgid "Update type power consumption" +msgstr "Güncelleme türü güç tüketimi" + +#: hook.php:312 +msgid "Update category" +msgstr "Güncelleme kategorisi" + +#: hook.php:324 +msgid "Update zone for Boavizta engine" +msgstr "Boavizta hesaplayıcı bölgesini güncelle" -#: src/Command/CollectCarbonIntensityCommand.php:133 -msgid "Source not found" -msgstr "Kaynak bulunamadı" +#: hook.php:325 +msgid "Update carbon intensity source and zone" +msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:157 -msgid "Creation of relation between source and zone failed" -msgstr "Kaynak ve bölge arasında ilişki kurulamadı" +#: install/install/create_automatic_actions.php:52 +msgid "Find the Alpha3 country code (ISO3166) of locations" +msgstr "Konumların Alpha3 ülke kodunu bul (ISO3166)" -#: src/Command/CollectCarbonIntensityCommand.php:163 -msgid "Reading data..." -msgstr "Veriler okunuyor..." +#: install/install/create_automatic_actions.php:64 +msgid "Compute carbon emissions of computers" +msgstr "Bilgisayarların karbon emisyonlarını hesapla" -#: src/DataSource/Lca/Boaviztapi/Config.php:100 -msgid "Invalid Boavizta API URL" -msgstr "Boavizta API adresi geçersiz" +#: install/install/create_automatic_actions.php:76 +msgid "Compute embodied impact of assets" +msgstr "Varlıkların gerçekleşen etkisini hesapla" -#: src/DataSource/Lca/Boaviztapi/Config.php:108 -msgid "Connection to Boavizta API established" -msgstr "Boavizta API bağlantısı kuruldu" +#: install/install/create_uasge_profiles.php:41 +msgid "Always on" +msgstr "Her zaman açık" -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:55 -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:55 -msgid "Resource diagnosis" -msgstr "Kaynak teşhisi" +#: install/install/create_uasge_profiles.php:52 +msgid "Office hours" +msgstr "Çalışma saatleri" -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:70 -msgid "Collect carbon intensities from Electricity Maps" -msgstr "Electricity Maps üzerinden karbon yoğunluklarını al" +#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 +#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 +msgid "Missing arguments in request." +msgstr "İstekte argümanlar eksik." -#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:88 -msgid "Download carbon emissions from Electricity Maps" -msgstr "Electricity Maps üzerinden karbon emisyonlarını indir" +#: front/usageimpact.form.php:80 front/usageimpact.form.php:106 +#: front/usageimpact.form.php:114 front/embodiedimpact.form.php:92 +msgid "Bad arguments." +msgstr "Argümanlar yanlış." -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:86 -msgid "Collect carbon intensities from RTE" -msgstr "RTE üzerinden karbon yoğunluklarını al" +#: front/usageimpact.form.php:90 front/embodiedimpact.form.php:68 +#: front/embodiedimpact.form.php:77 +msgid "Reset denied." +msgstr "Sıfırlama reddedildi." -#: src/DataSource/CarbonIntensity/Rte/CronTask.php:104 -msgid "Download carbon emissions from RTE" -msgstr "RTE üzerinden karbon emisyonlarını indir" +#: front/usageimpact.form.php:95 front/embodiedimpact.form.php:82 +msgid "Reset failed." +msgstr "Sıfırlanamadı." -#: setup.php:285 -msgid "Environmental Impact" -msgstr "Çevresel etki" +#: front/usageimpact.form.php:122 +msgid "Missing data prevents historization of this asset." +msgstr "Eksik veriler bu varlığın geçmiş hesaplamasını engelliyor. " + +#: front/usageimpact.form.php:125 +msgid "Update of global warming potential failed." +msgstr "Küresel ısınma potansiyeli güncellenemedi." + +#: front/usageimpact.form.php:131 front/embodiedimpact.form.php:101 +msgid "Unable to find calculation engine for this asset." +msgstr "Bu varlık için bir hesaplayıcısı bulunamadı." + +#: front/usageimpact.form.php:136 +msgid "Update of usage impact failed." +msgstr "Kullanım etkisi güncellenemedi." From fa7ab9f2e3dee8dba4e8278a25d149bfc719e84f Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Wed, 15 Apr 2026 07:51:18 +0200 Subject: [PATCH 04/13] docs(locales): update locales --- locales/cs_CZ.po | 1670 ++++++++++++++++++++++++++------------------ locales/de_DE.po | 1402 ++++++++++++++++++++++--------------- locales/es_AR.po | 1708 +++++++++++++++++++++++++++------------------ locales/es_ES.po | 1508 ++++++++++++++++++++++++++++++--------- locales/es_MX.po | 16 +- locales/fr_FR.po | 1742 +++++++++++++++++++++++++++------------------- locales/hr_HR.po | 1695 +++++++++++++++++++++++++------------------- locales/ko_KR.po | 1490 +++++++++++++++++++++++---------------- locales/pl_PL.po | 1448 +++++++++++++++++++++++++++++--------- locales/pt_BR.po | 1728 ++++++++++++++++++++++++++------------------- locales/tr_TR.po | 16 +- locales/zh_CN.po | 1407 ++++++++++++++++++++++++++++--------- 12 files changed, 10179 insertions(+), 5651 deletions(-) diff --git a/locales/cs_CZ.po b/locales/cs_CZ.po index 52cbde25..ba8a01f5 100644 --- a/locales/cs_CZ.po +++ b/locales/cs_CZ.po @@ -4,16 +4,16 @@ # FIRST AUTHOR , YEAR. # # Translators: -# David Stepan , 2025 +# David Stepan , 2026 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 08:10+0000\n" -"PO-Revision-Date: 2025-07-03 13:58+0000\n" -"Last-Translator: David Stepan , 2025\n" +"POT-Creation-Date: 2026-04-15 02:49+0000\n" +"PO-Revision-Date: 2025-10-29 09:26+0000\n" +"Last-Translator: David Stepan , 2026\n" "Language-Team: Czech (Czech Republic) (https://app.transifex.com/teclib/teams/28042/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,140 +21,60 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: templates/dashboard/usage-carbon-emission-last-year.html.twig -msgid "Yearly Usage Carbon Emission" -msgstr "Roční spotřeba emisí uhlíku" - -#: templates/dashboard/monthly-carbon-emission.html.twig -msgid "Monthly usage carbon emission" -msgstr "Měsíční emise uhlíku spotřeby" - -#: templates/dashboard/monthly-carbon-emission.html.twig -#, php-format -msgid "Compared to %s" -msgstr "Ve srovnání s %s" - -#: templates/dashboard/embodied-primary-energy.html.twig -msgid "Embodied primary energy" -msgstr "Ztělesněná primární energie" - -#: templates/dashboard/usage-abiotic-depletion.html.twig -#: src/Dashboard/Widget.php:102 src/Dashboard/DemoProvider.php:95 -#: src/Dashboard/Grid.php:184 src/Dashboard/Grid.php:287 -#: src/Dashboard/Provider.php:812 -msgid "Usage abiotic depletion potential" -msgstr "Potenciál abiotického využití" - -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#: templates/dashboard/unhandled-monitors-card.html.twig -#: templates/dashboard/unhandled-computers-card.html.twig -msgid "Warning" -msgstr "Varování" - -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#, php-format -msgid "" -"It represents %s percent of your parc that contains %s network equipments." +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 +#: src/ComputerUsageProfile.php:169 +msgid "Start time" msgstr "" -"Představuje %s procent vašeho parku, který obsahuje %s síťových zařízení." - -#: templates/dashboard/unhandled-monitors-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s monitors." -msgstr "Představuje %s procent vašeho parku, který obsahuje %s monitorů." - -#: templates/dashboard/information-block.html.twig -msgid "Information" -msgstr "Informace" -#: templates/dashboard/information-block.html.twig -msgid "" -"Our data is sourced from reliable sources and is meticulously calculated " -"using industry-standard methodologies. We utilize accurate measurement tools" -" and algorithms to ensure the precision and reliability of our environmental" -" metrics." +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 +msgid "Stop time" msgstr "" -"Naše data pocházejí ze spolehlivých zdrojů a jsou pečlivě vypočítávána " -"pomocí standardních metodik v oboru. Používáme přesné měřicí nástroje a " -"algoritmy, abychom zajistili přesnost a spolehlivost našich " -"environmentálních metrik." -#: templates/dashboard/information-block.html.twig -msgid "" -"As we move towards a greener future, businesses will soon be required to " -"report energy usage and carbon emissions. By 2025, many areas will enforce " -"these regulations. Adopting these practices now ensures compliance and helps" -" combat climate change." +#: templates/computerusageprofile.html.twig +msgid "Days of week where the computer usually runs" msgstr "" -"S postupem k zelenější budoucnosti budou podniky brzy povinny hlásit " -"spotřebu energie a emise uhlíku. Od roku 2025 bude mnoho oblastí tyto " -"předpisy vymáhat. Přijetí těchto postupů nyní zajišťuje dodržování předpisů " -"a pomáhá v boji proti změně klimatu." - -#: templates/dashboard/information-block.html.twig -msgid "Did you know ?" -msgstr "Věděl jste to?" - -#: templates/dashboard/information-block.html.twig -msgid "" -"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " -"about 20 meters." -msgstr "1 gram CO₂ odpovídá CO₂ emitovanému při ujetí autem asi 20 metrů." - -#: templates/dashboard/embodied-carbon-emission.html.twig -#: src/Dashboard/Widget.php:111 -msgid "Embodied carbon emission" -msgstr "Emise uhlíku v hmotné atmosféře" -#: templates/dashboard/information-video-card.html.twig -msgid "Want to know more ?" -msgstr "Chcete se dozvědět více?" +#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 +#: src/Impact/Usage/Engine.php:48 +msgid "Boavizta" +msgstr "Boavizta" -#: templates/dashboard/information-video-card.html.twig -msgid "Here is a video about the impact of numeric on the enviromnent." -msgstr "Zde je video o dopadu čísel na životní prostředí." +#: templates/location.html.twig src/SearchOptions.php:138 src/Location.php:182 +msgid "Boavizta zone" +msgstr "Oblast Boavizta" -#: templates/dashboard/unhandled-computers-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s computers." -msgstr "Představuje %s procent vašeho parku, který obsahuje %s počítačů." +#: templates/location.html.twig src/CarbonIntensity.php:65 +msgid "Carbon intensity" +msgstr "Intenzita uhlíku" -#: templates/dashboard/embodied-abiotic-depletion.html.twig -#: src/Dashboard/Widget.php:118 src/Dashboard/DemoProvider.php:77 -#: src/Dashboard/Grid.php:204 src/Dashboard/Grid.php:301 -#: src/Dashboard/Provider.php:778 src/Dashboard/Provider.php:862 -msgid "Embodied abiotic depletion potential" -msgstr "Ztělesněný potenciál vyčerpání abiotických látek" +#: templates/usageinfo.html.twig +msgid "Asset usage" +msgstr "Využití aktiva" -#: templates/monitortype.html.twig -msgid "" -"This power value is used as default when the power of a monitor model is " -"unknown" -msgstr "" -"Tato hodnota napájení se používá jako výchozí, pokud není napájení modelu " -"monitoru známo" +#: templates/usageinfo.html.twig +msgid "Usage profile" +msgid_plural "Usage profiles" +msgstr[0] "Profil použití" +msgstr[1] "Profilů použití" +msgstr[2] "Profilů použití" +msgstr[3] "Profily použití" -#: templates/monitortype.html.twig templates/computertype.html.twig -#: templates/networkequipmenttype.html.twig src/AbstractType.php:56 -msgid "Power" -msgid_plural "Powers" -msgstr[0] "Výkon" -msgstr[1] "Výkonů" -msgstr[2] "Výkonů" -msgstr[3] "Výkony" +#: templates/quick-report.html.twig front/report.php:55 +msgid "GLPI Carbon" +msgstr "GLPI Carbon" -#: templates/computertype.html.twig -msgid "" -"This power value is used as default when the power of a computer model is " -"unknown" +#: templates/components/form/source_zone_selector.html.twig +#: src/AbstractModel.php:186 +msgid "Source" msgstr "" -"Tato hodnota výkonu se používá jako výchozí, pokud není výkon modelu " -"počítače znám." -#: templates/computertype.html.twig src/SearchOptions.php:251 -#: src/ComputerType.php:78 -msgid "Category" -msgstr "Kategorie" +#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 +msgid "Carbon intensity zone" +msgid_plural "Carbon intensity zones" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: templates/pages/CarbonIntensitySource/tab_zone.html.twig msgid "No zone available" @@ -164,14 +84,6 @@ msgstr "Žádná zóna k dispozici" msgid "Please run the automatic action to downlaod data from this source." msgstr "Spusťte prosím automatickou akci pro stažení dat z tohoto zdroje." -#: templates/networkequipmenttype.html.twig -msgid "" -"This power value is used as default when the power of a network equipment " -"model is unknown" -msgstr "" -"Tato hodnota výkonu se používá jako výchozí, pokud není znám výkon modelu " -"síťového zařízení" - #: templates/environmentalimpact-item.html.twig msgid "Usage" msgstr "Využití" @@ -184,46 +96,13 @@ msgstr "" msgid "Calculate data" msgstr "Vypočítat data" -#: templates/environmentalimpact-item.html.twig +#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 msgid "Embodied impact" -msgstr "" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:125 -#: src/ComputerUsageProfile.php:146 -msgid "Start time" -msgstr "" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:154 -msgid "Stop time" -msgstr "" - -#: templates/computerusageprofile.html.twig -msgid "Days of week where the computer usually runs" -msgstr "" - -#: templates/usageinfo.html.twig -msgid "Asset usage" -msgstr "Využití aktiva" - -#: templates/usageinfo.html.twig -msgid "Usage profile" -msgid_plural "Usage profiles" -msgstr[0] "Profil použití" -msgstr[1] "Profilů použití" -msgstr[2] "Profilů použití" -msgstr[3] "Profily použití" - -#: templates/quick-report.html.twig front/report.php:55 -msgid "GLPI Carbon" -msgstr "GLPI Carbon" - -#: templates/location.html.twig src/Profile.php:45 src/UsageInfo.php:91 -msgid "Environmental impact" -msgstr "Dopad na životní prostředí" - -#: templates/location.html.twig src/Location.php:78 src/SearchOptions.php:121 -msgid "Boavizta zone" -msgstr "Oblast Boavizta" +msgid_plural "Embodied impacts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: templates/history/status-item.html.twig msgid "Historization status" @@ -257,13 +136,17 @@ msgstr "Není šablona" msgid "Linked to a computer" msgstr "Propojeno s počítačem" +#: templates/history/status-item.html.twig +msgid "Attached computer has a location" +msgstr "" + #: templates/history/status-item.html.twig msgid "Has a location" msgstr "Má umístění" #: templates/history/status-item.html.twig -msgid "The location has a state or a country" -msgstr "Umístění má stát nebo zemi" +msgid "The location has carbon intensity data" +msgstr "" #: templates/history/status-item.html.twig msgid "Real time carbon intensity enabled" @@ -285,6 +168,10 @@ msgstr "Model má spotřebu energie" msgid "The asset has a type" msgstr "Aktivum má typ" +#: templates/history/status-item.html.twig +msgid "Type is not ignored" +msgstr "" + #: templates/history/status-item.html.twig msgid "The type has a power consumption" msgstr "Typ má spotřebu energie" @@ -305,13 +192,27 @@ msgstr "Aktivum má datum zápisu do inventáře" msgid "Legend" msgstr "Legenda" -#: templates/config.html.twig -msgid "Electricity maps" -msgstr "Mapy elektřiny" +#: templates/monitortype.html.twig +msgid "" +"This power value is used as default when the power of a monitor model is " +"unknown" +msgstr "" +"Tato hodnota napájení se používá jako výchozí, pokud není napájení modelu " +"monitoru známo" -#: templates/config.html.twig -msgid "Key for electricitymap.org API" -msgstr "Klíč pro API electricitymap.org" +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Power" +msgid_plural "Powers" +msgstr[0] "Výkon" +msgstr[1] "Výkonů" +msgstr[2] "Výkonů" +msgstr[3] "Výkony" + +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Do not evaluate" +msgstr "" #: templates/config.html.twig msgid "Impact engine" @@ -321,348 +222,655 @@ msgstr "Rázový motor" msgid "Usage carbon emissions are always calculated internally" msgstr "Emise uhlíku spotřeby se vždy počítají interně" -#: templates/config.html.twig src/Impact/Embodied/Engine.php:46 -#: src/Impact/Usage/Engine.php:46 -msgid "Boavizta" -msgstr "Boavizta" - -#: templates/config.html.twig -msgid "Base URL to the Boaviztapi instance" -msgstr "Základní URL adresa instance Boaviztapi" - -#: templates/config.html.twig +#: templates/computertype.html.twig msgid "" -"Geocoding converts a location into a ISO 3166 (3 letters) code. Boavizta " -"needs this to determine usage impacts of assets. This feature sends the " -"address stored in a location to nominatim.org service. If this is an issue, " -"you can disable it below, and fill the coutry code manually." +"This power value is used as default when the power of a computer model is " +"unknown" msgstr "" -"Geokódování převádí polohu na kód ISO 3166 (3 písmena). Boavizta to " -"potřebuje k určení dopadů využití aktiv. Tato funkce odesílá adresu uloženou" -" v dané lokalitě službě nominatim.org. Pokud se jedná o problém, můžete ji " -"níže deaktivovat a kód země vyplnit ručně." - -#: templates/config.html.twig -msgid "Enable geocoding" -msgstr "Povolit geokódování" +"Tato hodnota výkonu se používá jako výchozí, pokud není výkon modelu " +"počítače znám." -#: setup.php:263 -msgid "Environmental Impact" -msgstr "Dopad na životní prostředí" +#: templates/computertype.html.twig src/SearchOptions.php:303 +#: src/ComputerType.php:78 +msgid "Category" +msgstr "Kategorie" -#: front/embodiedimpact.form.php:65 front/embodiedimpact.form.php:88 -#: front/usageimpact.form.php:65 front/usageimpact.form.php:102 -msgid "Missing arguments in request." -msgstr "" +#: templates/dashboard/information-block.html.twig +msgid "Information" +msgstr "Informace" -#: front/embodiedimpact.form.php:70 front/embodiedimpact.form.php:79 -#: front/usageimpact.form.php:89 -msgid "Reset denied." +#: templates/dashboard/information-block.html.twig +msgid "" +"Our data is sourced from reliable sources and is meticulously calculated " +"using industry-standard methodologies. We utilize accurate measurement tools" +" and algorithms to ensure the precision and reliability of our environmental" +" metrics." msgstr "" +"Naše data pocházejí ze spolehlivých zdrojů a jsou pečlivě vypočítávána " +"pomocí standardních metodik v oboru. Používáme přesné měřicí nástroje a " +"algoritmy, abychom zajistili přesnost a spolehlivost našich " +"environmentálních metrik." -#: front/embodiedimpact.form.php:84 front/usageimpact.form.php:94 -msgid "Reset failed." +#: templates/dashboard/information-block.html.twig +msgid "" +"As we move towards a greener future, businesses will soon be required to " +"report energy usage and carbon emissions. By 2025, many areas will enforce " +"these regulations. Adopting these practices now ensures compliance and helps" +" combat climate change." msgstr "" +"S postupem k zelenější budoucnosti budou podniky brzy povinny hlásit " +"spotřebu energie a emise uhlíku. Od roku 2025 bude mnoho oblastí tyto " +"předpisy vymáhat. Přijetí těchto postupů nyní zajišťuje dodržování předpisů " +"a pomáhá v boji proti změně klimatu." -#: front/embodiedimpact.form.php:94 front/usageimpact.form.php:133 -msgid "Unable to find calculation engine for this asset." -msgstr "" +#: templates/dashboard/information-block.html.twig +msgid "Did you know ?" +msgstr "Věděl jste to?" -#: front/embodiedimpact.form.php:103 -msgid "Update failed." -msgstr "Aktualizace selhala." +#: templates/dashboard/information-block.html.twig +msgid "" +"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " +"about 20 meters." +msgstr "1 gram CO₂ odpovídá CO₂ emitovanému při ujetí autem asi 20 metrů." -#: front/usageimpact.form.php:79 front/usageimpact.form.php:108 -#: front/usageimpact.form.php:116 -msgid "Bad arguments." +#: templates/dashboard/unhandled-monitors-card.html.twig +#: templates/dashboard/unhandled-computers-card.html.twig +#: templates/dashboard/unhandled-network-equipments-card.html.twig +msgid "Warning" +msgstr "Varování" + +#: templates/dashboard/unhandled-monitors-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s monitors." +msgstr "Představuje %s procent vašeho parku, který obsahuje %s monitorů." + +#: templates/dashboard/usage-carbon-emission-last-year.html.twig +msgid "Yearly Usage Carbon Emission" +msgstr "Roční spotřeba emisí uhlíku" + +#: templates/dashboard/monthly-carbon-emission.html.twig +msgid "Monthly usage carbon emission" +msgstr "Měsíční emise uhlíku spotřeby" + +#: templates/dashboard/monthly-carbon-emission.html.twig +#, php-format +msgid "Compared to %s" +msgstr "Ve srovnání s %s" + +#: templates/dashboard/unhandled-computers-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s computers." +msgstr "Představuje %s procent vašeho parku, který obsahuje %s počítačů." + +#: templates/dashboard/unhandled-network-equipments-card.html.twig +#, php-format +msgid "" +"It represents %s percent of your parc that contains %s network equipments." msgstr "" +"Představuje %s procent vašeho parku, který obsahuje %s síťových zařízení." + +#: templates/dashboard/information-video-card.html.twig +msgid "Want to know more ?" +msgstr "Chcete se dozvědět více?" -#: front/usageimpact.form.php:98 -msgid "Delete of usage impact failed." +#: templates/dashboard/information-video-card.html.twig +msgid "Here is a video about the impact of numeric on the enviromnent." +msgstr "Zde je video o dopadu čísel na životní prostředí." + +#: templates/abstractmodel.html.twig +msgid "" +"The impacts below shall include the manufacturing, disposal and recycling " +"processes only." msgstr "" -#: front/usageimpact.form.php:124 -msgid "Missing data prevents historization of this asset." +#: templates/abstractmodel.html.twig +msgid "Take care of the expected units before setting an impact." msgstr "" -#: front/usageimpact.form.php:127 -msgid "Update of global warming potential failed." +#: templates/abstractmodel.html.twig +msgid "Data quality" msgstr "" -#: front/usageimpact.form.php:138 -msgid "Update of usage impact failed." +#: templates/abstractmodel.html.twig +msgid "Data source" msgstr "" -#: hook.php:293 -msgid "Associate to an usage profile" +#: templates/networkequipmenttype.html.twig +msgid "" +"This power value is used as default when the power of a network equipment " +"model is unknown" msgstr "" +"Tato hodnota výkonu se používá jako výchozí, pokud není znám výkon modelu " +"síťového zařízení" -#: hook.php:297 hook.php:302 hook.php:306 -msgid "Update type power consumption" +#: src/Command/CollectCarbonIntensityCommand.php:70 +msgid "Read carbon dioxyde intensity from external sources" msgstr "" -#: hook.php:298 -msgid "Update category" -msgstr "Aktualizovat kategorii" +#: src/Command/CollectCarbonIntensityCommand.php:84 +msgid "Source:" +msgstr "" -#: hook.php:310 -msgid "Update zone for Boavizta engine" +#: src/Command/CollectCarbonIntensityCommand.php:95 +msgid "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" msgstr "" -#: install/install/create_automatic_actions.php:45 -msgid "Find the Alpha3 country code (ISO3166) of locations" -msgstr "Najděte kód země Alpha3 (ISO3166) pro lokality" +#: src/Command/CollectCarbonIntensityCommand.php:99 +msgid "Geocoding is not enabled. Cannot resolve an address into a zone" +msgstr "" -#: install/install/create_automatic_actions.php:57 -msgid "Compute carbon emissions of computers" -msgstr "Výpočet emisí uhlíku z počítačů" +#: src/Command/CollectCarbonIntensityCommand.php:104 +msgid "Address:" +msgstr "" -#: install/install/create_automatic_actions.php:69 -msgid "Collect carbon intensities from RTE" -msgstr "Shromážděná intenzita uhlíku z RTE" +#: src/Command/CollectCarbonIntensityCommand.php:107 +msgid "Zone:" +msgstr "" -#: install/install/create_automatic_actions.php:81 -msgid "Collect carbon intensities from ElectricityMap" -msgstr "Sběr intenzity uhlíku z ElectricityMap" +#: src/Command/CollectCarbonIntensityCommand.php:123 +#: src/Command/CreateFakeCarbonIntensityCommand.php:67 +msgid "Creating data source name" +msgstr "Vytváření názvu zdroje dat" -#: install/install/create_automatic_actions.php:93 -msgid "Compute embodied impact of assets" -msgstr "Výpočet ztělesněného dopadu aktiv" +#: src/Command/CollectCarbonIntensityCommand.php:130 +msgid "This source does not exist" +msgstr "" -#: install/install/create_uasge_profiles.php:41 -msgid "Always on" -msgstr "Vždy zapnuto" +#: src/Command/CollectCarbonIntensityCommand.php:149 +msgid "The zone is not handled by the data source" +msgstr "" -#: install/install/create_uasge_profiles.php:52 -msgid "Office hours" -msgstr "Úřední hodiny" +#: src/Command/CollectCarbonIntensityCommand.php:155 +msgid "Reading data..." +msgstr "" -#: src/AbstractType.php:64 src/Dashboard/Grid.php:68 -#: src/Dashboard/Grid.php:133 src/Dashboard/Grid.php:234 -msgid "Carbon" -msgstr "Uhlík" +#: src/Command/CreateFakeCarbonIntensityCommand.php:78 +msgid "Creating data zone name" +msgstr "Vytváření názvu datové zóny" -#: src/CronTask.php:64 -msgid "Find the Alpha3 country code (ISO3166)" +#: src/Command/CreateFakeCarbonIntensityCommand.php:89 +msgid "Creating fake data..." +msgstr "Vytváření falešných dat..." + +#: src/Command/ExportDashboardCommand.php:68 +msgid "Updating the report dashboard description" +msgstr "Aktualizace popisu řídicího panelu sestav" + +#: src/Command/ExportDashboardCommand.php:73 +msgid "Dashboard not found" +msgstr "Řídící panel nenalezen" + +#: src/Command/ExportDashboardCommand.php:99 +#, php-format +msgid "Dashboard description saved to %s" +msgstr "Popis řídicího panelu byl uložen do %s" + +#: src/Command/CreateTestInventoryCommand.php:145 +msgid "Creating test inventory" +msgstr "Vytváření testovacího inventáře" + +#: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 +#: src/ComputerType.php:70 src/MonitorType.php:50 +msgid "Power consumption" +msgstr "Spotřeba energie" + +#: src/UsageInfo.php:62 +msgid "Usage informations" +msgstr "Informace o použití" + +#: src/UsageInfo.php:94 src/AbstractModel.php:54 src/Location.php:73 +#: src/AbstractType.php:55 src/Profile.php:45 +msgid "Environmental impact" +msgstr "Dopad na životní prostředí" + +#: src/UsageInfo.php:241 +#, php-format +msgid "%s More information %s" msgstr "" -#: src/CronTask.php:65 -msgid "Maximum number of locations to solve" +#: src/DataSource/Lca/Boaviztapi/Config.php:100 +msgid "Invalid Boavizta API URL" msgstr "" -#: src/CronTask.php:70 +#: src/DataSource/Lca/Boaviztapi/Config.php:108 +msgid "Connection to Boavizta API established" +msgstr "" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:56 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:53 +msgid "Resource diagnosis" +msgstr "" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:71 +msgid "Collect carbon intensities from RTE" +msgstr "Shromážděná intenzita uhlíku z RTE" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:89 msgid "Download carbon emissions from RTE" msgstr "" -#: src/CronTask.php:71 src/CronTask.php:77 +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:90 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:87 +#: src/CronTask.php:107 msgid "Maximum number of entries to download" msgstr "" -#: src/CronTask.php:76 -msgid "Download carbon emissions from ElectricityMap" +#: src/DataSource/CarbonIntensity/AbstractCronTask.php:103 +#: src/Source_Zone.php:537 +msgid "End" msgstr "" -#: src/CronTask.php:82 -msgid "Compute usage environnemental impact for all assets" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:68 +msgid "Collect carbon intensities from Electricity Maps" msgstr "" -#: src/CronTask.php:83 src/CronTask.php:88 -msgid "Maximum number of entries to calculate" -msgstr "Maximální počet položek k výpočtu" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:86 +msgid "Download carbon emissions from Electricity Maps" +msgstr "" -#: src/CronTask.php:87 -msgid "Compute embodied environnemental impact for all assets" +#: src/AbstractImpact.php:125 src/CarbonEmission.php:151 +msgid "Date of evaluation" msgstr "" -#: src/CronTask.php:211 -msgid "No zone to download" +#: src/AbstractImpact.php:132 src/CarbonEmission.php:158 +msgid "Engine" +msgstr "Motor" + +#: src/AbstractImpact.php:139 src/CarbonEmission.php:165 +msgid "Engine version" +msgstr "Verze motoru" + +#: src/DataTracking/AbstractTracked.php:77 +msgid "Impact not evaluated" msgstr "" -#: src/NetworkEquipmentType.php:50 src/MonitorType.php:50 -#: src/SearchOptions.php:142 src/ComputerType.php:70 -msgid "Power consumption" -msgstr "Spotřeba energie" +#: src/DataTracking/AbstractTracked.php:78 +msgid "Unspecified quality" +msgstr "" + +#: src/DataTracking/AbstractTracked.php:79 +msgid "Manual data" +msgstr "" + +#: src/DataTracking/AbstractTracked.php:80 +msgid "Estimated data" +msgstr "" + +#: src/DataTracking/AbstractTracked.php:81 +msgid "Downsampled data" +msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:83 -#: src/Impact/Usage/AbstractUsageImpact.php:83 +#: src/DataTracking/AbstractTracked.php:82 +msgid "Measured data" +msgstr "" + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 +#: src/Impact/Usage/AbstractUsageImpact.php:91 msgid "grams of carbon dioxyde equivalent" msgstr "gramů ekvivalentu oxidu uhličitého" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:85 -#: src/Impact/Usage/AbstractUsageImpact.php:85 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 +#: src/Impact/Usage/AbstractUsageImpact.php:93 msgid "grams of antimony equivalent" msgstr "gramů ekvivalentu antimonu" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:87 -#: src/Impact/Usage/AbstractUsageImpact.php:87 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 +#: src/Impact/Usage/AbstractUsageImpact.php:95 msgid "joules" msgstr "joulů" -#: src/Impact/History/AbstractAsset.php:364 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 +msgid "Connection to Boavizta failed." +msgstr "" + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 +msgid "Embodied impact evaluation falied." +msgstr "" + +#: src/Impact/History/AbstractAsset.php:370 msgid "Error while calculating impact" msgstr "" -#: src/Impact/History/AbstractAsset.php:372 +#: src/Impact/History/AbstractAsset.php:378 msgid "Nothing to calculate" msgstr "" -#: src/Impact/History/AbstractAsset.php:378 +#: src/Impact/History/AbstractAsset.php:384 #, php-format msgid "%d entries calculated" msgstr "" -#: src/CarbonIntensitySource.php:45 -msgid "Carbon intensity source" -msgid_plural "Carbon intensity sources" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: src/Impact/Type.php:159 +msgid "Embodied Global warming potential" +msgstr "" -#: src/Report.php:50 -msgid "Carbon report" -msgid_plural "Carbon reports" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: src/Impact/Type.php:160 +msgid "Embodied Abiotic depletion potential" +msgstr "" -#: src/Report.php:102 -#, php-format +#: src/Impact/Type.php:161 +msgid "Embodied Primary energy consumed" +msgstr "" + +#: src/Impact/Type.php:162 +msgid "Embodied Climate change - Contribution of biogenic emissions" +msgstr "" + +#: src/Impact/Type.php:163 +msgid "Embodied Climate change - Contribution of fossil fuel emissions" +msgstr "" + +#: src/Impact/Type.php:164 msgid "" -"Demo mode enabled. The data below are not representative of the assets in " -"the database. %sDisable demo mode%s" +"Embodied Climate change - Contribution of emissions from land use change" msgstr "" -#: src/CarbonEmission.php:48 -msgid "Carbon Emission" -msgid_plural "Carbon Emissions" -msgstr[0] "Uhlíková emise" -msgstr[1] "Uhlíkové emise" -msgstr[2] "Uhlíkových emisí" -msgstr[3] "Uhlíkové emise" +#: src/Impact/Type.php:165 +msgid "Embodied Emissions of radionizing substances" +msgstr "" -#: src/CarbonEmission.php:119 -msgid "Energy" -msgstr "Energie" +#: src/Impact/Type.php:166 +msgid "Embodied Land use" +msgstr "" -#: src/CarbonEmission.php:127 -msgid "Emission" -msgstr "Emise" +#: src/Impact/Type.php:167 +msgid "Embodied Depletion of the ozone layer" +msgstr "" -#: src/CarbonEmission.php:135 -msgid "Energy quality" -msgstr "Kvalita energie" +#: src/Impact/Type.php:168 +msgid "Embodied Fine particle emissions" +msgstr "" -#: src/CarbonEmission.php:143 -msgid "Emission quality" -msgstr "Kvalita emisí" +#: src/Impact/Type.php:169 +msgid "Embodied Photochemical ozone formation" +msgstr "" -#: src/CarbonEmission.php:150 src/UsageImpact.php:149 -#: src/EmbodiedImpact.php:120 -msgid "Date of evaluation" +#: src/Impact/Type.php:170 +msgid "Embodied Use of water resources" msgstr "" -#: src/CarbonEmission.php:157 src/UsageImpact.php:156 -#: src/EmbodiedImpact.php:127 -msgid "Engine" -msgstr "Motor" +#: src/Impact/Type.php:171 +msgid "Embodied Material input per unit of service" +msgstr "" -#: src/CarbonEmission.php:164 src/UsageImpact.php:163 -#: src/EmbodiedImpact.php:134 -msgid "Engine version" -msgstr "Verze motoru" +#: src/Impact/Type.php:172 +msgid "Embodied Use of mineral and metal resources" +msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:67 -#: src/Command/CollectCarbonIntensityCommand.php:68 -msgid "Creating data source name" -msgstr "Vytváření názvu zdroje dat" +#: src/Impact/Type.php:173 +msgid "Embodied Use of fossil resources (including nuclear)" +msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:78 -msgid "Creating data zone name" -msgstr "Vytváření názvu datové zóny" +#: src/Impact/Type.php:174 +msgid "Embodied Acidification" +msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:89 -msgid "Creating fake data..." -msgstr "Vytváření falešných dat..." +#: src/Impact/Type.php:175 +msgid "Embodied Freshwater ecotoxicity" +msgstr "" -#: src/Command/ExportDashboardCommand.php:69 -msgid "Updating the report dashboard description" -msgstr "Aktualizace popisu řídicího panelu sestav" +#: src/Impact/Type.php:178 +msgid "Embodied Eutrophication of freshwater" +msgstr "" -#: src/Command/ExportDashboardCommand.php:74 -msgid "Dashboard not found" -msgstr "Řídící panel nenalezen" +#: src/Impact/Type.php:179 +msgid "Embodied Eutrophication of marine waters" +msgstr "" -#: src/Command/ExportDashboardCommand.php:100 -#, php-format -msgid "Dashboard description saved to %s" -msgstr "Popis řídicího panelu byl uložen do %s" +#: src/Impact/Type.php:180 +msgid "Embodied Terrestrial eutrophication" +msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:85 -msgid "Zone not found" -msgstr "Zóna nenalezena" +#: src/Impact/Type.php:195 +msgid "Usage Global warming potential" +msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:91 -msgid "Reading eco2mix data..." -msgstr "Načítání dat eco2mix..." +#: src/Impact/Type.php:196 +msgid "Usage Abiotic depletion potential" +msgstr "" -#: src/Command/CreateTestInventoryCommand.php:146 -msgid "Creating test inventory" -msgstr "Vytváření testovacího inventáře" +#: src/Impact/Type.php:197 +msgid "Usage Primary energy consumed" +msgstr "" -#: src/Config.php:130 -msgid "Invalid Boavizta API URL" +#: src/Impact/Type.php:198 +msgid "Usage Climate change - Contribution of biogenic emissions" msgstr "" -#: src/Config.php:138 -msgid "Connection to Boavizta API established" +#: src/Impact/Type.php:199 +msgid "Usage Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/Zone.php:53 -msgid "Carbon intensity zone" -msgid_plural "Carbon intensity zones" +#: src/Impact/Type.php:200 +msgid "Usage Climate change - Contribution of emissions from land use change" +msgstr "" + +#: src/Impact/Type.php:201 +msgid "Usage Emissions of radionizing substances" +msgstr "" + +#: src/Impact/Type.php:202 +msgid "Usage Land use" +msgstr "" + +#: src/Impact/Type.php:203 +msgid "Usage Depletion of the ozone layer" +msgstr "" + +#: src/Impact/Type.php:204 +msgid "Usage Fine particle emissions" +msgstr "" + +#: src/Impact/Type.php:205 +msgid "Usage Photochemical ozone formation" +msgstr "" + +#: src/Impact/Type.php:206 +msgid "Usage Use of water resources" +msgstr "" + +#: src/Impact/Type.php:207 +msgid "Usage Material input per unit of service" +msgstr "" + +#: src/Impact/Type.php:208 +msgid "Usage Use of mineral and metal resources" +msgstr "" + +#: src/Impact/Type.php:209 +msgid "Usage Use of fossil resources (including nuclear)" +msgstr "" + +#: src/Impact/Type.php:210 +msgid "Usage Acidification" +msgstr "" + +#: src/Impact/Type.php:211 +msgid "Usage Freshwater ecotoxicity" +msgstr "" + +#: src/Impact/Type.php:214 src/Impact/Type.php:342 +msgid "Usage Eutrophication of freshwater" +msgstr "" + +#: src/Impact/Type.php:215 src/Impact/Type.php:343 +msgid "Usage Eutrophication of marine waters" +msgstr "" + +#: src/Impact/Type.php:216 src/Impact/Type.php:344 +msgid "Usage Terrestrial eutrophication" +msgstr "" + +#: src/Impact/Type.php:231 +msgid "Total Global warming potential" +msgstr "" + +#: src/Impact/Type.php:232 +msgid "Total Abiotic depletion potential" +msgstr "" + +#: src/Impact/Type.php:233 +msgid "Total Primary energy consumed" +msgstr "" + +#: src/Impact/Type.php:234 +msgid "Total Climate change - Contribution of biogenic emissions" +msgstr "" + +#: src/Impact/Type.php:235 +msgid "Total Climate change - Contribution of fossil fuel emissions" +msgstr "" + +#: src/Impact/Type.php:236 +msgid "Total Climate change - Contribution of emissions from land use change" +msgstr "" + +#: src/Impact/Type.php:237 +msgid "Total Emissions of radionizing substances" +msgstr "" + +#: src/Impact/Type.php:238 +msgid "Total Land use" +msgstr "" + +#: src/Impact/Type.php:239 +msgid "Total Depletion of the ozone layer" +msgstr "" + +#: src/Impact/Type.php:240 +msgid "Total Fine particle emissions" +msgstr "" + +#: src/Impact/Type.php:241 +msgid "Total Photochemical ozone formation" +msgstr "" + +#: src/Impact/Type.php:242 +msgid "Total Use of water resources" +msgstr "" + +#: src/Impact/Type.php:243 +msgid "Total Material input per unit of service" +msgstr "" + +#: src/Impact/Type.php:244 +msgid "Total Use of mineral and metal resources" +msgstr "" + +#: src/Impact/Type.php:245 +msgid "Total Use of fossil resources (including nuclear)" +msgstr "" + +#: src/Impact/Type.php:246 +msgid "Total Acidification" +msgstr "" + +#: src/Impact/Type.php:247 +msgid "Total Freshwater ecotoxicity" +msgstr "" + +#: src/Impact/Type.php:250 +msgid "Total Eutrophication of freshwater" +msgstr "" + +#: src/Impact/Type.php:251 +msgid "Total Eutrophication of marine waters" +msgstr "" + +#: src/Impact/Type.php:252 +msgid "Total Terrestrial eutrophication" +msgstr "" + +#: src/Impact/Type.php:323 +msgid "Carbon emission in CO₂ equivalent" +msgstr "" + +#: src/Impact/Type.php:324 +msgid "Consumption of non renewable resources in Antimony equivalent." +msgstr "" + +#: src/Impact/Type.php:325 +msgid "Primary energy consumed." +msgstr "" + +#: src/Impact/Type.php:332 +msgid "Incidence of disease" +msgstr "" + +#: src/Source.php:46 +msgid "Carbon intensity source" +msgid_plural "Carbon intensity sources" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Zone.php:126 src/Zone.php:141 -msgid "Data source for historical calculation" +#: src/SearchOptions.php:184 src/SearchOptions.php:316 +#: src/SearchOptions.php:329 src/SearchOptions.php:342 +msgid "Ignore environmental impact" msgstr "" -#: src/Zone.php:157 src/CarbonIntensitySource_Zone.php:86 -#: src/CarbonIntensitySource_Zone.php:169 -#: src/CarbonIntensitySource_Zone.php:264 -msgid "Download enabled" -msgstr "Stahování povoleno" +#: src/SearchOptions.php:241 src/SearchOptions.php:365 +#: src/SearchOptions.php:442 +msgid "Is historizable" +msgstr "Je historizovatelné" -#: src/UsageInfo.php:59 -msgid "Usage informations" -msgstr "Informace o použití" +#: src/ComputerType.php:56 +msgid "Unspecified" +msgstr "Nespecifikováno" -#: src/UsageInfo.php:214 src/Dashboard/Widget.php:848 -#, php-format -msgid "" -"Evaluates the carbon emission in CO₂ equivalent. %s More information %s" -msgstr "Vyhodnocuje emise uhlíku v ekvivalentu CO₂. %s Více informací %s" +#: src/ComputerType.php:58 +msgid "Server" +msgstr "Server" -#: src/UsageInfo.php:222 src/Dashboard/Widget.php:884 -#: src/Dashboard/Widget.php:921 -#, php-format -msgid "" -"Evaluates the consumption of non renewable resources in Antimony equivalent." -" %s More information %s" +#: src/ComputerType.php:59 +msgid "Laptop" +msgstr "Notebook" + +#: src/ComputerType.php:60 +msgid "Tablet" +msgstr "Tablet" + +#: src/ComputerType.php:61 +msgid "Smartphone" +msgstr "Chytrý telefon" + +#: src/UsageImpact.php:39 +msgid "Usage impact" +msgid_plural "Usage impacts" +msgstr[0] "Dopad užívání" +msgstr[1] "Dopady užívání" +msgstr[2] "Dopadů užívání" +msgstr[3] "Dopady užívání" + +#: src/AbstractModel.php:62 src/Dashboard/Grid.php:58 +#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 +#: src/AbstractType.php:63 +msgid "Carbon" +msgstr "Uhlík" + +#: src/AbstractModel.php:197 +msgid "Quality" msgstr "" -"Vyhodnocuje spotřebu neobnovitelných zdrojů v ekvivalentu antimonu. %s Více " -"informací %s" -#: src/UsageInfo.php:234 src/Dashboard/Widget.php:1102 +#: src/Report.php:49 +msgid "Carbon report" +msgid_plural "Carbon reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Report.php:101 #, php-format -msgid "Evaluates the primary energy consumed. %s More information %s" -msgstr "Vyhodnocuje spotřebovanou primární energii. %s Více informací %s" +msgid "" +"Demo mode enabled. The data below are not representative of the assets in " +"the database. %sDisable demo mode%s" +msgstr "" -#: src/ComputerUsageProfile.php:52 +#: src/ComputerUsageProfile.php:51 msgid "Computer usage profile" msgid_plural "Computer usage profiles" msgstr[0] "" @@ -670,457 +878,549 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/ComputerUsageProfile.php:94 +#: src/ComputerUsageProfile.php:117 msgid "Start time is invalid" msgstr "" -#: src/ComputerUsageProfile.php:99 +#: src/ComputerUsageProfile.php:122 msgid "Stop time is invalid" msgstr "" -#: src/Dashboard/Widget.php:57 src/Dashboard/Grid.php:317 -msgid "Environmental impact information video" -msgstr "Informační video o dopadu na životní prostředí" - -#: src/Dashboard/Widget.php:64 -msgid "Methodology information" -msgstr "Metodické informace" - -#: src/Dashboard/Widget.php:73 -msgid "Total Carbon Emission" -msgstr "Celkové emise uhlíku" +#: src/Source_Zone.php:72 +msgid "Source name" +msgstr "Název zdroje" -#: src/Dashboard/Widget.php:80 -msgid "Monthly Carbon Emission" -msgstr "Měsíční emise uhlíku" +#: src/Source_Zone.php:80 +msgid "Zone name" +msgstr "Název zóny" -#: src/Dashboard/Widget.php:87 src/Dashboard/Widget.php:599 -#: src/Dashboard/Grid.php:281 -msgid "Biggest monthly averaged carbon emission per model" -msgstr "" +#: src/Source_Zone.php:88 src/Source_Zone.php:171 src/Source_Zone.php:268 +#: src/Zone.php:127 +msgid "Download enabled" +msgstr "Stahování povoleno" -#: src/Dashboard/Widget.php:95 -msgid "Carbon Emission Per month" -msgstr "Emise uhlíku za měsíc" +#: src/Source_Zone.php:96 +msgid "Code" +msgstr "Kód" -#: src/Dashboard/Widget.php:125 -msgid "Embodied consumed primary energy" -msgstr "" +#: src/Source_Zone.php:150 +msgid "Not downloadable" +msgstr "Nelze stáhnout" -#: src/Dashboard/Widget.php:137 -msgid "Unhandled Computers" -msgstr "Neošetřené počítače" +#: src/Source_Zone.php:150 +msgid "This is a fallback source, there is no real-time data available" +msgstr "Toto je záložní zdroj, nejsou k dispozici žádná data v reálném čase" -#: src/Dashboard/Widget.php:148 -msgid "Unhandled Monitors" -msgstr "Neošetřené monitory" +#: src/Source_Zone.php:172 +msgid "Source for historical" +msgstr "Zdroj historických informací" -#: src/Dashboard/Widget.php:159 -msgid "Unhandled Network equipments" -msgstr "Neošetřená síťová zařízení" +#: src/Source_Zone.php:411 +msgid "Enable / Disable" +msgstr "Zapnout / Vypnout" -#: src/Dashboard/Widget.php:170 -msgid "Radar chart" +#: src/CronTask.php:100 +msgid "Find the Alpha3 country code (ISO3166)" msgstr "" -#: src/Dashboard/Widget.php:496 src/Dashboard/Provider.php:918 -msgid "Consumed energy and carbon emission per month" +#: src/CronTask.php:101 +msgid "Maximum number of locations to solve" msgstr "" -#: src/Dashboard/Widget.php:541 src/Dashboard/Widget.php:556 -#: src/Dashboard/DemoProvider.php:125 src/Dashboard/DemoProvider.php:226 -#: src/Dashboard/Provider.php:1023 -msgid "Carbon emission" -msgstr "Emise uhlíku" - -#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:559 -#: src/Dashboard/DemoProvider.php:143 src/Dashboard/DemoProvider.php:239 -#: src/Dashboard/Provider.php:1039 -msgid "Consumed energy" -msgstr "Spotřebovaná energie" - -#: src/Dashboard/Widget.php:741 -#, php-format -msgid "" -"Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " -"months. %s More information %s" +#: src/CronTask.php:106 +msgid "Download carbon emissions from Watttime" msgstr "" -#: src/Dashboard/Widget.php:807 -#, php-format -msgid "" -"Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " -"elapsed months. %s More information %s" +#: src/CronTask.php:112 +msgid "Compute usage environmental impact for all assets" msgstr "" -#: src/Dashboard/Widget.php:1092 -msgid "Total embodied primary energy" -msgstr "Celková ztělesněná primární energie" - -#: src/Dashboard/Widget.php:1161 -msgid "Handled percentage" -msgstr "Ošetřeno procentně" - -#: src/Dashboard/DemoProvider.php:49 src/Dashboard/DemoProvider.php:125 -#: src/Dashboard/DemoProvider.php:226 src/Dashboard/DemoProvider.php:415 -#: src/Dashboard/Provider.php:169 src/Dashboard/Provider.php:560 -#: src/Dashboard/Provider.php:730 src/Dashboard/Provider.php:1023 -#: src/Dashboard/Provider.php:1025 -msgid "CO₂eq" -msgstr "CO₂eq" - -#: src/Dashboard/DemoProvider.php:83 src/Dashboard/DemoProvider.php:101 -#: src/Dashboard/Provider.php:792 src/Dashboard/Provider.php:826 -msgid "Sbeq" -msgstr "Sbeq" +#: src/CronTask.php:113 src/CronTask.php:118 +msgid "Maximum number of entries to calculate" +msgstr "Maximální počet položek k výpočtu" -#: src/Dashboard/DemoProvider.php:113 -msgid "Usage carbon emission per month" -msgstr "Emise uhlíku za měsíc" +#: src/CronTask.php:117 +msgid "Compute embodied environmental impact for all assets" +msgstr "" -#: src/Dashboard/DemoProvider.php:279 src/Dashboard/Provider.php:430 -#, php-format -msgid "plugin carbon - handled %s" -msgstr "zásuvný modul uhlík - ošetřeno %s" +#: src/CronTask.php:278 +msgid "No zone to download" +msgstr "" -#: src/Dashboard/DemoProvider.php:280 src/Dashboard/Provider.php:431 -#, php-format -msgid "plugin carbon - unhandled %s" -msgstr "zásuvný modul uhlík - neošetřeno %s" +#: src/Dashboard/Widget.php:55 src/Dashboard/Grid.php:310 +msgid "Environmental impact information video" +msgstr "Informační video o dopadu na životní prostředí" -#: src/Dashboard/DemoProvider.php:311 -msgid "plugin carbon - handled assets ratio" -msgstr "zásuvný modul uhlík - poměr ošetřených aktiv" +#: src/Dashboard/Widget.php:62 +msgid "Methodology information" +msgstr "Metodické informace" -#: src/Dashboard/DemoProvider.php:334 src/Dashboard/Provider.php:398 -msgid "Handled" -msgstr "Ošetřeno" +#: src/Dashboard/Widget.php:71 +msgid "Total Carbon Emission" +msgstr "Celkové emise uhlíku" -#: src/Dashboard/DemoProvider.php:339 src/Dashboard/Provider.php:403 -msgid "Unhandled" -msgstr "Neošetřeno" +#: src/Dashboard/Widget.php:78 +msgid "Monthly Carbon Emission" +msgstr "Měsíční emise uhlíku" -#: src/Dashboard/DemoProvider.php:362 src/Dashboard/DemoProvider.php:411 -#: src/Dashboard/Provider.php:548 -msgid "plugin carbon - Usage carbon emission" -msgstr "zásuvný modul uhlík - Použití emisí uhlíku" +#: src/Dashboard/Widget.php:85 src/Dashboard/Widget.php:604 +#: src/Dashboard/Grid.php:268 +msgid "Biggest monthly averaged carbon emission per model" +msgstr "" -#: src/Dashboard/Dashboard.php:69 -msgid "Carbon dioxyde intensity" -msgstr "Intenzita oxidu uhličitého" +#: src/Dashboard/Widget.php:93 +msgid "Carbon Emission Per month" +msgstr "Emise uhlíku za měsíc" -#: src/Dashboard/Grid.php:73 src/Dashboard/Provider.php:375 -msgid "Handled assets ratio" -msgstr "Poměr ošetřených aktiv" +#: src/Dashboard/Widget.php:100 src/Dashboard/Provider.php:733 +msgid "Usage abiotic depletion potential" +msgstr "Potenciál abiotického využití" -#: src/Dashboard/Grid.php:82 -msgid "Handled assets count" -msgstr "Počet ošetřených aktiv" +#: src/Dashboard/Widget.php:130 +msgid "Impact criteria" +msgstr "" -#: src/Dashboard/Grid.php:145 -#, php-format -msgid "Handled %s" -msgstr "Ošetřené %s" +#: src/Dashboard/Widget.php:142 +msgid "Unhandled Computers" +msgstr "Neošetřené počítače" -#: src/Dashboard/Grid.php:156 -#, php-format -msgid "Unhandled %s" -msgstr "Neošetřené %s" +#: src/Dashboard/Widget.php:153 +msgid "Unhandled Monitors" +msgstr "Neošetřené monitory" -#: src/Dashboard/Grid.php:172 -msgid "Usage power consumption" -msgstr "Spotřeba energie" +#: src/Dashboard/Widget.php:164 +msgid "Unhandled Network equipments" +msgstr "Neošetřená síťová zařízení" -#: src/Dashboard/Grid.php:178 -msgid "Usage carbon emission" -msgstr "Emise uhlíku při spotřebě" +#: src/Dashboard/Widget.php:175 +msgid "Radar chart" +msgstr "" -#: src/Dashboard/Grid.php:192 src/Dashboard/Grid.php:295 -#: src/Dashboard/Provider.php:893 -msgid "Embodied global warming potential" -msgstr "Ztělesněný potenciál globálního oteplování" +#: src/Dashboard/Widget.php:501 src/Dashboard/Provider.php:1107 +msgid "Consumed energy and carbon emission per month" +msgstr "" -#: src/Dashboard/Grid.php:198 src/Dashboard/Grid.php:307 -msgid "Embodied primary energy consumed" -msgstr "Spotřebovaná primární energie" +#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:561 +#: src/Dashboard/Provider.php:1212 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "Carbon emission" +msgstr "Emise uhlíku" -#: src/Dashboard/Grid.php:212 src/UsageImpact.php:105 -msgid "Global warming potential" -msgstr "Potenciál globálního oteplování" +#: src/Dashboard/Widget.php:551 src/Dashboard/Widget.php:564 +#: src/Dashboard/Provider.php:1228 src/Dashboard/DemoProvider.php:106 +#: src/Dashboard/DemoProvider.php:202 +msgid "Consumed energy" +msgstr "Spotřebovaná energie" -#: src/Dashboard/Grid.php:218 src/UsageImpact.php:119 -msgid "Abiotic depletion potential" -msgstr "Potenciál abiotického vyčerpání" +#: src/Dashboard/Widget.php:746 +#, php-format +msgid "" +"Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " +"months. %s More information %s" +msgstr "" -#: src/Dashboard/Grid.php:245 +#: src/Dashboard/Widget.php:812 #, php-format -msgid "Unhandled %s ratio" -msgstr "Neošetřený %s poměr " +msgid "" +"Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " +"elapsed months. %s More information %s" +msgstr "" -#: src/Dashboard/Grid.php:257 -msgid "Usage carbon emission year to date" -msgstr "Emise uhlíku z používání za rok do data" +#: src/Dashboard/Widget.php:854 +msgid "More information" +msgstr "" -#: src/Dashboard/Grid.php:263 -msgid "Monthly carbon emission" -msgstr "Měsíční emise uhlíku" +#: src/Dashboard/Widget.php:893 +#, php-format +msgid "" +"Evaluates the consumption of non renewable resources in Antimony equivalent." +" %s More information %s" +msgstr "" +"Vyhodnocuje spotřebu neobnovitelných zdrojů v ekvivalentu antimonu. %s Více " +"informací %s" -#: src/Dashboard/Grid.php:272 -msgid "Usage global warming potential chart" -msgstr "Použití grafu potenciálu globálního oteplování" +#: src/Dashboard/Widget.php:1097 +msgid "Handled percentage" +msgstr "Ošetřeno procentně" -#: src/Dashboard/Grid.php:322 -msgid "Environmental impact methodology_information" -msgstr "Metodologické informace o dopadu na životní prostředí" +#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 +#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 +#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "CO₂eq" +msgstr "CO₂eq" -#: src/Dashboard/Provider.php:171 src/Dashboard/Provider.php:1010 -#: src/Toolbox.php:201 +#: src/Dashboard/Provider.php:195 src/Dashboard/Provider.php:318 +#: src/Dashboard/Provider.php:1199 src/Toolbox.php:243 msgid "g" msgstr "g" -#: src/Dashboard/Provider.php:172 src/Dashboard/Provider.php:1011 -#: src/Toolbox.php:202 +#: src/Dashboard/Provider.php:196 src/Dashboard/Provider.php:319 +#: src/Dashboard/Provider.php:1200 src/Toolbox.php:244 msgid "Kg" msgstr "Kg" -#: src/Dashboard/Provider.php:173 src/Dashboard/Provider.php:1012 -#: src/Toolbox.php:203 +#: src/Dashboard/Provider.php:197 src/Dashboard/Provider.php:320 +#: src/Dashboard/Provider.php:1201 src/Toolbox.php:245 msgid "t" msgstr "t" -#: src/Dashboard/Provider.php:174 src/Dashboard/Provider.php:1013 -#: src/Toolbox.php:204 +#: src/Dashboard/Provider.php:198 src/Dashboard/Provider.php:321 +#: src/Dashboard/Provider.php:1202 src/Toolbox.php:246 msgid "Kt" msgstr "Kt" -#: src/Dashboard/Provider.php:175 src/Dashboard/Provider.php:1014 -#: src/Toolbox.php:205 +#: src/Dashboard/Provider.php:199 src/Dashboard/Provider.php:322 +#: src/Dashboard/Provider.php:1203 src/Toolbox.php:247 msgid "Mt" msgstr "Mt" -#: src/Dashboard/Provider.php:176 src/Dashboard/Provider.php:1015 -#: src/Toolbox.php:206 +#: src/Dashboard/Provider.php:200 src/Dashboard/Provider.php:323 +#: src/Dashboard/Provider.php:1204 src/Toolbox.php:248 msgid "Gt" msgstr "Gt" -#: src/Dashboard/Provider.php:177 src/Dashboard/Provider.php:1016 -#: src/Toolbox.php:207 +#: src/Dashboard/Provider.php:201 src/Dashboard/Provider.php:324 +#: src/Dashboard/Provider.php:1205 src/Toolbox.php:249 msgid "Tt" msgstr "Tt" -#: src/Dashboard/Provider.php:178 src/Dashboard/Provider.php:1017 -#: src/Toolbox.php:208 +#: src/Dashboard/Provider.php:202 src/Dashboard/Provider.php:325 +#: src/Dashboard/Provider.php:1206 src/Toolbox.php:250 msgid "Pt" msgstr "Pt" -#: src/Dashboard/Provider.php:179 src/Dashboard/Provider.php:1018 -#: src/Toolbox.php:209 +#: src/Dashboard/Provider.php:203 src/Dashboard/Provider.php:326 +#: src/Dashboard/Provider.php:1207 src/Toolbox.php:251 msgid "Et" msgstr "Et" -#: src/Dashboard/Provider.php:180 src/Dashboard/Provider.php:1019 -#: src/Toolbox.php:210 +#: src/Dashboard/Provider.php:204 src/Dashboard/Provider.php:327 +#: src/Dashboard/Provider.php:1208 src/Toolbox.php:252 msgid "Zt" msgstr "Zt" -#: src/Dashboard/Provider.php:181 src/Dashboard/Provider.php:1020 -#: src/Toolbox.php:211 +#: src/Dashboard/Provider.php:205 src/Dashboard/Provider.php:328 +#: src/Dashboard/Provider.php:1209 src/Toolbox.php:253 msgid "Yt" msgstr "Yt" -#: src/Dashboard/Provider.php:330 +#: src/Dashboard/Provider.php:427 msgid "handled assets ratio" msgstr "poměr spravovaných aktiv" -#: src/Dashboard/Provider.php:479 +#: src/Dashboard/Provider.php:473 src/Dashboard/Grid.php:63 +msgid "Handled assets ratio" +msgstr "Poměr ošetřených aktiv" + +#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 +msgid "Handled" +msgstr "Ošetřeno" + +#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 +msgid "Unhandled" +msgstr "Neošetřeno" + +#: src/Dashboard/Provider.php:507 +msgid "Ignored" +msgstr "" + +#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 +#, php-format +msgid "plugin carbon - handled %s" +msgstr "zásuvný modul uhlík - ošetřeno %s" + +#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 +#, php-format +msgid "plugin carbon - unhandled %s" +msgstr "zásuvný modul uhlík - neošetřeno %s" + +#: src/Dashboard/Provider.php:584 +#, php-format +msgid "plugin carbon - ignored %s" +msgstr "" + +#: src/Dashboard/Provider.php:632 msgid "plugin carbon - Total usage power consumption" msgstr "zásuvný modul uhlík - Celková spotřeba energie" -#: src/Dashboard/Provider.php:718 -msgid "Total embodied global warming potential" -msgstr "Celkový ztělesněný potenciál globálního oteplování" +#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 +msgid "plugin carbon - Usage carbon emission" +msgstr "zásuvný modul uhlík - Použití emisí uhlíku" + +#: src/Dashboard/Provider.php:747 +msgid "Sbeq" +msgstr "Sbeq" -#: src/Dashboard/Provider.php:846 +#: src/Dashboard/Provider.php:1035 msgid "Total abiotic depletion potential" msgstr "Celkový potenciál vyčerpání abiotických látek" -#: src/Dashboard/Provider.php:865 +#: src/Dashboard/Provider.php:1051 +msgid "Embodied abiotic depletion potential" +msgstr "Ztělesněný potenciál vyčerpání abiotických látek" + +#: src/Dashboard/Provider.php:1054 msgid "Total usage abiotic depletion potential" msgstr "Celkový užití potenciálu abiotického vyčerpání" -#: src/Dashboard/Provider.php:877 +#: src/Dashboard/Provider.php:1066 msgid "Total global warming potential" msgstr "Celkový potenciál globálního oteplování" -#: src/Dashboard/Provider.php:896 +#: src/Dashboard/Provider.php:1082 +msgid "Embodied global warming potential" +msgstr "Ztělesněný potenciál globálního oteplování" + +#: src/Dashboard/Provider.php:1085 msgid "Total usage global warming potential" msgstr "Celkové užití potenciálu globálního oteplování" -#: src/Dashboard/Provider.php:1029 src/Toolbox.php:287 +#: src/Dashboard/Provider.php:1218 src/Toolbox.php:316 msgid "KWh" msgstr "KWh" -#: src/Dashboard/Provider.php:1030 src/Toolbox.php:288 +#: src/Dashboard/Provider.php:1219 src/Toolbox.php:317 msgid "MWh" msgstr "MWh" -#: src/Dashboard/Provider.php:1031 src/Toolbox.php:289 +#: src/Dashboard/Provider.php:1220 src/Toolbox.php:318 msgid "GWh" msgstr "GWh" -#: src/Dashboard/Provider.php:1032 src/Toolbox.php:290 +#: src/Dashboard/Provider.php:1221 src/Toolbox.php:319 msgid "TWh" msgstr "TWh" -#: src/Dashboard/Provider.php:1033 src/Toolbox.php:291 +#: src/Dashboard/Provider.php:1222 src/Toolbox.php:320 msgid "PWh" msgstr "PWh" -#: src/Dashboard/Provider.php:1034 src/Toolbox.php:292 +#: src/Dashboard/Provider.php:1223 src/Toolbox.php:321 msgid "EWh" msgstr "EWh" -#: src/Dashboard/Provider.php:1035 src/Toolbox.php:293 +#: src/Dashboard/Provider.php:1224 src/Toolbox.php:322 msgid "ZWh" msgstr "ZWh" -#: src/Dashboard/Provider.php:1036 src/Toolbox.php:294 +#: src/Dashboard/Provider.php:1225 src/Toolbox.php:323 msgid "YWh" msgstr "YWh" -#: src/Toolbox.php:251 +#: src/Dashboard/Grid.php:72 +msgid "Handled assets count" +msgstr "Počet ošetřených aktiv" + +#: src/Dashboard/Grid.php:135 +#, php-format +msgid "Handled %s" +msgstr "Ošetřené %s" + +#: src/Dashboard/Grid.php:146 +#, php-format +msgid "Unhandled %s" +msgstr "Neošetřené %s" + +#: src/Dashboard/Grid.php:232 +#, php-format +msgid "Unhandled %s ratio" +msgstr "Neošetřený %s poměr " + +#: src/Dashboard/Grid.php:244 +msgid "Usage carbon emission year to date" +msgstr "Emise uhlíku z používání za rok do data" + +#: src/Dashboard/Grid.php:250 +msgid "Monthly carbon emission" +msgstr "Měsíční emise uhlíku" + +#: src/Dashboard/Grid.php:259 +msgid "Usage global warming potential chart" +msgstr "Použití grafu potenciálu globálního oteplování" + +#: src/Dashboard/Grid.php:315 +msgid "Environmental impact methodology information" +msgstr "" + +#: src/Dashboard/DemoProvider.php:76 +msgid "Usage carbon emission per month" +msgstr "Emise uhlíku za měsíc" + +#: src/Dashboard/DemoProvider.php:274 +msgid "plugin carbon - handled assets ratio" +msgstr "zásuvný modul uhlík - poměr ošetřených aktiv" + +#: src/Dashboard/Dashboard.php:68 +msgid "Carbon dioxyde intensity" +msgstr "Intenzita oxidu uhličitého" + +#: src/Location.php:189 +msgid "Carbon intensity source and zone" +msgstr "" + +#: src/CarbonIntensity.php:87 +msgid "Emission date" +msgstr "Datum emise" + +#: src/CarbonIntensity.php:114 +msgid "Intensity" +msgstr "Intenzita" + +#: src/CarbonEmission.php:49 +msgid "Carbon Emission" +msgid_plural "Carbon Emissions" +msgstr[0] "Uhlíková emise" +msgstr[1] "Uhlíkové emise" +msgstr[2] "Uhlíkových emisí" +msgstr[3] "Uhlíkové emise" + +#: src/CarbonEmission.php:120 +msgid "Energy" +msgstr "Energie" + +#: src/CarbonEmission.php:128 +msgid "Emission" +msgstr "Emise" + +#: src/CarbonEmission.php:136 +msgid "Energy quality" +msgstr "Kvalita energie" + +#: src/CarbonEmission.php:144 +msgid "Emission quality" +msgstr "Kvalita emisí" + +#: src/Toolbox.php:280 msgid "W" msgstr "W" -#: src/Toolbox.php:252 +#: src/Toolbox.php:281 msgid "KW" msgstr "KW" -#: src/Toolbox.php:253 +#: src/Toolbox.php:282 msgid "MW" msgstr "MW" -#: src/Toolbox.php:254 +#: src/Toolbox.php:283 msgid "GW" msgstr "GW" -#: src/Toolbox.php:255 +#: src/Toolbox.php:284 msgid "TW" msgstr "TW" -#: src/Toolbox.php:256 +#: src/Toolbox.php:285 msgid "PW" msgstr "PW" -#: src/Toolbox.php:257 +#: src/Toolbox.php:286 msgid "EW" msgstr "EW" -#: src/Toolbox.php:258 +#: src/Toolbox.php:287 msgid "ZW" msgstr "ZW" -#: src/Toolbox.php:259 +#: src/Toolbox.php:288 msgid "YW" msgstr "YW" -#: src/Toolbox.php:286 +#: src/Toolbox.php:315 msgid "Wh" msgstr "Wh" -#: src/SearchOptions.php:196 src/SearchOptions.php:273 -#: src/SearchOptions.php:346 -msgid "Is historizable" -msgstr "Je historizovatelné" - -#: src/UsageImpact.php:50 -msgid "Usage impact" -msgid_plural "Usage impacts" -msgstr[0] "Dopad užívání" -msgstr[1] "Dopady užívání" -msgstr[2] "Dopadů užívání" -msgstr[3] "Dopady užívání" +#: src/Toolbox.php:373 src/Toolbox.php:378 +#, php-format +msgid "%1$s %2$s" +msgstr "" -#: src/UsageImpact.php:112 -msgid "Global warming potential quality" -msgstr "Potenciál kvality globálního oteplování" +#: setup.php:285 +msgid "Environmental Impact" +msgstr "Dopad na životní prostředí" -#: src/UsageImpact.php:127 -msgid "Abiotic depletion potential quality" -msgstr "Potenciál kvality abiotického vyčerpání" +#: hook.php:97 +msgid "" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." +msgstr "" -#: src/UsageImpact.php:134 src/UsageImpact.php:142 -msgid "Primary energy quality" -msgstr "Kvalita primární energie" +#: hook.php:301 +msgid "Associate to an usage profile" +msgstr "" -#: src/CarbonIntensity.php:66 -msgid "Carbon intensity" -msgstr "Intenzita uhlíku" +#: hook.php:302 hook.php:307 +msgid "Delete all calculated environmental impacts" +msgstr "" -#: src/CarbonIntensity.php:88 -msgid "Emission date" -msgstr "Datum emise" +#: hook.php:311 hook.php:316 hook.php:320 +msgid "Update type power consumption" +msgstr "" -#: src/CarbonIntensity.php:115 -msgid "Intensity" -msgstr "Intenzita" +#: hook.php:312 +msgid "Update category" +msgstr "Aktualizovat kategorii" -#: src/EmbodiedImpact.php:90 -msgid "Global Warming Potential" -msgstr "Potenciál globálního oteplování" +#: hook.php:324 +msgid "Update zone for Boavizta engine" +msgstr "" -#: src/EmbodiedImpact.php:100 -msgid "Abiotic Depletion Potential" -msgstr "Potenciál abiotického vyčerpání" +#: hook.php:325 +msgid "Update carbon intensity source and zone" +msgstr "" -#: src/EmbodiedImpact.php:110 -msgid "Primary energy" -msgstr "Primární energie" +#: install/install/create_automatic_actions.php:52 +msgid "Find the Alpha3 country code (ISO3166) of locations" +msgstr "Najděte kód země Alpha3 (ISO3166) pro lokality" -#: src/ComputerType.php:56 -msgid "Unspecified" -msgstr "Nespecifikováno" +#: install/install/create_automatic_actions.php:64 +msgid "Compute carbon emissions of computers" +msgstr "Výpočet emisí uhlíku z počítačů" -#: src/ComputerType.php:58 -msgid "Server" -msgstr "Server" +#: install/install/create_automatic_actions.php:76 +msgid "Compute embodied impact of assets" +msgstr "Výpočet ztělesněného dopadu aktiv" -#: src/ComputerType.php:59 -msgid "Laptop" -msgstr "Notebook" +#: install/install/create_uasge_profiles.php:41 +msgid "Always on" +msgstr "Vždy zapnuto" -#: src/ComputerType.php:60 -msgid "Tablet" -msgstr "Tablet" +#: install/install/create_uasge_profiles.php:52 +msgid "Office hours" +msgstr "Úřední hodiny" -#: src/ComputerType.php:61 -msgid "Smartphone" -msgstr "Chytrý telefon" +#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 +#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 +msgid "Missing arguments in request." +msgstr "" -#: src/CarbonIntensitySource_Zone.php:70 -msgid "Source name" -msgstr "Název zdroje" +#: front/usageimpact.form.php:80 front/usageimpact.form.php:106 +#: front/usageimpact.form.php:114 front/embodiedimpact.form.php:92 +msgid "Bad arguments." +msgstr "" -#: src/CarbonIntensitySource_Zone.php:78 -msgid "Zone name" -msgstr "Název zóny" +#: front/usageimpact.form.php:90 front/embodiedimpact.form.php:68 +#: front/embodiedimpact.form.php:77 +msgid "Reset denied." +msgstr "" -#: src/CarbonIntensitySource_Zone.php:94 -msgid "Code" -msgstr "Kód" +#: front/usageimpact.form.php:95 front/embodiedimpact.form.php:82 +msgid "Reset failed." +msgstr "" -#: src/CarbonIntensitySource_Zone.php:148 -msgid "Not downloadable" -msgstr "Nelze stáhnout" +#: front/usageimpact.form.php:122 +msgid "Missing data prevents historization of this asset." +msgstr "" -#: src/CarbonIntensitySource_Zone.php:148 -msgid "This is a fallback source, there is no real-time data available" -msgstr "Toto je záložní zdroj, nejsou k dispozici žádná data v reálném čase" +#: front/usageimpact.form.php:125 +msgid "Update of global warming potential failed." +msgstr "" -#: src/CarbonIntensitySource_Zone.php:170 -msgid "Source for historical" -msgstr "Zdroj historických informací" +#: front/usageimpact.form.php:131 front/embodiedimpact.form.php:101 +msgid "Unable to find calculation engine for this asset." +msgstr "" -#: src/CarbonIntensitySource_Zone.php:351 -msgid "Enable / Disable" -msgstr "Zapnout / Vypnout" +#: front/usageimpact.form.php:136 +msgid "Update of usage impact failed." +msgstr "" diff --git a/locales/de_DE.po b/locales/de_DE.po index 5a7a9985..e283e5f4 100644 --- a/locales/de_DE.po +++ b/locales/de_DE.po @@ -5,16 +5,16 @@ # # Translators: # Thierry Bugier , 2025 -# Christian Hoffmeister, 2025 +# Christian Hoffmeister, 2026 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 08:10+0000\n" -"PO-Revision-Date: 2025-07-03 13:58+0000\n" -"Last-Translator: Christian Hoffmeister, 2025\n" +"POT-Creation-Date: 2026-04-15 02:49+0000\n" +"PO-Revision-Date: 2025-10-29 09:26+0000\n" +"Last-Translator: Christian Hoffmeister, 2026\n" "Language-Team: German (Germany) (https://app.transifex.com/teclib/teams/28042/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,45 +22,205 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: templates/dashboard/usage-carbon-emission-last-year.html.twig -msgid "Yearly Usage Carbon Emission" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 +#: src/ComputerUsageProfile.php:169 +msgid "Start time" +msgstr "Startzeit" + +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 +msgid "Stop time" +msgstr "Stopzeit" + +#: templates/computerusageprofile.html.twig +msgid "Days of week where the computer usually runs" msgstr "" -#: templates/dashboard/monthly-carbon-emission.html.twig -msgid "Monthly usage carbon emission" +#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 +#: src/Impact/Usage/Engine.php:48 +msgid "Boavizta" msgstr "" -#: templates/dashboard/monthly-carbon-emission.html.twig -#, php-format -msgid "Compared to %s" +#: templates/location.html.twig src/SearchOptions.php:138 src/Location.php:182 +msgid "Boavizta zone" msgstr "" -#: templates/dashboard/embodied-primary-energy.html.twig -msgid "Embodied primary energy" +#: templates/location.html.twig src/CarbonIntensity.php:65 +msgid "Carbon intensity" msgstr "" -#: templates/dashboard/usage-abiotic-depletion.html.twig -#: src/Dashboard/Widget.php:102 src/Dashboard/DemoProvider.php:95 -#: src/Dashboard/Grid.php:184 src/Dashboard/Grid.php:287 -#: src/Dashboard/Provider.php:812 -msgid "Usage abiotic depletion potential" +#: templates/usageinfo.html.twig +msgid "Asset usage" msgstr "" -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#: templates/dashboard/unhandled-monitors-card.html.twig -#: templates/dashboard/unhandled-computers-card.html.twig -msgid "Warning" -msgstr "Warnung" +#: templates/usageinfo.html.twig +msgid "Usage profile" +msgid_plural "Usage profiles" +msgstr[0] "" +msgstr[1] "" -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#, php-format +#: templates/quick-report.html.twig front/report.php:55 +msgid "GLPI Carbon" +msgstr "GLPI Carbon" + +#: templates/components/form/source_zone_selector.html.twig +#: src/AbstractModel.php:186 +msgid "Source" +msgstr "" + +#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 +msgid "Carbon intensity zone" +msgid_plural "Carbon intensity zones" +msgstr[0] "" +msgstr[1] "" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "No zone available" +msgstr "Keine Zone verfügbar" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "Please run the automatic action to downlaod data from this source." +msgstr "" + +#: templates/environmentalimpact-item.html.twig +msgid "Usage" +msgstr "" + +#: templates/environmentalimpact-item.html.twig +msgid "Reset data" +msgstr "" + +#: templates/environmentalimpact-item.html.twig +msgid "Calculate data" +msgstr "" + +#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 +msgid "Embodied impact" +msgid_plural "Embodied impacts" +msgstr[0] "" +msgstr[1] "" + +#: templates/history/status-item.html.twig +msgid "Historization status" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "No status" +msgstr "" + +#: templates/history/status-item.html.twig msgid "" -"It represents %s percent of your parc that contains %s network equipments." +"This data is missing and prevents from environmental impact calculation." msgstr "" -#: templates/dashboard/unhandled-monitors-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s monitors." +#: templates/history/status-item.html.twig +msgid "" +"This data is missing and may reduce the quality of environmental impact " +"calculation." +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Is not in the trash bin" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Is not a template" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Linked to a computer" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Attached computer has a location" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Has a location" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The location has carbon intensity data" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Real time carbon intensity enabled" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The location has yearly carbon intensity data" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The asset has a model" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The model has a power consumption" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The asset has a type" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Type is not ignored" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The type has a power consumption" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The asset has a category" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The asset has a usage profile" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The asset has an inventory entry date" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Legend" +msgstr "" + +#: templates/monitortype.html.twig +msgid "" +"This power value is used as default when the power of a monitor model is " +"unknown" +msgstr "" + +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Power" +msgid_plural "Powers" +msgstr[0] "Energie" +msgstr[1] "Energie" + +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Do not evaluate" +msgstr "" + +#: templates/config.html.twig +msgid "Impact engine" +msgstr "" + +#: templates/config.html.twig +msgid "Usage carbon emissions are always calculated internally" +msgstr "" + +#: templates/computertype.html.twig +msgid "" +"This power value is used as default when the power of a computer model is " +"unknown" +msgstr "" + +#: templates/computertype.html.twig src/SearchOptions.php:303 +#: src/ComputerType.php:78 +msgid "Category" msgstr "" #: templates/dashboard/information-block.html.twig @@ -93,17 +253,28 @@ msgid "" "about 20 meters." msgstr "" -#: templates/dashboard/embodied-carbon-emission.html.twig -#: src/Dashboard/Widget.php:111 -msgid "Embodied carbon emission" +#: templates/dashboard/unhandled-monitors-card.html.twig +#: templates/dashboard/unhandled-computers-card.html.twig +#: templates/dashboard/unhandled-network-equipments-card.html.twig +msgid "Warning" +msgstr "Warnung" + +#: templates/dashboard/unhandled-monitors-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s monitors." +msgstr "" + +#: templates/dashboard/usage-carbon-emission-last-year.html.twig +msgid "Yearly Usage Carbon Emission" msgstr "" -#: templates/dashboard/information-video-card.html.twig -msgid "Want to know more ?" +#: templates/dashboard/monthly-carbon-emission.html.twig +msgid "Monthly usage carbon emission" msgstr "" -#: templates/dashboard/information-video-card.html.twig -msgid "Here is a video about the impact of numeric on the enviromnent." +#: templates/dashboard/monthly-carbon-emission.html.twig +#, php-format +msgid "Compared to %s" msgstr "" #: templates/dashboard/unhandled-computers-card.html.twig @@ -111,43 +282,36 @@ msgstr "" msgid "It represents %s percent of your parc that contains %s computers." msgstr "" -#: templates/dashboard/embodied-abiotic-depletion.html.twig -#: src/Dashboard/Widget.php:118 src/Dashboard/DemoProvider.php:77 -#: src/Dashboard/Grid.php:204 src/Dashboard/Grid.php:301 -#: src/Dashboard/Provider.php:778 src/Dashboard/Provider.php:862 -msgid "Embodied abiotic depletion potential" +#: templates/dashboard/unhandled-network-equipments-card.html.twig +#, php-format +msgid "" +"It represents %s percent of your parc that contains %s network equipments." msgstr "" -#: templates/monitortype.html.twig -msgid "" -"This power value is used as default when the power of a monitor model is " -"unknown" +#: templates/dashboard/information-video-card.html.twig +msgid "Want to know more ?" msgstr "" -#: templates/monitortype.html.twig templates/computertype.html.twig -#: templates/networkequipmenttype.html.twig src/AbstractType.php:56 -msgid "Power" -msgid_plural "Powers" -msgstr[0] "Energie" -msgstr[1] "Energie" +#: templates/dashboard/information-video-card.html.twig +msgid "Here is a video about the impact of numeric on the enviromnent." +msgstr "" -#: templates/computertype.html.twig +#: templates/abstractmodel.html.twig msgid "" -"This power value is used as default when the power of a computer model is " -"unknown" +"The impacts below shall include the manufacturing, disposal and recycling " +"processes only." msgstr "" -#: templates/computertype.html.twig src/SearchOptions.php:251 -#: src/ComputerType.php:78 -msgid "Category" +#: templates/abstractmodel.html.twig +msgid "Take care of the expected units before setting an impact." msgstr "" -#: templates/pages/CarbonIntensitySource/tab_zone.html.twig -msgid "No zone available" -msgstr "Keine Zone verfügbar" +#: templates/abstractmodel.html.twig +msgid "Data quality" +msgstr "" -#: templates/pages/CarbonIntensitySource/tab_zone.html.twig -msgid "Please run the automatic action to downlaod data from this source." +#: templates/abstractmodel.html.twig +msgid "Data source" msgstr "" #: templates/networkequipmenttype.html.twig @@ -156,934 +320,1072 @@ msgid "" "model is unknown" msgstr "" -#: templates/environmentalimpact-item.html.twig -msgid "Usage" +#: src/Command/CollectCarbonIntensityCommand.php:70 +msgid "Read carbon dioxyde intensity from external sources" msgstr "" -#: templates/environmentalimpact-item.html.twig -msgid "Reset data" +#: src/Command/CollectCarbonIntensityCommand.php:84 +msgid "Source:" msgstr "" -#: templates/environmentalimpact-item.html.twig -msgid "Calculate data" +#: src/Command/CollectCarbonIntensityCommand.php:95 +msgid "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" msgstr "" -#: templates/environmentalimpact-item.html.twig -msgid "Embodied impact" +#: src/Command/CollectCarbonIntensityCommand.php:99 +msgid "Geocoding is not enabled. Cannot resolve an address into a zone" msgstr "" -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:125 -#: src/ComputerUsageProfile.php:146 -msgid "Start time" -msgstr "Startzeit" +#: src/Command/CollectCarbonIntensityCommand.php:104 +msgid "Address:" +msgstr "" -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:154 -msgid "Stop time" -msgstr "Stopzeit" +#: src/Command/CollectCarbonIntensityCommand.php:107 +msgid "Zone:" +msgstr "" -#: templates/computerusageprofile.html.twig -msgid "Days of week where the computer usually runs" +#: src/Command/CollectCarbonIntensityCommand.php:123 +#: src/Command/CreateFakeCarbonIntensityCommand.php:67 +msgid "Creating data source name" msgstr "" -#: templates/usageinfo.html.twig -msgid "Asset usage" +#: src/Command/CollectCarbonIntensityCommand.php:130 +msgid "This source does not exist" msgstr "" -#: templates/usageinfo.html.twig -msgid "Usage profile" -msgid_plural "Usage profiles" -msgstr[0] "" -msgstr[1] "" +#: src/Command/CollectCarbonIntensityCommand.php:149 +msgid "The zone is not handled by the data source" +msgstr "" -#: templates/quick-report.html.twig front/report.php:55 -msgid "GLPI Carbon" -msgstr "GLPI Carbon" +#: src/Command/CollectCarbonIntensityCommand.php:155 +msgid "Reading data..." +msgstr "" + +#: src/Command/CreateFakeCarbonIntensityCommand.php:78 +msgid "Creating data zone name" +msgstr "" + +#: src/Command/CreateFakeCarbonIntensityCommand.php:89 +msgid "Creating fake data..." +msgstr "" + +#: src/Command/ExportDashboardCommand.php:68 +msgid "Updating the report dashboard description" +msgstr "" + +#: src/Command/ExportDashboardCommand.php:73 +msgid "Dashboard not found" +msgstr "" -#: templates/location.html.twig src/Profile.php:45 src/UsageInfo.php:91 +#: src/Command/ExportDashboardCommand.php:99 +#, php-format +msgid "Dashboard description saved to %s" +msgstr "" + +#: src/Command/CreateTestInventoryCommand.php:145 +msgid "Creating test inventory" +msgstr "" + +#: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 +#: src/ComputerType.php:70 src/MonitorType.php:50 +msgid "Power consumption" +msgstr "" + +#: src/UsageInfo.php:62 +msgid "Usage informations" +msgstr "" + +#: src/UsageInfo.php:94 src/AbstractModel.php:54 src/Location.php:73 +#: src/AbstractType.php:55 src/Profile.php:45 msgid "Environmental impact" msgstr "" -#: templates/location.html.twig src/Location.php:78 src/SearchOptions.php:121 -msgid "Boavizta zone" +#: src/UsageInfo.php:241 +#, php-format +msgid "%s More information %s" msgstr "" -#: templates/history/status-item.html.twig -msgid "Historization status" +#: src/DataSource/Lca/Boaviztapi/Config.php:100 +msgid "Invalid Boavizta API URL" msgstr "" -#: templates/history/status-item.html.twig -msgid "No status" +#: src/DataSource/Lca/Boaviztapi/Config.php:108 +msgid "Connection to Boavizta API established" msgstr "" -#: templates/history/status-item.html.twig -msgid "" -"This data is missing and prevents from environmental impact calculation." +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:56 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:53 +msgid "Resource diagnosis" msgstr "" -#: templates/history/status-item.html.twig -msgid "" -"This data is missing and may reduce the quality of environmental impact " -"calculation." +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:71 +msgid "Collect carbon intensities from RTE" msgstr "" -#: templates/history/status-item.html.twig -msgid "Is not in the trash bin" +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:89 +msgid "Download carbon emissions from RTE" msgstr "" -#: templates/history/status-item.html.twig -msgid "Is not a template" +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:90 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:87 +#: src/CronTask.php:107 +msgid "Maximum number of entries to download" msgstr "" -#: templates/history/status-item.html.twig -msgid "Linked to a computer" +#: src/DataSource/CarbonIntensity/AbstractCronTask.php:103 +#: src/Source_Zone.php:537 +msgid "End" +msgstr "Ende" + +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:68 +msgid "Collect carbon intensities from Electricity Maps" msgstr "" -#: templates/history/status-item.html.twig -msgid "Has a location" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:86 +msgid "Download carbon emissions from Electricity Maps" msgstr "" -#: templates/history/status-item.html.twig -msgid "The location has a state or a country" +#: src/AbstractImpact.php:125 src/CarbonEmission.php:151 +msgid "Date of evaluation" msgstr "" -#: templates/history/status-item.html.twig -msgid "Real time carbon intensity enabled" +#: src/AbstractImpact.php:132 src/CarbonEmission.php:158 +msgid "Engine" msgstr "" -#: templates/history/status-item.html.twig -msgid "The location has yearly carbon intensity data" +#: src/AbstractImpact.php:139 src/CarbonEmission.php:165 +msgid "Engine version" msgstr "" -#: templates/history/status-item.html.twig -msgid "The asset has a model" +#: src/DataTracking/AbstractTracked.php:77 +msgid "Impact not evaluated" msgstr "" -#: templates/history/status-item.html.twig -msgid "The model has a power consumption" +#: src/DataTracking/AbstractTracked.php:78 +msgid "Unspecified quality" msgstr "" -#: templates/history/status-item.html.twig -msgid "The asset has a type" +#: src/DataTracking/AbstractTracked.php:79 +msgid "Manual data" msgstr "" -#: templates/history/status-item.html.twig -msgid "The type has a power consumption" +#: src/DataTracking/AbstractTracked.php:80 +msgid "Estimated data" msgstr "" -#: templates/history/status-item.html.twig -msgid "The asset has a category" +#: src/DataTracking/AbstractTracked.php:81 +msgid "Downsampled data" msgstr "" -#: templates/history/status-item.html.twig -msgid "The asset has a usage profile" +#: src/DataTracking/AbstractTracked.php:82 +msgid "Measured data" msgstr "" -#: templates/history/status-item.html.twig -msgid "The asset has an inventory entry date" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 +#: src/Impact/Usage/AbstractUsageImpact.php:91 +msgid "grams of carbon dioxyde equivalent" msgstr "" -#: templates/history/status-item.html.twig -msgid "Legend" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 +#: src/Impact/Usage/AbstractUsageImpact.php:93 +msgid "grams of antimony equivalent" msgstr "" -#: templates/config.html.twig -msgid "Electricity maps" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 +#: src/Impact/Usage/AbstractUsageImpact.php:95 +msgid "joules" msgstr "" -#: templates/config.html.twig -msgid "Key for electricitymap.org API" -msgstr "Schlüssel für die API von electricitymap.org" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 +msgid "Connection to Boavizta failed." +msgstr "" -#: templates/config.html.twig -msgid "Impact engine" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 +msgid "Embodied impact evaluation falied." msgstr "" -#: templates/config.html.twig -msgid "Usage carbon emissions are always calculated internally" +#: src/Impact/History/AbstractAsset.php:370 +msgid "Error while calculating impact" msgstr "" -#: templates/config.html.twig src/Impact/Embodied/Engine.php:46 -#: src/Impact/Usage/Engine.php:46 -msgid "Boavizta" +#: src/Impact/History/AbstractAsset.php:378 +msgid "Nothing to calculate" msgstr "" -#: templates/config.html.twig -msgid "Base URL to the Boaviztapi instance" +#: src/Impact/History/AbstractAsset.php:384 +#, php-format +msgid "%d entries calculated" msgstr "" -#: templates/config.html.twig +#: src/Impact/Type.php:159 +msgid "Embodied Global warming potential" +msgstr "" + +#: src/Impact/Type.php:160 +msgid "Embodied Abiotic depletion potential" +msgstr "" + +#: src/Impact/Type.php:161 +msgid "Embodied Primary energy consumed" +msgstr "" + +#: src/Impact/Type.php:162 +msgid "Embodied Climate change - Contribution of biogenic emissions" +msgstr "" + +#: src/Impact/Type.php:163 +msgid "Embodied Climate change - Contribution of fossil fuel emissions" +msgstr "" + +#: src/Impact/Type.php:164 msgid "" -"Geocoding converts a location into a ISO 3166 (3 letters) code. Boavizta " -"needs this to determine usage impacts of assets. This feature sends the " -"address stored in a location to nominatim.org service. If this is an issue, " -"you can disable it below, and fill the coutry code manually." +"Embodied Climate change - Contribution of emissions from land use change" msgstr "" -#: templates/config.html.twig -msgid "Enable geocoding" +#: src/Impact/Type.php:165 +msgid "Embodied Emissions of radionizing substances" msgstr "" -#: setup.php:263 -msgid "Environmental Impact" +#: src/Impact/Type.php:166 +msgid "Embodied Land use" msgstr "" -#: front/embodiedimpact.form.php:65 front/embodiedimpact.form.php:88 -#: front/usageimpact.form.php:65 front/usageimpact.form.php:102 -msgid "Missing arguments in request." +#: src/Impact/Type.php:167 +msgid "Embodied Depletion of the ozone layer" msgstr "" -#: front/embodiedimpact.form.php:70 front/embodiedimpact.form.php:79 -#: front/usageimpact.form.php:89 -msgid "Reset denied." +#: src/Impact/Type.php:168 +msgid "Embodied Fine particle emissions" msgstr "" -#: front/embodiedimpact.form.php:84 front/usageimpact.form.php:94 -msgid "Reset failed." +#: src/Impact/Type.php:169 +msgid "Embodied Photochemical ozone formation" msgstr "" -#: front/embodiedimpact.form.php:94 front/usageimpact.form.php:133 -msgid "Unable to find calculation engine for this asset." +#: src/Impact/Type.php:170 +msgid "Embodied Use of water resources" msgstr "" -#: front/embodiedimpact.form.php:103 -msgid "Update failed." +#: src/Impact/Type.php:171 +msgid "Embodied Material input per unit of service" msgstr "" -#: front/usageimpact.form.php:79 front/usageimpact.form.php:108 -#: front/usageimpact.form.php:116 -msgid "Bad arguments." +#: src/Impact/Type.php:172 +msgid "Embodied Use of mineral and metal resources" msgstr "" -#: front/usageimpact.form.php:98 -msgid "Delete of usage impact failed." +#: src/Impact/Type.php:173 +msgid "Embodied Use of fossil resources (including nuclear)" msgstr "" -#: front/usageimpact.form.php:124 -msgid "Missing data prevents historization of this asset." +#: src/Impact/Type.php:174 +msgid "Embodied Acidification" msgstr "" -#: front/usageimpact.form.php:127 -msgid "Update of global warming potential failed." +#: src/Impact/Type.php:175 +msgid "Embodied Freshwater ecotoxicity" msgstr "" -#: front/usageimpact.form.php:138 -msgid "Update of usage impact failed." +#: src/Impact/Type.php:178 +msgid "Embodied Eutrophication of freshwater" msgstr "" -#: hook.php:293 -msgid "Associate to an usage profile" +#: src/Impact/Type.php:179 +msgid "Embodied Eutrophication of marine waters" msgstr "" -#: hook.php:297 hook.php:302 hook.php:306 -msgid "Update type power consumption" +#: src/Impact/Type.php:180 +msgid "Embodied Terrestrial eutrophication" msgstr "" -#: hook.php:298 -msgid "Update category" +#: src/Impact/Type.php:195 +msgid "Usage Global warming potential" msgstr "" -#: hook.php:310 -msgid "Update zone for Boavizta engine" +#: src/Impact/Type.php:196 +msgid "Usage Abiotic depletion potential" msgstr "" -#: install/install/create_automatic_actions.php:45 -msgid "Find the Alpha3 country code (ISO3166) of locations" +#: src/Impact/Type.php:197 +msgid "Usage Primary energy consumed" msgstr "" -#: install/install/create_automatic_actions.php:57 -msgid "Compute carbon emissions of computers" +#: src/Impact/Type.php:198 +msgid "Usage Climate change - Contribution of biogenic emissions" msgstr "" -#: install/install/create_automatic_actions.php:69 -msgid "Collect carbon intensities from RTE" +#: src/Impact/Type.php:199 +msgid "Usage Climate change - Contribution of fossil fuel emissions" msgstr "" -#: install/install/create_automatic_actions.php:81 -msgid "Collect carbon intensities from ElectricityMap" +#: src/Impact/Type.php:200 +msgid "Usage Climate change - Contribution of emissions from land use change" msgstr "" -#: install/install/create_automatic_actions.php:93 -msgid "Compute embodied impact of assets" +#: src/Impact/Type.php:201 +msgid "Usage Emissions of radionizing substances" msgstr "" -#: install/install/create_uasge_profiles.php:41 -msgid "Always on" +#: src/Impact/Type.php:202 +msgid "Usage Land use" msgstr "" -#: install/install/create_uasge_profiles.php:52 -msgid "Office hours" -msgstr "Bürozeiten" +#: src/Impact/Type.php:203 +msgid "Usage Depletion of the ozone layer" +msgstr "" -#: src/AbstractType.php:64 src/Dashboard/Grid.php:68 -#: src/Dashboard/Grid.php:133 src/Dashboard/Grid.php:234 -msgid "Carbon" -msgstr "Kohlenstoffdioxid" +#: src/Impact/Type.php:204 +msgid "Usage Fine particle emissions" +msgstr "" -#: src/CronTask.php:64 -msgid "Find the Alpha3 country code (ISO3166)" +#: src/Impact/Type.php:205 +msgid "Usage Photochemical ozone formation" msgstr "" -#: src/CronTask.php:65 -msgid "Maximum number of locations to solve" +#: src/Impact/Type.php:206 +msgid "Usage Use of water resources" msgstr "" -#: src/CronTask.php:70 -msgid "Download carbon emissions from RTE" +#: src/Impact/Type.php:207 +msgid "Usage Material input per unit of service" msgstr "" -#: src/CronTask.php:71 src/CronTask.php:77 -msgid "Maximum number of entries to download" +#: src/Impact/Type.php:208 +msgid "Usage Use of mineral and metal resources" msgstr "" -#: src/CronTask.php:76 -msgid "Download carbon emissions from ElectricityMap" +#: src/Impact/Type.php:209 +msgid "Usage Use of fossil resources (including nuclear)" msgstr "" -#: src/CronTask.php:82 -msgid "Compute usage environnemental impact for all assets" +#: src/Impact/Type.php:210 +msgid "Usage Acidification" msgstr "" -#: src/CronTask.php:83 src/CronTask.php:88 -msgid "Maximum number of entries to calculate" +#: src/Impact/Type.php:211 +msgid "Usage Freshwater ecotoxicity" msgstr "" -#: src/CronTask.php:87 -msgid "Compute embodied environnemental impact for all assets" +#: src/Impact/Type.php:214 src/Impact/Type.php:342 +msgid "Usage Eutrophication of freshwater" msgstr "" -#: src/CronTask.php:211 -msgid "No zone to download" +#: src/Impact/Type.php:215 src/Impact/Type.php:343 +msgid "Usage Eutrophication of marine waters" msgstr "" -#: src/NetworkEquipmentType.php:50 src/MonitorType.php:50 -#: src/SearchOptions.php:142 src/ComputerType.php:70 -msgid "Power consumption" +#: src/Impact/Type.php:216 src/Impact/Type.php:344 +msgid "Usage Terrestrial eutrophication" msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:83 -#: src/Impact/Usage/AbstractUsageImpact.php:83 -msgid "grams of carbon dioxyde equivalent" +#: src/Impact/Type.php:231 +msgid "Total Global warming potential" msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:85 -#: src/Impact/Usage/AbstractUsageImpact.php:85 -msgid "grams of antimony equivalent" +#: src/Impact/Type.php:232 +msgid "Total Abiotic depletion potential" msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:87 -#: src/Impact/Usage/AbstractUsageImpact.php:87 -msgid "joules" +#: src/Impact/Type.php:233 +msgid "Total Primary energy consumed" msgstr "" -#: src/Impact/History/AbstractAsset.php:364 -msgid "Error while calculating impact" +#: src/Impact/Type.php:234 +msgid "Total Climate change - Contribution of biogenic emissions" msgstr "" -#: src/Impact/History/AbstractAsset.php:372 -msgid "Nothing to calculate" +#: src/Impact/Type.php:235 +msgid "Total Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/Impact/History/AbstractAsset.php:378 -#, php-format -msgid "%d entries calculated" +#: src/Impact/Type.php:236 +msgid "Total Climate change - Contribution of emissions from land use change" msgstr "" -#: src/CarbonIntensitySource.php:45 -msgid "Carbon intensity source" -msgid_plural "Carbon intensity sources" -msgstr[0] "" -msgstr[1] "" +#: src/Impact/Type.php:237 +msgid "Total Emissions of radionizing substances" +msgstr "" -#: src/Report.php:50 -msgid "Carbon report" -msgid_plural "Carbon reports" -msgstr[0] "" -msgstr[1] "" +#: src/Impact/Type.php:238 +msgid "Total Land use" +msgstr "" -#: src/Report.php:102 -#, php-format -msgid "" -"Demo mode enabled. The data below are not representative of the assets in " -"the database. %sDisable demo mode%s" +#: src/Impact/Type.php:239 +msgid "Total Depletion of the ozone layer" msgstr "" -#: src/CarbonEmission.php:48 -msgid "Carbon Emission" -msgid_plural "Carbon Emissions" -msgstr[0] "" -msgstr[1] "" +#: src/Impact/Type.php:240 +msgid "Total Fine particle emissions" +msgstr "" -#: src/CarbonEmission.php:119 -msgid "Energy" +#: src/Impact/Type.php:241 +msgid "Total Photochemical ozone formation" msgstr "" -#: src/CarbonEmission.php:127 -msgid "Emission" +#: src/Impact/Type.php:242 +msgid "Total Use of water resources" msgstr "" -#: src/CarbonEmission.php:135 -msgid "Energy quality" +#: src/Impact/Type.php:243 +msgid "Total Material input per unit of service" msgstr "" -#: src/CarbonEmission.php:143 -msgid "Emission quality" +#: src/Impact/Type.php:244 +msgid "Total Use of mineral and metal resources" msgstr "" -#: src/CarbonEmission.php:150 src/UsageImpact.php:149 -#: src/EmbodiedImpact.php:120 -msgid "Date of evaluation" +#: src/Impact/Type.php:245 +msgid "Total Use of fossil resources (including nuclear)" msgstr "" -#: src/CarbonEmission.php:157 src/UsageImpact.php:156 -#: src/EmbodiedImpact.php:127 -msgid "Engine" +#: src/Impact/Type.php:246 +msgid "Total Acidification" msgstr "" -#: src/CarbonEmission.php:164 src/UsageImpact.php:163 -#: src/EmbodiedImpact.php:134 -msgid "Engine version" +#: src/Impact/Type.php:247 +msgid "Total Freshwater ecotoxicity" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:67 -#: src/Command/CollectCarbonIntensityCommand.php:68 -msgid "Creating data source name" +#: src/Impact/Type.php:250 +msgid "Total Eutrophication of freshwater" +msgstr "" + +#: src/Impact/Type.php:251 +msgid "Total Eutrophication of marine waters" +msgstr "" + +#: src/Impact/Type.php:252 +msgid "Total Terrestrial eutrophication" +msgstr "" + +#: src/Impact/Type.php:323 +msgid "Carbon emission in CO₂ equivalent" +msgstr "" + +#: src/Impact/Type.php:324 +msgid "Consumption of non renewable resources in Antimony equivalent." +msgstr "" + +#: src/Impact/Type.php:325 +msgid "Primary energy consumed." +msgstr "" + +#: src/Impact/Type.php:332 +msgid "Incidence of disease" +msgstr "" + +#: src/Source.php:46 +msgid "Carbon intensity source" +msgid_plural "Carbon intensity sources" +msgstr[0] "" +msgstr[1] "" + +#: src/SearchOptions.php:184 src/SearchOptions.php:316 +#: src/SearchOptions.php:329 src/SearchOptions.php:342 +msgid "Ignore environmental impact" +msgstr "" + +#: src/SearchOptions.php:241 src/SearchOptions.php:365 +#: src/SearchOptions.php:442 +msgid "Is historizable" +msgstr "" + +#: src/ComputerType.php:56 +msgid "Unspecified" +msgstr "" + +#: src/ComputerType.php:58 +msgid "Server" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:78 -msgid "Creating data zone name" +#: src/ComputerType.php:59 +msgid "Laptop" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:89 -msgid "Creating fake data..." +#: src/ComputerType.php:60 +msgid "Tablet" msgstr "" -#: src/Command/ExportDashboardCommand.php:69 -msgid "Updating the report dashboard description" +#: src/ComputerType.php:61 +msgid "Smartphone" msgstr "" -#: src/Command/ExportDashboardCommand.php:74 -msgid "Dashboard not found" +#: src/UsageImpact.php:39 +msgid "Usage impact" +msgid_plural "Usage impacts" +msgstr[0] "" +msgstr[1] "" + +#: src/AbstractModel.php:62 src/Dashboard/Grid.php:58 +#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 +#: src/AbstractType.php:63 +msgid "Carbon" +msgstr "Kohlenstoffdioxid" + +#: src/AbstractModel.php:197 +msgid "Quality" msgstr "" -#: src/Command/ExportDashboardCommand.php:100 +#: src/Report.php:49 +msgid "Carbon report" +msgid_plural "Carbon reports" +msgstr[0] "" +msgstr[1] "" + +#: src/Report.php:101 #, php-format -msgid "Dashboard description saved to %s" +msgid "" +"Demo mode enabled. The data below are not representative of the assets in " +"the database. %sDisable demo mode%s" msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:85 -msgid "Zone not found" +#: src/ComputerUsageProfile.php:51 +msgid "Computer usage profile" +msgid_plural "Computer usage profiles" +msgstr[0] "" +msgstr[1] "" + +#: src/ComputerUsageProfile.php:117 +msgid "Start time is invalid" msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:91 -msgid "Reading eco2mix data..." +#: src/ComputerUsageProfile.php:122 +msgid "Stop time is invalid" msgstr "" -#: src/Command/CreateTestInventoryCommand.php:146 -msgid "Creating test inventory" +#: src/Source_Zone.php:72 +msgid "Source name" msgstr "" -#: src/Config.php:130 -msgid "Invalid Boavizta API URL" +#: src/Source_Zone.php:80 +msgid "Zone name" msgstr "" -#: src/Config.php:138 -msgid "Connection to Boavizta API established" +#: src/Source_Zone.php:88 src/Source_Zone.php:171 src/Source_Zone.php:268 +#: src/Zone.php:127 +msgid "Download enabled" +msgstr "Download erlauben" + +#: src/Source_Zone.php:96 +msgid "Code" msgstr "" -#: src/Zone.php:53 -msgid "Carbon intensity zone" -msgid_plural "Carbon intensity zones" -msgstr[0] "" -msgstr[1] "" +#: src/Source_Zone.php:150 +msgid "Not downloadable" +msgstr "" -#: src/Zone.php:126 src/Zone.php:141 -msgid "Data source for historical calculation" +#: src/Source_Zone.php:150 +msgid "This is a fallback source, there is no real-time data available" msgstr "" -#: src/Zone.php:157 src/CarbonIntensitySource_Zone.php:86 -#: src/CarbonIntensitySource_Zone.php:169 -#: src/CarbonIntensitySource_Zone.php:264 -msgid "Download enabled" -msgstr "Download erlauben" +#: src/Source_Zone.php:172 +msgid "Source for historical" +msgstr "Quelle für historisches" -#: src/UsageInfo.php:59 -msgid "Usage informations" +#: src/Source_Zone.php:411 +msgid "Enable / Disable" +msgstr "Einschalten / Ausschalten" + +#: src/CronTask.php:100 +msgid "Find the Alpha3 country code (ISO3166)" msgstr "" -#: src/UsageInfo.php:214 src/Dashboard/Widget.php:848 -#, php-format -msgid "" -"Evaluates the carbon emission in CO₂ equivalent. %s More information %s" +#: src/CronTask.php:101 +msgid "Maximum number of locations to solve" msgstr "" -#: src/UsageInfo.php:222 src/Dashboard/Widget.php:884 -#: src/Dashboard/Widget.php:921 -#, php-format -msgid "" -"Evaluates the consumption of non renewable resources in Antimony equivalent." -" %s More information %s" +#: src/CronTask.php:106 +msgid "Download carbon emissions from Watttime" msgstr "" -#: src/UsageInfo.php:234 src/Dashboard/Widget.php:1102 -#, php-format -msgid "Evaluates the primary energy consumed. %s More information %s" +#: src/CronTask.php:112 +msgid "Compute usage environmental impact for all assets" msgstr "" -#: src/ComputerUsageProfile.php:52 -msgid "Computer usage profile" -msgid_plural "Computer usage profiles" -msgstr[0] "" -msgstr[1] "" +#: src/CronTask.php:113 src/CronTask.php:118 +msgid "Maximum number of entries to calculate" +msgstr "" -#: src/ComputerUsageProfile.php:94 -msgid "Start time is invalid" +#: src/CronTask.php:117 +msgid "Compute embodied environmental impact for all assets" msgstr "" -#: src/ComputerUsageProfile.php:99 -msgid "Stop time is invalid" +#: src/CronTask.php:278 +msgid "No zone to download" msgstr "" -#: src/Dashboard/Widget.php:57 src/Dashboard/Grid.php:317 +#: src/Dashboard/Widget.php:55 src/Dashboard/Grid.php:310 msgid "Environmental impact information video" msgstr "" -#: src/Dashboard/Widget.php:64 +#: src/Dashboard/Widget.php:62 msgid "Methodology information" msgstr "" -#: src/Dashboard/Widget.php:73 +#: src/Dashboard/Widget.php:71 msgid "Total Carbon Emission" msgstr "" -#: src/Dashboard/Widget.php:80 +#: src/Dashboard/Widget.php:78 msgid "Monthly Carbon Emission" msgstr "" -#: src/Dashboard/Widget.php:87 src/Dashboard/Widget.php:599 -#: src/Dashboard/Grid.php:281 +#: src/Dashboard/Widget.php:85 src/Dashboard/Widget.php:604 +#: src/Dashboard/Grid.php:268 msgid "Biggest monthly averaged carbon emission per model" msgstr "" -#: src/Dashboard/Widget.php:95 +#: src/Dashboard/Widget.php:93 msgid "Carbon Emission Per month" msgstr "" -#: src/Dashboard/Widget.php:125 -msgid "Embodied consumed primary energy" +#: src/Dashboard/Widget.php:100 src/Dashboard/Provider.php:733 +msgid "Usage abiotic depletion potential" +msgstr "" + +#: src/Dashboard/Widget.php:130 +msgid "Impact criteria" msgstr "" -#: src/Dashboard/Widget.php:137 +#: src/Dashboard/Widget.php:142 msgid "Unhandled Computers" msgstr "" -#: src/Dashboard/Widget.php:148 +#: src/Dashboard/Widget.php:153 msgid "Unhandled Monitors" msgstr "" -#: src/Dashboard/Widget.php:159 +#: src/Dashboard/Widget.php:164 msgid "Unhandled Network equipments" msgstr "" -#: src/Dashboard/Widget.php:170 +#: src/Dashboard/Widget.php:175 msgid "Radar chart" msgstr "" -#: src/Dashboard/Widget.php:496 src/Dashboard/Provider.php:918 +#: src/Dashboard/Widget.php:501 src/Dashboard/Provider.php:1107 msgid "Consumed energy and carbon emission per month" msgstr "" -#: src/Dashboard/Widget.php:541 src/Dashboard/Widget.php:556 -#: src/Dashboard/DemoProvider.php:125 src/Dashboard/DemoProvider.php:226 -#: src/Dashboard/Provider.php:1023 +#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:561 +#: src/Dashboard/Provider.php:1212 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 msgid "Carbon emission" msgstr "" -#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:559 -#: src/Dashboard/DemoProvider.php:143 src/Dashboard/DemoProvider.php:239 -#: src/Dashboard/Provider.php:1039 +#: src/Dashboard/Widget.php:551 src/Dashboard/Widget.php:564 +#: src/Dashboard/Provider.php:1228 src/Dashboard/DemoProvider.php:106 +#: src/Dashboard/DemoProvider.php:202 msgid "Consumed energy" msgstr "" -#: src/Dashboard/Widget.php:741 +#: src/Dashboard/Widget.php:746 #, php-format msgid "" "Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " "months. %s More information %s" msgstr "" -#: src/Dashboard/Widget.php:807 +#: src/Dashboard/Widget.php:812 #, php-format msgid "" "Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " "elapsed months. %s More information %s" msgstr "" -#: src/Dashboard/Widget.php:1092 -msgid "Total embodied primary energy" +#: src/Dashboard/Widget.php:854 +msgid "More information" +msgstr "" + +#: src/Dashboard/Widget.php:893 +#, php-format +msgid "" +"Evaluates the consumption of non renewable resources in Antimony equivalent." +" %s More information %s" msgstr "" -#: src/Dashboard/Widget.php:1161 +#: src/Dashboard/Widget.php:1097 msgid "Handled percentage" msgstr "" -#: src/Dashboard/DemoProvider.php:49 src/Dashboard/DemoProvider.php:125 -#: src/Dashboard/DemoProvider.php:226 src/Dashboard/DemoProvider.php:415 -#: src/Dashboard/Provider.php:169 src/Dashboard/Provider.php:560 -#: src/Dashboard/Provider.php:730 src/Dashboard/Provider.php:1023 -#: src/Dashboard/Provider.php:1025 +#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 +#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 +#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 msgid "CO₂eq" msgstr "" -#: src/Dashboard/DemoProvider.php:83 src/Dashboard/DemoProvider.php:101 -#: src/Dashboard/Provider.php:792 src/Dashboard/Provider.php:826 -msgid "Sbeq" +#: src/Dashboard/Provider.php:195 src/Dashboard/Provider.php:318 +#: src/Dashboard/Provider.php:1199 src/Toolbox.php:243 +msgid "g" msgstr "" -#: src/Dashboard/DemoProvider.php:113 -msgid "Usage carbon emission per month" +#: src/Dashboard/Provider.php:196 src/Dashboard/Provider.php:319 +#: src/Dashboard/Provider.php:1200 src/Toolbox.php:244 +msgid "Kg" msgstr "" -#: src/Dashboard/DemoProvider.php:279 src/Dashboard/Provider.php:430 -#, php-format -msgid "plugin carbon - handled %s" +#: src/Dashboard/Provider.php:197 src/Dashboard/Provider.php:320 +#: src/Dashboard/Provider.php:1201 src/Toolbox.php:245 +msgid "t" msgstr "" -#: src/Dashboard/DemoProvider.php:280 src/Dashboard/Provider.php:431 -#, php-format -msgid "plugin carbon - unhandled %s" +#: src/Dashboard/Provider.php:198 src/Dashboard/Provider.php:321 +#: src/Dashboard/Provider.php:1202 src/Toolbox.php:246 +msgid "Kt" msgstr "" -#: src/Dashboard/DemoProvider.php:311 -msgid "plugin carbon - handled assets ratio" +#: src/Dashboard/Provider.php:199 src/Dashboard/Provider.php:322 +#: src/Dashboard/Provider.php:1203 src/Toolbox.php:247 +msgid "Mt" msgstr "" -#: src/Dashboard/DemoProvider.php:334 src/Dashboard/Provider.php:398 -msgid "Handled" +#: src/Dashboard/Provider.php:200 src/Dashboard/Provider.php:323 +#: src/Dashboard/Provider.php:1204 src/Toolbox.php:248 +msgid "Gt" msgstr "" -#: src/Dashboard/DemoProvider.php:339 src/Dashboard/Provider.php:403 -msgid "Unhandled" +#: src/Dashboard/Provider.php:201 src/Dashboard/Provider.php:324 +#: src/Dashboard/Provider.php:1205 src/Toolbox.php:249 +msgid "Tt" msgstr "" -#: src/Dashboard/DemoProvider.php:362 src/Dashboard/DemoProvider.php:411 -#: src/Dashboard/Provider.php:548 -msgid "plugin carbon - Usage carbon emission" +#: src/Dashboard/Provider.php:202 src/Dashboard/Provider.php:325 +#: src/Dashboard/Provider.php:1206 src/Toolbox.php:250 +msgid "Pt" msgstr "" -#: src/Dashboard/Dashboard.php:69 -msgid "Carbon dioxyde intensity" +#: src/Dashboard/Provider.php:203 src/Dashboard/Provider.php:326 +#: src/Dashboard/Provider.php:1207 src/Toolbox.php:251 +msgid "Et" +msgstr "" + +#: src/Dashboard/Provider.php:204 src/Dashboard/Provider.php:327 +#: src/Dashboard/Provider.php:1208 src/Toolbox.php:252 +msgid "Zt" +msgstr "" + +#: src/Dashboard/Provider.php:205 src/Dashboard/Provider.php:328 +#: src/Dashboard/Provider.php:1209 src/Toolbox.php:253 +msgid "Yt" +msgstr "" + +#: src/Dashboard/Provider.php:427 +msgid "handled assets ratio" msgstr "" -#: src/Dashboard/Grid.php:73 src/Dashboard/Provider.php:375 +#: src/Dashboard/Provider.php:473 src/Dashboard/Grid.php:63 msgid "Handled assets ratio" msgstr "" -#: src/Dashboard/Grid.php:82 -msgid "Handled assets count" +#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 +msgid "Handled" msgstr "" -#: src/Dashboard/Grid.php:145 -#, php-format -msgid "Handled %s" +#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 +msgid "Unhandled" +msgstr "" + +#: src/Dashboard/Provider.php:507 +msgid "Ignored" msgstr "" -#: src/Dashboard/Grid.php:156 +#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 #, php-format -msgid "Unhandled %s" +msgid "plugin carbon - handled %s" msgstr "" -#: src/Dashboard/Grid.php:172 -msgid "Usage power consumption" +#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 +#, php-format +msgid "plugin carbon - unhandled %s" msgstr "" -#: src/Dashboard/Grid.php:178 -msgid "Usage carbon emission" +#: src/Dashboard/Provider.php:584 +#, php-format +msgid "plugin carbon - ignored %s" msgstr "" -#: src/Dashboard/Grid.php:192 src/Dashboard/Grid.php:295 -#: src/Dashboard/Provider.php:893 -msgid "Embodied global warming potential" +#: src/Dashboard/Provider.php:632 +msgid "plugin carbon - Total usage power consumption" msgstr "" -#: src/Dashboard/Grid.php:198 src/Dashboard/Grid.php:307 -msgid "Embodied primary energy consumed" +#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 +msgid "plugin carbon - Usage carbon emission" msgstr "" -#: src/Dashboard/Grid.php:212 src/UsageImpact.php:105 -msgid "Global warming potential" +#: src/Dashboard/Provider.php:747 +msgid "Sbeq" msgstr "" -#: src/Dashboard/Grid.php:218 src/UsageImpact.php:119 -msgid "Abiotic depletion potential" +#: src/Dashboard/Provider.php:1035 +msgid "Total abiotic depletion potential" msgstr "" -#: src/Dashboard/Grid.php:245 -#, php-format -msgid "Unhandled %s ratio" +#: src/Dashboard/Provider.php:1051 +msgid "Embodied abiotic depletion potential" msgstr "" -#: src/Dashboard/Grid.php:257 -msgid "Usage carbon emission year to date" +#: src/Dashboard/Provider.php:1054 +msgid "Total usage abiotic depletion potential" msgstr "" -#: src/Dashboard/Grid.php:263 -msgid "Monthly carbon emission" +#: src/Dashboard/Provider.php:1066 +msgid "Total global warming potential" msgstr "" -#: src/Dashboard/Grid.php:272 -msgid "Usage global warming potential chart" +#: src/Dashboard/Provider.php:1082 +msgid "Embodied global warming potential" msgstr "" -#: src/Dashboard/Grid.php:322 -msgid "Environmental impact methodology_information" +#: src/Dashboard/Provider.php:1085 +msgid "Total usage global warming potential" msgstr "" -#: src/Dashboard/Provider.php:171 src/Dashboard/Provider.php:1010 -#: src/Toolbox.php:201 -msgid "g" +#: src/Dashboard/Provider.php:1218 src/Toolbox.php:316 +msgid "KWh" msgstr "" -#: src/Dashboard/Provider.php:172 src/Dashboard/Provider.php:1011 -#: src/Toolbox.php:202 -msgid "Kg" +#: src/Dashboard/Provider.php:1219 src/Toolbox.php:317 +msgid "MWh" msgstr "" -#: src/Dashboard/Provider.php:173 src/Dashboard/Provider.php:1012 -#: src/Toolbox.php:203 -msgid "t" +#: src/Dashboard/Provider.php:1220 src/Toolbox.php:318 +msgid "GWh" msgstr "" -#: src/Dashboard/Provider.php:174 src/Dashboard/Provider.php:1013 -#: src/Toolbox.php:204 -msgid "Kt" +#: src/Dashboard/Provider.php:1221 src/Toolbox.php:319 +msgid "TWh" msgstr "" -#: src/Dashboard/Provider.php:175 src/Dashboard/Provider.php:1014 -#: src/Toolbox.php:205 -msgid "Mt" +#: src/Dashboard/Provider.php:1222 src/Toolbox.php:320 +msgid "PWh" msgstr "" -#: src/Dashboard/Provider.php:176 src/Dashboard/Provider.php:1015 -#: src/Toolbox.php:206 -msgid "Gt" +#: src/Dashboard/Provider.php:1223 src/Toolbox.php:321 +msgid "EWh" msgstr "" -#: src/Dashboard/Provider.php:177 src/Dashboard/Provider.php:1016 -#: src/Toolbox.php:207 -msgid "Tt" +#: src/Dashboard/Provider.php:1224 src/Toolbox.php:322 +msgid "ZWh" msgstr "" -#: src/Dashboard/Provider.php:178 src/Dashboard/Provider.php:1017 -#: src/Toolbox.php:208 -msgid "Pt" +#: src/Dashboard/Provider.php:1225 src/Toolbox.php:323 +msgid "YWh" msgstr "" -#: src/Dashboard/Provider.php:179 src/Dashboard/Provider.php:1018 -#: src/Toolbox.php:209 -msgid "Et" +#: src/Dashboard/Grid.php:72 +msgid "Handled assets count" msgstr "" -#: src/Dashboard/Provider.php:180 src/Dashboard/Provider.php:1019 -#: src/Toolbox.php:210 -msgid "Zt" +#: src/Dashboard/Grid.php:135 +#, php-format +msgid "Handled %s" msgstr "" -#: src/Dashboard/Provider.php:181 src/Dashboard/Provider.php:1020 -#: src/Toolbox.php:211 -msgid "Yt" +#: src/Dashboard/Grid.php:146 +#, php-format +msgid "Unhandled %s" msgstr "" -#: src/Dashboard/Provider.php:330 -msgid "handled assets ratio" +#: src/Dashboard/Grid.php:232 +#, php-format +msgid "Unhandled %s ratio" msgstr "" -#: src/Dashboard/Provider.php:479 -msgid "plugin carbon - Total usage power consumption" +#: src/Dashboard/Grid.php:244 +msgid "Usage carbon emission year to date" msgstr "" -#: src/Dashboard/Provider.php:718 -msgid "Total embodied global warming potential" +#: src/Dashboard/Grid.php:250 +msgid "Monthly carbon emission" msgstr "" -#: src/Dashboard/Provider.php:846 -msgid "Total abiotic depletion potential" +#: src/Dashboard/Grid.php:259 +msgid "Usage global warming potential chart" msgstr "" -#: src/Dashboard/Provider.php:865 -msgid "Total usage abiotic depletion potential" +#: src/Dashboard/Grid.php:315 +msgid "Environmental impact methodology information" msgstr "" -#: src/Dashboard/Provider.php:877 -msgid "Total global warming potential" +#: src/Dashboard/DemoProvider.php:76 +msgid "Usage carbon emission per month" msgstr "" -#: src/Dashboard/Provider.php:896 -msgid "Total usage global warming potential" +#: src/Dashboard/DemoProvider.php:274 +msgid "plugin carbon - handled assets ratio" msgstr "" -#: src/Dashboard/Provider.php:1029 src/Toolbox.php:287 -msgid "KWh" +#: src/Dashboard/Dashboard.php:68 +msgid "Carbon dioxyde intensity" msgstr "" -#: src/Dashboard/Provider.php:1030 src/Toolbox.php:288 -msgid "MWh" +#: src/Location.php:189 +msgid "Carbon intensity source and zone" msgstr "" -#: src/Dashboard/Provider.php:1031 src/Toolbox.php:289 -msgid "GWh" +#: src/CarbonIntensity.php:87 +msgid "Emission date" msgstr "" -#: src/Dashboard/Provider.php:1032 src/Toolbox.php:290 -msgid "TWh" +#: src/CarbonIntensity.php:114 +msgid "Intensity" msgstr "" -#: src/Dashboard/Provider.php:1033 src/Toolbox.php:291 -msgid "PWh" +#: src/CarbonEmission.php:49 +msgid "Carbon Emission" +msgid_plural "Carbon Emissions" +msgstr[0] "" +msgstr[1] "" + +#: src/CarbonEmission.php:120 +msgid "Energy" msgstr "" -#: src/Dashboard/Provider.php:1034 src/Toolbox.php:292 -msgid "EWh" +#: src/CarbonEmission.php:128 +msgid "Emission" msgstr "" -#: src/Dashboard/Provider.php:1035 src/Toolbox.php:293 -msgid "ZWh" +#: src/CarbonEmission.php:136 +msgid "Energy quality" msgstr "" -#: src/Dashboard/Provider.php:1036 src/Toolbox.php:294 -msgid "YWh" +#: src/CarbonEmission.php:144 +msgid "Emission quality" msgstr "" -#: src/Toolbox.php:251 +#: src/Toolbox.php:280 msgid "W" msgstr "" -#: src/Toolbox.php:252 +#: src/Toolbox.php:281 msgid "KW" msgstr "" -#: src/Toolbox.php:253 +#: src/Toolbox.php:282 msgid "MW" msgstr "" -#: src/Toolbox.php:254 +#: src/Toolbox.php:283 msgid "GW" msgstr "" -#: src/Toolbox.php:255 +#: src/Toolbox.php:284 msgid "TW" msgstr "" -#: src/Toolbox.php:256 +#: src/Toolbox.php:285 msgid "PW" msgstr "" -#: src/Toolbox.php:257 +#: src/Toolbox.php:286 msgid "EW" msgstr "" -#: src/Toolbox.php:258 +#: src/Toolbox.php:287 msgid "ZW" msgstr "" -#: src/Toolbox.php:259 +#: src/Toolbox.php:288 msgid "YW" msgstr "" -#: src/Toolbox.php:286 +#: src/Toolbox.php:315 msgid "Wh" msgstr "" -#: src/SearchOptions.php:196 src/SearchOptions.php:273 -#: src/SearchOptions.php:346 -msgid "Is historizable" +#: src/Toolbox.php:373 src/Toolbox.php:378 +#, php-format +msgid "%1$s %2$s" msgstr "" -#: src/UsageImpact.php:50 -msgid "Usage impact" -msgid_plural "Usage impacts" -msgstr[0] "" -msgstr[1] "" - -#: src/UsageImpact.php:112 -msgid "Global warming potential quality" +#: setup.php:285 +msgid "Environmental Impact" msgstr "" -#: src/UsageImpact.php:127 -msgid "Abiotic depletion potential quality" +#: hook.php:97 +msgid "" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." msgstr "" -#: src/UsageImpact.php:134 src/UsageImpact.php:142 -msgid "Primary energy quality" +#: hook.php:301 +msgid "Associate to an usage profile" msgstr "" -#: src/CarbonIntensity.php:66 -msgid "Carbon intensity" +#: hook.php:302 hook.php:307 +msgid "Delete all calculated environmental impacts" msgstr "" -#: src/CarbonIntensity.php:88 -msgid "Emission date" +#: hook.php:311 hook.php:316 hook.php:320 +msgid "Update type power consumption" msgstr "" -#: src/CarbonIntensity.php:115 -msgid "Intensity" +#: hook.php:312 +msgid "Update category" msgstr "" -#: src/EmbodiedImpact.php:90 -msgid "Global Warming Potential" +#: hook.php:324 +msgid "Update zone for Boavizta engine" msgstr "" -#: src/EmbodiedImpact.php:100 -msgid "Abiotic Depletion Potential" +#: hook.php:325 +msgid "Update carbon intensity source and zone" msgstr "" -#: src/EmbodiedImpact.php:110 -msgid "Primary energy" +#: install/install/create_automatic_actions.php:52 +msgid "Find the Alpha3 country code (ISO3166) of locations" msgstr "" -#: src/ComputerType.php:56 -msgid "Unspecified" +#: install/install/create_automatic_actions.php:64 +msgid "Compute carbon emissions of computers" msgstr "" -#: src/ComputerType.php:58 -msgid "Server" +#: install/install/create_automatic_actions.php:76 +msgid "Compute embodied impact of assets" msgstr "" -#: src/ComputerType.php:59 -msgid "Laptop" +#: install/install/create_uasge_profiles.php:41 +msgid "Always on" msgstr "" -#: src/ComputerType.php:60 -msgid "Tablet" -msgstr "" +#: install/install/create_uasge_profiles.php:52 +msgid "Office hours" +msgstr "Bürozeiten" -#: src/ComputerType.php:61 -msgid "Smartphone" +#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 +#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 +msgid "Missing arguments in request." msgstr "" -#: src/CarbonIntensitySource_Zone.php:70 -msgid "Source name" +#: front/usageimpact.form.php:80 front/usageimpact.form.php:106 +#: front/usageimpact.form.php:114 front/embodiedimpact.form.php:92 +msgid "Bad arguments." msgstr "" -#: src/CarbonIntensitySource_Zone.php:78 -msgid "Zone name" +#: front/usageimpact.form.php:90 front/embodiedimpact.form.php:68 +#: front/embodiedimpact.form.php:77 +msgid "Reset denied." msgstr "" -#: src/CarbonIntensitySource_Zone.php:94 -msgid "Code" +#: front/usageimpact.form.php:95 front/embodiedimpact.form.php:82 +msgid "Reset failed." msgstr "" -#: src/CarbonIntensitySource_Zone.php:148 -msgid "Not downloadable" +#: front/usageimpact.form.php:122 +msgid "Missing data prevents historization of this asset." msgstr "" -#: src/CarbonIntensitySource_Zone.php:148 -msgid "This is a fallback source, there is no real-time data available" +#: front/usageimpact.form.php:125 +msgid "Update of global warming potential failed." msgstr "" -#: src/CarbonIntensitySource_Zone.php:170 -msgid "Source for historical" -msgstr "Quelle für historisches" +#: front/usageimpact.form.php:131 front/embodiedimpact.form.php:101 +msgid "Unable to find calculation engine for this asset." +msgstr "" -#: src/CarbonIntensitySource_Zone.php:351 -msgid "Enable / Disable" -msgstr "Einschalten / Ausschalten" +#: front/usageimpact.form.php:136 +msgid "Update of usage impact failed." +msgstr "" diff --git a/locales/es_AR.po b/locales/es_AR.po index af83c8b2..df799141 100644 --- a/locales/es_AR.po +++ b/locales/es_AR.po @@ -5,16 +5,16 @@ # # Translators: # Thierry Bugier , 2025 -# Alan Lehoux, 2025 +# Alan Lehoux, 2026 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 08:10+0000\n" -"PO-Revision-Date: 2025-07-03 13:58+0000\n" -"Last-Translator: Alan Lehoux, 2025\n" +"POT-Creation-Date: 2026-04-15 02:49+0000\n" +"PO-Revision-Date: 2025-10-29 09:26+0000\n" +"Last-Translator: Alan Lehoux, 2026\n" "Language-Team: Spanish (Argentina) (https://app.transifex.com/teclib/teams/28042/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,47 +22,217 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: templates/dashboard/usage-carbon-emission-last-year.html.twig -msgid "Yearly Usage Carbon Emission" -msgstr "Emisiones de Carbono Anuales" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 +#: src/ComputerUsageProfile.php:169 +msgid "Start time" +msgstr "Hora de inicio" -#: templates/dashboard/monthly-carbon-emission.html.twig -msgid "Monthly usage carbon emission" -msgstr "Emisiones de carbono mensuales" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 +msgid "Stop time" +msgstr "Hora de fin" -#: templates/dashboard/monthly-carbon-emission.html.twig -#, php-format -msgid "Compared to %s" -msgstr "En comparación con %s" +#: templates/computerusageprofile.html.twig +msgid "Days of week where the computer usually runs" +msgstr "Días de la semana en los que la computadora suele funcionar" -#: templates/dashboard/embodied-primary-energy.html.twig -msgid "Embodied primary energy" -msgstr "Energía primaria incorporada" +#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 +#: src/Impact/Usage/Engine.php:48 +msgid "Boavizta" +msgstr "Boavizta" -#: templates/dashboard/usage-abiotic-depletion.html.twig -#: src/Dashboard/Widget.php:102 src/Dashboard/DemoProvider.php:95 -#: src/Dashboard/Grid.php:184 src/Dashboard/Grid.php:287 -#: src/Dashboard/Provider.php:812 -msgid "Usage abiotic depletion potential" -msgstr "Uso del potencial de agotamiento abiótico" +#: templates/location.html.twig src/SearchOptions.php:138 src/Location.php:182 +msgid "Boavizta zone" +msgstr "Zona Boavizta" -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#: templates/dashboard/unhandled-monitors-card.html.twig -#: templates/dashboard/unhandled-computers-card.html.twig -msgid "Warning" -msgstr "Advertencia" +#: templates/location.html.twig src/CarbonIntensity.php:65 +msgid "Carbon intensity" +msgstr "Intensidad de carbono" -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#, php-format +#: templates/usageinfo.html.twig +msgid "Asset usage" +msgstr "Uso del activo" + +#: templates/usageinfo.html.twig +msgid "Usage profile" +msgid_plural "Usage profiles" +msgstr[0] "Perfil de uso" +msgstr[1] "Perfiles de uso" +msgstr[2] "Perfiles de uso" + +#: templates/quick-report.html.twig front/report.php:55 +msgid "GLPI Carbon" +msgstr "GLPI Carbono" + +#: templates/components/form/source_zone_selector.html.twig +#: src/AbstractModel.php:186 +msgid "Source" +msgstr "Fuente" + +#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 +msgid "Carbon intensity zone" +msgid_plural "Carbon intensity zones" +msgstr[0] "Zona de intensidad de carbono" +msgstr[1] "Zonas de intensidad de carbono" +msgstr[2] "Zonas de intensidad de carbono" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "No zone available" +msgstr "No hay zona disponible" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "Please run the automatic action to downlaod data from this source." +msgstr "" +"Por favor, ejecutá la acción automática para descargar datos de esta fuente." + +#: templates/environmentalimpact-item.html.twig +msgid "Usage" +msgstr "Uso" + +#: templates/environmentalimpact-item.html.twig +msgid "Reset data" +msgstr "Restablecer datos" + +#: templates/environmentalimpact-item.html.twig +msgid "Calculate data" +msgstr "Calcular datos" + +#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 +msgid "Embodied impact" +msgid_plural "Embodied impacts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: templates/history/status-item.html.twig +msgid "Historization status" +msgstr "Estado de historización" + +#: templates/history/status-item.html.twig +msgid "No status" +msgstr "Sin estado" + +#: templates/history/status-item.html.twig msgid "" -"It represents %s percent of your parc that contains %s network equipments." +"This data is missing and prevents from environmental impact calculation." +msgstr "Faltan estos datos, lo que impide calcular el impacto ambiental." + +#: templates/history/status-item.html.twig +msgid "" +"This data is missing and may reduce the quality of environmental impact " +"calculation." msgstr "" -"Representa %s por ciento de tu parque, que contiene %s equipos de red." +"Faltan estos datos, lo que podría reducir la calidad del cálculo de impacto " +"ambiental." -#: templates/dashboard/unhandled-monitors-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s monitors." -msgstr "Representa %s por ciento de tu parque, que contiene %s monitores." +#: templates/history/status-item.html.twig +msgid "Is not in the trash bin" +msgstr "No está en la papelera" + +#: templates/history/status-item.html.twig +msgid "Is not a template" +msgstr "No es una plantilla" + +#: templates/history/status-item.html.twig +msgid "Linked to a computer" +msgstr "Vinculado a una computadora" + +#: templates/history/status-item.html.twig +msgid "Attached computer has a location" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Has a location" +msgstr "Tiene una ubicación" + +#: templates/history/status-item.html.twig +msgid "The location has carbon intensity data" +msgstr "La ubicación tiene datos de intensidad de carbono" + +#: templates/history/status-item.html.twig +msgid "Real time carbon intensity enabled" +msgstr "Intensidad de carbono en tiempo real activada" + +#: templates/history/status-item.html.twig +msgid "The location has yearly carbon intensity data" +msgstr "La ubicación tiene datos anuales de intensidad de carbono" + +#: templates/history/status-item.html.twig +msgid "The asset has a model" +msgstr "El activo tiene un modelo" + +#: templates/history/status-item.html.twig +msgid "The model has a power consumption" +msgstr "El modelo tiene un consumo de potencia" + +#: templates/history/status-item.html.twig +msgid "The asset has a type" +msgstr "El activo tiene un tipo" + +#: templates/history/status-item.html.twig +msgid "Type is not ignored" +msgstr "El tipo no está ignorado" + +#: templates/history/status-item.html.twig +msgid "The type has a power consumption" +msgstr "El tipo tiene un consumo de potencia" + +#: templates/history/status-item.html.twig +msgid "The asset has a category" +msgstr "El activo tiene una categoría" + +#: templates/history/status-item.html.twig +msgid "The asset has a usage profile" +msgstr "El activo tiene un perfil de uso" + +#: templates/history/status-item.html.twig +msgid "The asset has an inventory entry date" +msgstr "El activo tiene una fecha de alta en el inventario" + +#: templates/history/status-item.html.twig +msgid "Legend" +msgstr "Leyenda" + +#: templates/monitortype.html.twig +msgid "" +"This power value is used as default when the power of a monitor model is " +"unknown" +msgstr "" +"Este valor de potencia se utiliza por defecto cuando se desconoce la " +"potencia de un modelo de monitor" + +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Power" +msgid_plural "Powers" +msgstr[0] "Potencia" +msgstr[1] "Potencias" +msgstr[2] "Potencias" + +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Do not evaluate" +msgstr "No evaluar" + +#: templates/config.html.twig +msgid "Impact engine" +msgstr "Motor de impacto" + +#: templates/config.html.twig +msgid "Usage carbon emissions are always calculated internally" +msgstr "Las emisiones de carbono por uso siempre se calculan internamente" + +#: templates/computertype.html.twig +msgid "" +"This power value is used as default when the power of a computer model is " +"unknown" +msgstr "" +"Este valor de potencia se utiliza por defecto cuando se desconoce la " +"potencia de un modelo de computadora" + +#: templates/computertype.html.twig src/SearchOptions.php:303 +#: src/ComputerType.php:78 +msgid "Category" +msgstr "Categoría" #: templates/dashboard/information-block.html.twig msgid "Information" @@ -105,69 +275,70 @@ msgstr "" "1 gramo de CO₂ equivale al CO₂ emitido al conducir un auto durante " "aproximadamente 20 metros." -#: templates/dashboard/embodied-carbon-emission.html.twig -#: src/Dashboard/Widget.php:111 -msgid "Embodied carbon emission" -msgstr "Emisión de carbono incorporada" +#: templates/dashboard/unhandled-monitors-card.html.twig +#: templates/dashboard/unhandled-computers-card.html.twig +#: templates/dashboard/unhandled-network-equipments-card.html.twig +msgid "Warning" +msgstr "Advertencia" -#: templates/dashboard/information-video-card.html.twig -msgid "Want to know more ?" -msgstr "¿Querés saber más?" +#: templates/dashboard/unhandled-monitors-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s monitors." +msgstr "Representa %s por ciento de tu parque, que contiene %s monitores." -#: templates/dashboard/information-video-card.html.twig -msgid "Here is a video about the impact of numeric on the enviromnent." -msgstr "" -"Aquí hay un video sobre el impacto de lo digital en el medio ambiente." +#: templates/dashboard/usage-carbon-emission-last-year.html.twig +msgid "Yearly Usage Carbon Emission" +msgstr "Emisión de Carbono Por Uso Anual" + +#: templates/dashboard/monthly-carbon-emission.html.twig +msgid "Monthly usage carbon emission" +msgstr "Emisión de carbono por uso mensual" + +#: templates/dashboard/monthly-carbon-emission.html.twig +#, php-format +msgid "Compared to %s" +msgstr "En comparación con %s" #: templates/dashboard/unhandled-computers-card.html.twig #, php-format msgid "It represents %s percent of your parc that contains %s computers." msgstr "Representa %s por ciento de tu parque, que contiene %s computadoras." -#: templates/dashboard/embodied-abiotic-depletion.html.twig -#: src/Dashboard/Widget.php:118 src/Dashboard/DemoProvider.php:77 -#: src/Dashboard/Grid.php:204 src/Dashboard/Grid.php:301 -#: src/Dashboard/Provider.php:778 src/Dashboard/Provider.php:862 -msgid "Embodied abiotic depletion potential" -msgstr "Potencial de agotamiento abiótico incorporado" - -#: templates/monitortype.html.twig +#: templates/dashboard/unhandled-network-equipments-card.html.twig +#, php-format msgid "" -"This power value is used as default when the power of a monitor model is " -"unknown" +"It represents %s percent of your parc that contains %s network equipments." msgstr "" -"Este valor de potencia se utiliza por defecto cuando se desconoce la " -"potencia de un modelo de monitor" +"Representa %s por ciento de tu parque, que contiene %s equipos de red." -#: templates/monitortype.html.twig templates/computertype.html.twig -#: templates/networkequipmenttype.html.twig src/AbstractType.php:56 -msgid "Power" -msgid_plural "Powers" -msgstr[0] "Potencia" -msgstr[1] "Potencias" -msgstr[2] "Potencias" +#: templates/dashboard/information-video-card.html.twig +msgid "Want to know more ?" +msgstr "¿Querés saber más?" -#: templates/computertype.html.twig +#: templates/dashboard/information-video-card.html.twig +msgid "Here is a video about the impact of numeric on the enviromnent." +msgstr "" +"Aquí hay un video sobre el impacto de lo digital en el medio ambiente." + +#: templates/abstractmodel.html.twig msgid "" -"This power value is used as default when the power of a computer model is " -"unknown" +"The impacts below shall include the manufacturing, disposal and recycling " +"processes only." msgstr "" -"Este valor de potencia se utiliza por defecto cuando se desconoce la " -"potencia de un modelo de computadora" +"Los impactos detallados a continuación deben incluir únicamente los procesos" +" de fabricación, disposición final y reciclaje." -#: templates/computertype.html.twig src/SearchOptions.php:251 -#: src/ComputerType.php:78 -msgid "Category" -msgstr "Categoría" +#: templates/abstractmodel.html.twig +msgid "Take care of the expected units before setting an impact." +msgstr "" -#: templates/pages/CarbonIntensitySource/tab_zone.html.twig -msgid "No zone available" -msgstr "No hay zona disponible" +#: templates/abstractmodel.html.twig +msgid "Data quality" +msgstr "Calidad de los datos" -#: templates/pages/CarbonIntensitySource/tab_zone.html.twig -msgid "Please run the automatic action to downlaod data from this source." -msgstr "" -"Por favor, ejecutá la acción automática para descargar datos de esta fuente." +#: templates/abstractmodel.html.twig +msgid "Data source" +msgstr "Fuente de datos" #: templates/networkequipmenttype.html.twig msgid "" @@ -177,941 +348,1092 @@ msgstr "" "Este valor de potencia se utiliza por defecto cuando se desconoce la " "potencia de un modelo de equipo de red" -#: templates/environmentalimpact-item.html.twig -msgid "Usage" -msgstr "Uso" +#: src/Command/CollectCarbonIntensityCommand.php:70 +msgid "Read carbon dioxyde intensity from external sources" +msgstr "Leer intensidad de carbono de fuentes externas" -#: templates/environmentalimpact-item.html.twig -msgid "Reset data" -msgstr "Restablecer datos" +#: src/Command/CollectCarbonIntensityCommand.php:84 +msgid "Source:" +msgstr "Fuente:" -#: templates/environmentalimpact-item.html.twig -msgid "Calculate data" -msgstr "Calcular datos" +#: src/Command/CollectCarbonIntensityCommand.php:95 +msgid "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" +msgstr "" +"La fuente seleccionada no enumera sus zonas compatibles. Intentando " +"identificar una zona a partir de una dirección" -#: templates/environmentalimpact-item.html.twig -msgid "Embodied impact" -msgstr "Impacto incorporado" +#: src/Command/CollectCarbonIntensityCommand.php:99 +msgid "Geocoding is not enabled. Cannot resolve an address into a zone" +msgstr "" +"La geolocalización no está activada. No se puede resolver una dirección en " +"una zona" -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:125 -#: src/ComputerUsageProfile.php:146 -msgid "Start time" -msgstr "Hora de inicio" +#: src/Command/CollectCarbonIntensityCommand.php:104 +msgid "Address:" +msgstr "Dirección:" -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:154 -msgid "Stop time" -msgstr "Hora de fin" +#: src/Command/CollectCarbonIntensityCommand.php:107 +msgid "Zone:" +msgstr "Zona:" -#: templates/computerusageprofile.html.twig -msgid "Days of week where the computer usually runs" -msgstr "Días de la semana en los que la computadora suele funcionar" +#: src/Command/CollectCarbonIntensityCommand.php:123 +#: src/Command/CreateFakeCarbonIntensityCommand.php:67 +msgid "Creating data source name" +msgstr "Creando nombre de la fuente de datos" -#: templates/usageinfo.html.twig -msgid "Asset usage" -msgstr "Uso del activo" +#: src/Command/CollectCarbonIntensityCommand.php:130 +msgid "This source does not exist" +msgstr "" -#: templates/usageinfo.html.twig -msgid "Usage profile" -msgid_plural "Usage profiles" -msgstr[0] "Perfil de uso" -msgstr[1] "Perfiles de uso" -msgstr[2] "Perfiles de uso" +#: src/Command/CollectCarbonIntensityCommand.php:149 +msgid "The zone is not handled by the data source" +msgstr "" -#: templates/quick-report.html.twig front/report.php:55 -msgid "GLPI Carbon" -msgstr "GLPI Carbono" +#: src/Command/CollectCarbonIntensityCommand.php:155 +msgid "Reading data..." +msgstr "Leyendo datos..." + +#: src/Command/CreateFakeCarbonIntensityCommand.php:78 +msgid "Creating data zone name" +msgstr "Creando nombre de la zona de datos" + +#: src/Command/CreateFakeCarbonIntensityCommand.php:89 +msgid "Creating fake data..." +msgstr "Creando datos de prueba..." + +#: src/Command/ExportDashboardCommand.php:68 +msgid "Updating the report dashboard description" +msgstr "Actualizando la descripción del tablero de reportes" + +#: src/Command/ExportDashboardCommand.php:73 +msgid "Dashboard not found" +msgstr "Tablero no encontrado" + +#: src/Command/ExportDashboardCommand.php:99 +#, php-format +msgid "Dashboard description saved to %s" +msgstr "Descripción del tablero guardada en %s" + +#: src/Command/CreateTestInventoryCommand.php:145 +msgid "Creating test inventory" +msgstr "Creando inventario de prueba" + +#: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 +#: src/ComputerType.php:70 src/MonitorType.php:50 +msgid "Power consumption" +msgstr "Consumo de potencia" -#: templates/location.html.twig src/Profile.php:45 src/UsageInfo.php:91 +#: src/UsageInfo.php:62 +msgid "Usage informations" +msgstr "Información de uso" + +#: src/UsageInfo.php:94 src/AbstractModel.php:54 src/Location.php:73 +#: src/AbstractType.php:55 src/Profile.php:45 msgid "Environmental impact" msgstr "Impacto ambiental" -#: templates/location.html.twig src/Location.php:78 src/SearchOptions.php:121 -msgid "Boavizta zone" -msgstr "Zona Boavizta" +#: src/UsageInfo.php:241 +#, php-format +msgid "%s More information %s" +msgstr "" -#: templates/history/status-item.html.twig -msgid "Historization status" -msgstr "Estado de historización" +#: src/DataSource/Lca/Boaviztapi/Config.php:100 +msgid "Invalid Boavizta API URL" +msgstr "URL de la API de Boavizta inválida" -#: templates/history/status-item.html.twig -msgid "No status" -msgstr "Sin estado" +#: src/DataSource/Lca/Boaviztapi/Config.php:108 +msgid "Connection to Boavizta API established" +msgstr "Conexión con la API de Boavizta establecida" -#: templates/history/status-item.html.twig -msgid "" -"This data is missing and prevents from environmental impact calculation." +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:56 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:53 +msgid "Resource diagnosis" msgstr "" -#: templates/history/status-item.html.twig -msgid "" -"This data is missing and may reduce the quality of environmental impact " -"calculation." -msgstr "" +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:71 +msgid "Collect carbon intensities from RTE" +msgstr "Recopilar intensidades de carbono de RTE" -#: templates/history/status-item.html.twig -msgid "Is not in the trash bin" -msgstr "" +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:89 +msgid "Download carbon emissions from RTE" +msgstr "Descargar las emisiones de carbono de RTE" -#: templates/history/status-item.html.twig -msgid "Is not a template" -msgstr "" +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:90 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:87 +#: src/CronTask.php:107 +msgid "Maximum number of entries to download" +msgstr "Cantidad máxima de entradas a descargar" -#: templates/history/status-item.html.twig -msgid "Linked to a computer" -msgstr "" +#: src/DataSource/CarbonIntensity/AbstractCronTask.php:103 +#: src/Source_Zone.php:537 +msgid "End" +msgstr "Fin" -#: templates/history/status-item.html.twig -msgid "Has a location" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:68 +msgid "Collect carbon intensities from Electricity Maps" msgstr "" -#: templates/history/status-item.html.twig -msgid "The location has a state or a country" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:86 +msgid "Download carbon emissions from Electricity Maps" msgstr "" -#: templates/history/status-item.html.twig -msgid "Real time carbon intensity enabled" -msgstr "" +#: src/AbstractImpact.php:125 src/CarbonEmission.php:151 +msgid "Date of evaluation" +msgstr "Fecha de evaluación" -#: templates/history/status-item.html.twig -msgid "The location has yearly carbon intensity data" -msgstr "" +#: src/AbstractImpact.php:132 src/CarbonEmission.php:158 +msgid "Engine" +msgstr "Motor" -#: templates/history/status-item.html.twig -msgid "The asset has a model" -msgstr "" +#: src/AbstractImpact.php:139 src/CarbonEmission.php:165 +msgid "Engine version" +msgstr "Versión del motor" -#: templates/history/status-item.html.twig -msgid "The model has a power consumption" -msgstr "" +#: src/DataTracking/AbstractTracked.php:77 +msgid "Impact not evaluated" +msgstr "Impacto no evaluado" -#: templates/history/status-item.html.twig -msgid "The asset has a type" -msgstr "" +#: src/DataTracking/AbstractTracked.php:78 +msgid "Unspecified quality" +msgstr "Calidad sin especificar" -#: templates/history/status-item.html.twig -msgid "The type has a power consumption" -msgstr "" +#: src/DataTracking/AbstractTracked.php:79 +msgid "Manual data" +msgstr "Datos manuales" -#: templates/history/status-item.html.twig -msgid "The asset has a category" -msgstr "" +#: src/DataTracking/AbstractTracked.php:80 +msgid "Estimated data" +msgstr "Datos estimados" -#: templates/history/status-item.html.twig -msgid "The asset has a usage profile" -msgstr "" +#: src/DataTracking/AbstractTracked.php:81 +msgid "Downsampled data" +msgstr "Datos submuestreados" -#: templates/history/status-item.html.twig -msgid "The asset has an inventory entry date" -msgstr "" +#: src/DataTracking/AbstractTracked.php:82 +msgid "Measured data" +msgstr "Datos medidos" -#: templates/history/status-item.html.twig -msgid "Legend" -msgstr "" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 +#: src/Impact/Usage/AbstractUsageImpact.php:91 +msgid "grams of carbon dioxyde equivalent" +msgstr "gramos de dióxido de carbono equivalente" -#: templates/config.html.twig -msgid "Electricity maps" -msgstr "" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 +#: src/Impact/Usage/AbstractUsageImpact.php:93 +msgid "grams of antimony equivalent" +msgstr "gramos de antimonio equivalente" -#: templates/config.html.twig -msgid "Key for electricitymap.org API" -msgstr "Clave para API de electricitymap.org" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 +#: src/Impact/Usage/AbstractUsageImpact.php:95 +msgid "joules" +msgstr "joules" -#: templates/config.html.twig -msgid "Impact engine" -msgstr "" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 +msgid "Connection to Boavizta failed." +msgstr "La conexión a Boavizta falló." -#: templates/config.html.twig -msgid "Usage carbon emissions are always calculated internally" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 +msgid "Embodied impact evaluation falied." msgstr "" -#: templates/config.html.twig src/Impact/Embodied/Engine.php:46 -#: src/Impact/Usage/Engine.php:46 -msgid "Boavizta" -msgstr "" +#: src/Impact/History/AbstractAsset.php:370 +msgid "Error while calculating impact" +msgstr "Error al calcular el impacto" -#: templates/config.html.twig -msgid "Base URL to the Boaviztapi instance" +#: src/Impact/History/AbstractAsset.php:378 +msgid "Nothing to calculate" +msgstr "No hay nada para calcular" + +#: src/Impact/History/AbstractAsset.php:384 +#, php-format +msgid "%d entries calculated" +msgstr "Se calcularon %d entradas" + +#: src/Impact/Type.php:159 +msgid "Embodied Global warming potential" msgstr "" -#: templates/config.html.twig -msgid "" -"Geocoding converts a location into a ISO 3166 (3 letters) code. Boavizta " -"needs this to determine usage impacts of assets. This feature sends the " -"address stored in a location to nominatim.org service. If this is an issue, " -"you can disable it below, and fill the coutry code manually." +#: src/Impact/Type.php:160 +msgid "Embodied Abiotic depletion potential" msgstr "" -#: templates/config.html.twig -msgid "Enable geocoding" +#: src/Impact/Type.php:161 +msgid "Embodied Primary energy consumed" msgstr "" -#: setup.php:263 -msgid "Environmental Impact" +#: src/Impact/Type.php:162 +msgid "Embodied Climate change - Contribution of biogenic emissions" msgstr "" -#: front/embodiedimpact.form.php:65 front/embodiedimpact.form.php:88 -#: front/usageimpact.form.php:65 front/usageimpact.form.php:102 -msgid "Missing arguments in request." +#: src/Impact/Type.php:163 +msgid "Embodied Climate change - Contribution of fossil fuel emissions" msgstr "" -#: front/embodiedimpact.form.php:70 front/embodiedimpact.form.php:79 -#: front/usageimpact.form.php:89 -msgid "Reset denied." +#: src/Impact/Type.php:164 +msgid "" +"Embodied Climate change - Contribution of emissions from land use change" msgstr "" -#: front/embodiedimpact.form.php:84 front/usageimpact.form.php:94 -msgid "Reset failed." +#: src/Impact/Type.php:165 +msgid "Embodied Emissions of radionizing substances" msgstr "" -#: front/embodiedimpact.form.php:94 front/usageimpact.form.php:133 -msgid "Unable to find calculation engine for this asset." +#: src/Impact/Type.php:166 +msgid "Embodied Land use" msgstr "" -#: front/embodiedimpact.form.php:103 -msgid "Update failed." +#: src/Impact/Type.php:167 +msgid "Embodied Depletion of the ozone layer" msgstr "" -#: front/usageimpact.form.php:79 front/usageimpact.form.php:108 -#: front/usageimpact.form.php:116 -msgid "Bad arguments." +#: src/Impact/Type.php:168 +msgid "Embodied Fine particle emissions" msgstr "" -#: front/usageimpact.form.php:98 -msgid "Delete of usage impact failed." +#: src/Impact/Type.php:169 +msgid "Embodied Photochemical ozone formation" msgstr "" -#: front/usageimpact.form.php:124 -msgid "Missing data prevents historization of this asset." +#: src/Impact/Type.php:170 +msgid "Embodied Use of water resources" msgstr "" -#: front/usageimpact.form.php:127 -msgid "Update of global warming potential failed." +#: src/Impact/Type.php:171 +msgid "Embodied Material input per unit of service" msgstr "" -#: front/usageimpact.form.php:138 -msgid "Update of usage impact failed." +#: src/Impact/Type.php:172 +msgid "Embodied Use of mineral and metal resources" msgstr "" -#: hook.php:293 -msgid "Associate to an usage profile" +#: src/Impact/Type.php:173 +msgid "Embodied Use of fossil resources (including nuclear)" msgstr "" -#: hook.php:297 hook.php:302 hook.php:306 -msgid "Update type power consumption" +#: src/Impact/Type.php:174 +msgid "Embodied Acidification" msgstr "" -#: hook.php:298 -msgid "Update category" +#: src/Impact/Type.php:175 +msgid "Embodied Freshwater ecotoxicity" msgstr "" -#: hook.php:310 -msgid "Update zone for Boavizta engine" +#: src/Impact/Type.php:178 +msgid "Embodied Eutrophication of freshwater" msgstr "" -#: install/install/create_automatic_actions.php:45 -msgid "Find the Alpha3 country code (ISO3166) of locations" +#: src/Impact/Type.php:179 +msgid "Embodied Eutrophication of marine waters" msgstr "" -#: install/install/create_automatic_actions.php:57 -msgid "Compute carbon emissions of computers" +#: src/Impact/Type.php:180 +msgid "Embodied Terrestrial eutrophication" msgstr "" -#: install/install/create_automatic_actions.php:69 -msgid "Collect carbon intensities from RTE" +#: src/Impact/Type.php:195 +msgid "Usage Global warming potential" msgstr "" -#: install/install/create_automatic_actions.php:81 -msgid "Collect carbon intensities from ElectricityMap" +#: src/Impact/Type.php:196 +msgid "Usage Abiotic depletion potential" msgstr "" -#: install/install/create_automatic_actions.php:93 -msgid "Compute embodied impact of assets" +#: src/Impact/Type.php:197 +msgid "Usage Primary energy consumed" msgstr "" -#: install/install/create_uasge_profiles.php:41 -msgid "Always on" +#: src/Impact/Type.php:198 +msgid "Usage Climate change - Contribution of biogenic emissions" msgstr "" -#: install/install/create_uasge_profiles.php:52 -msgid "Office hours" +#: src/Impact/Type.php:199 +msgid "Usage Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/AbstractType.php:64 src/Dashboard/Grid.php:68 -#: src/Dashboard/Grid.php:133 src/Dashboard/Grid.php:234 -msgid "Carbon" -msgstr "Carbono" +#: src/Impact/Type.php:200 +msgid "Usage Climate change - Contribution of emissions from land use change" +msgstr "" -#: src/CronTask.php:64 -msgid "Find the Alpha3 country code (ISO3166)" +#: src/Impact/Type.php:201 +msgid "Usage Emissions of radionizing substances" msgstr "" -#: src/CronTask.php:65 -msgid "Maximum number of locations to solve" +#: src/Impact/Type.php:202 +msgid "Usage Land use" msgstr "" -#: src/CronTask.php:70 -msgid "Download carbon emissions from RTE" +#: src/Impact/Type.php:203 +msgid "Usage Depletion of the ozone layer" msgstr "" -#: src/CronTask.php:71 src/CronTask.php:77 -msgid "Maximum number of entries to download" +#: src/Impact/Type.php:204 +msgid "Usage Fine particle emissions" msgstr "" -#: src/CronTask.php:76 -msgid "Download carbon emissions from ElectricityMap" +#: src/Impact/Type.php:205 +msgid "Usage Photochemical ozone formation" msgstr "" -#: src/CronTask.php:82 -msgid "Compute usage environnemental impact for all assets" +#: src/Impact/Type.php:206 +msgid "Usage Use of water resources" msgstr "" -#: src/CronTask.php:83 src/CronTask.php:88 -msgid "Maximum number of entries to calculate" +#: src/Impact/Type.php:207 +msgid "Usage Material input per unit of service" msgstr "" -#: src/CronTask.php:87 -msgid "Compute embodied environnemental impact for all assets" +#: src/Impact/Type.php:208 +msgid "Usage Use of mineral and metal resources" msgstr "" -#: src/CronTask.php:211 -msgid "No zone to download" +#: src/Impact/Type.php:209 +msgid "Usage Use of fossil resources (including nuclear)" msgstr "" -#: src/NetworkEquipmentType.php:50 src/MonitorType.php:50 -#: src/SearchOptions.php:142 src/ComputerType.php:70 -msgid "Power consumption" +#: src/Impact/Type.php:210 +msgid "Usage Acidification" msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:83 -#: src/Impact/Usage/AbstractUsageImpact.php:83 -msgid "grams of carbon dioxyde equivalent" +#: src/Impact/Type.php:211 +msgid "Usage Freshwater ecotoxicity" msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:85 -#: src/Impact/Usage/AbstractUsageImpact.php:85 -msgid "grams of antimony equivalent" +#: src/Impact/Type.php:214 src/Impact/Type.php:342 +msgid "Usage Eutrophication of freshwater" msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:87 -#: src/Impact/Usage/AbstractUsageImpact.php:87 -msgid "joules" +#: src/Impact/Type.php:215 src/Impact/Type.php:343 +msgid "Usage Eutrophication of marine waters" msgstr "" -#: src/Impact/History/AbstractAsset.php:364 -msgid "Error while calculating impact" +#: src/Impact/Type.php:216 src/Impact/Type.php:344 +msgid "Usage Terrestrial eutrophication" msgstr "" -#: src/Impact/History/AbstractAsset.php:372 -msgid "Nothing to calculate" +#: src/Impact/Type.php:231 +msgid "Total Global warming potential" msgstr "" -#: src/Impact/History/AbstractAsset.php:378 -#, php-format -msgid "%d entries calculated" +#: src/Impact/Type.php:232 +msgid "Total Abiotic depletion potential" msgstr "" -#: src/CarbonIntensitySource.php:45 -msgid "Carbon intensity source" -msgid_plural "Carbon intensity sources" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: src/Impact/Type.php:233 +msgid "Total Primary energy consumed" +msgstr "" -#: src/Report.php:50 -msgid "Carbon report" -msgid_plural "Carbon reports" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: src/Impact/Type.php:234 +msgid "Total Climate change - Contribution of biogenic emissions" +msgstr "" -#: src/Report.php:102 -#, php-format -msgid "" -"Demo mode enabled. The data below are not representative of the assets in " -"the database. %sDisable demo mode%s" +#: src/Impact/Type.php:235 +msgid "Total Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/CarbonEmission.php:48 -msgid "Carbon Emission" -msgid_plural "Carbon Emissions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: src/Impact/Type.php:236 +msgid "Total Climate change - Contribution of emissions from land use change" +msgstr "" -#: src/CarbonEmission.php:119 -msgid "Energy" +#: src/Impact/Type.php:237 +msgid "Total Emissions of radionizing substances" msgstr "" -#: src/CarbonEmission.php:127 -msgid "Emission" +#: src/Impact/Type.php:238 +msgid "Total Land use" msgstr "" -#: src/CarbonEmission.php:135 -msgid "Energy quality" +#: src/Impact/Type.php:239 +msgid "Total Depletion of the ozone layer" msgstr "" -#: src/CarbonEmission.php:143 -msgid "Emission quality" +#: src/Impact/Type.php:240 +msgid "Total Fine particle emissions" msgstr "" -#: src/CarbonEmission.php:150 src/UsageImpact.php:149 -#: src/EmbodiedImpact.php:120 -msgid "Date of evaluation" +#: src/Impact/Type.php:241 +msgid "Total Photochemical ozone formation" msgstr "" -#: src/CarbonEmission.php:157 src/UsageImpact.php:156 -#: src/EmbodiedImpact.php:127 -msgid "Engine" +#: src/Impact/Type.php:242 +msgid "Total Use of water resources" msgstr "" -#: src/CarbonEmission.php:164 src/UsageImpact.php:163 -#: src/EmbodiedImpact.php:134 -msgid "Engine version" +#: src/Impact/Type.php:243 +msgid "Total Material input per unit of service" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:67 -#: src/Command/CollectCarbonIntensityCommand.php:68 -msgid "Creating data source name" +#: src/Impact/Type.php:244 +msgid "Total Use of mineral and metal resources" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:78 -msgid "Creating data zone name" +#: src/Impact/Type.php:245 +msgid "Total Use of fossil resources (including nuclear)" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:89 -msgid "Creating fake data..." +#: src/Impact/Type.php:246 +msgid "Total Acidification" msgstr "" -#: src/Command/ExportDashboardCommand.php:69 -msgid "Updating the report dashboard description" +#: src/Impact/Type.php:247 +msgid "Total Freshwater ecotoxicity" msgstr "" -#: src/Command/ExportDashboardCommand.php:74 -msgid "Dashboard not found" +#: src/Impact/Type.php:250 +msgid "Total Eutrophication of freshwater" msgstr "" -#: src/Command/ExportDashboardCommand.php:100 -#, php-format -msgid "Dashboard description saved to %s" +#: src/Impact/Type.php:251 +msgid "Total Eutrophication of marine waters" msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:85 -msgid "Zone not found" +#: src/Impact/Type.php:252 +msgid "Total Terrestrial eutrophication" msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:91 -msgid "Reading eco2mix data..." +#: src/Impact/Type.php:323 +msgid "Carbon emission in CO₂ equivalent" msgstr "" -#: src/Command/CreateTestInventoryCommand.php:146 -msgid "Creating test inventory" +#: src/Impact/Type.php:324 +msgid "Consumption of non renewable resources in Antimony equivalent." msgstr "" -#: src/Config.php:130 -msgid "Invalid Boavizta API URL" +#: src/Impact/Type.php:325 +msgid "Primary energy consumed." msgstr "" -#: src/Config.php:138 -msgid "Connection to Boavizta API established" +#: src/Impact/Type.php:332 +msgid "Incidence of disease" msgstr "" -#: src/Zone.php:53 -msgid "Carbon intensity zone" -msgid_plural "Carbon intensity zones" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: src/Source.php:46 +msgid "Carbon intensity source" +msgid_plural "Carbon intensity sources" +msgstr[0] "Fuente de intensidad de carbono" +msgstr[1] "Fuentes de intensidad de carbono" +msgstr[2] "Fuentes de intensidad de carbono" -#: src/Zone.php:126 src/Zone.php:141 -msgid "Data source for historical calculation" -msgstr "" +#: src/SearchOptions.php:184 src/SearchOptions.php:316 +#: src/SearchOptions.php:329 src/SearchOptions.php:342 +msgid "Ignore environmental impact" +msgstr "Ignorar impacto ambiental" -#: src/Zone.php:157 src/CarbonIntensitySource_Zone.php:86 -#: src/CarbonIntensitySource_Zone.php:169 -#: src/CarbonIntensitySource_Zone.php:264 -msgid "Download enabled" -msgstr "" +#: src/SearchOptions.php:241 src/SearchOptions.php:365 +#: src/SearchOptions.php:442 +msgid "Is historizable" +msgstr "Es historizable" -#: src/UsageInfo.php:59 -msgid "Usage informations" -msgstr "" +#: src/ComputerType.php:56 +msgid "Unspecified" +msgstr "Sin especificar" -#: src/UsageInfo.php:214 src/Dashboard/Widget.php:848 -#, php-format -msgid "" -"Evaluates the carbon emission in CO₂ equivalent. %s More information %s" -msgstr "" +#: src/ComputerType.php:58 +msgid "Server" +msgstr "Servidor" -#: src/UsageInfo.php:222 src/Dashboard/Widget.php:884 -#: src/Dashboard/Widget.php:921 -#, php-format -msgid "" -"Evaluates the consumption of non renewable resources in Antimony equivalent." -" %s More information %s" +#: src/ComputerType.php:59 +msgid "Laptop" +msgstr "Laptop" + +#: src/ComputerType.php:60 +msgid "Tablet" +msgstr "Tablet" + +#: src/ComputerType.php:61 +msgid "Smartphone" +msgstr "Smartphone" + +#: src/UsageImpact.php:39 +msgid "Usage impact" +msgid_plural "Usage impacts" +msgstr[0] "Impacto por uso" +msgstr[1] "Impactos por uso" +msgstr[2] "Impactos por uso" + +#: src/AbstractModel.php:62 src/Dashboard/Grid.php:58 +#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 +#: src/AbstractType.php:63 +msgid "Carbon" +msgstr "Carbono" + +#: src/AbstractModel.php:197 +msgid "Quality" msgstr "" -#: src/UsageInfo.php:234 src/Dashboard/Widget.php:1102 +#: src/Report.php:49 +msgid "Carbon report" +msgid_plural "Carbon reports" +msgstr[0] "Informe de carbono" +msgstr[1] "Informes de carbono" +msgstr[2] "Informes de carbono" + +#: src/Report.php:101 #, php-format -msgid "Evaluates the primary energy consumed. %s More information %s" +msgid "" +"Demo mode enabled. The data below are not representative of the assets in " +"the database. %sDisable demo mode%s" msgstr "" +"Modo demo activado. Los datos debajos no son representativos de los activos " +"en la base de datos. %sDesactivar el modo demo%s" -#: src/ComputerUsageProfile.php:52 +#: src/ComputerUsageProfile.php:51 msgid "Computer usage profile" msgid_plural "Computer usage profiles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Perfil de uso de computadora" +msgstr[1] "Perfiles de uso de computadora" +msgstr[2] "Perfiles de uso de computadora" -#: src/ComputerUsageProfile.php:94 +#: src/ComputerUsageProfile.php:117 msgid "Start time is invalid" -msgstr "" +msgstr "La hora de inicio es inválida" -#: src/ComputerUsageProfile.php:99 +#: src/ComputerUsageProfile.php:122 msgid "Stop time is invalid" +msgstr "La hora de finalización es inválida" + +#: src/Source_Zone.php:72 +msgid "Source name" +msgstr "Nombre de la fuente" + +#: src/Source_Zone.php:80 +msgid "Zone name" +msgstr "Nombre de la zona" + +#: src/Source_Zone.php:88 src/Source_Zone.php:171 src/Source_Zone.php:268 +#: src/Zone.php:127 +msgid "Download enabled" +msgstr "Descarga activada" + +#: src/Source_Zone.php:96 +msgid "Code" +msgstr "Código" + +#: src/Source_Zone.php:150 +msgid "Not downloadable" +msgstr "No descargable" + +#: src/Source_Zone.php:150 +msgid "This is a fallback source, there is no real-time data available" msgstr "" +"Esta es una fuente de respaldo; no hay datos en tiempo real disponibles" + +#: src/Source_Zone.php:172 +msgid "Source for historical" +msgstr "Fuente para histórico" + +#: src/Source_Zone.php:411 +msgid "Enable / Disable" +msgstr "Activar / Desactivar" + +#: src/CronTask.php:100 +msgid "Find the Alpha3 country code (ISO3166)" +msgstr "Buscar el código de país Alpha3 (ISO3166)" + +#: src/CronTask.php:101 +msgid "Maximum number of locations to solve" +msgstr "Cantidad máxima de ubicaciones a resolver" + +#: src/CronTask.php:106 +msgid "Download carbon emissions from Watttime" +msgstr "Descargar emisiones de carbono desde Watttime" + +#: src/CronTask.php:112 +msgid "Compute usage environmental impact for all assets" +msgstr "Calcular el impacto ambiental de uso para todos los activos" + +#: src/CronTask.php:113 src/CronTask.php:118 +msgid "Maximum number of entries to calculate" +msgstr "Cantidad máxima de entradas a calcular" + +#: src/CronTask.php:117 +msgid "Compute embodied environmental impact for all assets" +msgstr "Calcular el impacto ambiental incorporado para todos los activos" + +#: src/CronTask.php:278 +msgid "No zone to download" +msgstr "No hay zonas para descargar" -#: src/Dashboard/Widget.php:57 src/Dashboard/Grid.php:317 +#: src/Dashboard/Widget.php:55 src/Dashboard/Grid.php:310 msgid "Environmental impact information video" -msgstr "" +msgstr "Video informativo sobre el impacto ambiental" -#: src/Dashboard/Widget.php:64 +#: src/Dashboard/Widget.php:62 msgid "Methodology information" -msgstr "" +msgstr "Información sobre la metodología" -#: src/Dashboard/Widget.php:73 +#: src/Dashboard/Widget.php:71 msgid "Total Carbon Emission" -msgstr "" +msgstr "Emisiones Totales de Carbono" -#: src/Dashboard/Widget.php:80 +#: src/Dashboard/Widget.php:78 msgid "Monthly Carbon Emission" -msgstr "" +msgstr "Emisiones de Carbono Mensuales" -#: src/Dashboard/Widget.php:87 src/Dashboard/Widget.php:599 -#: src/Dashboard/Grid.php:281 +#: src/Dashboard/Widget.php:85 src/Dashboard/Widget.php:604 +#: src/Dashboard/Grid.php:268 msgid "Biggest monthly averaged carbon emission per model" -msgstr "" +msgstr "Máximo promedio mensual de emisiones de carbono por modelo" -#: src/Dashboard/Widget.php:95 +#: src/Dashboard/Widget.php:93 msgid "Carbon Emission Per month" -msgstr "" +msgstr "Emisiones de Carbono Por mes" + +#: src/Dashboard/Widget.php:100 src/Dashboard/Provider.php:733 +msgid "Usage abiotic depletion potential" +msgstr "Potencial de agotamiento abiótico por uso" -#: src/Dashboard/Widget.php:125 -msgid "Embodied consumed primary energy" +#: src/Dashboard/Widget.php:130 +msgid "Impact criteria" msgstr "" -#: src/Dashboard/Widget.php:137 +#: src/Dashboard/Widget.php:142 msgid "Unhandled Computers" -msgstr "" +msgstr "Computadoras no gestionadas" -#: src/Dashboard/Widget.php:148 +#: src/Dashboard/Widget.php:153 msgid "Unhandled Monitors" -msgstr "" +msgstr "Monitores No gestionados" -#: src/Dashboard/Widget.php:159 +#: src/Dashboard/Widget.php:164 msgid "Unhandled Network equipments" -msgstr "" +msgstr "Equipos de red No gestionados" -#: src/Dashboard/Widget.php:170 +#: src/Dashboard/Widget.php:175 msgid "Radar chart" -msgstr "" +msgstr "Gráfico de radar" -#: src/Dashboard/Widget.php:496 src/Dashboard/Provider.php:918 +#: src/Dashboard/Widget.php:501 src/Dashboard/Provider.php:1107 msgid "Consumed energy and carbon emission per month" -msgstr "" +msgstr "Consumo de energía y emisiones de carbono por mes" -#: src/Dashboard/Widget.php:541 src/Dashboard/Widget.php:556 -#: src/Dashboard/DemoProvider.php:125 src/Dashboard/DemoProvider.php:226 -#: src/Dashboard/Provider.php:1023 +#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:561 +#: src/Dashboard/Provider.php:1212 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 msgid "Carbon emission" -msgstr "" +msgstr "Emisión de carbono" -#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:559 -#: src/Dashboard/DemoProvider.php:143 src/Dashboard/DemoProvider.php:239 -#: src/Dashboard/Provider.php:1039 +#: src/Dashboard/Widget.php:551 src/Dashboard/Widget.php:564 +#: src/Dashboard/Provider.php:1228 src/Dashboard/DemoProvider.php:106 +#: src/Dashboard/DemoProvider.php:202 msgid "Consumed energy" -msgstr "" +msgstr "Energía consumida" -#: src/Dashboard/Widget.php:741 +#: src/Dashboard/Widget.php:746 #, php-format msgid "" "Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " "months. %s More information %s" msgstr "" +"Evalúa la emisión de carbono por uso en CO₂ equivalente durante los últimos " +"2 meses. %s Más información %s" -#: src/Dashboard/Widget.php:807 +#: src/Dashboard/Widget.php:812 #, php-format msgid "" "Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " "elapsed months. %s More information %s" msgstr "" +"Evalúa la emisión de carbono por uso en CO₂ equivalente durante los últimos " +"12 meses transcurridos. %s Más información %s" -#: src/Dashboard/Widget.php:1092 -msgid "Total embodied primary energy" +#: src/Dashboard/Widget.php:854 +msgid "More information" msgstr "" -#: src/Dashboard/Widget.php:1161 -msgid "Handled percentage" +#: src/Dashboard/Widget.php:893 +#, php-format +msgid "" +"Evaluates the consumption of non renewable resources in Antimony equivalent." +" %s More information %s" msgstr "" +"Evalúa el consumo de recursos no renovables en Antimonio equivalente. %s Más" +" información %s" -#: src/Dashboard/DemoProvider.php:49 src/Dashboard/DemoProvider.php:125 -#: src/Dashboard/DemoProvider.php:226 src/Dashboard/DemoProvider.php:415 -#: src/Dashboard/Provider.php:169 src/Dashboard/Provider.php:560 -#: src/Dashboard/Provider.php:730 src/Dashboard/Provider.php:1023 -#: src/Dashboard/Provider.php:1025 +#: src/Dashboard/Widget.php:1097 +msgid "Handled percentage" +msgstr "Porcentaje gestionado" + +#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 +#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 +#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 msgid "CO₂eq" -msgstr "" +msgstr "CO₂eq" -#: src/Dashboard/DemoProvider.php:83 src/Dashboard/DemoProvider.php:101 -#: src/Dashboard/Provider.php:792 src/Dashboard/Provider.php:826 -msgid "Sbeq" -msgstr "" +#: src/Dashboard/Provider.php:195 src/Dashboard/Provider.php:318 +#: src/Dashboard/Provider.php:1199 src/Toolbox.php:243 +msgid "g" +msgstr "g" -#: src/Dashboard/DemoProvider.php:113 -msgid "Usage carbon emission per month" -msgstr "" +#: src/Dashboard/Provider.php:196 src/Dashboard/Provider.php:319 +#: src/Dashboard/Provider.php:1200 src/Toolbox.php:244 +msgid "Kg" +msgstr "Kg" -#: src/Dashboard/DemoProvider.php:279 src/Dashboard/Provider.php:430 -#, php-format -msgid "plugin carbon - handled %s" -msgstr "" +#: src/Dashboard/Provider.php:197 src/Dashboard/Provider.php:320 +#: src/Dashboard/Provider.php:1201 src/Toolbox.php:245 +msgid "t" +msgstr "t" -#: src/Dashboard/DemoProvider.php:280 src/Dashboard/Provider.php:431 -#, php-format -msgid "plugin carbon - unhandled %s" -msgstr "" +#: src/Dashboard/Provider.php:198 src/Dashboard/Provider.php:321 +#: src/Dashboard/Provider.php:1202 src/Toolbox.php:246 +msgid "Kt" +msgstr "Kt" -#: src/Dashboard/DemoProvider.php:311 -msgid "plugin carbon - handled assets ratio" -msgstr "" +#: src/Dashboard/Provider.php:199 src/Dashboard/Provider.php:322 +#: src/Dashboard/Provider.php:1203 src/Toolbox.php:247 +msgid "Mt" +msgstr "Mt" -#: src/Dashboard/DemoProvider.php:334 src/Dashboard/Provider.php:398 -msgid "Handled" -msgstr "" +#: src/Dashboard/Provider.php:200 src/Dashboard/Provider.php:323 +#: src/Dashboard/Provider.php:1204 src/Toolbox.php:248 +msgid "Gt" +msgstr "Gt" -#: src/Dashboard/DemoProvider.php:339 src/Dashboard/Provider.php:403 -msgid "Unhandled" -msgstr "" +#: src/Dashboard/Provider.php:201 src/Dashboard/Provider.php:324 +#: src/Dashboard/Provider.php:1205 src/Toolbox.php:249 +msgid "Tt" +msgstr "Tt" -#: src/Dashboard/DemoProvider.php:362 src/Dashboard/DemoProvider.php:411 -#: src/Dashboard/Provider.php:548 -msgid "plugin carbon - Usage carbon emission" -msgstr "" +#: src/Dashboard/Provider.php:202 src/Dashboard/Provider.php:325 +#: src/Dashboard/Provider.php:1206 src/Toolbox.php:250 +msgid "Pt" +msgstr "Pt" -#: src/Dashboard/Dashboard.php:69 -msgid "Carbon dioxyde intensity" -msgstr "" +#: src/Dashboard/Provider.php:203 src/Dashboard/Provider.php:326 +#: src/Dashboard/Provider.php:1207 src/Toolbox.php:251 +msgid "Et" +msgstr "Et" -#: src/Dashboard/Grid.php:73 src/Dashboard/Provider.php:375 +#: src/Dashboard/Provider.php:204 src/Dashboard/Provider.php:327 +#: src/Dashboard/Provider.php:1208 src/Toolbox.php:252 +msgid "Zt" +msgstr "Zt" + +#: src/Dashboard/Provider.php:205 src/Dashboard/Provider.php:328 +#: src/Dashboard/Provider.php:1209 src/Toolbox.php:253 +msgid "Yt" +msgstr "Yt" + +#: src/Dashboard/Provider.php:427 +msgid "handled assets ratio" +msgstr "proporción de activos gestionados" + +#: src/Dashboard/Provider.php:473 src/Dashboard/Grid.php:63 msgid "Handled assets ratio" -msgstr "" +msgstr "Proporción de activos gestionados" -#: src/Dashboard/Grid.php:82 -msgid "Handled assets count" -msgstr "" +#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 +msgid "Handled" +msgstr "Gestionado" + +#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 +msgid "Unhandled" +msgstr "No gestionado" -#: src/Dashboard/Grid.php:145 +#: src/Dashboard/Provider.php:507 +msgid "Ignored" +msgstr "Ignorados" + +#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 #, php-format -msgid "Handled %s" -msgstr "" +msgid "plugin carbon - handled %s" +msgstr "complemento carbono - gestionado %s" -#: src/Dashboard/Grid.php:156 +#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 #, php-format -msgid "Unhandled %s" -msgstr "" +msgid "plugin carbon - unhandled %s" +msgstr "complemento carbono - no gestionado %s" -#: src/Dashboard/Grid.php:172 -msgid "Usage power consumption" -msgstr "" +#: src/Dashboard/Provider.php:584 +#, php-format +msgid "plugin carbon - ignored %s" +msgstr "complemento carbono - ignorados %s" -#: src/Dashboard/Grid.php:178 -msgid "Usage carbon emission" -msgstr "" +#: src/Dashboard/Provider.php:632 +msgid "plugin carbon - Total usage power consumption" +msgstr "complemento carbono - Consumo de potencia total por uso" -#: src/Dashboard/Grid.php:192 src/Dashboard/Grid.php:295 -#: src/Dashboard/Provider.php:893 -msgid "Embodied global warming potential" -msgstr "" +#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 +msgid "plugin carbon - Usage carbon emission" +msgstr "complemento carbono - Emisión de carbono por uso" -#: src/Dashboard/Grid.php:198 src/Dashboard/Grid.php:307 -msgid "Embodied primary energy consumed" -msgstr "" +#: src/Dashboard/Provider.php:747 +msgid "Sbeq" +msgstr "Sb eq." -#: src/Dashboard/Grid.php:212 src/UsageImpact.php:105 -msgid "Global warming potential" -msgstr "" +#: src/Dashboard/Provider.php:1035 +msgid "Total abiotic depletion potential" +msgstr "Potencial de agotamiento abiótico total" -#: src/Dashboard/Grid.php:218 src/UsageImpact.php:119 -msgid "Abiotic depletion potential" -msgstr "" +#: src/Dashboard/Provider.php:1051 +msgid "Embodied abiotic depletion potential" +msgstr "Potencial de agotamiento abiótico incorporado" -#: src/Dashboard/Grid.php:245 -#, php-format -msgid "Unhandled %s ratio" -msgstr "" +#: src/Dashboard/Provider.php:1054 +msgid "Total usage abiotic depletion potential" +msgstr "Potencial de agotamiento abiótico por uso total" -#: src/Dashboard/Grid.php:257 -msgid "Usage carbon emission year to date" -msgstr "" +#: src/Dashboard/Provider.php:1066 +msgid "Total global warming potential" +msgstr "Potencial de calentamiento global total" -#: src/Dashboard/Grid.php:263 -msgid "Monthly carbon emission" -msgstr "" +#: src/Dashboard/Provider.php:1082 +msgid "Embodied global warming potential" +msgstr "Potencial de calentamiento global incorporado" -#: src/Dashboard/Grid.php:272 -msgid "Usage global warming potential chart" -msgstr "" +#: src/Dashboard/Provider.php:1085 +msgid "Total usage global warming potential" +msgstr "Potencial de calentamiento global por uso total" -#: src/Dashboard/Grid.php:322 -msgid "Environmental impact methodology_information" -msgstr "" +#: src/Dashboard/Provider.php:1218 src/Toolbox.php:316 +msgid "KWh" +msgstr "KWh" -#: src/Dashboard/Provider.php:171 src/Dashboard/Provider.php:1010 -#: src/Toolbox.php:201 -msgid "g" -msgstr "" +#: src/Dashboard/Provider.php:1219 src/Toolbox.php:317 +msgid "MWh" +msgstr "MWh" -#: src/Dashboard/Provider.php:172 src/Dashboard/Provider.php:1011 -#: src/Toolbox.php:202 -msgid "Kg" -msgstr "" +#: src/Dashboard/Provider.php:1220 src/Toolbox.php:318 +msgid "GWh" +msgstr "GWh" -#: src/Dashboard/Provider.php:173 src/Dashboard/Provider.php:1012 -#: src/Toolbox.php:203 -msgid "t" -msgstr "" +#: src/Dashboard/Provider.php:1221 src/Toolbox.php:319 +msgid "TWh" +msgstr "TWh" -#: src/Dashboard/Provider.php:174 src/Dashboard/Provider.php:1013 -#: src/Toolbox.php:204 -msgid "Kt" -msgstr "" +#: src/Dashboard/Provider.php:1222 src/Toolbox.php:320 +msgid "PWh" +msgstr "PWh" -#: src/Dashboard/Provider.php:175 src/Dashboard/Provider.php:1014 -#: src/Toolbox.php:205 -msgid "Mt" -msgstr "" +#: src/Dashboard/Provider.php:1223 src/Toolbox.php:321 +msgid "EWh" +msgstr "EWh" -#: src/Dashboard/Provider.php:176 src/Dashboard/Provider.php:1015 -#: src/Toolbox.php:206 -msgid "Gt" -msgstr "" +#: src/Dashboard/Provider.php:1224 src/Toolbox.php:322 +msgid "ZWh" +msgstr "ZWh" -#: src/Dashboard/Provider.php:177 src/Dashboard/Provider.php:1016 -#: src/Toolbox.php:207 -msgid "Tt" -msgstr "" +#: src/Dashboard/Provider.php:1225 src/Toolbox.php:323 +msgid "YWh" +msgstr "YWh" -#: src/Dashboard/Provider.php:178 src/Dashboard/Provider.php:1017 -#: src/Toolbox.php:208 -msgid "Pt" -msgstr "" +#: src/Dashboard/Grid.php:72 +msgid "Handled assets count" +msgstr "Cantidad de activos gestionados" -#: src/Dashboard/Provider.php:179 src/Dashboard/Provider.php:1018 -#: src/Toolbox.php:209 -msgid "Et" -msgstr "" +#: src/Dashboard/Grid.php:135 +#, php-format +msgid "Handled %s" +msgstr "Gestionados %s" -#: src/Dashboard/Provider.php:180 src/Dashboard/Provider.php:1019 -#: src/Toolbox.php:210 -msgid "Zt" -msgstr "" +#: src/Dashboard/Grid.php:146 +#, php-format +msgid "Unhandled %s" +msgstr "No gestionados %s" -#: src/Dashboard/Provider.php:181 src/Dashboard/Provider.php:1020 -#: src/Toolbox.php:211 -msgid "Yt" -msgstr "" +#: src/Dashboard/Grid.php:232 +#, php-format +msgid "Unhandled %s ratio" +msgstr "Proporción de %s no gestionados" -#: src/Dashboard/Provider.php:330 -msgid "handled assets ratio" -msgstr "" +#: src/Dashboard/Grid.php:244 +msgid "Usage carbon emission year to date" +msgstr "Emisión de carbono por uso acumulada anual" -#: src/Dashboard/Provider.php:479 -msgid "plugin carbon - Total usage power consumption" -msgstr "" +#: src/Dashboard/Grid.php:250 +msgid "Monthly carbon emission" +msgstr "Emisiones de carbono mensuales" -#: src/Dashboard/Provider.php:718 -msgid "Total embodied global warming potential" -msgstr "" +#: src/Dashboard/Grid.php:259 +msgid "Usage global warming potential chart" +msgstr "Gráfico de potencial de calentamiento global por uso" -#: src/Dashboard/Provider.php:846 -msgid "Total abiotic depletion potential" -msgstr "" +#: src/Dashboard/Grid.php:315 +msgid "Environmental impact methodology information" +msgstr "Información sobre la metodología de impacto ambiental" -#: src/Dashboard/Provider.php:865 -msgid "Total usage abiotic depletion potential" -msgstr "" +#: src/Dashboard/DemoProvider.php:76 +msgid "Usage carbon emission per month" +msgstr "Emisiones de carbono por uso por mes" -#: src/Dashboard/Provider.php:877 -msgid "Total global warming potential" -msgstr "" +#: src/Dashboard/DemoProvider.php:274 +msgid "plugin carbon - handled assets ratio" +msgstr "complemento carbono - proporción de activos gestionados" -#: src/Dashboard/Provider.php:896 -msgid "Total usage global warming potential" -msgstr "" +#: src/Dashboard/Dashboard.php:68 +msgid "Carbon dioxyde intensity" +msgstr "Intensidad de dióxido de carbono" -#: src/Dashboard/Provider.php:1029 src/Toolbox.php:287 -msgid "KWh" +#: src/Location.php:189 +msgid "Carbon intensity source and zone" msgstr "" -#: src/Dashboard/Provider.php:1030 src/Toolbox.php:288 -msgid "MWh" -msgstr "" +#: src/CarbonIntensity.php:87 +msgid "Emission date" +msgstr "Fecha de emisión" -#: src/Dashboard/Provider.php:1031 src/Toolbox.php:289 -msgid "GWh" -msgstr "" +#: src/CarbonIntensity.php:114 +msgid "Intensity" +msgstr "Intensidad" -#: src/Dashboard/Provider.php:1032 src/Toolbox.php:290 -msgid "TWh" -msgstr "" +#: src/CarbonEmission.php:49 +msgid "Carbon Emission" +msgid_plural "Carbon Emissions" +msgstr[0] "Emisión de Carbono" +msgstr[1] "Emisiones de Carbono" +msgstr[2] "Emisiones de Carbono" -#: src/Dashboard/Provider.php:1033 src/Toolbox.php:291 -msgid "PWh" -msgstr "" +#: src/CarbonEmission.php:120 +msgid "Energy" +msgstr "Energía" -#: src/Dashboard/Provider.php:1034 src/Toolbox.php:292 -msgid "EWh" -msgstr "" +#: src/CarbonEmission.php:128 +msgid "Emission" +msgstr "Emisión" -#: src/Dashboard/Provider.php:1035 src/Toolbox.php:293 -msgid "ZWh" -msgstr "" +#: src/CarbonEmission.php:136 +msgid "Energy quality" +msgstr "Calidad de la energía" -#: src/Dashboard/Provider.php:1036 src/Toolbox.php:294 -msgid "YWh" -msgstr "" +#: src/CarbonEmission.php:144 +msgid "Emission quality" +msgstr "Calidad de emisión" -#: src/Toolbox.php:251 +#: src/Toolbox.php:280 msgid "W" -msgstr "" +msgstr "W" -#: src/Toolbox.php:252 +#: src/Toolbox.php:281 msgid "KW" -msgstr "" +msgstr "KW" -#: src/Toolbox.php:253 +#: src/Toolbox.php:282 msgid "MW" -msgstr "" +msgstr "MW" -#: src/Toolbox.php:254 +#: src/Toolbox.php:283 msgid "GW" -msgstr "" +msgstr "GW" -#: src/Toolbox.php:255 +#: src/Toolbox.php:284 msgid "TW" -msgstr "" +msgstr "TW" -#: src/Toolbox.php:256 +#: src/Toolbox.php:285 msgid "PW" -msgstr "" +msgstr "PW" -#: src/Toolbox.php:257 +#: src/Toolbox.php:286 msgid "EW" -msgstr "" +msgstr "EW" -#: src/Toolbox.php:258 +#: src/Toolbox.php:287 msgid "ZW" -msgstr "" +msgstr "ZW" -#: src/Toolbox.php:259 +#: src/Toolbox.php:288 msgid "YW" -msgstr "" +msgstr "YW" -#: src/Toolbox.php:286 +#: src/Toolbox.php:315 msgid "Wh" -msgstr "" - -#: src/SearchOptions.php:196 src/SearchOptions.php:273 -#: src/SearchOptions.php:346 -msgid "Is historizable" -msgstr "" +msgstr "Watts-hora" -#: src/UsageImpact.php:50 -msgid "Usage impact" -msgid_plural "Usage impacts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: src/Toolbox.php:373 src/Toolbox.php:378 +#, php-format +msgid "%1$s %2$s" +msgstr "%1$s %2$s" -#: src/UsageImpact.php:112 -msgid "Global warming potential quality" -msgstr "" +#: setup.php:285 +msgid "Environmental Impact" +msgstr "Impacto Ambiental" -#: src/UsageImpact.php:127 -msgid "Abiotic depletion potential quality" +#: hook.php:97 +msgid "" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." msgstr "" +"Por favor, revisá los registros para maś detalles. Abrí un reporte en el " +"repositorio del complemento." -#: src/UsageImpact.php:134 src/UsageImpact.php:142 -msgid "Primary energy quality" -msgstr "" +#: hook.php:301 +msgid "Associate to an usage profile" +msgstr "Asociar a un perfil de uso" -#: src/CarbonIntensity.php:66 -msgid "Carbon intensity" -msgstr "" +#: hook.php:302 hook.php:307 +msgid "Delete all calculated environmental impacts" +msgstr "Eliminar todos los impactos ambientales calculados" -#: src/CarbonIntensity.php:88 -msgid "Emission date" -msgstr "" +#: hook.php:311 hook.php:316 hook.php:320 +msgid "Update type power consumption" +msgstr "Actualizar tipo de consumo de potencia" -#: src/CarbonIntensity.php:115 -msgid "Intensity" -msgstr "" +#: hook.php:312 +msgid "Update category" +msgstr "Actualizar categoría" -#: src/EmbodiedImpact.php:90 -msgid "Global Warming Potential" -msgstr "" +#: hook.php:324 +msgid "Update zone for Boavizta engine" +msgstr "Actualizar zona para el motor Boavizta" -#: src/EmbodiedImpact.php:100 -msgid "Abiotic Depletion Potential" +#: hook.php:325 +msgid "Update carbon intensity source and zone" msgstr "" -#: src/EmbodiedImpact.php:110 -msgid "Primary energy" -msgstr "" +#: install/install/create_automatic_actions.php:52 +msgid "Find the Alpha3 country code (ISO3166) of locations" +msgstr "Buscar el código de país Alpha3 (ISO3166) de las ubicaciones" -#: src/ComputerType.php:56 -msgid "Unspecified" -msgstr "" +#: install/install/create_automatic_actions.php:64 +msgid "Compute carbon emissions of computers" +msgstr "Calcular las emisiones de carbono de las computadoras" -#: src/ComputerType.php:58 -msgid "Server" -msgstr "" +#: install/install/create_automatic_actions.php:76 +msgid "Compute embodied impact of assets" +msgstr "Calcular el impacto incorporado de los activos" -#: src/ComputerType.php:59 -msgid "Laptop" -msgstr "" +#: install/install/create_uasge_profiles.php:41 +msgid "Always on" +msgstr "Siempre encendido" -#: src/ComputerType.php:60 -msgid "Tablet" -msgstr "" +#: install/install/create_uasge_profiles.php:52 +msgid "Office hours" +msgstr "Horario de oficina" -#: src/ComputerType.php:61 -msgid "Smartphone" -msgstr "" +#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 +#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 +msgid "Missing arguments in request." +msgstr "Faltan argumentos en la solicitud." -#: src/CarbonIntensitySource_Zone.php:70 -msgid "Source name" -msgstr "" +#: front/usageimpact.form.php:80 front/usageimpact.form.php:106 +#: front/usageimpact.form.php:114 front/embodiedimpact.form.php:92 +msgid "Bad arguments." +msgstr "Argumentos inválidos." -#: src/CarbonIntensitySource_Zone.php:78 -msgid "Zone name" -msgstr "" +#: front/usageimpact.form.php:90 front/embodiedimpact.form.php:68 +#: front/embodiedimpact.form.php:77 +msgid "Reset denied." +msgstr "Restablecimiento denegado." -#: src/CarbonIntensitySource_Zone.php:94 -msgid "Code" -msgstr "" +#: front/usageimpact.form.php:95 front/embodiedimpact.form.php:82 +msgid "Reset failed." +msgstr "Error al restablecer." -#: src/CarbonIntensitySource_Zone.php:148 -msgid "Not downloadable" -msgstr "" +#: front/usageimpact.form.php:122 +msgid "Missing data prevents historization of this asset." +msgstr "La falta de datos impide generar el historial de este activo." -#: src/CarbonIntensitySource_Zone.php:148 -msgid "This is a fallback source, there is no real-time data available" -msgstr "" +#: front/usageimpact.form.php:125 +msgid "Update of global warming potential failed." +msgstr "Error al actualizar el potencial de calentamiento global." -#: src/CarbonIntensitySource_Zone.php:170 -msgid "Source for historical" -msgstr "" +#: front/usageimpact.form.php:131 front/embodiedimpact.form.php:101 +msgid "Unable to find calculation engine for this asset." +msgstr "No se pudo encontrar el motor de cálculo para este activo." -#: src/CarbonIntensitySource_Zone.php:351 -msgid "Enable / Disable" -msgstr "" +#: front/usageimpact.form.php:136 +msgid "Update of usage impact failed." +msgstr "Error al actualizar el impacto de uso." diff --git a/locales/es_ES.po b/locales/es_ES.po index 7c64b96c..6fd95f56 100644 --- a/locales/es_ES.po +++ b/locales/es_ES.po @@ -3,13 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # +# Translators: +# Pruebas, 2026 +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-21 13:21+0200\n" -"PO-Revision-Date: 2022-11-23 14:34+0000\n" +"POT-Creation-Date: 2026-04-15 02:49+0000\n" +"PO-Revision-Date: 2025-10-29 09:26+0000\n" +"Last-Translator: Pruebas, 2026\n" "Language-Team: Spanish (Spain) (https://app.transifex.com/teclib/teams/28042/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,608 +21,1418 @@ msgstr "" "Language: es_ES\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#. TRANS: %s is the user login -#: front/environnementalimpact.form.php:57 -#, php-format -msgid "%s updates an item" -msgstr "" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 +#: src/ComputerUsageProfile.php:169 +msgid "Start time" +msgstr "Hora de inicio" + +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 +msgid "Stop time" +msgstr "Hora de fin" + +#: templates/computerusageprofile.html.twig +msgid "Days of week where the computer usually runs" +msgstr "Días de la semana en los que el ordenador funciona habitualmente" + +#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 +#: src/Impact/Usage/Engine.php:48 +msgid "Boavizta" +msgstr "Boavizta" -#: front/report.php:49 entrée standard:37 +#: templates/location.html.twig src/SearchOptions.php:138 src/Location.php:182 +msgid "Boavizta zone" +msgstr "Zona de Boavizta" + +#: templates/location.html.twig src/CarbonIntensity.php:65 +msgid "Carbon intensity" +msgstr "Intensidad de carbono" + +#: templates/usageinfo.html.twig +msgid "Asset usage" +msgstr "Uso del activo" + +#: templates/usageinfo.html.twig +msgid "Usage profile" +msgid_plural "Usage profiles" +msgstr[0] "Perfil de uso" +msgstr[1] "Perfiles de uso" +msgstr[2] "Perfiles de uso" + +#: templates/quick-report.html.twig front/report.php:55 msgid "GLPI Carbon" -msgstr "" +msgstr "GLPI Carbon" + +#: templates/components/form/source_zone_selector.html.twig +#: src/AbstractModel.php:186 +msgid "Source" +msgstr "Fuente" -#: src/CarbonIntensityZone.php:50 +#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 msgid "Carbon intensity zone" msgid_plural "Carbon intensity zones" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Zona de intensidad de carbono" +msgstr[1] "Zonas de intensidad de carbono" +msgstr[2] "Zonas de intensidad de carbono" -#: src/CarbonIntensityZone.php:122 src/CarbonIntensityZone.php:137 -msgid "Data source for historical calculation" +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "No zone available" +msgstr "No hay zonas disponibles" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "Please run the automatic action to downlaod data from this source." msgstr "" +"Por favor, ejecute la acción automática para descargar los datos de esta " +"fuente." -#: src/AbstractType.php:50 entrée standard:37 -msgid "Power" -msgid_plural "Powers" +#: templates/environmentalimpact-item.html.twig +msgid "Usage" +msgstr "Uso" + +#: templates/environmentalimpact-item.html.twig +msgid "Reset data" +msgstr "Restablecer datos" + +#: templates/environmentalimpact-item.html.twig +msgid "Calculate data" +msgstr "Calcular datos" + +#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 +msgid "Embodied impact" +msgid_plural "Embodied impacts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/AbstractType.php:58 src/Dashboard/Dashboard.php:50 -#: src/Dashboard/Dashboard.php:56 src/Dashboard/Dashboard.php:62 -#: src/Dashboard/Dashboard.php:68 src/Dashboard/Dashboard.php:74 -#: src/Dashboard/Dashboard.php:80 src/Dashboard/Dashboard.php:86 -#: src/Dashboard/Dashboard.php:92 src/Dashboard/Dashboard.php:98 -#: src/Dashboard/Dashboard.php:103 src/Dashboard/Dashboard.php:108 -#: src/Dashboard/Dashboard.php:113 src/Dashboard/Dashboard.php:118 -msgid "Carbon" +#: templates/history/status-item.html.twig +msgid "Historization status" +msgstr "Estado de historización" + +#: templates/history/status-item.html.twig +msgid "No status" +msgstr "Sin estado" + +#: templates/history/status-item.html.twig +msgid "" +"This data is missing and prevents from environmental impact calculation." msgstr "" +"Faltan estos datos, lo que impide el cálculo del impacto medioambiental." -#: src/CarbonIntensitySource.php:45 -msgid "Carbon intensity source" -msgid_plural "Carbon intensity sources" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: templates/history/status-item.html.twig +msgid "" +"This data is missing and may reduce the quality of environmental impact " +"calculation." +msgstr "" +"Faltan estos datos, lo que podría reducir la calidad del cálculo del impacto" +" medioambiental." -#: src/Command/CreateTestInventoryCommand.php:149 -msgid "Creating test inventory" +#: templates/history/status-item.html.twig +msgid "Is not in the trash bin" +msgstr "No está en la papelera" + +#: templates/history/status-item.html.twig +msgid "Is not a template" +msgstr "No es una plantilla" + +#: templates/history/status-item.html.twig +msgid "Linked to a computer" +msgstr "Vinculado a un ordenador" + +#: templates/history/status-item.html.twig +msgid "Attached computer has a location" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:70 -#: src/Command/CollectCarbonIntensityCommand.php:71 -msgid "Creating data source name" +#: templates/history/status-item.html.twig +msgid "Has a location" +msgstr "Tiene una ubicación" + +#: templates/history/status-item.html.twig +msgid "The location has carbon intensity data" +msgstr "La ubicación tiene datos de intensidad de carbono" + +#: templates/history/status-item.html.twig +msgid "Real time carbon intensity enabled" +msgstr "Intensidad de carbono en tiempo real activada" + +#: templates/history/status-item.html.twig +msgid "The location has yearly carbon intensity data" +msgstr "La ubicación tiene datos anuales de intensidad de carbono" + +#: templates/history/status-item.html.twig +msgid "The asset has a model" +msgstr "El activo tiene un modelo" + +#: templates/history/status-item.html.twig +msgid "The model has a power consumption" +msgstr "El modelo tiene un consumo de energía" + +#: templates/history/status-item.html.twig +msgid "The asset has a type" +msgstr "El activo tiene un tipo" + +#: templates/history/status-item.html.twig +msgid "Type is not ignored" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:81 -msgid "Creating data zone name" +#: templates/history/status-item.html.twig +msgid "The type has a power consumption" +msgstr "El tipo tiene un consumo de energía" + +#: templates/history/status-item.html.twig +msgid "The asset has a category" +msgstr "El activo tiene una categoría" + +#: templates/history/status-item.html.twig +msgid "The asset has a usage profile" +msgstr "El activo tiene un perfil de uso" + +#: templates/history/status-item.html.twig +msgid "The asset has an inventory entry date" +msgstr "El activo tiene una fecha de entrada en inventario" + +#: templates/history/status-item.html.twig +msgid "Legend" +msgstr "Leyenda" + +#: templates/monitortype.html.twig +msgid "" +"This power value is used as default when the power of a monitor model is " +"unknown" msgstr "" +"Este valor de potencia se utiliza por defecto cuando se desconoce la " +"potencia de un modelo de monitor" -#: src/Command/CreateFakeCarbonIntensityCommand.php:92 -msgid "Creating fake data..." +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Power" +msgid_plural "Powers" +msgstr[0] "Potencia" +msgstr[1] "Potencias" +msgstr[2] "Potencias" + +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Do not evaluate" msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:83 -msgid "Reading eco2mix data..." +#: templates/config.html.twig +msgid "Impact engine" +msgstr "Motor de impacto" + +#: templates/config.html.twig +msgid "Usage carbon emissions are always calculated internally" +msgstr "Las emisiones de carbono por uso se calculan siempre internamente" + +#: templates/computertype.html.twig +msgid "" +"This power value is used as default when the power of a computer model is " +"unknown" msgstr "" +"Este valor de potencia se utiliza por defecto cuando se desconoce la " +"potencia de un modelo de ordenador" + +#: templates/computertype.html.twig src/SearchOptions.php:303 +#: src/ComputerType.php:78 +msgid "Category" +msgstr "Categoría" -#: src/Profile.php:46 src/EnvironnementalImpact.php:54 -msgid "Environnemental impact" +#: templates/dashboard/information-block.html.twig +msgid "Information" +msgstr "Información" + +#: templates/dashboard/information-block.html.twig +msgid "" +"Our data is sourced from reliable sources and is meticulously calculated " +"using industry-standard methodologies. We utilize accurate measurement tools" +" and algorithms to ensure the precision and reliability of our environmental" +" metrics." msgstr "" +"Nuestros datos provienen de fuentes fiables y se calculan meticulosamente " +"utilizando metodologías estándar de la industria. Utilizamos herramientas de" +" medición y algoritmos precisos para garantizar la exactitud y fiabilidad de" +" nuestras métricas medioambientales." -#: src/Profile.php:87 entrée standard:48 -msgctxt "button" -msgid "Save" +#: templates/dashboard/information-block.html.twig +msgid "" +"As we move towards a greener future, businesses will soon be required to " +"report energy usage and carbon emissions. By 2025, many areas will enforce " +"these regulations. Adopting these practices now ensures compliance and helps" +" combat climate change." msgstr "" +"A medida que avanzamos hacia un futuro más ecológico, pronto se exigirá a " +"las empresas que informen sobre el consumo de energía y las emisiones de " +"carbono. Para 2025, muchas zonas aplicarán estas normativas. Adoptar estas " +"prácticas ahora garantiza el cumplimiento y ayuda a combatir el cambio " +"climático." -#: src/CronTask.php:50 -msgid "Download carbon emissions from RTE" +#: templates/dashboard/information-block.html.twig +msgid "Did you know ?" +msgstr "¿Sabía que...?" + +#: templates/dashboard/information-block.html.twig +msgid "" +"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " +"about 20 meters." msgstr "" +"1 gramo de CO₂ equivale al CO₂ emitido al conducir un coche durante unos 20 " +"metros." -#: src/CronTask.php:51 src/CronTask.php:57 -msgid "Maximum number of entries to download" +#: templates/dashboard/unhandled-monitors-card.html.twig +#: templates/dashboard/unhandled-computers-card.html.twig +#: templates/dashboard/unhandled-network-equipments-card.html.twig +msgid "Warning" +msgstr "Advertencia" + +#: templates/dashboard/unhandled-monitors-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s monitors." +msgstr "Representa el %s por ciento de su parque que contiene %s monitores." + +#: templates/dashboard/usage-carbon-emission-last-year.html.twig +msgid "Yearly Usage Carbon Emission" +msgstr "Emisión de carbono anual por uso" + +#: templates/dashboard/monthly-carbon-emission.html.twig +msgid "Monthly usage carbon emission" +msgstr "Emisión de carbono mensual por uso" + +#: templates/dashboard/monthly-carbon-emission.html.twig +#, php-format +msgid "Compared to %s" +msgstr "Comparado con %s" + +#: templates/dashboard/unhandled-computers-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s computers." +msgstr "Representa el %s por ciento de su parque que contiene %s ordenadores." + +#: templates/dashboard/unhandled-network-equipments-card.html.twig +#, php-format +msgid "" +"It represents %s percent of your parc that contains %s network equipments." +msgstr "" +"Representa el %s por ciento de su parque que contiene %s equipos de red." + +#: templates/dashboard/information-video-card.html.twig +msgid "Want to know more ?" +msgstr "¿Quiere saber más?" + +#: templates/dashboard/information-video-card.html.twig +msgid "Here is a video about the impact of numeric on the enviromnent." msgstr "" +"Aquí tiene un vídeo sobre el impacto de la tecnología digital en el medio " +"ambiente." -#: src/CronTask.php:56 -msgid "Download carbon emissions from ElectricityMap" +#: templates/abstractmodel.html.twig +msgid "" +"The impacts below shall include the manufacturing, disposal and recycling " +"processes only." msgstr "" -#: src/CronTask.php:62 -msgid "Compute daily environnemental impact for all assets" +#: templates/abstractmodel.html.twig +msgid "Take care of the expected units before setting an impact." msgstr "" -#: src/CronTask.php:63 -msgid "Maximum number of entries to calculate" +#: templates/abstractmodel.html.twig +msgid "Data quality" msgstr "" -#: src/CarbonIntensity.php:57 -msgid "Carbon intensity" +#: templates/abstractmodel.html.twig +msgid "Data source" msgstr "" -#: src/CarbonIntensity.php:96 -msgid "ID" +#: templates/networkequipmenttype.html.twig +msgid "" +"This power value is used as default when the power of a network equipment " +"model is unknown" msgstr "" +"Este valor de potencia se utiliza por defecto cuando se desconoce la " +"potencia de un modelo de equipo de red" -#: src/CarbonIntensity.php:105 -msgid "Emission date" +#: src/Command/CollectCarbonIntensityCommand.php:70 +msgid "Read carbon dioxyde intensity from external sources" +msgstr "Leer la intensidad de dióxido de carbono de fuentes externas" + +#: src/Command/CollectCarbonIntensityCommand.php:84 +msgid "Source:" +msgstr "Fuente:" + +#: src/Command/CollectCarbonIntensityCommand.php:95 +msgid "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" msgstr "" +"La fuente seleccionada no enumera las zonas que admite. Intentando " +"identificar una zona a partir de una dirección" -#: src/CarbonIntensity.php:132 -msgid "Intensity" +#: src/Command/CollectCarbonIntensityCommand.php:99 +msgid "Geocoding is not enabled. Cannot resolve an address into a zone" msgstr "" +"La geocodificación no está activada. No se puede resolver una dirección en " +"una zona" -#: src/Report.php:48 -msgid "Carbon report" -msgid_plural "Carbon reports" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: src/Command/CollectCarbonIntensityCommand.php:104 +msgid "Address:" +msgstr "Dirección:" -#: src/Toolbox.php:194 src/Dashboard/Provider.php:519 -msgid "g" +#: src/Command/CollectCarbonIntensityCommand.php:107 +msgid "Zone:" +msgstr "Zona:" + +#: src/Command/CollectCarbonIntensityCommand.php:123 +#: src/Command/CreateFakeCarbonIntensityCommand.php:67 +msgid "Creating data source name" +msgstr "Creando nombre de la fuente de datos" + +#: src/Command/CollectCarbonIntensityCommand.php:130 +msgid "This source does not exist" msgstr "" -#: src/Toolbox.php:195 src/Dashboard/Provider.php:520 -msgid "Kg" +#: src/Command/CollectCarbonIntensityCommand.php:149 +msgid "The zone is not handled by the data source" msgstr "" -#: src/Toolbox.php:196 src/Dashboard/Provider.php:521 -msgid "t" +#: src/Command/CollectCarbonIntensityCommand.php:155 +msgid "Reading data..." +msgstr "Leyendo datos..." + +#: src/Command/CreateFakeCarbonIntensityCommand.php:78 +msgid "Creating data zone name" +msgstr "Creando nombre de la zona de datos" + +#: src/Command/CreateFakeCarbonIntensityCommand.php:89 +msgid "Creating fake data..." +msgstr "Creando datos de prueba..." + +#: src/Command/ExportDashboardCommand.php:68 +msgid "Updating the report dashboard description" +msgstr "Actualizando la descripción del cuadro de mando del informe" + +#: src/Command/ExportDashboardCommand.php:73 +msgid "Dashboard not found" +msgstr "Cuadro de mando no encontrado" + +#: src/Command/ExportDashboardCommand.php:99 +#, php-format +msgid "Dashboard description saved to %s" +msgstr "Descripción del cuadro de mando guardada en %s" + +#: src/Command/CreateTestInventoryCommand.php:145 +msgid "Creating test inventory" +msgstr "Creando inventario de prueba" + +#: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 +#: src/ComputerType.php:70 src/MonitorType.php:50 +msgid "Power consumption" +msgstr "Consumo de energía" + +#: src/UsageInfo.php:62 +msgid "Usage informations" +msgstr "Información de uso" + +#: src/UsageInfo.php:94 src/AbstractModel.php:54 src/Location.php:73 +#: src/AbstractType.php:55 src/Profile.php:45 +msgid "Environmental impact" +msgstr "Impacto medioambiental" + +#: src/UsageInfo.php:241 +#, php-format +msgid "%s More information %s" msgstr "" -#: src/Toolbox.php:197 src/Dashboard/Provider.php:522 -msgid "Kt" +#: src/DataSource/Lca/Boaviztapi/Config.php:100 +msgid "Invalid Boavizta API URL" +msgstr "URL de la API de Boavizta no válida" + +#: src/DataSource/Lca/Boaviztapi/Config.php:108 +msgid "Connection to Boavizta API established" +msgstr "Conexión con la API de Boavizta establecida" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:56 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:53 +msgid "Resource diagnosis" msgstr "" -#: src/Toolbox.php:198 src/Dashboard/Provider.php:523 -msgid "Mt" +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:71 +msgid "Collect carbon intensities from RTE" +msgstr "Recopilar intensidades de carbono de RTE" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:89 +msgid "Download carbon emissions from RTE" +msgstr "Descargar emisiones de carbono de RTE" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:90 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:87 +#: src/CronTask.php:107 +msgid "Maximum number of entries to download" +msgstr "Número máximo de entradas a descargar" + +#: src/DataSource/CarbonIntensity/AbstractCronTask.php:103 +#: src/Source_Zone.php:537 +msgid "End" msgstr "" -#: src/Toolbox.php:199 src/Dashboard/Provider.php:524 -msgid "Gt" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:68 +msgid "Collect carbon intensities from Electricity Maps" msgstr "" -#: src/Toolbox.php:200 src/Dashboard/Provider.php:525 -msgid "Tt" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:86 +msgid "Download carbon emissions from Electricity Maps" msgstr "" -#: src/Toolbox.php:201 src/Dashboard/Provider.php:526 -msgid "Pt" +#: src/AbstractImpact.php:125 src/CarbonEmission.php:151 +msgid "Date of evaluation" +msgstr "Fecha de evaluación" + +#: src/AbstractImpact.php:132 src/CarbonEmission.php:158 +msgid "Engine" +msgstr "Motor" + +#: src/AbstractImpact.php:139 src/CarbonEmission.php:165 +msgid "Engine version" +msgstr "Versión del motor" + +#: src/DataTracking/AbstractTracked.php:77 +msgid "Impact not evaluated" msgstr "" -#: src/Toolbox.php:202 src/Dashboard/Provider.php:527 -msgid "Et" +#: src/DataTracking/AbstractTracked.php:78 +msgid "Unspecified quality" msgstr "" -#: src/Toolbox.php:203 src/Dashboard/Provider.php:528 -msgid "Zt" +#: src/DataTracking/AbstractTracked.php:79 +msgid "Manual data" msgstr "" -#: src/Toolbox.php:204 src/Dashboard/Provider.php:529 -msgid "Yt" +#: src/DataTracking/AbstractTracked.php:80 +msgid "Estimated data" msgstr "" -#. TRANS: %1$s is a number maybe float or string and %2$s the unit -#: src/Toolbox.php:215 src/Toolbox.php:248 -#, php-format -msgid "%1$s %2$s" +#: src/DataTracking/AbstractTracked.php:81 +msgid "Downsampled data" msgstr "" -#: src/Toolbox.php:229 -msgid "W" +#: src/DataTracking/AbstractTracked.php:82 +msgid "Measured data" msgstr "" -#: src/Toolbox.php:230 -msgid "KW" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 +#: src/Impact/Usage/AbstractUsageImpact.php:91 +msgid "grams of carbon dioxyde equivalent" +msgstr "gramos de dióxido de carbono equivalente" + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 +#: src/Impact/Usage/AbstractUsageImpact.php:93 +msgid "grams of antimony equivalent" +msgstr "gramos de antimonio equivalente" + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 +#: src/Impact/Usage/AbstractUsageImpact.php:95 +msgid "joules" +msgstr "julios" + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 +msgid "Connection to Boavizta failed." msgstr "" -#: src/Toolbox.php:231 -msgid "MW" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 +msgid "Embodied impact evaluation falied." msgstr "" -#: src/Toolbox.php:232 -msgid "GW" +#: src/Impact/History/AbstractAsset.php:370 +msgid "Error while calculating impact" +msgstr "Error al calcular el impacto" + +#: src/Impact/History/AbstractAsset.php:378 +msgid "Nothing to calculate" +msgstr "Nada que calcular" + +#: src/Impact/History/AbstractAsset.php:384 +#, php-format +msgid "%d entries calculated" +msgstr "%d entradas calculadas" + +#: src/Impact/Type.php:159 +msgid "Embodied Global warming potential" msgstr "" -#: src/Toolbox.php:233 -msgid "TW" +#: src/Impact/Type.php:160 +msgid "Embodied Abiotic depletion potential" msgstr "" -#: src/Toolbox.php:234 -msgid "PW" +#: src/Impact/Type.php:161 +msgid "Embodied Primary energy consumed" msgstr "" -#: src/Toolbox.php:235 -msgid "EW" +#: src/Impact/Type.php:162 +msgid "Embodied Climate change - Contribution of biogenic emissions" msgstr "" -#: src/Toolbox.php:236 -msgid "ZW" +#: src/Impact/Type.php:163 +msgid "Embodied Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/Toolbox.php:237 -msgid "YW" +#: src/Impact/Type.php:164 +msgid "" +"Embodied Climate change - Contribution of emissions from land use change" msgstr "" -#: src/Dashboard/Widget.php:45 -msgid "Carbon Emission Per Type" +#: src/Impact/Type.php:165 +msgid "Embodied Emissions of radionizing substances" msgstr "" -#: src/Dashboard/Widget.php:51 -msgid "Carbon Emission Per Month" +#: src/Impact/Type.php:166 +msgid "Embodied Land use" msgstr "" -#: src/Dashboard/Widget.php:57 entrée standard:38 -msgid "Total Carbon Emission" +#: src/Impact/Type.php:167 +msgid "Embodied Depletion of the ozone layer" msgstr "" -#: src/Dashboard/Widget.php:63 -msgid "Monthly Carbon Emission" +#: src/Impact/Type.php:168 +msgid "Embodied Fine particle emissions" msgstr "" -#: src/Dashboard/Widget.php:69 -msgid "Unhandled Computers" +#: src/Impact/Type.php:169 +msgid "Embodied Photochemical ozone formation" msgstr "" -#: src/Dashboard/Filters/Item.php:42 -msgid "Item" +#: src/Impact/Type.php:170 +msgid "Embodied Use of water resources" msgstr "" -#: src/Dashboard/Provider.php:357 src/Dashboard/Provider.php:533 -#: src/Dashboard/Provider.php:534 -msgid "CO₂eq" +#: src/Impact/Type.php:171 +msgid "Embodied Material input per unit of service" msgstr "" -#: src/Dashboard/Provider.php:473 src/Dashboard/Provider.php:488 entrée -#: standard:120 -msgid "Carbon emission" +#: src/Impact/Type.php:172 +msgid "Embodied Use of mineral and metal resources" msgstr "" -#: src/Dashboard/Provider.php:478 src/Dashboard/Provider.php:491 entrée -#: standard:123 -msgid "Consumed energy" +#: src/Impact/Type.php:173 +msgid "Embodied Use of fossil resources (including nuclear)" msgstr "" -#: src/Dashboard/Provider.php:538 -msgid "KWh" +#: src/Impact/Type.php:174 +msgid "Embodied Acidification" msgstr "" -#: src/Dashboard/Provider.php:539 -msgid "MWh" +#: src/Impact/Type.php:175 +msgid "Embodied Freshwater ecotoxicity" msgstr "" -#: src/Dashboard/Provider.php:540 -msgid "GWh" +#: src/Impact/Type.php:178 +msgid "Embodied Eutrophication of freshwater" msgstr "" -#: src/Dashboard/Provider.php:541 -msgid "TWh" +#: src/Impact/Type.php:179 +msgid "Embodied Eutrophication of marine waters" msgstr "" -#: src/Dashboard/Provider.php:542 -msgid "PWh" +#: src/Impact/Type.php:180 +msgid "Embodied Terrestrial eutrophication" msgstr "" -#: src/Dashboard/Provider.php:543 -msgid "EWh" +#: src/Impact/Type.php:195 +msgid "Usage Global warming potential" msgstr "" -#: src/Dashboard/Provider.php:544 -msgid "ZWh" +#: src/Impact/Type.php:196 +msgid "Usage Abiotic depletion potential" msgstr "" -#: src/Dashboard/Provider.php:545 -msgid "YWh" +#: src/Impact/Type.php:197 +msgid "Usage Primary energy consumed" msgstr "" -#: src/Dashboard/Dashboard.php:51 src/Dashboard/Dashboard.php:114 -msgid "Unhandled computers" +#: src/Impact/Type.php:198 +msgid "Usage Climate change - Contribution of biogenic emissions" msgstr "" -#: src/Dashboard/Dashboard.php:57 -msgid "Handled computers" +#: src/Impact/Type.php:199 +msgid "Usage Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/Dashboard/Dashboard.php:63 -msgid "Total power consumption" +#: src/Impact/Type.php:200 +msgid "Usage Climate change - Contribution of emissions from land use change" msgstr "" -#: src/Dashboard/Dashboard.php:69 src/Dashboard/Dashboard.php:104 -msgid "Total carbon emission" +#: src/Impact/Type.php:201 +msgid "Usage Emissions of radionizing substances" msgstr "" -#: src/Dashboard/Dashboard.php:75 -msgid "Total power consumption per model" +#: src/Impact/Type.php:202 +msgid "Usage Land use" msgstr "" -#: src/Dashboard/Dashboard.php:81 -msgid "Total carbon emission per model" +#: src/Impact/Type.php:203 +msgid "Usage Depletion of the ozone layer" msgstr "" -#: src/Dashboard/Dashboard.php:87 src/Dashboard/Dashboard.php:255 -msgid "Carbon emission per month" +#: src/Impact/Type.php:204 +msgid "Usage Fine particle emissions" msgstr "" -#: src/Dashboard/Dashboard.php:93 -msgid "Carbon intensity (gCO2eq / KWh)" +#: src/Impact/Type.php:205 +msgid "Usage Photochemical ozone formation" msgstr "" -#: src/Dashboard/Dashboard.php:99 -msgid "Carbon emission per type" +#: src/Impact/Type.php:206 +msgid "Usage Use of water resources" msgstr "" -#: src/Dashboard/Dashboard.php:109 entrée standard:38 -msgid "Monthly carbon emission" +#: src/Impact/Type.php:207 +msgid "Usage Material input per unit of service" msgstr "" -#: src/Dashboard/Dashboard.php:119 -msgid "Carbon emission per month graph" +#: src/Impact/Type.php:208 +msgid "Usage Use of mineral and metal resources" msgstr "" -#: src/Dashboard/Dashboard.php:273 -msgid "Carbon dioxyde intensity" +#: src/Impact/Type.php:209 +msgid "Usage Use of fossil resources (including nuclear)" msgstr "" -#: src/ComputerUsageProfile.php:48 -msgid "Computer usage profile" -msgid_plural "Computer usage profiles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: src/Impact/Type.php:210 +msgid "Usage Acidification" +msgstr "" -#: src/ComputerUsageProfile.php:84 -msgid "Knowbase category" +#: src/Impact/Type.php:211 +msgid "Usage Freshwater ecotoxicity" msgstr "" -#: src/ComputerUsageProfile.php:90 -msgid "As child of" +#: src/Impact/Type.php:214 src/Impact/Type.php:342 +msgid "Usage Eutrophication of freshwater" msgstr "" -#: src/ComputerUsageProfile.php:105 entrée standard:52 -msgid "Start time" +#: src/Impact/Type.php:215 src/Impact/Type.php:343 +msgid "Usage Eutrophication of marine waters" msgstr "" -#: src/ComputerUsageProfile.php:113 entrée standard:58 -msgid "Stop time" +#: src/Impact/Type.php:216 src/Impact/Type.php:344 +msgid "Usage Terrestrial eutrophication" msgstr "" -#: src/ComputerUsageProfile.php:121 entrée standard:66 -msgid "Monday" +#: src/Impact/Type.php:231 +msgid "Total Global warming potential" msgstr "" -#: src/ComputerUsageProfile.php:129 entrée standard:72 -msgid "Tuesday" +#: src/Impact/Type.php:232 +msgid "Total Abiotic depletion potential" msgstr "" -#: src/ComputerUsageProfile.php:137 entrée standard:78 -msgid "Wednesday" +#: src/Impact/Type.php:233 +msgid "Total Primary energy consumed" msgstr "" -#: src/ComputerUsageProfile.php:145 entrée standard:84 -msgid "Thursday" +#: src/Impact/Type.php:234 +msgid "Total Climate change - Contribution of biogenic emissions" msgstr "" -#: src/ComputerUsageProfile.php:153 entrée standard:90 -msgid "Friday" +#: src/Impact/Type.php:235 +msgid "Total Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/ComputerUsageProfile.php:161 entrée standard:96 -msgid "Saturday" +#: src/Impact/Type.php:236 +msgid "Total Climate change - Contribution of emissions from land use change" msgstr "" -#: src/ComputerUsageProfile.php:169 entrée standard:103 -msgid "Sunday" +#: src/Impact/Type.php:237 +msgid "Total Emissions of radionizing substances" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:124 -#: src/CarbonIntensitySource_CarbonIntensityZone.php:219 entrée standard:40 -msgid "Name" +#: src/Impact/Type.php:238 +msgid "Total Land use" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:125 -msgid "Download enabled" +#: src/Impact/Type.php:239 +msgid "Total Depletion of the ozone layer" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:126 -msgid "Source for historical" +#: src/Impact/Type.php:240 +msgid "Total Fine particle emissions" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:132 -#: src/CarbonIntensitySource_CarbonIntensityZone.php:225 -msgid "Total" +#: src/Impact/Type.php:241 +msgid "Total Photochemical ozone formation" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:284 entrée standard:189 -msgid "No" +#: src/Impact/Type.php:242 +msgid "Total Use of water resources" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:284 entrée standard:186 -msgid "Yes" +#: src/Impact/Type.php:243 +msgid "Total Material input per unit of service" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:285 -msgid "Enable / Disable" +#: src/Impact/Type.php:244 +msgid "Total Use of mineral and metal resources" msgstr "" -#: src/CarbonEmission.php:50 -msgid "Carbon Emission" -msgid_plural "Carbon Emissions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: src/Impact/Type.php:245 +msgid "Total Use of fossil resources (including nuclear)" +msgstr "" -#: hook.php:133 hook.php:172 -msgid "Power consumption (W)" +#: src/Impact/Type.php:246 +msgid "Total Acidification" msgstr "" -#: setup.php:204 -msgid "Environmental Impact" +#: src/Impact/Type.php:247 +msgid "Total Freshwater ecotoxicity" msgstr "" -#. TRANS: %s is the number of new version -#: install/migration/update_0.0.0_to_0.0.1.php:44 -#: install/migration/update_xxx_to_yyy.php:45 -#, php-format -msgid "Update to %s" +#: src/Impact/Type.php:250 +msgid "Total Eutrophication of freshwater" msgstr "" -#: install/migration/update_0.0.0_to_0.0.1/create_uasge_profiles.php:39 -msgid "Office hours" +#: src/Impact/Type.php:251 +msgid "Total Eutrophication of marine waters" msgstr "" -#: install/migration/update_0.0.0_to_0.0.1/create_automatic_actions.php:46 -msgid "Compute carbon emissions of computers" +#: src/Impact/Type.php:252 +msgid "Total Terrestrial eutrophication" msgstr "" -#: install/migration/update_0.0.0_to_0.0.1/create_automatic_actions.php:58 -msgid "Collect carbon intensities from RTE" +#: src/Impact/Type.php:323 +msgid "Carbon emission in CO₂ equivalent" msgstr "" -#: install/migration/update_0.0.0_to_0.0.1/create_automatic_actions.php:70 -msgid "Collect carbon intensities from ElectricityMap" +#: src/Impact/Type.php:324 +msgid "Consumption of non renewable resources in Antimony equivalent." msgstr "" -#: entrée standard:35 -msgid "No zone available" +#: src/Impact/Type.php:325 +msgid "Primary energy consumed." msgstr "" -#: entrée standard:37 -msgid "Please run the automatic action to downlaod data from this source." +#: src/Impact/Type.php:332 +msgid "Incidence of disease" msgstr "" -#: entrée standard:43 -msgid "Key for electricitymap.org API" +#: src/Source.php:46 +msgid "Carbon intensity source" +msgid_plural "Carbon intensity sources" +msgstr[0] "Fuente de intensidad de carbono" +msgstr[1] "Fuentes de intensidad de carbono" +msgstr[2] "Fuentes de intensidad de carbono" + +#: src/SearchOptions.php:184 src/SearchOptions.php:316 +#: src/SearchOptions.php:329 src/SearchOptions.php:342 +msgid "Ignore environmental impact" +msgstr "" + +#: src/SearchOptions.php:241 src/SearchOptions.php:365 +#: src/SearchOptions.php:442 +msgid "Is historizable" +msgstr "Es historizable" + +#: src/ComputerType.php:56 +msgid "Unspecified" +msgstr "Sin especificar" + +#: src/ComputerType.php:58 +msgid "Server" +msgstr "Servidor" + +#: src/ComputerType.php:59 +msgid "Laptop" +msgstr "Portátil" + +#: src/ComputerType.php:60 +msgid "Tablet" +msgstr "Tableta" + +#: src/ComputerType.php:61 +msgid "Smartphone" +msgstr "Smartphone" + +#: src/UsageImpact.php:39 +msgid "Usage impact" +msgid_plural "Usage impacts" +msgstr[0] "Impacto por uso" +msgstr[1] "Impactos por uso" +msgstr[2] "Impactos por uso" + +#: src/AbstractModel.php:62 src/Dashboard/Grid.php:58 +#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 +#: src/AbstractType.php:63 +msgid "Carbon" +msgstr "Carbono" + +#: src/AbstractModel.php:197 +msgid "Quality" msgstr "" -#: entrée standard:36 +#: src/Report.php:49 +msgid "Carbon report" +msgid_plural "Carbon reports" +msgstr[0] "Informe de carbono" +msgstr[1] "Informes de carbono" +msgstr[2] "Informes de carbono" + +#: src/Report.php:101 +#, php-format msgid "" -"This power value is used as default when the power of a computer model is " -"unknown" +"Demo mode enabled. The data below are not representative of the assets in " +"the database. %sDisable demo mode%s" msgstr "" +"Modo de demostración activado. Los datos que se muestran a continuación no " +"son representativos de los activos de la base de datos. %sDesactivar el modo" +" de demostración%s" -#: entrée standard:61 -msgid "Days of week where the computer usually runs" -msgstr "" +#: src/ComputerUsageProfile.php:51 +msgid "Computer usage profile" +msgid_plural "Computer usage profiles" +msgstr[0] "Perfil de uso del ordenador" +msgstr[1] "Perfiles de uso del ordenador" +msgstr[2] "Perfiles de uso del ordenador" -#: entrée standard:38 -msgid "Warning" +#: src/ComputerUsageProfile.php:117 +msgid "Start time is invalid" +msgstr "La hora de inicio no es válida" + +#: src/ComputerUsageProfile.php:122 +msgid "Stop time is invalid" +msgstr "La hora de fin no es válida" + +#: src/Source_Zone.php:72 +msgid "Source name" +msgstr "Nombre de la fuente" + +#: src/Source_Zone.php:80 +msgid "Zone name" +msgstr "Nombre de la zona" + +#: src/Source_Zone.php:88 src/Source_Zone.php:171 src/Source_Zone.php:268 +#: src/Zone.php:127 +msgid "Download enabled" +msgstr "Descarga activada" + +#: src/Source_Zone.php:96 +msgid "Code" +msgstr "Código" + +#: src/Source_Zone.php:150 +msgid "Not downloadable" +msgstr "No descargable" + +#: src/Source_Zone.php:150 +msgid "This is a fallback source, there is no real-time data available" msgstr "" +"Esta es una fuente de respaldo, no hay datos disponibles en tiempo real" + +#: src/Source_Zone.php:172 +msgid "Source for historical" +msgstr "Fuente para históricos" + +#: src/Source_Zone.php:411 +msgid "Enable / Disable" +msgstr "Activar / Desactivar" + +#: src/CronTask.php:100 +msgid "Find the Alpha3 country code (ISO3166)" +msgstr "Buscar el código de país Alfa-3 (ISO3166)" + +#: src/CronTask.php:101 +msgid "Maximum number of locations to solve" +msgstr "Número máximo de ubicaciones a resolver" + +#: src/CronTask.php:106 +msgid "Download carbon emissions from Watttime" +msgstr "Descargar emisiones de carbono de Watttime" + +#: src/CronTask.php:112 +msgid "Compute usage environmental impact for all assets" +msgstr "Calcular el impacto medioambiental por uso para todos los activos" + +#: src/CronTask.php:113 src/CronTask.php:118 +msgid "Maximum number of entries to calculate" +msgstr "Número máximo de entradas a calcular" + +#: src/CronTask.php:117 +msgid "Compute embodied environmental impact for all assets" +msgstr "Calcular el impacto medioambiental incorporado de todos los activos" + +#: src/CronTask.php:278 +msgid "No zone to download" +msgstr "No hay zonas para descargar" + +#: src/Dashboard/Widget.php:55 src/Dashboard/Grid.php:310 +msgid "Environmental impact information video" +msgstr "Vídeo informativo sobre el impacto medioambiental" + +#: src/Dashboard/Widget.php:62 +msgid "Methodology information" +msgstr "Información sobre la metodología" + +#: src/Dashboard/Widget.php:71 +msgid "Total Carbon Emission" +msgstr "Emisión total de carbono" + +#: src/Dashboard/Widget.php:78 +msgid "Monthly Carbon Emission" +msgstr "Emisión de carbono mensual" + +#: src/Dashboard/Widget.php:85 src/Dashboard/Widget.php:604 +#: src/Dashboard/Grid.php:268 +msgid "Biggest monthly averaged carbon emission per model" +msgstr "Mayor emisión de carbono media mensual por modelo" -#: entrée standard:33 -msgid "Carbon Emission per Type" +#: src/Dashboard/Widget.php:93 +msgid "Carbon Emission Per month" +msgstr "Emisión de carbono por mes" + +#: src/Dashboard/Widget.php:100 src/Dashboard/Provider.php:733 +msgid "Usage abiotic depletion potential" +msgstr "Potencial de agotamiento abiótico por uso" + +#: src/Dashboard/Widget.php:130 +msgid "Impact criteria" msgstr "" -#: entrée standard:33 +#: src/Dashboard/Widget.php:142 +msgid "Unhandled Computers" +msgstr "Ordenadores no gestionados" + +#: src/Dashboard/Widget.php:153 +msgid "Unhandled Monitors" +msgstr "Monitores no gestionados" + +#: src/Dashboard/Widget.php:164 +msgid "Unhandled Network equipments" +msgstr "Equipos de red no gestionados" + +#: src/Dashboard/Widget.php:175 +msgid "Radar chart" +msgstr "Gráfico de radar" + +#: src/Dashboard/Widget.php:501 src/Dashboard/Provider.php:1107 msgid "Consumed energy and carbon emission per month" -msgstr "" +msgstr "Energía consumida y emisión de carbono por mes" -#: entrée standard:40 -msgid "Information" -msgstr "" +#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:561 +#: src/Dashboard/Provider.php:1212 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "Carbon emission" +msgstr "Emisión de carbono" -#: entrée standard:50 +#: src/Dashboard/Widget.php:551 src/Dashboard/Widget.php:564 +#: src/Dashboard/Provider.php:1228 src/Dashboard/DemoProvider.php:106 +#: src/Dashboard/DemoProvider.php:202 +msgid "Consumed energy" +msgstr "Energía consumida" + +#: src/Dashboard/Widget.php:746 +#, php-format msgid "" -"Our data is sourced from reliable sources and is meticulously calculated " -"using industry-standard methodologies. We utilize accurate measurement tools" -" and algorithms to ensure the precision and reliability of our environmental" -" metrics." +"Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " +"months. %s More information %s" msgstr "" +"Evalúa la emisión de carbono por uso en CO₂ equivalente durante los últimos " +"2 meses. %s Más información %s" -#: entrée standard:51 +#: src/Dashboard/Widget.php:812 +#, php-format msgid "" -"As we move towards a greener future, businesses will soon be required to " -"report energy usage and carbon emissions. By 2025, many areas will enforce " -"these regulations. Adopting these practices now ensures compliance and helps" -" combat climate change." +"Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " +"elapsed months. %s More information %s" msgstr "" +"Evalúa la emisión de carbono por uso en CO₂ equivalente durante los últimos " +"12 meses transcurridos. %s Más información %s" -#: entrée standard:55 -msgid "Did you know ?" +#: src/Dashboard/Widget.php:854 +msgid "More information" msgstr "" -#: entrée standard:56 +#: src/Dashboard/Widget.php:893 +#, php-format msgid "" -"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " -"about 20 meters." +"Evaluates the consumption of non renewable resources in Antimony equivalent." +" %s More information %s" msgstr "" +"Evalúa el consumo de recursos no renovables en Antimonio equivalente. %s Más" +" información %s" -#: entrée standard:81 -#, php-format -msgid "%s rows / page" +#: src/Dashboard/Widget.php:1097 +msgid "Handled percentage" +msgstr "Porcentaje gestionado" + +#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 +#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 +#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "CO₂eq" +msgstr "CO₂eq" + +#: src/Dashboard/Provider.php:195 src/Dashboard/Provider.php:318 +#: src/Dashboard/Provider.php:1199 src/Toolbox.php:243 +msgid "g" +msgstr "g" + +#: src/Dashboard/Provider.php:196 src/Dashboard/Provider.php:319 +#: src/Dashboard/Provider.php:1200 src/Toolbox.php:244 +msgid "Kg" +msgstr "kg" + +#: src/Dashboard/Provider.php:197 src/Dashboard/Provider.php:320 +#: src/Dashboard/Provider.php:1201 src/Toolbox.php:245 +msgid "t" +msgstr "t" + +#: src/Dashboard/Provider.php:198 src/Dashboard/Provider.php:321 +#: src/Dashboard/Provider.php:1202 src/Toolbox.php:246 +msgid "Kt" +msgstr "kt" + +#: src/Dashboard/Provider.php:199 src/Dashboard/Provider.php:322 +#: src/Dashboard/Provider.php:1203 src/Toolbox.php:247 +msgid "Mt" +msgstr "Mt" + +#: src/Dashboard/Provider.php:200 src/Dashboard/Provider.php:323 +#: src/Dashboard/Provider.php:1204 src/Toolbox.php:248 +msgid "Gt" +msgstr "Gt" + +#: src/Dashboard/Provider.php:201 src/Dashboard/Provider.php:324 +#: src/Dashboard/Provider.php:1205 src/Toolbox.php:249 +msgid "Tt" +msgstr "Tt" + +#: src/Dashboard/Provider.php:202 src/Dashboard/Provider.php:325 +#: src/Dashboard/Provider.php:1206 src/Toolbox.php:250 +msgid "Pt" +msgstr "Pt" + +#: src/Dashboard/Provider.php:203 src/Dashboard/Provider.php:326 +#: src/Dashboard/Provider.php:1207 src/Toolbox.php:251 +msgid "Et" +msgstr "Et" + +#: src/Dashboard/Provider.php:204 src/Dashboard/Provider.php:327 +#: src/Dashboard/Provider.php:1208 src/Toolbox.php:252 +msgid "Zt" +msgstr "Zt" + +#: src/Dashboard/Provider.php:205 src/Dashboard/Provider.php:328 +#: src/Dashboard/Provider.php:1209 src/Toolbox.php:253 +msgid "Yt" +msgstr "Yt" + +#: src/Dashboard/Provider.php:427 +msgid "handled assets ratio" +msgstr "ratio de activos gestionados" + +#: src/Dashboard/Provider.php:473 src/Dashboard/Grid.php:63 +msgid "Handled assets ratio" +msgstr "Ratio de activos gestionados" + +#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 +msgid "Handled" +msgstr "Gestionados" + +#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 +msgid "Unhandled" +msgstr "No gestionados" + +#: src/Dashboard/Provider.php:507 +msgid "Ignored" msgstr "" -#: entrée standard:90 +#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 #, php-format -msgid "Showing %s to %s of %s rows" -msgstr "" +msgid "plugin carbon - handled %s" +msgstr "plugin carbon - gestionados %s" -#: entrée standard:94 +#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 #, php-format -msgid "%s-%s/%s" -msgstr "" +msgid "plugin carbon - unhandled %s" +msgstr "plugin carbon - no gestionados %s" -#: entrée standard:104 -msgid "Start" +#: src/Dashboard/Provider.php:584 +#, php-format +msgid "plugin carbon - ignored %s" msgstr "" -#: entrée standard:109 -msgid "Previous" -msgstr "" +#: src/Dashboard/Provider.php:632 +msgid "plugin carbon - Total usage power consumption" +msgstr "plugin carbon - Consumo total de energía por uso" -#: entrée standard:118 -#, php-format -msgid "%s-%s of %s" -msgstr "" +#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 +msgid "plugin carbon - Usage carbon emission" +msgstr "plugin carbon - Emisión de carbono por uso" -#: entrée standard:141 -msgid "Next" -msgstr "" +#: src/Dashboard/Provider.php:747 +msgid "Sbeq" +msgstr "Sbeq" -#: entrée standard:146 -msgid "End" -msgstr "" +#: src/Dashboard/Provider.php:1035 +msgid "Total abiotic depletion potential" +msgstr "Potencial total de agotamiento abiótico" -#: entrée standard:50 standard:281 -msgid "No data" -msgstr "" +#: src/Dashboard/Provider.php:1051 +msgid "Embodied abiotic depletion potential" +msgstr "Potencial de agotamiento abiótico incorporado" -#: entrée standard:88 -msgid "Check all" -msgstr "" +#: src/Dashboard/Provider.php:1054 +msgid "Total usage abiotic depletion potential" +msgstr "Potencial total de agotamiento abiótico por uso" -#: entrée standard:123 -msgid "Filter" -msgstr "" +#: src/Dashboard/Provider.php:1066 +msgid "Total global warming potential" +msgstr "Potencial total de calentamiento global" -#: entrée standard:129 -msgid "Export" -msgstr "" +#: src/Dashboard/Provider.php:1082 +msgid "Embodied global warming potential" +msgstr "Potencial de calentamiento global incorporado" -#: entrée standard:184 -msgid "All" -msgstr "" +#: src/Dashboard/Provider.php:1085 +msgid "Total usage global warming potential" +msgstr "Potencial total de calentamiento global por uso" -#: entrée standard:310 +#: src/Dashboard/Provider.php:1218 src/Toolbox.php:316 +msgid "KWh" +msgstr "kWh" + +#: src/Dashboard/Provider.php:1219 src/Toolbox.php:317 +msgid "MWh" +msgstr "MWh" + +#: src/Dashboard/Provider.php:1220 src/Toolbox.php:318 +msgid "GWh" +msgstr "GWh" + +#: src/Dashboard/Provider.php:1221 src/Toolbox.php:319 +msgid "TWh" +msgstr "TWh" + +#: src/Dashboard/Provider.php:1222 src/Toolbox.php:320 +msgid "PWh" +msgstr "PWh" + +#: src/Dashboard/Provider.php:1223 src/Toolbox.php:321 +msgid "EWh" +msgstr "EWh" + +#: src/Dashboard/Provider.php:1224 src/Toolbox.php:322 +msgid "ZWh" +msgstr "ZWh" + +#: src/Dashboard/Provider.php:1225 src/Toolbox.php:323 +msgid "YWh" +msgstr "YWh" + +#: src/Dashboard/Grid.php:72 +msgid "Handled assets count" +msgstr "Recuento de activos gestionados" + +#: src/Dashboard/Grid.php:135 #, php-format -msgid "Show %s entries" -msgstr "" +msgid "Handled %s" +msgstr "%s gestionados" -#: entrée standard:42 -msgid "Compared to last month" -msgstr "" +#: src/Dashboard/Grid.php:146 +#, php-format +msgid "Unhandled %s" +msgstr "%s no gestionados" -#: entrée standard:35 -msgid "Want to know more ?" -msgstr "" +#: src/Dashboard/Grid.php:232 +#, php-format +msgid "Unhandled %s ratio" +msgstr "Ratio de %s no gestionados" -#: entrée standard:36 -msgid "Here is a video about the impact of numeric on the enviromnent." +#: src/Dashboard/Grid.php:244 +msgid "Usage carbon emission year to date" +msgstr "Emisión de carbono por uso en lo que va de año" + +#: src/Dashboard/Grid.php:250 +msgid "Monthly carbon emission" +msgstr "Emisión de carbono mensual" + +#: src/Dashboard/Grid.php:259 +msgid "Usage global warming potential chart" +msgstr "Gráfico del potencial de calentamiento global por uso" + +#: src/Dashboard/Grid.php:315 +msgid "Environmental impact methodology information" +msgstr "Información de la metodología de impacto medioambiental" + +#: src/Dashboard/DemoProvider.php:76 +msgid "Usage carbon emission per month" +msgstr "Emisión de carbono por uso al mes" + +#: src/Dashboard/DemoProvider.php:274 +msgid "plugin carbon - handled assets ratio" +msgstr "plugin carbon - ratio de activos gestionados" + +#: src/Dashboard/Dashboard.php:68 +msgid "Carbon dioxyde intensity" +msgstr "Intensidad de dióxido de carbono" + +#: src/Location.php:189 +msgid "Carbon intensity source and zone" msgstr "" -#: entrée standard:33 -msgid "Carbon Emission per Month" +#: src/CarbonIntensity.php:87 +msgid "Emission date" +msgstr "Fecha de emisión" + +#: src/CarbonIntensity.php:114 +msgid "Intensity" +msgstr "Intensidad" + +#: src/CarbonEmission.php:49 +msgid "Carbon Emission" +msgid_plural "Carbon Emissions" +msgstr[0] "Emisión de carbono" +msgstr[1] "Emisiones de carbono" +msgstr[2] "Emisiones de carbono" + +#: src/CarbonEmission.php:120 +msgid "Energy" +msgstr "Energía" + +#: src/CarbonEmission.php:128 +msgid "Emission" +msgstr "Emisión" + +#: src/CarbonEmission.php:136 +msgid "Energy quality" +msgstr "Calidad de la energía" + +#: src/CarbonEmission.php:144 +msgid "Emission quality" +msgstr "Calidad de la emisión" + +#: src/Toolbox.php:280 +msgid "W" +msgstr "W" + +#: src/Toolbox.php:281 +msgid "KW" +msgstr "kW" + +#: src/Toolbox.php:282 +msgid "MW" +msgstr "MW" + +#: src/Toolbox.php:283 +msgid "GW" +msgstr "GW" + +#: src/Toolbox.php:284 +msgid "TW" +msgstr "TW" + +#: src/Toolbox.php:285 +msgid "PW" +msgstr "PW" + +#: src/Toolbox.php:286 +msgid "EW" +msgstr "EW" + +#: src/Toolbox.php:287 +msgid "ZW" +msgstr "ZW" + +#: src/Toolbox.php:288 +msgid "YW" +msgstr "YW" + +#: src/Toolbox.php:315 +msgid "Wh" +msgstr "Wh" + +#: src/Toolbox.php:373 src/Toolbox.php:378 +#, php-format +msgid "%1$s %2$s" msgstr "" -#: entrée standard:36 +#: setup.php:285 +msgid "Environmental Impact" +msgstr "Impacto medioambiental" + +#: hook.php:97 msgid "" -"This power value is used as default when the power of a network equipment " -"model is unknown" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." msgstr "" -#: entrée standard:36 -msgid "" -"This power value is used as default when the power of a monitor model is " -"unknown" +#: hook.php:301 +msgid "Associate to an usage profile" +msgstr "Asociar a un perfil de uso" + +#: hook.php:302 hook.php:307 +msgid "Delete all calculated environmental impacts" msgstr "" -#: entrée standard:36 -msgid "Usage information" +#: hook.php:311 hook.php:316 hook.php:320 +msgid "Update type power consumption" +msgstr "Actualizar consumo de energía del tipo" + +#: hook.php:312 +msgid "Update category" +msgstr "Actualizar categoría" + +#: hook.php:324 +msgid "Update zone for Boavizta engine" +msgstr "Actualizar zona para el motor Boavizta" + +#: hook.php:325 +msgid "Update carbon intensity source and zone" msgstr "" -#: entrée standard:41 -msgid "Usage profile" -msgid_plural "Usage profiles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: install/install/create_automatic_actions.php:52 +msgid "Find the Alpha3 country code (ISO3166) of locations" +msgstr "Buscar el código de país Alfa-3 (ISO3166) de las ubicaciones" + +#: install/install/create_automatic_actions.php:64 +msgid "Compute carbon emissions of computers" +msgstr "Calcular las emisiones de carbono de los ordenadores" + +#: install/install/create_automatic_actions.php:76 +msgid "Compute embodied impact of assets" +msgstr "Calcular el impacto incorporado de los activos" + +#: install/install/create_uasge_profiles.php:41 +msgid "Always on" +msgstr "Siempre encendido" + +#: install/install/create_uasge_profiles.php:52 +msgid "Office hours" +msgstr "Horario de oficina" + +#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 +#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 +msgid "Missing arguments in request." +msgstr "Faltan argumentos en la solicitud." + +#: front/usageimpact.form.php:80 front/usageimpact.form.php:106 +#: front/usageimpact.form.php:114 front/embodiedimpact.form.php:92 +msgid "Bad arguments." +msgstr "Argumentos incorrectos." + +#: front/usageimpact.form.php:90 front/embodiedimpact.form.php:68 +#: front/embodiedimpact.form.php:77 +msgid "Reset denied." +msgstr "Restablecimiento denegado." + +#: front/usageimpact.form.php:95 front/embodiedimpact.form.php:82 +msgid "Reset failed." +msgstr "Fallo al restablecer." + +#: front/usageimpact.form.php:122 +msgid "Missing data prevents historization of this asset." +msgstr "La falta de datos impide la historización de este activo." + +#: front/usageimpact.form.php:125 +msgid "Update of global warming potential failed." +msgstr "No se pudo actualizar el potencial de calentamiento global." + +#: front/usageimpact.form.php:131 front/embodiedimpact.form.php:101 +msgid "Unable to find calculation engine for this asset." +msgstr "No se ha podido encontrar el motor de cálculo para este activo." + +#: front/usageimpact.form.php:136 +msgid "Update of usage impact failed." +msgstr "No se pudo actualizar el impacto de uso." diff --git a/locales/es_MX.po b/locales/es_MX.po index 1990e4b1..a6bb8207 100644 --- a/locales/es_MX.po +++ b/locales/es_MX.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-04-10 02:51+0000\n" +"POT-Creation-Date: 2026-04-14 10:49+0000\n" "PO-Revision-Date: 2025-10-29 09:26+0000\n" "Last-Translator: Edwin Elias Alvarez , 2026\n" "Language-Team: Spanish (Mexico) (https://app.transifex.com/teclib/teams/28042/es_MX/)\n" @@ -58,14 +58,6 @@ msgstr[0] "Perfil de uso" msgstr[1] "Perfiles de uso" msgstr[2] "Perfiles de uso" -#: templates/usageinfo.html.twig -msgid "lifespan (in months)" -msgstr "esperanza de vida (en meses)" - -#: templates/usageinfo.html.twig -msgid "planned lifespan (in months)" -msgstr "esperanza de vida prevista (en meses)" - #: templates/quick-report.html.twig front/report.php:55 msgid "GLPI Carbon" msgstr "GLPI Carbon" @@ -434,16 +426,16 @@ msgstr "Creando inventario de prueba" msgid "Power consumption" msgstr "Consumo de potencia" -#: src/UsageInfo.php:63 +#: src/UsageInfo.php:62 msgid "Usage informations" msgstr "Información de uso" -#: src/UsageInfo.php:95 src/AbstractModel.php:54 src/Location.php:73 +#: src/UsageInfo.php:94 src/AbstractModel.php:54 src/Location.php:73 #: src/AbstractType.php:55 src/Profile.php:45 msgid "Environmental impact" msgstr "Impacto ambiental" -#: src/UsageInfo.php:243 +#: src/UsageInfo.php:241 #, php-format msgid "%s More information %s" msgstr "%s Más información %s" diff --git a/locales/fr_FR.po b/locales/fr_FR.po index aab3aa55..9b0d6d3b 100644 --- a/locales/fr_FR.po +++ b/locales/fr_FR.po @@ -4,16 +4,17 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Thierry Bugier , 2025 +# EpicIT33, 2026 +# Thierry Bugier , 2026 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 08:10+0000\n" -"PO-Revision-Date: 2025-07-03 13:58+0000\n" -"Last-Translator: Thierry Bugier , 2025\n" +"POT-Creation-Date: 2026-04-15 02:49+0000\n" +"PO-Revision-Date: 2025-10-29 09:26+0000\n" +"Last-Translator: Thierry Bugier , 2026\n" "Language-Team: French (France) (https://app.transifex.com/teclib/teams/28042/fr_FR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,143 +22,59 @@ msgstr "" "Language: fr_FR\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: templates/dashboard/usage-carbon-emission-last-year.html.twig -msgid "Yearly Usage Carbon Emission" -msgstr "Émissions de carbone liées à l'utilisation annuelle" - -#: templates/dashboard/monthly-carbon-emission.html.twig -msgid "Monthly usage carbon emission" -msgstr "Émissions de carbone liées à l'utilisation mensuelle" - -#: templates/dashboard/monthly-carbon-emission.html.twig -#, php-format -msgid "Compared to %s" -msgstr "Comparé à %s" - -#: templates/dashboard/embodied-primary-energy.html.twig -msgid "Embodied primary energy" -msgstr "Énergie primaire incorporée" - -#: templates/dashboard/usage-abiotic-depletion.html.twig -#: src/Dashboard/Widget.php:102 src/Dashboard/DemoProvider.php:95 -#: src/Dashboard/Grid.php:184 src/Dashboard/Grid.php:287 -#: src/Dashboard/Provider.php:812 -msgid "Usage abiotic depletion potential" -msgstr "potentiel d'épuisement abiotique lié à l'utilisation" - -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#: templates/dashboard/unhandled-monitors-card.html.twig -#: templates/dashboard/unhandled-computers-card.html.twig -msgid "Warning" -msgstr "Attention" - -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#, php-format -msgid "" -"It represents %s percent of your parc that contains %s network equipments." -msgstr "Il représente %s de votre parc qui contient %s équipements réseau." - -#: templates/dashboard/unhandled-monitors-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s monitors." -msgstr "Il représente %s de votre parc qui contient %s moniteurs." - -#: templates/dashboard/information-block.html.twig -msgid "Information" -msgstr "Information" - -#: templates/dashboard/information-block.html.twig -msgid "" -"Our data is sourced from reliable sources and is meticulously calculated " -"using industry-standard methodologies. We utilize accurate measurement tools" -" and algorithms to ensure the precision and reliability of our environmental" -" metrics." -msgstr "" -"Nos données proviennent de sources fiables et sont soigneusement calculées " -"selon des méthodologies reconnues dans l'industrie. Nous utilisons des " -"outils de mesure précis et des algorithmes pour garantir la fiabilité et la " -"précision de nos indicateurs environnementaux." - -#: templates/dashboard/information-block.html.twig -msgid "" -"As we move towards a greener future, businesses will soon be required to " -"report energy usage and carbon emissions. By 2025, many areas will enforce " -"these regulations. Adopting these practices now ensures compliance and helps" -" combat climate change." -msgstr "" -"Alors que nous avançons vers un avenir plus vert, les entreprises devront " -"bientôt déclarer leur consommation d'énergie et leurs émissions de carbone. " -"D'ici 2025, de nombreuses régions appliqueront ces réglementations. Adopter " -"ces pratiques dès maintenant garantit la conformité et contribue à lutter " -"contre le changement climatique." +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 +#: src/ComputerUsageProfile.php:169 +msgid "Start time" +msgstr "Heure de démarrage" -#: templates/dashboard/information-block.html.twig -msgid "Did you know ?" -msgstr "Le saviez vous ?" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 +msgid "Stop time" +msgstr "Heure d'arrêt" -#: templates/dashboard/information-block.html.twig -msgid "" -"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " -"about 20 meters." +#: templates/computerusageprofile.html.twig +msgid "Days of week where the computer usually runs" msgstr "" -"1 gramme de CO₂ est équivalent au CO₂ émis quand vous roulez en voiture sur " -"environ 20 mètres." - -#: templates/dashboard/embodied-carbon-emission.html.twig -#: src/Dashboard/Widget.php:111 -msgid "Embodied carbon emission" -msgstr "Émissions de carbone incorporées" +"Jours de la semaine où l'ordinateur est habituellement en fonctionnement" -#: templates/dashboard/information-video-card.html.twig -msgid "Want to know more ?" -msgstr "Vous voulez en savoir plus ?" +#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 +#: src/Impact/Usage/Engine.php:48 +msgid "Boavizta" +msgstr "Boavizta" -#: templates/dashboard/information-video-card.html.twig -msgid "Here is a video about the impact of numeric on the enviromnent." -msgstr "" -"Voici une vidéo à propos de l'impact du numérique sur l'environnement." +#: templates/location.html.twig src/SearchOptions.php:138 src/Location.php:182 +msgid "Boavizta zone" +msgstr "Zone Boavizta" -#: templates/dashboard/unhandled-computers-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s computers." -msgstr "" -"Cela représente %s de votre parc informatique qui contient %s ordinateurs." +#: templates/location.html.twig src/CarbonIntensity.php:65 +msgid "Carbon intensity" +msgstr "Intensité carbone" -#: templates/dashboard/embodied-abiotic-depletion.html.twig -#: src/Dashboard/Widget.php:118 src/Dashboard/DemoProvider.php:77 -#: src/Dashboard/Grid.php:204 src/Dashboard/Grid.php:301 -#: src/Dashboard/Provider.php:778 src/Dashboard/Provider.php:862 -msgid "Embodied abiotic depletion potential" -msgstr "Potentiel d'épuisement abiotique incorporé" +#: templates/usageinfo.html.twig +msgid "Asset usage" +msgstr "Utilisation de l'équipement" -#: templates/monitortype.html.twig -msgid "" -"This power value is used as default when the power of a monitor model is " -"unknown" -msgstr "" -"Cette valeur de puissance est utilisée par défaut lorsque la puissance d'un " -"modèle de moniteur est inconnue." +#: templates/usageinfo.html.twig +msgid "Usage profile" +msgid_plural "Usage profiles" +msgstr[0] "Profil d'utilisation" +msgstr[1] "Profils d'utilisation" +msgstr[2] "Profils d'utilisation" -#: templates/monitortype.html.twig templates/computertype.html.twig -#: templates/networkequipmenttype.html.twig src/AbstractType.php:56 -msgid "Power" -msgid_plural "Powers" -msgstr[0] "Puissance" -msgstr[1] "Puissances" -msgstr[2] "Puissances" +#: templates/quick-report.html.twig front/report.php:55 +msgid "GLPI Carbon" +msgstr "GLPI Carbon" -#: templates/computertype.html.twig -msgid "" -"This power value is used as default when the power of a computer model is " -"unknown" -msgstr "" -"Cette valeur de puissance est utilisée par défaut quand la puissance d'un " -"modèle d'ordinateur est inconnue" +#: templates/components/form/source_zone_selector.html.twig +#: src/AbstractModel.php:186 +msgid "Source" +msgstr "Source" -#: templates/computertype.html.twig src/SearchOptions.php:251 -#: src/ComputerType.php:78 -msgid "Category" -msgstr "" +#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 +msgid "Carbon intensity zone" +msgid_plural "Carbon intensity zones" +msgstr[0] "Zone d'intensité carbone" +msgstr[1] "Zones d'intensité carbone" +msgstr[2] "Zones d'intensité carbone" #: templates/pages/CarbonIntensitySource/tab_zone.html.twig msgid "No zone available" @@ -169,14 +86,6 @@ msgstr "" "Veuillez exécuter l'action automatique pour télécharger les données depuis " "cette source." -#: templates/networkequipmenttype.html.twig -msgid "" -"This power value is used as default when the power of a network equipment " -"model is unknown" -msgstr "" -"Cette valeur de puissance est utilisée par défaut lorsque la puissance d'un " -"modèle d'équipement réseau est inconnue." - #: templates/environmentalimpact-item.html.twig msgid "Usage" msgstr "Utilisation" @@ -189,46 +98,12 @@ msgstr "Effacer les données" msgid "Calculate data" msgstr "Calculer les données" -#: templates/environmentalimpact-item.html.twig +#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 msgid "Embodied impact" -msgstr "Impact incorporé" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:125 -#: src/ComputerUsageProfile.php:146 -msgid "Start time" -msgstr "Heure de démarrage" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:154 -msgid "Stop time" -msgstr "Heure d'arrêt" - -#: templates/computerusageprofile.html.twig -msgid "Days of week where the computer usually runs" -msgstr "" -"Jours de la semaine où l'ordinateur est habituellement en fonctionnement" - -#: templates/usageinfo.html.twig -msgid "Asset usage" -msgstr "Utilisation de l'équipement" - -#: templates/usageinfo.html.twig -msgid "Usage profile" -msgid_plural "Usage profiles" -msgstr[0] "Profil d'utilisation" -msgstr[1] "Profils d'utilisation" -msgstr[2] "Profils d'utilisation" - -#: templates/quick-report.html.twig front/report.php:55 -msgid "GLPI Carbon" -msgstr "" - -#: templates/location.html.twig src/Profile.php:45 src/UsageInfo.php:91 -msgid "Environmental impact" -msgstr "Impact environnemental" - -#: templates/location.html.twig src/Location.php:78 src/SearchOptions.php:121 -msgid "Boavizta zone" -msgstr "Zone Boavizta" +msgid_plural "Embodied impacts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: templates/history/status-item.html.twig msgid "Historization status" @@ -265,13 +140,17 @@ msgstr "N'est pas un modèle" msgid "Linked to a computer" msgstr "Lié à un ordinateur" +#: templates/history/status-item.html.twig +msgid "Attached computer has a location" +msgstr "" + #: templates/history/status-item.html.twig msgid "Has a location" msgstr "Est lié à un lieu" #: templates/history/status-item.html.twig -msgid "The location has a state or a country" -msgstr "Le lieu a un état ou un pays" +msgid "The location has carbon intensity data" +msgstr "Le lieu dispose de données sur l'intensité carbone." #: templates/history/status-item.html.twig msgid "Real time carbon intensity enabled" @@ -293,6 +172,10 @@ msgstr "Le modèle a une puissance de consommation" msgid "The asset has a type" msgstr "L'équipement a un type" +#: templates/history/status-item.html.twig +msgid "Type is not ignored" +msgstr "Le type n'est pas ignoré" + #: templates/history/status-item.html.twig msgid "The type has a power consumption" msgstr "Le type a une puissance de consommation" @@ -313,13 +196,26 @@ msgstr "L'équipement a une date d'entrée dans l'inventaire" msgid "Legend" msgstr "Légende" -#: templates/config.html.twig -msgid "Electricity maps" +#: templates/monitortype.html.twig +msgid "" +"This power value is used as default when the power of a monitor model is " +"unknown" msgstr "" +"Cette valeur de puissance est utilisée par défaut lorsque la puissance d'un " +"modèle de moniteur est inconnue." -#: templates/config.html.twig -msgid "Key for electricitymap.org API" -msgstr "Clé pour l'API electricitymap.org" +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Power" +msgid_plural "Powers" +msgstr[0] "Puissance" +msgstr[1] "Puissances" +msgstr[2] "Puissances" + +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Do not evaluate" +msgstr "Ne pas évaluer" #: templates/config.html.twig msgid "Impact engine" @@ -331,811 +227,1221 @@ msgstr "" "Les émissions de carbone liées à l'utilisation sont toujours calculées en " "interne." -#: templates/config.html.twig src/Impact/Embodied/Engine.php:46 -#: src/Impact/Usage/Engine.php:46 -msgid "Boavizta" +#: templates/computertype.html.twig +msgid "" +"This power value is used as default when the power of a computer model is " +"unknown" msgstr "" +"Cette valeur de puissance est utilisée par défaut quand la puissance d'un " +"modèle d'ordinateur est inconnue" -#: templates/config.html.twig -msgid "Base URL to the Boaviztapi instance" -msgstr "URL de base de l'instance Boaviztapi" +#: templates/computertype.html.twig src/SearchOptions.php:303 +#: src/ComputerType.php:78 +msgid "Category" +msgstr "Catégorie" -#: templates/config.html.twig +#: templates/dashboard/information-block.html.twig +msgid "Information" +msgstr "Information" + +#: templates/dashboard/information-block.html.twig msgid "" -"Geocoding converts a location into a ISO 3166 (3 letters) code. Boavizta " -"needs this to determine usage impacts of assets. This feature sends the " -"address stored in a location to nominatim.org service. If this is an issue, " -"you can disable it below, and fill the coutry code manually." +"Our data is sourced from reliable sources and is meticulously calculated " +"using industry-standard methodologies. We utilize accurate measurement tools" +" and algorithms to ensure the precision and reliability of our environmental" +" metrics." msgstr "" -"Le géocodage convertit une localisation en un code ISO 3166 (3 lettres). " -"Boavizta a besoin de ce code pour évaluer l'impact de l'utilisation des " -"ressources. Cette fonctionnalité transmet l'adresse enregistrée à " -"nominatim.org. Si cela pose problème, vous pouvez la désactiver ci-dessous " -"et saisir manuellement le code pays." - -#: templates/config.html.twig -msgid "Enable geocoding" -msgstr "Activer le géocodage" +"Nos données proviennent de sources fiables et sont soigneusement calculées " +"selon des méthodologies reconnues dans l'industrie. Nous utilisons des " +"outils de mesure précis et des algorithmes pour garantir la fiabilité et la " +"précision de nos indicateurs environnementaux." -#: setup.php:263 -msgid "Environmental Impact" -msgstr "Impact environnemental" +#: templates/dashboard/information-block.html.twig +msgid "" +"As we move towards a greener future, businesses will soon be required to " +"report energy usage and carbon emissions. By 2025, many areas will enforce " +"these regulations. Adopting these practices now ensures compliance and helps" +" combat climate change." +msgstr "" +"Alors que nous avançons vers un avenir plus vert, les entreprises devront " +"bientôt déclarer leur consommation d'énergie et leurs émissions de carbone. " +"D'ici 2025, de nombreuses régions appliqueront ces réglementations. Adopter " +"ces pratiques dès maintenant garantit la conformité et contribue à lutter " +"contre le changement climatique." -#: front/embodiedimpact.form.php:65 front/embodiedimpact.form.php:88 -#: front/usageimpact.form.php:65 front/usageimpact.form.php:102 -msgid "Missing arguments in request." -msgstr "Arguments manquants dans la requête." +#: templates/dashboard/information-block.html.twig +msgid "Did you know ?" +msgstr "Le saviez vous ?" -#: front/embodiedimpact.form.php:70 front/embodiedimpact.form.php:79 -#: front/usageimpact.form.php:89 -msgid "Reset denied." -msgstr "Réinitialisation refusée." +#: templates/dashboard/information-block.html.twig +msgid "" +"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " +"about 20 meters." +msgstr "" +"1 gramme de CO₂ est équivalent au CO₂ émis quand vous roulez en voiture sur " +"environ 20 mètres." -#: front/embodiedimpact.form.php:84 front/usageimpact.form.php:94 -msgid "Reset failed." -msgstr "La réinitialisation a échoué." +#: templates/dashboard/unhandled-monitors-card.html.twig +#: templates/dashboard/unhandled-computers-card.html.twig +#: templates/dashboard/unhandled-network-equipments-card.html.twig +msgid "Warning" +msgstr "Attention" -#: front/embodiedimpact.form.php:94 front/usageimpact.form.php:133 -msgid "Unable to find calculation engine for this asset." -msgstr "Moteur de calcul introuvable pour cet équipement." +#: templates/dashboard/unhandled-monitors-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s monitors." +msgstr "Il représente %s de votre parc qui contient %s moniteurs." -#: front/embodiedimpact.form.php:103 -msgid "Update failed." -msgstr "La mise à jour a échoué." +#: templates/dashboard/usage-carbon-emission-last-year.html.twig +msgid "Yearly Usage Carbon Emission" +msgstr "Émissions de carbone liées à l'utilisation annuelle" -#: front/usageimpact.form.php:79 front/usageimpact.form.php:108 -#: front/usageimpact.form.php:116 -msgid "Bad arguments." -msgstr "Mauvais arguments." +#: templates/dashboard/monthly-carbon-emission.html.twig +msgid "Monthly usage carbon emission" +msgstr "Émissions de carbone liées à l'utilisation mensuelle" -#: front/usageimpact.form.php:98 -msgid "Delete of usage impact failed." -msgstr "La suppression de l'impact d'utilisation a échoué." +#: templates/dashboard/monthly-carbon-emission.html.twig +#, php-format +msgid "Compared to %s" +msgstr "Comparé à %s" -#: front/usageimpact.form.php:124 -msgid "Missing data prevents historization of this asset." -msgstr "L'absence de données empêche l'historisation de cet équipement." +#: templates/dashboard/unhandled-computers-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s computers." +msgstr "" +"Cela représente %s de votre parc informatique qui contient %s ordinateurs." -#: front/usageimpact.form.php:127 -msgid "Update of global warming potential failed." -msgstr "La mise à jour du potentiel de réchauffement climatique a échoué." +#: templates/dashboard/unhandled-network-equipments-card.html.twig +#, php-format +msgid "" +"It represents %s percent of your parc that contains %s network equipments." +msgstr "Il représente %s de votre parc qui contient %s équipements réseau." -#: front/usageimpact.form.php:138 -msgid "Update of usage impact failed." -msgstr "La mise à jour de l'impact d'utilisation a échoué." +#: templates/dashboard/information-video-card.html.twig +msgid "Want to know more ?" +msgstr "Vous voulez en savoir plus ?" -#: hook.php:293 -msgid "Associate to an usage profile" -msgstr "Associer à un profil d'utilisation" +#: templates/dashboard/information-video-card.html.twig +msgid "Here is a video about the impact of numeric on the enviromnent." +msgstr "" +"Voici une vidéo à propos de l'impact du numérique sur l'environnement." -#: hook.php:297 hook.php:302 hook.php:306 -msgid "Update type power consumption" -msgstr "Mettre à jour la puissance consommée du type" +#: templates/abstractmodel.html.twig +msgid "" +"The impacts below shall include the manufacturing, disposal and recycling " +"processes only." +msgstr "" +"Les impacts ci-dessous concernent uniquement les processus de fabrication, " +"d'élimination et de recyclage." -#: hook.php:298 -msgid "Update category" -msgstr "Mettre à jour la catégorie" +#: templates/abstractmodel.html.twig +msgid "Take care of the expected units before setting an impact." +msgstr "" -#: hook.php:310 -msgid "Update zone for Boavizta engine" -msgstr "Mettre à jour la zone pour le moteur Boavizta" +#: templates/abstractmodel.html.twig +msgid "Data quality" +msgstr "Qualité des données" -#: install/install/create_automatic_actions.php:45 -msgid "Find the Alpha3 country code (ISO3166) of locations" -msgstr "Trouvez le code pays Alpha3 (ISO3166) des lieux" +#: templates/abstractmodel.html.twig +msgid "Data source" +msgstr "Source des données" -#: install/install/create_automatic_actions.php:57 -msgid "Compute carbon emissions of computers" -msgstr "Calculer les émissions de carbone des ordinateurs" +#: templates/networkequipmenttype.html.twig +msgid "" +"This power value is used as default when the power of a network equipment " +"model is unknown" +msgstr "" +"Cette valeur de puissance est utilisée par défaut lorsque la puissance d'un " +"modèle d'équipement réseau est inconnue." -#: install/install/create_automatic_actions.php:69 -msgid "Collect carbon intensities from RTE" -msgstr "Collecte les intensités carbone depuis RTE" +#: src/Command/CollectCarbonIntensityCommand.php:70 +msgid "Read carbon dioxyde intensity from external sources" +msgstr "Lire l'intensité du dioxyde de carbone provenant de sources externes" -#: install/install/create_automatic_actions.php:81 -msgid "Collect carbon intensities from ElectricityMap" -msgstr "Collecte les intensités carbone depuis ElectricityMap" +#: src/Command/CollectCarbonIntensityCommand.php:84 +msgid "Source:" +msgstr "Source:" -#: install/install/create_automatic_actions.php:93 -msgid "Compute embodied impact of assets" -msgstr "Calcule l'impact incorporé des équipements" +#: src/Command/CollectCarbonIntensityCommand.php:95 +msgid "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" +msgstr "" +"La source sélectionnée n'énumère pas les zones prises en charge. Tentative " +"d'identification d'une zone à partir d'une adresse" -#: install/install/create_uasge_profiles.php:41 -msgid "Always on" -msgstr "Toujours sous tension" +#: src/Command/CollectCarbonIntensityCommand.php:99 +msgid "Geocoding is not enabled. Cannot resolve an address into a zone" +msgstr "" +"Le géocodage n'est pas activé. Impossible de placer une adresse dans une " +"zone." -#: install/install/create_uasge_profiles.php:52 -msgid "Office hours" -msgstr "Heures de bureau" +#: src/Command/CollectCarbonIntensityCommand.php:104 +msgid "Address:" +msgstr "Adresse:" -#: src/AbstractType.php:64 src/Dashboard/Grid.php:68 -#: src/Dashboard/Grid.php:133 src/Dashboard/Grid.php:234 -msgid "Carbon" -msgstr "Carbon" +#: src/Command/CollectCarbonIntensityCommand.php:107 +msgid "Zone:" +msgstr "Zone:" -#: src/CronTask.php:64 -msgid "Find the Alpha3 country code (ISO3166)" -msgstr "Trouver le code pays Alpha3 (ISO3166)" +#: src/Command/CollectCarbonIntensityCommand.php:123 +#: src/Command/CreateFakeCarbonIntensityCommand.php:67 +msgid "Creating data source name" +msgstr "Création du nom de la source de données" -#: src/CronTask.php:65 -msgid "Maximum number of locations to solve" -msgstr "Nombre maximal de lieux à résoudre" +#: src/Command/CollectCarbonIntensityCommand.php:130 +msgid "This source does not exist" +msgstr "" + +#: src/Command/CollectCarbonIntensityCommand.php:149 +msgid "The zone is not handled by the data source" +msgstr "" + +#: src/Command/CollectCarbonIntensityCommand.php:155 +msgid "Reading data..." +msgstr "Lecture des données..." + +#: src/Command/CreateFakeCarbonIntensityCommand.php:78 +msgid "Creating data zone name" +msgstr "Création du nom de la zone de données" + +#: src/Command/CreateFakeCarbonIntensityCommand.php:89 +msgid "Creating fake data..." +msgstr "Création de données factices..." + +#: src/Command/ExportDashboardCommand.php:68 +msgid "Updating the report dashboard description" +msgstr "Mise à jour de la description du tableau de bord du rapport" -#: src/CronTask.php:70 +#: src/Command/ExportDashboardCommand.php:73 +msgid "Dashboard not found" +msgstr "Tableau de bord non trouvé" + +#: src/Command/ExportDashboardCommand.php:99 +#, php-format +msgid "Dashboard description saved to %s" +msgstr "Descrition du tableau de bord enregistré dans %s" + +#: src/Command/CreateTestInventoryCommand.php:145 +msgid "Creating test inventory" +msgstr "Création de l'inventaire de test" + +#: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 +#: src/ComputerType.php:70 src/MonitorType.php:50 +msgid "Power consumption" +msgstr "Puissance consommée" + +#: src/UsageInfo.php:62 +msgid "Usage informations" +msgstr "Informations d'utilisation" + +#: src/UsageInfo.php:94 src/AbstractModel.php:54 src/Location.php:73 +#: src/AbstractType.php:55 src/Profile.php:45 +msgid "Environmental impact" +msgstr "Impact environnemental" + +#: src/UsageInfo.php:241 +#, php-format +msgid "%s More information %s" +msgstr "" + +#: src/DataSource/Lca/Boaviztapi/Config.php:100 +msgid "Invalid Boavizta API URL" +msgstr "URL vers l'API de Boavizta invalide" + +#: src/DataSource/Lca/Boaviztapi/Config.php:108 +msgid "Connection to Boavizta API established" +msgstr "Connexion à l'API Boavizta établie" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:56 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:53 +msgid "Resource diagnosis" +msgstr "" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:71 +msgid "Collect carbon intensities from RTE" +msgstr "Collecte les intensités carbone depuis RTE" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:89 msgid "Download carbon emissions from RTE" msgstr "Télécharge les émissions de carbone depuis RTE" -#: src/CronTask.php:71 src/CronTask.php:77 +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:90 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:87 +#: src/CronTask.php:107 msgid "Maximum number of entries to download" msgstr "Nombre maximum d'éléments à télécharger" -#: src/CronTask.php:76 -msgid "Download carbon emissions from ElectricityMap" -msgstr "Téléchargement des émissions de carbone depuis ElectricityMap" +#: src/DataSource/CarbonIntensity/AbstractCronTask.php:103 +#: src/Source_Zone.php:537 +msgid "End" +msgstr "Fin" -#: src/CronTask.php:82 -msgid "Compute usage environnemental impact for all assets" -msgstr "Compute usage environnemental impact for all assets" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:68 +msgid "Collect carbon intensities from Electricity Maps" +msgstr "" -#: src/CronTask.php:83 src/CronTask.php:88 -msgid "Maximum number of entries to calculate" -msgstr "Nombre maximum d'éléments à calculer" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:86 +msgid "Download carbon emissions from Electricity Maps" +msgstr "" -#: src/CronTask.php:87 -msgid "Compute embodied environnemental impact for all assets" -msgstr "Calculer l'impact environnemental intrinsèque de tous les actifs" +#: src/AbstractImpact.php:125 src/CarbonEmission.php:151 +msgid "Date of evaluation" +msgstr "Date d'évaluation" -#: src/CronTask.php:211 -msgid "No zone to download" -msgstr "Aucune zone à télécharger" +#: src/AbstractImpact.php:132 src/CarbonEmission.php:158 +msgid "Engine" +msgstr "Moteur" -#: src/NetworkEquipmentType.php:50 src/MonitorType.php:50 -#: src/SearchOptions.php:142 src/ComputerType.php:70 -msgid "Power consumption" -msgstr "Puissance consommée" +#: src/AbstractImpact.php:139 src/CarbonEmission.php:165 +msgid "Engine version" +msgstr "Version du moteur" + +#: src/DataTracking/AbstractTracked.php:77 +msgid "Impact not evaluated" +msgstr "Impact non évalué" + +#: src/DataTracking/AbstractTracked.php:78 +msgid "Unspecified quality" +msgstr "Qualité non spécifiée" + +#: src/DataTracking/AbstractTracked.php:79 +msgid "Manual data" +msgstr "Données manuelles" + +#: src/DataTracking/AbstractTracked.php:80 +msgid "Estimated data" +msgstr "Données estimées" + +#: src/DataTracking/AbstractTracked.php:81 +msgid "Downsampled data" +msgstr "Données sous-échantillonnées" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:83 -#: src/Impact/Usage/AbstractUsageImpact.php:83 +#: src/DataTracking/AbstractTracked.php:82 +msgid "Measured data" +msgstr "Données mesurées" + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 +#: src/Impact/Usage/AbstractUsageImpact.php:91 msgid "grams of carbon dioxyde equivalent" msgstr "grammes d'équivalent dioxyde de carbone" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:85 -#: src/Impact/Usage/AbstractUsageImpact.php:85 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 +#: src/Impact/Usage/AbstractUsageImpact.php:93 msgid "grams of antimony equivalent" msgstr "Grammes d'équivalent antimoine" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:87 -#: src/Impact/Usage/AbstractUsageImpact.php:87 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 +#: src/Impact/Usage/AbstractUsageImpact.php:95 msgid "joules" msgstr "joules" -#: src/Impact/History/AbstractAsset.php:364 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 +msgid "Connection to Boavizta failed." +msgstr "Connexion à Boavizta échouée." + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 +msgid "Embodied impact evaluation falied." +msgstr "" + +#: src/Impact/History/AbstractAsset.php:370 msgid "Error while calculating impact" msgstr "Erreur pendant le calcul d'impact" -#: src/Impact/History/AbstractAsset.php:372 +#: src/Impact/History/AbstractAsset.php:378 msgid "Nothing to calculate" msgstr "Rien à calculer" -#: src/Impact/History/AbstractAsset.php:378 +#: src/Impact/History/AbstractAsset.php:384 #, php-format msgid "%d entries calculated" msgstr "%d entrées calculées" -#: src/CarbonIntensitySource.php:45 -msgid "Carbon intensity source" -msgid_plural "Carbon intensity sources" -msgstr[0] "Source d'intensité carbone" -msgstr[1] "Sources d'intensité carbone" -msgstr[2] "Sources d'intensité carbone" +#: src/Impact/Type.php:159 +msgid "Embodied Global warming potential" +msgstr "" -#: src/Report.php:50 -msgid "Carbon report" -msgid_plural "Carbon reports" -msgstr[0] "Rapport carbone" -msgstr[1] "Rapports carbone" -msgstr[2] "Rapports carbone" +#: src/Impact/Type.php:160 +msgid "Embodied Abiotic depletion potential" +msgstr "" -#: src/Report.php:102 -#, php-format +#: src/Impact/Type.php:161 +msgid "Embodied Primary energy consumed" +msgstr "" + +#: src/Impact/Type.php:162 +msgid "Embodied Climate change - Contribution of biogenic emissions" +msgstr "" + +#: src/Impact/Type.php:163 +msgid "Embodied Climate change - Contribution of fossil fuel emissions" +msgstr "" + +#: src/Impact/Type.php:164 msgid "" -"Demo mode enabled. The data below are not representative of the assets in " -"the database. %sDisable demo mode%s" +"Embodied Climate change - Contribution of emissions from land use change" msgstr "" -"Mode démo activé. Les données ci-dessous ne sont pas représentatives des " -"ressources de la base de données. %sDésactiver le mode démo%s" -#: src/CarbonEmission.php:48 -msgid "Carbon Emission" -msgid_plural "Carbon Emissions" -msgstr[0] "Emission de carbone" -msgstr[1] "Emissions de carbone" -msgstr[2] "Emissions de carbone" +#: src/Impact/Type.php:165 +msgid "Embodied Emissions of radionizing substances" +msgstr "" -#: src/CarbonEmission.php:119 -msgid "Energy" -msgstr "Energie" +#: src/Impact/Type.php:166 +msgid "Embodied Land use" +msgstr "" -#: src/CarbonEmission.php:127 -msgid "Emission" -msgstr "Emission" +#: src/Impact/Type.php:167 +msgid "Embodied Depletion of the ozone layer" +msgstr "" -#: src/CarbonEmission.php:135 -msgid "Energy quality" -msgstr "Qualité de l'énergie" +#: src/Impact/Type.php:168 +msgid "Embodied Fine particle emissions" +msgstr "" -#: src/CarbonEmission.php:143 -msgid "Emission quality" -msgstr "Qualité de l'émission" +#: src/Impact/Type.php:169 +msgid "Embodied Photochemical ozone formation" +msgstr "" -#: src/CarbonEmission.php:150 src/UsageImpact.php:149 -#: src/EmbodiedImpact.php:120 -msgid "Date of evaluation" -msgstr "Date d'évaluation" +#: src/Impact/Type.php:170 +msgid "Embodied Use of water resources" +msgstr "" -#: src/CarbonEmission.php:157 src/UsageImpact.php:156 -#: src/EmbodiedImpact.php:127 -msgid "Engine" -msgstr "Moteur" +#: src/Impact/Type.php:171 +msgid "Embodied Material input per unit of service" +msgstr "" -#: src/CarbonEmission.php:164 src/UsageImpact.php:163 -#: src/EmbodiedImpact.php:134 -msgid "Engine version" -msgstr "Version du moteur" +#: src/Impact/Type.php:172 +msgid "Embodied Use of mineral and metal resources" +msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:67 -#: src/Command/CollectCarbonIntensityCommand.php:68 -msgid "Creating data source name" -msgstr "Création du nom de la source de données" +#: src/Impact/Type.php:173 +msgid "Embodied Use of fossil resources (including nuclear)" +msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:78 -msgid "Creating data zone name" -msgstr "Création du nom de la zone de données" +#: src/Impact/Type.php:174 +msgid "Embodied Acidification" +msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:89 -msgid "Creating fake data..." -msgstr "Création de données factices..." +#: src/Impact/Type.php:175 +msgid "Embodied Freshwater ecotoxicity" +msgstr "" -#: src/Command/ExportDashboardCommand.php:69 -msgid "Updating the report dashboard description" -msgstr "Mise à jour de la description du tableau de bord du rapport" +#: src/Impact/Type.php:178 +msgid "Embodied Eutrophication of freshwater" +msgstr "" -#: src/Command/ExportDashboardCommand.php:74 -msgid "Dashboard not found" -msgstr "Tableau de bord non trouvé" +#: src/Impact/Type.php:179 +msgid "Embodied Eutrophication of marine waters" +msgstr "" -#: src/Command/ExportDashboardCommand.php:100 -#, php-format -msgid "Dashboard description saved to %s" -msgstr "Descrition du tableau de bord enregistré dans %s" +#: src/Impact/Type.php:180 +msgid "Embodied Terrestrial eutrophication" +msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:85 -msgid "Zone not found" -msgstr "Zone non trouvée" +#: src/Impact/Type.php:195 +msgid "Usage Global warming potential" +msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:91 -msgid "Reading eco2mix data..." -msgstr "Lecture des données Eco2mix" +#: src/Impact/Type.php:196 +msgid "Usage Abiotic depletion potential" +msgstr "" -#: src/Command/CreateTestInventoryCommand.php:146 -msgid "Creating test inventory" -msgstr "Création de l'inventaire de test" +#: src/Impact/Type.php:197 +msgid "Usage Primary energy consumed" +msgstr "" -#: src/Config.php:130 -msgid "Invalid Boavizta API URL" -msgstr "URL vers l'API de Boavizta invalide" +#: src/Impact/Type.php:198 +msgid "Usage Climate change - Contribution of biogenic emissions" +msgstr "" -#: src/Config.php:138 -msgid "Connection to Boavizta API established" -msgstr "Connexion à l'API Boavizta établie" +#: src/Impact/Type.php:199 +msgid "Usage Climate change - Contribution of fossil fuel emissions" +msgstr "" -#: src/Zone.php:53 -msgid "Carbon intensity zone" -msgid_plural "Carbon intensity zones" -msgstr[0] "Zone d'intensité carbone" -msgstr[1] "Zones d'intensité carbone" -msgstr[2] "Zones d'intensité carbone" +#: src/Impact/Type.php:200 +msgid "Usage Climate change - Contribution of emissions from land use change" +msgstr "" -#: src/Zone.php:126 src/Zone.php:141 -msgid "Data source for historical calculation" -msgstr "Source de données pour le calcul de l'historique" +#: src/Impact/Type.php:201 +msgid "Usage Emissions of radionizing substances" +msgstr "" -#: src/Zone.php:157 src/CarbonIntensitySource_Zone.php:86 -#: src/CarbonIntensitySource_Zone.php:169 -#: src/CarbonIntensitySource_Zone.php:264 -msgid "Download enabled" -msgstr "Téléchargement activé" +#: src/Impact/Type.php:202 +msgid "Usage Land use" +msgstr "" -#: src/UsageInfo.php:59 -msgid "Usage informations" -msgstr "Informations d'utilisation" +#: src/Impact/Type.php:203 +msgid "Usage Depletion of the ozone layer" +msgstr "" -#: src/UsageInfo.php:214 src/Dashboard/Widget.php:848 -#, php-format -msgid "" -"Evaluates the carbon emission in CO₂ equivalent. %s More information %s" +#: src/Impact/Type.php:204 +msgid "Usage Fine particle emissions" msgstr "" -"Évalue les émissions de carbone en équivalent CO₂. %sPlus d'informations%s" -#: src/UsageInfo.php:222 src/Dashboard/Widget.php:884 -#: src/Dashboard/Widget.php:921 -#, php-format -msgid "" -"Evaluates the consumption of non renewable resources in Antimony equivalent." -" %s More information %s" +#: src/Impact/Type.php:205 +msgid "Usage Photochemical ozone formation" msgstr "" -"Évalue la consommation de ressources non renouvelables en équivalent " -"antimoine. %sPlus d'informations%s" -#: src/UsageInfo.php:234 src/Dashboard/Widget.php:1102 -#, php-format -msgid "Evaluates the primary energy consumed. %s More information %s" -msgstr "Évalue la consommation d'énergie primaire. %sPlus d'informations%s" +#: src/Impact/Type.php:206 +msgid "Usage Use of water resources" +msgstr "" -#: src/ComputerUsageProfile.php:52 -msgid "Computer usage profile" -msgid_plural "Computer usage profiles" -msgstr[0] "Profil d'utilisation d'ordinateur" -msgstr[1] "Profils d'utilisation d'ordinateur" -msgstr[2] "Profils d'utilisation d'ordinateur" +#: src/Impact/Type.php:207 +msgid "Usage Material input per unit of service" +msgstr "" -#: src/ComputerUsageProfile.php:94 -msgid "Start time is invalid" -msgstr "Heure de début invalide" +#: src/Impact/Type.php:208 +msgid "Usage Use of mineral and metal resources" +msgstr "" -#: src/ComputerUsageProfile.php:99 -msgid "Stop time is invalid" -msgstr "Heure de fin invalide" +#: src/Impact/Type.php:209 +msgid "Usage Use of fossil resources (including nuclear)" +msgstr "" -#: src/Dashboard/Widget.php:57 src/Dashboard/Grid.php:317 -msgid "Environmental impact information video" -msgstr "Vidéo sur l'impact environnemental" +#: src/Impact/Type.php:210 +msgid "Usage Acidification" +msgstr "" -#: src/Dashboard/Widget.php:64 -msgid "Methodology information" -msgstr "Information sur la méthodologie" +#: src/Impact/Type.php:211 +msgid "Usage Freshwater ecotoxicity" +msgstr "" -#: src/Dashboard/Widget.php:73 -msgid "Total Carbon Emission" -msgstr "Emission de carbone totale" +#: src/Impact/Type.php:214 src/Impact/Type.php:342 +msgid "Usage Eutrophication of freshwater" +msgstr "" -#: src/Dashboard/Widget.php:80 -msgid "Monthly Carbon Emission" -msgstr "Emission de carbone mensuelle" +#: src/Impact/Type.php:215 src/Impact/Type.php:343 +msgid "Usage Eutrophication of marine waters" +msgstr "" -#: src/Dashboard/Widget.php:87 src/Dashboard/Widget.php:599 -#: src/Dashboard/Grid.php:281 -msgid "Biggest monthly averaged carbon emission per model" -msgstr "Émissions de carbone mensuelles moyennes les plus élevées par modèle" +#: src/Impact/Type.php:216 src/Impact/Type.php:344 +msgid "Usage Terrestrial eutrophication" +msgstr "" -#: src/Dashboard/Widget.php:95 -msgid "Carbon Emission Per month" -msgstr "Emissions de carbone mensuelle" +#: src/Impact/Type.php:231 +msgid "Total Global warming potential" +msgstr "" -#: src/Dashboard/Widget.php:125 -msgid "Embodied consumed primary energy" -msgstr "Consommation d'énergie primaire incorporée" +#: src/Impact/Type.php:232 +msgid "Total Abiotic depletion potential" +msgstr "" -#: src/Dashboard/Widget.php:137 -msgid "Unhandled Computers" -msgstr "Ordinateurs non gérés" +#: src/Impact/Type.php:233 +msgid "Total Primary energy consumed" +msgstr "" -#: src/Dashboard/Widget.php:148 -msgid "Unhandled Monitors" -msgstr "Moniteurs non gérés" +#: src/Impact/Type.php:234 +msgid "Total Climate change - Contribution of biogenic emissions" +msgstr "" -#: src/Dashboard/Widget.php:159 -msgid "Unhandled Network equipments" -msgstr "Equipements réseau non gérés" +#: src/Impact/Type.php:235 +msgid "Total Climate change - Contribution of fossil fuel emissions" +msgstr "" -#: src/Dashboard/Widget.php:170 -msgid "Radar chart" -msgstr "Graphique radar" +#: src/Impact/Type.php:236 +msgid "Total Climate change - Contribution of emissions from land use change" +msgstr "" -#: src/Dashboard/Widget.php:496 src/Dashboard/Provider.php:918 -msgid "Consumed energy and carbon emission per month" -msgstr "Energie consommée et émission de carbone par mois" +#: src/Impact/Type.php:237 +msgid "Total Emissions of radionizing substances" +msgstr "" -#: src/Dashboard/Widget.php:541 src/Dashboard/Widget.php:556 -#: src/Dashboard/DemoProvider.php:125 src/Dashboard/DemoProvider.php:226 -#: src/Dashboard/Provider.php:1023 -msgid "Carbon emission" -msgstr "Emission de carbone" +#: src/Impact/Type.php:238 +msgid "Total Land use" +msgstr "" -#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:559 -#: src/Dashboard/DemoProvider.php:143 src/Dashboard/DemoProvider.php:239 -#: src/Dashboard/Provider.php:1039 -msgid "Consumed energy" -msgstr "Energie consommée" +#: src/Impact/Type.php:239 +msgid "Total Depletion of the ozone layer" +msgstr "" -#: src/Dashboard/Widget.php:741 -#, php-format -msgid "" -"Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " -"months. %s More information %s" +#: src/Impact/Type.php:240 +msgid "Total Fine particle emissions" +msgstr "" + +#: src/Impact/Type.php:241 +msgid "Total Photochemical ozone formation" +msgstr "" + +#: src/Impact/Type.php:242 +msgid "Total Use of water resources" +msgstr "" + +#: src/Impact/Type.php:243 +msgid "Total Material input per unit of service" +msgstr "" + +#: src/Impact/Type.php:244 +msgid "Total Use of mineral and metal resources" +msgstr "" + +#: src/Impact/Type.php:245 +msgid "Total Use of fossil resources (including nuclear)" +msgstr "" + +#: src/Impact/Type.php:246 +msgid "Total Acidification" +msgstr "" + +#: src/Impact/Type.php:247 +msgid "Total Freshwater ecotoxicity" +msgstr "" + +#: src/Impact/Type.php:250 +msgid "Total Eutrophication of freshwater" +msgstr "" + +#: src/Impact/Type.php:251 +msgid "Total Eutrophication of marine waters" +msgstr "" + +#: src/Impact/Type.php:252 +msgid "Total Terrestrial eutrophication" +msgstr "" + +#: src/Impact/Type.php:323 +msgid "Carbon emission in CO₂ equivalent" +msgstr "" + +#: src/Impact/Type.php:324 +msgid "Consumption of non renewable resources in Antimony equivalent." +msgstr "" + +#: src/Impact/Type.php:325 +msgid "Primary energy consumed." +msgstr "" + +#: src/Impact/Type.php:332 +msgid "Incidence of disease" +msgstr "" + +#: src/Source.php:46 +msgid "Carbon intensity source" +msgid_plural "Carbon intensity sources" +msgstr[0] "Source d'intensité carbone" +msgstr[1] "Sources d'intensité carbone" +msgstr[2] "Sources d'intensité carbone" + +#: src/SearchOptions.php:184 src/SearchOptions.php:316 +#: src/SearchOptions.php:329 src/SearchOptions.php:342 +msgid "Ignore environmental impact" +msgstr "Ignorer l'impact environnemental" + +#: src/SearchOptions.php:241 src/SearchOptions.php:365 +#: src/SearchOptions.php:442 +msgid "Is historizable" +msgstr "Est historisable" + +#: src/ComputerType.php:56 +msgid "Unspecified" +msgstr "Non spécifié" + +#: src/ComputerType.php:58 +msgid "Server" +msgstr "Serveur" + +#: src/ComputerType.php:59 +msgid "Laptop" +msgstr "Portable" + +#: src/ComputerType.php:60 +msgid "Tablet" +msgstr "Tablette" + +#: src/ComputerType.php:61 +msgid "Smartphone" +msgstr "Smartphone" + +#: src/UsageImpact.php:39 +msgid "Usage impact" +msgid_plural "Usage impacts" +msgstr[0] "Impact d'utilisation" +msgstr[1] "Impacts d'utilisation" +msgstr[2] "Impacts d'utilisation" + +#: src/AbstractModel.php:62 src/Dashboard/Grid.php:58 +#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 +#: src/AbstractType.php:63 +msgid "Carbon" +msgstr "Carbon" + +#: src/AbstractModel.php:197 +msgid "Quality" msgstr "" -"Évalue les émissions de carbone liées à l'utilisation, exprimées en " -"équivalent CO₂, au cours des deux derniers mois. %sPlus d'informations%s" -#: src/Dashboard/Widget.php:807 +#: src/Report.php:49 +msgid "Carbon report" +msgid_plural "Carbon reports" +msgstr[0] "Rapport carbone" +msgstr[1] "Rapports carbone" +msgstr[2] "Rapports carbone" + +#: src/Report.php:101 #, php-format msgid "" -"Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " -"elapsed months. %s More information %s" +"Demo mode enabled. The data below are not representative of the assets in " +"the database. %sDisable demo mode%s" msgstr "" -"Évalue les émissions de carbone liées à l'utilisation, exprimées en " -"équivalent CO₂, au cours des 12 derniers mois. %sPlus d'informations%s" +"Mode démo activé. Les données ci-dessous ne sont pas représentatives des " +"ressources de la base de données. %sDésactiver le mode démo%s" -#: src/Dashboard/Widget.php:1092 -msgid "Total embodied primary energy" -msgstr "Energie primaire incorporée totale" +#: src/ComputerUsageProfile.php:51 +msgid "Computer usage profile" +msgid_plural "Computer usage profiles" +msgstr[0] "Profil d'utilisation d'ordinateur" +msgstr[1] "Profils d'utilisation d'ordinateur" +msgstr[2] "Profils d'utilisation d'ordinateur" -#: src/Dashboard/Widget.php:1161 -msgid "Handled percentage" -msgstr "Pourcentage géré" +#: src/ComputerUsageProfile.php:117 +msgid "Start time is invalid" +msgstr "Heure de début invalide" -#: src/Dashboard/DemoProvider.php:49 src/Dashboard/DemoProvider.php:125 -#: src/Dashboard/DemoProvider.php:226 src/Dashboard/DemoProvider.php:415 -#: src/Dashboard/Provider.php:169 src/Dashboard/Provider.php:560 -#: src/Dashboard/Provider.php:730 src/Dashboard/Provider.php:1023 -#: src/Dashboard/Provider.php:1025 -msgid "CO₂eq" -msgstr "CO₂eq" +#: src/ComputerUsageProfile.php:122 +msgid "Stop time is invalid" +msgstr "Heure de fin invalide" -#: src/Dashboard/DemoProvider.php:83 src/Dashboard/DemoProvider.php:101 -#: src/Dashboard/Provider.php:792 src/Dashboard/Provider.php:826 -msgid "Sbeq" +#: src/Source_Zone.php:72 +msgid "Source name" +msgstr "Nom de la source" + +#: src/Source_Zone.php:80 +msgid "Zone name" +msgstr "Nom de la zone" + +#: src/Source_Zone.php:88 src/Source_Zone.php:171 src/Source_Zone.php:268 +#: src/Zone.php:127 +msgid "Download enabled" +msgstr "Téléchargement activé" + +#: src/Source_Zone.php:96 +msgid "Code" +msgstr "Code" + +#: src/Source_Zone.php:150 +msgid "Not downloadable" +msgstr "Non téléchargeable" + +#: src/Source_Zone.php:150 +msgid "This is a fallback source, there is no real-time data available" msgstr "" +"Il s'agit d'une source de secours, aucune donnée en temps réel n'est " +"disponible." -#: src/Dashboard/DemoProvider.php:113 -msgid "Usage carbon emission per month" -msgstr "Emission de carbone mensuelle d'utilisation" +#: src/Source_Zone.php:172 +msgid "Source for historical" +msgstr "Source pour l'historique" -#: src/Dashboard/DemoProvider.php:279 src/Dashboard/Provider.php:430 -#, php-format -msgid "plugin carbon - handled %s" -msgstr "Plugin Carbon - Géré %s" +#: src/Source_Zone.php:411 +msgid "Enable / Disable" +msgstr "Activer / Désactiver" -#: src/Dashboard/DemoProvider.php:280 src/Dashboard/Provider.php:431 -#, php-format -msgid "plugin carbon - unhandled %s" -msgstr "Plugin Carbon - non géré %s" +#: src/CronTask.php:100 +msgid "Find the Alpha3 country code (ISO3166)" +msgstr "Trouver le code pays Alpha3 (ISO3166)" -#: src/Dashboard/DemoProvider.php:311 -msgid "plugin carbon - handled assets ratio" -msgstr "Plugin carbon - Taux d'équipements gérés" +#: src/CronTask.php:101 +msgid "Maximum number of locations to solve" +msgstr "Nombre maximal de lieux à résoudre" -#: src/Dashboard/DemoProvider.php:334 src/Dashboard/Provider.php:398 -msgid "Handled" -msgstr "Géré" +#: src/CronTask.php:106 +msgid "Download carbon emissions from Watttime" +msgstr "Télécharger les émissions de carbone de Watttime" + +#: src/CronTask.php:112 +msgid "Compute usage environmental impact for all assets" +msgstr "Calculer l'impact environnemental de l'utilisation de tous les actifs" + +#: src/CronTask.php:113 src/CronTask.php:118 +msgid "Maximum number of entries to calculate" +msgstr "Nombre maximum d'éléments à calculer" + +#: src/CronTask.php:117 +msgid "Compute embodied environmental impact for all assets" +msgstr "Calculer l'impact environnemental intrinsèque de tous les actifs" + +#: src/CronTask.php:278 +msgid "No zone to download" +msgstr "Aucune zone à télécharger" + +#: src/Dashboard/Widget.php:55 src/Dashboard/Grid.php:310 +msgid "Environmental impact information video" +msgstr "Vidéo sur l'impact environnemental" + +#: src/Dashboard/Widget.php:62 +msgid "Methodology information" +msgstr "Information sur la méthodologie" + +#: src/Dashboard/Widget.php:71 +msgid "Total Carbon Emission" +msgstr "Emission de carbone totale" -#: src/Dashboard/DemoProvider.php:339 src/Dashboard/Provider.php:403 -msgid "Unhandled" -msgstr "Non géré" +#: src/Dashboard/Widget.php:78 +msgid "Monthly Carbon Emission" +msgstr "Emission de carbone mensuelle" -#: src/Dashboard/DemoProvider.php:362 src/Dashboard/DemoProvider.php:411 -#: src/Dashboard/Provider.php:548 -msgid "plugin carbon - Usage carbon emission" -msgstr "plugin Carbon - emission de carbone d'utilisation" +#: src/Dashboard/Widget.php:85 src/Dashboard/Widget.php:604 +#: src/Dashboard/Grid.php:268 +msgid "Biggest monthly averaged carbon emission per model" +msgstr "Émissions de carbone mensuelles moyennes les plus élevées par modèle" -#: src/Dashboard/Dashboard.php:69 -msgid "Carbon dioxyde intensity" -msgstr "Intensité de dioxyde de carbone" +#: src/Dashboard/Widget.php:93 +msgid "Carbon Emission Per month" +msgstr "Emissions de carbone mensuelle" -#: src/Dashboard/Grid.php:73 src/Dashboard/Provider.php:375 -msgid "Handled assets ratio" -msgstr "Taux d'équipements gérés" +#: src/Dashboard/Widget.php:100 src/Dashboard/Provider.php:733 +msgid "Usage abiotic depletion potential" +msgstr "potentiel d'épuisement abiotique lié à l'utilisation" -#: src/Dashboard/Grid.php:82 -msgid "Handled assets count" -msgstr "Nombre d'équipements non gérés" +#: src/Dashboard/Widget.php:130 +msgid "Impact criteria" +msgstr "" -#: src/Dashboard/Grid.php:145 -#, php-format -msgid "Handled %s" -msgstr "%s géré" +#: src/Dashboard/Widget.php:142 +msgid "Unhandled Computers" +msgstr "Ordinateurs non gérés" -#: src/Dashboard/Grid.php:156 -#, php-format -msgid "Unhandled %s" -msgstr "%s non géré " +#: src/Dashboard/Widget.php:153 +msgid "Unhandled Monitors" +msgstr "Moniteurs non gérés" -#: src/Dashboard/Grid.php:172 -msgid "Usage power consumption" -msgstr "Puissance consommée d'utilisation" +#: src/Dashboard/Widget.php:164 +msgid "Unhandled Network equipments" +msgstr "Equipements réseau non gérés" -#: src/Dashboard/Grid.php:178 -msgid "Usage carbon emission" -msgstr "Emission de carbon d'utilisation" +#: src/Dashboard/Widget.php:175 +msgid "Radar chart" +msgstr "Graphique radar" -#: src/Dashboard/Grid.php:192 src/Dashboard/Grid.php:295 -#: src/Dashboard/Provider.php:893 -msgid "Embodied global warming potential" -msgstr "Potentiel de réchauffement climatique incorporé" +#: src/Dashboard/Widget.php:501 src/Dashboard/Provider.php:1107 +msgid "Consumed energy and carbon emission per month" +msgstr "Energie consommée et émission de carbone par mois" -#: src/Dashboard/Grid.php:198 src/Dashboard/Grid.php:307 -msgid "Embodied primary energy consumed" -msgstr "Énergie primaire incorporée consommée" +#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:561 +#: src/Dashboard/Provider.php:1212 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "Carbon emission" +msgstr "Emission de carbone" -#: src/Dashboard/Grid.php:212 src/UsageImpact.php:105 -msgid "Global warming potential" -msgstr "Potentiel de réchauffement climatique" +#: src/Dashboard/Widget.php:551 src/Dashboard/Widget.php:564 +#: src/Dashboard/Provider.php:1228 src/Dashboard/DemoProvider.php:106 +#: src/Dashboard/DemoProvider.php:202 +msgid "Consumed energy" +msgstr "Energie consommée" -#: src/Dashboard/Grid.php:218 src/UsageImpact.php:119 -msgid "Abiotic depletion potential" -msgstr "Potentiel d'épuisement des ressources abiotiques" +#: src/Dashboard/Widget.php:746 +#, php-format +msgid "" +"Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " +"months. %s More information %s" +msgstr "" +"Évalue les émissions de carbone liées à l'utilisation, exprimées en " +"équivalent CO₂, au cours des deux derniers mois. %sPlus d'informations%s" -#: src/Dashboard/Grid.php:245 +#: src/Dashboard/Widget.php:812 #, php-format -msgid "Unhandled %s ratio" -msgstr "Taux de %s non géré(e)s" +msgid "" +"Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " +"elapsed months. %s More information %s" +msgstr "" +"Évalue les émissions de carbone liées à l'utilisation, exprimées en " +"équivalent CO₂, au cours des 12 derniers mois. %sPlus d'informations%s" -#: src/Dashboard/Grid.php:257 -msgid "Usage carbon emission year to date" +#: src/Dashboard/Widget.php:854 +msgid "More information" msgstr "" -"Émissions de carbone liées à l'utilisation de la dernière année à date" -#: src/Dashboard/Grid.php:263 -msgid "Monthly carbon emission" -msgstr "Emission de carbone mensuelle" +#: src/Dashboard/Widget.php:893 +#, php-format +msgid "" +"Evaluates the consumption of non renewable resources in Antimony equivalent." +" %s More information %s" +msgstr "" +"Évalue la consommation de ressources non renouvelables en équivalent " +"antimoine. %sPlus d'informations%s" -#: src/Dashboard/Grid.php:272 -msgid "Usage global warming potential chart" -msgstr "Graphique du potentiel de réchauffement climatique" +#: src/Dashboard/Widget.php:1097 +msgid "Handled percentage" +msgstr "Pourcentage géré" -#: src/Dashboard/Grid.php:322 -msgid "Environmental impact methodology_information" -msgstr "" +#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 +#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 +#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "CO₂eq" +msgstr "CO₂eq" -#: src/Dashboard/Provider.php:171 src/Dashboard/Provider.php:1010 -#: src/Toolbox.php:201 +#: src/Dashboard/Provider.php:195 src/Dashboard/Provider.php:318 +#: src/Dashboard/Provider.php:1199 src/Toolbox.php:243 msgid "g" msgstr "g" -#: src/Dashboard/Provider.php:172 src/Dashboard/Provider.php:1011 -#: src/Toolbox.php:202 +#: src/Dashboard/Provider.php:196 src/Dashboard/Provider.php:319 +#: src/Dashboard/Provider.php:1200 src/Toolbox.php:244 msgid "Kg" msgstr "Kg" -#: src/Dashboard/Provider.php:173 src/Dashboard/Provider.php:1012 -#: src/Toolbox.php:203 +#: src/Dashboard/Provider.php:197 src/Dashboard/Provider.php:320 +#: src/Dashboard/Provider.php:1201 src/Toolbox.php:245 msgid "t" msgstr "t" -#: src/Dashboard/Provider.php:174 src/Dashboard/Provider.php:1013 -#: src/Toolbox.php:204 +#: src/Dashboard/Provider.php:198 src/Dashboard/Provider.php:321 +#: src/Dashboard/Provider.php:1202 src/Toolbox.php:246 msgid "Kt" msgstr "Kt" -#: src/Dashboard/Provider.php:175 src/Dashboard/Provider.php:1014 -#: src/Toolbox.php:205 +#: src/Dashboard/Provider.php:199 src/Dashboard/Provider.php:322 +#: src/Dashboard/Provider.php:1203 src/Toolbox.php:247 msgid "Mt" msgstr "Mt" -#: src/Dashboard/Provider.php:176 src/Dashboard/Provider.php:1015 -#: src/Toolbox.php:206 +#: src/Dashboard/Provider.php:200 src/Dashboard/Provider.php:323 +#: src/Dashboard/Provider.php:1204 src/Toolbox.php:248 msgid "Gt" msgstr "Gt" -#: src/Dashboard/Provider.php:177 src/Dashboard/Provider.php:1016 -#: src/Toolbox.php:207 +#: src/Dashboard/Provider.php:201 src/Dashboard/Provider.php:324 +#: src/Dashboard/Provider.php:1205 src/Toolbox.php:249 msgid "Tt" msgstr "Tt" -#: src/Dashboard/Provider.php:178 src/Dashboard/Provider.php:1017 -#: src/Toolbox.php:208 +#: src/Dashboard/Provider.php:202 src/Dashboard/Provider.php:325 +#: src/Dashboard/Provider.php:1206 src/Toolbox.php:250 msgid "Pt" msgstr "Pt" -#: src/Dashboard/Provider.php:179 src/Dashboard/Provider.php:1018 -#: src/Toolbox.php:209 +#: src/Dashboard/Provider.php:203 src/Dashboard/Provider.php:326 +#: src/Dashboard/Provider.php:1207 src/Toolbox.php:251 msgid "Et" msgstr "Et" -#: src/Dashboard/Provider.php:180 src/Dashboard/Provider.php:1019 -#: src/Toolbox.php:210 +#: src/Dashboard/Provider.php:204 src/Dashboard/Provider.php:327 +#: src/Dashboard/Provider.php:1208 src/Toolbox.php:252 msgid "Zt" msgstr "Zt" -#: src/Dashboard/Provider.php:181 src/Dashboard/Provider.php:1020 -#: src/Toolbox.php:211 +#: src/Dashboard/Provider.php:205 src/Dashboard/Provider.php:328 +#: src/Dashboard/Provider.php:1209 src/Toolbox.php:253 msgid "Yt" msgstr "Yt" -#: src/Dashboard/Provider.php:330 +#: src/Dashboard/Provider.php:427 msgid "handled assets ratio" msgstr "Taux d'équipements gérés" -#: src/Dashboard/Provider.php:479 +#: src/Dashboard/Provider.php:473 src/Dashboard/Grid.php:63 +msgid "Handled assets ratio" +msgstr "Taux d'équipements gérés" + +#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 +msgid "Handled" +msgstr "Géré" + +#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 +msgid "Unhandled" +msgstr "Non géré" + +#: src/Dashboard/Provider.php:507 +msgid "Ignored" +msgstr "Ignoré" + +#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 +#, php-format +msgid "plugin carbon - handled %s" +msgstr "Plugin Carbon - Géré %s" + +#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 +#, php-format +msgid "plugin carbon - unhandled %s" +msgstr "Plugin Carbon - non géré %s" + +#: src/Dashboard/Provider.php:584 +#, php-format +msgid "plugin carbon - ignored %s" +msgstr "plugin carbon - ignoré %s" + +#: src/Dashboard/Provider.php:632 msgid "plugin carbon - Total usage power consumption" msgstr "plugin Carbon - Puissance consommée totale d'utilisation" -#: src/Dashboard/Provider.php:718 -msgid "Total embodied global warming potential" -msgstr "Potentiel de réchauffement climatique total incorporé" +#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 +msgid "plugin carbon - Usage carbon emission" +msgstr "plugin Carbon - emission de carbone d'utilisation" + +#: src/Dashboard/Provider.php:747 +msgid "Sbeq" +msgstr "Sbeq" -#: src/Dashboard/Provider.php:846 +#: src/Dashboard/Provider.php:1035 msgid "Total abiotic depletion potential" msgstr "Potentiel total d'épuisement abiotique" -#: src/Dashboard/Provider.php:865 +#: src/Dashboard/Provider.php:1051 +msgid "Embodied abiotic depletion potential" +msgstr "Potentiel d'épuisement abiotique incorporé" + +#: src/Dashboard/Provider.php:1054 msgid "Total usage abiotic depletion potential" msgstr "potentiel d'épuisement abiotique total" -#: src/Dashboard/Provider.php:877 +#: src/Dashboard/Provider.php:1066 msgid "Total global warming potential" msgstr "Potentiel total de réchauffement climatique" -#: src/Dashboard/Provider.php:896 +#: src/Dashboard/Provider.php:1082 +msgid "Embodied global warming potential" +msgstr "Potentiel de réchauffement climatique incorporé" + +#: src/Dashboard/Provider.php:1085 msgid "Total usage global warming potential" msgstr "potentiel de réchauffement climatique total lié à l'utilisation" -#: src/Dashboard/Provider.php:1029 src/Toolbox.php:287 +#: src/Dashboard/Provider.php:1218 src/Toolbox.php:316 msgid "KWh" msgstr "KWh" -#: src/Dashboard/Provider.php:1030 src/Toolbox.php:288 +#: src/Dashboard/Provider.php:1219 src/Toolbox.php:317 msgid "MWh" msgstr "MWh" -#: src/Dashboard/Provider.php:1031 src/Toolbox.php:289 +#: src/Dashboard/Provider.php:1220 src/Toolbox.php:318 msgid "GWh" msgstr "GWh" -#: src/Dashboard/Provider.php:1032 src/Toolbox.php:290 +#: src/Dashboard/Provider.php:1221 src/Toolbox.php:319 msgid "TWh" msgstr "TWh" -#: src/Dashboard/Provider.php:1033 src/Toolbox.php:291 +#: src/Dashboard/Provider.php:1222 src/Toolbox.php:320 msgid "PWh" msgstr "PWh" -#: src/Dashboard/Provider.php:1034 src/Toolbox.php:292 +#: src/Dashboard/Provider.php:1223 src/Toolbox.php:321 msgid "EWh" msgstr "EWh" -#: src/Dashboard/Provider.php:1035 src/Toolbox.php:293 +#: src/Dashboard/Provider.php:1224 src/Toolbox.php:322 msgid "ZWh" msgstr "ZWh" -#: src/Dashboard/Provider.php:1036 src/Toolbox.php:294 +#: src/Dashboard/Provider.php:1225 src/Toolbox.php:323 msgid "YWh" msgstr "YWh" -#: src/Toolbox.php:251 +#: src/Dashboard/Grid.php:72 +msgid "Handled assets count" +msgstr "Nombre d'équipements non gérés" + +#: src/Dashboard/Grid.php:135 +#, php-format +msgid "Handled %s" +msgstr "%s géré" + +#: src/Dashboard/Grid.php:146 +#, php-format +msgid "Unhandled %s" +msgstr "%s non géré " + +#: src/Dashboard/Grid.php:232 +#, php-format +msgid "Unhandled %s ratio" +msgstr "Taux de %s non géré(e)s" + +#: src/Dashboard/Grid.php:244 +msgid "Usage carbon emission year to date" +msgstr "" +"Émissions de carbone liées à l'utilisation de la dernière année à date" + +#: src/Dashboard/Grid.php:250 +msgid "Monthly carbon emission" +msgstr "Emission de carbone mensuelle" + +#: src/Dashboard/Grid.php:259 +msgid "Usage global warming potential chart" +msgstr "Graphique du potentiel de réchauffement climatique" + +#: src/Dashboard/Grid.php:315 +msgid "Environmental impact methodology information" +msgstr "Informations sur la méthodologie relative à l'impact environnemental" + +#: src/Dashboard/DemoProvider.php:76 +msgid "Usage carbon emission per month" +msgstr "Emission de carbone mensuelle d'utilisation" + +#: src/Dashboard/DemoProvider.php:274 +msgid "plugin carbon - handled assets ratio" +msgstr "Plugin carbon - Taux d'équipements gérés" + +#: src/Dashboard/Dashboard.php:68 +msgid "Carbon dioxyde intensity" +msgstr "Intensité de dioxyde de carbone" + +#: src/Location.php:189 +msgid "Carbon intensity source and zone" +msgstr "" + +#: src/CarbonIntensity.php:87 +msgid "Emission date" +msgstr "Date d'émission" + +#: src/CarbonIntensity.php:114 +msgid "Intensity" +msgstr "Intensité" + +#: src/CarbonEmission.php:49 +msgid "Carbon Emission" +msgid_plural "Carbon Emissions" +msgstr[0] "Emission de carbone" +msgstr[1] "Emissions de carbone" +msgstr[2] "Emissions de carbone" + +#: src/CarbonEmission.php:120 +msgid "Energy" +msgstr "Energie" + +#: src/CarbonEmission.php:128 +msgid "Emission" +msgstr "Emission" + +#: src/CarbonEmission.php:136 +msgid "Energy quality" +msgstr "Qualité de l'énergie" + +#: src/CarbonEmission.php:144 +msgid "Emission quality" +msgstr "Qualité de l'émission" + +#: src/Toolbox.php:280 msgid "W" msgstr "W" -#: src/Toolbox.php:252 +#: src/Toolbox.php:281 msgid "KW" msgstr "KW" -#: src/Toolbox.php:253 +#: src/Toolbox.php:282 msgid "MW" msgstr "MW" -#: src/Toolbox.php:254 +#: src/Toolbox.php:283 msgid "GW" msgstr "GW" -#: src/Toolbox.php:255 +#: src/Toolbox.php:284 msgid "TW" msgstr "TW" -#: src/Toolbox.php:256 +#: src/Toolbox.php:285 msgid "PW" msgstr "PW" -#: src/Toolbox.php:257 +#: src/Toolbox.php:286 msgid "EW" msgstr "EW" -#: src/Toolbox.php:258 +#: src/Toolbox.php:287 msgid "ZW" msgstr "ZW" -#: src/Toolbox.php:259 +#: src/Toolbox.php:288 msgid "YW" msgstr "YW" -#: src/Toolbox.php:286 +#: src/Toolbox.php:315 msgid "Wh" -msgstr "" - -#: src/SearchOptions.php:196 src/SearchOptions.php:273 -#: src/SearchOptions.php:346 -msgid "Is historizable" -msgstr "Est historisable" +msgstr "Wh" -#: src/UsageImpact.php:50 -msgid "Usage impact" -msgid_plural "Usage impacts" -msgstr[0] "Impact d'utilisation" -msgstr[1] "Impacts d'utilisation" -msgstr[2] "Impacts d'utilisation" +#: src/Toolbox.php:373 src/Toolbox.php:378 +#, php-format +msgid "%1$s %2$s" +msgstr "%1$s%2$s" -#: src/UsageImpact.php:112 -msgid "Global warming potential quality" -msgstr "Qualité du potentiel de réchauffement climatique" +#: setup.php:285 +msgid "Environmental Impact" +msgstr "Impact environnemental" -#: src/UsageImpact.php:127 -msgid "Abiotic depletion potential quality" -msgstr "Qualité du potentiel d'épuisement de ressources abiotiques" +#: hook.php:97 +msgid "" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." +msgstr "" +"Veuillez consulter les journaux pour plus de détails. Créez un ticket dans " +"le référentiel du plugin." -#: src/UsageImpact.php:134 src/UsageImpact.php:142 -msgid "Primary energy quality" -msgstr "Qualité de l'énergie primaire" +#: hook.php:301 +msgid "Associate to an usage profile" +msgstr "Associer à un profil d'utilisation" -#: src/CarbonIntensity.php:66 -msgid "Carbon intensity" -msgstr "Intensité carbone" +#: hook.php:302 hook.php:307 +msgid "Delete all calculated environmental impacts" +msgstr "Supprimer tous les impacts environnementaux calculés" -#: src/CarbonIntensity.php:88 -msgid "Emission date" -msgstr "Date d'émission" +#: hook.php:311 hook.php:316 hook.php:320 +msgid "Update type power consumption" +msgstr "Mettre à jour la puissance consommée du type" -#: src/CarbonIntensity.php:115 -msgid "Intensity" -msgstr "Intensité" +#: hook.php:312 +msgid "Update category" +msgstr "Mettre à jour la catégorie" -#: src/EmbodiedImpact.php:90 -msgid "Global Warming Potential" -msgstr "Potentiel de réchauffement climatique" +#: hook.php:324 +msgid "Update zone for Boavizta engine" +msgstr "Mettre à jour la zone pour le moteur Boavizta" -#: src/EmbodiedImpact.php:100 -msgid "Abiotic Depletion Potential" -msgstr "Potentiel d'épuisement de ressources abiotiques" +#: hook.php:325 +msgid "Update carbon intensity source and zone" +msgstr "" -#: src/EmbodiedImpact.php:110 -msgid "Primary energy" -msgstr "Energie primaire" +#: install/install/create_automatic_actions.php:52 +msgid "Find the Alpha3 country code (ISO3166) of locations" +msgstr "Trouvez le code pays Alpha3 (ISO3166) des lieux" -#: src/ComputerType.php:56 -msgid "Unspecified" -msgstr "Non spécifié" +#: install/install/create_automatic_actions.php:64 +msgid "Compute carbon emissions of computers" +msgstr "Calculer les émissions de carbone des ordinateurs" -#: src/ComputerType.php:58 -msgid "Server" -msgstr "Serveur" +#: install/install/create_automatic_actions.php:76 +msgid "Compute embodied impact of assets" +msgstr "Calcule l'impact incorporé des équipements" -#: src/ComputerType.php:59 -msgid "Laptop" -msgstr "Portable" +#: install/install/create_uasge_profiles.php:41 +msgid "Always on" +msgstr "Toujours sous tension" -#: src/ComputerType.php:60 -msgid "Tablet" -msgstr "Tablette" +#: install/install/create_uasge_profiles.php:52 +msgid "Office hours" +msgstr "Heures de bureau" -#: src/ComputerType.php:61 -msgid "Smartphone" -msgstr "Smartphone" +#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 +#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 +msgid "Missing arguments in request." +msgstr "Arguments manquants dans la requête." -#: src/CarbonIntensitySource_Zone.php:70 -msgid "Source name" -msgstr "Nom de la source" +#: front/usageimpact.form.php:80 front/usageimpact.form.php:106 +#: front/usageimpact.form.php:114 front/embodiedimpact.form.php:92 +msgid "Bad arguments." +msgstr "Mauvais arguments." -#: src/CarbonIntensitySource_Zone.php:78 -msgid "Zone name" -msgstr "Nom de la zone" +#: front/usageimpact.form.php:90 front/embodiedimpact.form.php:68 +#: front/embodiedimpact.form.php:77 +msgid "Reset denied." +msgstr "Réinitialisation refusée." -#: src/CarbonIntensitySource_Zone.php:94 -msgid "Code" -msgstr "Code" +#: front/usageimpact.form.php:95 front/embodiedimpact.form.php:82 +msgid "Reset failed." +msgstr "La réinitialisation a échoué." -#: src/CarbonIntensitySource_Zone.php:148 -msgid "Not downloadable" -msgstr "Non téléchargeable" +#: front/usageimpact.form.php:122 +msgid "Missing data prevents historization of this asset." +msgstr "L'absence de données empêche l'historisation de cet équipement." -#: src/CarbonIntensitySource_Zone.php:148 -msgid "This is a fallback source, there is no real-time data available" -msgstr "" -"Il s'agit d'une source de secours, aucune donnée en temps réel n'est " -"disponible." +#: front/usageimpact.form.php:125 +msgid "Update of global warming potential failed." +msgstr "La mise à jour du potentiel de réchauffement climatique a échoué." -#: src/CarbonIntensitySource_Zone.php:170 -msgid "Source for historical" -msgstr "Source pour l'historique" +#: front/usageimpact.form.php:131 front/embodiedimpact.form.php:101 +msgid "Unable to find calculation engine for this asset." +msgstr "Moteur de calcul introuvable pour cet équipement." -#: src/CarbonIntensitySource_Zone.php:351 -msgid "Enable / Disable" -msgstr "Activer / Désactiver" +#: front/usageimpact.form.php:136 +msgid "Update of usage impact failed." +msgstr "La mise à jour de l'impact d'utilisation a échoué." diff --git a/locales/hr_HR.po b/locales/hr_HR.po index a4466edc..f90a792d 100644 --- a/locales/hr_HR.po +++ b/locales/hr_HR.po @@ -4,17 +4,16 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Thierry Bugier , 2025 -# Milo Ivir , 2025 +# Milo Ivir , 2026 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 08:10+0000\n" -"PO-Revision-Date: 2025-07-03 13:58+0000\n" -"Last-Translator: Milo Ivir , 2025\n" +"POT-Creation-Date: 2026-04-15 02:49+0000\n" +"PO-Revision-Date: 2025-10-29 09:26+0000\n" +"Last-Translator: Milo Ivir , 2026\n" "Language-Team: Croatian (Croatia) (https://app.transifex.com/teclib/teams/28042/hr_HR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,140 +21,58 @@ msgstr "" "Language: hr_HR\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: templates/dashboard/usage-carbon-emission-last-year.html.twig -msgid "Yearly Usage Carbon Emission" -msgstr "Godišnja emisija ugljika zbog korištenja" - -#: templates/dashboard/monthly-carbon-emission.html.twig -msgid "Monthly usage carbon emission" -msgstr "Emisija ugljika mjesečnog korištenja" - -#: templates/dashboard/monthly-carbon-emission.html.twig -#, php-format -msgid "Compared to %s" -msgstr "U usporedbi s %s" - -#: templates/dashboard/embodied-primary-energy.html.twig -msgid "Embodied primary energy" -msgstr "Ugrađena primarna energija" - -#: templates/dashboard/usage-abiotic-depletion.html.twig -#: src/Dashboard/Widget.php:102 src/Dashboard/DemoProvider.php:95 -#: src/Dashboard/Grid.php:184 src/Dashboard/Grid.php:287 -#: src/Dashboard/Provider.php:812 -msgid "Usage abiotic depletion potential" -msgstr "Potencijal abiotskog iscrpljivanja zbog korištenja" - -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#: templates/dashboard/unhandled-monitors-card.html.twig -#: templates/dashboard/unhandled-computers-card.html.twig -msgid "Warning" -msgstr "Upozorenje" - -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#, php-format -msgid "" -"It represents %s percent of your parc that contains %s network equipments." -msgstr "Predstavlja %s posto tvojeg sustava koji sadrži %s mrežne opreme." - -#: templates/dashboard/unhandled-monitors-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s monitors." -msgstr "Predstavlja %s posto tvojeg sustava koji sadrži %s monitora." - -#: templates/dashboard/information-block.html.twig -msgid "Information" -msgstr "Informacije" - -#: templates/dashboard/information-block.html.twig -msgid "" -"Our data is sourced from reliable sources and is meticulously calculated " -"using industry-standard methodologies. We utilize accurate measurement tools" -" and algorithms to ensure the precision and reliability of our environmental" -" metrics." -msgstr "" -"Naši podaci potječu iz pouzdanih izvora i pomno se izračunavaju pomoću " -"industrijskih standardnih metodologija. Koristimo točne mjerne alate i " -"algoritme kako bismo osigurali preciznost i pouzdanost naših ekoloških " -"metričnih podataka." - -#: templates/dashboard/information-block.html.twig -msgid "" -"As we move towards a greener future, businesses will soon be required to " -"report energy usage and carbon emissions. By 2025, many areas will enforce " -"these regulations. Adopting these practices now ensures compliance and helps" -" combat climate change." -msgstr "" -"Kako se krećemo prema zelenijoj budućnosti, tvrtke će uskoro morati " -"izvještavati o potrošnji energije i emisijama ugljika. Do 2025. mnoga će " -"područja provoditi ove propise. Usvajanjem ovih praksi sada osigurava " -"usklađenost i pomaže u borbi protiv klimatskih promjena." - -#: templates/dashboard/information-block.html.twig -msgid "Did you know ?" -msgstr "Je li znaš?" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 +#: src/ComputerUsageProfile.php:169 +msgid "Start time" +msgstr "Vrijeme početka" -#: templates/dashboard/information-block.html.twig -msgid "" -"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " -"about 20 meters." -msgstr "" -"1 gram CO₂ ekvivalentan je CO₂ koji se emitira kada voziš automobil oko 20 " -"metara." +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 +msgid "Stop time" +msgstr "Vrijeme prekida" -#: templates/dashboard/embodied-carbon-emission.html.twig -#: src/Dashboard/Widget.php:111 -msgid "Embodied carbon emission" -msgstr "Ugrađena emisija ugljika" +#: templates/computerusageprofile.html.twig +msgid "Days of week where the computer usually runs" +msgstr "Dani u tjednu u kojima računalo obično radi" -#: templates/dashboard/information-video-card.html.twig -msgid "Want to know more ?" -msgstr "Želiš saznati više?" +#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 +#: src/Impact/Usage/Engine.php:48 +msgid "Boavizta" +msgstr "Boavizta" -#: templates/dashboard/information-video-card.html.twig -msgid "Here is a video about the impact of numeric on the enviromnent." -msgstr "Ovdje je video o numeričkom utjecaju na okoliš." +#: templates/location.html.twig src/SearchOptions.php:138 src/Location.php:182 +msgid "Boavizta zone" +msgstr "Boavizta zona" -#: templates/dashboard/unhandled-computers-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s computers." -msgstr "Predstavlja %s posto tvojeg sustava koji sadrži %s računala." +#: templates/location.html.twig src/CarbonIntensity.php:65 +msgid "Carbon intensity" +msgstr "Intenzitet ugljika" -#: templates/dashboard/embodied-abiotic-depletion.html.twig -#: src/Dashboard/Widget.php:118 src/Dashboard/DemoProvider.php:77 -#: src/Dashboard/Grid.php:204 src/Dashboard/Grid.php:301 -#: src/Dashboard/Provider.php:778 src/Dashboard/Provider.php:862 -msgid "Embodied abiotic depletion potential" -msgstr "Ugrađeni potencijal abiotskog iscrpljivanja" +#: templates/usageinfo.html.twig +msgid "Asset usage" +msgstr "Korištenje sredstva" -#: templates/monitortype.html.twig -msgid "" -"This power value is used as default when the power of a monitor model is " -"unknown" -msgstr "" -"Ova vrijednost energije koristi se kao zadana kada je energija modela " -"monitora nepoznata" +#: templates/usageinfo.html.twig +msgid "Usage profile" +msgid_plural "Usage profiles" +msgstr[0] "Profil korištenja" +msgstr[1] "Profili korištenja" +msgstr[2] "Profili korištenja" -#: templates/monitortype.html.twig templates/computertype.html.twig -#: templates/networkequipmenttype.html.twig src/AbstractType.php:56 -msgid "Power" -msgid_plural "Powers" -msgstr[0] "Struja" -msgstr[1] "Struje" -msgstr[2] "Struja" +#: templates/quick-report.html.twig front/report.php:55 +msgid "GLPI Carbon" +msgstr "GLPI ugljik" -#: templates/computertype.html.twig -msgid "" -"This power value is used as default when the power of a computer model is " -"unknown" -msgstr "" -"Ova vrijednost energije koristi se kao zadana kada je energija modela " -"računala nepoznata" +#: templates/components/form/source_zone_selector.html.twig +#: src/AbstractModel.php:186 +msgid "Source" +msgstr "Izvor" -#: templates/computertype.html.twig src/SearchOptions.php:251 -#: src/ComputerType.php:78 -msgid "Category" -msgstr "Kategorija" +#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 +msgid "Carbon intensity zone" +msgid_plural "Carbon intensity zones" +msgstr[0] "Zona intenziteta ugljika" +msgstr[1] "Zone intenziteta ugljika" +msgstr[2] "Zone intenziteta ugljika" #: templates/pages/CarbonIntensitySource/tab_zone.html.twig msgid "No zone available" @@ -165,14 +82,6 @@ msgstr "Nijedna zona nije dostupna" msgid "Please run the automatic action to downlaod data from this source." msgstr "Pokreni automatsku radnju za uklanjanje podataka iz ovog izvora." -#: templates/networkequipmenttype.html.twig -msgid "" -"This power value is used as default when the power of a network equipment " -"model is unknown" -msgstr "" -"Ova vrijednost energije koristi se kao zadana kada je energija modela mrežne" -" opreme nepoznata" - #: templates/environmentalimpact-item.html.twig msgid "Usage" msgstr "Korištenje" @@ -185,45 +94,12 @@ msgstr "Resetiraj podatke" msgid "Calculate data" msgstr "Izračunaj podatke" -#: templates/environmentalimpact-item.html.twig +#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 msgid "Embodied impact" -msgstr "Ugrađeni utjecaj" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:125 -#: src/ComputerUsageProfile.php:146 -msgid "Start time" -msgstr "Vrijeme početka" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:154 -msgid "Stop time" -msgstr "Vrijeme prekida" - -#: templates/computerusageprofile.html.twig -msgid "Days of week where the computer usually runs" -msgstr "Dani u tjednu u kojima računalo obično radi" - -#: templates/usageinfo.html.twig -msgid "Asset usage" -msgstr "Korištenje sredstva" - -#: templates/usageinfo.html.twig -msgid "Usage profile" -msgid_plural "Usage profiles" -msgstr[0] "Profil korištenja" -msgstr[1] "Profili korištenja" -msgstr[2] "Profili korištenja" - -#: templates/quick-report.html.twig front/report.php:55 -msgid "GLPI Carbon" -msgstr "GLPI ugljik" - -#: templates/location.html.twig src/Profile.php:45 src/UsageInfo.php:91 -msgid "Environmental impact" -msgstr "Utjecaj na okoliš" - -#: templates/location.html.twig src/Location.php:78 src/SearchOptions.php:121 -msgid "Boavizta zone" -msgstr "Boavizta zona" +msgid_plural "Embodied impacts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: templates/history/status-item.html.twig msgid "Historization status" @@ -257,21 +133,25 @@ msgstr "Nije predložak" msgid "Linked to a computer" msgstr "Povezano s računalom" +#: templates/history/status-item.html.twig +msgid "Attached computer has a location" +msgstr "" + #: templates/history/status-item.html.twig msgid "Has a location" msgstr "Ima mjesto" #: templates/history/status-item.html.twig -msgid "The location has a state or a country" -msgstr "Lokacija ima državu ili zemllju" +msgid "The location has carbon intensity data" +msgstr "Lokacija ima podatke o intenzitetu ugljika" #: templates/history/status-item.html.twig msgid "Real time carbon intensity enabled" -msgstr "" +msgstr "Stvarno vrijeme intenziteta ugljika je aktivirano" #: templates/history/status-item.html.twig msgid "The location has yearly carbon intensity data" -msgstr "" +msgstr "Lokacija ima godišnje podatke o intenzitetu ugljika" #: templates/history/status-item.html.twig msgid "The asset has a model" @@ -285,6 +165,10 @@ msgstr "Model ima potrošnju energije" msgid "The asset has a type" msgstr "Sredstvo ima vrstu" +#: templates/history/status-item.html.twig +msgid "Type is not ignored" +msgstr "Vrsta se ne zanemaruje" + #: templates/history/status-item.html.twig msgid "The type has a power consumption" msgstr "Vrsta ima potrošnju energije" @@ -305,13 +189,26 @@ msgstr "Sredstvo ima datum unosa inventara" msgid "Legend" msgstr "Legenda" -#: templates/config.html.twig -msgid "Electricity maps" -msgstr "Karte električne energije" +#: templates/monitortype.html.twig +msgid "" +"This power value is used as default when the power of a monitor model is " +"unknown" +msgstr "" +"Ova vrijednost energije koristi se kao zadana kada je energija modela " +"monitora nepoznata" -#: templates/config.html.twig -msgid "Key for electricitymap.org API" -msgstr "Kluč za electricitymap.org API" +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Power" +msgid_plural "Powers" +msgstr[0] "Energija" +msgstr[1] "Energije" +msgstr[2] "Energijae" + +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Do not evaluate" +msgstr "Nemoj procijeniti" #: templates/config.html.twig msgid "Impact engine" @@ -321,422 +218,798 @@ msgstr "Utjecajni pogon" msgid "Usage carbon emissions are always calculated internally" msgstr "Emisije ugljika zbog korištenja se uvijek izračunavaju interno" -#: templates/config.html.twig src/Impact/Embodied/Engine.php:46 -#: src/Impact/Usage/Engine.php:46 -msgid "Boavizta" -msgstr "Boavizta" - -#: templates/config.html.twig -msgid "Base URL to the Boaviztapi instance" -msgstr "Osnovni URL za Boaviztapi instancu" - -#: templates/config.html.twig +#: templates/computertype.html.twig msgid "" -"Geocoding converts a location into a ISO 3166 (3 letters) code. Boavizta " -"needs this to determine usage impacts of assets. This feature sends the " -"address stored in a location to nominatim.org service. If this is an issue, " -"you can disable it below, and fill the coutry code manually." +"This power value is used as default when the power of a computer model is " +"unknown" msgstr "" -"Geokodiranje pretvara mjesto u ISO 3166 (3 slova) kod. Boavizta to treba " -"kako bi utvrdio utjecaj korištenja sredstva. Ova funkcija šalje adresu " -"spremljenu u mjestu usluge nominatim.org. Ako je to problem, to možeš " -"deaktivirati u nastavku i ručno ispuniti kod." - -#: templates/config.html.twig -msgid "Enable geocoding" -msgstr "Aktiviraj geokodiranje" - -#: setup.php:263 -msgid "Environmental Impact" -msgstr "Utjecaj na okoliš" - -#: front/embodiedimpact.form.php:65 front/embodiedimpact.form.php:88 -#: front/usageimpact.form.php:65 front/usageimpact.form.php:102 -msgid "Missing arguments in request." -msgstr "Nedostaju argumenti u zahtjevu." - -#: front/embodiedimpact.form.php:70 front/embodiedimpact.form.php:79 -#: front/usageimpact.form.php:89 -msgid "Reset denied." -msgstr "Resetiranje odbijeno." +"Ova vrijednost energije koristi se kao zadana kada je energija modela " +"računala nepoznata" -#: front/embodiedimpact.form.php:84 front/usageimpact.form.php:94 -msgid "Reset failed." -msgstr "Resetiranje nije uspjelo." +#: templates/computertype.html.twig src/SearchOptions.php:303 +#: src/ComputerType.php:78 +msgid "Category" +msgstr "Kategorija" -#: front/embodiedimpact.form.php:94 front/usageimpact.form.php:133 -msgid "Unable to find calculation engine for this asset." -msgstr "Nije moguće pronaći pogon za izračunavanje za ovo sredtsvo." +#: templates/dashboard/information-block.html.twig +msgid "Information" +msgstr "Informacije" -#: front/embodiedimpact.form.php:103 -msgid "Update failed." -msgstr "Aktualiziranje neuspjelo." +#: templates/dashboard/information-block.html.twig +msgid "" +"Our data is sourced from reliable sources and is meticulously calculated " +"using industry-standard methodologies. We utilize accurate measurement tools" +" and algorithms to ensure the precision and reliability of our environmental" +" metrics." +msgstr "" +"Naši podaci potječu iz pouzdanih izvora i pomno se izračunavaju pomoću " +"industrijskih standardnih metodologija. Koristimo točne mjerne alate i " +"algoritme kako bismo osigurali preciznost i pouzdanost naših ekoloških " +"metričnih podataka." -#: front/usageimpact.form.php:79 front/usageimpact.form.php:108 -#: front/usageimpact.form.php:116 -msgid "Bad arguments." -msgstr "Loši argumenti." +#: templates/dashboard/information-block.html.twig +msgid "" +"As we move towards a greener future, businesses will soon be required to " +"report energy usage and carbon emissions. By 2025, many areas will enforce " +"these regulations. Adopting these practices now ensures compliance and helps" +" combat climate change." +msgstr "" +"Kako se krećemo prema zelenijoj budućnosti, tvrtke će uskoro morati " +"izvještavati o potrošnji energije i emisijama ugljika. Do 2025. mnoga će " +"područja provoditi ove propise. Usvajanjem ovih praksi sada osigurava " +"usklađenost i pomaže u borbi protiv klimatskih promjena." -#: front/usageimpact.form.php:98 -msgid "Delete of usage impact failed." -msgstr "Brisanje utjecaja zbog korištenja nije uspjelo." +#: templates/dashboard/information-block.html.twig +msgid "Did you know ?" +msgstr "Je li znaš?" -#: front/usageimpact.form.php:124 -msgid "Missing data prevents historization of this asset." -msgstr "Podaci koji nedostaju sprečavaju historizaciju ovog sredstva." +#: templates/dashboard/information-block.html.twig +msgid "" +"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " +"about 20 meters." +msgstr "" +"1 gram CO₂ ekvivalentan je CO₂ koji se emitira kada voziš automobil oko 20 " +"metara." -#: front/usageimpact.form.php:127 -msgid "Update of global warming potential failed." -msgstr "Aktualiziranje potencijala globalnog zagrijavanja nije uspjelo." +#: templates/dashboard/unhandled-monitors-card.html.twig +#: templates/dashboard/unhandled-computers-card.html.twig +#: templates/dashboard/unhandled-network-equipments-card.html.twig +msgid "Warning" +msgstr "Upozorenje" -#: front/usageimpact.form.php:138 -msgid "Update of usage impact failed." -msgstr "Aktualiziranje utjecaja korištenja nije uspjelo." +#: templates/dashboard/unhandled-monitors-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s monitors." +msgstr "Predstavlja %s posto tvojeg sustava koji sadrži %s monitora." -#: hook.php:293 -msgid "Associate to an usage profile" -msgstr "Poveži s profilom korištenja" +#: templates/dashboard/usage-carbon-emission-last-year.html.twig +msgid "Yearly Usage Carbon Emission" +msgstr "Godišnja emisija ugljika zbog korištenja" -#: hook.php:297 hook.php:302 hook.php:306 -msgid "Update type power consumption" -msgstr "Aktualiziraj vrstu potrošnju energije" +#: templates/dashboard/monthly-carbon-emission.html.twig +msgid "Monthly usage carbon emission" +msgstr "Emisija ugljika mjesečnog korištenja" -#: hook.php:298 -msgid "Update category" -msgstr "Aktualiziraj kategoriju" +#: templates/dashboard/monthly-carbon-emission.html.twig +#, php-format +msgid "Compared to %s" +msgstr "U usporedbi s %s" -#: hook.php:310 -msgid "Update zone for Boavizta engine" -msgstr "Aktualiziranje zonu za Boavizta pogon" +#: templates/dashboard/unhandled-computers-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s computers." +msgstr "Predstavlja %s posto tvojeg sustava koji sadrži %s računala." -#: install/install/create_automatic_actions.php:45 -msgid "Find the Alpha3 country code (ISO3166) of locations" -msgstr "Pronađi Alpha3 kod zemlje (ISO3166) mjesta" +#: templates/dashboard/unhandled-network-equipments-card.html.twig +#, php-format +msgid "" +"It represents %s percent of your parc that contains %s network equipments." +msgstr "Predstavlja %s posto tvojeg sustava koji sadrži %s mrežne opreme." -#: install/install/create_automatic_actions.php:57 -msgid "Compute carbon emissions of computers" -msgstr "Izračunaj emisije ugljika računala" +#: templates/dashboard/information-video-card.html.twig +msgid "Want to know more ?" +msgstr "Želiš saznati više?" -#: install/install/create_automatic_actions.php:69 -msgid "Collect carbon intensities from RTE" -msgstr "Prikupi intenzitet ugljika od RTE-a" +#: templates/dashboard/information-video-card.html.twig +msgid "Here is a video about the impact of numeric on the enviromnent." +msgstr "Ovdje je video o numeričkom utjecaju na okoliš." -#: install/install/create_automatic_actions.php:81 -msgid "Collect carbon intensities from ElectricityMap" -msgstr "Prikupi intenzitet ugljika od ElectricityMap-a" +#: templates/abstractmodel.html.twig +msgid "" +"The impacts below shall include the manufacturing, disposal and recycling " +"processes only." +msgstr "" -#: install/install/create_automatic_actions.php:93 -msgid "Compute embodied impact of assets" -msgstr "Izračunaj ugrađeni utjecaj sredstva" +#: templates/abstractmodel.html.twig +msgid "Take care of the expected units before setting an impact." +msgstr "" -#: install/install/create_uasge_profiles.php:41 -msgid "Always on" -msgstr "Uvijek uključeno" +#: templates/abstractmodel.html.twig +msgid "Data quality" +msgstr "Kvaliteta podataka" -#: install/install/create_uasge_profiles.php:52 -msgid "Office hours" -msgstr "Radno vrijeme" +#: templates/abstractmodel.html.twig +msgid "Data source" +msgstr "Izvor podataka" -#: src/AbstractType.php:64 src/Dashboard/Grid.php:68 -#: src/Dashboard/Grid.php:133 src/Dashboard/Grid.php:234 -msgid "Carbon" -msgstr "Ugljik" +#: templates/networkequipmenttype.html.twig +msgid "" +"This power value is used as default when the power of a network equipment " +"model is unknown" +msgstr "" +"Ova vrijednost energije koristi se kao zadana kada je energija modela mrežne" +" opreme nepoznata" -#: src/CronTask.php:64 -msgid "Find the Alpha3 country code (ISO3166)" -msgstr "Pronađi Alpha3 kod zemlje (ISO3166)" +#: src/Command/CollectCarbonIntensityCommand.php:70 +msgid "Read carbon dioxyde intensity from external sources" +msgstr "Čitaj intenzitet ugljičnog dioksida iz eksternih izvora" -#: src/CronTask.php:65 -msgid "Maximum number of locations to solve" -msgstr "Maksimalan broj mjesta za rješavanje" +#: src/Command/CollectCarbonIntensityCommand.php:84 +msgid "Source:" +msgstr "Izvor:" + +#: src/Command/CollectCarbonIntensityCommand.php:95 +msgid "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" +msgstr "" +"Izabrani izvor ne navodi svoje podržane zone. Pokušava se identificirati " +"zonu putem adrese" + +#: src/Command/CollectCarbonIntensityCommand.php:99 +msgid "Geocoding is not enabled. Cannot resolve an address into a zone" +msgstr "Geokodiranje nije aktivirano. Nije moguće odrediti adresu u zonu" + +#: src/Command/CollectCarbonIntensityCommand.php:104 +msgid "Address:" +msgstr "Adresa:" + +#: src/Command/CollectCarbonIntensityCommand.php:107 +msgid "Zone:" +msgstr "Zona:" + +#: src/Command/CollectCarbonIntensityCommand.php:123 +#: src/Command/CreateFakeCarbonIntensityCommand.php:67 +msgid "Creating data source name" +msgstr "Stvaranje imena izvora podataka" + +#: src/Command/CollectCarbonIntensityCommand.php:130 +msgid "This source does not exist" +msgstr "" + +#: src/Command/CollectCarbonIntensityCommand.php:149 +msgid "The zone is not handled by the data source" +msgstr "" + +#: src/Command/CollectCarbonIntensityCommand.php:155 +msgid "Reading data..." +msgstr "Čitanje podataka …" + +#: src/Command/CreateFakeCarbonIntensityCommand.php:78 +msgid "Creating data zone name" +msgstr "Stvaranje imena zone podataka" + +#: src/Command/CreateFakeCarbonIntensityCommand.php:89 +msgid "Creating fake data..." +msgstr "Stvaranje lažnih podataka …" + +#: src/Command/ExportDashboardCommand.php:68 +msgid "Updating the report dashboard description" +msgstr "Aktualiziranje opisa nadzorne ploče izvještaja" -#: src/CronTask.php:70 +#: src/Command/ExportDashboardCommand.php:73 +msgid "Dashboard not found" +msgstr "Nadzorna ploča nije pronađena" + +#: src/Command/ExportDashboardCommand.php:99 +#, php-format +msgid "Dashboard description saved to %s" +msgstr "Opis nadzorne ploče spremljen u %s" + +#: src/Command/CreateTestInventoryCommand.php:145 +msgid "Creating test inventory" +msgstr "Stvaranje testnog inventara" + +#: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 +#: src/ComputerType.php:70 src/MonitorType.php:50 +msgid "Power consumption" +msgstr "Potrošnja struje" + +#: src/UsageInfo.php:62 +msgid "Usage informations" +msgstr "Informacije o korištenju" + +#: src/UsageInfo.php:94 src/AbstractModel.php:54 src/Location.php:73 +#: src/AbstractType.php:55 src/Profile.php:45 +msgid "Environmental impact" +msgstr "Utjecaj na okoliš" + +#: src/UsageInfo.php:241 +#, php-format +msgid "%s More information %s" +msgstr "" + +#: src/DataSource/Lca/Boaviztapi/Config.php:100 +msgid "Invalid Boavizta API URL" +msgstr "Nevaljani URL Boavizta API-ja" + +#: src/DataSource/Lca/Boaviztapi/Config.php:108 +msgid "Connection to Boavizta API established" +msgstr "Veza s Boavizta API-jem je uspostavljena" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:56 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:53 +msgid "Resource diagnosis" +msgstr "" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:71 +msgid "Collect carbon intensities from RTE" +msgstr "Prikupi intenzitet ugljika od RTE-a" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:89 msgid "Download carbon emissions from RTE" msgstr "Preuzmi emisije ugljika od RTE-a" -#: src/CronTask.php:71 src/CronTask.php:77 +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:90 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:87 +#: src/CronTask.php:107 msgid "Maximum number of entries to download" msgstr "Maksimalan broj unosa za preuzimanje" -#: src/CronTask.php:76 -msgid "Download carbon emissions from ElectricityMap" -msgstr "Preuzmi emisije ugljika od ElectricityMap" +#: src/DataSource/CarbonIntensity/AbstractCronTask.php:103 +#: src/Source_Zone.php:537 +msgid "End" +msgstr "Kraj" -#: src/CronTask.php:82 -msgid "Compute usage environnemental impact for all assets" -msgstr "Izračunaj utjecaj na okoliš za sva sredstva zbog korištenja" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:68 +msgid "Collect carbon intensities from Electricity Maps" +msgstr "" -#: src/CronTask.php:83 src/CronTask.php:88 -msgid "Maximum number of entries to calculate" -msgstr "Maksimalan broj unosa za računanje" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:86 +msgid "Download carbon emissions from Electricity Maps" +msgstr "" -#: src/CronTask.php:87 -msgid "Compute embodied environnemental impact for all assets" -msgstr "Izračunaj ugrađeni utjecaj na okoliš za sva sredstva" +#: src/AbstractImpact.php:125 src/CarbonEmission.php:151 +msgid "Date of evaluation" +msgstr "Datum evaluacije" -#: src/CronTask.php:211 -msgid "No zone to download" -msgstr "Nema zone za preuzimanje" +#: src/AbstractImpact.php:132 src/CarbonEmission.php:158 +msgid "Engine" +msgstr "Pogon" -#: src/NetworkEquipmentType.php:50 src/MonitorType.php:50 -#: src/SearchOptions.php:142 src/ComputerType.php:70 -msgid "Power consumption" -msgstr "Potrošnja struje" +#: src/AbstractImpact.php:139 src/CarbonEmission.php:165 +msgid "Engine version" +msgstr "Verzija pogona" + +#: src/DataTracking/AbstractTracked.php:77 +msgid "Impact not evaluated" +msgstr "" + +#: src/DataTracking/AbstractTracked.php:78 +msgid "Unspecified quality" +msgstr "Neodređena kvaliteta" + +#: src/DataTracking/AbstractTracked.php:79 +msgid "Manual data" +msgstr "Ručni podaci" + +#: src/DataTracking/AbstractTracked.php:80 +msgid "Estimated data" +msgstr "Procijenjeni podaci" + +#: src/DataTracking/AbstractTracked.php:81 +msgid "Downsampled data" +msgstr "Smanjena količina podataka" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:83 -#: src/Impact/Usage/AbstractUsageImpact.php:83 +#: src/DataTracking/AbstractTracked.php:82 +msgid "Measured data" +msgstr "Izmjereni podaci" + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 +#: src/Impact/Usage/AbstractUsageImpact.php:91 msgid "grams of carbon dioxyde equivalent" msgstr "grama ekvivalenta ugljičnog dioksida" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:85 -#: src/Impact/Usage/AbstractUsageImpact.php:85 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 +#: src/Impact/Usage/AbstractUsageImpact.php:93 msgid "grams of antimony equivalent" msgstr "grama ekvivalenta antimona" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:87 -#: src/Impact/Usage/AbstractUsageImpact.php:87 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 +#: src/Impact/Usage/AbstractUsageImpact.php:95 msgid "joules" msgstr "džula" -#: src/Impact/History/AbstractAsset.php:364 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 +msgid "Connection to Boavizta failed." +msgstr "" + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 +msgid "Embodied impact evaluation falied." +msgstr "" + +#: src/Impact/History/AbstractAsset.php:370 msgid "Error while calculating impact" msgstr "Greška pri izračunavanju utjecaja" -#: src/Impact/History/AbstractAsset.php:372 +#: src/Impact/History/AbstractAsset.php:378 msgid "Nothing to calculate" msgstr "Nema se što izračunati" -#: src/Impact/History/AbstractAsset.php:378 +#: src/Impact/History/AbstractAsset.php:384 #, php-format msgid "%d entries calculated" msgstr "izračunati unosi: %d" -#: src/CarbonIntensitySource.php:45 -msgid "Carbon intensity source" -msgid_plural "Carbon intensity sources" -msgstr[0] "Izvor intenziteta ugljika" -msgstr[1] "Izvori intenziteta ugljika" -msgstr[2] "Izvori intenziteta ugljika" +#: src/Impact/Type.php:159 +msgid "Embodied Global warming potential" +msgstr "" -#: src/Report.php:50 -msgid "Carbon report" -msgid_plural "Carbon reports" -msgstr[0] "Izvještaj o ugljiku" -msgstr[1] "Izvještaji o ugljiku" -msgstr[2] "Izvještaji o ugljiku" +#: src/Impact/Type.php:160 +msgid "Embodied Abiotic depletion potential" +msgstr "" -#: src/Report.php:102 -#, php-format +#: src/Impact/Type.php:161 +msgid "Embodied Primary energy consumed" +msgstr "" + +#: src/Impact/Type.php:162 +msgid "Embodied Climate change - Contribution of biogenic emissions" +msgstr "" + +#: src/Impact/Type.php:163 +msgid "Embodied Climate change - Contribution of fossil fuel emissions" +msgstr "" + +#: src/Impact/Type.php:164 msgid "" -"Demo mode enabled. The data below are not representative of the assets in " -"the database. %sDisable demo mode%s" +"Embodied Climate change - Contribution of emissions from land use change" msgstr "" -"Aktiviran je demo modus. Podaci u nastavku nisu reprezentativni za sredstva " -"u bazi podataka. %sDeaktiviraj demo modus%s" -#: src/CarbonEmission.php:48 -msgid "Carbon Emission" -msgid_plural "Carbon Emissions" -msgstr[0] "Emisija ugljika" -msgstr[1] "Emisije ugljika" -msgstr[2] "Emisije ugljika" +#: src/Impact/Type.php:165 +msgid "Embodied Emissions of radionizing substances" +msgstr "" -#: src/CarbonEmission.php:119 -msgid "Energy" -msgstr "Energija" +#: src/Impact/Type.php:166 +msgid "Embodied Land use" +msgstr "" -#: src/CarbonEmission.php:127 -msgid "Emission" -msgstr "Emisija" +#: src/Impact/Type.php:167 +msgid "Embodied Depletion of the ozone layer" +msgstr "" -#: src/CarbonEmission.php:135 -msgid "Energy quality" -msgstr "Kvaliteta energije" +#: src/Impact/Type.php:168 +msgid "Embodied Fine particle emissions" +msgstr "" -#: src/CarbonEmission.php:143 -msgid "Emission quality" -msgstr "Kvaliteta emisije" +#: src/Impact/Type.php:169 +msgid "Embodied Photochemical ozone formation" +msgstr "" -#: src/CarbonEmission.php:150 src/UsageImpact.php:149 -#: src/EmbodiedImpact.php:120 -msgid "Date of evaluation" -msgstr "Datum evaluacije" +#: src/Impact/Type.php:170 +msgid "Embodied Use of water resources" +msgstr "" -#: src/CarbonEmission.php:157 src/UsageImpact.php:156 -#: src/EmbodiedImpact.php:127 -msgid "Engine" -msgstr "Pogon" +#: src/Impact/Type.php:171 +msgid "Embodied Material input per unit of service" +msgstr "" -#: src/CarbonEmission.php:164 src/UsageImpact.php:163 -#: src/EmbodiedImpact.php:134 -msgid "Engine version" -msgstr "Verzija pogona" +#: src/Impact/Type.php:172 +msgid "Embodied Use of mineral and metal resources" +msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:67 -#: src/Command/CollectCarbonIntensityCommand.php:68 -msgid "Creating data source name" -msgstr "Stvaranje imena izvora podataka" +#: src/Impact/Type.php:173 +msgid "Embodied Use of fossil resources (including nuclear)" +msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:78 -msgid "Creating data zone name" -msgstr "Stvaranje imena zone podataka" +#: src/Impact/Type.php:174 +msgid "Embodied Acidification" +msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:89 -msgid "Creating fake data..." -msgstr "Stvaranje lažnih podataka …" +#: src/Impact/Type.php:175 +msgid "Embodied Freshwater ecotoxicity" +msgstr "" -#: src/Command/ExportDashboardCommand.php:69 -msgid "Updating the report dashboard description" -msgstr "Aktualiziranje opisa nadzorne ploče izvještaja" +#: src/Impact/Type.php:178 +msgid "Embodied Eutrophication of freshwater" +msgstr "" -#: src/Command/ExportDashboardCommand.php:74 -msgid "Dashboard not found" -msgstr "Nadzorna ploča nije pronađena" +#: src/Impact/Type.php:179 +msgid "Embodied Eutrophication of marine waters" +msgstr "" -#: src/Command/ExportDashboardCommand.php:100 -#, php-format -msgid "Dashboard description saved to %s" -msgstr "Opis nadzorne ploče spremljen u %s" +#: src/Impact/Type.php:180 +msgid "Embodied Terrestrial eutrophication" +msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:85 -msgid "Zone not found" -msgstr "Zona nije pronađena" +#: src/Impact/Type.php:195 +msgid "Usage Global warming potential" +msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:91 -msgid "Reading eco2mix data..." -msgstr "Čitanje eco2mix podataka …" +#: src/Impact/Type.php:196 +msgid "Usage Abiotic depletion potential" +msgstr "" -#: src/Command/CreateTestInventoryCommand.php:146 -msgid "Creating test inventory" -msgstr "Stvaranje testnog inventara" +#: src/Impact/Type.php:197 +msgid "Usage Primary energy consumed" +msgstr "" -#: src/Config.php:130 -msgid "Invalid Boavizta API URL" -msgstr "Nevaljani URL Boavizta API-ja" +#: src/Impact/Type.php:198 +msgid "Usage Climate change - Contribution of biogenic emissions" +msgstr "" -#: src/Config.php:138 -msgid "Connection to Boavizta API established" -msgstr "Veza s Boavizta API-jem je uspostavljena" +#: src/Impact/Type.php:199 +msgid "Usage Climate change - Contribution of fossil fuel emissions" +msgstr "" -#: src/Zone.php:53 -msgid "Carbon intensity zone" -msgid_plural "Carbon intensity zones" -msgstr[0] "Zona intenziteta ugljika" -msgstr[1] "Zone intenziteta ugljika" -msgstr[2] "Zone intenziteta ugljika" +#: src/Impact/Type.php:200 +msgid "Usage Climate change - Contribution of emissions from land use change" +msgstr "" -#: src/Zone.php:126 src/Zone.php:141 -msgid "Data source for historical calculation" -msgstr "Izvor podataka za povijesni izračun" +#: src/Impact/Type.php:201 +msgid "Usage Emissions of radionizing substances" +msgstr "" -#: src/Zone.php:157 src/CarbonIntensitySource_Zone.php:86 -#: src/CarbonIntensitySource_Zone.php:169 -#: src/CarbonIntensitySource_Zone.php:264 -msgid "Download enabled" -msgstr "Preuzimanje aktivirano" +#: src/Impact/Type.php:202 +msgid "Usage Land use" +msgstr "" -#: src/UsageInfo.php:59 -msgid "Usage informations" -msgstr "Informacije o korištenju" +#: src/Impact/Type.php:203 +msgid "Usage Depletion of the ozone layer" +msgstr "" -#: src/UsageInfo.php:214 src/Dashboard/Widget.php:848 -#, php-format -msgid "" -"Evaluates the carbon emission in CO₂ equivalent. %s More information %s" -msgstr "Evaluira emisiju ugljika u ekvivalentu CO₂. %s Više informacija %s" +#: src/Impact/Type.php:204 +msgid "Usage Fine particle emissions" +msgstr "" -#: src/UsageInfo.php:222 src/Dashboard/Widget.php:884 -#: src/Dashboard/Widget.php:921 -#, php-format -msgid "" -"Evaluates the consumption of non renewable resources in Antimony equivalent." -" %s More information %s" +#: src/Impact/Type.php:205 +msgid "Usage Photochemical ozone formation" msgstr "" -"Evaluira potrošnju neobnovljivih resursa u ekvivalentu antimona. %s Više " -"informacija %s" -#: src/UsageInfo.php:234 src/Dashboard/Widget.php:1102 +#: src/Impact/Type.php:206 +msgid "Usage Use of water resources" +msgstr "" + +#: src/Impact/Type.php:207 +msgid "Usage Material input per unit of service" +msgstr "" + +#: src/Impact/Type.php:208 +msgid "Usage Use of mineral and metal resources" +msgstr "" + +#: src/Impact/Type.php:209 +msgid "Usage Use of fossil resources (including nuclear)" +msgstr "" + +#: src/Impact/Type.php:210 +msgid "Usage Acidification" +msgstr "" + +#: src/Impact/Type.php:211 +msgid "Usage Freshwater ecotoxicity" +msgstr "" + +#: src/Impact/Type.php:214 src/Impact/Type.php:342 +msgid "Usage Eutrophication of freshwater" +msgstr "" + +#: src/Impact/Type.php:215 src/Impact/Type.php:343 +msgid "Usage Eutrophication of marine waters" +msgstr "" + +#: src/Impact/Type.php:216 src/Impact/Type.php:344 +msgid "Usage Terrestrial eutrophication" +msgstr "" + +#: src/Impact/Type.php:231 +msgid "Total Global warming potential" +msgstr "" + +#: src/Impact/Type.php:232 +msgid "Total Abiotic depletion potential" +msgstr "" + +#: src/Impact/Type.php:233 +msgid "Total Primary energy consumed" +msgstr "" + +#: src/Impact/Type.php:234 +msgid "Total Climate change - Contribution of biogenic emissions" +msgstr "" + +#: src/Impact/Type.php:235 +msgid "Total Climate change - Contribution of fossil fuel emissions" +msgstr "" + +#: src/Impact/Type.php:236 +msgid "Total Climate change - Contribution of emissions from land use change" +msgstr "" + +#: src/Impact/Type.php:237 +msgid "Total Emissions of radionizing substances" +msgstr "" + +#: src/Impact/Type.php:238 +msgid "Total Land use" +msgstr "" + +#: src/Impact/Type.php:239 +msgid "Total Depletion of the ozone layer" +msgstr "" + +#: src/Impact/Type.php:240 +msgid "Total Fine particle emissions" +msgstr "" + +#: src/Impact/Type.php:241 +msgid "Total Photochemical ozone formation" +msgstr "" + +#: src/Impact/Type.php:242 +msgid "Total Use of water resources" +msgstr "" + +#: src/Impact/Type.php:243 +msgid "Total Material input per unit of service" +msgstr "" + +#: src/Impact/Type.php:244 +msgid "Total Use of mineral and metal resources" +msgstr "" + +#: src/Impact/Type.php:245 +msgid "Total Use of fossil resources (including nuclear)" +msgstr "" + +#: src/Impact/Type.php:246 +msgid "Total Acidification" +msgstr "" + +#: src/Impact/Type.php:247 +msgid "Total Freshwater ecotoxicity" +msgstr "" + +#: src/Impact/Type.php:250 +msgid "Total Eutrophication of freshwater" +msgstr "" + +#: src/Impact/Type.php:251 +msgid "Total Eutrophication of marine waters" +msgstr "" + +#: src/Impact/Type.php:252 +msgid "Total Terrestrial eutrophication" +msgstr "" + +#: src/Impact/Type.php:323 +msgid "Carbon emission in CO₂ equivalent" +msgstr "" + +#: src/Impact/Type.php:324 +msgid "Consumption of non renewable resources in Antimony equivalent." +msgstr "" + +#: src/Impact/Type.php:325 +msgid "Primary energy consumed." +msgstr "" + +#: src/Impact/Type.php:332 +msgid "Incidence of disease" +msgstr "" + +#: src/Source.php:46 +msgid "Carbon intensity source" +msgid_plural "Carbon intensity sources" +msgstr[0] "Izvor intenziteta ugljika" +msgstr[1] "Izvori intenziteta ugljika" +msgstr[2] "Izvori intenziteta ugljika" + +#: src/SearchOptions.php:184 src/SearchOptions.php:316 +#: src/SearchOptions.php:329 src/SearchOptions.php:342 +msgid "Ignore environmental impact" +msgstr "Zanemari utjecaj na okoliš" + +#: src/SearchOptions.php:241 src/SearchOptions.php:365 +#: src/SearchOptions.php:442 +msgid "Is historizable" +msgstr "Može se historizirati" + +#: src/ComputerType.php:56 +msgid "Unspecified" +msgstr "Nespecificirano" + +#: src/ComputerType.php:58 +msgid "Server" +msgstr "Server" + +#: src/ComputerType.php:59 +msgid "Laptop" +msgstr "Laptop" + +#: src/ComputerType.php:60 +msgid "Tablet" +msgstr "Tablet" + +#: src/ComputerType.php:61 +msgid "Smartphone" +msgstr "Pametni telefon" + +#: src/UsageImpact.php:39 +msgid "Usage impact" +msgid_plural "Usage impacts" +msgstr[0] "Utjecaj korištenja" +msgstr[1] "Utjecaji korištenja" +msgstr[2] "Utjecaji korištenja" + +#: src/AbstractModel.php:62 src/Dashboard/Grid.php:58 +#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 +#: src/AbstractType.php:63 +msgid "Carbon" +msgstr "Ugljik" + +#: src/AbstractModel.php:197 +msgid "Quality" +msgstr "" + +#: src/Report.php:49 +msgid "Carbon report" +msgid_plural "Carbon reports" +msgstr[0] "Izvještaj o ugljiku" +msgstr[1] "Izvještaji o ugljiku" +msgstr[2] "Izvještaji o ugljiku" + +#: src/Report.php:101 #, php-format -msgid "Evaluates the primary energy consumed. %s More information %s" -msgstr "Evaluira potrošenu primarnu energiju. %s Više informacija %s" +msgid "" +"Demo mode enabled. The data below are not representative of the assets in " +"the database. %sDisable demo mode%s" +msgstr "" +"Aktiviran je demo modus. Podaci u nastavku nisu reprezentativni za sredstva " +"u bazi podataka. %sDeaktiviraj demo modus%s" -#: src/ComputerUsageProfile.php:52 +#: src/ComputerUsageProfile.php:51 msgid "Computer usage profile" msgid_plural "Computer usage profiles" msgstr[0] "Profil korištenja računala" msgstr[1] "Profili korištenja računala" msgstr[2] "Profili korištenja računala" -#: src/ComputerUsageProfile.php:94 +#: src/ComputerUsageProfile.php:117 msgid "Start time is invalid" msgstr "Vrijeme početka nije valjano" -#: src/ComputerUsageProfile.php:99 +#: src/ComputerUsageProfile.php:122 msgid "Stop time is invalid" msgstr "Vrijeme prekida nije valjano" -#: src/Dashboard/Widget.php:57 src/Dashboard/Grid.php:317 +#: src/Source_Zone.php:72 +msgid "Source name" +msgstr "Ime izvora" + +#: src/Source_Zone.php:80 +msgid "Zone name" +msgstr "Ime zone" + +#: src/Source_Zone.php:88 src/Source_Zone.php:171 src/Source_Zone.php:268 +#: src/Zone.php:127 +msgid "Download enabled" +msgstr "Preuzimanje aktivirano" + +#: src/Source_Zone.php:96 +msgid "Code" +msgstr "Kod" + +#: src/Source_Zone.php:150 +msgid "Not downloadable" +msgstr "Ne može se preuzeti" + +#: src/Source_Zone.php:150 +msgid "This is a fallback source, there is no real-time data available" +msgstr "Ovo je rezervni izvor, nema dostupnih podataka u stvarnom vremenu" + +#: src/Source_Zone.php:172 +msgid "Source for historical" +msgstr "Izvor za povijesne podatke" + +#: src/Source_Zone.php:411 +msgid "Enable / Disable" +msgstr "Aktiviraj / Deaktiviraj" + +#: src/CronTask.php:100 +msgid "Find the Alpha3 country code (ISO3166)" +msgstr "Pronađi Alpha3 kod zemlje (ISO3166)" + +#: src/CronTask.php:101 +msgid "Maximum number of locations to solve" +msgstr "Maksimalan broj mjesta za rješavanje" + +#: src/CronTask.php:106 +msgid "Download carbon emissions from Watttime" +msgstr "Preuzmi emisije ugljika od Watttime" + +#: src/CronTask.php:112 +msgid "Compute usage environmental impact for all assets" +msgstr "Izračunaj utjecaj na okoliš za sva sredstva zbog korištenja" + +#: src/CronTask.php:113 src/CronTask.php:118 +msgid "Maximum number of entries to calculate" +msgstr "Maksimalan broj unosa za računanje" + +#: src/CronTask.php:117 +msgid "Compute embodied environmental impact for all assets" +msgstr "Izračunaj ugrađeni utjecaj na okoliš za sva sredstva" + +#: src/CronTask.php:278 +msgid "No zone to download" +msgstr "Nema zone za preuzimanje" + +#: src/Dashboard/Widget.php:55 src/Dashboard/Grid.php:310 msgid "Environmental impact information video" msgstr "Video s informacijama o utjecaju na okoliš" -#: src/Dashboard/Widget.php:64 +#: src/Dashboard/Widget.php:62 msgid "Methodology information" msgstr "Informacije o metodologiji" -#: src/Dashboard/Widget.php:73 +#: src/Dashboard/Widget.php:71 msgid "Total Carbon Emission" msgstr "Ukupna emisija ugljika" -#: src/Dashboard/Widget.php:80 +#: src/Dashboard/Widget.php:78 msgid "Monthly Carbon Emission" msgstr "Mjesečna emisija ugljika" -#: src/Dashboard/Widget.php:87 src/Dashboard/Widget.php:599 -#: src/Dashboard/Grid.php:281 +#: src/Dashboard/Widget.php:85 src/Dashboard/Widget.php:604 +#: src/Dashboard/Grid.php:268 msgid "Biggest monthly averaged carbon emission per model" msgstr "Najveća prosječna mjesečna emisija ugljika po modelu" -#: src/Dashboard/Widget.php:95 +#: src/Dashboard/Widget.php:93 msgid "Carbon Emission Per month" msgstr "Emisija ugljika mjesečno" -#: src/Dashboard/Widget.php:125 -msgid "Embodied consumed primary energy" -msgstr "Ugrađena potrošena primarna energija" +#: src/Dashboard/Widget.php:100 src/Dashboard/Provider.php:733 +msgid "Usage abiotic depletion potential" +msgstr "Potencijal abiotskog iscrpljivanja zbog korištenja" + +#: src/Dashboard/Widget.php:130 +msgid "Impact criteria" +msgstr "" -#: src/Dashboard/Widget.php:137 +#: src/Dashboard/Widget.php:142 msgid "Unhandled Computers" msgstr "Neupravljana računala" -#: src/Dashboard/Widget.php:148 +#: src/Dashboard/Widget.php:153 msgid "Unhandled Monitors" msgstr "Neupravljani monitori" -#: src/Dashboard/Widget.php:159 +#: src/Dashboard/Widget.php:164 msgid "Unhandled Network equipments" msgstr "Neupravljana mrežna oprema" -#: src/Dashboard/Widget.php:170 +#: src/Dashboard/Widget.php:175 msgid "Radar chart" msgstr "Radarski dijagram" -#: src/Dashboard/Widget.php:496 src/Dashboard/Provider.php:918 +#: src/Dashboard/Widget.php:501 src/Dashboard/Provider.php:1107 msgid "Consumed energy and carbon emission per month" msgstr "Potrošena energija i emisija ugljika mjesečno" -#: src/Dashboard/Widget.php:541 src/Dashboard/Widget.php:556 -#: src/Dashboard/DemoProvider.php:125 src/Dashboard/DemoProvider.php:226 -#: src/Dashboard/Provider.php:1023 +#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:561 +#: src/Dashboard/Provider.php:1212 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 msgid "Carbon emission" msgstr "Emisija ugljika" -#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:559 -#: src/Dashboard/DemoProvider.php:143 src/Dashboard/DemoProvider.php:239 -#: src/Dashboard/Provider.php:1039 +#: src/Dashboard/Widget.php:551 src/Dashboard/Widget.php:564 +#: src/Dashboard/Provider.php:1228 src/Dashboard/DemoProvider.php:106 +#: src/Dashboard/DemoProvider.php:202 msgid "Consumed energy" msgstr "Potrošena energija" -#: src/Dashboard/Widget.php:741 +#: src/Dashboard/Widget.php:746 #, php-format msgid "" "Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " @@ -745,7 +1018,7 @@ msgstr "" "Evaluira emisiju ugljika u ekvivalentu CO₂ tijekom zadnja 2 mjeseca. %s Više" " informacija %s" -#: src/Dashboard/Widget.php:807 +#: src/Dashboard/Widget.php:812 #, php-format msgid "" "Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " @@ -754,373 +1027,401 @@ msgstr "" "Evaluira emisiju ugljika u ekvivalentu CO₂ tijekom zadnjih 12 mjeseci. %s " "Više informacija %s" -#: src/Dashboard/Widget.php:1092 -msgid "Total embodied primary energy" -msgstr "Ukupna ugrađena primarna energija" +#: src/Dashboard/Widget.php:854 +msgid "More information" +msgstr "" + +#: src/Dashboard/Widget.php:893 +#, php-format +msgid "" +"Evaluates the consumption of non renewable resources in Antimony equivalent." +" %s More information %s" +msgstr "" +"Evaluira potrošnju neobnovljivih resursa u ekvivalentu antimona. %s Više " +"informacija %s" -#: src/Dashboard/Widget.php:1161 +#: src/Dashboard/Widget.php:1097 msgid "Handled percentage" msgstr "Postotak upravljanih" -#: src/Dashboard/DemoProvider.php:49 src/Dashboard/DemoProvider.php:125 -#: src/Dashboard/DemoProvider.php:226 src/Dashboard/DemoProvider.php:415 -#: src/Dashboard/Provider.php:169 src/Dashboard/Provider.php:560 -#: src/Dashboard/Provider.php:730 src/Dashboard/Provider.php:1023 -#: src/Dashboard/Provider.php:1025 +#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 +#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 +#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 msgid "CO₂eq" msgstr "CO₂eq" -#: src/Dashboard/DemoProvider.php:83 src/Dashboard/DemoProvider.php:101 -#: src/Dashboard/Provider.php:792 src/Dashboard/Provider.php:826 -msgid "Sbeq" -msgstr "Sbeq" - -#: src/Dashboard/DemoProvider.php:113 -msgid "Usage carbon emission per month" -msgstr "Mjesečna emisija ugljika zbog korištenja" - -#: src/Dashboard/DemoProvider.php:279 src/Dashboard/Provider.php:430 -#, php-format -msgid "plugin carbon - handled %s" -msgstr "dodatak ugljik – upravljani %s" - -#: src/Dashboard/DemoProvider.php:280 src/Dashboard/Provider.php:431 -#, php-format -msgid "plugin carbon - unhandled %s" -msgstr "dodatak ugljik – neupravljani %s" - -#: src/Dashboard/DemoProvider.php:311 -msgid "plugin carbon - handled assets ratio" -msgstr "dodatak ugljik – omjer upravljanih sredstva" - -#: src/Dashboard/DemoProvider.php:334 src/Dashboard/Provider.php:398 -msgid "Handled" -msgstr "Upravljani" - -#: src/Dashboard/DemoProvider.php:339 src/Dashboard/Provider.php:403 -msgid "Unhandled" -msgstr "Neupravljano" - -#: src/Dashboard/DemoProvider.php:362 src/Dashboard/DemoProvider.php:411 -#: src/Dashboard/Provider.php:548 -msgid "plugin carbon - Usage carbon emission" -msgstr "dodatak ugljik – Emisija ugljika korištenja" - -#: src/Dashboard/Dashboard.php:69 -msgid "Carbon dioxyde intensity" -msgstr "Intenzitet ugljičnog dioksida" - -#: src/Dashboard/Grid.php:73 src/Dashboard/Provider.php:375 -msgid "Handled assets ratio" -msgstr "Omjer upravljanih sredstva" - -#: src/Dashboard/Grid.php:82 -msgid "Handled assets count" -msgstr "Broj upravljanih sredstva" - -#: src/Dashboard/Grid.php:145 -#, php-format -msgid "Handled %s" -msgstr "Upravljani %s" - -#: src/Dashboard/Grid.php:156 -#, php-format -msgid "Unhandled %s" -msgstr "Neupravljani %s" - -#: src/Dashboard/Grid.php:172 -msgid "Usage power consumption" -msgstr "Potrošnja energije zbog korištenja" - -#: src/Dashboard/Grid.php:178 -msgid "Usage carbon emission" -msgstr "Emisija ugljika zbog korištenja" - -#: src/Dashboard/Grid.php:192 src/Dashboard/Grid.php:295 -#: src/Dashboard/Provider.php:893 -msgid "Embodied global warming potential" -msgstr "Ugrađeni potencijal globalnog zagrijavanja" - -#: src/Dashboard/Grid.php:198 src/Dashboard/Grid.php:307 -msgid "Embodied primary energy consumed" -msgstr "Potrošena ugrađenia primarna energija" - -#: src/Dashboard/Grid.php:212 src/UsageImpact.php:105 -msgid "Global warming potential" -msgstr "Potencijal globalnog zagrijavanja" - -#: src/Dashboard/Grid.php:218 src/UsageImpact.php:119 -msgid "Abiotic depletion potential" -msgstr "Potencijal abiotskog iscrpljivanja" - -#: src/Dashboard/Grid.php:245 -#, php-format -msgid "Unhandled %s ratio" -msgstr "Neupravljana %s omjer" - -#: src/Dashboard/Grid.php:257 -msgid "Usage carbon emission year to date" -msgstr "Godina emisija ugljika do danas zbog korištenja" - -#: src/Dashboard/Grid.php:263 -msgid "Monthly carbon emission" -msgstr "Mjesečna emisija ugljika" - -#: src/Dashboard/Grid.php:272 -msgid "Usage global warming potential chart" -msgstr "Dijagram potencijala globalnog zagrijavanje zbog korištenja" - -#: src/Dashboard/Grid.php:322 -msgid "Environmental impact methodology_information" -msgstr "Informacije o metodologiji za utjecaj na okoliš" - -#: src/Dashboard/Provider.php:171 src/Dashboard/Provider.php:1010 -#: src/Toolbox.php:201 +#: src/Dashboard/Provider.php:195 src/Dashboard/Provider.php:318 +#: src/Dashboard/Provider.php:1199 src/Toolbox.php:243 msgid "g" msgstr "g" -#: src/Dashboard/Provider.php:172 src/Dashboard/Provider.php:1011 -#: src/Toolbox.php:202 +#: src/Dashboard/Provider.php:196 src/Dashboard/Provider.php:319 +#: src/Dashboard/Provider.php:1200 src/Toolbox.php:244 msgid "Kg" msgstr "Kg" -#: src/Dashboard/Provider.php:173 src/Dashboard/Provider.php:1012 -#: src/Toolbox.php:203 +#: src/Dashboard/Provider.php:197 src/Dashboard/Provider.php:320 +#: src/Dashboard/Provider.php:1201 src/Toolbox.php:245 msgid "t" msgstr "t" -#: src/Dashboard/Provider.php:174 src/Dashboard/Provider.php:1013 -#: src/Toolbox.php:204 +#: src/Dashboard/Provider.php:198 src/Dashboard/Provider.php:321 +#: src/Dashboard/Provider.php:1202 src/Toolbox.php:246 msgid "Kt" msgstr "Kt" -#: src/Dashboard/Provider.php:175 src/Dashboard/Provider.php:1014 -#: src/Toolbox.php:205 +#: src/Dashboard/Provider.php:199 src/Dashboard/Provider.php:322 +#: src/Dashboard/Provider.php:1203 src/Toolbox.php:247 msgid "Mt" msgstr "Mt" -#: src/Dashboard/Provider.php:176 src/Dashboard/Provider.php:1015 -#: src/Toolbox.php:206 +#: src/Dashboard/Provider.php:200 src/Dashboard/Provider.php:323 +#: src/Dashboard/Provider.php:1204 src/Toolbox.php:248 msgid "Gt" msgstr "Gt" -#: src/Dashboard/Provider.php:177 src/Dashboard/Provider.php:1016 -#: src/Toolbox.php:207 +#: src/Dashboard/Provider.php:201 src/Dashboard/Provider.php:324 +#: src/Dashboard/Provider.php:1205 src/Toolbox.php:249 msgid "Tt" msgstr "Tt" -#: src/Dashboard/Provider.php:178 src/Dashboard/Provider.php:1017 -#: src/Toolbox.php:208 +#: src/Dashboard/Provider.php:202 src/Dashboard/Provider.php:325 +#: src/Dashboard/Provider.php:1206 src/Toolbox.php:250 msgid "Pt" msgstr "Pt" -#: src/Dashboard/Provider.php:179 src/Dashboard/Provider.php:1018 -#: src/Toolbox.php:209 +#: src/Dashboard/Provider.php:203 src/Dashboard/Provider.php:326 +#: src/Dashboard/Provider.php:1207 src/Toolbox.php:251 msgid "Et" msgstr "Et" -#: src/Dashboard/Provider.php:180 src/Dashboard/Provider.php:1019 -#: src/Toolbox.php:210 +#: src/Dashboard/Provider.php:204 src/Dashboard/Provider.php:327 +#: src/Dashboard/Provider.php:1208 src/Toolbox.php:252 msgid "Zt" msgstr "Zt" -#: src/Dashboard/Provider.php:181 src/Dashboard/Provider.php:1020 -#: src/Toolbox.php:211 +#: src/Dashboard/Provider.php:205 src/Dashboard/Provider.php:328 +#: src/Dashboard/Provider.php:1209 src/Toolbox.php:253 msgid "Yt" msgstr "Yt" -#: src/Dashboard/Provider.php:330 +#: src/Dashboard/Provider.php:427 msgid "handled assets ratio" msgstr "omjer upravljanih sredstva" -#: src/Dashboard/Provider.php:479 +#: src/Dashboard/Provider.php:473 src/Dashboard/Grid.php:63 +msgid "Handled assets ratio" +msgstr "Omjer upravljanih sredstva" + +#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 +msgid "Handled" +msgstr "Upravljani" + +#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 +msgid "Unhandled" +msgstr "Neupravljano" + +#: src/Dashboard/Provider.php:507 +msgid "Ignored" +msgstr "Zanemareno" + +#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 +#, php-format +msgid "plugin carbon - handled %s" +msgstr "dodatak ugljik – upravljani %s" + +#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 +#, php-format +msgid "plugin carbon - unhandled %s" +msgstr "dodatak ugljik – neupravljani %s" + +#: src/Dashboard/Provider.php:584 +#, php-format +msgid "plugin carbon - ignored %s" +msgstr "dodatak ugljik – zanemareno %s" + +#: src/Dashboard/Provider.php:632 msgid "plugin carbon - Total usage power consumption" msgstr "dodatak ugljik – Ukupna potrošnja energije korištenja" -#: src/Dashboard/Provider.php:718 -msgid "Total embodied global warming potential" -msgstr "Ukupni ugrađeni potencijal globalnog zagrijavanja" +#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 +msgid "plugin carbon - Usage carbon emission" +msgstr "dodatak ugljik – Emisija ugljika korištenja" + +#: src/Dashboard/Provider.php:747 +msgid "Sbeq" +msgstr "Sbeq" -#: src/Dashboard/Provider.php:846 +#: src/Dashboard/Provider.php:1035 msgid "Total abiotic depletion potential" msgstr "Ukupni potencijal iscrpljivanja abiotskih resursa" -#: src/Dashboard/Provider.php:865 +#: src/Dashboard/Provider.php:1051 +msgid "Embodied abiotic depletion potential" +msgstr "Ugrađeni potencijal abiotskog iscrpljivanja" + +#: src/Dashboard/Provider.php:1054 msgid "Total usage abiotic depletion potential" msgstr "Ukupni potencijal iscrpljivanja abiotskih resursa zbog korištenja" -#: src/Dashboard/Provider.php:877 +#: src/Dashboard/Provider.php:1066 msgid "Total global warming potential" msgstr "Ukupni potencijal globalnog zagrijavanja" -#: src/Dashboard/Provider.php:896 +#: src/Dashboard/Provider.php:1082 +msgid "Embodied global warming potential" +msgstr "Ugrađeni potencijal globalnog zagrijavanja" + +#: src/Dashboard/Provider.php:1085 msgid "Total usage global warming potential" msgstr "Ukupni potencijal globalnog zagrijavanja zbog korištenja" -#: src/Dashboard/Provider.php:1029 src/Toolbox.php:287 +#: src/Dashboard/Provider.php:1218 src/Toolbox.php:316 msgid "KWh" msgstr "KWh" -#: src/Dashboard/Provider.php:1030 src/Toolbox.php:288 +#: src/Dashboard/Provider.php:1219 src/Toolbox.php:317 msgid "MWh" msgstr "MWh" -#: src/Dashboard/Provider.php:1031 src/Toolbox.php:289 +#: src/Dashboard/Provider.php:1220 src/Toolbox.php:318 msgid "GWh" msgstr "GWh" -#: src/Dashboard/Provider.php:1032 src/Toolbox.php:290 +#: src/Dashboard/Provider.php:1221 src/Toolbox.php:319 msgid "TWh" msgstr "TWh" -#: src/Dashboard/Provider.php:1033 src/Toolbox.php:291 +#: src/Dashboard/Provider.php:1222 src/Toolbox.php:320 msgid "PWh" msgstr "PWh" -#: src/Dashboard/Provider.php:1034 src/Toolbox.php:292 +#: src/Dashboard/Provider.php:1223 src/Toolbox.php:321 msgid "EWh" msgstr "EWh" -#: src/Dashboard/Provider.php:1035 src/Toolbox.php:293 +#: src/Dashboard/Provider.php:1224 src/Toolbox.php:322 msgid "ZWh" msgstr "ZWh" -#: src/Dashboard/Provider.php:1036 src/Toolbox.php:294 +#: src/Dashboard/Provider.php:1225 src/Toolbox.php:323 msgid "YWh" msgstr "YWh" -#: src/Toolbox.php:251 +#: src/Dashboard/Grid.php:72 +msgid "Handled assets count" +msgstr "Broj upravljanih sredstva" + +#: src/Dashboard/Grid.php:135 +#, php-format +msgid "Handled %s" +msgstr "Upravljani %s" + +#: src/Dashboard/Grid.php:146 +#, php-format +msgid "Unhandled %s" +msgstr "Neupravljani %s" + +#: src/Dashboard/Grid.php:232 +#, php-format +msgid "Unhandled %s ratio" +msgstr "Neupravljana %s omjer" + +#: src/Dashboard/Grid.php:244 +msgid "Usage carbon emission year to date" +msgstr "Godina emisija ugljika do danas zbog korištenja" + +#: src/Dashboard/Grid.php:250 +msgid "Monthly carbon emission" +msgstr "Mjesečna emisija ugljika" + +#: src/Dashboard/Grid.php:259 +msgid "Usage global warming potential chart" +msgstr "Dijagram potencijala globalnog zagrijavanje zbog korištenja" + +#: src/Dashboard/Grid.php:315 +msgid "Environmental impact methodology information" +msgstr "Informacije o metodologiji za utjecaj na okoliš" + +#: src/Dashboard/DemoProvider.php:76 +msgid "Usage carbon emission per month" +msgstr "Mjesečna emisija ugljika zbog korištenja" + +#: src/Dashboard/DemoProvider.php:274 +msgid "plugin carbon - handled assets ratio" +msgstr "dodatak ugljik – omjer upravljanih sredstva" + +#: src/Dashboard/Dashboard.php:68 +msgid "Carbon dioxyde intensity" +msgstr "Intenzitet ugljičnog dioksida" + +#: src/Location.php:189 +msgid "Carbon intensity source and zone" +msgstr "" + +#: src/CarbonIntensity.php:87 +msgid "Emission date" +msgstr "Datum emisije" + +#: src/CarbonIntensity.php:114 +msgid "Intensity" +msgstr "Intenzitet" + +#: src/CarbonEmission.php:49 +msgid "Carbon Emission" +msgid_plural "Carbon Emissions" +msgstr[0] "Emisija ugljika" +msgstr[1] "Emisije ugljika" +msgstr[2] "Emisije ugljika" + +#: src/CarbonEmission.php:120 +msgid "Energy" +msgstr "Energija" + +#: src/CarbonEmission.php:128 +msgid "Emission" +msgstr "Emisija" + +#: src/CarbonEmission.php:136 +msgid "Energy quality" +msgstr "Kvaliteta energije" + +#: src/CarbonEmission.php:144 +msgid "Emission quality" +msgstr "Kvaliteta emisije" + +#: src/Toolbox.php:280 msgid "W" msgstr "Š" -#: src/Toolbox.php:252 +#: src/Toolbox.php:281 msgid "KW" msgstr "KW" -#: src/Toolbox.php:253 +#: src/Toolbox.php:282 msgid "MW" msgstr "MW" -#: src/Toolbox.php:254 +#: src/Toolbox.php:283 msgid "GW" msgstr "GW" -#: src/Toolbox.php:255 +#: src/Toolbox.php:284 msgid "TW" msgstr "TW" -#: src/Toolbox.php:256 +#: src/Toolbox.php:285 msgid "PW" msgstr "PW" -#: src/Toolbox.php:257 +#: src/Toolbox.php:286 msgid "EW" msgstr "EW" -#: src/Toolbox.php:258 +#: src/Toolbox.php:287 msgid "ZW" msgstr "ZW" -#: src/Toolbox.php:259 +#: src/Toolbox.php:288 msgid "YW" msgstr "YW" -#: src/Toolbox.php:286 +#: src/Toolbox.php:315 msgid "Wh" msgstr "Wh" -#: src/SearchOptions.php:196 src/SearchOptions.php:273 -#: src/SearchOptions.php:346 -msgid "Is historizable" -msgstr "Može se historizirati" - -#: src/UsageImpact.php:50 -msgid "Usage impact" -msgid_plural "Usage impacts" -msgstr[0] "Utjecaj korištenja" -msgstr[1] "Utjecaji korištenja" -msgstr[2] "Utjecaji korištenja" +#: src/Toolbox.php:373 src/Toolbox.php:378 +#, php-format +msgid "%1$s %2$s" +msgstr "%1$s %2$s" -#: src/UsageImpact.php:112 -msgid "Global warming potential quality" -msgstr "Kvaliteta potencijala globalnog zagrijavanja" +#: setup.php:285 +msgid "Environmental Impact" +msgstr "Utjecaj na okoliš" -#: src/UsageImpact.php:127 -msgid "Abiotic depletion potential quality" -msgstr "Kvaliteta potencijalnog abiotskog iscrpljivanja" +#: hook.php:97 +msgid "" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." +msgstr "" +"Za više detalja provjeri zapisnike. Prijavi problem u repozitoriju dodatka." -#: src/UsageImpact.php:134 src/UsageImpact.php:142 -msgid "Primary energy quality" -msgstr "Kvaliteta primarne energije" +#: hook.php:301 +msgid "Associate to an usage profile" +msgstr "Poveži s profilom korištenja" -#: src/CarbonIntensity.php:66 -msgid "Carbon intensity" -msgstr "Intenzitet ugljika" +#: hook.php:302 hook.php:307 +msgid "Delete all calculated environmental impacts" +msgstr "" -#: src/CarbonIntensity.php:88 -msgid "Emission date" -msgstr "Datum emisije" +#: hook.php:311 hook.php:316 hook.php:320 +msgid "Update type power consumption" +msgstr "Aktualiziraj vrstu potrošnju energije" -#: src/CarbonIntensity.php:115 -msgid "Intensity" -msgstr "Intenzitet" +#: hook.php:312 +msgid "Update category" +msgstr "Aktualiziraj kategoriju" -#: src/EmbodiedImpact.php:90 -msgid "Global Warming Potential" -msgstr "Potencijal globalnog zagrijavanja" +#: hook.php:324 +msgid "Update zone for Boavizta engine" +msgstr "Aktualiziranje zonu za Boavizta pogon" -#: src/EmbodiedImpact.php:100 -msgid "Abiotic Depletion Potential" -msgstr "Potencijal abiotskog iscrpljivanja" +#: hook.php:325 +msgid "Update carbon intensity source and zone" +msgstr "" -#: src/EmbodiedImpact.php:110 -msgid "Primary energy" -msgstr "Primarna energija" +#: install/install/create_automatic_actions.php:52 +msgid "Find the Alpha3 country code (ISO3166) of locations" +msgstr "Pronađi Alpha3 kod zemlje (ISO3166) mjesta" -#: src/ComputerType.php:56 -msgid "Unspecified" -msgstr "Nespecificirano" +#: install/install/create_automatic_actions.php:64 +msgid "Compute carbon emissions of computers" +msgstr "Izračunaj emisije ugljika računala" -#: src/ComputerType.php:58 -msgid "Server" -msgstr "Server" +#: install/install/create_automatic_actions.php:76 +msgid "Compute embodied impact of assets" +msgstr "Izračunaj ugrađeni utjecaj sredstva" -#: src/ComputerType.php:59 -msgid "Laptop" -msgstr "Laptop" +#: install/install/create_uasge_profiles.php:41 +msgid "Always on" +msgstr "Uvijek uključeno" -#: src/ComputerType.php:60 -msgid "Tablet" -msgstr "Tablet" +#: install/install/create_uasge_profiles.php:52 +msgid "Office hours" +msgstr "Radno vrijeme" -#: src/ComputerType.php:61 -msgid "Smartphone" -msgstr "Pametni telefon" +#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 +#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 +msgid "Missing arguments in request." +msgstr "Nedostaju argumenti u zahtjevu." -#: src/CarbonIntensitySource_Zone.php:70 -msgid "Source name" -msgstr "Ime izvora" +#: front/usageimpact.form.php:80 front/usageimpact.form.php:106 +#: front/usageimpact.form.php:114 front/embodiedimpact.form.php:92 +msgid "Bad arguments." +msgstr "Loši argumenti." -#: src/CarbonIntensitySource_Zone.php:78 -msgid "Zone name" -msgstr "Ime zone" +#: front/usageimpact.form.php:90 front/embodiedimpact.form.php:68 +#: front/embodiedimpact.form.php:77 +msgid "Reset denied." +msgstr "Resetiranje odbijeno." -#: src/CarbonIntensitySource_Zone.php:94 -msgid "Code" -msgstr "Kod" +#: front/usageimpact.form.php:95 front/embodiedimpact.form.php:82 +msgid "Reset failed." +msgstr "Resetiranje nije uspjelo." -#: src/CarbonIntensitySource_Zone.php:148 -msgid "Not downloadable" -msgstr "Ne može se preuzeti" +#: front/usageimpact.form.php:122 +msgid "Missing data prevents historization of this asset." +msgstr "Podaci koji nedostaju sprečavaju historizaciju ovog sredstva." -#: src/CarbonIntensitySource_Zone.php:148 -msgid "This is a fallback source, there is no real-time data available" -msgstr "Ovo je rezervni izvor, nema dostupnih podataka u stvarnom vremenu" +#: front/usageimpact.form.php:125 +msgid "Update of global warming potential failed." +msgstr "Aktualiziranje potencijala globalnog zagrijavanja nije uspjelo." -#: src/CarbonIntensitySource_Zone.php:170 -msgid "Source for historical" -msgstr "Izvor za povijesne podatke" +#: front/usageimpact.form.php:131 front/embodiedimpact.form.php:101 +msgid "Unable to find calculation engine for this asset." +msgstr "Nije moguće pronaći pogon za izračunavanje za ovo sredtsvo." -#: src/CarbonIntensitySource_Zone.php:351 -msgid "Enable / Disable" -msgstr "Aktiviraj / Deaktiviraj" +#: front/usageimpact.form.php:136 +msgid "Update of usage impact failed." +msgstr "Aktualiziranje utjecaja korištenja nije uspjelo." diff --git a/locales/ko_KR.po b/locales/ko_KR.po index 350b2cf7..27d7eef2 100644 --- a/locales/ko_KR.po +++ b/locales/ko_KR.po @@ -5,16 +5,16 @@ # # Translators: # Thierry Bugier , 2025 -# 조성현 (jaymz9634) , 2025 +# 조성현 (jaymz9634) , 2026 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 08:10+0000\n" -"PO-Revision-Date: 2025-07-03 13:58+0000\n" -"Last-Translator: 조성현 (jaymz9634) , 2025\n" +"POT-Creation-Date: 2026-04-15 02:49+0000\n" +"PO-Revision-Date: 2025-10-29 09:26+0000\n" +"Last-Translator: 조성현 (jaymz9634) , 2026\n" "Language-Team: Korean (Korea) (https://app.transifex.com/teclib/teams/28042/ko_KR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,124 +22,54 @@ msgstr "" "Language: ko_KR\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: templates/dashboard/usage-carbon-emission-last-year.html.twig -msgid "Yearly Usage Carbon Emission" -msgstr "" - -#: templates/dashboard/monthly-carbon-emission.html.twig -msgid "Monthly usage carbon emission" -msgstr "" - -#: templates/dashboard/monthly-carbon-emission.html.twig -#, php-format -msgid "Compared to %s" -msgstr "" - -#: templates/dashboard/embodied-primary-energy.html.twig -msgid "Embodied primary energy" -msgstr "" - -#: templates/dashboard/usage-abiotic-depletion.html.twig -#: src/Dashboard/Widget.php:102 src/Dashboard/DemoProvider.php:95 -#: src/Dashboard/Grid.php:184 src/Dashboard/Grid.php:287 -#: src/Dashboard/Provider.php:812 -msgid "Usage abiotic depletion potential" -msgstr "" - -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#: templates/dashboard/unhandled-monitors-card.html.twig -#: templates/dashboard/unhandled-computers-card.html.twig -msgid "Warning" -msgstr "" - -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#, php-format -msgid "" -"It represents %s percent of your parc that contains %s network equipments." -msgstr "" - -#: templates/dashboard/unhandled-monitors-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s monitors." -msgstr "" - -#: templates/dashboard/information-block.html.twig -msgid "Information" -msgstr "" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 +#: src/ComputerUsageProfile.php:169 +msgid "Start time" +msgstr "시작 시간" -#: templates/dashboard/information-block.html.twig -msgid "" -"Our data is sourced from reliable sources and is meticulously calculated " -"using industry-standard methodologies. We utilize accurate measurement tools" -" and algorithms to ensure the precision and reliability of our environmental" -" metrics." -msgstr "" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 +msgid "Stop time" +msgstr "종료 시간" -#: templates/dashboard/information-block.html.twig -msgid "" -"As we move towards a greener future, businesses will soon be required to " -"report energy usage and carbon emissions. By 2025, many areas will enforce " -"these regulations. Adopting these practices now ensures compliance and helps" -" combat climate change." -msgstr "" +#: templates/computerusageprofile.html.twig +msgid "Days of week where the computer usually runs" +msgstr "컴퓨터가 일반적으로 실행되는 요일" -#: templates/dashboard/information-block.html.twig -msgid "Did you know ?" -msgstr "" +#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 +#: src/Impact/Usage/Engine.php:48 +msgid "Boavizta" +msgstr "Boavizta" -#: templates/dashboard/information-block.html.twig -msgid "" -"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " -"about 20 meters." +#: templates/location.html.twig src/SearchOptions.php:138 src/Location.php:182 +msgid "Boavizta zone" msgstr "" -#: templates/dashboard/embodied-carbon-emission.html.twig -#: src/Dashboard/Widget.php:111 -msgid "Embodied carbon emission" -msgstr "" +#: templates/location.html.twig src/CarbonIntensity.php:65 +msgid "Carbon intensity" +msgstr "탄소 강도" -#: templates/dashboard/information-video-card.html.twig -msgid "Want to know more ?" -msgstr "더 자세히 알고 싶으신가요?" +#: templates/usageinfo.html.twig +msgid "Asset usage" +msgstr "자산 사용" -#: templates/dashboard/information-video-card.html.twig -msgid "Here is a video about the impact of numeric on the enviromnent." -msgstr "" +#: templates/usageinfo.html.twig +msgid "Usage profile" +msgid_plural "Usage profiles" +msgstr[0] "사용 프로필" -#: templates/dashboard/unhandled-computers-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s computers." -msgstr "" +#: templates/quick-report.html.twig front/report.php:55 +msgid "GLPI Carbon" +msgstr "GLPI 탄소" -#: templates/dashboard/embodied-abiotic-depletion.html.twig -#: src/Dashboard/Widget.php:118 src/Dashboard/DemoProvider.php:77 -#: src/Dashboard/Grid.php:204 src/Dashboard/Grid.php:301 -#: src/Dashboard/Provider.php:778 src/Dashboard/Provider.php:862 -msgid "Embodied abiotic depletion potential" +#: templates/components/form/source_zone_selector.html.twig +#: src/AbstractModel.php:186 +msgid "Source" msgstr "" -#: templates/monitortype.html.twig -msgid "" -"This power value is used as default when the power of a monitor model is " -"unknown" -msgstr "이 전력 값은 모니터 모델의 전력이 알려지지 않은 경우 기본값으로 사용됩니다." - -#: templates/monitortype.html.twig templates/computertype.html.twig -#: templates/networkequipmenttype.html.twig src/AbstractType.php:56 -msgid "Power" -msgid_plural "Powers" -msgstr[0] "전력" - -#: templates/computertype.html.twig -msgid "" -"This power value is used as default when the power of a computer model is " -"unknown" -msgstr "이 전력 값은 컴퓨터 모델의 전력이 알려지지 않은 경우 기본값으로 사용됩니다." - -#: templates/computertype.html.twig src/SearchOptions.php:251 -#: src/ComputerType.php:78 -msgid "Category" -msgstr "분류" +#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 +msgid "Carbon intensity zone" +msgid_plural "Carbon intensity zones" +msgstr[0] "탄소 강도 구역" #: templates/pages/CarbonIntensitySource/tab_zone.html.twig msgid "No zone available" @@ -149,12 +79,6 @@ msgstr "사용 가능한 구역 없음" msgid "Please run the automatic action to downlaod data from this source." msgstr "이 소스에서 데이터를 다운로드하려면 자동 작업을 실행하세요." -#: templates/networkequipmenttype.html.twig -msgid "" -"This power value is used as default when the power of a network equipment " -"model is unknown" -msgstr "이 전력 값은 네트워크 장비 모델의 전력이 알려지지 않은 경우 기본값으로 사용됩니다." - #: templates/environmentalimpact-item.html.twig msgid "Usage" msgstr "사용법" @@ -167,43 +91,10 @@ msgstr "데이터 재설정" msgid "Calculate data" msgstr "데이터 산출" -#: templates/environmentalimpact-item.html.twig +#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 msgid "Embodied impact" -msgstr "구체화된 영향도" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:125 -#: src/ComputerUsageProfile.php:146 -msgid "Start time" -msgstr "" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:154 -msgid "Stop time" -msgstr "" - -#: templates/computerusageprofile.html.twig -msgid "Days of week where the computer usually runs" -msgstr "" - -#: templates/usageinfo.html.twig -msgid "Asset usage" -msgstr "자산 사용" - -#: templates/usageinfo.html.twig -msgid "Usage profile" -msgid_plural "Usage profiles" -msgstr[0] "사용 프로필" - -#: templates/quick-report.html.twig front/report.php:55 -msgid "GLPI Carbon" -msgstr "GLPI 탄소" - -#: templates/location.html.twig src/Profile.php:45 src/UsageInfo.php:91 -msgid "Environmental impact" -msgstr "" - -#: templates/location.html.twig src/Location.php:78 src/SearchOptions.php:121 -msgid "Boavizta zone" -msgstr "" +msgid_plural "Embodied impacts" +msgstr[0] "" #: templates/history/status-item.html.twig msgid "Historization status" @@ -236,12 +127,16 @@ msgstr "" msgid "Linked to a computer" msgstr "" +#: templates/history/status-item.html.twig +msgid "Attached computer has a location" +msgstr "" + #: templates/history/status-item.html.twig msgid "Has a location" msgstr "" #: templates/history/status-item.html.twig -msgid "The location has a state or a country" +msgid "The location has carbon intensity data" msgstr "" #: templates/history/status-item.html.twig @@ -264,6 +159,10 @@ msgstr "" msgid "The asset has a type" msgstr "" +#: templates/history/status-item.html.twig +msgid "Type is not ignored" +msgstr "" + #: templates/history/status-item.html.twig msgid "The type has a power consumption" msgstr "" @@ -284,13 +183,22 @@ msgstr "" msgid "Legend" msgstr "" -#: templates/config.html.twig -msgid "Electricity maps" -msgstr "Electricity maps" +#: templates/monitortype.html.twig +msgid "" +"This power value is used as default when the power of a monitor model is " +"unknown" +msgstr "이 전력 값은 모니터 모델의 전력이 알려지지 않은 경우 기본값으로 사용됩니다." -#: templates/config.html.twig -msgid "Key for electricitymap.org API" -msgstr "electricitymap.org API에 대한 키" +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Power" +msgid_plural "Powers" +msgstr[0] "전력" + +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Do not evaluate" +msgstr "" #: templates/config.html.twig msgid "Impact engine" @@ -300,785 +208,1179 @@ msgstr "임펙트 엔진" msgid "Usage carbon emissions are always calculated internally" msgstr "항상 내부적으로 사용 탄소 배출량 계산됨" -#: templates/config.html.twig src/Impact/Embodied/Engine.php:46 -#: src/Impact/Usage/Engine.php:46 -msgid "Boavizta" -msgstr "Boavizta" +#: templates/computertype.html.twig +msgid "" +"This power value is used as default when the power of a computer model is " +"unknown" +msgstr "이 전력 값은 컴퓨터 모델의 전력이 알려지지 않은 경우 기본값으로 사용됩니다." -#: templates/config.html.twig -msgid "Base URL to the Boaviztapi instance" -msgstr "Boaviztapi 인스턴스에 대한 기본 URL" +#: templates/computertype.html.twig src/SearchOptions.php:303 +#: src/ComputerType.php:78 +msgid "Category" +msgstr "분류" -#: templates/config.html.twig +#: templates/dashboard/information-block.html.twig +msgid "Information" +msgstr "정보" + +#: templates/dashboard/information-block.html.twig msgid "" -"Geocoding converts a location into a ISO 3166 (3 letters) code. Boavizta " -"needs this to determine usage impacts of assets. This feature sends the " -"address stored in a location to nominatim.org service. If this is an issue, " -"you can disable it below, and fill the coutry code manually." +"Our data is sourced from reliable sources and is meticulously calculated " +"using industry-standard methodologies. We utilize accurate measurement tools" +" and algorithms to ensure the precision and reliability of our environmental" +" metrics." msgstr "" -"지오코딩은 위치를 ISO 3166(3자리) 코드로 변환합니다. Boavizta는 자산 사용에 따른 영향을 파악하기 위해 이 기능이 " -"필요합니다. 이 기능은 위치에 저장된 주소를 nominatim.org 서비스로 전송합니다. 문제가 발생하는 경우 아래에서 이 기능을 " -"비활성화하고 국가 코드를 직접 입력할 수 있습니다." +"당사의 데이터는 신뢰할 수 있는 출처에서 수집되었으며, 업계 표준 방법론을 사용하여 꼼꼼하게 계산됩니다. 또한 정확한 측정 도구와 " +"알고리즘을 활용하여 환경 지표의 정확성과 신뢰성을 보장합니다." -#: templates/config.html.twig -msgid "Enable geocoding" -msgstr "지오코딩 활성화" +#: templates/dashboard/information-block.html.twig +msgid "" +"As we move towards a greener future, businesses will soon be required to " +"report energy usage and carbon emissions. By 2025, many areas will enforce " +"these regulations. Adopting these practices now ensures compliance and helps" +" combat climate change." +msgstr "" +"우리가 더 푸른 미래를 향해 나아가면서, 기업들은 곧 에너지 사용량과 탄소 배출량을 보고해야 할 것입니다. 2025년까지 많은 지역에서 " +"이러한 규정을 시행할 것입니다. 지금 이러한 관행을 도입하면 규정 준수를 보장하고 기후 변화 대응에 도움이 됩니다." -#: setup.php:263 -msgid "Environmental Impact" +#: templates/dashboard/information-block.html.twig +msgid "Did you know ?" +msgstr "알고 계셨나요?" + +#: templates/dashboard/information-block.html.twig +msgid "" +"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " +"about 20 meters." +msgstr "1g의 CO₂는 자동차를 약 20m 주행할 때 배출되는 CO₂와 같습니다." + +#: templates/dashboard/unhandled-monitors-card.html.twig +#: templates/dashboard/unhandled-computers-card.html.twig +#: templates/dashboard/unhandled-network-equipments-card.html.twig +msgid "Warning" +msgstr "경고" + +#: templates/dashboard/unhandled-monitors-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s monitors." msgstr "" -#: front/embodiedimpact.form.php:65 front/embodiedimpact.form.php:88 -#: front/usageimpact.form.php:65 front/usageimpact.form.php:102 -msgid "Missing arguments in request." +#: templates/dashboard/usage-carbon-emission-last-year.html.twig +msgid "Yearly Usage Carbon Emission" msgstr "" -#: front/embodiedimpact.form.php:70 front/embodiedimpact.form.php:79 -#: front/usageimpact.form.php:89 -msgid "Reset denied." +#: templates/dashboard/monthly-carbon-emission.html.twig +msgid "Monthly usage carbon emission" msgstr "" -#: front/embodiedimpact.form.php:84 front/usageimpact.form.php:94 -msgid "Reset failed." +#: templates/dashboard/monthly-carbon-emission.html.twig +#, php-format +msgid "Compared to %s" msgstr "" -#: front/embodiedimpact.form.php:94 front/usageimpact.form.php:133 -msgid "Unable to find calculation engine for this asset." +#: templates/dashboard/unhandled-computers-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s computers." msgstr "" -#: front/embodiedimpact.form.php:103 -msgid "Update failed." +#: templates/dashboard/unhandled-network-equipments-card.html.twig +#, php-format +msgid "" +"It represents %s percent of your parc that contains %s network equipments." msgstr "" -#: front/usageimpact.form.php:79 front/usageimpact.form.php:108 -#: front/usageimpact.form.php:116 -msgid "Bad arguments." +#: templates/dashboard/information-video-card.html.twig +msgid "Want to know more ?" +msgstr "더 자세히 알고 싶으신가요?" + +#: templates/dashboard/information-video-card.html.twig +msgid "Here is a video about the impact of numeric on the enviromnent." +msgstr "숫자가 환경에 미치는 영향에 대한 영상입니다." + +#: templates/abstractmodel.html.twig +msgid "" +"The impacts below shall include the manufacturing, disposal and recycling " +"processes only." msgstr "" -#: front/usageimpact.form.php:98 -msgid "Delete of usage impact failed." +#: templates/abstractmodel.html.twig +msgid "Take care of the expected units before setting an impact." msgstr "" -#: front/usageimpact.form.php:124 -msgid "Missing data prevents historization of this asset." +#: templates/abstractmodel.html.twig +msgid "Data quality" msgstr "" -#: front/usageimpact.form.php:127 -msgid "Update of global warming potential failed." +#: templates/abstractmodel.html.twig +msgid "Data source" msgstr "" -#: front/usageimpact.form.php:138 -msgid "Update of usage impact failed." +#: templates/networkequipmenttype.html.twig +msgid "" +"This power value is used as default when the power of a network equipment " +"model is unknown" +msgstr "이 전력 값은 네트워크 장비 모델의 전력이 알려지지 않은 경우 기본값으로 사용됩니다." + +#: src/Command/CollectCarbonIntensityCommand.php:70 +msgid "Read carbon dioxyde intensity from external sources" msgstr "" -#: hook.php:293 -msgid "Associate to an usage profile" +#: src/Command/CollectCarbonIntensityCommand.php:84 +msgid "Source:" msgstr "" -#: hook.php:297 hook.php:302 hook.php:306 -msgid "Update type power consumption" +#: src/Command/CollectCarbonIntensityCommand.php:95 +msgid "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" msgstr "" -#: hook.php:298 -msgid "Update category" +#: src/Command/CollectCarbonIntensityCommand.php:99 +msgid "Geocoding is not enabled. Cannot resolve an address into a zone" msgstr "" -#: hook.php:310 -msgid "Update zone for Boavizta engine" +#: src/Command/CollectCarbonIntensityCommand.php:104 +msgid "Address:" msgstr "" -#: install/install/create_automatic_actions.php:45 -msgid "Find the Alpha3 country code (ISO3166) of locations" +#: src/Command/CollectCarbonIntensityCommand.php:107 +msgid "Zone:" msgstr "" -#: install/install/create_automatic_actions.php:57 -msgid "Compute carbon emissions of computers" +#: src/Command/CollectCarbonIntensityCommand.php:123 +#: src/Command/CreateFakeCarbonIntensityCommand.php:67 +msgid "Creating data source name" +msgstr "데이터 소스 이름 생성" + +#: src/Command/CollectCarbonIntensityCommand.php:130 +msgid "This source does not exist" msgstr "" -#: install/install/create_automatic_actions.php:69 -msgid "Collect carbon intensities from RTE" +#: src/Command/CollectCarbonIntensityCommand.php:149 +msgid "The zone is not handled by the data source" msgstr "" -#: install/install/create_automatic_actions.php:81 -msgid "Collect carbon intensities from ElectricityMap" +#: src/Command/CollectCarbonIntensityCommand.php:155 +msgid "Reading data..." msgstr "" -#: install/install/create_automatic_actions.php:93 -msgid "Compute embodied impact of assets" +#: src/Command/CreateFakeCarbonIntensityCommand.php:78 +msgid "Creating data zone name" +msgstr "데이터 영역 이름 생성" + +#: src/Command/CreateFakeCarbonIntensityCommand.php:89 +msgid "Creating fake data..." +msgstr "가짜 데이터를 만드는 중..." + +#: src/Command/ExportDashboardCommand.php:68 +msgid "Updating the report dashboard description" msgstr "" -#: install/install/create_uasge_profiles.php:41 -msgid "Always on" +#: src/Command/ExportDashboardCommand.php:73 +msgid "Dashboard not found" msgstr "" -#: install/install/create_uasge_profiles.php:52 -msgid "Office hours" +#: src/Command/ExportDashboardCommand.php:99 +#, php-format +msgid "Dashboard description saved to %s" msgstr "" -#: src/AbstractType.php:64 src/Dashboard/Grid.php:68 -#: src/Dashboard/Grid.php:133 src/Dashboard/Grid.php:234 -msgid "Carbon" -msgstr "탄소" +#: src/Command/CreateTestInventoryCommand.php:145 +msgid "Creating test inventory" +msgstr "테스트 인벤토리 생성" -#: src/CronTask.php:64 -msgid "Find the Alpha3 country code (ISO3166)" +#: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 +#: src/ComputerType.php:70 src/MonitorType.php:50 +msgid "Power consumption" msgstr "" -#: src/CronTask.php:65 -msgid "Maximum number of locations to solve" +#: src/UsageInfo.php:62 +msgid "Usage informations" msgstr "" -#: src/CronTask.php:70 -msgid "Download carbon emissions from RTE" +#: src/UsageInfo.php:94 src/AbstractModel.php:54 src/Location.php:73 +#: src/AbstractType.php:55 src/Profile.php:45 +msgid "Environmental impact" +msgstr "" + +#: src/UsageInfo.php:241 +#, php-format +msgid "%s More information %s" +msgstr "" + +#: src/DataSource/Lca/Boaviztapi/Config.php:100 +msgid "Invalid Boavizta API URL" msgstr "" -#: src/CronTask.php:71 src/CronTask.php:77 +#: src/DataSource/Lca/Boaviztapi/Config.php:108 +msgid "Connection to Boavizta API established" +msgstr "" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:56 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:53 +msgid "Resource diagnosis" +msgstr "" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:71 +msgid "Collect carbon intensities from RTE" +msgstr "RTE에서 탄소 강도 수집" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:89 +msgid "Download carbon emissions from RTE" +msgstr "RTE에서 탄소 배출량 다운로드" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:90 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:87 +#: src/CronTask.php:107 msgid "Maximum number of entries to download" +msgstr "다운로드할 수 있는 최대 항목 수" + +#: src/DataSource/CarbonIntensity/AbstractCronTask.php:103 +#: src/Source_Zone.php:537 +msgid "End" +msgstr "종료" + +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:68 +msgid "Collect carbon intensities from Electricity Maps" msgstr "" -#: src/CronTask.php:76 -msgid "Download carbon emissions from ElectricityMap" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:86 +msgid "Download carbon emissions from Electricity Maps" msgstr "" -#: src/CronTask.php:82 -msgid "Compute usage environnemental impact for all assets" +#: src/AbstractImpact.php:125 src/CarbonEmission.php:151 +msgid "Date of evaluation" msgstr "" -#: src/CronTask.php:83 src/CronTask.php:88 -msgid "Maximum number of entries to calculate" +#: src/AbstractImpact.php:132 src/CarbonEmission.php:158 +msgid "Engine" +msgstr "" + +#: src/AbstractImpact.php:139 src/CarbonEmission.php:165 +msgid "Engine version" msgstr "" -#: src/CronTask.php:87 -msgid "Compute embodied environnemental impact for all assets" +#: src/DataTracking/AbstractTracked.php:77 +msgid "Impact not evaluated" msgstr "" -#: src/CronTask.php:211 -msgid "No zone to download" +#: src/DataTracking/AbstractTracked.php:78 +msgid "Unspecified quality" msgstr "" -#: src/NetworkEquipmentType.php:50 src/MonitorType.php:50 -#: src/SearchOptions.php:142 src/ComputerType.php:70 -msgid "Power consumption" +#: src/DataTracking/AbstractTracked.php:79 +msgid "Manual data" msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:83 -#: src/Impact/Usage/AbstractUsageImpact.php:83 +#: src/DataTracking/AbstractTracked.php:80 +msgid "Estimated data" +msgstr "" + +#: src/DataTracking/AbstractTracked.php:81 +msgid "Downsampled data" +msgstr "" + +#: src/DataTracking/AbstractTracked.php:82 +msgid "Measured data" +msgstr "" + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 +#: src/Impact/Usage/AbstractUsageImpact.php:91 msgid "grams of carbon dioxyde equivalent" msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:85 -#: src/Impact/Usage/AbstractUsageImpact.php:85 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 +#: src/Impact/Usage/AbstractUsageImpact.php:93 msgid "grams of antimony equivalent" msgstr "" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:87 -#: src/Impact/Usage/AbstractUsageImpact.php:87 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 +#: src/Impact/Usage/AbstractUsageImpact.php:95 msgid "joules" msgstr "" -#: src/Impact/History/AbstractAsset.php:364 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 +msgid "Connection to Boavizta failed." +msgstr "" + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 +msgid "Embodied impact evaluation falied." +msgstr "" + +#: src/Impact/History/AbstractAsset.php:370 msgid "Error while calculating impact" msgstr "" -#: src/Impact/History/AbstractAsset.php:372 +#: src/Impact/History/AbstractAsset.php:378 msgid "Nothing to calculate" msgstr "" -#: src/Impact/History/AbstractAsset.php:378 +#: src/Impact/History/AbstractAsset.php:384 #, php-format msgid "%d entries calculated" msgstr "" -#: src/CarbonIntensitySource.php:45 -msgid "Carbon intensity source" -msgid_plural "Carbon intensity sources" -msgstr[0] "" +#: src/Impact/Type.php:159 +msgid "Embodied Global warming potential" +msgstr "" -#: src/Report.php:50 -msgid "Carbon report" -msgid_plural "Carbon reports" -msgstr[0] "" +#: src/Impact/Type.php:160 +msgid "Embodied Abiotic depletion potential" +msgstr "" -#: src/Report.php:102 -#, php-format +#: src/Impact/Type.php:161 +msgid "Embodied Primary energy consumed" +msgstr "" + +#: src/Impact/Type.php:162 +msgid "Embodied Climate change - Contribution of biogenic emissions" +msgstr "" + +#: src/Impact/Type.php:163 +msgid "Embodied Climate change - Contribution of fossil fuel emissions" +msgstr "" + +#: src/Impact/Type.php:164 msgid "" -"Demo mode enabled. The data below are not representative of the assets in " -"the database. %sDisable demo mode%s" +"Embodied Climate change - Contribution of emissions from land use change" msgstr "" -#: src/CarbonEmission.php:48 -msgid "Carbon Emission" -msgid_plural "Carbon Emissions" -msgstr[0] "" +#: src/Impact/Type.php:165 +msgid "Embodied Emissions of radionizing substances" +msgstr "" -#: src/CarbonEmission.php:119 -msgid "Energy" +#: src/Impact/Type.php:166 +msgid "Embodied Land use" msgstr "" -#: src/CarbonEmission.php:127 -msgid "Emission" +#: src/Impact/Type.php:167 +msgid "Embodied Depletion of the ozone layer" msgstr "" -#: src/CarbonEmission.php:135 -msgid "Energy quality" +#: src/Impact/Type.php:168 +msgid "Embodied Fine particle emissions" msgstr "" -#: src/CarbonEmission.php:143 -msgid "Emission quality" +#: src/Impact/Type.php:169 +msgid "Embodied Photochemical ozone formation" msgstr "" -#: src/CarbonEmission.php:150 src/UsageImpact.php:149 -#: src/EmbodiedImpact.php:120 -msgid "Date of evaluation" +#: src/Impact/Type.php:170 +msgid "Embodied Use of water resources" msgstr "" -#: src/CarbonEmission.php:157 src/UsageImpact.php:156 -#: src/EmbodiedImpact.php:127 -msgid "Engine" +#: src/Impact/Type.php:171 +msgid "Embodied Material input per unit of service" msgstr "" -#: src/CarbonEmission.php:164 src/UsageImpact.php:163 -#: src/EmbodiedImpact.php:134 -msgid "Engine version" +#: src/Impact/Type.php:172 +msgid "Embodied Use of mineral and metal resources" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:67 -#: src/Command/CollectCarbonIntensityCommand.php:68 -msgid "Creating data source name" +#: src/Impact/Type.php:173 +msgid "Embodied Use of fossil resources (including nuclear)" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:78 -msgid "Creating data zone name" +#: src/Impact/Type.php:174 +msgid "Embodied Acidification" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:89 -msgid "Creating fake data..." +#: src/Impact/Type.php:175 +msgid "Embodied Freshwater ecotoxicity" +msgstr "" + +#: src/Impact/Type.php:178 +msgid "Embodied Eutrophication of freshwater" +msgstr "" + +#: src/Impact/Type.php:179 +msgid "Embodied Eutrophication of marine waters" +msgstr "" + +#: src/Impact/Type.php:180 +msgid "Embodied Terrestrial eutrophication" msgstr "" -#: src/Command/ExportDashboardCommand.php:69 -msgid "Updating the report dashboard description" +#: src/Impact/Type.php:195 +msgid "Usage Global warming potential" +msgstr "" + +#: src/Impact/Type.php:196 +msgid "Usage Abiotic depletion potential" +msgstr "" + +#: src/Impact/Type.php:197 +msgid "Usage Primary energy consumed" +msgstr "" + +#: src/Impact/Type.php:198 +msgid "Usage Climate change - Contribution of biogenic emissions" +msgstr "" + +#: src/Impact/Type.php:199 +msgid "Usage Climate change - Contribution of fossil fuel emissions" +msgstr "" + +#: src/Impact/Type.php:200 +msgid "Usage Climate change - Contribution of emissions from land use change" +msgstr "" + +#: src/Impact/Type.php:201 +msgid "Usage Emissions of radionizing substances" +msgstr "" + +#: src/Impact/Type.php:202 +msgid "Usage Land use" +msgstr "" + +#: src/Impact/Type.php:203 +msgid "Usage Depletion of the ozone layer" +msgstr "" + +#: src/Impact/Type.php:204 +msgid "Usage Fine particle emissions" +msgstr "" + +#: src/Impact/Type.php:205 +msgid "Usage Photochemical ozone formation" +msgstr "" + +#: src/Impact/Type.php:206 +msgid "Usage Use of water resources" +msgstr "" + +#: src/Impact/Type.php:207 +msgid "Usage Material input per unit of service" +msgstr "" + +#: src/Impact/Type.php:208 +msgid "Usage Use of mineral and metal resources" +msgstr "" + +#: src/Impact/Type.php:209 +msgid "Usage Use of fossil resources (including nuclear)" +msgstr "" + +#: src/Impact/Type.php:210 +msgid "Usage Acidification" +msgstr "" + +#: src/Impact/Type.php:211 +msgid "Usage Freshwater ecotoxicity" +msgstr "" + +#: src/Impact/Type.php:214 src/Impact/Type.php:342 +msgid "Usage Eutrophication of freshwater" +msgstr "" + +#: src/Impact/Type.php:215 src/Impact/Type.php:343 +msgid "Usage Eutrophication of marine waters" +msgstr "" + +#: src/Impact/Type.php:216 src/Impact/Type.php:344 +msgid "Usage Terrestrial eutrophication" +msgstr "" + +#: src/Impact/Type.php:231 +msgid "Total Global warming potential" +msgstr "" + +#: src/Impact/Type.php:232 +msgid "Total Abiotic depletion potential" +msgstr "" + +#: src/Impact/Type.php:233 +msgid "Total Primary energy consumed" +msgstr "" + +#: src/Impact/Type.php:234 +msgid "Total Climate change - Contribution of biogenic emissions" +msgstr "" + +#: src/Impact/Type.php:235 +msgid "Total Climate change - Contribution of fossil fuel emissions" +msgstr "" + +#: src/Impact/Type.php:236 +msgid "Total Climate change - Contribution of emissions from land use change" +msgstr "" + +#: src/Impact/Type.php:237 +msgid "Total Emissions of radionizing substances" +msgstr "" + +#: src/Impact/Type.php:238 +msgid "Total Land use" +msgstr "" + +#: src/Impact/Type.php:239 +msgid "Total Depletion of the ozone layer" +msgstr "" + +#: src/Impact/Type.php:240 +msgid "Total Fine particle emissions" +msgstr "" + +#: src/Impact/Type.php:241 +msgid "Total Photochemical ozone formation" +msgstr "" + +#: src/Impact/Type.php:242 +msgid "Total Use of water resources" +msgstr "" + +#: src/Impact/Type.php:243 +msgid "Total Material input per unit of service" +msgstr "" + +#: src/Impact/Type.php:244 +msgid "Total Use of mineral and metal resources" +msgstr "" + +#: src/Impact/Type.php:245 +msgid "Total Use of fossil resources (including nuclear)" +msgstr "" + +#: src/Impact/Type.php:246 +msgid "Total Acidification" +msgstr "" + +#: src/Impact/Type.php:247 +msgid "Total Freshwater ecotoxicity" +msgstr "" + +#: src/Impact/Type.php:250 +msgid "Total Eutrophication of freshwater" +msgstr "" + +#: src/Impact/Type.php:251 +msgid "Total Eutrophication of marine waters" +msgstr "" + +#: src/Impact/Type.php:252 +msgid "Total Terrestrial eutrophication" +msgstr "" + +#: src/Impact/Type.php:323 +msgid "Carbon emission in CO₂ equivalent" +msgstr "" + +#: src/Impact/Type.php:324 +msgid "Consumption of non renewable resources in Antimony equivalent." +msgstr "" + +#: src/Impact/Type.php:325 +msgid "Primary energy consumed." +msgstr "" + +#: src/Impact/Type.php:332 +msgid "Incidence of disease" +msgstr "" + +#: src/Source.php:46 +msgid "Carbon intensity source" +msgid_plural "Carbon intensity sources" +msgstr[0] "탄소 강도 소스" + +#: src/SearchOptions.php:184 src/SearchOptions.php:316 +#: src/SearchOptions.php:329 src/SearchOptions.php:342 +msgid "Ignore environmental impact" +msgstr "" + +#: src/SearchOptions.php:241 src/SearchOptions.php:365 +#: src/SearchOptions.php:442 +msgid "Is historizable" +msgstr "" + +#: src/ComputerType.php:56 +msgid "Unspecified" +msgstr "" + +#: src/ComputerType.php:58 +msgid "Server" +msgstr "" + +#: src/ComputerType.php:59 +msgid "Laptop" +msgstr "" + +#: src/ComputerType.php:60 +msgid "Tablet" +msgstr "" + +#: src/ComputerType.php:61 +msgid "Smartphone" +msgstr "" + +#: src/UsageImpact.php:39 +msgid "Usage impact" +msgid_plural "Usage impacts" +msgstr[0] "" + +#: src/AbstractModel.php:62 src/Dashboard/Grid.php:58 +#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 +#: src/AbstractType.php:63 +msgid "Carbon" +msgstr "탄소" + +#: src/AbstractModel.php:197 +msgid "Quality" msgstr "" -#: src/Command/ExportDashboardCommand.php:74 -msgid "Dashboard not found" -msgstr "" +#: src/Report.php:49 +msgid "Carbon report" +msgid_plural "Carbon reports" +msgstr[0] "탄소 보고서" -#: src/Command/ExportDashboardCommand.php:100 +#: src/Report.php:101 #, php-format -msgid "Dashboard description saved to %s" +msgid "" +"Demo mode enabled. The data below are not representative of the assets in " +"the database. %sDisable demo mode%s" msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:85 -msgid "Zone not found" -msgstr "" +#: src/ComputerUsageProfile.php:51 +msgid "Computer usage profile" +msgid_plural "Computer usage profiles" +msgstr[0] "컴퓨터 사용 프로필" -#: src/Command/CollectCarbonIntensityCommand.php:91 -msgid "Reading eco2mix data..." +#: src/ComputerUsageProfile.php:117 +msgid "Start time is invalid" msgstr "" -#: src/Command/CreateTestInventoryCommand.php:146 -msgid "Creating test inventory" +#: src/ComputerUsageProfile.php:122 +msgid "Stop time is invalid" msgstr "" -#: src/Config.php:130 -msgid "Invalid Boavizta API URL" +#: src/Source_Zone.php:72 +msgid "Source name" msgstr "" -#: src/Config.php:138 -msgid "Connection to Boavizta API established" +#: src/Source_Zone.php:80 +msgid "Zone name" msgstr "" -#: src/Zone.php:53 -msgid "Carbon intensity zone" -msgid_plural "Carbon intensity zones" -msgstr[0] "" +#: src/Source_Zone.php:88 src/Source_Zone.php:171 src/Source_Zone.php:268 +#: src/Zone.php:127 +msgid "Download enabled" +msgstr "다운로드 활성화됨" -#: src/Zone.php:126 src/Zone.php:141 -msgid "Data source for historical calculation" +#: src/Source_Zone.php:96 +msgid "Code" msgstr "" -#: src/Zone.php:157 src/CarbonIntensitySource_Zone.php:86 -#: src/CarbonIntensitySource_Zone.php:169 -#: src/CarbonIntensitySource_Zone.php:264 -msgid "Download enabled" +#: src/Source_Zone.php:150 +msgid "Not downloadable" msgstr "" -#: src/UsageInfo.php:59 -msgid "Usage informations" +#: src/Source_Zone.php:150 +msgid "This is a fallback source, there is no real-time data available" msgstr "" -#: src/UsageInfo.php:214 src/Dashboard/Widget.php:848 -#, php-format -msgid "" -"Evaluates the carbon emission in CO₂ equivalent. %s More information %s" +#: src/Source_Zone.php:172 +msgid "Source for historical" +msgstr "이력 소스" + +#: src/Source_Zone.php:411 +msgid "Enable / Disable" +msgstr "활성화 / 비활성화" + +#: src/CronTask.php:100 +msgid "Find the Alpha3 country code (ISO3166)" msgstr "" -#: src/UsageInfo.php:222 src/Dashboard/Widget.php:884 -#: src/Dashboard/Widget.php:921 -#, php-format -msgid "" -"Evaluates the consumption of non renewable resources in Antimony equivalent." -" %s More information %s" +#: src/CronTask.php:101 +msgid "Maximum number of locations to solve" msgstr "" -#: src/UsageInfo.php:234 src/Dashboard/Widget.php:1102 -#, php-format -msgid "Evaluates the primary energy consumed. %s More information %s" +#: src/CronTask.php:106 +msgid "Download carbon emissions from Watttime" msgstr "" -#: src/ComputerUsageProfile.php:52 -msgid "Computer usage profile" -msgid_plural "Computer usage profiles" -msgstr[0] "" +#: src/CronTask.php:112 +msgid "Compute usage environmental impact for all assets" +msgstr "" -#: src/ComputerUsageProfile.php:94 -msgid "Start time is invalid" +#: src/CronTask.php:113 src/CronTask.php:118 +msgid "Maximum number of entries to calculate" +msgstr "계산할 최대 항목 수" + +#: src/CronTask.php:117 +msgid "Compute embodied environmental impact for all assets" msgstr "" -#: src/ComputerUsageProfile.php:99 -msgid "Stop time is invalid" +#: src/CronTask.php:278 +msgid "No zone to download" msgstr "" -#: src/Dashboard/Widget.php:57 src/Dashboard/Grid.php:317 +#: src/Dashboard/Widget.php:55 src/Dashboard/Grid.php:310 msgid "Environmental impact information video" msgstr "" -#: src/Dashboard/Widget.php:64 +#: src/Dashboard/Widget.php:62 msgid "Methodology information" msgstr "" -#: src/Dashboard/Widget.php:73 +#: src/Dashboard/Widget.php:71 msgid "Total Carbon Emission" -msgstr "" +msgstr "총 탄소 배출량" -#: src/Dashboard/Widget.php:80 +#: src/Dashboard/Widget.php:78 msgid "Monthly Carbon Emission" -msgstr "" +msgstr "월별 탄소 배출량" -#: src/Dashboard/Widget.php:87 src/Dashboard/Widget.php:599 -#: src/Dashboard/Grid.php:281 +#: src/Dashboard/Widget.php:85 src/Dashboard/Widget.php:604 +#: src/Dashboard/Grid.php:268 msgid "Biggest monthly averaged carbon emission per model" msgstr "" -#: src/Dashboard/Widget.php:95 +#: src/Dashboard/Widget.php:93 msgid "Carbon Emission Per month" msgstr "" -#: src/Dashboard/Widget.php:125 -msgid "Embodied consumed primary energy" +#: src/Dashboard/Widget.php:100 src/Dashboard/Provider.php:733 +msgid "Usage abiotic depletion potential" msgstr "" -#: src/Dashboard/Widget.php:137 -msgid "Unhandled Computers" +#: src/Dashboard/Widget.php:130 +msgid "Impact criteria" msgstr "" -#: src/Dashboard/Widget.php:148 +#: src/Dashboard/Widget.php:142 +msgid "Unhandled Computers" +msgstr "처리 안된 컴퓨터" + +#: src/Dashboard/Widget.php:153 msgid "Unhandled Monitors" msgstr "" -#: src/Dashboard/Widget.php:159 +#: src/Dashboard/Widget.php:164 msgid "Unhandled Network equipments" msgstr "" -#: src/Dashboard/Widget.php:170 +#: src/Dashboard/Widget.php:175 msgid "Radar chart" msgstr "" -#: src/Dashboard/Widget.php:496 src/Dashboard/Provider.php:918 +#: src/Dashboard/Widget.php:501 src/Dashboard/Provider.php:1107 msgid "Consumed energy and carbon emission per month" -msgstr "" +msgstr "월별 소비 에너지 및 탄소 배출량" -#: src/Dashboard/Widget.php:541 src/Dashboard/Widget.php:556 -#: src/Dashboard/DemoProvider.php:125 src/Dashboard/DemoProvider.php:226 -#: src/Dashboard/Provider.php:1023 +#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:561 +#: src/Dashboard/Provider.php:1212 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 msgid "Carbon emission" -msgstr "" +msgstr "탄소 배출" -#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:559 -#: src/Dashboard/DemoProvider.php:143 src/Dashboard/DemoProvider.php:239 -#: src/Dashboard/Provider.php:1039 +#: src/Dashboard/Widget.php:551 src/Dashboard/Widget.php:564 +#: src/Dashboard/Provider.php:1228 src/Dashboard/DemoProvider.php:106 +#: src/Dashboard/DemoProvider.php:202 msgid "Consumed energy" -msgstr "" +msgstr "소모 에너지" -#: src/Dashboard/Widget.php:741 +#: src/Dashboard/Widget.php:746 #, php-format msgid "" "Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " "months. %s More information %s" msgstr "" -#: src/Dashboard/Widget.php:807 +#: src/Dashboard/Widget.php:812 #, php-format msgid "" "Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " "elapsed months. %s More information %s" msgstr "" -#: src/Dashboard/Widget.php:1092 -msgid "Total embodied primary energy" +#: src/Dashboard/Widget.php:854 +msgid "More information" +msgstr "" + +#: src/Dashboard/Widget.php:893 +#, php-format +msgid "" +"Evaluates the consumption of non renewable resources in Antimony equivalent." +" %s More information %s" msgstr "" -#: src/Dashboard/Widget.php:1161 +#: src/Dashboard/Widget.php:1097 msgid "Handled percentage" msgstr "" -#: src/Dashboard/DemoProvider.php:49 src/Dashboard/DemoProvider.php:125 -#: src/Dashboard/DemoProvider.php:226 src/Dashboard/DemoProvider.php:415 -#: src/Dashboard/Provider.php:169 src/Dashboard/Provider.php:560 -#: src/Dashboard/Provider.php:730 src/Dashboard/Provider.php:1023 -#: src/Dashboard/Provider.php:1025 +#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 +#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 +#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 msgid "CO₂eq" -msgstr "" +msgstr "CO₂eq" -#: src/Dashboard/DemoProvider.php:83 src/Dashboard/DemoProvider.php:101 -#: src/Dashboard/Provider.php:792 src/Dashboard/Provider.php:826 -msgid "Sbeq" -msgstr "" +#: src/Dashboard/Provider.php:195 src/Dashboard/Provider.php:318 +#: src/Dashboard/Provider.php:1199 src/Toolbox.php:243 +msgid "g" +msgstr "g" -#: src/Dashboard/DemoProvider.php:113 -msgid "Usage carbon emission per month" -msgstr "" +#: src/Dashboard/Provider.php:196 src/Dashboard/Provider.php:319 +#: src/Dashboard/Provider.php:1200 src/Toolbox.php:244 +msgid "Kg" +msgstr "Kg" -#: src/Dashboard/DemoProvider.php:279 src/Dashboard/Provider.php:430 -#, php-format -msgid "plugin carbon - handled %s" -msgstr "" +#: src/Dashboard/Provider.php:197 src/Dashboard/Provider.php:320 +#: src/Dashboard/Provider.php:1201 src/Toolbox.php:245 +msgid "t" +msgstr "t" -#: src/Dashboard/DemoProvider.php:280 src/Dashboard/Provider.php:431 -#, php-format -msgid "plugin carbon - unhandled %s" -msgstr "" +#: src/Dashboard/Provider.php:198 src/Dashboard/Provider.php:321 +#: src/Dashboard/Provider.php:1202 src/Toolbox.php:246 +msgid "Kt" +msgstr "Kt" -#: src/Dashboard/DemoProvider.php:311 -msgid "plugin carbon - handled assets ratio" -msgstr "" +#: src/Dashboard/Provider.php:199 src/Dashboard/Provider.php:322 +#: src/Dashboard/Provider.php:1203 src/Toolbox.php:247 +msgid "Mt" +msgstr "Mt" -#: src/Dashboard/DemoProvider.php:334 src/Dashboard/Provider.php:398 -msgid "Handled" -msgstr "" +#: src/Dashboard/Provider.php:200 src/Dashboard/Provider.php:323 +#: src/Dashboard/Provider.php:1204 src/Toolbox.php:248 +msgid "Gt" +msgstr "Gt" -#: src/Dashboard/DemoProvider.php:339 src/Dashboard/Provider.php:403 -msgid "Unhandled" +#: src/Dashboard/Provider.php:201 src/Dashboard/Provider.php:324 +#: src/Dashboard/Provider.php:1205 src/Toolbox.php:249 +msgid "Tt" +msgstr "Tt" + +#: src/Dashboard/Provider.php:202 src/Dashboard/Provider.php:325 +#: src/Dashboard/Provider.php:1206 src/Toolbox.php:250 +msgid "Pt" +msgstr "Pt" + +#: src/Dashboard/Provider.php:203 src/Dashboard/Provider.php:326 +#: src/Dashboard/Provider.php:1207 src/Toolbox.php:251 +msgid "Et" +msgstr "Et" + +#: src/Dashboard/Provider.php:204 src/Dashboard/Provider.php:327 +#: src/Dashboard/Provider.php:1208 src/Toolbox.php:252 +msgid "Zt" +msgstr "Zt" + +#: src/Dashboard/Provider.php:205 src/Dashboard/Provider.php:328 +#: src/Dashboard/Provider.php:1209 src/Toolbox.php:253 +msgid "Yt" +msgstr "Yt" + +#: src/Dashboard/Provider.php:427 +msgid "handled assets ratio" msgstr "" -#: src/Dashboard/DemoProvider.php:362 src/Dashboard/DemoProvider.php:411 -#: src/Dashboard/Provider.php:548 -msgid "plugin carbon - Usage carbon emission" +#: src/Dashboard/Provider.php:473 src/Dashboard/Grid.php:63 +msgid "Handled assets ratio" msgstr "" -#: src/Dashboard/Dashboard.php:69 -msgid "Carbon dioxyde intensity" +#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 +msgid "Handled" msgstr "" -#: src/Dashboard/Grid.php:73 src/Dashboard/Provider.php:375 -msgid "Handled assets ratio" +#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 +msgid "Unhandled" msgstr "" -#: src/Dashboard/Grid.php:82 -msgid "Handled assets count" +#: src/Dashboard/Provider.php:507 +msgid "Ignored" msgstr "" -#: src/Dashboard/Grid.php:145 +#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 #, php-format -msgid "Handled %s" +msgid "plugin carbon - handled %s" msgstr "" -#: src/Dashboard/Grid.php:156 +#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 #, php-format -msgid "Unhandled %s" +msgid "plugin carbon - unhandled %s" msgstr "" -#: src/Dashboard/Grid.php:172 -msgid "Usage power consumption" +#: src/Dashboard/Provider.php:584 +#, php-format +msgid "plugin carbon - ignored %s" msgstr "" -#: src/Dashboard/Grid.php:178 -msgid "Usage carbon emission" +#: src/Dashboard/Provider.php:632 +msgid "plugin carbon - Total usage power consumption" msgstr "" -#: src/Dashboard/Grid.php:192 src/Dashboard/Grid.php:295 -#: src/Dashboard/Provider.php:893 -msgid "Embodied global warming potential" +#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 +msgid "plugin carbon - Usage carbon emission" msgstr "" -#: src/Dashboard/Grid.php:198 src/Dashboard/Grid.php:307 -msgid "Embodied primary energy consumed" +#: src/Dashboard/Provider.php:747 +msgid "Sbeq" msgstr "" -#: src/Dashboard/Grid.php:212 src/UsageImpact.php:105 -msgid "Global warming potential" +#: src/Dashboard/Provider.php:1035 +msgid "Total abiotic depletion potential" msgstr "" -#: src/Dashboard/Grid.php:218 src/UsageImpact.php:119 -msgid "Abiotic depletion potential" +#: src/Dashboard/Provider.php:1051 +msgid "Embodied abiotic depletion potential" msgstr "" -#: src/Dashboard/Grid.php:245 -#, php-format -msgid "Unhandled %s ratio" +#: src/Dashboard/Provider.php:1054 +msgid "Total usage abiotic depletion potential" msgstr "" -#: src/Dashboard/Grid.php:257 -msgid "Usage carbon emission year to date" +#: src/Dashboard/Provider.php:1066 +msgid "Total global warming potential" msgstr "" -#: src/Dashboard/Grid.php:263 -msgid "Monthly carbon emission" +#: src/Dashboard/Provider.php:1082 +msgid "Embodied global warming potential" msgstr "" -#: src/Dashboard/Grid.php:272 -msgid "Usage global warming potential chart" +#: src/Dashboard/Provider.php:1085 +msgid "Total usage global warming potential" msgstr "" -#: src/Dashboard/Grid.php:322 -msgid "Environmental impact methodology_information" -msgstr "" +#: src/Dashboard/Provider.php:1218 src/Toolbox.php:316 +msgid "KWh" +msgstr "KWh" -#: src/Dashboard/Provider.php:171 src/Dashboard/Provider.php:1010 -#: src/Toolbox.php:201 -msgid "g" -msgstr "" +#: src/Dashboard/Provider.php:1219 src/Toolbox.php:317 +msgid "MWh" +msgstr "MWh" -#: src/Dashboard/Provider.php:172 src/Dashboard/Provider.php:1011 -#: src/Toolbox.php:202 -msgid "Kg" -msgstr "" +#: src/Dashboard/Provider.php:1220 src/Toolbox.php:318 +msgid "GWh" +msgstr "GWh" -#: src/Dashboard/Provider.php:173 src/Dashboard/Provider.php:1012 -#: src/Toolbox.php:203 -msgid "t" -msgstr "" +#: src/Dashboard/Provider.php:1221 src/Toolbox.php:319 +msgid "TWh" +msgstr "TWh" -#: src/Dashboard/Provider.php:174 src/Dashboard/Provider.php:1013 -#: src/Toolbox.php:204 -msgid "Kt" -msgstr "" +#: src/Dashboard/Provider.php:1222 src/Toolbox.php:320 +msgid "PWh" +msgstr "PWh" -#: src/Dashboard/Provider.php:175 src/Dashboard/Provider.php:1014 -#: src/Toolbox.php:205 -msgid "Mt" -msgstr "" +#: src/Dashboard/Provider.php:1223 src/Toolbox.php:321 +msgid "EWh" +msgstr "EWh" -#: src/Dashboard/Provider.php:176 src/Dashboard/Provider.php:1015 -#: src/Toolbox.php:206 -msgid "Gt" -msgstr "" +#: src/Dashboard/Provider.php:1224 src/Toolbox.php:322 +msgid "ZWh" +msgstr "ZWh" -#: src/Dashboard/Provider.php:177 src/Dashboard/Provider.php:1016 -#: src/Toolbox.php:207 -msgid "Tt" -msgstr "" +#: src/Dashboard/Provider.php:1225 src/Toolbox.php:323 +msgid "YWh" +msgstr "YWh" -#: src/Dashboard/Provider.php:178 src/Dashboard/Provider.php:1017 -#: src/Toolbox.php:208 -msgid "Pt" +#: src/Dashboard/Grid.php:72 +msgid "Handled assets count" msgstr "" -#: src/Dashboard/Provider.php:179 src/Dashboard/Provider.php:1018 -#: src/Toolbox.php:209 -msgid "Et" +#: src/Dashboard/Grid.php:135 +#, php-format +msgid "Handled %s" msgstr "" -#: src/Dashboard/Provider.php:180 src/Dashboard/Provider.php:1019 -#: src/Toolbox.php:210 -msgid "Zt" +#: src/Dashboard/Grid.php:146 +#, php-format +msgid "Unhandled %s" msgstr "" -#: src/Dashboard/Provider.php:181 src/Dashboard/Provider.php:1020 -#: src/Toolbox.php:211 -msgid "Yt" +#: src/Dashboard/Grid.php:232 +#, php-format +msgid "Unhandled %s ratio" msgstr "" -#: src/Dashboard/Provider.php:330 -msgid "handled assets ratio" +#: src/Dashboard/Grid.php:244 +msgid "Usage carbon emission year to date" msgstr "" -#: src/Dashboard/Provider.php:479 -msgid "plugin carbon - Total usage power consumption" -msgstr "" +#: src/Dashboard/Grid.php:250 +msgid "Monthly carbon emission" +msgstr "월별 탄소 배출량" -#: src/Dashboard/Provider.php:718 -msgid "Total embodied global warming potential" +#: src/Dashboard/Grid.php:259 +msgid "Usage global warming potential chart" msgstr "" -#: src/Dashboard/Provider.php:846 -msgid "Total abiotic depletion potential" +#: src/Dashboard/Grid.php:315 +msgid "Environmental impact methodology information" msgstr "" -#: src/Dashboard/Provider.php:865 -msgid "Total usage abiotic depletion potential" +#: src/Dashboard/DemoProvider.php:76 +msgid "Usage carbon emission per month" msgstr "" -#: src/Dashboard/Provider.php:877 -msgid "Total global warming potential" +#: src/Dashboard/DemoProvider.php:274 +msgid "plugin carbon - handled assets ratio" msgstr "" -#: src/Dashboard/Provider.php:896 -msgid "Total usage global warming potential" -msgstr "" +#: src/Dashboard/Dashboard.php:68 +msgid "Carbon dioxyde intensity" +msgstr "이산화탄소 강도" -#: src/Dashboard/Provider.php:1029 src/Toolbox.php:287 -msgid "KWh" +#: src/Location.php:189 +msgid "Carbon intensity source and zone" msgstr "" -#: src/Dashboard/Provider.php:1030 src/Toolbox.php:288 -msgid "MWh" -msgstr "" +#: src/CarbonIntensity.php:87 +msgid "Emission date" +msgstr "배출 일자" -#: src/Dashboard/Provider.php:1031 src/Toolbox.php:289 -msgid "GWh" -msgstr "" +#: src/CarbonIntensity.php:114 +msgid "Intensity" +msgstr "강도" -#: src/Dashboard/Provider.php:1032 src/Toolbox.php:290 -msgid "TWh" -msgstr "" +#: src/CarbonEmission.php:49 +msgid "Carbon Emission" +msgid_plural "Carbon Emissions" +msgstr[0] "탄소 배출" -#: src/Dashboard/Provider.php:1033 src/Toolbox.php:291 -msgid "PWh" +#: src/CarbonEmission.php:120 +msgid "Energy" msgstr "" -#: src/Dashboard/Provider.php:1034 src/Toolbox.php:292 -msgid "EWh" +#: src/CarbonEmission.php:128 +msgid "Emission" msgstr "" -#: src/Dashboard/Provider.php:1035 src/Toolbox.php:293 -msgid "ZWh" +#: src/CarbonEmission.php:136 +msgid "Energy quality" msgstr "" -#: src/Dashboard/Provider.php:1036 src/Toolbox.php:294 -msgid "YWh" +#: src/CarbonEmission.php:144 +msgid "Emission quality" msgstr "" -#: src/Toolbox.php:251 +#: src/Toolbox.php:280 msgid "W" -msgstr "" +msgstr "W" -#: src/Toolbox.php:252 +#: src/Toolbox.php:281 msgid "KW" -msgstr "" +msgstr "KW" -#: src/Toolbox.php:253 +#: src/Toolbox.php:282 msgid "MW" -msgstr "" +msgstr "MW" -#: src/Toolbox.php:254 +#: src/Toolbox.php:283 msgid "GW" -msgstr "" +msgstr "GW" -#: src/Toolbox.php:255 +#: src/Toolbox.php:284 msgid "TW" -msgstr "" +msgstr "TW" -#: src/Toolbox.php:256 +#: src/Toolbox.php:285 msgid "PW" -msgstr "" +msgstr "PW" -#: src/Toolbox.php:257 +#: src/Toolbox.php:286 msgid "EW" -msgstr "" +msgstr "EW" -#: src/Toolbox.php:258 +#: src/Toolbox.php:287 msgid "ZW" -msgstr "" +msgstr "ZW" -#: src/Toolbox.php:259 +#: src/Toolbox.php:288 msgid "YW" -msgstr "" +msgstr "YW" -#: src/Toolbox.php:286 +#: src/Toolbox.php:315 msgid "Wh" msgstr "" -#: src/SearchOptions.php:196 src/SearchOptions.php:273 -#: src/SearchOptions.php:346 -msgid "Is historizable" -msgstr "" - -#: src/UsageImpact.php:50 -msgid "Usage impact" -msgid_plural "Usage impacts" -msgstr[0] "" +#: src/Toolbox.php:373 src/Toolbox.php:378 +#, php-format +msgid "%1$s %2$s" +msgstr "%1$s %2$s" -#: src/UsageImpact.php:112 -msgid "Global warming potential quality" -msgstr "" +#: setup.php:285 +msgid "Environmental Impact" +msgstr "환경 영향" -#: src/UsageImpact.php:127 -msgid "Abiotic depletion potential quality" +#: hook.php:97 +msgid "" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." msgstr "" -#: src/UsageImpact.php:134 src/UsageImpact.php:142 -msgid "Primary energy quality" +#: hook.php:301 +msgid "Associate to an usage profile" msgstr "" -#: src/CarbonIntensity.php:66 -msgid "Carbon intensity" +#: hook.php:302 hook.php:307 +msgid "Delete all calculated environmental impacts" msgstr "" -#: src/CarbonIntensity.php:88 -msgid "Emission date" +#: hook.php:311 hook.php:316 hook.php:320 +msgid "Update type power consumption" msgstr "" -#: src/CarbonIntensity.php:115 -msgid "Intensity" +#: hook.php:312 +msgid "Update category" msgstr "" -#: src/EmbodiedImpact.php:90 -msgid "Global Warming Potential" +#: hook.php:324 +msgid "Update zone for Boavizta engine" msgstr "" -#: src/EmbodiedImpact.php:100 -msgid "Abiotic Depletion Potential" +#: hook.php:325 +msgid "Update carbon intensity source and zone" msgstr "" -#: src/EmbodiedImpact.php:110 -msgid "Primary energy" +#: install/install/create_automatic_actions.php:52 +msgid "Find the Alpha3 country code (ISO3166) of locations" msgstr "" -#: src/ComputerType.php:56 -msgid "Unspecified" -msgstr "" +#: install/install/create_automatic_actions.php:64 +msgid "Compute carbon emissions of computers" +msgstr "컴퓨터의 탄소 배출량 계산" -#: src/ComputerType.php:58 -msgid "Server" +#: install/install/create_automatic_actions.php:76 +msgid "Compute embodied impact of assets" msgstr "" -#: src/ComputerType.php:59 -msgid "Laptop" +#: install/install/create_uasge_profiles.php:41 +msgid "Always on" msgstr "" -#: src/ComputerType.php:60 -msgid "Tablet" -msgstr "" +#: install/install/create_uasge_profiles.php:52 +msgid "Office hours" +msgstr "공식 시간" -#: src/ComputerType.php:61 -msgid "Smartphone" +#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 +#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 +msgid "Missing arguments in request." msgstr "" -#: src/CarbonIntensitySource_Zone.php:70 -msgid "Source name" +#: front/usageimpact.form.php:80 front/usageimpact.form.php:106 +#: front/usageimpact.form.php:114 front/embodiedimpact.form.php:92 +msgid "Bad arguments." msgstr "" -#: src/CarbonIntensitySource_Zone.php:78 -msgid "Zone name" +#: front/usageimpact.form.php:90 front/embodiedimpact.form.php:68 +#: front/embodiedimpact.form.php:77 +msgid "Reset denied." msgstr "" -#: src/CarbonIntensitySource_Zone.php:94 -msgid "Code" +#: front/usageimpact.form.php:95 front/embodiedimpact.form.php:82 +msgid "Reset failed." msgstr "" -#: src/CarbonIntensitySource_Zone.php:148 -msgid "Not downloadable" +#: front/usageimpact.form.php:122 +msgid "Missing data prevents historization of this asset." msgstr "" -#: src/CarbonIntensitySource_Zone.php:148 -msgid "This is a fallback source, there is no real-time data available" +#: front/usageimpact.form.php:125 +msgid "Update of global warming potential failed." msgstr "" -#: src/CarbonIntensitySource_Zone.php:170 -msgid "Source for historical" +#: front/usageimpact.form.php:131 front/embodiedimpact.form.php:101 +msgid "Unable to find calculation engine for this asset." msgstr "" -#: src/CarbonIntensitySource_Zone.php:351 -msgid "Enable / Disable" +#: front/usageimpact.form.php:136 +msgid "Update of usage impact failed." msgstr "" diff --git a/locales/pl_PL.po b/locales/pl_PL.po index ccc17fd1..52b9834f 100644 --- a/locales/pl_PL.po +++ b/locales/pl_PL.po @@ -3,13 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # +# Translators: +# Paweł Gorgoń, 2026 +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-21 13:21+0200\n" -"PO-Revision-Date: 2022-11-23 14:34+0000\n" +"POT-Creation-Date: 2026-04-15 02:49+0000\n" +"PO-Revision-Date: 2025-10-29 09:26+0000\n" +"Last-Translator: Paweł Gorgoń, 2026\n" "Language-Team: Polish (Poland) (https://app.transifex.com/teclib/teams/28042/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,17 +21,54 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#. TRANS: %s is the user login -#: front/environnementalimpact.form.php:57 -#, php-format -msgid "%s updates an item" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 +#: src/ComputerUsageProfile.php:169 +msgid "Start time" +msgstr "Czas rozpoczęcia" + +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 +msgid "Stop time" +msgstr "Czas zatrzymania" + +#: templates/computerusageprofile.html.twig +msgid "Days of week where the computer usually runs" +msgstr "Dni tygodnia, w które zazwyczaj uruchamiany jest komputer" + +#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 +#: src/Impact/Usage/Engine.php:48 +msgid "Boavizta" +msgstr "Boavizta" + +#: templates/location.html.twig src/SearchOptions.php:138 src/Location.php:182 +msgid "Boavizta zone" msgstr "" -#: front/report.php:49 entrée standard:37 -msgid "GLPI Carbon" +#: templates/location.html.twig src/CarbonIntensity.php:65 +msgid "Carbon intensity" +msgstr "" + +#: templates/usageinfo.html.twig +msgid "Asset usage" msgstr "" -#: src/CarbonIntensityZone.php:50 +#: templates/usageinfo.html.twig +msgid "Usage profile" +msgid_plural "Usage profiles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: templates/quick-report.html.twig front/report.php:55 +msgid "GLPI Carbon" +msgstr "GLPI Carbon" + +#: templates/components/form/source_zone_selector.html.twig +#: src/AbstractModel.php:186 +msgid "Source" +msgstr "Źródło" + +#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 msgid "Carbon intensity zone" msgid_plural "Carbon intensity zones" msgstr[0] "" @@ -35,597 +76,1364 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/CarbonIntensityZone.php:122 src/CarbonIntensityZone.php:137 -msgid "Data source for historical calculation" +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "No zone available" +msgstr "Brak dostępnej strefy" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "Please run the automatic action to downlaod data from this source." +msgstr "Proszę uruchomić automatyczną akcję pobierania danych z tego źródła." + +#: templates/environmentalimpact-item.html.twig +msgid "Usage" msgstr "" -#: src/AbstractType.php:50 entrée standard:37 -msgid "Power" -msgid_plural "Powers" +#: templates/environmentalimpact-item.html.twig +msgid "Reset data" +msgstr "Zresetuj dane" + +#: templates/environmentalimpact-item.html.twig +msgid "Calculate data" +msgstr "Oblicz dane" + +#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 +msgid "Embodied impact" +msgid_plural "Embodied impacts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/AbstractType.php:58 src/Dashboard/Dashboard.php:50 -#: src/Dashboard/Dashboard.php:56 src/Dashboard/Dashboard.php:62 -#: src/Dashboard/Dashboard.php:68 src/Dashboard/Dashboard.php:74 -#: src/Dashboard/Dashboard.php:80 src/Dashboard/Dashboard.php:86 -#: src/Dashboard/Dashboard.php:92 src/Dashboard/Dashboard.php:98 -#: src/Dashboard/Dashboard.php:103 src/Dashboard/Dashboard.php:108 -#: src/Dashboard/Dashboard.php:113 src/Dashboard/Dashboard.php:118 -msgid "Carbon" +#: templates/history/status-item.html.twig +msgid "Historization status" msgstr "" -#: src/CarbonIntensitySource.php:45 -msgid "Carbon intensity source" -msgid_plural "Carbon intensity sources" +#: templates/history/status-item.html.twig +msgid "No status" +msgstr "No status" + +#: templates/history/status-item.html.twig +msgid "" +"This data is missing and prevents from environmental impact calculation." +msgstr "Brak tych danych uniemożliwia obliczenie wpływu na środowisko." + +#: templates/history/status-item.html.twig +msgid "" +"This data is missing and may reduce the quality of environmental impact " +"calculation." +msgstr "" +"Brak tych danych może obniżyć jakość obliczeń oddziaływania na środowisko." + +#: templates/history/status-item.html.twig +msgid "Is not in the trash bin" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Is not a template" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Linked to a computer" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Attached computer has a location" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Has a location" +msgstr "Has a location" + +#: templates/history/status-item.html.twig +msgid "The location has carbon intensity data" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Real time carbon intensity enabled" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The location has yearly carbon intensity data" +msgstr "" +"Lokalizacja posiada roczne dane dotyczące intensywności emisji dwutlenku " +"węgla" + +#: templates/history/status-item.html.twig +msgid "The asset has a model" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The model has a power consumption" +msgstr "Model ma zużycie energii" + +#: templates/history/status-item.html.twig +msgid "The asset has a type" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Type is not ignored" +msgstr "Typ nie jest ignorowany" + +#: templates/history/status-item.html.twig +msgid "The type has a power consumption" +msgstr "Typ ma zużycie energii" + +#: templates/history/status-item.html.twig +msgid "The asset has a category" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The asset has a usage profile" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The asset has an inventory entry date" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Legend" +msgstr "Legenda" + +#: templates/monitortype.html.twig +msgid "" +"This power value is used as default when the power of a monitor model is " +"unknown" +msgstr "" +"Ta wartość mocy jest używana domyślnie, gdy nieznana jest moc monitora." + +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Power" +msgid_plural "Powers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Command/CreateTestInventoryCommand.php:149 -msgid "Creating test inventory" +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Do not evaluate" +msgstr "" + +#: templates/config.html.twig +msgid "Impact engine" +msgstr "" + +#: templates/config.html.twig +msgid "Usage carbon emissions are always calculated internally" +msgstr "" +"Emisja dwutlenku węgla związana z użytkowaniem jest zawsze obliczana " +"wewnętrznie" + +#: templates/computertype.html.twig +msgid "" +"This power value is used as default when the power of a computer model is " +"unknown" +msgstr "" +"Ta wartość mocy jest używana domyślnie, gdy nieznana jest moc modelu " +"komputerowego" + +#: templates/computertype.html.twig src/SearchOptions.php:303 +#: src/ComputerType.php:78 +msgid "Category" +msgstr "Kategoria" + +#: templates/dashboard/information-block.html.twig +msgid "Information" +msgstr "Informacja" + +#: templates/dashboard/information-block.html.twig +msgid "" +"Our data is sourced from reliable sources and is meticulously calculated " +"using industry-standard methodologies. We utilize accurate measurement tools" +" and algorithms to ensure the precision and reliability of our environmental" +" metrics." +msgstr "" +"Nasze dane pochodzą z wiarygodnych źródeł i są skrupulatnie obliczane z " +"wykorzystaniem standardowych metodologii branżowych. Wykorzystujemy " +"precyzyjne narzędzia pomiarowe i algorytmy, aby zapewnić precyzję i " +"wiarygodność naszych wskaźników środowiskowych." + +#: templates/dashboard/information-block.html.twig +msgid "" +"As we move towards a greener future, businesses will soon be required to " +"report energy usage and carbon emissions. By 2025, many areas will enforce " +"these regulations. Adopting these practices now ensures compliance and helps" +" combat climate change." +msgstr "" +"W miarę jak dążymy do bardziej zielonej przyszłości, firmy wkrótce będą " +"zobowiązane do raportowania zużycia energii i emisji dwutlenku węgla. Do " +"2025 roku wiele regionów będzie egzekwować te przepisy. Wdrożenie tych " +"praktyk już teraz gwarantuje zgodność z przepisami i pomaga w walce ze " +"zmianami klimatu." + +#: templates/dashboard/information-block.html.twig +msgid "Did you know ?" +msgstr "Czy wiesz, że ?" + +#: templates/dashboard/information-block.html.twig +msgid "" +"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " +"about 20 meters." +msgstr "" +"1 gram CO₂ odpowiada ilości CO₂ emitowanego podczas jazdy samochodem na " +"odległość około 20 metrów." + +#: templates/dashboard/unhandled-monitors-card.html.twig +#: templates/dashboard/unhandled-computers-card.html.twig +#: templates/dashboard/unhandled-network-equipments-card.html.twig +msgid "Warning" +msgstr "Ostrzeżenie" + +#: templates/dashboard/unhandled-monitors-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s monitors." +msgstr "Reprezentuje %s procent Twojego parku zawierającego %s monitorów." + +#: templates/dashboard/usage-carbon-emission-last-year.html.twig +msgid "Yearly Usage Carbon Emission" +msgstr "Roczna emisja dwutlenku węgla" + +#: templates/dashboard/monthly-carbon-emission.html.twig +msgid "Monthly usage carbon emission" +msgstr "Miesięczna emisja dwutlenku węgla" + +#: templates/dashboard/monthly-carbon-emission.html.twig +#, php-format +msgid "Compared to %s" +msgstr "" + +#: templates/dashboard/unhandled-computers-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s computers." +msgstr "Reprezentuje %s procent Twojego parku zawierającego %s komputerów." + +#: templates/dashboard/unhandled-network-equipments-card.html.twig +#, php-format +msgid "" +"It represents %s percent of your parc that contains %s network equipments." +msgstr "" +"Reprezentuje %s procent Twojego parku zawierającego %s urządzeń sieciowych." + +#: templates/dashboard/information-video-card.html.twig +msgid "Want to know more ?" +msgstr "Chcesz wiedzieć więcej?" + +#: templates/dashboard/information-video-card.html.twig +msgid "Here is a video about the impact of numeric on the enviromnent." +msgstr "" + +#: templates/abstractmodel.html.twig +msgid "" +"The impacts below shall include the manufacturing, disposal and recycling " +"processes only." msgstr "" +"Przedstawione poniżej oddziaływania obejmują wyłącznie procesy produkcji, " +"utylizacji i recyklingu." + +#: templates/abstractmodel.html.twig +msgid "Take care of the expected units before setting an impact." +msgstr "" + +#: templates/abstractmodel.html.twig +msgid "Data quality" +msgstr "Jakość danych" + +#: templates/abstractmodel.html.twig +msgid "Data source" +msgstr "Źródło danych" + +#: templates/networkequipmenttype.html.twig +msgid "" +"This power value is used as default when the power of a network equipment " +"model is unknown" +msgstr "" +"Ta wartość mocy jest używana domyślnie, gdy nieznana jest moc modelu " +"urządzenia sieciowego" + +#: src/Command/CollectCarbonIntensityCommand.php:70 +msgid "Read carbon dioxyde intensity from external sources" +msgstr "" + +#: src/Command/CollectCarbonIntensityCommand.php:84 +msgid "Source:" +msgstr "Źródło:" + +#: src/Command/CollectCarbonIntensityCommand.php:95 +msgid "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" +msgstr "" + +#: src/Command/CollectCarbonIntensityCommand.php:99 +msgid "Geocoding is not enabled. Cannot resolve an address into a zone" +msgstr "" +"Geokodowanie nie jest włączone. Nie można przekształcić adresu w strefę." + +#: src/Command/CollectCarbonIntensityCommand.php:104 +msgid "Address:" +msgstr "Adres:" + +#: src/Command/CollectCarbonIntensityCommand.php:107 +msgid "Zone:" +msgstr "Strefa:" -#: src/Command/CreateFakeCarbonIntensityCommand.php:70 -#: src/Command/CollectCarbonIntensityCommand.php:71 +#: src/Command/CollectCarbonIntensityCommand.php:123 +#: src/Command/CreateFakeCarbonIntensityCommand.php:67 msgid "Creating data source name" +msgstr "Tworzenie nazwy źródła danych" + +#: src/Command/CollectCarbonIntensityCommand.php:130 +msgid "This source does not exist" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:81 -msgid "Creating data zone name" +#: src/Command/CollectCarbonIntensityCommand.php:149 +msgid "The zone is not handled by the data source" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:92 +#: src/Command/CollectCarbonIntensityCommand.php:155 +msgid "Reading data..." +msgstr "Odczyt danych..." + +#: src/Command/CreateFakeCarbonIntensityCommand.php:78 +msgid "Creating data zone name" +msgstr "Tworzenie nazwy strefy danych" + +#: src/Command/CreateFakeCarbonIntensityCommand.php:89 msgid "Creating fake data..." msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:83 -msgid "Reading eco2mix data..." +#: src/Command/ExportDashboardCommand.php:68 +msgid "Updating the report dashboard description" msgstr "" -#: src/Profile.php:46 src/EnvironnementalImpact.php:54 -msgid "Environnemental impact" +#: src/Command/ExportDashboardCommand.php:73 +msgid "Dashboard not found" +msgstr "Nie znaleziono pulpitu nawigacyjnego" + +#: src/Command/ExportDashboardCommand.php:99 +#, php-format +msgid "Dashboard description saved to %s" +msgstr "Opis pulpitu nawigacyjnego zapisany w %s" + +#: src/Command/CreateTestInventoryCommand.php:145 +msgid "Creating test inventory" msgstr "" -#: src/Profile.php:87 entrée standard:48 -msgctxt "button" -msgid "Save" +#: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 +#: src/ComputerType.php:70 src/MonitorType.php:50 +msgid "Power consumption" +msgstr "Pobór mocy" + +#: src/UsageInfo.php:62 +msgid "Usage informations" +msgstr "Informacje o użytkowaniu" + +#: src/UsageInfo.php:94 src/AbstractModel.php:54 src/Location.php:73 +#: src/AbstractType.php:55 src/Profile.php:45 +msgid "Environmental impact" +msgstr "Wpływ na środowisko" + +#: src/UsageInfo.php:241 +#, php-format +msgid "%s More information %s" msgstr "" -#: src/CronTask.php:50 -msgid "Download carbon emissions from RTE" +#: src/DataSource/Lca/Boaviztapi/Config.php:100 +msgid "Invalid Boavizta API URL" +msgstr "" + +#: src/DataSource/Lca/Boaviztapi/Config.php:108 +msgid "Connection to Boavizta API established" +msgstr "" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:56 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:53 +msgid "Resource diagnosis" msgstr "" -#: src/CronTask.php:51 src/CronTask.php:57 +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:71 +msgid "Collect carbon intensities from RTE" +msgstr "Zbierz intensywność emisji dwutlenku węgla z RTE" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:89 +msgid "Download carbon emissions from RTE" +msgstr "Pobierz dane o emisji dwutlenku węgla z RTE" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:90 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:87 +#: src/CronTask.php:107 msgid "Maximum number of entries to download" msgstr "" -#: src/CronTask.php:56 -msgid "Download carbon emissions from ElectricityMap" +#: src/DataSource/CarbonIntensity/AbstractCronTask.php:103 +#: src/Source_Zone.php:537 +msgid "End" msgstr "" -#: src/CronTask.php:62 -msgid "Compute daily environnemental impact for all assets" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:68 +msgid "Collect carbon intensities from Electricity Maps" msgstr "" -#: src/CronTask.php:63 -msgid "Maximum number of entries to calculate" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:86 +msgid "Download carbon emissions from Electricity Maps" msgstr "" -#: src/CarbonIntensity.php:57 -msgid "Carbon intensity" +#: src/AbstractImpact.php:125 src/CarbonEmission.php:151 +msgid "Date of evaluation" +msgstr "Data oceny" + +#: src/AbstractImpact.php:132 src/CarbonEmission.php:158 +msgid "Engine" +msgstr "Silnik" + +#: src/AbstractImpact.php:139 src/CarbonEmission.php:165 +msgid "Engine version" +msgstr "Wersja silnika" + +#: src/DataTracking/AbstractTracked.php:77 +msgid "Impact not evaluated" msgstr "" -#: src/CarbonIntensity.php:96 -msgid "ID" +#: src/DataTracking/AbstractTracked.php:78 +msgid "Unspecified quality" msgstr "" -#: src/CarbonIntensity.php:105 -msgid "Emission date" +#: src/DataTracking/AbstractTracked.php:79 +msgid "Manual data" msgstr "" -#: src/CarbonIntensity.php:132 -msgid "Intensity" +#: src/DataTracking/AbstractTracked.php:80 +msgid "Estimated data" msgstr "" -#: src/Report.php:48 -msgid "Carbon report" -msgid_plural "Carbon reports" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: src/DataTracking/AbstractTracked.php:81 +msgid "Downsampled data" +msgstr "" -#: src/Toolbox.php:194 src/Dashboard/Provider.php:519 -msgid "g" +#: src/DataTracking/AbstractTracked.php:82 +msgid "Measured data" msgstr "" -#: src/Toolbox.php:195 src/Dashboard/Provider.php:520 -msgid "Kg" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 +#: src/Impact/Usage/AbstractUsageImpact.php:91 +msgid "grams of carbon dioxyde equivalent" +msgstr "gramy ekwiwalentu dwutlenku węgla" + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 +#: src/Impact/Usage/AbstractUsageImpact.php:93 +msgid "grams of antimony equivalent" +msgstr "gramy ekwiwalentu antymonu" + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 +#: src/Impact/Usage/AbstractUsageImpact.php:95 +msgid "joules" msgstr "" -#: src/Toolbox.php:196 src/Dashboard/Provider.php:521 -msgid "t" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 +msgid "Connection to Boavizta failed." msgstr "" -#: src/Toolbox.php:197 src/Dashboard/Provider.php:522 -msgid "Kt" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 +msgid "Embodied impact evaluation falied." msgstr "" -#: src/Toolbox.php:198 src/Dashboard/Provider.php:523 -msgid "Mt" +#: src/Impact/History/AbstractAsset.php:370 +msgid "Error while calculating impact" +msgstr "Błąd podczas obliczania wpływu" + +#: src/Impact/History/AbstractAsset.php:378 +msgid "Nothing to calculate" +msgstr "Nic do obliczenia" + +#: src/Impact/History/AbstractAsset.php:384 +#, php-format +msgid "%d entries calculated" msgstr "" -#: src/Toolbox.php:199 src/Dashboard/Provider.php:524 -msgid "Gt" +#: src/Impact/Type.php:159 +msgid "Embodied Global warming potential" msgstr "" -#: src/Toolbox.php:200 src/Dashboard/Provider.php:525 -msgid "Tt" +#: src/Impact/Type.php:160 +msgid "Embodied Abiotic depletion potential" msgstr "" -#: src/Toolbox.php:201 src/Dashboard/Provider.php:526 -msgid "Pt" +#: src/Impact/Type.php:161 +msgid "Embodied Primary energy consumed" msgstr "" -#: src/Toolbox.php:202 src/Dashboard/Provider.php:527 -msgid "Et" +#: src/Impact/Type.php:162 +msgid "Embodied Climate change - Contribution of biogenic emissions" msgstr "" -#: src/Toolbox.php:203 src/Dashboard/Provider.php:528 -msgid "Zt" +#: src/Impact/Type.php:163 +msgid "Embodied Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/Toolbox.php:204 src/Dashboard/Provider.php:529 -msgid "Yt" +#: src/Impact/Type.php:164 +msgid "" +"Embodied Climate change - Contribution of emissions from land use change" msgstr "" -#. TRANS: %1$s is a number maybe float or string and %2$s the unit -#: src/Toolbox.php:215 src/Toolbox.php:248 -#, php-format -msgid "%1$s %2$s" +#: src/Impact/Type.php:165 +msgid "Embodied Emissions of radionizing substances" msgstr "" -#: src/Toolbox.php:229 -msgid "W" +#: src/Impact/Type.php:166 +msgid "Embodied Land use" msgstr "" -#: src/Toolbox.php:230 -msgid "KW" +#: src/Impact/Type.php:167 +msgid "Embodied Depletion of the ozone layer" msgstr "" -#: src/Toolbox.php:231 -msgid "MW" +#: src/Impact/Type.php:168 +msgid "Embodied Fine particle emissions" msgstr "" -#: src/Toolbox.php:232 -msgid "GW" +#: src/Impact/Type.php:169 +msgid "Embodied Photochemical ozone formation" msgstr "" -#: src/Toolbox.php:233 -msgid "TW" +#: src/Impact/Type.php:170 +msgid "Embodied Use of water resources" msgstr "" -#: src/Toolbox.php:234 -msgid "PW" +#: src/Impact/Type.php:171 +msgid "Embodied Material input per unit of service" msgstr "" -#: src/Toolbox.php:235 -msgid "EW" +#: src/Impact/Type.php:172 +msgid "Embodied Use of mineral and metal resources" msgstr "" -#: src/Toolbox.php:236 -msgid "ZW" +#: src/Impact/Type.php:173 +msgid "Embodied Use of fossil resources (including nuclear)" msgstr "" -#: src/Toolbox.php:237 -msgid "YW" +#: src/Impact/Type.php:174 +msgid "Embodied Acidification" msgstr "" -#: src/Dashboard/Widget.php:45 -msgid "Carbon Emission Per Type" +#: src/Impact/Type.php:175 +msgid "Embodied Freshwater ecotoxicity" msgstr "" -#: src/Dashboard/Widget.php:51 -msgid "Carbon Emission Per Month" +#: src/Impact/Type.php:178 +msgid "Embodied Eutrophication of freshwater" msgstr "" -#: src/Dashboard/Widget.php:57 entrée standard:38 -msgid "Total Carbon Emission" +#: src/Impact/Type.php:179 +msgid "Embodied Eutrophication of marine waters" msgstr "" -#: src/Dashboard/Widget.php:63 -msgid "Monthly Carbon Emission" +#: src/Impact/Type.php:180 +msgid "Embodied Terrestrial eutrophication" msgstr "" -#: src/Dashboard/Widget.php:69 -msgid "Unhandled Computers" +#: src/Impact/Type.php:195 +msgid "Usage Global warming potential" msgstr "" -#: src/Dashboard/Filters/Item.php:42 -msgid "Item" +#: src/Impact/Type.php:196 +msgid "Usage Abiotic depletion potential" msgstr "" -#: src/Dashboard/Provider.php:357 src/Dashboard/Provider.php:533 -#: src/Dashboard/Provider.php:534 -msgid "CO₂eq" +#: src/Impact/Type.php:197 +msgid "Usage Primary energy consumed" msgstr "" -#: src/Dashboard/Provider.php:473 src/Dashboard/Provider.php:488 entrée -#: standard:120 -msgid "Carbon emission" +#: src/Impact/Type.php:198 +msgid "Usage Climate change - Contribution of biogenic emissions" msgstr "" -#: src/Dashboard/Provider.php:478 src/Dashboard/Provider.php:491 entrée -#: standard:123 -msgid "Consumed energy" +#: src/Impact/Type.php:199 +msgid "Usage Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/Dashboard/Provider.php:538 -msgid "KWh" +#: src/Impact/Type.php:200 +msgid "Usage Climate change - Contribution of emissions from land use change" msgstr "" -#: src/Dashboard/Provider.php:539 -msgid "MWh" +#: src/Impact/Type.php:201 +msgid "Usage Emissions of radionizing substances" msgstr "" -#: src/Dashboard/Provider.php:540 -msgid "GWh" +#: src/Impact/Type.php:202 +msgid "Usage Land use" msgstr "" -#: src/Dashboard/Provider.php:541 -msgid "TWh" +#: src/Impact/Type.php:203 +msgid "Usage Depletion of the ozone layer" msgstr "" -#: src/Dashboard/Provider.php:542 -msgid "PWh" +#: src/Impact/Type.php:204 +msgid "Usage Fine particle emissions" msgstr "" -#: src/Dashboard/Provider.php:543 -msgid "EWh" +#: src/Impact/Type.php:205 +msgid "Usage Photochemical ozone formation" msgstr "" -#: src/Dashboard/Provider.php:544 -msgid "ZWh" +#: src/Impact/Type.php:206 +msgid "Usage Use of water resources" msgstr "" -#: src/Dashboard/Provider.php:545 -msgid "YWh" +#: src/Impact/Type.php:207 +msgid "Usage Material input per unit of service" msgstr "" -#: src/Dashboard/Dashboard.php:51 src/Dashboard/Dashboard.php:114 -msgid "Unhandled computers" +#: src/Impact/Type.php:208 +msgid "Usage Use of mineral and metal resources" msgstr "" -#: src/Dashboard/Dashboard.php:57 -msgid "Handled computers" +#: src/Impact/Type.php:209 +msgid "Usage Use of fossil resources (including nuclear)" msgstr "" -#: src/Dashboard/Dashboard.php:63 -msgid "Total power consumption" +#: src/Impact/Type.php:210 +msgid "Usage Acidification" msgstr "" -#: src/Dashboard/Dashboard.php:69 src/Dashboard/Dashboard.php:104 -msgid "Total carbon emission" +#: src/Impact/Type.php:211 +msgid "Usage Freshwater ecotoxicity" msgstr "" -#: src/Dashboard/Dashboard.php:75 -msgid "Total power consumption per model" +#: src/Impact/Type.php:214 src/Impact/Type.php:342 +msgid "Usage Eutrophication of freshwater" msgstr "" -#: src/Dashboard/Dashboard.php:81 -msgid "Total carbon emission per model" +#: src/Impact/Type.php:215 src/Impact/Type.php:343 +msgid "Usage Eutrophication of marine waters" msgstr "" -#: src/Dashboard/Dashboard.php:87 src/Dashboard/Dashboard.php:255 -msgid "Carbon emission per month" +#: src/Impact/Type.php:216 src/Impact/Type.php:344 +msgid "Usage Terrestrial eutrophication" msgstr "" -#: src/Dashboard/Dashboard.php:93 -msgid "Carbon intensity (gCO2eq / KWh)" +#: src/Impact/Type.php:231 +msgid "Total Global warming potential" msgstr "" -#: src/Dashboard/Dashboard.php:99 -msgid "Carbon emission per type" +#: src/Impact/Type.php:232 +msgid "Total Abiotic depletion potential" msgstr "" -#: src/Dashboard/Dashboard.php:109 entrée standard:38 -msgid "Monthly carbon emission" +#: src/Impact/Type.php:233 +msgid "Total Primary energy consumed" msgstr "" -#: src/Dashboard/Dashboard.php:119 -msgid "Carbon emission per month graph" +#: src/Impact/Type.php:234 +msgid "Total Climate change - Contribution of biogenic emissions" msgstr "" -#: src/Dashboard/Dashboard.php:273 -msgid "Carbon dioxyde intensity" +#: src/Impact/Type.php:235 +msgid "Total Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/ComputerUsageProfile.php:48 -msgid "Computer usage profile" -msgid_plural "Computer usage profiles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: src/Impact/Type.php:236 +msgid "Total Climate change - Contribution of emissions from land use change" +msgstr "" -#: src/ComputerUsageProfile.php:84 -msgid "Knowbase category" +#: src/Impact/Type.php:237 +msgid "Total Emissions of radionizing substances" msgstr "" -#: src/ComputerUsageProfile.php:90 -msgid "As child of" +#: src/Impact/Type.php:238 +msgid "Total Land use" msgstr "" -#: src/ComputerUsageProfile.php:105 entrée standard:52 -msgid "Start time" +#: src/Impact/Type.php:239 +msgid "Total Depletion of the ozone layer" msgstr "" -#: src/ComputerUsageProfile.php:113 entrée standard:58 -msgid "Stop time" +#: src/Impact/Type.php:240 +msgid "Total Fine particle emissions" msgstr "" -#: src/ComputerUsageProfile.php:121 entrée standard:66 -msgid "Monday" +#: src/Impact/Type.php:241 +msgid "Total Photochemical ozone formation" msgstr "" -#: src/ComputerUsageProfile.php:129 entrée standard:72 -msgid "Tuesday" +#: src/Impact/Type.php:242 +msgid "Total Use of water resources" msgstr "" -#: src/ComputerUsageProfile.php:137 entrée standard:78 -msgid "Wednesday" +#: src/Impact/Type.php:243 +msgid "Total Material input per unit of service" msgstr "" -#: src/ComputerUsageProfile.php:145 entrée standard:84 -msgid "Thursday" +#: src/Impact/Type.php:244 +msgid "Total Use of mineral and metal resources" msgstr "" -#: src/ComputerUsageProfile.php:153 entrée standard:90 -msgid "Friday" +#: src/Impact/Type.php:245 +msgid "Total Use of fossil resources (including nuclear)" msgstr "" -#: src/ComputerUsageProfile.php:161 entrée standard:96 -msgid "Saturday" +#: src/Impact/Type.php:246 +msgid "Total Acidification" msgstr "" -#: src/ComputerUsageProfile.php:169 entrée standard:103 -msgid "Sunday" +#: src/Impact/Type.php:247 +msgid "Total Freshwater ecotoxicity" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:124 -#: src/CarbonIntensitySource_CarbonIntensityZone.php:219 entrée standard:40 -msgid "Name" +#: src/Impact/Type.php:250 +msgid "Total Eutrophication of freshwater" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:125 -msgid "Download enabled" +#: src/Impact/Type.php:251 +msgid "Total Eutrophication of marine waters" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:126 -msgid "Source for historical" +#: src/Impact/Type.php:252 +msgid "Total Terrestrial eutrophication" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:132 -#: src/CarbonIntensitySource_CarbonIntensityZone.php:225 -msgid "Total" +#: src/Impact/Type.php:323 +msgid "Carbon emission in CO₂ equivalent" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:284 entrée standard:189 -msgid "No" +#: src/Impact/Type.php:324 +msgid "Consumption of non renewable resources in Antimony equivalent." msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:284 entrée standard:186 -msgid "Yes" +#: src/Impact/Type.php:325 +msgid "Primary energy consumed." msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:285 -msgid "Enable / Disable" +#: src/Impact/Type.php:332 +msgid "Incidence of disease" msgstr "" -#: src/CarbonEmission.php:50 -msgid "Carbon Emission" -msgid_plural "Carbon Emissions" +#: src/Source.php:46 +msgid "Carbon intensity source" +msgid_plural "Carbon intensity sources" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: hook.php:133 hook.php:172 -msgid "Power consumption (W)" +#: src/SearchOptions.php:184 src/SearchOptions.php:316 +#: src/SearchOptions.php:329 src/SearchOptions.php:342 +msgid "Ignore environmental impact" msgstr "" -#: setup.php:204 -msgid "Environmental Impact" +#: src/SearchOptions.php:241 src/SearchOptions.php:365 +#: src/SearchOptions.php:442 +msgid "Is historizable" msgstr "" -#. TRANS: %s is the number of new version -#: install/migration/update_0.0.0_to_0.0.1.php:44 -#: install/migration/update_xxx_to_yyy.php:45 +#: src/ComputerType.php:56 +msgid "Unspecified" +msgstr "Nieokreślone" + +#: src/ComputerType.php:58 +msgid "Server" +msgstr "Serwer" + +#: src/ComputerType.php:59 +msgid "Laptop" +msgstr "Laptop" + +#: src/ComputerType.php:60 +msgid "Tablet" +msgstr "Tablet" + +#: src/ComputerType.php:61 +msgid "Smartphone" +msgstr "Smartfon" + +#: src/UsageImpact.php:39 +msgid "Usage impact" +msgid_plural "Usage impacts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/AbstractModel.php:62 src/Dashboard/Grid.php:58 +#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 +#: src/AbstractType.php:63 +msgid "Carbon" +msgstr "" + +#: src/AbstractModel.php:197 +msgid "Quality" +msgstr "" + +#: src/Report.php:49 +msgid "Carbon report" +msgid_plural "Carbon reports" +msgstr[0] "Raport emisji dwutlenku węgla" +msgstr[1] "Raporty emisji dwutlenku węgla" +msgstr[2] "Raporty emisji dwutlenku węgla" +msgstr[3] "Raporty emisji dwutlenku węgla" + +#: src/Report.php:101 #, php-format -msgid "Update to %s" +msgid "" +"Demo mode enabled. The data below are not representative of the assets in " +"the database. %sDisable demo mode%s" msgstr "" -#: install/migration/update_0.0.0_to_0.0.1/create_uasge_profiles.php:39 -msgid "Office hours" +#: src/ComputerUsageProfile.php:51 +msgid "Computer usage profile" +msgid_plural "Computer usage profiles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/ComputerUsageProfile.php:117 +msgid "Start time is invalid" msgstr "" -#: install/migration/update_0.0.0_to_0.0.1/create_automatic_actions.php:46 -msgid "Compute carbon emissions of computers" +#: src/ComputerUsageProfile.php:122 +msgid "Stop time is invalid" msgstr "" -#: install/migration/update_0.0.0_to_0.0.1/create_automatic_actions.php:58 -msgid "Collect carbon intensities from RTE" +#: src/Source_Zone.php:72 +msgid "Source name" +msgstr "Nazwa źródła" + +#: src/Source_Zone.php:80 +msgid "Zone name" +msgstr "Nazwa strefy" + +#: src/Source_Zone.php:88 src/Source_Zone.php:171 src/Source_Zone.php:268 +#: src/Zone.php:127 +msgid "Download enabled" msgstr "" -#: install/migration/update_0.0.0_to_0.0.1/create_automatic_actions.php:70 -msgid "Collect carbon intensities from ElectricityMap" +#: src/Source_Zone.php:96 +msgid "Code" +msgstr "Kod" + +#: src/Source_Zone.php:150 +msgid "Not downloadable" +msgstr "Nie można pobrać" + +#: src/Source_Zone.php:150 +msgid "This is a fallback source, there is no real-time data available" msgstr "" -#: entrée standard:35 -msgid "No zone available" +#: src/Source_Zone.php:172 +msgid "Source for historical" msgstr "" -#: entrée standard:37 -msgid "Please run the automatic action to downlaod data from this source." +#: src/Source_Zone.php:411 +msgid "Enable / Disable" msgstr "" -#: entrée standard:43 -msgid "Key for electricitymap.org API" +#: src/CronTask.php:100 +msgid "Find the Alpha3 country code (ISO3166)" +msgstr "Znajdź kod kraju Alpha3 (ISO3166)" + +#: src/CronTask.php:101 +msgid "Maximum number of locations to solve" msgstr "" -#: entrée standard:36 -msgid "" -"This power value is used as default when the power of a computer model is " -"unknown" +#: src/CronTask.php:106 +msgid "Download carbon emissions from Watttime" msgstr "" -#: entrée standard:61 -msgid "Days of week where the computer usually runs" +#: src/CronTask.php:112 +msgid "Compute usage environmental impact for all assets" msgstr "" -#: entrée standard:38 -msgid "Warning" +#: src/CronTask.php:113 src/CronTask.php:118 +msgid "Maximum number of entries to calculate" msgstr "" -#: entrée standard:33 -msgid "Carbon Emission per Type" +#: src/CronTask.php:117 +msgid "Compute embodied environmental impact for all assets" msgstr "" -#: entrée standard:33 -msgid "Consumed energy and carbon emission per month" +#: src/CronTask.php:278 +msgid "No zone to download" msgstr "" -#: entrée standard:40 -msgid "Information" +#: src/Dashboard/Widget.php:55 src/Dashboard/Grid.php:310 +msgid "Environmental impact information video" msgstr "" -#: entrée standard:50 +#: src/Dashboard/Widget.php:62 +msgid "Methodology information" +msgstr "Informacje metodologiczne" + +#: src/Dashboard/Widget.php:71 +msgid "Total Carbon Emission" +msgstr "Całkowita emisja dwutlenku węgla" + +#: src/Dashboard/Widget.php:78 +msgid "Monthly Carbon Emission" +msgstr "Miesięczna emisja dwutlenku węgla" + +#: src/Dashboard/Widget.php:85 src/Dashboard/Widget.php:604 +#: src/Dashboard/Grid.php:268 +msgid "Biggest monthly averaged carbon emission per model" +msgstr "" + +#: src/Dashboard/Widget.php:93 +msgid "Carbon Emission Per month" +msgstr "Emisja dwutlenku węgla miesięcznie" + +#: src/Dashboard/Widget.php:100 src/Dashboard/Provider.php:733 +msgid "Usage abiotic depletion potential" +msgstr "" + +#: src/Dashboard/Widget.php:130 +msgid "Impact criteria" +msgstr "" + +#: src/Dashboard/Widget.php:142 +msgid "Unhandled Computers" +msgstr "" + +#: src/Dashboard/Widget.php:153 +msgid "Unhandled Monitors" +msgstr "" + +#: src/Dashboard/Widget.php:164 +msgid "Unhandled Network equipments" +msgstr "" + +#: src/Dashboard/Widget.php:175 +msgid "Radar chart" +msgstr "Wykres radarowy" + +#: src/Dashboard/Widget.php:501 src/Dashboard/Provider.php:1107 +msgid "Consumed energy and carbon emission per month" +msgstr "" + +#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:561 +#: src/Dashboard/Provider.php:1212 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "Carbon emission" +msgstr "Emisja dwutlenku węgla" + +#: src/Dashboard/Widget.php:551 src/Dashboard/Widget.php:564 +#: src/Dashboard/Provider.php:1228 src/Dashboard/DemoProvider.php:106 +#: src/Dashboard/DemoProvider.php:202 +msgid "Consumed energy" +msgstr "Zużyta energia" + +#: src/Dashboard/Widget.php:746 +#, php-format msgid "" -"Our data is sourced from reliable sources and is meticulously calculated " -"using industry-standard methodologies. We utilize accurate measurement tools" -" and algorithms to ensure the precision and reliability of our environmental" -" metrics." +"Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " +"months. %s More information %s" msgstr "" +"Ocenia emisję dwutlenku węgla w przeliczeniu na ekwiwalent CO₂ w ciągu " +"ostatnich 2 miesięcy. %s Więcej informacji %s" -#: entrée standard:51 +#: src/Dashboard/Widget.php:812 +#, php-format msgid "" -"As we move towards a greener future, businesses will soon be required to " -"report energy usage and carbon emissions. By 2025, many areas will enforce " -"these regulations. Adopting these practices now ensures compliance and helps" -" combat climate change." +"Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " +"elapsed months. %s More information %s" msgstr "" +"Ocenia emisję dwutlenku węgla w ekwiwalencie CO₂ w ciągu ostatnich 12 " +"miesięcy. %s Więcej informacji %s" -#: entrée standard:55 -msgid "Did you know ?" +#: src/Dashboard/Widget.php:854 +msgid "More information" msgstr "" -#: entrée standard:56 +#: src/Dashboard/Widget.php:893 +#, php-format msgid "" -"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " -"about 20 meters." +"Evaluates the consumption of non renewable resources in Antimony equivalent." +" %s More information %s" +msgstr "" +"Ocenia zużycie zasobów nieodnawialnych w ekwiwalencie antymonu. %s Więcej " +"informacji %s" + +#: src/Dashboard/Widget.php:1097 +msgid "Handled percentage" msgstr "" -#: entrée standard:81 +#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 +#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 +#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "CO₂eq" +msgstr "" + +#: src/Dashboard/Provider.php:195 src/Dashboard/Provider.php:318 +#: src/Dashboard/Provider.php:1199 src/Toolbox.php:243 +msgid "g" +msgstr "g" + +#: src/Dashboard/Provider.php:196 src/Dashboard/Provider.php:319 +#: src/Dashboard/Provider.php:1200 src/Toolbox.php:244 +msgid "Kg" +msgstr "Kg" + +#: src/Dashboard/Provider.php:197 src/Dashboard/Provider.php:320 +#: src/Dashboard/Provider.php:1201 src/Toolbox.php:245 +msgid "t" +msgstr "t" + +#: src/Dashboard/Provider.php:198 src/Dashboard/Provider.php:321 +#: src/Dashboard/Provider.php:1202 src/Toolbox.php:246 +msgid "Kt" +msgstr "Kt" + +#: src/Dashboard/Provider.php:199 src/Dashboard/Provider.php:322 +#: src/Dashboard/Provider.php:1203 src/Toolbox.php:247 +msgid "Mt" +msgstr "Mt" + +#: src/Dashboard/Provider.php:200 src/Dashboard/Provider.php:323 +#: src/Dashboard/Provider.php:1204 src/Toolbox.php:248 +msgid "Gt" +msgstr "Gt" + +#: src/Dashboard/Provider.php:201 src/Dashboard/Provider.php:324 +#: src/Dashboard/Provider.php:1205 src/Toolbox.php:249 +msgid "Tt" +msgstr "Tt" + +#: src/Dashboard/Provider.php:202 src/Dashboard/Provider.php:325 +#: src/Dashboard/Provider.php:1206 src/Toolbox.php:250 +msgid "Pt" +msgstr "Pt" + +#: src/Dashboard/Provider.php:203 src/Dashboard/Provider.php:326 +#: src/Dashboard/Provider.php:1207 src/Toolbox.php:251 +msgid "Et" +msgstr "Et" + +#: src/Dashboard/Provider.php:204 src/Dashboard/Provider.php:327 +#: src/Dashboard/Provider.php:1208 src/Toolbox.php:252 +msgid "Zt" +msgstr "Zt" + +#: src/Dashboard/Provider.php:205 src/Dashboard/Provider.php:328 +#: src/Dashboard/Provider.php:1209 src/Toolbox.php:253 +msgid "Yt" +msgstr "Yt" + +#: src/Dashboard/Provider.php:427 +msgid "handled assets ratio" +msgstr "" + +#: src/Dashboard/Provider.php:473 src/Dashboard/Grid.php:63 +msgid "Handled assets ratio" +msgstr "" + +#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 +msgid "Handled" +msgstr "" + +#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 +msgid "Unhandled" +msgstr "" + +#: src/Dashboard/Provider.php:507 +msgid "Ignored" +msgstr "" + +#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 #, php-format -msgid "%s rows / page" +msgid "plugin carbon - handled %s" msgstr "" -#: entrée standard:90 +#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 #, php-format -msgid "Showing %s to %s of %s rows" +msgid "plugin carbon - unhandled %s" msgstr "" -#: entrée standard:94 +#: src/Dashboard/Provider.php:584 #, php-format -msgid "%s-%s/%s" +msgid "plugin carbon - ignored %s" msgstr "" -#: entrée standard:104 -msgid "Start" +#: src/Dashboard/Provider.php:632 +msgid "plugin carbon - Total usage power consumption" msgstr "" -#: entrée standard:109 -msgid "Previous" +#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 +msgid "plugin carbon - Usage carbon emission" msgstr "" -#: entrée standard:118 -#, php-format -msgid "%s-%s of %s" +#: src/Dashboard/Provider.php:747 +msgid "Sbeq" msgstr "" -#: entrée standard:141 -msgid "Next" +#: src/Dashboard/Provider.php:1035 +msgid "Total abiotic depletion potential" msgstr "" -#: entrée standard:146 -msgid "End" +#: src/Dashboard/Provider.php:1051 +msgid "Embodied abiotic depletion potential" msgstr "" -#: entrée standard:50 standard:281 -msgid "No data" +#: src/Dashboard/Provider.php:1054 +msgid "Total usage abiotic depletion potential" msgstr "" -#: entrée standard:88 -msgid "Check all" +#: src/Dashboard/Provider.php:1066 +msgid "Total global warming potential" +msgstr "Całkowity potencjał globalnego ocieplenia" + +#: src/Dashboard/Provider.php:1082 +msgid "Embodied global warming potential" msgstr "" -#: entrée standard:123 -msgid "Filter" +#: src/Dashboard/Provider.php:1085 +msgid "Total usage global warming potential" +msgstr "Całkowity potencjał globalnego ocieplenia" + +#: src/Dashboard/Provider.php:1218 src/Toolbox.php:316 +msgid "KWh" +msgstr "KWh" + +#: src/Dashboard/Provider.php:1219 src/Toolbox.php:317 +msgid "MWh" +msgstr "MWh" + +#: src/Dashboard/Provider.php:1220 src/Toolbox.php:318 +msgid "GWh" +msgstr "GWh" + +#: src/Dashboard/Provider.php:1221 src/Toolbox.php:319 +msgid "TWh" +msgstr "TWh" + +#: src/Dashboard/Provider.php:1222 src/Toolbox.php:320 +msgid "PWh" +msgstr "PWh" + +#: src/Dashboard/Provider.php:1223 src/Toolbox.php:321 +msgid "EWh" +msgstr "EWh" + +#: src/Dashboard/Provider.php:1224 src/Toolbox.php:322 +msgid "ZWh" +msgstr "ZWh" + +#: src/Dashboard/Provider.php:1225 src/Toolbox.php:323 +msgid "YWh" +msgstr "YWh" + +#: src/Dashboard/Grid.php:72 +msgid "Handled assets count" msgstr "" -#: entrée standard:129 -msgid "Export" +#: src/Dashboard/Grid.php:135 +#, php-format +msgid "Handled %s" msgstr "" -#: entrée standard:184 -msgid "All" +#: src/Dashboard/Grid.php:146 +#, php-format +msgid "Unhandled %s" msgstr "" -#: entrée standard:310 +#: src/Dashboard/Grid.php:232 #, php-format -msgid "Show %s entries" +msgid "Unhandled %s ratio" msgstr "" -#: entrée standard:42 -msgid "Compared to last month" +#: src/Dashboard/Grid.php:244 +msgid "Usage carbon emission year to date" msgstr "" -#: entrée standard:35 -msgid "Want to know more ?" +#: src/Dashboard/Grid.php:250 +msgid "Monthly carbon emission" +msgstr "Miesięczna emisja dwutlenku węgla" + +#: src/Dashboard/Grid.php:259 +msgid "Usage global warming potential chart" msgstr "" -#: entrée standard:36 -msgid "Here is a video about the impact of numeric on the enviromnent." +#: src/Dashboard/Grid.php:315 +msgid "Environmental impact methodology information" msgstr "" -#: entrée standard:33 -msgid "Carbon Emission per Month" +#: src/Dashboard/DemoProvider.php:76 +msgid "Usage carbon emission per month" msgstr "" -#: entrée standard:36 -msgid "" -"This power value is used as default when the power of a network equipment " -"model is unknown" +#: src/Dashboard/DemoProvider.php:274 +msgid "plugin carbon - handled assets ratio" +msgstr "" + +#: src/Dashboard/Dashboard.php:68 +msgid "Carbon dioxyde intensity" +msgstr "" + +#: src/Location.php:189 +msgid "Carbon intensity source and zone" +msgstr "" + +#: src/CarbonIntensity.php:87 +msgid "Emission date" +msgstr "" + +#: src/CarbonIntensity.php:114 +msgid "Intensity" +msgstr "" + +#: src/CarbonEmission.php:49 +msgid "Carbon Emission" +msgid_plural "Carbon Emissions" +msgstr[0] "Emisja dwutlenku węgla" +msgstr[1] "Emisje dwutlenku węgla" +msgstr[2] "Emisje dwutlenku węgla" +msgstr[3] "Emisje dwutlenku węgla" + +#: src/CarbonEmission.php:120 +msgid "Energy" +msgstr "Energia" + +#: src/CarbonEmission.php:128 +msgid "Emission" +msgstr "Emisja" + +#: src/CarbonEmission.php:136 +msgid "Energy quality" +msgstr "Jakość energii" + +#: src/CarbonEmission.php:144 +msgid "Emission quality" +msgstr "Jakość emisji" + +#: src/Toolbox.php:280 +msgid "W" +msgstr "W" + +#: src/Toolbox.php:281 +msgid "KW" +msgstr "KW" + +#: src/Toolbox.php:282 +msgid "MW" +msgstr "MW" + +#: src/Toolbox.php:283 +msgid "GW" +msgstr "GW" + +#: src/Toolbox.php:284 +msgid "TW" +msgstr "TW" + +#: src/Toolbox.php:285 +msgid "PW" +msgstr "PW" + +#: src/Toolbox.php:286 +msgid "EW" +msgstr "EW" + +#: src/Toolbox.php:287 +msgid "ZW" +msgstr "ZW" + +#: src/Toolbox.php:288 +msgid "YW" +msgstr "YW" + +#: src/Toolbox.php:315 +msgid "Wh" +msgstr "Wh" + +#: src/Toolbox.php:373 src/Toolbox.php:378 +#, php-format +msgid "%1$s %2$s" msgstr "" -#: entrée standard:36 +#: setup.php:285 +msgid "Environmental Impact" +msgstr "Wpływ na środowisko" + +#: hook.php:97 msgid "" -"This power value is used as default when the power of a monitor model is " -"unknown" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." msgstr "" -#: entrée standard:36 -msgid "Usage information" +#: hook.php:301 +msgid "Associate to an usage profile" msgstr "" -#: entrée standard:41 -msgid "Usage profile" -msgid_plural "Usage profiles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: hook.php:302 hook.php:307 +msgid "Delete all calculated environmental impacts" +msgstr "" + +#: hook.php:311 hook.php:316 hook.php:320 +msgid "Update type power consumption" +msgstr "" + +#: hook.php:312 +msgid "Update category" +msgstr "" + +#: hook.php:324 +msgid "Update zone for Boavizta engine" +msgstr "" + +#: hook.php:325 +msgid "Update carbon intensity source and zone" +msgstr "" + +#: install/install/create_automatic_actions.php:52 +msgid "Find the Alpha3 country code (ISO3166) of locations" +msgstr "Znajdź kod kraju Alpha3 (ISO3166) lokalizacji" + +#: install/install/create_automatic_actions.php:64 +msgid "Compute carbon emissions of computers" +msgstr "Oblicz emisję dwutlenku węgla przez komputery" + +#: install/install/create_automatic_actions.php:76 +msgid "Compute embodied impact of assets" +msgstr "" + +#: install/install/create_uasge_profiles.php:41 +msgid "Always on" +msgstr "Zawsze włączony" + +#: install/install/create_uasge_profiles.php:52 +msgid "Office hours" +msgstr "Godziny pracy biura" + +#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 +#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 +msgid "Missing arguments in request." +msgstr "Brak argumentów w żądaniu." + +#: front/usageimpact.form.php:80 front/usageimpact.form.php:106 +#: front/usageimpact.form.php:114 front/embodiedimpact.form.php:92 +msgid "Bad arguments." +msgstr "Złe argumenty." + +#: front/usageimpact.form.php:90 front/embodiedimpact.form.php:68 +#: front/embodiedimpact.form.php:77 +msgid "Reset denied." +msgstr "Resetowanie zabronione." + +#: front/usageimpact.form.php:95 front/embodiedimpact.form.php:82 +msgid "Reset failed." +msgstr "Resetowanie nie powiodło się." + +#: front/usageimpact.form.php:122 +msgid "Missing data prevents historization of this asset." +msgstr "" + +#: front/usageimpact.form.php:125 +msgid "Update of global warming potential failed." +msgstr "" + +#: front/usageimpact.form.php:131 front/embodiedimpact.form.php:101 +msgid "Unable to find calculation engine for this asset." +msgstr "" + +#: front/usageimpact.form.php:136 +msgid "Update of usage impact failed." +msgstr "Aktualizacja wpływu użytkowania nie powiodła się." diff --git a/locales/pt_BR.po b/locales/pt_BR.po index ae8c89ee..1fe1c407 100644 --- a/locales/pt_BR.po +++ b/locales/pt_BR.po @@ -2,168 +2,80 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Eduardo Scott , 2025 -# Thierry Bugier , 2025 -# Pablo Pierri , 2025 -# +# Pablo Pierri , 2026 +# Thierry Bugier , 2026 +# Arthur Schaefer , 2026 +# #, fuzzy msgid "" msgstr "" -"Project-Id-Version: \n" +"Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 08:10+0000\n" -"PO-Revision-Date: 2026-04-12 20:12-0300\n" -"Last-Translator: Pablo Pierri , 2025\n" -"Language-Team: Portuguese (Brazil) (https://app.transifex.com/teclib/teams/" -"28042/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2026-04-15 02:49+0000\n" +"PO-Revision-Date: 2025-10-29 09:26+0000\n" +"Last-Translator: Arthur Schaefer , 2026\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/teclib/teams/28042/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " -"1000000 == 0 ? 1 : 2;\n" -"X-Generator: Poedit 3.9\n" - -#: templates/dashboard/usage-carbon-emission-last-year.html.twig -msgid "Yearly Usage Carbon Emission" -msgstr "Emissão de carbono decorrente do uso anual" - -#: templates/dashboard/monthly-carbon-emission.html.twig -msgid "Monthly usage carbon emission" -msgstr "Emissão de carbono decorrente do uso mensal" - -#: templates/dashboard/monthly-carbon-emission.html.twig -#, php-format -msgid "Compared to %s" -msgstr "Comparado a %s" - -#: templates/dashboard/embodied-primary-energy.html.twig -msgid "Embodied primary energy" -msgstr "Energia primária incorporada" - -#: templates/dashboard/usage-abiotic-depletion.html.twig -#: src/Dashboard/Widget.php:102 src/Dashboard/DemoProvider.php:95 -#: src/Dashboard/Grid.php:184 src/Dashboard/Grid.php:287 -#: src/Dashboard/Provider.php:812 -msgid "Usage abiotic depletion potential" -msgstr "Potencial de depleção abiótica" - -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#: templates/dashboard/unhandled-monitors-card.html.twig -#: templates/dashboard/unhandled-computers-card.html.twig -msgid "Warning" -msgstr "Aviso" - -#: templates/dashboard/unhandled-network-equipments-card.html.twig -#, php-format -msgid "" -"It represents %s percent of your parc that contains %s network equipments." -msgstr "" -"Isso representa %s por cento do seu parque que contém %s equipamentos de " -"rede." - -#: templates/dashboard/unhandled-monitors-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s monitors." -msgstr "Isso representa %s por cento do seu parque que contém %s monitores." - -#: templates/dashboard/information-block.html.twig -msgid "Information" -msgstr "Informação" - -#: templates/dashboard/information-block.html.twig -msgid "" -"Our data is sourced from reliable sources and is meticulously calculated " -"using industry-standard methodologies. We utilize accurate measurement " -"tools and algorithms to ensure the precision and reliability of our " -"environmental metrics." -msgstr "" -"Nossos dados provêm de fontes confiáveis e são meticulosamente calculados " -"utilizando metodologias padrão da indústria. Utilizamos ferramentas de " -"medição e algoritmos precisos para garantir o rigor e a confiabilidade de " -"nossas métricas ambientais." - -#: templates/dashboard/information-block.html.twig -msgid "" -"As we move towards a greener future, businesses will soon be required to " -"report energy usage and carbon emissions. By 2025, many areas will enforce " -"these regulations. Adopting these practices now ensures compliance and " -"helps combat climate change." -msgstr "" -"À medida que avançamos em direção a um futuro mais sustentável, as empresas " -"em breve deverão reportar seu consumo de energia e emissões de carbono. Até " -"2025, muitas regiões passarão a exigir o cumprimento dessas " -"regulamentações. Adotar essas práticas agora garante a conformidade e ajuda " -"a combater as mudanças climáticas." +"Language: pt_BR\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: templates/dashboard/information-block.html.twig -msgid "Did you know ?" -msgstr "Você sabia ?" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 +#: src/ComputerUsageProfile.php:169 +msgid "Start time" +msgstr "Hora de início" -#: templates/dashboard/information-block.html.twig -msgid "" -"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " -"about 20 meters." -msgstr "" -"1 grama de CO₂ equivale ao CO₂ emitido ao dirigir um carro por cerca de 20 " -"metros." +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 +msgid "Stop time" +msgstr "Hora de fim" -#: templates/dashboard/embodied-carbon-emission.html.twig -#: src/Dashboard/Widget.php:111 -msgid "Embodied carbon emission" -msgstr "Carbono Incorporado" +#: templates/computerusageprofile.html.twig +msgid "Days of week where the computer usually runs" +msgstr "Dias da semana em que o computador normalmente funciona" -#: templates/dashboard/information-video-card.html.twig -msgid "Want to know more ?" -msgstr "Quer saber mais?" +#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 +#: src/Impact/Usage/Engine.php:48 +msgid "Boavizta" +msgstr "Boavizta" -#: templates/dashboard/information-video-card.html.twig -msgid "Here is a video about the impact of numeric on the enviromnent." -msgstr "Aqui está um vídeo sobre o impacto do digital no meio ambiente." +#: templates/location.html.twig src/SearchOptions.php:138 src/Location.php:182 +msgid "Boavizta zone" +msgstr "Zona Boavizta" -#: templates/dashboard/unhandled-computers-card.html.twig -#, php-format -msgid "It represents %s percent of your parc that contains %s computers." -msgstr "" -"Isso representa %s por cento do seu parque que contém %s computadores." +#: templates/location.html.twig src/CarbonIntensity.php:65 +msgid "Carbon intensity" +msgstr "Intensidade de carbono" -#: templates/dashboard/embodied-abiotic-depletion.html.twig -#: src/Dashboard/Widget.php:118 src/Dashboard/DemoProvider.php:77 -#: src/Dashboard/Grid.php:204 src/Dashboard/Grid.php:301 -#: src/Dashboard/Provider.php:778 src/Dashboard/Provider.php:862 -msgid "Embodied abiotic depletion potential" -msgstr "Potencial de esgotamento abiótico incorporado" +#: templates/usageinfo.html.twig +msgid "Asset usage" +msgstr "Uso do ativo" -#: templates/monitortype.html.twig -msgid "" -"This power value is used as default when the power of a monitor model is " -"unknown" -msgstr "" -"Este valor de potência é utilizado como padrão quando a potência de um " -"modelo de monitor é desconhecida" +#: templates/usageinfo.html.twig +msgid "Usage profile" +msgid_plural "Usage profiles" +msgstr[0] "Perfil de uso" +msgstr[1] "Perfis de uso" +msgstr[2] "Perfis de uso" -#: templates/monitortype.html.twig templates/computertype.html.twig -#: templates/networkequipmenttype.html.twig src/AbstractType.php:56 -msgid "Power" -msgid_plural "Powers" -msgstr[0] "Potência" -msgstr[1] "Potências" -msgstr[2] "Potências" +#: templates/quick-report.html.twig front/report.php:55 +msgid "GLPI Carbon" +msgstr "GLPI Carbon" -#: templates/computertype.html.twig -msgid "" -"This power value is used as default when the power of a computer model is " -"unknown" -msgstr "" -"Este valor de potência é utilizado como padrão quando a potência de um " -"modelo de computador é desconhecida" +#: templates/components/form/source_zone_selector.html.twig +#: src/AbstractModel.php:186 +msgid "Source" +msgstr "Origem" -#: templates/computertype.html.twig src/SearchOptions.php:251 -#: src/ComputerType.php:78 -msgid "Category" -msgstr "Categoria" +#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 +msgid "Carbon intensity zone" +msgid_plural "Carbon intensity zones" +msgstr[0] "Zona de intensidade de carbono" +msgstr[1] "Zonas de intensidade de carbono" +msgstr[2] "Zonas de intensidade de carbono" #: templates/pages/CarbonIntensitySource/tab_zone.html.twig msgid "No zone available" @@ -173,14 +85,6 @@ msgstr "Nenhuma zona disponível" msgid "Please run the automatic action to downlaod data from this source." msgstr "Execute a ação automática para baixar dados desta fonte." -#: templates/networkequipmenttype.html.twig -msgid "" -"This power value is used as default when the power of a network equipment " -"model is unknown" -msgstr "" -"Este valor de potência é utilizado como padrão quando a potência de um " -"modelo de equipamento de rede é desconhecida" - #: templates/environmentalimpact-item.html.twig msgid "Usage" msgstr "Uso" @@ -193,45 +97,12 @@ msgstr "Redefinir dados" msgid "Calculate data" msgstr "Calcular dados" -#: templates/environmentalimpact-item.html.twig +#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 msgid "Embodied impact" -msgstr "Impacto incorporado" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:125 -#: src/ComputerUsageProfile.php:146 -msgid "Start time" -msgstr "Hora de início" - -#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:154 -msgid "Stop time" -msgstr "Hora de fim" - -#: templates/computerusageprofile.html.twig -msgid "Days of week where the computer usually runs" -msgstr "Dias da semana em que o computador normalmente funciona" - -#: templates/usageinfo.html.twig -msgid "Asset usage" -msgstr "Uso do ativo" - -#: templates/usageinfo.html.twig -msgid "Usage profile" -msgid_plural "Usage profiles" -msgstr[0] "Perfil de uso" -msgstr[1] "Perfis de uso" -msgstr[2] "Perfis de uso" - -#: templates/quick-report.html.twig front/report.php:55 -msgid "GLPI Carbon" -msgstr "GLPI Carbon" - -#: templates/location.html.twig src/Profile.php:45 src/UsageInfo.php:91 -msgid "Environmental impact" -msgstr "Impacto ambiental" - -#: templates/location.html.twig src/Location.php:78 src/SearchOptions.php:121 -msgid "Boavizta zone" -msgstr "Zona Boavizta" +msgid_plural "Embodied impacts" +msgstr[0] "Impacto incorporado" +msgstr[1] "Impactos incorporados" +msgstr[2] "Impactos incorporados" #: templates/history/status-item.html.twig msgid "Historization status" @@ -266,13 +137,17 @@ msgstr "Não é um modelo" msgid "Linked to a computer" msgstr "Conectado a um computador" +#: templates/history/status-item.html.twig +msgid "Attached computer has a location" +msgstr "Computador relacionado possui uma localização " + #: templates/history/status-item.html.twig msgid "Has a location" msgstr "Possui uma localização" #: templates/history/status-item.html.twig -msgid "The location has a state or a country" -msgstr "A localização possui um estado ou um país" +msgid "The location has carbon intensity data" +msgstr "A localização possui dados the intensidade de carbono" #: templates/history/status-item.html.twig msgid "Real time carbon intensity enabled" @@ -294,6 +169,10 @@ msgstr "O modelo possui consumo de energia" msgid "The asset has a type" msgstr "O ativo possui um tipo" +#: templates/history/status-item.html.twig +msgid "Type is not ignored" +msgstr "Tipo não é ignorado" + #: templates/history/status-item.html.twig msgid "The type has a power consumption" msgstr "O tipo possui um consumo de energia" @@ -314,13 +193,26 @@ msgstr "O ativo possui informações de entrada no inventário" msgid "Legend" msgstr "Legenda" -#: templates/config.html.twig -msgid "Electricity maps" -msgstr "Electricity maps" +#: templates/monitortype.html.twig +msgid "" +"This power value is used as default when the power of a monitor model is " +"unknown" +msgstr "" +"Este valor de potência é utilizado como padrão quando a potência de um " +"modelo de monitor é desconhecida" -#: templates/config.html.twig -msgid "Key for electricitymap.org API" -msgstr "Chave para a API electricmap.org" +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Power" +msgid_plural "Powers" +msgstr[0] "Potência" +msgstr[1] "Potências" +msgstr[2] "Potências" + +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Do not evaluate" +msgstr "Não avaliar" #: templates/config.html.twig msgid "Impact engine" @@ -331,425 +223,821 @@ msgid "Usage carbon emissions are always calculated internally" msgstr "" "As emissões de carbono durante o uso são sempre calculadas internamente" -#: templates/config.html.twig src/Impact/Embodied/Engine.php:46 -#: src/Impact/Usage/Engine.php:46 -msgid "Boavizta" -msgstr "Boavizta" - -#: templates/config.html.twig -msgid "Base URL to the Boaviztapi instance" -msgstr "URL base para a instância Boaviztapi" - -#: templates/config.html.twig +#: templates/computertype.html.twig msgid "" -"Geocoding converts a location into a ISO 3166 (3 letters) code. Boavizta " -"needs this to determine usage impacts of assets. This feature sends the " -"address stored in a location to nominatim.org service. If this is an issue, " -"you can disable it below, and fill the coutry code manually." +"This power value is used as default when the power of a computer model is " +"unknown" msgstr "" -"A geocodificação converte uma localização em um código ISO 3166 (3 letras). " -"A Boavizta precisa disso para determinar os impactos do uso dos ativos. " -"Este recurso envia o endereço armazenado em uma localização para o serviço " -"nominatim.org. Se isso for um problema, você pode desativá-lo abaixo e " -"preencher o código do país manualmente." +"Este valor de potência é utilizado como padrão quando a potência de um " +"modelo de computador é desconhecida" -#: templates/config.html.twig -msgid "Enable geocoding" -msgstr "Ativar geocodificação" +#: templates/computertype.html.twig src/SearchOptions.php:303 +#: src/ComputerType.php:78 +msgid "Category" +msgstr "Categoria" -#: setup.php:263 -msgid "Environmental Impact" -msgstr "Impacto ambiental" +#: templates/dashboard/information-block.html.twig +msgid "Information" +msgstr "Informação" -#: front/embodiedimpact.form.php:65 front/embodiedimpact.form.php:88 -#: front/usageimpact.form.php:65 front/usageimpact.form.php:102 -msgid "Missing arguments in request." -msgstr "Argumentos faltantes na requisição." +#: templates/dashboard/information-block.html.twig +msgid "" +"Our data is sourced from reliable sources and is meticulously calculated " +"using industry-standard methodologies. We utilize accurate measurement tools" +" and algorithms to ensure the precision and reliability of our environmental" +" metrics." +msgstr "" +"Nossos dados provêm de fontes confiáveis e são meticulosamente calculados " +"utilizando metodologias padrão da indústria. Utilizamos ferramentas de " +"medição e algoritmos precisos para garantir o rigor e a confiabilidade de " +"nossas métricas ambientais." -#: front/embodiedimpact.form.php:70 front/embodiedimpact.form.php:79 -#: front/usageimpact.form.php:89 -msgid "Reset denied." -msgstr "Redefinição negada." +#: templates/dashboard/information-block.html.twig +msgid "" +"As we move towards a greener future, businesses will soon be required to " +"report energy usage and carbon emissions. By 2025, many areas will enforce " +"these regulations. Adopting these practices now ensures compliance and helps" +" combat climate change." +msgstr "" +"À medida que avançamos em direção a um futuro mais sustentável, as empresas " +"em breve deverão reportar seu consumo de energia e emissões de carbono. Até " +"2025, muitas regiões passarão a exigir o cumprimento dessas regulamentações." +" Adotar essas práticas agora garante a conformidade e ajuda a combater as " +"mudanças climáticas." -#: front/embodiedimpact.form.php:84 front/usageimpact.form.php:94 -msgid "Reset failed." -msgstr "Redefinição falhou." +#: templates/dashboard/information-block.html.twig +msgid "Did you know ?" +msgstr "Você sabia ?" -#: front/embodiedimpact.form.php:94 front/usageimpact.form.php:133 -msgid "Unable to find calculation engine for this asset." -msgstr "Não foi possível encontrar um mecanismo de cálculo para este ativo." +#: templates/dashboard/information-block.html.twig +msgid "" +"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " +"about 20 meters." +msgstr "" +"1 grama de CO₂ equivale ao CO₂ emitido ao dirigir um carro por cerca de 20 " +"metros." -#: front/embodiedimpact.form.php:103 -msgid "Update failed." -msgstr "Atualização falhou." +#: templates/dashboard/unhandled-monitors-card.html.twig +#: templates/dashboard/unhandled-computers-card.html.twig +#: templates/dashboard/unhandled-network-equipments-card.html.twig +msgid "Warning" +msgstr "Aviso" -#: front/usageimpact.form.php:79 front/usageimpact.form.php:108 -#: front/usageimpact.form.php:116 -msgid "Bad arguments." -msgstr "Argumentos errados." +#: templates/dashboard/unhandled-monitors-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s monitors." +msgstr "Isso representa %s por cento do seu parque que contém %s monitores." -#: front/usageimpact.form.php:98 -msgid "Delete of usage impact failed." -msgstr "A exclusão do impacto de uso falhou." +#: templates/dashboard/usage-carbon-emission-last-year.html.twig +msgid "Yearly Usage Carbon Emission" +msgstr "Emissão de carbono decorrente do uso anual" -#: front/usageimpact.form.php:124 -msgid "Missing data prevents historization of this asset." +#: templates/dashboard/monthly-carbon-emission.html.twig +msgid "Monthly usage carbon emission" +msgstr "Emissão de carbono decorrente do uso mensal" + +#: templates/dashboard/monthly-carbon-emission.html.twig +#, php-format +msgid "Compared to %s" +msgstr "Comparado a %s" + +#: templates/dashboard/unhandled-computers-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s computers." msgstr "" -"A falta de dados impede a criação de um registro histórico deste ativo." +"Isso representa %s por cento do seu parque que contém %s computadores." -#: front/usageimpact.form.php:127 -msgid "Update of global warming potential failed." -msgstr "A atualização do potencial de aquecimento global falhou." +#: templates/dashboard/unhandled-network-equipments-card.html.twig +#, php-format +msgid "" +"It represents %s percent of your parc that contains %s network equipments." +msgstr "" +"Isso representa %s por cento do seu parque que contém %s equipamentos de " +"rede." -#: front/usageimpact.form.php:138 -msgid "Update of usage impact failed." -msgstr "A atualização do impacto de uso falhou." +#: templates/dashboard/information-video-card.html.twig +msgid "Want to know more ?" +msgstr "Quer saber mais?" -#: hook.php:293 -msgid "Associate to an usage profile" -msgstr "Associar a um perfil de utilização" +#: templates/dashboard/information-video-card.html.twig +msgid "Here is a video about the impact of numeric on the enviromnent." +msgstr "Aqui está um vídeo sobre o impacto do digital no meio ambiente." -#: hook.php:297 hook.php:302 hook.php:306 -msgid "Update type power consumption" -msgstr "Atualizar tipo de consumo de energia" +#: templates/abstractmodel.html.twig +msgid "" +"The impacts below shall include the manufacturing, disposal and recycling " +"processes only." +msgstr "" +"Os impactos abaixo incluem apenas os processos de fabricação, descarte e " +"reciclagem." -#: hook.php:298 -msgid "Update category" -msgstr "Atualizar categoria" +#: templates/abstractmodel.html.twig +msgid "Take care of the expected units before setting an impact." +msgstr "" +"Leve em consideração as unidades previstas antes de definir o impacto." -#: hook.php:310 -msgid "Update zone for Boavizta engine" -msgstr "Atualizar zona para o motor Boavizta" +#: templates/abstractmodel.html.twig +msgid "Data quality" +msgstr "Qualidade de dados" -#: install/install/create_automatic_actions.php:45 -msgid "Find the Alpha3 country code (ISO3166) of locations" -msgstr "Encontrar o código de país Alpha3 (ISO3166) de localizações" +#: templates/abstractmodel.html.twig +msgid "Data source" +msgstr "Origem de dados" -#: install/install/create_automatic_actions.php:57 -msgid "Compute carbon emissions of computers" -msgstr "Calcular as emissões de carbono dos computadores" +#: templates/networkequipmenttype.html.twig +msgid "" +"This power value is used as default when the power of a network equipment " +"model is unknown" +msgstr "" +"Este valor de potência é utilizado como padrão quando a potência de um " +"modelo de equipamento de rede é desconhecida" -#: install/install/create_automatic_actions.php:69 -msgid "Collect carbon intensities from RTE" -msgstr "Coletar intensidades de carbono do RTE" +#: src/Command/CollectCarbonIntensityCommand.php:70 +msgid "Read carbon dioxyde intensity from external sources" +msgstr "Ler a intensidade de dióxido de carbono de fontes externas" -#: install/install/create_automatic_actions.php:81 -msgid "Collect carbon intensities from ElectricityMap" -msgstr "Coletar intensidades de carbono do ElectricityMap" +#: src/Command/CollectCarbonIntensityCommand.php:84 +msgid "Source:" +msgstr "Origem:" -#: install/install/create_automatic_actions.php:93 -msgid "Compute embodied impact of assets" -msgstr "Computar impacto incorporado dos ativos" +#: src/Command/CollectCarbonIntensityCommand.php:95 +msgid "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" +msgstr "" +"A fonte selecionada não lista as zonas suportadas. Tentando identificar uma " +"zona a partir de um endereço." -#: install/install/create_uasge_profiles.php:41 -msgid "Always on" -msgstr "Sempre ligado" +#: src/Command/CollectCarbonIntensityCommand.php:99 +msgid "Geocoding is not enabled. Cannot resolve an address into a zone" +msgstr "" +"A geocodificação não está ativada. Não foi possível resolver um endereço " +"para uma zona" -#: install/install/create_uasge_profiles.php:52 -msgid "Office hours" -msgstr "Horário de expediente" +#: src/Command/CollectCarbonIntensityCommand.php:104 +msgid "Address:" +msgstr "Endereço:" -#: src/AbstractType.php:64 src/Dashboard/Grid.php:68 -#: src/Dashboard/Grid.php:133 src/Dashboard/Grid.php:234 -msgid "Carbon" -msgstr "Carbon" +#: src/Command/CollectCarbonIntensityCommand.php:107 +msgid "Zone:" +msgstr "Zona:" -#: src/CronTask.php:64 -msgid "Find the Alpha3 country code (ISO3166)" -msgstr "Encontrar o código de país Alpha3 (ISO3166)" +#: src/Command/CollectCarbonIntensityCommand.php:123 +#: src/Command/CreateFakeCarbonIntensityCommand.php:67 +msgid "Creating data source name" +msgstr "Criando nome da fonte de dados" -#: src/CronTask.php:65 -msgid "Maximum number of locations to solve" -msgstr "Número máximo de localizações para solucionar" +#: src/Command/CollectCarbonIntensityCommand.php:130 +msgid "This source does not exist" +msgstr "Esta origem não existe" + +#: src/Command/CollectCarbonIntensityCommand.php:149 +msgid "The zone is not handled by the data source" +msgstr "A zona não é gerenciada pela fonte de dados" + +#: src/Command/CollectCarbonIntensityCommand.php:155 +msgid "Reading data..." +msgstr "Lendo dados..." + +#: src/Command/CreateFakeCarbonIntensityCommand.php:78 +msgid "Creating data zone name" +msgstr "Criando nome de zona de dados" + +#: src/Command/CreateFakeCarbonIntensityCommand.php:89 +msgid "Creating fake data..." +msgstr "Criando dados fictícios…" + +#: src/Command/ExportDashboardCommand.php:68 +msgid "Updating the report dashboard description" +msgstr "Atualizando a descrição do painel de relatórios" + +#: src/Command/ExportDashboardCommand.php:73 +msgid "Dashboard not found" +msgstr "Painel não encontrado" + +#: src/Command/ExportDashboardCommand.php:99 +#, php-format +msgid "Dashboard description saved to %s" +msgstr "Descrição do painel salva em %s" + +#: src/Command/CreateTestInventoryCommand.php:145 +msgid "Creating test inventory" +msgstr "Criando um teste de inventário" + +#: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 +#: src/ComputerType.php:70 src/MonitorType.php:50 +msgid "Power consumption" +msgstr "Consumo de energia" + +#: src/UsageInfo.php:62 +msgid "Usage informations" +msgstr "Informações de uso" + +#: src/UsageInfo.php:94 src/AbstractModel.php:54 src/Location.php:73 +#: src/AbstractType.php:55 src/Profile.php:45 +msgid "Environmental impact" +msgstr "Impacto ambiental" + +#: src/UsageInfo.php:241 +#, php-format +msgid "%s More information %s" +msgstr "%s Mais informações %s" + +#: src/DataSource/Lca/Boaviztapi/Config.php:100 +msgid "Invalid Boavizta API URL" +msgstr "URL de API do Boavizta inválida" + +#: src/DataSource/Lca/Boaviztapi/Config.php:108 +msgid "Connection to Boavizta API established" +msgstr "Conexão com a API do Boavizta estabelecida" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:56 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:53 +msgid "Resource diagnosis" +msgstr "Diagnóstico de recursos" -#: src/CronTask.php:70 +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:71 +msgid "Collect carbon intensities from RTE" +msgstr "Coletar intensidades de carbono do RTE" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:89 msgid "Download carbon emissions from RTE" msgstr "Baixe as emissões de carbono da RTE" -#: src/CronTask.php:71 src/CronTask.php:77 +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:90 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:87 +#: src/CronTask.php:107 msgid "Maximum number of entries to download" msgstr "Número máximo de entradas para download" -#: src/CronTask.php:76 -msgid "Download carbon emissions from ElectricityMap" -msgstr "Baixar as emissões de carbono do ElectricityMap" +#: src/DataSource/CarbonIntensity/AbstractCronTask.php:103 +#: src/Source_Zone.php:537 +msgid "End" +msgstr "Fim" -#: src/CronTask.php:82 -msgid "Compute usage environnemental impact for all assets" -msgstr "Computar o impacto ambiental de uso para todos ativos" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:68 +msgid "Collect carbon intensities from Electricity Maps" +msgstr "Coletar dados de intensidade de carbono a partir de Electricity Maps" -#: src/CronTask.php:83 src/CronTask.php:88 -msgid "Maximum number of entries to calculate" -msgstr "Número máximo de entradas a calcular" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:86 +msgid "Download carbon emissions from Electricity Maps" +msgstr "Fazer download de emissões a partir de Electricity Maps" + +#: src/AbstractImpact.php:125 src/CarbonEmission.php:151 +msgid "Date of evaluation" +msgstr "Data de avaliação" -#: src/CronTask.php:87 -msgid "Compute embodied environnemental impact for all assets" -msgstr "Calcular o impacto ambiental incorporado para todos os ativos" +#: src/AbstractImpact.php:132 src/CarbonEmission.php:158 +msgid "Engine" +msgstr "Engine" -#: src/CronTask.php:211 -msgid "No zone to download" -msgstr "Sem zona para baixar" +#: src/AbstractImpact.php:139 src/CarbonEmission.php:165 +msgid "Engine version" +msgstr "Versão do Engine" -#: src/NetworkEquipmentType.php:50 src/MonitorType.php:50 -#: src/SearchOptions.php:142 src/ComputerType.php:70 -msgid "Power consumption" -msgstr "Consumo de energia" +#: src/DataTracking/AbstractTracked.php:77 +msgid "Impact not evaluated" +msgstr "Impacto não avaliado" + +#: src/DataTracking/AbstractTracked.php:78 +msgid "Unspecified quality" +msgstr "Qualidade não especificada" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:83 -#: src/Impact/Usage/AbstractUsageImpact.php:83 +#: src/DataTracking/AbstractTracked.php:79 +msgid "Manual data" +msgstr "Dados manuais" + +#: src/DataTracking/AbstractTracked.php:80 +msgid "Estimated data" +msgstr "Dados estimados" + +#: src/DataTracking/AbstractTracked.php:81 +msgid "Downsampled data" +msgstr "Dados sub amostrados" + +#: src/DataTracking/AbstractTracked.php:82 +msgid "Measured data" +msgstr "Dados medidos" + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 +#: src/Impact/Usage/AbstractUsageImpact.php:91 msgid "grams of carbon dioxyde equivalent" msgstr "gramas de dióxido de carbono equivalente" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:85 -#: src/Impact/Usage/AbstractUsageImpact.php:85 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 +#: src/Impact/Usage/AbstractUsageImpact.php:93 msgid "grams of antimony equivalent" msgstr "gramas de antimônio equivalente" -#: src/Impact/Embodied/AbstractEmbodiedImpact.php:87 -#: src/Impact/Usage/AbstractUsageImpact.php:87 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 +#: src/Impact/Usage/AbstractUsageImpact.php:95 msgid "joules" msgstr "joules" -#: src/Impact/History/AbstractAsset.php:364 +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 +msgid "Connection to Boavizta failed." +msgstr "Conexão com Boavizat falhou." + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 +msgid "Embodied impact evaluation falied." +msgstr "A avaliação do impacto incorporado falhou." + +#: src/Impact/History/AbstractAsset.php:370 msgid "Error while calculating impact" msgstr "Erro ao calcular impacto" -#: src/Impact/History/AbstractAsset.php:372 +#: src/Impact/History/AbstractAsset.php:378 msgid "Nothing to calculate" msgstr "Nada a calcular" -#: src/Impact/History/AbstractAsset.php:378 +#: src/Impact/History/AbstractAsset.php:384 #, php-format msgid "%d entries calculated" msgstr "%d entradas calculadas" -#: src/CarbonIntensitySource.php:45 -msgid "Carbon intensity source" -msgid_plural "Carbon intensity sources" -msgstr[0] "Origem de intensidade de carbono" -msgstr[1] "Origem de intensidade de carbono" -msgstr[2] "Origens de intensidade de carbono" +#: src/Impact/Type.php:159 +msgid "Embodied Global warming potential" +msgstr "Potencial de aquecimento global incorporado" -#: src/Report.php:50 -msgid "Carbon report" -msgid_plural "Carbon reports" -msgstr[0] "Relatório do Carbon" -msgstr[1] "Relatório do Carbon" -msgstr[2] "Relatórios do Carbon" +#: src/Impact/Type.php:160 +msgid "Embodied Abiotic depletion potential" +msgstr "Potencial de depleção abiótica incorporado" -#: src/Report.php:102 -#, php-format +#: src/Impact/Type.php:161 +msgid "Embodied Primary energy consumed" +msgstr "Energia primária incorporada consumida" + +#: src/Impact/Type.php:162 +msgid "Embodied Climate change - Contribution of biogenic emissions" +msgstr "" +"Mudanças climáticas incorporadas - Contribuição das emissões biogênicas" + +#: src/Impact/Type.php:163 +msgid "Embodied Climate change - Contribution of fossil fuel emissions" +msgstr "" +"Mudanças climáticas incorporadas - Contribuição das emissões de combustíveis" +" fósseis" + +#: src/Impact/Type.php:164 msgid "" -"Demo mode enabled. The data below are not representative of the assets in " -"the database. %sDisable demo mode%s" +"Embodied Climate change - Contribution of emissions from land use change" msgstr "" -"Modo de demonstração ativado. Os dados abaixo não representam os ativos no " -"banco de dados. %sDesativar modo de demonstração%s" +"Mudanças climáticas incorporadas - Contribuição das emissões provenientes da" +" mudança no uso da terra" -#: src/CarbonEmission.php:48 -msgid "Carbon Emission" -msgid_plural "Carbon Emissions" -msgstr[0] "Emissão de carbono" -msgstr[1] "Emissões de carbono" -msgstr[2] "Emissões de carbono" +#: src/Impact/Type.php:165 +msgid "Embodied Emissions of radionizing substances" +msgstr "Emissões incorporadas de substâncias radioativas" -#: src/CarbonEmission.php:119 -msgid "Energy" -msgstr "Energia" +#: src/Impact/Type.php:166 +msgid "Embodied Land use" +msgstr "Uso da terra incorporado" -#: src/CarbonEmission.php:127 -msgid "Emission" -msgstr "Emissão" +#: src/Impact/Type.php:167 +msgid "Embodied Depletion of the ozone layer" +msgstr "Depleção incorporada da camada de ozônio" -#: src/CarbonEmission.php:135 -msgid "Energy quality" -msgstr "Qualidade de energia" +#: src/Impact/Type.php:168 +msgid "Embodied Fine particle emissions" +msgstr "Emissões de partículas finas incorporadas" -#: src/CarbonEmission.php:143 -msgid "Emission quality" -msgstr "Qulidade de emissão" +#: src/Impact/Type.php:169 +msgid "Embodied Photochemical ozone formation" +msgstr "Formação de ozônio fotoquímico incorporado" -#: src/CarbonEmission.php:150 src/UsageImpact.php:149 -#: src/EmbodiedImpact.php:120 -msgid "Date of evaluation" -msgstr "Data de avaliação" +#: src/Impact/Type.php:170 +msgid "Embodied Use of water resources" +msgstr "Uso incorporado dos recursos hídricos" -#: src/CarbonEmission.php:157 src/UsageImpact.php:156 -#: src/EmbodiedImpact.php:127 -msgid "Engine" -msgstr "Engine" +#: src/Impact/Type.php:171 +msgid "Embodied Material input per unit of service" +msgstr "Entrada de material incorporado por unidade de serviço" -#: src/CarbonEmission.php:164 src/UsageImpact.php:163 -#: src/EmbodiedImpact.php:134 -msgid "Engine version" -msgstr "Versão do Engine" +#: src/Impact/Type.php:172 +msgid "Embodied Use of mineral and metal resources" +msgstr "Utilização incorporada de recursos minerais e metálicos" -#: src/Command/CreateFakeCarbonIntensityCommand.php:67 -#: src/Command/CollectCarbonIntensityCommand.php:68 -msgid "Creating data source name" -msgstr "Criando nome da fonte de dados" +#: src/Impact/Type.php:173 +msgid "Embodied Use of fossil resources (including nuclear)" +msgstr "Utilização incorporada de recursos fósseis (incluindo nucleares)" -#: src/Command/CreateFakeCarbonIntensityCommand.php:78 -msgid "Creating data zone name" -msgstr "Criando nome de zona de dados" +#: src/Impact/Type.php:174 +msgid "Embodied Acidification" +msgstr "Acidificação incorporada" -#: src/Command/CreateFakeCarbonIntensityCommand.php:89 -msgid "Creating fake data..." -msgstr "Criando dados fictícios…" +#: src/Impact/Type.php:175 +msgid "Embodied Freshwater ecotoxicity" +msgstr "Ecotoxicidade da água doce incorporada" -#: src/Command/ExportDashboardCommand.php:69 -msgid "Updating the report dashboard description" -msgstr "Atualizando a descrição do painel de relatórios" +#: src/Impact/Type.php:178 +msgid "Embodied Eutrophication of freshwater" +msgstr "Eutrofização incorporada de água doce" -#: src/Command/ExportDashboardCommand.php:74 -msgid "Dashboard not found" -msgstr "Painel não encontrado" +#: src/Impact/Type.php:179 +msgid "Embodied Eutrophication of marine waters" +msgstr "Embodied Eutrophication of marine waters" -#: src/Command/ExportDashboardCommand.php:100 -#, php-format -msgid "Dashboard description saved to %s" -msgstr "Descrição do painel salva em %s" +#: src/Impact/Type.php:180 +msgid "Embodied Terrestrial eutrophication" +msgstr "Eutrofização terrestre incorporada" -#: src/Command/CollectCarbonIntensityCommand.php:85 -msgid "Zone not found" -msgstr "Zona não encontrada" +#: src/Impact/Type.php:195 +msgid "Usage Global warming potential" +msgstr "Potencial de aquecimento global devido ao uso" -#: src/Command/CollectCarbonIntensityCommand.php:91 -msgid "Reading eco2mix data..." -msgstr "Lendo dados do eco2mix..." +#: src/Impact/Type.php:196 +msgid "Usage Abiotic depletion potential" +msgstr "Potencial de depleção abiótica devido ao uso" -#: src/Command/CreateTestInventoryCommand.php:146 -msgid "Creating test inventory" -msgstr "Criando um teste de inventário" +#: src/Impact/Type.php:197 +msgid "Usage Primary energy consumed" +msgstr "Energia primária consumida" -#: src/Config.php:130 -msgid "Invalid Boavizta API URL" -msgstr "URL de API do Boavizta inválida" +#: src/Impact/Type.php:198 +msgid "Usage Climate change - Contribution of biogenic emissions" +msgstr "" +"Mudanças climáticas - Contribuição das emissões biogênicas devido ao uso" -#: src/Config.php:138 -msgid "Connection to Boavizta API established" -msgstr "Conexão com a API do Boavizta estabelecida" +#: src/Impact/Type.php:199 +msgid "Usage Climate change - Contribution of fossil fuel emissions" +msgstr "" +"Mudanças climáticas - Contribuição das emissões de combustíveis fósseis " +"devido ao uso" -#: src/Zone.php:53 -msgid "Carbon intensity zone" -msgid_plural "Carbon intensity zones" -msgstr[0] "Zona de intensidade de carbono" -msgstr[1] "Zonas de intensidade de carbono" -msgstr[2] "Zonas de intensidade de carbono" +#: src/Impact/Type.php:200 +msgid "Usage Climate change - Contribution of emissions from land use change" +msgstr "" +"Mudanças climáticas - Contribuição das emissões provenientes da mudança no " +"uso da terra devido ao uso" -#: src/Zone.php:126 src/Zone.php:141 -msgid "Data source for historical calculation" -msgstr "Fonte de dados para cálculo histórico" +#: src/Impact/Type.php:201 +msgid "Usage Emissions of radionizing substances" +msgstr "Emissões de substâncias radioativas devido ao uso" -#: src/Zone.php:157 src/CarbonIntensitySource_Zone.php:86 -#: src/CarbonIntensitySource_Zone.php:169 -#: src/CarbonIntensitySource_Zone.php:264 -msgid "Download enabled" -msgstr "Habilitado download" +#: src/Impact/Type.php:202 +msgid "Usage Land use" +msgstr "Ocupação do solo devido ao uso" -#: src/UsageInfo.php:59 -msgid "Usage informations" -msgstr "Informações de uso" +#: src/Impact/Type.php:203 +msgid "Usage Depletion of the ozone layer" +msgstr "Depleção da camada de ozônio devido ao uso" -#: src/UsageInfo.php:214 src/Dashboard/Widget.php:848 -#, php-format -msgid "" -"Evaluates the carbon emission in CO₂ equivalent. %s More information %s" +#: src/Impact/Type.php:204 +msgid "Usage Fine particle emissions" +msgstr "Emissão de partículas finas devido ao uso" + +#: src/Impact/Type.php:205 +msgid "Usage Photochemical ozone formation" +msgstr "Formação fotoquímica de ozônio devido ao uso" + +#: src/Impact/Type.php:206 +msgid "Usage Use of water resources" +msgstr "Consumo de recursos hídricos devido ao uso" + +#: src/Impact/Type.php:207 +msgid "Usage Material input per unit of service" +msgstr "Utilização de materiais por unidade de serviço" + +#: src/Impact/Type.php:208 +msgid "Usage Use of mineral and metal resources" +msgstr "Utilização de recursos minerais e metálicos" + +#: src/Impact/Type.php:209 +msgid "Usage Use of fossil resources (including nuclear)" +msgstr "Utilização de recursos fósseis (incluindo nucleares)" + +#: src/Impact/Type.php:210 +msgid "Usage Acidification" +msgstr "Acidificação devido ao uso" + +#: src/Impact/Type.php:211 +msgid "Usage Freshwater ecotoxicity" +msgstr "Ecotoxicidade em água doce devido ao uso" + +#: src/Impact/Type.php:214 src/Impact/Type.php:342 +msgid "Usage Eutrophication of freshwater" +msgstr "Eutrofização de água doce devido ao uso" + +#: src/Impact/Type.php:215 src/Impact/Type.php:343 +msgid "Usage Eutrophication of marine waters" +msgstr "Eutrofização de água-marinha devido ao uso" + +#: src/Impact/Type.php:216 src/Impact/Type.php:344 +msgid "Usage Terrestrial eutrophication" +msgstr "Eutrofização terrestre devido ao uso" + +#: src/Impact/Type.php:231 +msgid "Total Global warming potential" +msgstr "Potencial total de aquecimento global" + +#: src/Impact/Type.php:232 +msgid "Total Abiotic depletion potential" +msgstr "Aquecimento global total Potencial total de depleção abiótica" + +#: src/Impact/Type.php:233 +msgid "Total Primary energy consumed" +msgstr "Consumo total de energia primária" + +#: src/Impact/Type.php:234 +msgid "Total Climate change - Contribution of biogenic emissions" +msgstr "Mudanças climáticas - Contribuição das emissões biogênicas total" + +#: src/Impact/Type.php:235 +msgid "Total Climate change - Contribution of fossil fuel emissions" msgstr "" -"Avalia a emissão de carbono em equivalente de CO₂. %s Mais informações %s" +"Mudanças climáticas - Contribuição das emissões de combustíveis fósseis " +"total" -#: src/UsageInfo.php:222 src/Dashboard/Widget.php:884 -#: src/Dashboard/Widget.php:921 -#, php-format -msgid "" -"Evaluates the consumption of non renewable resources in Antimony " -"equivalent. %s More information %s" +#: src/Impact/Type.php:236 +msgid "Total Climate change - Contribution of emissions from land use change" msgstr "" -"Evaluates the consumption of non renewable resources in Antimony " -"equivalent. %s More information %s" +"Mudanças climáticas - Contribuição das emissões provenientes da mudança no " +"uso da terra total" + +#: src/Impact/Type.php:237 +msgid "Total Emissions of radionizing substances" +msgstr "Emissões de substâncias radioativas totais" + +#: src/Impact/Type.php:238 +msgid "Total Land use" +msgstr "Uso da terra total" + +#: src/Impact/Type.php:239 +msgid "Total Depletion of the ozone layer" +msgstr "Depleção da camada de ozônio devido total" + +#: src/Impact/Type.php:240 +msgid "Total Fine particle emissions" +msgstr "Emissão de partículas finas total" + +#: src/Impact/Type.php:241 +msgid "Total Photochemical ozone formation" +msgstr "Formação fotoquímica de ozônio total" + +#: src/Impact/Type.php:242 +msgid "Total Use of water resources" +msgstr "Consumo de recursos hídricos total" + +#: src/Impact/Type.php:243 +msgid "Total Material input per unit of service" +msgstr "Utilização de materiais por unidade de serviço total" + +#: src/Impact/Type.php:244 +msgid "Total Use of mineral and metal resources" +msgstr "Utilização de recursos minerais e metálicos total" + +#: src/Impact/Type.php:245 +msgid "Total Use of fossil resources (including nuclear)" +msgstr "Utilização de recursos fósseis (incluindo nucleares) total" + +#: src/Impact/Type.php:246 +msgid "Total Acidification" +msgstr "Acidificação total" + +#: src/Impact/Type.php:247 +msgid "Total Freshwater ecotoxicity" +msgstr "Ecotoxicidade em água doce total" + +#: src/Impact/Type.php:250 +msgid "Total Eutrophication of freshwater" +msgstr "Eutrofização de água doce total" + +#: src/Impact/Type.php:251 +msgid "Total Eutrophication of marine waters" +msgstr "Eutrofização de água-marinha total" + +#: src/Impact/Type.php:252 +msgid "Total Terrestrial eutrophication" +msgstr "Eutrofização terrestre total" + +#: src/Impact/Type.php:323 +msgid "Carbon emission in CO₂ equivalent" +msgstr "Emissão de carbono em CO₂ equivalente" + +#: src/Impact/Type.php:324 +msgid "Consumption of non renewable resources in Antimony equivalent." +msgstr "Consumo de recursos não renováveis em antimônio equivalente." + +#: src/Impact/Type.php:325 +msgid "Primary energy consumed." +msgstr "Energia primária cosnumida" + +#: src/Impact/Type.php:332 +msgid "Incidence of disease" +msgstr "Incidência da doença" -#: src/UsageInfo.php:234 src/Dashboard/Widget.php:1102 +#: src/Source.php:46 +msgid "Carbon intensity source" +msgid_plural "Carbon intensity sources" +msgstr[0] "Origem de intensidade de carbono" +msgstr[1] "Origem de intensidade de carbono" +msgstr[2] "Origens de intensidade de carbono" + +#: src/SearchOptions.php:184 src/SearchOptions.php:316 +#: src/SearchOptions.php:329 src/SearchOptions.php:342 +msgid "Ignore environmental impact" +msgstr "Ignorar o impacto ambiental" + +#: src/SearchOptions.php:241 src/SearchOptions.php:365 +#: src/SearchOptions.php:442 +msgid "Is historizable" +msgstr "É historizável" + +#: src/ComputerType.php:56 +msgid "Unspecified" +msgstr "Não especificado" + +#: src/ComputerType.php:58 +msgid "Server" +msgstr "Servidor" + +#: src/ComputerType.php:59 +msgid "Laptop" +msgstr "Laptop" + +#: src/ComputerType.php:60 +msgid "Tablet" +msgstr "Tablet" + +#: src/ComputerType.php:61 +msgid "Smartphone" +msgstr "Smartphone" + +#: src/UsageImpact.php:39 +msgid "Usage impact" +msgid_plural "Usage impacts" +msgstr[0] "Impacto de uso" +msgstr[1] "Impacto do uso" +msgstr[2] "Impactos do uso" + +#: src/AbstractModel.php:62 src/Dashboard/Grid.php:58 +#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 +#: src/AbstractType.php:63 +msgid "Carbon" +msgstr "Carbon" + +#: src/AbstractModel.php:197 +msgid "Quality" +msgstr "Qualidade" + +#: src/Report.php:49 +msgid "Carbon report" +msgid_plural "Carbon reports" +msgstr[0] "Relatório do Carbon" +msgstr[1] "Relatório do Carbon" +msgstr[2] "Relatórios do Carbon" + +#: src/Report.php:101 #, php-format -msgid "Evaluates the primary energy consumed. %s More information %s" -msgstr "Avalia a energia primária consumida. %s Mais informações %s" +msgid "" +"Demo mode enabled. The data below are not representative of the assets in " +"the database. %sDisable demo mode%s" +msgstr "" +"Modo de demonstração ativado. Os dados abaixo não representam os ativos no " +"banco de dados. %sDesativar modo de demonstração%s" -#: src/ComputerUsageProfile.php:52 +#: src/ComputerUsageProfile.php:51 msgid "Computer usage profile" msgid_plural "Computer usage profiles" msgstr[0] "Perfil de uso do computador" msgstr[1] "Perfis de uso do computador" msgstr[2] "Perfis de uso do computador" -#: src/ComputerUsageProfile.php:94 +#: src/ComputerUsageProfile.php:117 msgid "Start time is invalid" msgstr "O horário de início é inválido" -#: src/ComputerUsageProfile.php:99 +#: src/ComputerUsageProfile.php:122 msgid "Stop time is invalid" msgstr "O horário de fim é inválido" -#: src/Dashboard/Widget.php:57 src/Dashboard/Grid.php:317 +#: src/Source_Zone.php:72 +msgid "Source name" +msgstr "Nome da fonte" + +#: src/Source_Zone.php:80 +msgid "Zone name" +msgstr "Nome da zona" + +#: src/Source_Zone.php:88 src/Source_Zone.php:171 src/Source_Zone.php:268 +#: src/Zone.php:127 +msgid "Download enabled" +msgstr "Habilitado download" + +#: src/Source_Zone.php:96 +msgid "Code" +msgstr "Código" + +#: src/Source_Zone.php:150 +msgid "Not downloadable" +msgstr "Não é possível fazer o download" + +#: src/Source_Zone.php:150 +msgid "This is a fallback source, there is no real-time data available" +msgstr "Esta é uma fonte alternativa; não há dados em tempo real disponíveis" + +#: src/Source_Zone.php:172 +msgid "Source for historical" +msgstr "Fonte para histórico" + +#: src/Source_Zone.php:411 +msgid "Enable / Disable" +msgstr "Desabilitar / Habilitar" + +#: src/CronTask.php:100 +msgid "Find the Alpha3 country code (ISO3166)" +msgstr "Encontrar o código de país Alpha3 (ISO3166)" + +#: src/CronTask.php:101 +msgid "Maximum number of locations to solve" +msgstr "Número máximo de localizações para solucionar" + +#: src/CronTask.php:106 +msgid "Download carbon emissions from Watttime" +msgstr "Baixe as emissões de carbono do Watttime" + +#: src/CronTask.php:112 +msgid "Compute usage environmental impact for all assets" +msgstr "Calcular o impacto ambiental da utilização de todos os ativos" + +#: src/CronTask.php:113 src/CronTask.php:118 +msgid "Maximum number of entries to calculate" +msgstr "Número máximo de entradas a calcular" + +#: src/CronTask.php:117 +msgid "Compute embodied environmental impact for all assets" +msgstr "Calcular o impacto ambiental incorporado de todos os ativos" + +#: src/CronTask.php:278 +msgid "No zone to download" +msgstr "Sem zona para baixar" + +#: src/Dashboard/Widget.php:55 src/Dashboard/Grid.php:310 msgid "Environmental impact information video" msgstr "Vídeo informativo sobre o impacto ambiental" -#: src/Dashboard/Widget.php:64 +#: src/Dashboard/Widget.php:62 msgid "Methodology information" msgstr "Informações sobre a metodologia" -#: src/Dashboard/Widget.php:73 +#: src/Dashboard/Widget.php:71 msgid "Total Carbon Emission" msgstr "Emissão total de carbono" -#: src/Dashboard/Widget.php:80 +#: src/Dashboard/Widget.php:78 msgid "Monthly Carbon Emission" msgstr "Emissão de carbono mensalmente" -#: src/Dashboard/Widget.php:87 src/Dashboard/Widget.php:599 -#: src/Dashboard/Grid.php:281 +#: src/Dashboard/Widget.php:85 src/Dashboard/Widget.php:604 +#: src/Dashboard/Grid.php:268 msgid "Biggest monthly averaged carbon emission per model" msgstr "Maior média mensal de emissões de carbono por modelo" -#: src/Dashboard/Widget.php:95 +#: src/Dashboard/Widget.php:93 msgid "Carbon Emission Per month" msgstr "Emissão de carbono por mês" -#: src/Dashboard/Widget.php:125 -msgid "Embodied consumed primary energy" -msgstr "Energia primária consumida incorporada" +#: src/Dashboard/Widget.php:100 src/Dashboard/Provider.php:733 +msgid "Usage abiotic depletion potential" +msgstr "Potencial de depleção abiótica" + +#: src/Dashboard/Widget.php:130 +msgid "Impact criteria" +msgstr "Critérios de impacto" -#: src/Dashboard/Widget.php:137 +#: src/Dashboard/Widget.php:142 msgid "Unhandled Computers" msgstr "Computadores não controlados" -#: src/Dashboard/Widget.php:148 +#: src/Dashboard/Widget.php:153 msgid "Unhandled Monitors" msgstr "Monitores não controlados" -#: src/Dashboard/Widget.php:159 +#: src/Dashboard/Widget.php:164 msgid "Unhandled Network equipments" msgstr "Equipamentos de rede não controlados" -#: src/Dashboard/Widget.php:170 +#: src/Dashboard/Widget.php:175 msgid "Radar chart" msgstr "Gráfico de radar" -#: src/Dashboard/Widget.php:496 src/Dashboard/Provider.php:918 +#: src/Dashboard/Widget.php:501 src/Dashboard/Provider.php:1107 msgid "Consumed energy and carbon emission per month" msgstr "Energia consumida e emissão de carbono por mês" -#: src/Dashboard/Widget.php:541 src/Dashboard/Widget.php:556 -#: src/Dashboard/DemoProvider.php:125 src/Dashboard/DemoProvider.php:226 -#: src/Dashboard/Provider.php:1023 +#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:561 +#: src/Dashboard/Provider.php:1212 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 msgid "Carbon emission" msgstr "Emissão de carbono" -#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:559 -#: src/Dashboard/DemoProvider.php:143 src/Dashboard/DemoProvider.php:239 -#: src/Dashboard/Provider.php:1039 +#: src/Dashboard/Widget.php:551 src/Dashboard/Widget.php:564 +#: src/Dashboard/Provider.php:1228 src/Dashboard/DemoProvider.php:106 +#: src/Dashboard/DemoProvider.php:202 msgid "Consumed energy" msgstr "Energia consumida" -#: src/Dashboard/Widget.php:741 +#: src/Dashboard/Widget.php:746 #, php-format msgid "" "Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " @@ -758,7 +1046,7 @@ msgstr "" "Avalia a emissão de carbono em equivalente de CO₂ durante os últimos 2 " "meses. %s Mais informações %s" -#: src/Dashboard/Widget.php:807 +#: src/Dashboard/Widget.php:812 #, php-format msgid "" "Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " @@ -767,373 +1055,403 @@ msgstr "" "Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " "elapsed months. %s More information %s" -#: src/Dashboard/Widget.php:1092 -msgid "Total embodied primary energy" -msgstr "Energia primária incorporada total" +#: src/Dashboard/Widget.php:854 +msgid "More information" +msgstr "Mais informações" + +#: src/Dashboard/Widget.php:893 +#, php-format +msgid "" +"Evaluates the consumption of non renewable resources in Antimony equivalent." +" %s More information %s" +msgstr "" +"Evaluates the consumption of non renewable resources in Antimony equivalent." +" %s More information %s" -#: src/Dashboard/Widget.php:1161 +#: src/Dashboard/Widget.php:1097 msgid "Handled percentage" msgstr "Porcentagem tratada" -#: src/Dashboard/DemoProvider.php:49 src/Dashboard/DemoProvider.php:125 -#: src/Dashboard/DemoProvider.php:226 src/Dashboard/DemoProvider.php:415 -#: src/Dashboard/Provider.php:169 src/Dashboard/Provider.php:560 -#: src/Dashboard/Provider.php:730 src/Dashboard/Provider.php:1023 -#: src/Dashboard/Provider.php:1025 +#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 +#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 +#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 msgid "CO₂eq" msgstr "CO₂eq" -#: src/Dashboard/DemoProvider.php:83 src/Dashboard/DemoProvider.php:101 -#: src/Dashboard/Provider.php:792 src/Dashboard/Provider.php:826 -msgid "Sbeq" -msgstr "Sbeq" - -#: src/Dashboard/DemoProvider.php:113 -msgid "Usage carbon emission per month" -msgstr "Emissão de carbono por utilização por mês" - -#: src/Dashboard/DemoProvider.php:279 src/Dashboard/Provider.php:430 -#, php-format -msgid "plugin carbon - handled %s" -msgstr "plugin carbon - tratados %s" - -#: src/Dashboard/DemoProvider.php:280 src/Dashboard/Provider.php:431 -#, php-format -msgid "plugin carbon - unhandled %s" -msgstr "plugin carbon - não tratados %s" - -#: src/Dashboard/DemoProvider.php:311 -msgid "plugin carbon - handled assets ratio" -msgstr "plugin carbono - proporção de ativos gerenciados" - -#: src/Dashboard/DemoProvider.php:334 src/Dashboard/Provider.php:398 -msgid "Handled" -msgstr "Gerenciados" - -#: src/Dashboard/DemoProvider.php:339 src/Dashboard/Provider.php:403 -msgid "Unhandled" -msgstr "Não gerenciados" - -#: src/Dashboard/DemoProvider.php:362 src/Dashboard/DemoProvider.php:411 -#: src/Dashboard/Provider.php:548 -msgid "plugin carbon - Usage carbon emission" -msgstr "plugin carbon - Emissão de uso de carbono" - -#: src/Dashboard/Dashboard.php:69 -msgid "Carbon dioxyde intensity" -msgstr "Intensidade de dióxido de carbono" - -#: src/Dashboard/Grid.php:73 src/Dashboard/Provider.php:375 -msgid "Handled assets ratio" -msgstr "Proporção de ativos gerenciados" - -#: src/Dashboard/Grid.php:82 -msgid "Handled assets count" -msgstr "Contagem de ativos gerenciados" - -#: src/Dashboard/Grid.php:145 -#, php-format -msgid "Handled %s" -msgstr "Gerenciados %s" - -#: src/Dashboard/Grid.php:156 -#, php-format -msgid "Unhandled %s" -msgstr "Não gerenciados %s" - -#: src/Dashboard/Grid.php:172 -msgid "Usage power consumption" -msgstr "Consumo de energia devido ao uso" - -#: src/Dashboard/Grid.php:178 -msgid "Usage carbon emission" -msgstr "Emissão de carbono devido ao uso" - -#: src/Dashboard/Grid.php:192 src/Dashboard/Grid.php:295 -#: src/Dashboard/Provider.php:893 -msgid "Embodied global warming potential" -msgstr "Potencial de aquecimento global incorporado" - -#: src/Dashboard/Grid.php:198 src/Dashboard/Grid.php:307 -msgid "Embodied primary energy consumed" -msgstr "Energia primária incorporada consumida" - -#: src/Dashboard/Grid.php:212 src/UsageImpact.php:105 -msgid "Global warming potential" -msgstr "Potencial de aquecimento global" - -#: src/Dashboard/Grid.php:218 src/UsageImpact.php:119 -msgid "Abiotic depletion potential" -msgstr "Potencial de depleção abiótica" - -#: src/Dashboard/Grid.php:245 -#, php-format -msgid "Unhandled %s ratio" -msgstr "Proporção %s não tratada" - -#: src/Dashboard/Grid.php:257 -msgid "Usage carbon emission year to date" -msgstr "Emissões de carbono do uso no acumulado do ano" - -#: src/Dashboard/Grid.php:263 -msgid "Monthly carbon emission" -msgstr "Emissão mensal de carbono" - -#: src/Dashboard/Grid.php:272 -msgid "Usage global warming potential chart" -msgstr "Gráfico de potencial de aquecimento global de uso" - -#: src/Dashboard/Grid.php:322 -msgid "Environmental impact methodology_information" -msgstr "Informações sobre a metodologia de impacto ambiental" - -#: src/Dashboard/Provider.php:171 src/Dashboard/Provider.php:1010 -#: src/Toolbox.php:201 +#: src/Dashboard/Provider.php:195 src/Dashboard/Provider.php:318 +#: src/Dashboard/Provider.php:1199 src/Toolbox.php:243 msgid "g" msgstr "g" -#: src/Dashboard/Provider.php:172 src/Dashboard/Provider.php:1011 -#: src/Toolbox.php:202 +#: src/Dashboard/Provider.php:196 src/Dashboard/Provider.php:319 +#: src/Dashboard/Provider.php:1200 src/Toolbox.php:244 msgid "Kg" msgstr "Kg" -#: src/Dashboard/Provider.php:173 src/Dashboard/Provider.php:1012 -#: src/Toolbox.php:203 +#: src/Dashboard/Provider.php:197 src/Dashboard/Provider.php:320 +#: src/Dashboard/Provider.php:1201 src/Toolbox.php:245 msgid "t" msgstr "t" -#: src/Dashboard/Provider.php:174 src/Dashboard/Provider.php:1013 -#: src/Toolbox.php:204 +#: src/Dashboard/Provider.php:198 src/Dashboard/Provider.php:321 +#: src/Dashboard/Provider.php:1202 src/Toolbox.php:246 msgid "Kt" msgstr "Kt" -#: src/Dashboard/Provider.php:175 src/Dashboard/Provider.php:1014 -#: src/Toolbox.php:205 +#: src/Dashboard/Provider.php:199 src/Dashboard/Provider.php:322 +#: src/Dashboard/Provider.php:1203 src/Toolbox.php:247 msgid "Mt" msgstr "Mt" -#: src/Dashboard/Provider.php:176 src/Dashboard/Provider.php:1015 -#: src/Toolbox.php:206 +#: src/Dashboard/Provider.php:200 src/Dashboard/Provider.php:323 +#: src/Dashboard/Provider.php:1204 src/Toolbox.php:248 msgid "Gt" msgstr "Gt" -#: src/Dashboard/Provider.php:177 src/Dashboard/Provider.php:1016 -#: src/Toolbox.php:207 +#: src/Dashboard/Provider.php:201 src/Dashboard/Provider.php:324 +#: src/Dashboard/Provider.php:1205 src/Toolbox.php:249 msgid "Tt" msgstr "Tt" -#: src/Dashboard/Provider.php:178 src/Dashboard/Provider.php:1017 -#: src/Toolbox.php:208 +#: src/Dashboard/Provider.php:202 src/Dashboard/Provider.php:325 +#: src/Dashboard/Provider.php:1206 src/Toolbox.php:250 msgid "Pt" msgstr "Pt" -#: src/Dashboard/Provider.php:179 src/Dashboard/Provider.php:1018 -#: src/Toolbox.php:209 +#: src/Dashboard/Provider.php:203 src/Dashboard/Provider.php:326 +#: src/Dashboard/Provider.php:1207 src/Toolbox.php:251 msgid "Et" msgstr "Et" -#: src/Dashboard/Provider.php:180 src/Dashboard/Provider.php:1019 -#: src/Toolbox.php:210 +#: src/Dashboard/Provider.php:204 src/Dashboard/Provider.php:327 +#: src/Dashboard/Provider.php:1208 src/Toolbox.php:252 msgid "Zt" msgstr "Zt" -#: src/Dashboard/Provider.php:181 src/Dashboard/Provider.php:1020 -#: src/Toolbox.php:211 +#: src/Dashboard/Provider.php:205 src/Dashboard/Provider.php:328 +#: src/Dashboard/Provider.php:1209 src/Toolbox.php:253 msgid "Yt" msgstr "Yt" -#: src/Dashboard/Provider.php:330 +#: src/Dashboard/Provider.php:427 msgid "handled assets ratio" msgstr "índice de ativos tratados" -#: src/Dashboard/Provider.php:479 +#: src/Dashboard/Provider.php:473 src/Dashboard/Grid.php:63 +msgid "Handled assets ratio" +msgstr "Proporção de ativos gerenciados" + +#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 +msgid "Handled" +msgstr "Gerenciados" + +#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 +msgid "Unhandled" +msgstr "Não gerenciados" + +#: src/Dashboard/Provider.php:507 +msgid "Ignored" +msgstr "Ignorado" + +#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 +#, php-format +msgid "plugin carbon - handled %s" +msgstr "plugin carbon - tratados %s" + +#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 +#, php-format +msgid "plugin carbon - unhandled %s" +msgstr "plugin carbon - não tratados %s" + +#: src/Dashboard/Provider.php:584 +#, php-format +msgid "plugin carbon - ignored %s" +msgstr "plugin carbon - ignorado %s" + +#: src/Dashboard/Provider.php:632 msgid "plugin carbon - Total usage power consumption" msgstr "plugin carbon - Consumo total de energia" -#: src/Dashboard/Provider.php:718 -msgid "Total embodied global warming potential" -msgstr "Potencial total de aquecimento global incorporado" +#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 +msgid "plugin carbon - Usage carbon emission" +msgstr "plugin carbon - Emissão de uso de carbono" + +#: src/Dashboard/Provider.php:747 +msgid "Sbeq" +msgstr "Sbeq" -#: src/Dashboard/Provider.php:846 +#: src/Dashboard/Provider.php:1035 msgid "Total abiotic depletion potential" msgstr "Potencial total de depleção abiótica" -#: src/Dashboard/Provider.php:865 +#: src/Dashboard/Provider.php:1051 +msgid "Embodied abiotic depletion potential" +msgstr "Potencial de esgotamento abiótico incorporado" + +#: src/Dashboard/Provider.php:1054 msgid "Total usage abiotic depletion potential" msgstr "Potencial total de depleção abiótica" -#: src/Dashboard/Provider.php:877 +#: src/Dashboard/Provider.php:1066 msgid "Total global warming potential" msgstr "Potencial total de aquecimento global" -#: src/Dashboard/Provider.php:896 +#: src/Dashboard/Provider.php:1082 +msgid "Embodied global warming potential" +msgstr "Potencial de aquecimento global incorporado" + +#: src/Dashboard/Provider.php:1085 msgid "Total usage global warming potential" msgstr "Potencial de aquecimento global do uso total" -#: src/Dashboard/Provider.php:1029 src/Toolbox.php:287 +#: src/Dashboard/Provider.php:1218 src/Toolbox.php:316 msgid "KWh" msgstr "KWh" -#: src/Dashboard/Provider.php:1030 src/Toolbox.php:288 +#: src/Dashboard/Provider.php:1219 src/Toolbox.php:317 msgid "MWh" msgstr "MWh" -#: src/Dashboard/Provider.php:1031 src/Toolbox.php:289 +#: src/Dashboard/Provider.php:1220 src/Toolbox.php:318 msgid "GWh" msgstr "GWh" -#: src/Dashboard/Provider.php:1032 src/Toolbox.php:290 +#: src/Dashboard/Provider.php:1221 src/Toolbox.php:319 msgid "TWh" msgstr "TWh" -#: src/Dashboard/Provider.php:1033 src/Toolbox.php:291 +#: src/Dashboard/Provider.php:1222 src/Toolbox.php:320 msgid "PWh" msgstr "PWh" -#: src/Dashboard/Provider.php:1034 src/Toolbox.php:292 +#: src/Dashboard/Provider.php:1223 src/Toolbox.php:321 msgid "EWh" msgstr "EWh" -#: src/Dashboard/Provider.php:1035 src/Toolbox.php:293 +#: src/Dashboard/Provider.php:1224 src/Toolbox.php:322 msgid "ZWh" msgstr "ZWh" -#: src/Dashboard/Provider.php:1036 src/Toolbox.php:294 +#: src/Dashboard/Provider.php:1225 src/Toolbox.php:323 msgid "YWh" msgstr "YWh" -#: src/Toolbox.php:251 +#: src/Dashboard/Grid.php:72 +msgid "Handled assets count" +msgstr "Contagem de ativos gerenciados" + +#: src/Dashboard/Grid.php:135 +#, php-format +msgid "Handled %s" +msgstr "Gerenciados %s" + +#: src/Dashboard/Grid.php:146 +#, php-format +msgid "Unhandled %s" +msgstr "Não gerenciados %s" + +#: src/Dashboard/Grid.php:232 +#, php-format +msgid "Unhandled %s ratio" +msgstr "Proporção %s não tratada" + +#: src/Dashboard/Grid.php:244 +msgid "Usage carbon emission year to date" +msgstr "Emissões de carbono do uso no acumulado do ano" + +#: src/Dashboard/Grid.php:250 +msgid "Monthly carbon emission" +msgstr "Emissão mensal de carbono" + +#: src/Dashboard/Grid.php:259 +msgid "Usage global warming potential chart" +msgstr "Gráfico de potencial de aquecimento global de uso" + +#: src/Dashboard/Grid.php:315 +msgid "Environmental impact methodology information" +msgstr "Informações sobre a metodologia de impacto ambiental" + +#: src/Dashboard/DemoProvider.php:76 +msgid "Usage carbon emission per month" +msgstr "Emissão de carbono por utilização por mês" + +#: src/Dashboard/DemoProvider.php:274 +msgid "plugin carbon - handled assets ratio" +msgstr "plugin carbono - proporção de ativos gerenciados" + +#: src/Dashboard/Dashboard.php:68 +msgid "Carbon dioxyde intensity" +msgstr "Intensidade de dióxido de carbono" + +#: src/Location.php:189 +msgid "Carbon intensity source and zone" +msgstr "Fonte e zona de intensidade de carbono" + +#: src/CarbonIntensity.php:87 +msgid "Emission date" +msgstr "Data de emissão" + +#: src/CarbonIntensity.php:114 +msgid "Intensity" +msgstr "Intensidade" + +#: src/CarbonEmission.php:49 +msgid "Carbon Emission" +msgid_plural "Carbon Emissions" +msgstr[0] "Emissão de carbono" +msgstr[1] "Emissões de carbono" +msgstr[2] "Emissões de carbono" + +#: src/CarbonEmission.php:120 +msgid "Energy" +msgstr "Energia" + +#: src/CarbonEmission.php:128 +msgid "Emission" +msgstr "Emissão" + +#: src/CarbonEmission.php:136 +msgid "Energy quality" +msgstr "Qualidade de energia" + +#: src/CarbonEmission.php:144 +msgid "Emission quality" +msgstr "Qulidade de emissão" + +#: src/Toolbox.php:280 msgid "W" msgstr "W" -#: src/Toolbox.php:252 +#: src/Toolbox.php:281 msgid "KW" msgstr "KW" -#: src/Toolbox.php:253 +#: src/Toolbox.php:282 msgid "MW" msgstr "MW" -#: src/Toolbox.php:254 +#: src/Toolbox.php:283 msgid "GW" msgstr "GW" -#: src/Toolbox.php:255 +#: src/Toolbox.php:284 msgid "TW" msgstr "TW" -#: src/Toolbox.php:256 +#: src/Toolbox.php:285 msgid "PW" msgstr "PW" -#: src/Toolbox.php:257 +#: src/Toolbox.php:286 msgid "EW" msgstr "EW" -#: src/Toolbox.php:258 +#: src/Toolbox.php:287 msgid "ZW" msgstr "ZW" -#: src/Toolbox.php:259 +#: src/Toolbox.php:288 msgid "YW" msgstr "YW" -#: src/Toolbox.php:286 +#: src/Toolbox.php:315 msgid "Wh" msgstr "Wh" -#: src/SearchOptions.php:196 src/SearchOptions.php:273 -#: src/SearchOptions.php:346 -msgid "Is historizable" -msgstr "É historizável" - -#: src/UsageImpact.php:50 -msgid "Usage impact" -msgid_plural "Usage impacts" -msgstr[0] "Impacto de uso" -msgstr[1] "Impacto do uso" -msgstr[2] "Impactos do uso" +#: src/Toolbox.php:373 src/Toolbox.php:378 +#, php-format +msgid "%1$s %2$s" +msgstr "%1$s %2$s" -#: src/UsageImpact.php:112 -msgid "Global warming potential quality" -msgstr "Qualidade do potencial de aquecimento global" +#: setup.php:285 +msgid "Environmental Impact" +msgstr "Impacto ambiental" -#: src/UsageImpact.php:127 -msgid "Abiotic depletion potential quality" -msgstr "Qualidade do potencial de depleção abiótica" +#: hook.php:97 +msgid "" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." +msgstr "" +"Verifique os registros para obter mais detalhes. Registre um problema no " +"repositório do plugin." -#: src/UsageImpact.php:134 src/UsageImpact.php:142 -msgid "Primary energy quality" -msgstr "Qualidade da energia primária" +#: hook.php:301 +msgid "Associate to an usage profile" +msgstr "Associar a um perfil de utilização" -#: src/CarbonIntensity.php:66 -msgid "Carbon intensity" -msgstr "Intensidade de carbono" +#: hook.php:302 hook.php:307 +msgid "Delete all calculated environmental impacts" +msgstr "Eliminar todos os impactos ambientais calculados" -#: src/CarbonIntensity.php:88 -msgid "Emission date" -msgstr "Data de emissão" +#: hook.php:311 hook.php:316 hook.php:320 +msgid "Update type power consumption" +msgstr "Atualizar tipo de consumo de energia" -#: src/CarbonIntensity.php:115 -msgid "Intensity" -msgstr "Intensidade" +#: hook.php:312 +msgid "Update category" +msgstr "Atualizar categoria" -#: src/EmbodiedImpact.php:90 -msgid "Global Warming Potential" -msgstr "Potencial de Aquecimento Global" +#: hook.php:324 +msgid "Update zone for Boavizta engine" +msgstr "Atualizar zona para o motor Boavizta" -#: src/EmbodiedImpact.php:100 -msgid "Abiotic Depletion Potential" -msgstr "Potencial de Depleção Abiótica" +#: hook.php:325 +msgid "Update carbon intensity source and zone" +msgstr "Atualizar a fonte e a zona de intensidade de carbono." -#: src/EmbodiedImpact.php:110 -msgid "Primary energy" -msgstr "Energia primária" +#: install/install/create_automatic_actions.php:52 +msgid "Find the Alpha3 country code (ISO3166) of locations" +msgstr "Encontrar o código de país Alpha3 (ISO3166) de localizações" -#: src/ComputerType.php:56 -msgid "Unspecified" -msgstr "Não especificado" +#: install/install/create_automatic_actions.php:64 +msgid "Compute carbon emissions of computers" +msgstr "Calcular as emissões de carbono dos computadores" -#: src/ComputerType.php:58 -msgid "Server" -msgstr "Servidor" +#: install/install/create_automatic_actions.php:76 +msgid "Compute embodied impact of assets" +msgstr "Computar impacto incorporado dos ativos" -#: src/ComputerType.php:59 -msgid "Laptop" -msgstr "Laptop" +#: install/install/create_uasge_profiles.php:41 +msgid "Always on" +msgstr "Sempre ligado" -#: src/ComputerType.php:60 -msgid "Tablet" -msgstr "Tablet" +#: install/install/create_uasge_profiles.php:52 +msgid "Office hours" +msgstr "Horário de expediente" -#: src/ComputerType.php:61 -msgid "Smartphone" -msgstr "Smartphone" +#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 +#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 +msgid "Missing arguments in request." +msgstr "Argumentos faltantes na requisição." -#: src/CarbonIntensitySource_Zone.php:70 -msgid "Source name" -msgstr "Nome da fonte" +#: front/usageimpact.form.php:80 front/usageimpact.form.php:106 +#: front/usageimpact.form.php:114 front/embodiedimpact.form.php:92 +msgid "Bad arguments." +msgstr "Argumentos errados." -#: src/CarbonIntensitySource_Zone.php:78 -msgid "Zone name" -msgstr "Nome da zona" +#: front/usageimpact.form.php:90 front/embodiedimpact.form.php:68 +#: front/embodiedimpact.form.php:77 +msgid "Reset denied." +msgstr "Redefinição negada." -#: src/CarbonIntensitySource_Zone.php:94 -msgid "Code" -msgstr "Código" +#: front/usageimpact.form.php:95 front/embodiedimpact.form.php:82 +msgid "Reset failed." +msgstr "Redefinição falhou." -#: src/CarbonIntensitySource_Zone.php:148 -msgid "Not downloadable" -msgstr "Não é possível fazer o download" +#: front/usageimpact.form.php:122 +msgid "Missing data prevents historization of this asset." +msgstr "" +"A falta de dados impede a criação de um registro histórico deste ativo." -#: src/CarbonIntensitySource_Zone.php:148 -msgid "This is a fallback source, there is no real-time data available" -msgstr "Esta é uma fonte alternativa; não há dados em tempo real disponíveis" +#: front/usageimpact.form.php:125 +msgid "Update of global warming potential failed." +msgstr "A atualização do potencial de aquecimento global falhou." -#: src/CarbonIntensitySource_Zone.php:170 -msgid "Source for historical" -msgstr "Fonte para histórico" +#: front/usageimpact.form.php:131 front/embodiedimpact.form.php:101 +msgid "Unable to find calculation engine for this asset." +msgstr "Não foi possível encontrar um mecanismo de cálculo para este ativo." -#: src/CarbonIntensitySource_Zone.php:351 -msgid "Enable / Disable" -msgstr "Desabilitar / Habilitar" +#: front/usageimpact.form.php:136 +msgid "Update of usage impact failed." +msgstr "A atualização do impacto de uso falhou." diff --git a/locales/tr_TR.po b/locales/tr_TR.po index 2577b238..487ff31c 100644 --- a/locales/tr_TR.po +++ b/locales/tr_TR.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-04-10 02:51+0000\n" +"POT-Creation-Date: 2026-04-14 10:49+0000\n" "PO-Revision-Date: 2025-10-29 09:26+0000\n" "Last-Translator: Kaya Zeren , 2026\n" "Language-Team: Turkish (Turkey) (https://app.transifex.com/teclib/teams/28042/tr_TR/)\n" @@ -58,14 +58,6 @@ msgid_plural "Usage profiles" msgstr[0] "Kullanım profili" msgstr[1] "Kullanım profilleri" -#: templates/usageinfo.html.twig -msgid "lifespan (in months)" -msgstr "ömür (ay)" - -#: templates/usageinfo.html.twig -msgid "planned lifespan (in months)" -msgstr "planlanan ömür (ay)" - #: templates/quick-report.html.twig front/report.php:55 msgid "GLPI Carbon" msgstr "GLPI Carbon" @@ -422,16 +414,16 @@ msgstr "Sınama envanteri oluşturuluyor" msgid "Power consumption" msgstr "Güç tüketimi" -#: src/UsageInfo.php:63 +#: src/UsageInfo.php:62 msgid "Usage informations" msgstr "Kullanım bilgileri" -#: src/UsageInfo.php:95 src/AbstractModel.php:54 src/Location.php:73 +#: src/UsageInfo.php:94 src/AbstractModel.php:54 src/Location.php:73 #: src/AbstractType.php:55 src/Profile.php:45 msgid "Environmental impact" msgstr "Çevresel etki" -#: src/UsageInfo.php:243 +#: src/UsageInfo.php:241 #, php-format msgid "%s More information %s" msgstr "%s Diğer bilgiler %s" diff --git a/locales/zh_CN.po b/locales/zh_CN.po index f232fc78..8dc5da63 100644 --- a/locales/zh_CN.po +++ b/locales/zh_CN.po @@ -3,13 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # +# Translators: +# DWXXX, 2026 +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-21 13:21+0200\n" -"PO-Revision-Date: 2022-11-23 14:34+0000\n" +"POT-Creation-Date: 2026-04-15 02:49+0000\n" +"PO-Revision-Date: 2025-10-29 09:26+0000\n" +"Last-Translator: DWXXX, 2026\n" "Language-Team: Chinese (China) (https://app.transifex.com/teclib/teams/28042/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,594 +21,1361 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#. TRANS: %s is the user login -#: front/environnementalimpact.form.php:57 -#, php-format -msgid "%s updates an item" +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:148 +#: src/ComputerUsageProfile.php:169 +msgid "Start time" +msgstr "开始时间" + +#: templates/computerusageprofile.html.twig src/ComputerUsageProfile.php:177 +msgid "Stop time" +msgstr "停止时间" + +#: templates/computerusageprofile.html.twig +msgid "Days of week where the computer usually runs" msgstr "" -#: front/report.php:49 entrée standard:37 -msgid "GLPI Carbon" +#: templates/location.html.twig src/Impact/Embodied/Engine.php:53 +#: src/Impact/Usage/Engine.php:48 +msgid "Boavizta" +msgstr "Boavizta" + +#: templates/location.html.twig src/SearchOptions.php:138 src/Location.php:182 +msgid "Boavizta zone" msgstr "" -#: src/CarbonIntensityZone.php:50 +#: templates/location.html.twig src/CarbonIntensity.php:65 +msgid "Carbon intensity" +msgstr "碳强度" + +#: templates/usageinfo.html.twig +msgid "Asset usage" +msgstr "" + +#: templates/usageinfo.html.twig +msgid "Usage profile" +msgid_plural "Usage profiles" +msgstr[0] "" + +#: templates/quick-report.html.twig front/report.php:55 +msgid "GLPI Carbon" +msgstr "GLPI碳" + +#: templates/components/form/source_zone_selector.html.twig +#: src/AbstractModel.php:186 +msgid "Source" +msgstr "源" + +#: templates/components/form/source_zone_selector.html.twig src/Zone.php:51 msgid "Carbon intensity zone" msgid_plural "Carbon intensity zones" +msgstr[0] "碳强度区域" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "No zone available" +msgstr "没有可用区域" + +#: templates/pages/CarbonIntensitySource/tab_zone.html.twig +msgid "Please run the automatic action to downlaod data from this source." +msgstr "" + +#: templates/environmentalimpact-item.html.twig +msgid "Usage" +msgstr "使用" + +#: templates/environmentalimpact-item.html.twig +msgid "Reset data" +msgstr "重置数据" + +#: templates/environmentalimpact-item.html.twig +msgid "Calculate data" +msgstr "计算数据" + +#: templates/environmentalimpact-item.html.twig src/EmbodiedImpact.php:44 +msgid "Embodied impact" +msgid_plural "Embodied impacts" msgstr[0] "" -#: src/CarbonIntensityZone.php:122 src/CarbonIntensityZone.php:137 -msgid "Data source for historical calculation" +#: templates/history/status-item.html.twig +msgid "Historization status" +msgstr "历史状态" + +#: templates/history/status-item.html.twig +msgid "No status" +msgstr "无状态" + +#: templates/history/status-item.html.twig +msgid "" +"This data is missing and prevents from environmental impact calculation." +msgstr "" + +#: templates/history/status-item.html.twig +msgid "" +"This data is missing and may reduce the quality of environmental impact " +"calculation." +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Is not in the trash bin" +msgstr "不在垃圾筒内" + +#: templates/history/status-item.html.twig +msgid "Is not a template" +msgstr "不是模版" + +#: templates/history/status-item.html.twig +msgid "Linked to a computer" +msgstr "关联到计算机" + +#: templates/history/status-item.html.twig +msgid "Attached computer has a location" msgstr "" -#: src/AbstractType.php:50 entrée standard:37 +#: templates/history/status-item.html.twig +msgid "Has a location" +msgstr "有地址" + +#: templates/history/status-item.html.twig +msgid "The location has carbon intensity data" +msgstr "此地点有碳强度数据" + +#: templates/history/status-item.html.twig +msgid "Real time carbon intensity enabled" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The location has yearly carbon intensity data" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The asset has a model" +msgstr "资产有型号" + +#: templates/history/status-item.html.twig +msgid "The model has a power consumption" +msgstr "此型号有电力消耗" + +#: templates/history/status-item.html.twig +msgid "The asset has a type" +msgstr "资产有类型" + +#: templates/history/status-item.html.twig +msgid "Type is not ignored" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "The type has a power consumption" +msgstr "此类型有电力消耗" + +#: templates/history/status-item.html.twig +msgid "The asset has a category" +msgstr "资产有分类" + +#: templates/history/status-item.html.twig +msgid "The asset has a usage profile" +msgstr "此资产有用例配置文件" + +#: templates/history/status-item.html.twig +msgid "The asset has an inventory entry date" +msgstr "" + +#: templates/history/status-item.html.twig +msgid "Legend" +msgstr "图例" + +#: templates/monitortype.html.twig +msgid "" +"This power value is used as default when the power of a monitor model is " +"unknown" +msgstr "" + +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig msgid "Power" msgid_plural "Powers" -msgstr[0] "" +msgstr[0] "电力" -#: src/AbstractType.php:58 src/Dashboard/Dashboard.php:50 -#: src/Dashboard/Dashboard.php:56 src/Dashboard/Dashboard.php:62 -#: src/Dashboard/Dashboard.php:68 src/Dashboard/Dashboard.php:74 -#: src/Dashboard/Dashboard.php:80 src/Dashboard/Dashboard.php:86 -#: src/Dashboard/Dashboard.php:92 src/Dashboard/Dashboard.php:98 -#: src/Dashboard/Dashboard.php:103 src/Dashboard/Dashboard.php:108 -#: src/Dashboard/Dashboard.php:113 src/Dashboard/Dashboard.php:118 -msgid "Carbon" +#: templates/monitortype.html.twig templates/computertype.html.twig +#: templates/networkequipmenttype.html.twig +msgid "Do not evaluate" msgstr "" -#: src/CarbonIntensitySource.php:45 -msgid "Carbon intensity source" -msgid_plural "Carbon intensity sources" -msgstr[0] "" +#: templates/config.html.twig +msgid "Impact engine" +msgstr "影响引擎" -#: src/Command/CreateTestInventoryCommand.php:149 -msgid "Creating test inventory" +#: templates/config.html.twig +msgid "Usage carbon emissions are always calculated internally" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:70 -#: src/Command/CollectCarbonIntensityCommand.php:71 -msgid "Creating data source name" +#: templates/computertype.html.twig +msgid "" +"This power value is used as default when the power of a computer model is " +"unknown" msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:81 -msgid "Creating data zone name" +#: templates/computertype.html.twig src/SearchOptions.php:303 +#: src/ComputerType.php:78 +msgid "Category" +msgstr "分类" + +#: templates/dashboard/information-block.html.twig +msgid "Information" +msgstr "信息" + +#: templates/dashboard/information-block.html.twig +msgid "" +"Our data is sourced from reliable sources and is meticulously calculated " +"using industry-standard methodologies. We utilize accurate measurement tools" +" and algorithms to ensure the precision and reliability of our environmental" +" metrics." msgstr "" -#: src/Command/CreateFakeCarbonIntensityCommand.php:92 -msgid "Creating fake data..." +#: templates/dashboard/information-block.html.twig +msgid "" +"As we move towards a greener future, businesses will soon be required to " +"report energy usage and carbon emissions. By 2025, many areas will enforce " +"these regulations. Adopting these practices now ensures compliance and helps" +" combat climate change." msgstr "" -#: src/Command/CollectCarbonIntensityCommand.php:83 -msgid "Reading eco2mix data..." +#: templates/dashboard/information-block.html.twig +msgid "Did you know ?" +msgstr "你知道吗?" + +#: templates/dashboard/information-block.html.twig +msgid "" +"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " +"about 20 meters." msgstr "" -#: src/Profile.php:46 src/EnvironnementalImpact.php:54 -msgid "Environnemental impact" +#: templates/dashboard/unhandled-monitors-card.html.twig +#: templates/dashboard/unhandled-computers-card.html.twig +#: templates/dashboard/unhandled-network-equipments-card.html.twig +msgid "Warning" +msgstr "警告" + +#: templates/dashboard/unhandled-monitors-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s monitors." msgstr "" -#: src/Profile.php:87 entrée standard:48 -msgctxt "button" -msgid "Save" +#: templates/dashboard/usage-carbon-emission-last-year.html.twig +msgid "Yearly Usage Carbon Emission" +msgstr "每年碳排放使用量" + +#: templates/dashboard/monthly-carbon-emission.html.twig +msgid "Monthly usage carbon emission" +msgstr "每月碳排放使用量" + +#: templates/dashboard/monthly-carbon-emission.html.twig +#, php-format +msgid "Compared to %s" +msgstr "相比于 %s" + +#: templates/dashboard/unhandled-computers-card.html.twig +#, php-format +msgid "It represents %s percent of your parc that contains %s computers." msgstr "" -#: src/CronTask.php:50 -msgid "Download carbon emissions from RTE" +#: templates/dashboard/unhandled-network-equipments-card.html.twig +#, php-format +msgid "" +"It represents %s percent of your parc that contains %s network equipments." msgstr "" -#: src/CronTask.php:51 src/CronTask.php:57 -msgid "Maximum number of entries to download" +#: templates/dashboard/information-video-card.html.twig +msgid "Want to know more ?" +msgstr "相了解更多?" + +#: templates/dashboard/information-video-card.html.twig +msgid "Here is a video about the impact of numeric on the enviromnent." +msgstr "这里有一个视频介绍环境方面的影响数值。" + +#: templates/abstractmodel.html.twig +msgid "" +"The impacts below shall include the manufacturing, disposal and recycling " +"processes only." msgstr "" -#: src/CronTask.php:56 -msgid "Download carbon emissions from ElectricityMap" +#: templates/abstractmodel.html.twig +msgid "Take care of the expected units before setting an impact." msgstr "" -#: src/CronTask.php:62 -msgid "Compute daily environnemental impact for all assets" +#: templates/abstractmodel.html.twig +msgid "Data quality" msgstr "" -#: src/CronTask.php:63 -msgid "Maximum number of entries to calculate" +#: templates/abstractmodel.html.twig +msgid "Data source" msgstr "" -#: src/CarbonIntensity.php:57 -msgid "Carbon intensity" +#: templates/networkequipmenttype.html.twig +msgid "" +"This power value is used as default when the power of a network equipment " +"model is unknown" msgstr "" -#: src/CarbonIntensity.php:96 -msgid "ID" +#: src/Command/CollectCarbonIntensityCommand.php:70 +msgid "Read carbon dioxyde intensity from external sources" msgstr "" -#: src/CarbonIntensity.php:105 -msgid "Emission date" +#: src/Command/CollectCarbonIntensityCommand.php:84 +msgid "Source:" +msgstr "源:" + +#: src/Command/CollectCarbonIntensityCommand.php:95 +msgid "" +"The selected source does not enumerates its supported zones. Trying to " +"identify a zone from an address" msgstr "" -#: src/CarbonIntensity.php:132 -msgid "Intensity" +#: src/Command/CollectCarbonIntensityCommand.php:99 +msgid "Geocoding is not enabled. Cannot resolve an address into a zone" msgstr "" -#: src/Report.php:48 -msgid "Carbon report" -msgid_plural "Carbon reports" -msgstr[0] "" +#: src/Command/CollectCarbonIntensityCommand.php:104 +msgid "Address:" +msgstr "地址:" -#: src/Toolbox.php:194 src/Dashboard/Provider.php:519 -msgid "g" +#: src/Command/CollectCarbonIntensityCommand.php:107 +msgid "Zone:" +msgstr "区域:" + +#: src/Command/CollectCarbonIntensityCommand.php:123 +#: src/Command/CreateFakeCarbonIntensityCommand.php:67 +msgid "Creating data source name" +msgstr "创建数据源名称" + +#: src/Command/CollectCarbonIntensityCommand.php:130 +msgid "This source does not exist" msgstr "" -#: src/Toolbox.php:195 src/Dashboard/Provider.php:520 -msgid "Kg" +#: src/Command/CollectCarbonIntensityCommand.php:149 +msgid "The zone is not handled by the data source" msgstr "" -#: src/Toolbox.php:196 src/Dashboard/Provider.php:521 -msgid "t" +#: src/Command/CollectCarbonIntensityCommand.php:155 +msgid "Reading data..." +msgstr "读取数据..." + +#: src/Command/CreateFakeCarbonIntensityCommand.php:78 +msgid "Creating data zone name" +msgstr "创建数据区域名称" + +#: src/Command/CreateFakeCarbonIntensityCommand.php:89 +msgid "Creating fake data..." +msgstr "创建假数据..." + +#: src/Command/ExportDashboardCommand.php:68 +msgid "Updating the report dashboard description" +msgstr "更新报告仪表板描述" + +#: src/Command/ExportDashboardCommand.php:73 +msgid "Dashboard not found" +msgstr "仪表板未找到" + +#: src/Command/ExportDashboardCommand.php:99 +#, php-format +msgid "Dashboard description saved to %s" +msgstr "保存仪表板描述到 %s" + +#: src/Command/CreateTestInventoryCommand.php:145 +msgid "Creating test inventory" +msgstr "创建测试资产" + +#: src/NetworkEquipmentType.php:50 src/SearchOptions.php:161 +#: src/ComputerType.php:70 src/MonitorType.php:50 +msgid "Power consumption" +msgstr "电力消耗量" + +#: src/UsageInfo.php:62 +msgid "Usage informations" +msgstr "使用信息" + +#: src/UsageInfo.php:94 src/AbstractModel.php:54 src/Location.php:73 +#: src/AbstractType.php:55 src/Profile.php:45 +msgid "Environmental impact" +msgstr "环境影响" + +#: src/UsageInfo.php:241 +#, php-format +msgid "%s More information %s" msgstr "" -#: src/Toolbox.php:197 src/Dashboard/Provider.php:522 -msgid "Kt" +#: src/DataSource/Lca/Boaviztapi/Config.php:100 +msgid "Invalid Boavizta API URL" +msgstr "无效的Boavizta API地址" + +#: src/DataSource/Lca/Boaviztapi/Config.php:108 +msgid "Connection to Boavizta API established" +msgstr "连接到 Boavizta API 成功" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:56 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:53 +msgid "Resource diagnosis" msgstr "" -#: src/Toolbox.php:198 src/Dashboard/Provider.php:523 -msgid "Mt" +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:71 +msgid "Collect carbon intensities from RTE" +msgstr "从RTE收集碳强度" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:89 +msgid "Download carbon emissions from RTE" +msgstr "从RTE下载碳排放" + +#: src/DataSource/CarbonIntensity/Rte/CronTask.php:90 +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:87 +#: src/CronTask.php:107 +msgid "Maximum number of entries to download" +msgstr "下载的最大条目" + +#: src/DataSource/CarbonIntensity/AbstractCronTask.php:103 +#: src/Source_Zone.php:537 +msgid "End" msgstr "" -#: src/Toolbox.php:199 src/Dashboard/Provider.php:524 -msgid "Gt" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:68 +msgid "Collect carbon intensities from Electricity Maps" msgstr "" -#: src/Toolbox.php:200 src/Dashboard/Provider.php:525 -msgid "Tt" +#: src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php:86 +msgid "Download carbon emissions from Electricity Maps" msgstr "" -#: src/Toolbox.php:201 src/Dashboard/Provider.php:526 -msgid "Pt" +#: src/AbstractImpact.php:125 src/CarbonEmission.php:151 +msgid "Date of evaluation" +msgstr "评估日期" + +#: src/AbstractImpact.php:132 src/CarbonEmission.php:158 +msgid "Engine" +msgstr "引擎" + +#: src/AbstractImpact.php:139 src/CarbonEmission.php:165 +msgid "Engine version" +msgstr "引擎版本" + +#: src/DataTracking/AbstractTracked.php:77 +msgid "Impact not evaluated" msgstr "" -#: src/Toolbox.php:202 src/Dashboard/Provider.php:527 -msgid "Et" +#: src/DataTracking/AbstractTracked.php:78 +msgid "Unspecified quality" msgstr "" -#: src/Toolbox.php:203 src/Dashboard/Provider.php:528 -msgid "Zt" +#: src/DataTracking/AbstractTracked.php:79 +msgid "Manual data" msgstr "" -#: src/Toolbox.php:204 src/Dashboard/Provider.php:529 -msgid "Yt" +#: src/DataTracking/AbstractTracked.php:80 +msgid "Estimated data" msgstr "" -#. TRANS: %1$s is a number maybe float or string and %2$s the unit -#: src/Toolbox.php:215 src/Toolbox.php:248 -#, php-format -msgid "%1$s %2$s" +#: src/DataTracking/AbstractTracked.php:81 +msgid "Downsampled data" msgstr "" -#: src/Toolbox.php:229 -msgid "W" +#: src/DataTracking/AbstractTracked.php:82 +msgid "Measured data" msgstr "" -#: src/Toolbox.php:230 -msgid "KW" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:93 +#: src/Impact/Usage/AbstractUsageImpact.php:91 +msgid "grams of carbon dioxyde equivalent" msgstr "" -#: src/Toolbox.php:231 -msgid "MW" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:95 +#: src/Impact/Usage/AbstractUsageImpact.php:93 +msgid "grams of antimony equivalent" msgstr "" -#: src/Toolbox.php:232 -msgid "GW" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:97 +#: src/Impact/Usage/AbstractUsageImpact.php:95 +msgid "joules" +msgstr "焦耳" + +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:132 +msgid "Connection to Boavizta failed." msgstr "" -#: src/Toolbox.php:233 -msgid "TW" +#: src/Impact/Embodied/AbstractEmbodiedImpact.php:135 +msgid "Embodied impact evaluation falied." msgstr "" -#: src/Toolbox.php:234 -msgid "PW" +#: src/Impact/History/AbstractAsset.php:370 +msgid "Error while calculating impact" +msgstr "计算影响时出错" + +#: src/Impact/History/AbstractAsset.php:378 +msgid "Nothing to calculate" +msgstr "无需计算" + +#: src/Impact/History/AbstractAsset.php:384 +#, php-format +msgid "%d entries calculated" +msgstr "%d 条目被计算" + +#: src/Impact/Type.php:159 +msgid "Embodied Global warming potential" msgstr "" -#: src/Toolbox.php:235 -msgid "EW" +#: src/Impact/Type.php:160 +msgid "Embodied Abiotic depletion potential" msgstr "" -#: src/Toolbox.php:236 -msgid "ZW" +#: src/Impact/Type.php:161 +msgid "Embodied Primary energy consumed" msgstr "" -#: src/Toolbox.php:237 -msgid "YW" +#: src/Impact/Type.php:162 +msgid "Embodied Climate change - Contribution of biogenic emissions" msgstr "" -#: src/Dashboard/Widget.php:45 -msgid "Carbon Emission Per Type" +#: src/Impact/Type.php:163 +msgid "Embodied Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/Dashboard/Widget.php:51 -msgid "Carbon Emission Per Month" +#: src/Impact/Type.php:164 +msgid "" +"Embodied Climate change - Contribution of emissions from land use change" msgstr "" -#: src/Dashboard/Widget.php:57 entrée standard:38 -msgid "Total Carbon Emission" +#: src/Impact/Type.php:165 +msgid "Embodied Emissions of radionizing substances" msgstr "" -#: src/Dashboard/Widget.php:63 -msgid "Monthly Carbon Emission" +#: src/Impact/Type.php:166 +msgid "Embodied Land use" msgstr "" -#: src/Dashboard/Widget.php:69 -msgid "Unhandled Computers" +#: src/Impact/Type.php:167 +msgid "Embodied Depletion of the ozone layer" msgstr "" -#: src/Dashboard/Filters/Item.php:42 -msgid "Item" +#: src/Impact/Type.php:168 +msgid "Embodied Fine particle emissions" msgstr "" -#: src/Dashboard/Provider.php:357 src/Dashboard/Provider.php:533 -#: src/Dashboard/Provider.php:534 -msgid "CO₂eq" +#: src/Impact/Type.php:169 +msgid "Embodied Photochemical ozone formation" msgstr "" -#: src/Dashboard/Provider.php:473 src/Dashboard/Provider.php:488 entrée -#: standard:120 -msgid "Carbon emission" +#: src/Impact/Type.php:170 +msgid "Embodied Use of water resources" msgstr "" -#: src/Dashboard/Provider.php:478 src/Dashboard/Provider.php:491 entrée -#: standard:123 -msgid "Consumed energy" +#: src/Impact/Type.php:171 +msgid "Embodied Material input per unit of service" msgstr "" -#: src/Dashboard/Provider.php:538 -msgid "KWh" +#: src/Impact/Type.php:172 +msgid "Embodied Use of mineral and metal resources" msgstr "" -#: src/Dashboard/Provider.php:539 -msgid "MWh" +#: src/Impact/Type.php:173 +msgid "Embodied Use of fossil resources (including nuclear)" msgstr "" -#: src/Dashboard/Provider.php:540 -msgid "GWh" +#: src/Impact/Type.php:174 +msgid "Embodied Acidification" msgstr "" -#: src/Dashboard/Provider.php:541 -msgid "TWh" +#: src/Impact/Type.php:175 +msgid "Embodied Freshwater ecotoxicity" msgstr "" -#: src/Dashboard/Provider.php:542 -msgid "PWh" +#: src/Impact/Type.php:178 +msgid "Embodied Eutrophication of freshwater" msgstr "" -#: src/Dashboard/Provider.php:543 -msgid "EWh" +#: src/Impact/Type.php:179 +msgid "Embodied Eutrophication of marine waters" msgstr "" -#: src/Dashboard/Provider.php:544 -msgid "ZWh" +#: src/Impact/Type.php:180 +msgid "Embodied Terrestrial eutrophication" msgstr "" -#: src/Dashboard/Provider.php:545 -msgid "YWh" +#: src/Impact/Type.php:195 +msgid "Usage Global warming potential" msgstr "" -#: src/Dashboard/Dashboard.php:51 src/Dashboard/Dashboard.php:114 -msgid "Unhandled computers" +#: src/Impact/Type.php:196 +msgid "Usage Abiotic depletion potential" msgstr "" -#: src/Dashboard/Dashboard.php:57 -msgid "Handled computers" +#: src/Impact/Type.php:197 +msgid "Usage Primary energy consumed" msgstr "" -#: src/Dashboard/Dashboard.php:63 -msgid "Total power consumption" +#: src/Impact/Type.php:198 +msgid "Usage Climate change - Contribution of biogenic emissions" msgstr "" -#: src/Dashboard/Dashboard.php:69 src/Dashboard/Dashboard.php:104 -msgid "Total carbon emission" +#: src/Impact/Type.php:199 +msgid "Usage Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/Dashboard/Dashboard.php:75 -msgid "Total power consumption per model" +#: src/Impact/Type.php:200 +msgid "Usage Climate change - Contribution of emissions from land use change" msgstr "" -#: src/Dashboard/Dashboard.php:81 -msgid "Total carbon emission per model" +#: src/Impact/Type.php:201 +msgid "Usage Emissions of radionizing substances" msgstr "" -#: src/Dashboard/Dashboard.php:87 src/Dashboard/Dashboard.php:255 -msgid "Carbon emission per month" +#: src/Impact/Type.php:202 +msgid "Usage Land use" msgstr "" -#: src/Dashboard/Dashboard.php:93 -msgid "Carbon intensity (gCO2eq / KWh)" +#: src/Impact/Type.php:203 +msgid "Usage Depletion of the ozone layer" msgstr "" -#: src/Dashboard/Dashboard.php:99 -msgid "Carbon emission per type" +#: src/Impact/Type.php:204 +msgid "Usage Fine particle emissions" msgstr "" -#: src/Dashboard/Dashboard.php:109 entrée standard:38 -msgid "Monthly carbon emission" +#: src/Impact/Type.php:205 +msgid "Usage Photochemical ozone formation" msgstr "" -#: src/Dashboard/Dashboard.php:119 -msgid "Carbon emission per month graph" +#: src/Impact/Type.php:206 +msgid "Usage Use of water resources" msgstr "" -#: src/Dashboard/Dashboard.php:273 -msgid "Carbon dioxyde intensity" +#: src/Impact/Type.php:207 +msgid "Usage Material input per unit of service" msgstr "" -#: src/ComputerUsageProfile.php:48 -msgid "Computer usage profile" -msgid_plural "Computer usage profiles" -msgstr[0] "" +#: src/Impact/Type.php:208 +msgid "Usage Use of mineral and metal resources" +msgstr "" -#: src/ComputerUsageProfile.php:84 -msgid "Knowbase category" +#: src/Impact/Type.php:209 +msgid "Usage Use of fossil resources (including nuclear)" msgstr "" -#: src/ComputerUsageProfile.php:90 -msgid "As child of" +#: src/Impact/Type.php:210 +msgid "Usage Acidification" msgstr "" -#: src/ComputerUsageProfile.php:105 entrée standard:52 -msgid "Start time" +#: src/Impact/Type.php:211 +msgid "Usage Freshwater ecotoxicity" msgstr "" -#: src/ComputerUsageProfile.php:113 entrée standard:58 -msgid "Stop time" +#: src/Impact/Type.php:214 src/Impact/Type.php:342 +msgid "Usage Eutrophication of freshwater" msgstr "" -#: src/ComputerUsageProfile.php:121 entrée standard:66 -msgid "Monday" +#: src/Impact/Type.php:215 src/Impact/Type.php:343 +msgid "Usage Eutrophication of marine waters" msgstr "" -#: src/ComputerUsageProfile.php:129 entrée standard:72 -msgid "Tuesday" +#: src/Impact/Type.php:216 src/Impact/Type.php:344 +msgid "Usage Terrestrial eutrophication" msgstr "" -#: src/ComputerUsageProfile.php:137 entrée standard:78 -msgid "Wednesday" +#: src/Impact/Type.php:231 +msgid "Total Global warming potential" msgstr "" -#: src/ComputerUsageProfile.php:145 entrée standard:84 -msgid "Thursday" +#: src/Impact/Type.php:232 +msgid "Total Abiotic depletion potential" msgstr "" -#: src/ComputerUsageProfile.php:153 entrée standard:90 -msgid "Friday" +#: src/Impact/Type.php:233 +msgid "Total Primary energy consumed" msgstr "" -#: src/ComputerUsageProfile.php:161 entrée standard:96 -msgid "Saturday" +#: src/Impact/Type.php:234 +msgid "Total Climate change - Contribution of biogenic emissions" msgstr "" -#: src/ComputerUsageProfile.php:169 entrée standard:103 -msgid "Sunday" +#: src/Impact/Type.php:235 +msgid "Total Climate change - Contribution of fossil fuel emissions" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:124 -#: src/CarbonIntensitySource_CarbonIntensityZone.php:219 entrée standard:40 -msgid "Name" +#: src/Impact/Type.php:236 +msgid "Total Climate change - Contribution of emissions from land use change" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:125 -msgid "Download enabled" +#: src/Impact/Type.php:237 +msgid "Total Emissions of radionizing substances" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:126 -msgid "Source for historical" +#: src/Impact/Type.php:238 +msgid "Total Land use" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:132 -#: src/CarbonIntensitySource_CarbonIntensityZone.php:225 -msgid "Total" +#: src/Impact/Type.php:239 +msgid "Total Depletion of the ozone layer" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:284 entrée standard:189 -msgid "No" +#: src/Impact/Type.php:240 +msgid "Total Fine particle emissions" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:284 entrée standard:186 -msgid "Yes" +#: src/Impact/Type.php:241 +msgid "Total Photochemical ozone formation" msgstr "" -#: src/CarbonIntensitySource_CarbonIntensityZone.php:285 -msgid "Enable / Disable" +#: src/Impact/Type.php:242 +msgid "Total Use of water resources" msgstr "" -#: src/CarbonEmission.php:50 -msgid "Carbon Emission" -msgid_plural "Carbon Emissions" -msgstr[0] "" +#: src/Impact/Type.php:243 +msgid "Total Material input per unit of service" +msgstr "" -#: hook.php:133 hook.php:172 -msgid "Power consumption (W)" +#: src/Impact/Type.php:244 +msgid "Total Use of mineral and metal resources" msgstr "" -#: setup.php:204 -msgid "Environmental Impact" +#: src/Impact/Type.php:245 +msgid "Total Use of fossil resources (including nuclear)" msgstr "" -#. TRANS: %s is the number of new version -#: install/migration/update_0.0.0_to_0.0.1.php:44 -#: install/migration/update_xxx_to_yyy.php:45 -#, php-format -msgid "Update to %s" +#: src/Impact/Type.php:246 +msgid "Total Acidification" msgstr "" -#: install/migration/update_0.0.0_to_0.0.1/create_uasge_profiles.php:39 -msgid "Office hours" +#: src/Impact/Type.php:247 +msgid "Total Freshwater ecotoxicity" msgstr "" -#: install/migration/update_0.0.0_to_0.0.1/create_automatic_actions.php:46 -msgid "Compute carbon emissions of computers" +#: src/Impact/Type.php:250 +msgid "Total Eutrophication of freshwater" msgstr "" -#: install/migration/update_0.0.0_to_0.0.1/create_automatic_actions.php:58 -msgid "Collect carbon intensities from RTE" +#: src/Impact/Type.php:251 +msgid "Total Eutrophication of marine waters" msgstr "" -#: install/migration/update_0.0.0_to_0.0.1/create_automatic_actions.php:70 -msgid "Collect carbon intensities from ElectricityMap" +#: src/Impact/Type.php:252 +msgid "Total Terrestrial eutrophication" msgstr "" -#: entrée standard:35 -msgid "No zone available" +#: src/Impact/Type.php:323 +msgid "Carbon emission in CO₂ equivalent" msgstr "" -#: entrée standard:37 -msgid "Please run the automatic action to downlaod data from this source." +#: src/Impact/Type.php:324 +msgid "Consumption of non renewable resources in Antimony equivalent." +msgstr "" + +#: src/Impact/Type.php:325 +msgid "Primary energy consumed." msgstr "" -#: entrée standard:43 -msgid "Key for electricitymap.org API" +#: src/Impact/Type.php:332 +msgid "Incidence of disease" msgstr "" -#: entrée standard:36 +#: src/Source.php:46 +msgid "Carbon intensity source" +msgid_plural "Carbon intensity sources" +msgstr[0] "碳强度来源" + +#: src/SearchOptions.php:184 src/SearchOptions.php:316 +#: src/SearchOptions.php:329 src/SearchOptions.php:342 +msgid "Ignore environmental impact" +msgstr "" + +#: src/SearchOptions.php:241 src/SearchOptions.php:365 +#: src/SearchOptions.php:442 +msgid "Is historizable" +msgstr "" + +#: src/ComputerType.php:56 +msgid "Unspecified" +msgstr "未指定" + +#: src/ComputerType.php:58 +msgid "Server" +msgstr "服务器" + +#: src/ComputerType.php:59 +msgid "Laptop" +msgstr "笔记本" + +#: src/ComputerType.php:60 +msgid "Tablet" +msgstr "平板" + +#: src/ComputerType.php:61 +msgid "Smartphone" +msgstr "智能手机" + +#: src/UsageImpact.php:39 +msgid "Usage impact" +msgid_plural "Usage impacts" +msgstr[0] "" + +#: src/AbstractModel.php:62 src/Dashboard/Grid.php:58 +#: src/Dashboard/Grid.php:123 src/Dashboard/Grid.php:221 +#: src/AbstractType.php:63 +msgid "Carbon" +msgstr "碳" + +#: src/AbstractModel.php:197 +msgid "Quality" +msgstr "" + +#: src/Report.php:49 +msgid "Carbon report" +msgid_plural "Carbon reports" +msgstr[0] "碳汇报" + +#: src/Report.php:101 +#, php-format msgid "" -"This power value is used as default when the power of a computer model is " -"unknown" +"Demo mode enabled. The data below are not representative of the assets in " +"the database. %sDisable demo mode%s" msgstr "" -#: entrée standard:61 -msgid "Days of week where the computer usually runs" +#: src/ComputerUsageProfile.php:51 +msgid "Computer usage profile" +msgid_plural "Computer usage profiles" +msgstr[0] "" + +#: src/ComputerUsageProfile.php:117 +msgid "Start time is invalid" +msgstr "开始时间无效" + +#: src/ComputerUsageProfile.php:122 +msgid "Stop time is invalid" +msgstr "停止时间无效" + +#: src/Source_Zone.php:72 +msgid "Source name" +msgstr "源名称" + +#: src/Source_Zone.php:80 +msgid "Zone name" +msgstr "区域名称" + +#: src/Source_Zone.php:88 src/Source_Zone.php:171 src/Source_Zone.php:268 +#: src/Zone.php:127 +msgid "Download enabled" +msgstr "启用下载" + +#: src/Source_Zone.php:96 +msgid "Code" +msgstr "编码" + +#: src/Source_Zone.php:150 +msgid "Not downloadable" +msgstr "不可下载" + +#: src/Source_Zone.php:150 +msgid "This is a fallback source, there is no real-time data available" msgstr "" -#: entrée standard:38 -msgid "Warning" +#: src/Source_Zone.php:172 +msgid "Source for historical" +msgstr "历史来源" + +#: src/Source_Zone.php:411 +msgid "Enable / Disable" +msgstr "启用/禁用" + +#: src/CronTask.php:100 +msgid "Find the Alpha3 country code (ISO3166)" +msgstr "查找Alpha3国家代码 (ISO3166)" + +#: src/CronTask.php:101 +msgid "Maximum number of locations to solve" +msgstr "解决的最多地点" + +#: src/CronTask.php:106 +msgid "Download carbon emissions from Watttime" +msgstr "从Watttime下载碳排放" + +#: src/CronTask.php:112 +msgid "Compute usage environmental impact for all assets" msgstr "" -#: entrée standard:33 -msgid "Carbon Emission per Type" +#: src/CronTask.php:113 src/CronTask.php:118 +msgid "Maximum number of entries to calculate" +msgstr "计算的最大条目" + +#: src/CronTask.php:117 +msgid "Compute embodied environmental impact for all assets" msgstr "" -#: entrée standard:33 -msgid "Consumed energy and carbon emission per month" +#: src/CronTask.php:278 +msgid "No zone to download" +msgstr "没有区域供下载" + +#: src/Dashboard/Widget.php:55 src/Dashboard/Grid.php:310 +msgid "Environmental impact information video" msgstr "" -#: entrée standard:40 -msgid "Information" +#: src/Dashboard/Widget.php:62 +msgid "Methodology information" +msgstr "方法信息" + +#: src/Dashboard/Widget.php:71 +msgid "Total Carbon Emission" +msgstr "总碳排放" + +#: src/Dashboard/Widget.php:78 +msgid "Monthly Carbon Emission" +msgstr "每月碳排放" + +#: src/Dashboard/Widget.php:85 src/Dashboard/Widget.php:604 +#: src/Dashboard/Grid.php:268 +msgid "Biggest monthly averaged carbon emission per model" msgstr "" -#: entrée standard:50 +#: src/Dashboard/Widget.php:93 +msgid "Carbon Emission Per month" +msgstr "每月碳排放" + +#: src/Dashboard/Widget.php:100 src/Dashboard/Provider.php:733 +msgid "Usage abiotic depletion potential" +msgstr "非生物资源消耗潜值用例" + +#: src/Dashboard/Widget.php:130 +msgid "Impact criteria" +msgstr "" + +#: src/Dashboard/Widget.php:142 +msgid "Unhandled Computers" +msgstr "未处理的电脑" + +#: src/Dashboard/Widget.php:153 +msgid "Unhandled Monitors" +msgstr "未处理的显示器" + +#: src/Dashboard/Widget.php:164 +msgid "Unhandled Network equipments" +msgstr "未处理的网络设备" + +#: src/Dashboard/Widget.php:175 +msgid "Radar chart" +msgstr "雷达图" + +#: src/Dashboard/Widget.php:501 src/Dashboard/Provider.php:1107 +msgid "Consumed energy and carbon emission per month" +msgstr "" + +#: src/Dashboard/Widget.php:546 src/Dashboard/Widget.php:561 +#: src/Dashboard/Provider.php:1212 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "Carbon emission" +msgstr "碳排放" + +#: src/Dashboard/Widget.php:551 src/Dashboard/Widget.php:564 +#: src/Dashboard/Provider.php:1228 src/Dashboard/DemoProvider.php:106 +#: src/Dashboard/DemoProvider.php:202 +msgid "Consumed energy" +msgstr "消费的电力" + +#: src/Dashboard/Widget.php:746 +#, php-format msgid "" -"Our data is sourced from reliable sources and is meticulously calculated " -"using industry-standard methodologies. We utilize accurate measurement tools" -" and algorithms to ensure the precision and reliability of our environmental" -" metrics." +"Evaluates the usage carbon emission in CO₂ equivalent during the last 2 " +"months. %s More information %s" msgstr "" -#: entrée standard:51 +#: src/Dashboard/Widget.php:812 +#, php-format msgid "" -"As we move towards a greener future, businesses will soon be required to " -"report energy usage and carbon emissions. By 2025, many areas will enforce " -"these regulations. Adopting these practices now ensures compliance and helps" -" combat climate change." +"Evaluates the usage carbon emission in CO₂ equivalent during the last 12 " +"elapsed months. %s More information %s" msgstr "" -#: entrée standard:55 -msgid "Did you know ?" +#: src/Dashboard/Widget.php:854 +msgid "More information" msgstr "" -#: entrée standard:56 +#: src/Dashboard/Widget.php:893 +#, php-format msgid "" -"1 gram of CO₂ is equivalent to the CO₂ emitted when you drive a car for " -"about 20 meters." +"Evaluates the consumption of non renewable resources in Antimony equivalent." +" %s More information %s" msgstr "" -#: entrée standard:81 -#, php-format -msgid "%s rows / page" +#: src/Dashboard/Widget.php:1097 +msgid "Handled percentage" +msgstr "已处理百分比" + +#: src/Dashboard/Provider.php:193 src/Dashboard/Provider.php:316 +#: src/Dashboard/Provider.php:713 src/Dashboard/Provider.php:1212 +#: src/Dashboard/Provider.php:1214 src/Dashboard/DemoProvider.php:88 +#: src/Dashboard/DemoProvider.php:189 +msgid "CO₂eq" +msgstr "CO₂eq" + +#: src/Dashboard/Provider.php:195 src/Dashboard/Provider.php:318 +#: src/Dashboard/Provider.php:1199 src/Toolbox.php:243 +msgid "g" +msgstr "g" + +#: src/Dashboard/Provider.php:196 src/Dashboard/Provider.php:319 +#: src/Dashboard/Provider.php:1200 src/Toolbox.php:244 +msgid "Kg" +msgstr "Kg" + +#: src/Dashboard/Provider.php:197 src/Dashboard/Provider.php:320 +#: src/Dashboard/Provider.php:1201 src/Toolbox.php:245 +msgid "t" +msgstr "t" + +#: src/Dashboard/Provider.php:198 src/Dashboard/Provider.php:321 +#: src/Dashboard/Provider.php:1202 src/Toolbox.php:246 +msgid "Kt" +msgstr "Kt" + +#: src/Dashboard/Provider.php:199 src/Dashboard/Provider.php:322 +#: src/Dashboard/Provider.php:1203 src/Toolbox.php:247 +msgid "Mt" +msgstr "Mt" + +#: src/Dashboard/Provider.php:200 src/Dashboard/Provider.php:323 +#: src/Dashboard/Provider.php:1204 src/Toolbox.php:248 +msgid "Gt" +msgstr "Gt" + +#: src/Dashboard/Provider.php:201 src/Dashboard/Provider.php:324 +#: src/Dashboard/Provider.php:1205 src/Toolbox.php:249 +msgid "Tt" +msgstr "Tt" + +#: src/Dashboard/Provider.php:202 src/Dashboard/Provider.php:325 +#: src/Dashboard/Provider.php:1206 src/Toolbox.php:250 +msgid "Pt" +msgstr "Pt" + +#: src/Dashboard/Provider.php:203 src/Dashboard/Provider.php:326 +#: src/Dashboard/Provider.php:1207 src/Toolbox.php:251 +msgid "Et" +msgstr "Et" + +#: src/Dashboard/Provider.php:204 src/Dashboard/Provider.php:327 +#: src/Dashboard/Provider.php:1208 src/Toolbox.php:252 +msgid "Zt" +msgstr "Zt" + +#: src/Dashboard/Provider.php:205 src/Dashboard/Provider.php:328 +#: src/Dashboard/Provider.php:1209 src/Toolbox.php:253 +msgid "Yt" +msgstr "Yt" + +#: src/Dashboard/Provider.php:427 +msgid "handled assets ratio" +msgstr "已处理资产比率" + +#: src/Dashboard/Provider.php:473 src/Dashboard/Grid.php:63 +msgid "Handled assets ratio" +msgstr "已处理的资产比率" + +#: src/Dashboard/Provider.php:497 src/Dashboard/DemoProvider.php:297 +msgid "Handled" +msgstr "已处理" + +#: src/Dashboard/Provider.php:502 src/Dashboard/DemoProvider.php:302 +msgid "Unhandled" +msgstr "未处理" + +#: src/Dashboard/Provider.php:507 +msgid "Ignored" msgstr "" -#: entrée standard:90 +#: src/Dashboard/Provider.php:534 src/Dashboard/DemoProvider.php:242 #, php-format -msgid "Showing %s to %s of %s rows" -msgstr "" +msgid "plugin carbon - handled %s" +msgstr "插件 carbon - 已处理 %s" -#: entrée standard:94 +#: src/Dashboard/Provider.php:535 src/Dashboard/DemoProvider.php:243 #, php-format -msgid "%s-%s/%s" +msgid "plugin carbon - unhandled %s" +msgstr "插件 carbon - 未处理 %s" + +#: src/Dashboard/Provider.php:584 +#, php-format +msgid "plugin carbon - ignored %s" msgstr "" -#: entrée standard:104 -msgid "Start" +#: src/Dashboard/Provider.php:632 +msgid "plugin carbon - Total usage power consumption" msgstr "" -#: entrée standard:109 -msgid "Previous" +#: src/Dashboard/Provider.php:701 src/Dashboard/DemoProvider.php:325 +msgid "plugin carbon - Usage carbon emission" msgstr "" -#: entrée standard:118 -#, php-format -msgid "%s-%s of %s" +#: src/Dashboard/Provider.php:747 +msgid "Sbeq" +msgstr "Sbeq" + +#: src/Dashboard/Provider.php:1035 +msgid "Total abiotic depletion potential" msgstr "" -#: entrée standard:141 -msgid "Next" +#: src/Dashboard/Provider.php:1051 +msgid "Embodied abiotic depletion potential" msgstr "" -#: entrée standard:146 -msgid "End" +#: src/Dashboard/Provider.php:1054 +msgid "Total usage abiotic depletion potential" +msgstr "" + +#: src/Dashboard/Provider.php:1066 +msgid "Total global warming potential" +msgstr "总全球暖化指数" + +#: src/Dashboard/Provider.php:1082 +msgid "Embodied global warming potential" +msgstr "" + +#: src/Dashboard/Provider.php:1085 +msgid "Total usage global warming potential" +msgstr "" + +#: src/Dashboard/Provider.php:1218 src/Toolbox.php:316 +msgid "KWh" +msgstr "KWh" + +#: src/Dashboard/Provider.php:1219 src/Toolbox.php:317 +msgid "MWh" +msgstr "MWh" + +#: src/Dashboard/Provider.php:1220 src/Toolbox.php:318 +msgid "GWh" +msgstr "GWh" + +#: src/Dashboard/Provider.php:1221 src/Toolbox.php:319 +msgid "TWh" +msgstr "TWh" + +#: src/Dashboard/Provider.php:1222 src/Toolbox.php:320 +msgid "PWh" +msgstr "PWh" + +#: src/Dashboard/Provider.php:1223 src/Toolbox.php:321 +msgid "EWh" +msgstr "EWh" + +#: src/Dashboard/Provider.php:1224 src/Toolbox.php:322 +msgid "ZWh" +msgstr "ZWh" + +#: src/Dashboard/Provider.php:1225 src/Toolbox.php:323 +msgid "YWh" +msgstr "YWh" + +#: src/Dashboard/Grid.php:72 +msgid "Handled assets count" +msgstr "已处理的资产数量" + +#: src/Dashboard/Grid.php:135 +#, php-format +msgid "Handled %s" +msgstr "已处理 %s" + +#: src/Dashboard/Grid.php:146 +#, php-format +msgid "Unhandled %s" +msgstr "未处理 %s" + +#: src/Dashboard/Grid.php:232 +#, php-format +msgid "Unhandled %s ratio" +msgstr "已处理 %s 比率" + +#: src/Dashboard/Grid.php:244 +msgid "Usage carbon emission year to date" msgstr "" -#: entrée standard:50 standard:281 -msgid "No data" +#: src/Dashboard/Grid.php:250 +msgid "Monthly carbon emission" +msgstr "每月碳排放" + +#: src/Dashboard/Grid.php:259 +msgid "Usage global warming potential chart" msgstr "" -#: entrée standard:88 -msgid "Check all" +#: src/Dashboard/Grid.php:315 +msgid "Environmental impact methodology information" msgstr "" -#: entrée standard:123 -msgid "Filter" +#: src/Dashboard/DemoProvider.php:76 +msgid "Usage carbon emission per month" +msgstr "每月碳排放量" + +#: src/Dashboard/DemoProvider.php:274 +msgid "plugin carbon - handled assets ratio" msgstr "" -#: entrée standard:129 -msgid "Export" +#: src/Dashboard/Dashboard.php:68 +msgid "Carbon dioxyde intensity" msgstr "" -#: entrée standard:184 -msgid "All" +#: src/Location.php:189 +msgid "Carbon intensity source and zone" msgstr "" -#: entrée standard:310 +#: src/CarbonIntensity.php:87 +msgid "Emission date" +msgstr "排放数据" + +#: src/CarbonIntensity.php:114 +msgid "Intensity" +msgstr "强度" + +#: src/CarbonEmission.php:49 +msgid "Carbon Emission" +msgid_plural "Carbon Emissions" +msgstr[0] "碳排放" + +#: src/CarbonEmission.php:120 +msgid "Energy" +msgstr "能源" + +#: src/CarbonEmission.php:128 +msgid "Emission" +msgstr "排放" + +#: src/CarbonEmission.php:136 +msgid "Energy quality" +msgstr "能源质量" + +#: src/CarbonEmission.php:144 +msgid "Emission quality" +msgstr "排放质量" + +#: src/Toolbox.php:280 +msgid "W" +msgstr "W" + +#: src/Toolbox.php:281 +msgid "KW" +msgstr "KW" + +#: src/Toolbox.php:282 +msgid "MW" +msgstr "MW" + +#: src/Toolbox.php:283 +msgid "GW" +msgstr "GW" + +#: src/Toolbox.php:284 +msgid "TW" +msgstr "TW" + +#: src/Toolbox.php:285 +msgid "PW" +msgstr "PW" + +#: src/Toolbox.php:286 +msgid "EW" +msgstr "EW" + +#: src/Toolbox.php:287 +msgid "ZW" +msgstr "ZW" + +#: src/Toolbox.php:288 +msgid "YW" +msgstr "YW" + +#: src/Toolbox.php:315 +msgid "Wh" +msgstr "Wh" + +#: src/Toolbox.php:373 src/Toolbox.php:378 #, php-format -msgid "Show %s entries" +msgid "%1$s %2$s" msgstr "" -#: entrée standard:42 -msgid "Compared to last month" +#: setup.php:285 +msgid "Environmental Impact" +msgstr "环境影响" + +#: hook.php:97 +msgid "" +"Please check the logs for more details. Fill an issue in the repository of " +"the plugin." msgstr "" -#: entrée standard:35 -msgid "Want to know more ?" +#: hook.php:301 +msgid "Associate to an usage profile" msgstr "" -#: entrée standard:36 -msgid "Here is a video about the impact of numeric on the enviromnent." +#: hook.php:302 hook.php:307 +msgid "Delete all calculated environmental impacts" msgstr "" -#: entrée standard:33 -msgid "Carbon Emission per Month" +#: hook.php:311 hook.php:316 hook.php:320 +msgid "Update type power consumption" msgstr "" -#: entrée standard:36 -msgid "" -"This power value is used as default when the power of a network equipment " -"model is unknown" +#: hook.php:312 +msgid "Update category" +msgstr "更新分类" + +#: hook.php:324 +msgid "Update zone for Boavizta engine" msgstr "" -#: entrée standard:36 -msgid "" -"This power value is used as default when the power of a monitor model is " -"unknown" +#: hook.php:325 +msgid "Update carbon intensity source and zone" msgstr "" -#: entrée standard:36 -msgid "Usage information" +#: install/install/create_automatic_actions.php:52 +msgid "Find the Alpha3 country code (ISO3166) of locations" +msgstr "查找此地点的Alpha3国家代码(ISO3166)" + +#: install/install/create_automatic_actions.php:64 +msgid "Compute carbon emissions of computers" +msgstr "计算电脑的碳排放" + +#: install/install/create_automatic_actions.php:76 +msgid "Compute embodied impact of assets" msgstr "" -#: entrée standard:41 -msgid "Usage profile" -msgid_plural "Usage profiles" -msgstr[0] "" +#: install/install/create_uasge_profiles.php:41 +msgid "Always on" +msgstr "一直开启" + +#: install/install/create_uasge_profiles.php:52 +msgid "Office hours" +msgstr "办公时间" + +#: front/usageimpact.form.php:66 front/usageimpact.form.php:100 +#: front/embodiedimpact.form.php:63 front/embodiedimpact.form.php:86 +msgid "Missing arguments in request." +msgstr "请求缺少参数" + +#: front/usageimpact.form.php:80 front/usageimpact.form.php:106 +#: front/usageimpact.form.php:114 front/embodiedimpact.form.php:92 +msgid "Bad arguments." +msgstr "错误参数" + +#: front/usageimpact.form.php:90 front/embodiedimpact.form.php:68 +#: front/embodiedimpact.form.php:77 +msgid "Reset denied." +msgstr "重置被拒绝。" + +#: front/usageimpact.form.php:95 front/embodiedimpact.form.php:82 +msgid "Reset failed." +msgstr "重置失败。" + +#: front/usageimpact.form.php:122 +msgid "Missing data prevents historization of this asset." +msgstr "" + +#: front/usageimpact.form.php:125 +msgid "Update of global warming potential failed." +msgstr "更新全球暖化指数失败" + +#: front/usageimpact.form.php:131 front/embodiedimpact.form.php:101 +msgid "Unable to find calculation engine for this asset." +msgstr "" + +#: front/usageimpact.form.php:136 +msgid "Update of usage impact failed." +msgstr "" From 5fad28c7fb07a624fe67744a64b75e1751a95e39 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Wed, 15 Apr 2026 08:04:50 +0200 Subject: [PATCH 05/13] chore: dependencies update --- composer.lock | 85 ++++++++++++++++++++++++++------------------------- 1 file changed, 43 insertions(+), 42 deletions(-) diff --git a/composer.lock b/composer.lock index 2f3d9435..770a9b24 100644 --- a/composer.lock +++ b/composer.lock @@ -826,16 +826,16 @@ }, { "name": "symfony/console", - "version": "v6.4.35", + "version": "v6.4.36", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "49257c96304c508223815ee965c251e7c79e614e" + "reference": "9f481cfb580db8bcecc9b2d4c63f3e13df022ad5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/49257c96304c508223815ee965c251e7c79e614e", - "reference": "49257c96304c508223815ee965c251e7c79e614e", + "url": "https://api.github.com/repos/symfony/console/zipball/9f481cfb580db8bcecc9b2d4c63f3e13df022ad5", + "reference": "9f481cfb580db8bcecc9b2d4c63f3e13df022ad5", "shasum": "" }, "require": { @@ -900,7 +900,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.4.35" + "source": "https://github.com/symfony/console/tree/v6.4.36" }, "funding": [ { @@ -920,7 +920,7 @@ "type": "tidelift" } ], - "time": "2026-03-06T13:31:08+00:00" + "time": "2026-03-27T15:30:51+00:00" }, { "name": "symfony/deprecation-contracts", @@ -991,16 +991,16 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.33.0", + "version": "v1.35.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" + "reference": "141046a8f9477948ff284fa65be2095baafb94f2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", - "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/141046a8f9477948ff284fa65be2095baafb94f2", + "reference": "141046a8f9477948ff284fa65be2095baafb94f2", "shasum": "" }, "require": { @@ -1050,7 +1050,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.35.0" }, "funding": [ { @@ -1070,20 +1070,20 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2026-04-10T16:19:22+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.33.0", + "version": "v1.35.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70" + "reference": "ad1b7b9092976d6c948b8a187cec9faaea9ec1df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70", - "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/ad1b7b9092976d6c948b8a187cec9faaea9ec1df", + "reference": "ad1b7b9092976d6c948b8a187cec9faaea9ec1df", "shasum": "" }, "require": { @@ -1132,7 +1132,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.35.0" }, "funding": [ { @@ -1152,11 +1152,11 @@ "type": "tidelift" } ], - "time": "2025-06-27T09:58:17+00:00" + "time": "2026-04-10T16:19:22+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.33.0", + "version": "v1.35.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", @@ -1217,7 +1217,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.35.0" }, "funding": [ { @@ -1241,16 +1241,16 @@ }, { "name": "symfony/polyfill-mbstring", - "version": "v1.33.0", + "version": "v1.35.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493" + "reference": "6a21eb99c6973357967f6ce3708cd55a6bec6315" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493", - "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6a21eb99c6973357967f6ce3708cd55a6bec6315", + "reference": "6a21eb99c6973357967f6ce3708cd55a6bec6315", "shasum": "" }, "require": { @@ -1302,7 +1302,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.35.0" }, "funding": [ { @@ -1322,7 +1322,7 @@ "type": "tidelift" } ], - "time": "2024-12-23T08:48:59+00:00" + "time": "2026-04-10T17:25:58+00:00" }, { "name": "symfony/service-contracts", @@ -1413,16 +1413,16 @@ }, { "name": "symfony/string", - "version": "v7.4.6", + "version": "v7.4.8", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "9f209231affa85aa930a5e46e6eb03381424b30b" + "reference": "114ac57257d75df748eda23dd003878080b8e688" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/9f209231affa85aa930a5e46e6eb03381424b30b", - "reference": "9f209231affa85aa930a5e46e6eb03381424b30b", + "url": "https://api.github.com/repos/symfony/string/zipball/114ac57257d75df748eda23dd003878080b8e688", + "reference": "114ac57257d75df748eda23dd003878080b8e688", "shasum": "" }, "require": { @@ -1480,7 +1480,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v7.4.6" + "source": "https://github.com/symfony/string/tree/v7.4.8" }, "funding": [ { @@ -1500,20 +1500,20 @@ "type": "tidelift" } ], - "time": "2026-02-09T09:33:46+00:00" + "time": "2026-03-24T13:12:05+00:00" }, { "name": "twig/twig", - "version": "v3.23.0", + "version": "v3.24.0", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "a64dc5d2cc7d6cafb9347f6cd802d0d06d0351c9" + "reference": "a6769aefb305efef849dc25c9fd1653358c148f0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/a64dc5d2cc7d6cafb9347f6cd802d0d06d0351c9", - "reference": "a64dc5d2cc7d6cafb9347f6cd802d0d06d0351c9", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/a6769aefb305efef849dc25c9fd1653358c148f0", + "reference": "a6769aefb305efef849dc25c9fd1653358c148f0", "shasum": "" }, "require": { @@ -1523,7 +1523,8 @@ "symfony/polyfill-mbstring": "^1.3" }, "require-dev": { - "phpstan/phpstan": "^2.0", + "php-cs-fixer/shim": "^3.0@stable", + "phpstan/phpstan": "^2.0@stable", "psr/container": "^1.0|^2.0", "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0" }, @@ -1567,7 +1568,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.23.0" + "source": "https://github.com/twigphp/Twig/tree/v3.24.0" }, "funding": [ { @@ -1579,20 +1580,20 @@ "type": "tidelift" } ], - "time": "2026-01-23T21:00:41+00:00" + "time": "2026-03-17T21:31:11+00:00" } ], "aliases": [], "minimum-stability": "stable", - "stability-flags": [], + "stability-flags": {}, "prefer-stable": false, "prefer-lowest": false, "platform": { "php": ">=8.2.0" }, - "platform-dev": [], + "platform-dev": {}, "platform-overrides": { "php": "8.2.0" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.9.0" } From 98fc9c34a60293a966782d2211d9ddff8e03dcd4 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Tue, 14 Apr 2026 15:02:22 +0200 Subject: [PATCH 06/13] fix(Datasource\CarbonIntensity\ElectricityMaps\Client): various data handling issues causing fatal errors --- .../ElectricityMaps/Client.php | 19 +++++++------------ src/DataSource/CarbonIntensity/Rte/Client.php | 8 +++----- src/DataTracking/AbstractTracked.php | 1 + 3 files changed, 11 insertions(+), 17 deletions(-) diff --git a/src/DataSource/CarbonIntensity/ElectricityMaps/Client.php b/src/DataSource/CarbonIntensity/ElectricityMaps/Client.php index 6dee6771..7272e151 100644 --- a/src/DataSource/CarbonIntensity/ElectricityMaps/Client.php +++ b/src/DataSource/CarbonIntensity/ElectricityMaps/Client.php @@ -285,7 +285,7 @@ public function fetchRange(DateTimeImmutable $start, DateTimeImmutable $stop, So // If cached file exists, use it if (file_exists($cache_file)) { $full_response = json_decode(file_get_contents($cache_file), true); - return $full_response; + return $full_response['data']; } else { $cache_dir = dirname($cache_file); if (!is_dir($cache_dir)) { @@ -382,19 +382,14 @@ protected function formatOutput(array $response, int $step): array // This is needed to detect later the switching to winter time $response = $this->shiftToLocalTimezone($response); $intensities = []; - foreach ($response['data'] as $record) { - $datetime = $record['datetime']; - if (!$datetime instanceof DateTimeInterface) { - var_dump(DateTime::getLastErrors()); - continue; - } + array_walk($response, function ($record) use (&$intensities) { $data_quality = $this->getDataQuality($record); $intensities[] = [ - 'datetime' => $datetime->format(DateTime::ATOM), + 'datetime' => $record['datetime']->format('Y-m-d\TH:00:00'), 'intensity' => $record['carbonIntensity'], 'data_quality' => $data_quality, ]; - } + }); return $intensities; } @@ -403,7 +398,7 @@ protected function formatOutput(array $response, int $step): array * convert dates to the timezone of GLPI * * @param array $response - * @return array array of records: ['date_heure' => string, 'taux_co2' => number, 'datetime' => DateTime] + * @return array array of records: ['datetime' => DateTime, 'carbonintensity' => number] */ protected function shiftToLocalTimezone(array $response): array { @@ -412,7 +407,7 @@ protected function shiftToLocalTimezone(array $response): array $shifted_response = []; $local_timezone = new DateTimeZone($DB->guessTimezone()); - array_walk($response['data'], function ($item, $key) use (&$shifted_response, $local_timezone) { + array_walk($response, function ($item, $key) use (&$shifted_response, $local_timezone) { $shifted_date_object = DateTime::createFromFormat('Y-m-d\TH:i:s.vp', $item['datetime']) ->setTimezone($local_timezone); $shifted_date_string = $shifted_date_object->format('Y-m-d H:i:sP'); @@ -423,7 +418,7 @@ protected function shiftToLocalTimezone(array $response): array $shifted_response[$shifted_date_string] = $item; }); - return ['zone' => $response['zone'], 'data' => $shifted_response]; + return $shifted_response; } /** diff --git a/src/DataSource/CarbonIntensity/Rte/Client.php b/src/DataSource/CarbonIntensity/Rte/Client.php index 2d83442b..f98fe488 100644 --- a/src/DataSource/CarbonIntensity/Rte/Client.php +++ b/src/DataSource/CarbonIntensity/Rte/Client.php @@ -315,13 +315,11 @@ public function fetchRange(DateTimeImmutable $start, DateTimeImmutable $stop, So } catch (RuntimeException $e) { return []; } - if (count($response) === 0) { - return []; - } $this->step = $this->detectStep($response); $expected_samples_count = $expected_samples_hours * (60 / $this->step); $expected_samples_count--; // End boundary is excluded, decreasing the expeected count by 1 if (($dataset === self::DATASET_REALTIME && abs(count($response) - $expected_samples_count) > (60 / $this->step))) { + // Got less samples than expected, try again with consolidated data set $alt_response = $this->fetchRange($start, $stop, $source_zone, self::DATASET_CONSOLIDATED); if (!isset($alt_response['error_code']) && count($alt_response) > count($response)) { // Use the alternative response if more samples than the original response @@ -359,9 +357,9 @@ protected function formatOutput(array $response, int $step): array $intensities = $this->downsample($response, $this->step); } else { $intensities = []; - array_walk($response, function ($record) use ($intensities) { + array_walk($response, function ($record) use (&$intensities) { $intensities[] = [ - 'datetime' => $record['datetime']->format('Y-m-d\TH:00:00??????'), + 'datetime' => $record['datetime']->format('Y-m-d\TH:00:00'), 'intensity' => (float) $record['taux_co2'], 'data_quality' => AbstractTracked::DATA_QUALITY_RAW_REAL_TIME_MEASUREMENT, ]; diff --git a/src/DataTracking/AbstractTracked.php b/src/DataTracking/AbstractTracked.php index f2c94699..c31902c7 100644 --- a/src/DataTracking/AbstractTracked.php +++ b/src/DataTracking/AbstractTracked.php @@ -54,6 +54,7 @@ abstract class AbstractTracked public const DATA_QUALITY_RAW_REAL_TIME_MEASUREMENT_DOWNSAMPLED = 3; public const DATA_QUALITY_RAW_REAL_TIME_MEASUREMENT = 4; + /** @var array $sources Source qualities */ protected array $sources = []; abstract public function getValue(); From be93fb9bc075b37a2a59cdec4357c05b208f3b14 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Thu, 9 Apr 2026 11:07:23 +0200 Subject: [PATCH 07/13] bump(1.2.0-beta.1) --- package-lock.json | 1881 ++++++++++++++++++--------------------------- plugin.xml | 15 + setup.php | 8 +- 3 files changed, 749 insertions(+), 1155 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1cb6b224..5196df99 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "carbon", - "version": "1.0.0-beta.3", + "version": "1.2.0-beta.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "carbon", - "version": "1.0.0-beta.3", + "version": "1.2.0-beta.1", "hasInstallScript": true, "license": "GPL-3.0-or-later", "dependencies": { @@ -25,49 +25,34 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.24.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", - "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", + "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", "dev": true, "peer": true, "dependencies": { - "@babel/highlight": "^7.24.2", - "picocolors": "^1.0.0" + "@babel/helper-validator-identifier": "^7.28.5", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz", - "integrity": "sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", "dev": true, "peer": true, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/highlight": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.5.tgz", - "integrity": "sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==", - "dev": true, - "peer": true, - "dependencies": { - "@babel/helper-validator-identifier": "^7.24.5", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@csstools/css-parser-algorithms": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.6.3.tgz", - "integrity": "sha512-xI/tL2zxzEbESvnSxwFgwvy5HS00oCXxL4MLs6HUiDcYfwowsoQaABKxUElp1ARITrINzBnsECOc1q0eg2GOrA==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.7.1.tgz", + "integrity": "sha512-2SJS42gxmACHgikc1WGesXLIT8d/q2l0UFM7TaEeIzdFCE/FPMtTiizcPGGJtlPo2xuQzY09OhrLTzRxqJqwGw==", "dev": true, "funding": [ { @@ -84,13 +69,13 @@ "node": "^14 || ^16 || >=18" }, "peerDependencies": { - "@csstools/css-tokenizer": "^2.3.1" + "@csstools/css-tokenizer": "^2.4.1" } }, "node_modules/@csstools/css-tokenizer": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.3.1.tgz", - "integrity": "sha512-iMNHTyxLbBlWIfGtabT157LH9DUx9X8+Y3oymFEuMj8HNc+rpE3dPFGFgHjpKfjeFDjLjYIAIhXPGvS2lKxL9g==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.4.1.tgz", + "integrity": "sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg==", "dev": true, "funding": [ { @@ -108,9 +93,9 @@ } }, "node_modules/@csstools/media-query-list-parser": { - "version": "2.1.11", - "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.11.tgz", - "integrity": "sha512-uox5MVhvNHqitPP+SynrB1o8oPxPMt2JLgp5ghJOWf54WGQ5OKu47efne49r1SWqs3wRP8xSWjnO9MBKxhB1dA==", + "version": "2.1.13", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.13.tgz", + "integrity": "sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA==", "dev": true, "funding": [ { @@ -127,31 +112,8 @@ "node": "^14 || ^16 || >=18" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^2.6.3", - "@csstools/css-tokenizer": "^2.3.1" - } - }, - "node_modules/@csstools/selector-specificity": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.1.1.tgz", - "integrity": "sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "peer": true, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss-selector-parser": "^6.0.13" + "@csstools/css-parser-algorithms": "^2.7.1", + "@csstools/css-tokenizer": "^2.4.1" } }, "node_modules/@discoveryjs/json-ext": { @@ -163,113 +125,23 @@ "node": ">=10.0.0" } }, - "node_modules/@isaacs/balanced-match": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz", - "integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": "20 || >=22" - } - }, - "node_modules/@isaacs/brace-expansion": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz", - "integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@isaacs/balanced-match": "^4.0.1" - }, - "engines": { - "node": "20 || >=22" - } - }, "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "license": "ISC", - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-9.0.0.tgz", + "integrity": "sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==", "dev": true, - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "node": ">=18" } }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", "dev": true, "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/sourcemap-codec": "^1.5.0", "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" } }, "node_modules/@jridgewell/resolve-uri": { @@ -281,19 +153,10 @@ "node": ">=6.0.0" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", "dev": true, "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", @@ -301,15 +164,15 @@ } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "dev": true, "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", @@ -355,9 +218,9 @@ } }, "node_modules/@types/eslint": { - "version": "8.56.10", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.10.tgz", - "integrity": "sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==", + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", + "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", "dev": true, "dependencies": { "@types/estree": "*", @@ -375,9 +238,9 @@ } }, "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", "dev": true }, "node_modules/@types/json-schema": { @@ -394,12 +257,12 @@ "peer": true }, "node_modules/@types/node": { - "version": "20.12.10", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.10.tgz", - "integrity": "sha512-Eem5pH9pmWBHoGAT8Dr5fdc5rYA+4NAovdM4EktRPVAAiJhmWWfQrA0cFhAbOsQdSfIHjAud6YdkbL69+zSKjw==", + "version": "25.6.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.6.0.tgz", + "integrity": "sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ==", "dev": true, "dependencies": { - "undici-types": "~5.26.4" + "undici-types": "~7.19.0" } }, "node_modules/@types/normalize-package-data": { @@ -410,148 +273,148 @@ "peer": true }, "node_modules/@webassemblyjs/ast": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", - "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "dev": true, "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", "dev": true }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", "dev": true }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", - "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", "dev": true }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "dev": true, "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", "dev": true }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", - "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.12.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "dev": true, "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "dev": true, "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", "dev": true }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", - "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-opt": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1", - "@webassemblyjs/wast-printer": "1.12.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", - "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", - "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", - "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", - "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, @@ -617,9 +480,9 @@ "integrity": "sha512-FQXkOta0XBSUPHndIKON2Y9JeQz5ZeMqLYZVVK93FliNBFm7LNMIZmY6FrMEB9XPcDbE2bekMbZD6kzDkxwYjA==" }, "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -628,25 +491,28 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "node_modules/acorn-import-phases": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz", + "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==", "dev": true, + "engines": { + "node": ">=10.13.0" + }, "peerDependencies": { - "acorn": "^8" + "acorn": "^8.14.0" } }, "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz", + "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" }, "funding": { "type": "github", @@ -670,35 +536,16 @@ } } }, - "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", - "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.3", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" + "fast-deep-equal": "^3.1.3" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-formats/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, "peerDependencies": { - "ajv": "^6.9.1" + "ajv": "^8.8.2" } }, "node_modules/ansi-regex": { @@ -706,27 +553,31 @@ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, + "peer": true, "engines": { "node": ">=8" } }, "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "peer": true, "dependencies": { - "color-convert": "^1.9.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/apexcharts": { - "version": "3.49.0", - "resolved": "https://registry.npmjs.org/apexcharts/-/apexcharts-3.49.0.tgz", - "integrity": "sha512-2T9HnbQFLCuYRPndQLmh+bEQFoz0meUbvASaGgiSKDuYhWcLBodJtIpKql2aOtMx4B/sHrWW0dm90HsW4+h2PQ==", + "version": "3.54.1", + "resolved": "https://registry.npmjs.org/apexcharts/-/apexcharts-3.54.1.tgz", + "integrity": "sha512-E4et0h/J1U3r3EwS/WlqJCQIbepKbp6wGUmaAwJOMjHUP4Ci0gxanLa7FR3okx6p9coi4st6J853/Cb1NP0vpA==", "dependencies": { "@yr/monotone-cubic-spline": "^1.0.3", "svg.draggable.js": "^2.2.2", @@ -775,11 +626,25 @@ } }, "node_modules/balanced-match": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", - "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", "dev": true, - "peer": true + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/baseline-browser-mapping": { + "version": "2.10.17", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.17.tgz", + "integrity": "sha512-HdrkN8eVG2CXxeifv/VdJ4A4RSra1DTW8dc/hdxzhGHN8QePs6gKaWM9pHPcpCoxYZJuOZ8drHmbdpLHjCYjLA==", + "dev": true, + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } }, "node_modules/big.js": { "version": "5.2.2", @@ -791,42 +656,34 @@ } }, "node_modules/brace-expansion": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz", + "integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==", "dev": true, - "license": "MIT", - "peer": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" } }, - "node_modules/brace-expansion/node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true, - "license": "MIT", - "peer": true - }, "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, "peer": true, "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" } }, "node_modules/browserslist": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "version": "4.28.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", + "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==", "dev": true, "funding": [ { @@ -843,10 +700,11 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001587", - "electron-to-chromium": "^1.4.668", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "baseline-browser-mapping": "^2.10.12", + "caniuse-lite": "^1.0.30001782", + "electron-to-chromium": "^1.5.328", + "node-releases": "^2.0.36", + "update-browserslist-db": "^1.2.3" }, "bin": { "browserslist": "cli.js" @@ -904,9 +762,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001616", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001616.tgz", - "integrity": "sha512-RHVYKov7IcdNjVHJFNY/78RdG4oGVjbayxv8u5IO74Wv7Hlq4PnJE6mo/OjFijjVFNy5ijnCt6H3IIo4t+wfEw==", + "version": "1.0.30001787", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001787.tgz", + "integrity": "sha512-mNcrMN9KeI68u7muanUpEejSLghOKlVhRqS/Za2IeyGllJ9I9otGpR9g3nsw7n4W378TE/LyIteA0+/FOZm4Kg==", "dev": true, "funding": [ { @@ -923,48 +781,10 @@ } ] }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "peer": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chalk/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/chalk/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "peer": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", "dev": true, "engines": { "node": ">=6.0" @@ -984,20 +804,35 @@ "node": ">=6" } }, + "node_modules/clone-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "peer": true, "dependencies": { - "color-name": "1.1.3" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true, "peer": true }, @@ -1025,7 +860,6 @@ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true, - "license": "MIT", "peer": true }, "node_modules/copy-webpack-plugin": { @@ -1033,7 +867,6 @@ "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-13.0.1.tgz", "integrity": "sha512-J+YV3WfhY6W/Xf9h+J1znYuqTye2xkBUIGyTPWuBAT27qajBa5mR4f8WBmfDY3YjRftT2kqZZiLi1qf0H+UOFw==", "dev": true, - "license": "MIT", "dependencies": { "glob-parent": "^6.0.1", "normalize-path": "^3.0.0", @@ -1052,76 +885,6 @@ "webpack": "^5.1.0" } }, - "node_modules/copy-webpack-plugin/node_modules/ajv": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.3", - "fast-uri": "^3.0.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/copy-webpack-plugin/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/copy-webpack-plugin/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/copy-webpack-plugin/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true, - "license": "MIT" - }, - "node_modules/copy-webpack-plugin/node_modules/schema-utils": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", - "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, "node_modules/cosmiconfig": { "version": "8.3.6", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", @@ -1154,7 +917,6 @@ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, - "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -1165,13 +927,13 @@ } }, "node_modules/css-functions-list": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.2.tgz", - "integrity": "sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.3.3.tgz", + "integrity": "sha512-8HFEBPKhOpJPEPu70wJJetjKta86Gw9+CCyCnB3sui2qQfOvRyqBy4IKLKKAwdMpWb2lHXWk9Wb4Z6AmaUT1Pg==", "dev": true, "peer": true, "engines": { - "node": ">=12 || >=16" + "node": ">=12" } }, "node_modules/css-loader": { @@ -1236,13 +998,13 @@ } }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "dev": true, "peer": true, "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -1316,24 +1078,18 @@ "node": ">=8" } }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true, - "license": "MIT" - }, "node_modules/electron-to-chromium": { - "version": "1.4.757", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.757.tgz", - "integrity": "sha512-jftDaCknYSSt/+KKeXzH3LX5E2CvRLm75P3Hj+J/dv3CL0qUYcOt13d5FN1NiL5IJbbhzHrb3BomeG2tkSlZmw==", + "version": "1.5.334", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.334.tgz", + "integrity": "sha512-mgjZAz7Jyx1SRCwEpy9wefDS7GvNPazLthHg8eQMJ76wBdGQQDW33TCrUTvQ4wzpmOrv2zrFoD3oNufMdyMpog==", "dev": true }, "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true + "dev": true, + "peer": true }, "node_modules/emojis-list": { "version": "3.0.0", @@ -1345,22 +1101,22 @@ } }, "node_modules/enhanced-resolve": { - "version": "5.16.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz", - "integrity": "sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==", + "version": "5.20.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz", + "integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==", "dev": true, "dependencies": { "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "tapable": "^2.3.0" }, "engines": { "node": ">=10.13.0" } }, "node_modules/envinfo": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz", - "integrity": "sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.21.0.tgz", + "integrity": "sha512-Lw7I8Zp5YKHFCXL7+Dz95g4CcbMEpgvqZNNq3AmlT5XAV6CgAAk6gyAMqn2zjw08K9BHfcNuKrMiCPLByGafow==", "dev": true, "bin": { "envinfo": "dist/cli.js" @@ -1370,9 +1126,9 @@ } }, "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz", + "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==", "dev": true, "peer": true, "dependencies": { @@ -1380,30 +1136,20 @@ } }, "node_modules/es-module-lexer": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.2.tgz", - "integrity": "sha512-l60ETUTmLqbVbVHv1J4/qj+M8nq7AwMzEcg3kmJDt9dCNrTk+yHcYFf/Kw75pMDwd9mPcIGCG5LcS20SxYRzFA==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.0.0.tgz", + "integrity": "sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==", "dev": true }, "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, "engines": { "node": ">=6" } }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "peer": true, - "engines": { - "node": ">=0.8.0" - } - }, "node_modules/eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", @@ -1463,9 +1209,9 @@ "dev": true }, "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", "dev": true, "peer": true, "dependencies": { @@ -1473,12 +1219,25 @@ "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "micromatch": "^4.0.8" }, "engines": { "node": ">=8.6.0" } }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "peer": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", @@ -1499,8 +1258,7 @@ "type": "opencollective", "url": "https://opencollective.com/fastify" } - ], - "license": "BSD-3-Clause" + ] }, "node_modules/fastest-levenshtein": { "version": "1.0.16", @@ -1512,9 +1270,9 @@ } }, "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", "dev": true, "peer": true, "dependencies": { @@ -1554,10 +1312,59 @@ "webpack": "^4.0.0 || ^5.0.0" } }, + "node_modules/file-loader/node_modules/ajv": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.14.0.tgz", + "integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/file-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/file-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, "peer": true, "dependencies": { @@ -1568,16 +1375,20 @@ } }, "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, + "peer": true, "dependencies": { - "locate-path": "^5.0.0", + "locate-path": "^6.0.0", "path-exists": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/flat": { @@ -1605,9 +1416,9 @@ } }, "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", + "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", "dev": true, "peer": true }, @@ -1616,7 +1427,6 @@ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", "dev": true, - "license": "ISC", "dependencies": { "cross-spawn": "^7.0.6", "signal-exit": "^4.0.1" @@ -1633,7 +1443,6 @@ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true, - "license": "ISC", "peer": true }, "node_modules/function-bind": { @@ -1646,15 +1455,15 @@ } }, "node_modules/glob": { - "version": "11.0.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.3.tgz", - "integrity": "sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-11.1.0.tgz", + "integrity": "sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw==", + "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", "dev": true, - "license": "ISC", "dependencies": { "foreground-child": "^3.3.1", "jackspeak": "^4.1.1", - "minimatch": "^10.0.3", + "minimatch": "^10.1.1", "minipass": "^7.1.2", "package-json-from-dist": "^1.0.0", "path-scurry": "^2.0.0" @@ -1670,16 +1479,15 @@ } }, "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, - "peer": true, "dependencies": { - "is-glob": "^4.0.1" + "is-glob": "^4.0.3" }, "engines": { - "node": ">= 6" + "node": ">=10.13.0" } }, "node_modules/glob-to-regexp": { @@ -1807,6 +1615,19 @@ "node": ">=10" } }, + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "peer": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/html-tags": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", @@ -1833,9 +1654,9 @@ } }, "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "peer": true, "engines": { @@ -1843,9 +1664,9 @@ } }, "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "dev": true, "peer": true, "dependencies": { @@ -1880,9 +1701,9 @@ } }, "node_modules/import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", "dev": true, "dependencies": { "pkg-dir": "^4.2.0", @@ -1927,7 +1748,6 @@ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, - "license": "ISC", "peer": true, "dependencies": { "once": "^1.3.0", @@ -1939,7 +1759,6 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true, - "license": "ISC", "peer": true }, "node_modules/ini": { @@ -1966,12 +1785,15 @@ "peer": true }, "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "dev": true, "dependencies": { - "hasown": "^2.0.0" + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -1991,6 +1813,7 @@ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, + "peer": true, "engines": { "node": ">=8" } @@ -2028,13 +1851,11 @@ } }, "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, + "peer": true, "engines": { "node": ">=0.10.0" } @@ -2055,13 +1876,12 @@ } }, "node_modules/jackspeak": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.1.tgz", - "integrity": "sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.2.3.tgz", + "integrity": "sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==", "dev": true, - "license": "BlueOak-1.0.0", "dependencies": { - "@isaacs/cliui": "^8.0.2" + "@isaacs/cliui": "^9.0.0" }, "engines": { "node": "20 || >=22" @@ -2084,6 +1904,21 @@ "node": ">= 10.13.0" } }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -2092,9 +1927,9 @@ "peer": true }, "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", "dev": true, "peer": true, "dependencies": { @@ -2118,9 +1953,9 @@ "dev": true }, "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, "node_modules/json5": { @@ -2169,12 +2004,16 @@ "peer": true }, "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.1.tgz", + "integrity": "sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==", "dev": true, "engines": { "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, "node_modules/loader-utils": { @@ -2192,15 +2031,19 @@ } }, "node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, + "peer": true, "dependencies": { - "p-locate": "^4.1.0" + "p-locate": "^5.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/lodash.truncate": { @@ -2211,16 +2054,12 @@ "peer": true }, "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "version": "11.3.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.3.3.tgz", + "integrity": "sha512-JvNw9Y81y33E+BEYPr0U7omo+U9AySnsMsEiXgwT6yqd31VQWTLNQqmT4ou5eqPFUrTfIDFta2wKhB1hyohtAQ==", "dev": true, - "peer": true, - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { - "node": ">=10" + "node": "20 || >=22" } }, "node_modules/map-obj": { @@ -2298,13 +2137,13 @@ } }, "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "peer": true, "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { @@ -2332,20 +2171,10 @@ "node": ">= 0.6" } }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, "node_modules/mini-css-extract-plugin": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.0.tgz", - "integrity": "sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==", + "version": "2.10.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.10.2.tgz", + "integrity": "sha512-AOSS0IdEB95ayVkxn5oGzNQwqAi2J0Jb/kKm43t7H73s8+f5873g0yuj0PNvK4dO75mu5DHg4nlgp4k6Kga8eg==", "dev": true, "dependencies": { "schema-utils": "^4.0.0", @@ -2362,70 +2191,16 @@ "webpack": "^5.0.0" } }, - "node_modules/mini-css-extract-plugin/node_modules/ajv": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", - "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, "node_modules/minimatch": { - "version": "10.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.3.tgz", - "integrity": "sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==", + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", "dev": true, - "license": "ISC", "dependencies": { - "@isaacs/brace-expansion": "^5.0.0" + "brace-expansion": "^5.0.5" }, "engines": { - "node": "20 || >=22" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -2447,26 +2222,25 @@ } }, "node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", + "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", "dev": true, - "license": "ISC", "engines": { "node": ">=16 || 14 >=14.17" } }, "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true, "peer": true }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", "dev": true, "funding": [ { @@ -2488,9 +2262,9 @@ "dev": true }, "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "version": "2.0.37", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.37.tgz", + "integrity": "sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==", "dev": true }, "node_modules/normalize-package-data": { @@ -2523,37 +2297,41 @@ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, - "license": "ISC", "peer": true, "dependencies": { "wrappy": "1" } }, "node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, + "peer": true, "dependencies": { - "p-try": "^2.0.0" + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">=6" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, + "peer": true, "dependencies": { - "p-limit": "^2.2.0" + "p-limit": "^3.0.2" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-try": { @@ -2569,8 +2347,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", - "dev": true, - "license": "BlueOak-1.0.0" + "dev": true }, "node_modules/parent-module": { "version": "1.0.1", @@ -2618,7 +2395,6 @@ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, - "license": "MIT", "peer": true, "engines": { "node": ">=0.10.0" @@ -2640,32 +2416,21 @@ "dev": true }, "node_modules/path-scurry": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", - "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.2.tgz", + "integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==", "dev": true, - "license": "BlueOak-1.0.0", "dependencies": { "lru-cache": "^11.0.0", "minipass": "^7.1.2" }, "engines": { - "node": "20 || >=22" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.1.0.tgz", - "integrity": "sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==", - "dev": true, - "license": "ISC", - "engines": { - "node": "20 || >=22" - } - }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", @@ -2677,15 +2442,15 @@ } }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true }, "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", "dev": true, "peer": true, "engines": { @@ -2707,10 +2472,62 @@ "node": ">=8" } }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/postcss": { - "version": "8.4.38", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", - "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", + "version": "8.5.9", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.9.tgz", + "integrity": "sha512-7a70Nsot+EMX9fFU3064K/kdHWZqGVY+BADLyXc8Dfv+mTLLVl6JzJpPaCZ2kQL9gIJvKXSLMHhqdRRjwQeFtw==", "dev": true, "funding": [ { @@ -2727,9 +2544,9 @@ } ], "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.2.0" + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" }, "engines": { "node": "^10 || ^12 || >=14" @@ -2754,13 +2571,13 @@ } }, "node_modules/postcss-modules-local-by-default": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", - "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", + "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", "dev": true, "dependencies": { "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", + "postcss-selector-parser": "^7.0.0", "postcss-value-parser": "^4.1.0" }, "engines": { @@ -2771,12 +2588,12 @@ } }, "node_modules/postcss-modules-scope": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", - "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", + "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.4" + "postcss-selector-parser": "^7.0.0" }, "engines": { "node": "^10 || ^12 || >= 14" @@ -2801,9 +2618,9 @@ } }, "node_modules/postcss-resolve-nested-selector": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", - "integrity": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==", + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz", + "integrity": "sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==", "dev": true }, "node_modules/postcss-safe-parser": { @@ -2850,9 +2667,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.0.16", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz", - "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", "dev": true, "dependencies": { "cssesc": "^3.0.0", @@ -2957,71 +2774,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "peer": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "peer": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "peer": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "peer": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/rechoir": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", @@ -3061,18 +2813,21 @@ } }, "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", "dev": true, "dependencies": { - "is-core-module": "^2.13.0", + "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -3099,9 +2854,9 @@ } }, "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", "dev": true, "peer": true, "engines": { @@ -3113,6 +2868,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, "peer": true, "dependencies": { @@ -3125,13 +2881,30 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/rimraf/node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "peer": true + }, + "node_modules/rimraf/node_modules/brace-expansion": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.13.tgz", + "integrity": "sha512-9ZLprWS6EENmhEOpjCYW2c8VkmOvckIJZfkr7rBW6dObmfgJ/L1GpSYW5Hpo9lDz4D1+n0Ckz8rU7FwHDQiG/w==", + "dev": true, + "peer": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, "node_modules/rimraf/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", + "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", "dev": true, - "license": "ISC", "peer": true, "dependencies": { "fs.realpath": "^1.0.0", @@ -3149,11 +2922,10 @@ } }, "node_modules/rimraf/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", "dev": true, - "license": "ISC", "peer": true, "dependencies": { "brace-expansion": "^1.1.7" @@ -3207,14 +2979,15 @@ ] }, "node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz", + "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" }, "engines": { "node": ">= 10.13.0" @@ -3225,9 +2998,9 @@ } }, "node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -3318,42 +3091,6 @@ "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "peer": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "peer": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/slice-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "peer": true - }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -3364,9 +3101,9 @@ } }, "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "dev": true, "engines": { "node": ">=0.10.0" @@ -3412,9 +3149,9 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.17", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", - "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", + "version": "3.0.23", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.23.tgz", + "integrity": "sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==", "dev": true, "peer": true }, @@ -3423,22 +3160,7 @@ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "license": "MIT", + "peer": true, "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -3453,20 +3175,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "license": "MIT", + "peer": true, "dependencies": { "ansi-regex": "^5.0.1" }, @@ -3475,14 +3184,11 @@ } }, "node_modules/strip-indent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", - "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.1.1.tgz", + "integrity": "sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA==", "dev": true, "peer": true, - "dependencies": { - "min-indent": "^1.0.1" - }, "engines": { "node": ">=12" }, @@ -3647,46 +3353,64 @@ "stylelint": "^14.5.1 || ^15.0.0" } }, - "node_modules/stylelint/node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "node_modules/stylelint-scss/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", "dev": true, - "peer": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/stylelint/node_modules/@csstools/selector-specificity": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.1.1.tgz", + "integrity": "sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "peer": true, "engines": { - "node": ">=10" + "node": "^14 || ^16 || >=18" }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "peerDependencies": { + "postcss-selector-parser": "^6.0.13" } }, - "node_modules/supports-hyperlinks": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.0.0.tgz", - "integrity": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==", + "node_modules/stylelint/node_modules/balanced-match": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", + "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", + "dev": true, + "peer": true + }, + "node_modules/stylelint/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", "dev": true, "peer": true, "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=14.18" + "node": ">=4" } }, - "node_modules/supports-hyperlinks/node_modules/supports-color": { + "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -3699,6 +3423,23 @@ "node": ">=8" } }, + "node_modules/supports-hyperlinks": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.2.0.tgz", + "integrity": "sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==", + "dev": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=14.18" + }, + "funding": { + "url": "https://github.com/chalk/supports-hyperlinks?sponsor=1" + } + }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", @@ -3802,9 +3543,9 @@ } }, "node_modules/table": { - "version": "6.8.2", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.2.tgz", - "integrity": "sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==", + "version": "6.9.0", + "resolved": "https://registry.npmjs.org/table/-/table-6.9.0.tgz", + "integrity": "sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==", "dev": true, "peer": true, "dependencies": { @@ -3818,47 +3559,27 @@ "node": ">=10.0.0" } }, - "node_modules/table/node_modules/ajv": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", - "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", - "dev": true, - "peer": true, - "dependencies": { - "fast-deep-equal": "^3.1.3", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/table/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true, - "peer": true - }, "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.2.tgz", + "integrity": "sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==", "dev": true, "engines": { "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, "node_modules/terser": { - "version": "5.31.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.0.tgz", - "integrity": "sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==", + "version": "5.46.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.46.1.tgz", + "integrity": "sha512-vzCjQO/rgUuK9sf8VJZvjqiqiHFaZLnOiimmUuOKODxWL8mm/xua7viT7aqX7dgPY60otQjUotzFMmCB4VdmqQ==", "dev": true, "dependencies": { "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", + "acorn": "^8.15.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -3870,16 +3591,15 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.10", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", - "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.4.0.tgz", + "integrity": "sha512-Bn5vxm48flOIfkdl5CaD2+1CiUVbonWQ3KQPyP7/EuIl9Gbzq/gQFOzaMFUEgVjB1396tcK0SG8XcNJ/2kDH8g==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.20", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.26.0" + "schema-utils": "^4.3.0", + "terser": "^5.31.1" }, "engines": { "node": ">= 10.13.0" @@ -3904,14 +3624,13 @@ } }, "node_modules/tinyglobby": { - "version": "0.2.15", - "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", - "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "version": "0.2.16", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz", + "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==", "dev": true, - "license": "MIT", "dependencies": { "fdir": "^6.5.0", - "picomatch": "^4.0.3" + "picomatch": "^4.0.4" }, "engines": { "node": ">=12.0.0" @@ -3925,7 +3644,6 @@ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", "dev": true, - "license": "MIT", "engines": { "node": ">=12.0.0" }, @@ -3939,11 +3657,10 @@ } }, "node_modules/tinyglobby/node_modules/picomatch": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", - "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", "dev": true, - "license": "MIT", "engines": { "node": ">=12" }, @@ -3991,15 +3708,15 @@ } }, "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "version": "7.19.2", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.19.2.tgz", + "integrity": "sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==", "dev": true }, "node_modules/update-browserslist-db": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.15.tgz", - "integrity": "sha512-K9HWH62x3/EalU1U6sjSZiylm9C8tgq2mSvshZpqc7QE69RaA2qjhkW2HlNA0tFpEbtyFz7HTqbSdN4MSwUodA==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", "dev": true, "funding": [ { @@ -4016,8 +3733,8 @@ } ], "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -4053,9 +3770,9 @@ } }, "node_modules/watchpack": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", - "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.5.1.tgz", + "integrity": "sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==", "dev": true, "dependencies": { "glob-to-regexp": "^0.4.1", @@ -4066,35 +3783,36 @@ } }, "node_modules/webpack": { - "version": "5.91.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.91.0.tgz", - "integrity": "sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==", - "dev": true, - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.5", - "@webassemblyjs/ast": "^1.12.1", - "@webassemblyjs/wasm-edit": "^1.12.1", - "@webassemblyjs/wasm-parser": "^1.12.1", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.21.10", + "version": "5.106.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.106.0.tgz", + "integrity": "sha512-Pkx5joZ9RrdgO5LBkyX1L2ZAJeK/Taz3vqZ9CbcP0wS5LEMx5QkKsEwLl29QJfihZ+DKRBFldzy1O30pJ1MDpA==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.8", + "@types/json-schema": "^7.0.15", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.16.0", + "acorn-import-phases": "^1.0.3", + "browserslist": "^4.28.1", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.16.0", - "es-module-lexer": "^1.2.1", + "enhanced-resolve": "^5.20.0", + "es-module-lexer": "^2.0.0", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", + "loader-runner": "^4.3.1", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.10", - "watchpack": "^2.4.1", - "webpack-sources": "^3.2.3" + "schema-utils": "^4.3.3", + "tapable": "^2.3.0", + "terser-webpack-plugin": "^5.3.17", + "watchpack": "^2.5.1", + "webpack-sources": "^3.3.4" }, "bin": { "webpack": "bin/webpack.js" @@ -4181,9 +3899,9 @@ } }, "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.4.tgz", + "integrity": "sha512-7tP1PdV4vF+lYPnkMR0jMY5/la2ub5Fc/8VQrrU+lXkiM6C4TjVfGw7iKfyhnTQOsD+6Q/iKw0eFciziRgD58Q==", "dev": true, "engines": { "node": ">=10.13.0" @@ -4210,152 +3928,11 @@ "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", "dev": true }, - "node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true, - "license": "MIT" - }, - "node_modules/wrap-ansi/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true, - "license": "ISC", "peer": true }, "node_modules/write-file-atomic": { diff --git a/plugin.xml b/plugin.xml index 3b45c82a..524c63f7 100644 --- a/plugin.xml +++ b/plugin.xml @@ -25,6 +25,21 @@ Carbon est un plugin permettant d'évaluer l'impact environnemental de votre inf Teclib' + + 1.2.0-beta.1 + ~11.0.0 + https://github.com/pluginsGLPI/carbon/releases/download/1.2.0-beta.1/glpi-carbon-1.2.0-beta.1.tar.bz2 + + + 1.1.1 + ~11.0.0 + https://github.com/pluginsGLPI/carbon/releases/download/1.1.1/glpi-carbon-1.1.1.tar.bz2 + + + 1.0.0 + ~11.0.0 + https://github.com/pluginsGLPI/carbon/releases/download/1.1.0/glpi-carbon-1.1.0.tar.bz2 + 1.0.0 ~10.0.18 diff --git a/setup.php b/setup.php index 226a5ab4..d8236e36 100644 --- a/setup.php +++ b/setup.php @@ -46,13 +46,15 @@ use Location as GlpiLocation; use Profile as GlpiProfile; -define('PLUGIN_CARBON_VERSION', '1.2.0-dev'); +// Version of the plugin (major.minor.bugfix) +define('PLUGIN_CARBON_VERSION', '1.2.0-beta.1'); +// Schema version of this version (major.minor.bugfix) define('PLUGIN_CARBON_SCHEMA_VERSION', '1.2.0'); // Minimal GLPI version, inclusive -define("PLUGIN_CARBON_MIN_GLPI_VERSION", "11.0.0-beta"); +define("PLUGIN_CARBON_MIN_GLPI_VERSION", '11.0.0'); // Maximum GLPI version, exclusive -define("PLUGIN_CARBON_MAX_GLPI_VERSION", "12.0.0"); +define("PLUGIN_CARBON_MAX_GLPI_VERSION", '12.0.0'); define('PLUGIN_CARBON_DECIMALS', 3); From 4f7517bd7704b4b17a6d566264b7b3b36b4bfe11 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Fri, 10 Apr 2026 08:43:22 +0200 Subject: [PATCH 08/13] docs(changelog): update changelog --- CHANGELOG.md | 508 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 507 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a506f30e..1e51f4e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,513 @@ All notable changes to this project will be documented in this file. +## [1.2.0-beta.1](https://github.com/pluginsGLPI/carbon/compare/1.1.1...1.2.0-beta.1) (2026-04-10) + +### Features + +* Asset lifespan for usage impact computation ([c80932](https://github.com/pluginsGLPI/carbon/commit/c8093238acbddf8739bb739556f4ca258cbb2135)) +* Better distinctin between legend and completion indicators ([6cdb3d](https://github.com/pluginsGLPI/carbon/commit/6cdb3d81dfb020117671d7f5f6227a3a875786cc), [d67c1c](https://github.com/pluginsGLPI/carbon/commit/d67c1c3ff1a4bf00b17f7d654d06a946fdc06ec1)) +* Exclude assets from embodied impact calculation ([b9f00a](https://github.com/pluginsGLPI/carbon/commit/b9f00a233cfc158509f6a7d78806685ac36cc8be)) +* Mass deletion of environmental impact results ([3c89de](https://github.com/pluginsGLPI/carbon/commit/3c89de51d500417248c047cdd4e53161daa8cb4e)) +* Remove relation from zone to source for carbon inensity ([1791e1](https://github.com/pluginsGLPI/carbon/commit/1791e1167736733d7fea1a75a106e7a673053328)) +* Require GLPI timezone enabled ([c0f397](https://github.com/pluginsGLPI/carbon/commit/c0f397a3303d76f3a3936dca21d5ed0403071250)) +* Show all individual impacts ([783bed](https://github.com/pluginsGLPI/carbon/commit/783bed5f661fc066547a8be2749e3c376fb928b9)) +* Show diagnosis about carbon intensity data sources ([bbde25](https://github.com/pluginsGLPI/carbon/commit/bbde25b29adc3bb3a67b3b066abc3360d85f50bb), [ac9a4c](https://github.com/pluginsGLPI/carbon/commit/ac9a4cd71446f3d19b0d621f5b6b41b5953de986)) +* Update and reorganize search options ([9daed0](https://github.com/pluginsGLPI/carbon/commit/9daed09f1bcd802f9f28c4ac0e3276e4d9250068)) + +##### Abstract Model + +* Add new criteria to models ([64b428](https://github.com/pluginsGLPI/carbon/commit/64b428fac93c10aefcdf1c4b1f39c7d506b59fb8)) +* Add search options ([1c5dc7](https://github.com/pluginsGLPI/carbon/commit/1c5dc7d4f0fcf970a50a03107c477650e4e23353)) +* Add warning about units ([8b4e07](https://github.com/pluginsGLPI/carbon/commit/8b4e07a5b43df83080e9bfae99130ccd3d8a679c)) +* Support for more impact criteria ([011d3b](https://github.com/pluginsGLPI/carbon/commit/011d3b8afe1de8e390e5193c40ef8d84ecc63e18)) + +##### Abstract Type + +* Show icon along name in tab ([d1165a](https://github.com/pluginsGLPI/carbon/commit/d1165ac2d59ba05e481fdd672cb5e390a2eb2a01), [ae16c3](https://github.com/pluginsGLPI/carbon/commit/ae16c3d3372d33c1d51fab3aa60637d6101a4dbf)) + +##### Carbon Intensity + +* Report gaps in cron tasks of each client ([074cf4](https://github.com/pluginsGLPI/carbon/commit/074cf45b5627dec967f3695d01838fbfa2649a38)) + +##### Computer Model, Monitor Model, Network Equipment Model + +* User input for enbodied impacts ([662ff6](https://github.com/pluginsGLPI/carbon/commit/662ff658ca2132badb4e59d81963e0a0c62a4266)) + +##### Computer Model, Monitor Model, Network Equipmentodel + +* Explicitly describe the scope of expected values ([ea4e37](https://github.com/pluginsGLPI/carbon/commit/ea4e37b234c0a285761192bbb3ca622b7a7b3610)) + +##### Computer Type, Monitor Type, Network Equipement Type + +* Ignore types of assets ([210841](https://github.com/pluginsGLPI/carbon/commit/2108419f2402c4be2353f08059f2fd9d9d5a3297)) + +##### Config, Data Source\ Boaviztapi + +* Setup url from env var ([5595fe](https://github.com/pluginsGLPI/carbon/commit/5595fe27b9a58166c73540ba093fb43764ca8ff2)) + +##### Dashboad\ Provider + +* Class aliases, emissions per type, add test ([0e9860](https://github.com/pluginsGLPI/carbon/commit/0e98609dc56d178e67f27fcd9dc279e13b616941)) + +##### Dashboard\ Demo Provider + +* Update ([1497d4](https://github.com/pluginsGLPI/carbon/commit/1497d413ef9cb22efa436f2adbdb7c41119072ea)) + +##### Dashboard\ Grid + +* Add all usage impact cards ([677305](https://github.com/pluginsGLPI/carbon/commit/677305aeeb188e6ed46f426e22fa32cd762caaf7)) +* Extend usage and total widgets to all criteria ([781545](https://github.com/pluginsGLPI/carbon/commit/781545911b7d9163fe381f329d882690cb9885f1)) + +##### Data Source/ Abstract Cron Task + +* Enforce interface and common code ([c2c71a](https://github.com/pluginsGLPI/carbon/commit/c2c71aa99e59212330508a983de6fdcf272f0958)) + +##### Data Source\ Carbon Intensity + +* Response caching ([9bd951](https://github.com/pluginsGLPI/carbon/commit/9bd951735c9b7a560d07587bcad06ef2afab989f)) + +##### Embodied Impact + +* Add search options ([be0a93](https://github.com/pluginsGLPI/carbon/commit/be0a93aa427b25fb243ca3c7ab5d296c3180003d)) + +##### Embodied\ Impact + +* Add widgets for new impacts ([e4bed7](https://github.com/pluginsGLPI/carbon/commit/e4bed7be7e7929a56c564bc775f3c832251b1a6c)) +* Cards for all embodied impacts ([f2d7ce](https://github.com/pluginsGLPI/carbon/commit/f2d7cecc8a81c61cedfc4b1b1e77ef27f56eecec)) +* Support for all criterias of Boaviztapi ([a6390a](https://github.com/pluginsGLPI/carbon/commit/a6390a0f826647cd23104b266f207dc06e6c13a7)) + +##### Impact\ Embodied + +* Handle recalculate flag ([3b5ab4](https://github.com/pluginsGLPI/carbon/commit/3b5ab46c1f6f740249aec5b822880a5c70e545f6)) + +##### Impact\ Usage\ Boavizta + +* Support all impact criteria ([864ca8](https://github.com/pluginsGLPI/carbon/commit/864ca8e7e6c86fadbbd342ca728a4e004c697d23)) + +##### Install + +* Add new criterias for usage impact ([fb411e](https://github.com/pluginsGLPI/carbon/commit/fb411ee5bff096df32be9a00abcee92d55b7ae21)) +* CLI progress bar when adding fallback carbon intensity ([71c4c2](https://github.com/pluginsGLPI/carbon/commit/71c4c2c36ab4b78abdae0051f4a667576ccf55b9), [419411](https://github.com/pluginsGLPI/carbon/commit/41941184364e40614dce4394c839fe7728740e1a)) +* Migrate location / zone relation ([1df029](https://github.com/pluginsGLPI/carbon/commit/1df0297c391382d77352fa7c9734b761ed6fece9)) +* Protect against upgrades on too recent database ([bb6b62](https://github.com/pluginsGLPI/carbon/commit/bb6b62372679415db348c57353c0d0fbd32f2ad4)) +* Remove upgrade from previous dev versions ([8dc040](https://github.com/pluginsGLPI/carbon/commit/8dc040b1dd7c622949271eb42f35e6cc30b226fb), [3fe870](https://github.com/pluginsGLPI/carbon/commit/3fe87014989d23d333b0b862ebeafd5948fb8026)) + +##### Location + +* Allow selection of sources of fallback level 2 ([e05a5a](https://github.com/pluginsGLPI/carbon/commit/e05a5abaf3ce23e373525ce26e15006eed065108)) +* Associate location to a carbon intensity zone ([4c26e4](https://github.com/pluginsGLPI/carbon/commit/4c26e4f02a946682e1cc312ba3c6f3c323c0df20), [ea9388](https://github.com/pluginsGLPI/carbon/commit/ea938815db6e4894ad5cb09202d5d188b1bd630f)) +* Massive action, set source_zone ([f1bf2a](https://github.com/pluginsGLPI/carbon/commit/f1bf2a07008880c4974382ca8412cf80c6c27f1e)) +* Move plugin specific field for location to a tab ([a09901](https://github.com/pluginsGLPI/carbon/commit/a09901eef440ef996991b6630ad98d67c8313d3a)) +* Remove location / carbon intensity relation based on country or state ([018ebd](https://github.com/pluginsGLPI/carbon/commit/018ebd2a6f41cb775cef88712109830fe2b51c4f)) +* Update data completion diagnosis ([77e6e3](https://github.com/pluginsGLPI/carbon/commit/77e6e38cbbe8587f0e0ae7039a8102fa91f96cfd)) + +##### Search Option + +* Update search option for historizable status ([f7011c](https://github.com/pluginsGLPI/carbon/commit/f7011ce3efbe8999e25b06981774bac5b1b7c5b2)) + +##### Source + +* Change fallback bool into integer ([a4e7c1](https://github.com/pluginsGLPI/carbon/commit/a4e7c1bb8b11522d06c9035795c156be24ce9ba0)) + +##### Source Zone + +* Better gaps presentation ([3695e4](https://github.com/pluginsGLPI/carbon/commit/3695e499afa9e7f52554908b0bd23bee2c5ff418)) + +##### Zone + +* Update algorithms to find zone from location or asset ([d6f5c2](https://github.com/pluginsGLPI/carbon/commit/d6f5c2abdc5339bc45931e6360847e186f424cd4)) + +### Bug Fixes + +* Add resources files ([180dd7](https://github.com/pluginsGLPI/carbon/commit/180dd76d137d413d6a1df10967a590c6f4fcb6b9), [47ce8a](https://github.com/pluginsGLPI/carbon/commit/47ce8ac5f78e6860d4921fd518e65bd7d6505b94)) +* Code lint ([448775](https://github.com/pluginsGLPI/carbon/commit/448775123607609146d8c94ae916004b165f950e)) +* CSS not available in expected path ([40ece2](https://github.com/pluginsGLPI/carbon/commit/40ece2074ad7b703eae40344787677af539bcbd4), [f0d36c](https://github.com/pluginsGLPI/carbon/commit/f0d36cc43534cd3ee29383a53eae4cd8dbc48adc)) +* Harmonize appearance of reset button with GLPI ([9016fd](https://github.com/pluginsGLPI/carbon/commit/9016fd21d16e1f5aca3a6fe3b5e46c1681d1d20b)) +* Images path ([3ebc4d](https://github.com/pluginsGLPI/carbon/commit/3ebc4d4eadf8616eebd6393ae227f4cdcb513bec), [d13d72](https://github.com/pluginsGLPI/carbon/commit/d13d72cc69385a0afb17bf02963668334c3513b5)) +* Invalid homepage URL in xml file ([5b501d](https://github.com/pluginsGLPI/carbon/commit/5b501dff2677600c97bb4833c40d9a1066c4b837)) +* Prevent recalculate of impacts ([42b04c](https://github.com/pluginsGLPI/carbon/commit/42b04c4beebcaa734f4ac096af20dba88ac214eb)) +* Remove duplicated usage impact ([a7535c](https://github.com/pluginsGLPI/carbon/commit/a7535c93ba9aa30e8a2cffdcc94f6401d6e08a0a)) +* Templates code style ([9be209](https://github.com/pluginsGLPI/carbon/commit/9be20906bb2e35f623c436e24f18c6e5173a62df), [d43769](https://github.com/pluginsGLPI/carbon/commit/d4376923a20ae5b683b7a319bd7b78a43f5b4fb9), [743dd5](https://github.com/pluginsGLPI/carbon/commit/743dd52c08b8dee2a16cc3f9f1b802447ca4e6df)) +* Twig code style ([e2ed46](https://github.com/pluginsGLPI/carbon/commit/e2ed46ad517cc5a1e65b6178bd4bc5f239150744)) + +##### Abstract Model + +* Trim data sources before save ([a89615](https://github.com/pluginsGLPI/carbon/commit/a896158c8daa3e6d0de98dbf5f3ef6a0dd4feecc)) + +##### Abstract Type, Abstract Model + +* Fix type name, for tab display ([9961c9](https://github.com/pluginsGLPI/carbon/commit/9961c92f7f32da5d96def49f32758a2b2368e7d6)) + +##### Carbon Emission, Computer Type, Monitor Type, Network Equipment Type + +* Delete data for purged assets ([9f9245](https://github.com/pluginsGLPI/carbon/commit/9f924567e60db13c67d9105093449e0e816bf67c), [ba96d2](https://github.com/pluginsGLPI/carbon/commit/ba96d2d3561f55ed7638dc7d16c351919cbb00de)) + +##### Carbon Intensity + +* Bad return value" ([00bd1f](https://github.com/pluginsGLPI/carbon/commit/00bd1f86cf078b56a0eb55de17d12dd7def7f18c)) +* Html tags visible in unit of values ([b4f5ee](https://github.com/pluginsGLPI/carbon/commit/b4f5eed812e0310bb371cdf488de23c5a394e895)) +* Statement exception is not a RuntimeException ([9b9361](https://github.com/pluginsGLPI/carbon/commit/9b9361abf6f6a9098a45c8ddef87f032a1cce220)) + +##### Carbon Intensity Source Zone + +* Method return type ([218965](https://github.com/pluginsGLPI/carbon/commit/218965653b1b2e019fddc80ec1c8e5409d8437f3), [3b8c14](https://github.com/pluginsGLPI/carbon/commit/3b8c14d1597c80d02487a4ac5b59140fe05f5d08)) +* Update ajax link for GLPI 11 ([b39d06](https://github.com/pluginsGLPI/carbon/commit/b39d06dac34b7fa722a26048be1e7e4d1fc6e690), [2aefdb](https://github.com/pluginsGLPI/carbon/commit/2aefdb3418b4acde2b03c55cdfe8169a9cd9ebd2)) + +##### Collect Carbon Intensity Command + +* Cannot specify zone if only one available ([c554a2](https://github.com/pluginsGLPI/carbon/commit/c554a264910473682d557d28eca2944ae472e4d7)) + +##### Command\ Collect Carbon Intensity Command + +* Unicity violation error ([382598](https://github.com/pluginsGLPI/carbon/commit/382598d75062872747025ee3872a6bf03ad671de)) + +##### Computer Type + +* Fix deprecated array key null ([a988e5](https://github.com/pluginsGLPI/carbon/commit/a988e5b71b62431753c6a2d0e469a1f8f7a78969)) + +##### Computer Type, Monitor Type + +* More conststent right checks ([925e09](https://github.com/pluginsGLPI/carbon/commit/925e09f89bb2bb8bb90860ccaae3f93e14265a36)) + +##### Computer Usage Profile + +* Cannot edit time start and time stop ([bb1cb9](https://github.com/pluginsGLPI/carbon/commit/bb1cb926cef68a4a2939fd6da5ccfec31c64ac11)) +* Deprecated null argument in explode() ([28c075](https://github.com/pluginsGLPI/carbon/commit/28c07567706bc69032836f946cf27edba57160c5), [706999](https://github.com/pluginsGLPI/carbon/commit/706999691dfb00927f35ef99eef30e8b9889c3b4)) +* Use native time dropdown field ([68c239](https://github.com/pluginsGLPI/carbon/commit/68c239b81a28e5098aaa3230803754f29a7794f7), [48dced](https://github.com/pluginsGLPI/carbon/commit/48dceda344ea0bfb30ab956a9a37c54242e8dd24)) + +##### Computer, Monitor, Metwork Equipment + +* Properly show status of asset type in diagnosis view ([f0006d](https://github.com/pluginsGLPI/carbon/commit/f0006d2cdb37fc32e6e94196ada4f3df0ea1105e), [08b32a](https://github.com/pluginsGLPI/carbon/commit/08b32ad8cd7a0981aaed8441f3f29095c9f06850)) + +##### Config + +* Geocoding checkbox description ([127f44](https://github.com/pluginsGLPI/carbon/commit/127f445cb765ae51733e2473dbc28d665315f1da)) + +##### Cron Task + +* Typo in description string ([431fbb](https://github.com/pluginsGLPI/carbon/commit/431fbb6dcd53ffacfa9dea24e2ae5600553c6c83)) +* Typo in label string ([70390c](https://github.com/pluginsGLPI/carbon/commit/70390c04d25130eb3ab940966f370bc3f9ca292d)) + +##### Dashboard\ Grid + +* Loss of other plugins cards for dashboard ([8954bb](https://github.com/pluginsGLPI/carbon/commit/8954bbe39d9d6cc3eece992bcf78624aa21be877)) + +##### Dashboard\ Provider + +* Arra merge may produce incorrect merged criterias ([dfa0db](https://github.com/pluginsGLPI/carbon/commit/dfa0db51e5a4c625d9d15a25113599e8dd2d5b36), [6dc200](https://github.com/pluginsGLPI/carbon/commit/6dc2000834756721d600f607f330b602b1a5e1fe)) + +##### Dashboard\ Widget + +* Fix bad argument when computing Y scale ([135919](https://github.com/pluginsGLPI/carbon/commit/135919e53d56b3b49732f7e4f8740f25abe8a29e), [f2fa87](https://github.com/pluginsGLPI/carbon/commit/f2fa87272385947e55fa3b1294ff49f6f6f356c2)) +* GLPI 11 requires image key specification ([2ae40f](https://github.com/pluginsGLPI/carbon/commit/2ae40f558867c6cd1fb2d2adbcabd0aeeeb8b450), [b7bdee](https://github.com/pluginsGLPI/carbon/commit/b7bdee60e988181e6e54e665dda66634375bb947)) + +##### Data Source\ Carbon Intensity\ Abstract Source + +* Exception handling, null tolerance ([8bc18d](https://github.com/pluginsGLPI/carbon/commit/8bc18dd38e3b64ee6032d5ffccb02fae06653386)) + +##### Data Source\ Carbon Intensity\ Rte\ Cron Task + +* Cron info factorization ([b57275](https://github.com/pluginsGLPI/carbon/commit/b5727530dda10f21ec0882311a753ce938a0dacd)) + +##### Datasource\ Carbon Intensity\ Electricity Maps + +* Factorize and fix date management ([59b5cf](https://github.com/pluginsGLPI/carbon/commit/59b5cf868a8a6de6aa98a24a81a46c4ac2796815)) + +##### Datasource\ Carbon Intensity\ Electricity Maps\ Client + +* Allow paid API key ([7d7ac0](https://github.com/pluginsGLPI/carbon/commit/7d7ac09b7458a4be22ba66b58c885e90f356cce2)) + +##### Datasource\ Carbon Intensity\RTE + +* Improve samples count check and caching file computation ([6adbbf](https://github.com/pluginsGLPI/carbon/commit/6adbbfa709fc0e8b0bbedcec47ad79a5884b2ed8)) + +##### Docs + +* Icon path in metadata ([3d6956](https://github.com/pluginsGLPI/carbon/commit/3d6956e946b439e42f177974da686e165d4bb2ad), [25592c](https://github.com/pluginsGLPI/carbon/commit/25592c1e48590c50b7bd8fc96d671c528a41e789)) + +##### Embodied Impact + +* Bah criteria handling ([217140](https://github.com/pluginsGLPI/carbon/commit/2171404e40cbfa37c0ec0c0f453c8839fba8fd8c)) + +##### Engine\V1 + +* Fix fallback selection ([6b98d4](https://github.com/pluginsGLPI/carbon/commit/6b98d4bdcf88246ae05b3277f533baf9e61ee537)) + +##### Engine\V1\ Abstract Asset + +* Fallback carbon intensity may be picked from wrong source ([381800](https://github.com/pluginsGLPI/carbon/commit/38180008f05316db6dfd7b3af2310a4b65a99a5d), [d54028](https://github.com/pluginsGLPI/carbon/commit/d54028c5ed51d8209e2205b87c24f4203c1ffbb3)) + +##### Impact + +* Engine and version of calculations ([ba37e7](https://github.com/pluginsGLPI/carbon/commit/ba37e774d1420ab49fd198b75811a29f40763b33)) + +##### Impact/ Embodied/ Boavizta/ Computer + +* PHP warning, ambiguous instruction ([b818c5](https://github.com/pluginsGLPI/carbon/commit/b818c5ae6101d5f5479a92ef83c669c36bdca7c6)) + +##### Impact/ Usage/ Abstract Usage Impact + +* Useless argument in method call ([085f52](https://github.com/pluginsGLPI/carbon/commit/085f5252e8029a336c4cb2257661092259599835)) + +##### Impact\ Embodied + +* Assets should not be recalculated ([d49b79](https://github.com/pluginsGLPI/carbon/commit/d49b79cb585312d6dfccc25e0c901dcda76cd3aa)) + +##### Impact\ Embodied\ Abstract Embodied Impact + +* Change rule to ignore a value ([e00772](https://github.com/pluginsGLPI/carbon/commit/e00772f8f2bde31d77330c72cab010e4753af6bc)) +* Disable check ([18ee3d](https://github.com/pluginsGLPI/carbon/commit/18ee3dcf8c031fa5a5876db1173c06963101663e)) +* Typo in error message ([aaf98c](https://github.com/pluginsGLPI/carbon/commit/aaf98c2da31d35a60ba84302537d0afd5b7c1c26)) +* Use manual input data if available, instead of Boavizta ([518737](https://github.com/pluginsGLPI/carbon/commit/518737a0d65125e99e12b969cbcdc1df5e314ec0)) + +##### Impact\ Embodied\ Boavizta + +* Improve RAM and HDD description prior query ([9d2496](https://github.com/pluginsGLPI/carbon/commit/9d24960f8309341f10cc0fac2cb7cf43735552b1)) +* Service version not saved in DB ([a49430](https://github.com/pluginsGLPI/carbon/commit/a4943099d31246c0e37c31d993e651b26e41d383)) + +##### Impact\ Embodied\ Boavizta\ Computer + +* Ignore removable mass storage [#153](https://github.com/pluginsGLPI/carbon/issues/153) ([c75930](https://github.com/pluginsGLPI/carbon/commit/c75930c8a0d8eeb870b7c6a068860ed9ab992a8a)) +* Ignore unidentified manufacturer ([937951](https://github.com/pluginsGLPI/carbon/commit/9379517478f07535f6f6c9f1dbcb36a5c156b4e0)) + +##### Impact\ Embodied\ Engine, Impact\ Embodied\ Usage + +* Bad argument ([0972fd](https://github.com/pluginsGLPI/carbon/commit/0972fd8f8ab3fc77925751699277a3e4b197be36)) + +##### Impact\ Embodied\ Internal + +* Bad object to compute embodied impact from user data ([3a702d](https://github.com/pluginsGLPI/carbon/commit/3a702dc6f63ce10188a0d5e6c03eef6dbc65a749)) + +##### Impact\ History\ Abstract Asset + +* Test memory before calculating a carbon emission ([c57a52](https://github.com/pluginsGLPI/carbon/commit/c57a5258cd794fe672347bc2115cb54497facdc9)) + +##### Impact\ Type + +* Better unit notation ([3c6a12](https://github.com/pluginsGLPI/carbon/commit/3c6a12b3039bfca285ec57d996f0a44b47a224e5)) + +##### Impact\ Usage\ Computer + +* SQL error due to bad relation expression ([e56c02](https://github.com/pluginsGLPI/carbon/commit/e56c0226f012e9248c21c4ef8535dbaf5bad1043), [93164b](https://github.com/pluginsGLPI/carbon/commit/93164b439932a16217c2ce9fe410243771b9d45b)) + +##### Impat\ Embodied\ Engine + +* Do not use internal engine when asset model is empty ([56b9cc](https://github.com/pluginsGLPI/carbon/commit/56b9cccf3b1c86688c9f820258f3450faa94f598)) + +##### Install + +* Avoid use of non-existing classes in migration code ([9c5c94](https://github.com/pluginsGLPI/carbon/commit/9c5c943dd994c6c96d5d06957c3edae5a3757227)) +* Bad relation between Quebec and Hydro Quebec ([0ecbf0](https://github.com/pluginsGLPI/carbon/commit/0ecbf0f588f9cf8f4424cf8a38f11fbcd60aa144), [fdee8a](https://github.com/pluginsGLPI/carbon/commit/fdee8aaef063842cbea95eb908f773f9de048f36)) +* Follow stricter lint checks ([81c71e](https://github.com/pluginsGLPI/carbon/commit/81c71e9b849f7a6f14607d14150ab1f38be77bcc)) +* Make upgrade process repeatable ([dad61e](https://github.com/pluginsGLPI/carbon/commit/dad61eeaea64f714aa09b3e0d91a728b3fadaa32)) +* Method always return true ([5e7095](https://github.com/pluginsGLPI/carbon/commit/5e709525bc6505f224fe282db4e057542a0b8cd2)) +* More robust inserts in DB ([adc785](https://github.com/pluginsGLPI/carbon/commit/adc7852317a81f1ffbcd2f4eb495e95097917c34), [930107](https://github.com/pluginsGLPI/carbon/commit/930107b65da2523c6ab213d9b1a7e1bdd5836952), [79bbd8](https://github.com/pluginsGLPI/carbon/commit/79bbd8fd35cac200bedaf251dc59fa760746ab25), [50b91b](https://github.com/pluginsGLPI/carbon/commit/50b91bb8aa11d767a3c25d4b1bf4b76e242dfe37)) +* Optimize upgrade process and fix not reported error in CLI ([ab4f54](https://github.com/pluginsGLPI/carbon/commit/ab4f5463aafb2743b54e7d83a310c9d23e36dd92)) +* Port of fix #76 ([361093](https://github.com/pluginsGLPI/carbon/commit/361093c887814deff88eb7fb22031fa157b33c79), [ece7e2](https://github.com/pluginsGLPI/carbon/commit/ece7e2169a27a65e886e1b88eac098891988fbc8)) +* Remove exception handling on install / upgrade ([06a513](https://github.com/pluginsGLPI/carbon/commit/06a513376de5022e4296d90f753f823930030832), [826ee3](https://github.com/pluginsGLPI/carbon/commit/826ee32293fd53a08ed2cf7b41da5f303088d29c)) +* Reoder upgrade steps ([8802fe](https://github.com/pluginsGLPI/carbon/commit/8802fe8095ccc9c1a21e532419a532dc08453b4a)) +* Show an error on install or upgrade failure ([00c198](https://github.com/pluginsGLPI/carbon/commit/00c198d1573fb077f4cdaf371f1d2cc78ec683ea)) + +##### Install, Computer Usage Profile + +* Upgrade from 1.0.x to 1.1.x must change the time format of usage profiles ([62b5f4](https://github.com/pluginsGLPI/carbon/commit/62b5f4030eb7b1adf69ecf2a36dbce6c15fa2809)) + +##### Location + +* Bad fallback carbon intensity detection ([9b4287](https://github.com/pluginsGLPI/carbon/commit/9b4287936015a172d997db93faf091cdc60a6507)) +* Cannot reset a source_zone ([13589a](https://github.com/pluginsGLPI/carbon/commit/13589a54aa5d2582e5492d13e27af5bd9ce0d4b0)) +* Check field name in getSpecificValueToSelect ([5a07aa](https://github.com/pluginsGLPI/carbon/commit/5a07aa874372940b5603e9e49f63f54afae0f95f)) +* Detect fallback source for carbon intensity ([3deee2](https://github.com/pluginsGLPI/carbon/commit/3deee2b2d5470a1eb4d96a3605404ab5162e9fcc)) +* Find source zone when showing Location form ([6ee28e](https://github.com/pluginsGLPI/carbon/commit/6ee28e3cd9f822d8931d8aa499d9b843ad6c9028)) +* Reset source_zone again ([48ddb7](https://github.com/pluginsGLPI/carbon/commit/48ddb77494cddb1d506df2ddd03b7191d2c4f776)) + +##### Search Options + +* Simplify SQL, no filter on is_ignored type ([d7077a](https://github.com/pluginsGLPI/carbon/commit/d7077a583838db1c909fc0a6ef11d013ca84d150)) + +##### Source Zone + +* Fail to find a fallback carbon intensity source ([a278d1](https://github.com/pluginsGLPI/carbon/commit/a278d1a5babb4a9281a0a13962114a01eea7065e)) +* Typo ([a357bb](https://github.com/pluginsGLPI/carbon/commit/a357bb8c656e04c7d1f26efec140a06ba26a0684)) + +##### Toolbox + +* Filter false gaps ([ff4d22](https://github.com/pluginsGLPI/carbon/commit/ff4d224ccf2a3a69c36168cbc2ad4498efb5d735)) +* Remove redundant WHERE criterias ([3a6990](https://github.com/pluginsGLPI/carbon/commit/3a6990f93724be500e0d962a93ac260d39c7eb05)) + +##### Type + +* Search option construction ([d7506e](https://github.com/pluginsGLPI/carbon/commit/d7506e661f986815591d8a9791c1630a63e692e9)) + +##### Usage Info + +* Hide form when nothing to view or edit ([773c72](https://github.com/pluginsGLPI/carbon/commit/773c7245b6a60534177bed4d83355a6878af7491)) + +##### Widget + +* Better choice for energy scale min value ([0b3e86](https://github.com/pluginsGLPI/carbon/commit/0b3e86406672e8276377547e81ce718519951158)) + +##### Zone + +* Bad seach option ([55771d](https://github.com/pluginsGLPI/carbon/commit/55771d16ea1c3c0df730971d1e4c08be6169fdb1)) +* Remove obsolete file ([7230a0](https://github.com/pluginsGLPI/carbon/commit/7230a0ff41fdf7a022d89b08d44a2909f3f66b21), [540515](https://github.com/pluginsGLPI/carbon/commit/5405155f5f61afc4326a00749b6d93d783b0ca90)) + + +--- + +## [1.1.1](https://github.com/pluginsGLPI/carbon/compare/1.1.1...1.1.1) (2026-04-10) + +### Features + +* Better distinctin between legend and completion indicators ([d67c1c](https://github.com/pluginsGLPI/carbon/commit/d67c1c3ff1a4bf00b17f7d654d06a946fdc06ec1)) +* Show diagnosis about carbon intensity data sources ([bbde25](https://github.com/pluginsGLPI/carbon/commit/bbde25b29adc3bb3a67b3b066abc3360d85f50bb)) + +##### Abstract Type + +* Show icon along name in tab ([ae16c3](https://github.com/pluginsGLPI/carbon/commit/ae16c3d3372d33c1d51fab3aa60637d6101a4dbf)) + +### Bug Fixes + +* Invalid homepage URL in xml file ([5b501d](https://github.com/pluginsGLPI/carbon/commit/5b501dff2677600c97bb4833c40d9a1066c4b837)) + +##### Carbon Intensity Source Zone + +* Method return type ([218965](https://github.com/pluginsGLPI/carbon/commit/218965653b1b2e019fddc80ec1c8e5409d8437f3)) + +##### Computer, Monitor, Metwork Equipment + +* Properly show status of asset type in diagnosis view ([f0006d](https://github.com/pluginsGLPI/carbon/commit/f0006d2cdb37fc32e6e94196ada4f3df0ea1105e)) + +##### Dashboard\ Grid + +* Loss of other plugins cards for dashboard ([8954bb](https://github.com/pluginsGLPI/carbon/commit/8954bbe39d9d6cc3eece992bcf78624aa21be877)) + +##### Dashboard\ Widget + +* Fix bad argument when computing Y scale ([f2fa87](https://github.com/pluginsGLPI/carbon/commit/f2fa87272385947e55fa3b1294ff49f6f6f356c2)) + +##### Engine\V1\ Abstract Asset + +* Fallback carbon intensity may be picked from wrong source ([d54028](https://github.com/pluginsGLPI/carbon/commit/d54028c5ed51d8209e2205b87c24f4203c1ffbb3)) + +##### Impact\ Usage\ Computer + +* SQL error due to bad relation expression ([e56c02](https://github.com/pluginsGLPI/carbon/commit/e56c0226f012e9248c21c4ef8535dbaf5bad1043)) + +##### Install + +* Bad relation between Quebec and Hydro Quebec ([fdee8a](https://github.com/pluginsGLPI/carbon/commit/fdee8aaef063842cbea95eb908f773f9de048f36)) +* Port of fix #76 ([361093](https://github.com/pluginsGLPI/carbon/commit/361093c887814deff88eb7fb22031fa157b33c79)) +* Remove exception handling on install / upgrade ([826ee3](https://github.com/pluginsGLPI/carbon/commit/826ee32293fd53a08ed2cf7b41da5f303088d29c)) + + +--- + +## [1.1.0](https://github.com/pluginsGLPI/carbon/compare/1.1.1...1.1.0) (2026-04-10) + +This version is like 1.1.0 but targets GLPI 11, whereas version 1.0.0 targets GLPI 10. + + +--- + +## [1.0.0](https://github.com/pluginsGLPI/carbon/compare/1.1.1...1.0.0) (2026-04-10) + +### Features + + +##### Carbon Intensity + +* Add yearly intensity for most countries ([e6b9ef](https://github.com/pluginsGLPI/carbon/commit/e6b9efa528d27aae3d5fa592a3dd4dc023713fc4), [4719e8](https://github.com/pluginsGLPI/carbon/commit/4719e8da8bf5bc832a28dfab5b4721233ddde226)) + +##### Carbon Intensity Source Zone + +* Add tooltip for not downloadable zone ([c06caa](https://github.com/pluginsGLPI/carbon/commit/c06caa1b8827627b473aa0aa80499116c1a5a688)) + +##### Install + +* Remove upgrade from previous dev versions ([77ff1d](https://github.com/pluginsGLPI/carbon/commit/77ff1dd05b4a991463447cb59230fd06b6115516)) + +### Bug Fixes + +* Css file path ([7cbc0b](https://github.com/pluginsGLPI/carbon/commit/7cbc0b0f3aae186c0293ef8342c805bf793f9215)) +* Data completion diagnosis inconsistency ([8083fd](https://github.com/pluginsGLPI/carbon/commit/8083fde32b7ea62c50cb636f95e657cda6523210)) +* Templates code style ([2961f8](https://github.com/pluginsGLPI/carbon/commit/2961f82d7a6d520853098a9ab18e6c1e48773147)) + +##### Carbon Emission, Computer Type, Monitor Type, Network Equipment Type + +* Delete data for purged assets ([a646a0](https://github.com/pluginsGLPI/carbon/commit/a646a0fcae2bf694cb7c580b2976050b46ea89e7)) + +##### Carbon Intensity Source Zone + +* Do not toggle download for fallback sources ([26e3be](https://github.com/pluginsGLPI/carbon/commit/26e3be8e50ce2bbfa2278c7d6561c70b18efe0f0)) +* Server-side check when changing download state of a zone ([7d85ca](https://github.com/pluginsGLPI/carbon/commit/7d85ca026c89d029334af93a3b2eb489ac27a276)) + +##### Compputer Type + +* Prevent update massive action on computer typenative Update massive action cannot perform the change on the field Category. The user must use the specific action 'Update category' ([71679a](https://github.com/pluginsGLPI/carbon/commit/71679a91ef748344218235f56f7e4f3cc2c781e7)) + +##### Dashboard + +* Path to image resource ([debd5e](https://github.com/pluginsGLPI/carbon/commit/debd5e35e4f291fb29f0f9d8f4d408fb10928d9b)) + +##### Dashboard\ Demo Provider + +* Add missing method provider for demo mode ([f4956b](https://github.com/pluginsGLPI/carbon/commit/f4956b5cda5654c7ec67b881d6c6222027b8f4b9)) + +##### Dashboard\ Provider + +* Arra merge may produce incorrect merged criterias ([9eaa39](https://github.com/pluginsGLPI/carbon/commit/9eaa391cd3da9c4df7baf04f175a23b74eb2a655)) + +##### Data Source\ Carbon Intensity RTE + +* Better data source selection ([d365db](https://github.com/pluginsGLPI/carbon/commit/d365db976874734b1781426bcc8ee1efae2f0f81)) +* Consolidated data may have step of 15 min ([faaea6](https://github.com/pluginsGLPI/carbon/commit/faaea61018415561af7a8cceb4f58a53942bbac7)) +* Use timezone of GLPI ([a39c03](https://github.com/pluginsGLPI/carbon/commit/a39c03c6cea91dc75d96bc65d3ffb87e4828f62c)) +* Var not replaced with property ([bd4335](https://github.com/pluginsGLPI/carbon/commit/bd43359828d3777f198742686db7a27dc4965c88)) + +##### Datasource\ Carbon Intensity RTE + +* Fix again winter time switching detection ([1ba6b1](https://github.com/pluginsGLPI/carbon/commit/1ba6b1628f7fee7212c4101edc40d843fd7c9d49)) +* Generalize DST switch to winter time ([cd17dc](https://github.com/pluginsGLPI/carbon/commit/cd17dce64b806f687bdde745d40ee5766dd26fbb)) + +##### Engine\V1\ Abstract Asset + +* Search carbon intensity by contry after by state ([4c09c4](https://github.com/pluginsGLPI/carbon/commit/4c09c43cd0aa43a107c803d5232462f538c058e7)) + +##### Engine\V1\ Abstract Asset, Zone + +* Fix fallback carbon intensity ([c81902](https://github.com/pluginsGLPI/carbon/commit/c81902ddb2e65fee8c775e94f4b21978a67b7979)) + +##### Impact\ Embodied\ Boavizta + +* Hardware independant evaluation ([ebe625](https://github.com/pluginsGLPI/carbon/commit/ebe62568c06be3573a20a63b626b0cc031d27a2f)) + +##### Impact\ History + +* Swap 2 historizable status items ([dc7362](https://github.com/pluginsGLPI/carbon/commit/dc7362cf2c7eba6f61d633937d0beea432076aa3)) + +##### Impact\ History\ Monitor + +* Incomplete SQL SELECT statement ([7e4dff](https://github.com/pluginsGLPI/carbon/commit/7e4dff171baa83780e4379a44fe67b5acd3150db)) + +##### Install + +* Add parameters to fgetcsv ([1ce506](https://github.com/pluginsGLPI/carbon/commit/1ce506f58f0a25672311015a582e8731cef69524)) +* Link initial sources and zones on fresh install ([1e3800](https://github.com/pluginsGLPI/carbon/commit/1e3800155b62c47a38358c762901083c2b7677d6)) +* More robust inserts in DB ([50b91b](https://github.com/pluginsGLPI/carbon/commit/50b91bb8aa11d767a3c25d4b1bf4b76e242dfe37)) + +##### Report + +* Show update right ([3c906c](https://github.com/pluginsGLPI/carbon/commit/3c906c8d8d7ccbfd7e26139038e5a32d76aaff55)) + +##### Usage Impact + +* Allow reset if only gwp was calculated ([4e771c](https://github.com/pluginsGLPI/carbon/commit/4e771ca3c6c7422f1d02ef5b2f37e97084a6d5ee)) + + +--- + ## [1.0.0-beta.3](https://github.com/pluginsGLPI/carbon/compare/668e7b68956c8fe6decff7563bc64b8057eaa25e...v1.0.0-beta.3) (2025-07-22) ### Features @@ -670,4 +1177,3 @@ All notable changes to this project will be documented in this file. --- - From f37afde6da5c073ddc3e64d4ecb110a938f35964 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Fri, 10 Apr 2026 10:02:57 +0200 Subject: [PATCH 09/13] test(Install): check the versions in all files where they appear --- composer.json | 4 ++-- package.json | 2 +- tests/install/PluginInstallTest.php | 19 +++++++++++++++++++ 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 6e75f234..92435bf9 100644 --- a/composer.json +++ b/composer.json @@ -35,5 +35,5 @@ "license-headers": "vendor/bin/licence-headers-check --ansi --no-interaction", "build-schema": "tools/build-db-schema.php carbon | plantuml -p -tpng > docs/db-schema.png" }, - "version": "1.0.0-beta.3" -} + "version": "1.2.0-beta.1" +} \ No newline at end of file diff --git a/package.json b/package.json index a716f2cc..fe0ff476 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "carbon", "description": "Measurement of carbon emissions of GLPI devices", "license": "GPL-3.0-or-later", - "version": "1.0.0-beta.3", + "version": "1.2.0-beta.1", "dependencies": { "apexcharts": "^3.49.0" }, diff --git a/tests/install/PluginInstallTest.php b/tests/install/PluginInstallTest.php index 7b4152e7..bb33af9b 100644 --- a/tests/install/PluginInstallTest.php +++ b/tests/install/PluginInstallTest.php @@ -141,6 +141,7 @@ public function testInstallPlugin() $plugin->init(); $this->assertTrue(Plugin::isPluginActive(TEST_PLUGIN_NAME), 'Plugin not activated'); $this->checkSchema(PLUGIN_CARBON_VERSION); + $this->checkVersionInAllFiles(); $this->checkConfig(); $this->checkAutomaticAction(); @@ -911,4 +912,22 @@ public function checkRegisteredClasses() $expected = ['GlpiPlugin\Carbon\NetworkEquipmentModel']; $this->assertEquals($expected, $result); } + + #[CoversNothing()] + public function checkVersionInAllFiles() + { + $setup_version = PLUGIN_CARBON_VERSION; + $plugin_dir = dirname(__DIR__, 2); + $composer_file = $plugin_dir . '/composer.json'; + $package_file = $plugin_dir . '/package.json'; + $package_lock_file = $plugin_dir . '/package-lock.json'; + + $composer = json_decode(file_get_contents($composer_file), true); + $package = json_decode(file_get_contents($package_file), true); + $package_lock = json_decode(file_get_contents($package_lock_file), true); + + $this->assertSame($setup_version, $composer['version'] ?? null); + $this->assertSame($setup_version, $package['version'] ?? null); + $this->assertSame($setup_version, $package_lock['version'] ?? null); + } } From 91deec159a13449906f9590ed62ae7efec53396f Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Fri, 10 Apr 2026 13:33:09 +0200 Subject: [PATCH 10/13] test(Install): isolate plugin wipe before install --- tests/install/PluginInstallTest.php | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/tests/install/PluginInstallTest.php b/tests/install/PluginInstallTest.php index bb33af9b..7898a5e3 100644 --- a/tests/install/PluginInstallTest.php +++ b/tests/install/PluginInstallTest.php @@ -81,19 +81,16 @@ public function setUp(): void self::login('glpi', 'glpi', true); } - /** - * Execute plugin installation in the context if tests + * Helper method to wipe all plugin data + * + * @return void */ - protected function executeInstallation() - { + protected function wipePlugin() { /** @var DBmysql */ global $DB; $plugin_name = TEST_PLUGIN_NAME; - - $this->assertTrue($DB->connected); - //Drop plugin configuration if exists $config = new Config(); $config->deleteByCriteria(['context' => $plugin_name]); @@ -103,6 +100,20 @@ protected function executeInstallation() foreach ($result as $data) { $DB->dropTable($data['TABLE_NAME']); } + } + + /** + * Execute plugin installation in the context if tests + */ + protected function executeInstallation() + { + /** @var DBmysql */ + global $DB; + + $plugin_name = TEST_PLUGIN_NAME; + + $this->assertTrue($DB->connected); + $this->wipePlugin(); // Reset logs $this->resetGLPILogs(); From 7607dfff3e29640ea7fcd4f2989a0b88572b03f7 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Fri, 10 Apr 2026 16:04:33 +0200 Subject: [PATCH 11/13] test(Install): fix plugin wipe --- install/Install.php | 2 +- tests/install/PluginInstallTest.php | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/install/Install.php b/install/Install.php index 64729fb5..f1c46ed8 100644 --- a/install/Install.php +++ b/install/Install.php @@ -194,7 +194,7 @@ public function upgrade(string $from_version, array $args = []): bool } } - // Cherry pick install sub tasts to run + // Cherry pick sub tasts to run from fresh install workflow // Useful to rewrite missing data in DB $install_dir = __DIR__ . '/install/'; $update_scripts = scandir($install_dir); diff --git a/tests/install/PluginInstallTest.php b/tests/install/PluginInstallTest.php index 7898a5e3..bdaad53c 100644 --- a/tests/install/PluginInstallTest.php +++ b/tests/install/PluginInstallTest.php @@ -86,14 +86,15 @@ public function setUp(): void * * @return void */ - protected function wipePlugin() { + protected function wipePlugin() + { /** @var DBmysql */ global $DB; $plugin_name = TEST_PLUGIN_NAME; //Drop plugin configuration if exists $config = new Config(); - $config->deleteByCriteria(['context' => $plugin_name]); + $config->deleteByCriteria(['context' => 'plugin:' . $plugin_name]); // Drop tables of the plugin if they exist $result = $DB->listTables('glpi_plugin_' . $plugin_name . '_%'); From e036a608a54a142328127c0c0931b7c675f4a100 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Wed, 15 Apr 2026 12:00:26 +0200 Subject: [PATCH 12/13] fix(Datasource\CarbonIntensity\Rte): fix gaps diagnosis (DST) --- .../CarbonIntensity/AbstractCronTask.php | 23 +++++++++++++++++++ .../ElectricityMaps/CronTask.php | 11 +++++++++ .../CarbonIntensity/Rte/CronTask.php | 20 ++++++++++++++++ 3 files changed, 54 insertions(+) diff --git a/src/DataSource/CarbonIntensity/AbstractCronTask.php b/src/DataSource/CarbonIntensity/AbstractCronTask.php index 81c144d3..34ed4c02 100644 --- a/src/DataSource/CarbonIntensity/AbstractCronTask.php +++ b/src/DataSource/CarbonIntensity/AbstractCronTask.php @@ -34,6 +34,7 @@ use CommonDBTM; use CronTask as GlpiCronTask; +use DateTimeZone; use Glpi\Application\View\TemplateRenderer; use GlpiPlugin\Carbon\CarbonIntensity; use GlpiPlugin\Carbon\CronTask; @@ -50,6 +51,27 @@ abstract class AbstractCronTask extends DatasourceAbstractCronTask implements Cr protected static string $downloadMethod; + /** + * Filter out the gaps to remove fales gaps caused by DST switch + * Needed after a call to Toolbox::findTemporalGapsInTable() + * TODO: replace its inner implementation with this method on each call, when necessary + * In the SQL function DATE_ADD() we may do the following process + * DATE_ADD('2022-03-27 01:00:00', INTERVAL 1 HOUR) and '2022-03-27 01:00:00' + INTERVAL 1 HOUR + * while we use Europe/Paris timezone (or any timezone usinf DST) + * Both expressions return '2022-03-27 02:00:00' and it matches the exact time where we switch to summer time + * '2022-03-27 02:00:00' should be actually '2022-03-27 03:00:00', but this is not what happens with MySQL 8.0 + * Therefore when the date '2022-03-27 02:00:00' is converted into a DateTime object in PHP with Europe/Paris timezone + * it is converted into '2022-03-27 03:00:00'. + * When the start of a gap and the end of a gap, both converted into a DateTime object, are equal + * then this means that we are switching to summer time and the gap is irrelevant + * The code below tracks such intervals and filters them out + * + * @param array $gaps + * @param Source_Zone $source_zone + * @return array + */ + abstract protected function dstFilter(array $gaps, Source_Zone $source_zone): array; + public function showForCronTask(CommonDBTM $item) { switch ($item->fields['name']) { @@ -85,6 +107,7 @@ public function showGapsReport() $source_zone, $oldest_asset_date ); + $entries = $this->dstFilter($entries, $source_zone); $total = count($entries); $zone = Zone::getById($zone_id); diff --git a/src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php b/src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php index a7a60fb1..7614999c 100644 --- a/src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php +++ b/src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php @@ -34,8 +34,11 @@ use CommonGLPI; use CronTask as GlpiCronTask; +use DateTimeZone; use GlpiPlugin\Carbon\DataSource\CarbonIntensity\AbstractCronTask; use GlpiPlugin\Carbon\DataSource\CronTaskInterface; +use GlpiPlugin\Carbon\Source_Zone; +use GlpiPlugin\Carbon\Toolbox; class CronTask extends AbstractCronTask implements CronTaskInterface { @@ -89,4 +92,12 @@ public static function cronInfo(string $name): array } return []; } + + protected function dstFilter(array $gaps, Source_Zone $source_zone): array + { + // TODO: find a way to handle electricitymaps territory codes + // They don't match any norm (US-CAL, US-CAR) + // The codes with a 3rd name (US-CAL-CISO) seems to mention an energy distribution or production entity + return $gaps; + } } diff --git a/src/DataSource/CarbonIntensity/Rte/CronTask.php b/src/DataSource/CarbonIntensity/Rte/CronTask.php index 9b2f4989..f2007cea 100644 --- a/src/DataSource/CarbonIntensity/Rte/CronTask.php +++ b/src/DataSource/CarbonIntensity/Rte/CronTask.php @@ -34,8 +34,13 @@ use CommonGLPI; use CronTask as GlpiCronTask; +use DateTime; +use DateTimeImmutable; +use DateTimeZone; use GlpiPlugin\Carbon\DataSource\CarbonIntensity\AbstractCronTask; use GlpiPlugin\Carbon\DataSource\CronTaskInterface; +use GlpiPlugin\Carbon\Source_Zone; +use GlpiPlugin\Carbon\Toolbox; /** * @method int cronDownloadRte(GlpiCronTask $task) @@ -92,4 +97,19 @@ public static function cronInfo(string $name): array } return []; } + + protected function dstFilter(array $gaps, Source_Zone $source_zone): array + { + $tz = new DateTimeZone('Europe/Paris'); + $result = array_filter($gaps, function ($gap) use ($tz) { + // Use local timzeone + $a = DateTime::createFromFormat('Y-m-d H:i:s', $gap['start']); + $b = DateTime::createFromFormat('Y-m-d H:i:s', $gap['end']); + // switch to timezone of the data source (this shifts the hour if necessary) + $a->setTimezone($tz); + $b->setTimezone($tz); + return $a->format('Y-m-d H:i:s') != $b->format('Y-m-d H:i:s'); + }); + return $result; + } } From 0e912c136d164e7b43c240775ae16604c82b00dd Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Thu, 16 Apr 2026 09:33:19 +0200 Subject: [PATCH 13/13] chore(rector): automated refactoring --- rector.php | 1 + src/DataSource/CarbonIntensity/AbstractCronTask.php | 1 - .../CarbonIntensity/ElectricityMaps/CronTask.php | 2 -- src/DataSource/CarbonIntensity/Rte/CronTask.php | 2 -- tests/src/Engine/V1/EngineTestCase.php | 7 ++++--- tests/src/GlobalFixture.php | 4 ++-- 6 files changed, 7 insertions(+), 10 deletions(-) diff --git a/rector.php b/rector.php index 4f04d7b5..69b3bb42 100644 --- a/rector.php +++ b/rector.php @@ -47,6 +47,7 @@ __DIR__ . '/src', __DIR__ . '/tools', ]) + ->withSkipPath(__DIR__ . '/vendor') ->withPhpVersion(PhpVersion::PHP_82) ->withCache( sys_get_temp_dir() . '/rector', diff --git a/src/DataSource/CarbonIntensity/AbstractCronTask.php b/src/DataSource/CarbonIntensity/AbstractCronTask.php index 34ed4c02..5df751ad 100644 --- a/src/DataSource/CarbonIntensity/AbstractCronTask.php +++ b/src/DataSource/CarbonIntensity/AbstractCronTask.php @@ -34,7 +34,6 @@ use CommonDBTM; use CronTask as GlpiCronTask; -use DateTimeZone; use Glpi\Application\View\TemplateRenderer; use GlpiPlugin\Carbon\CarbonIntensity; use GlpiPlugin\Carbon\CronTask; diff --git a/src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php b/src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php index 7614999c..ae26acfe 100644 --- a/src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php +++ b/src/DataSource/CarbonIntensity/ElectricityMaps/CronTask.php @@ -34,11 +34,9 @@ use CommonGLPI; use CronTask as GlpiCronTask; -use DateTimeZone; use GlpiPlugin\Carbon\DataSource\CarbonIntensity\AbstractCronTask; use GlpiPlugin\Carbon\DataSource\CronTaskInterface; use GlpiPlugin\Carbon\Source_Zone; -use GlpiPlugin\Carbon\Toolbox; class CronTask extends AbstractCronTask implements CronTaskInterface { diff --git a/src/DataSource/CarbonIntensity/Rte/CronTask.php b/src/DataSource/CarbonIntensity/Rte/CronTask.php index f2007cea..293b3aaa 100644 --- a/src/DataSource/CarbonIntensity/Rte/CronTask.php +++ b/src/DataSource/CarbonIntensity/Rte/CronTask.php @@ -35,12 +35,10 @@ use CommonGLPI; use CronTask as GlpiCronTask; use DateTime; -use DateTimeImmutable; use DateTimeZone; use GlpiPlugin\Carbon\DataSource\CarbonIntensity\AbstractCronTask; use GlpiPlugin\Carbon\DataSource\CronTaskInterface; use GlpiPlugin\Carbon\Source_Zone; -use GlpiPlugin\Carbon\Toolbox; /** * @method int cronDownloadRte(GlpiCronTask $task) diff --git a/tests/src/Engine/V1/EngineTestCase.php b/tests/src/Engine/V1/EngineTestCase.php index 8cfb2b6e..830f0def 100644 --- a/tests/src/Engine/V1/EngineTestCase.php +++ b/tests/src/Engine/V1/EngineTestCase.php @@ -32,6 +32,7 @@ namespace GlpiPlugin\Carbon\Tests\Engine\V1; +use Generator; use GlpiPlugin\Carbon\Tests\DbTestCase; abstract class EngineTestCase extends DbTestCase @@ -42,9 +43,9 @@ abstract class EngineTestCase extends DbTestCase protected static string $type_class = ''; protected static string $model_class = ''; - abstract public function getEnergyPerDayProvider(): \Generator; + abstract public function getEnergyPerDayProvider(): Generator; - abstract public function getCarbonEmissionPerDateProvider(): \Generator; + abstract public function getCarbonEmissionPerDateProvider(): Generator; /** * The delta for comparison of computed emission with expected value, @@ -52,7 +53,7 @@ abstract public function getCarbonEmissionPerDateProvider(): \Generator; */ public const EPSILON = 0.001; - public function getPowerProvider(): \Generator + public function getPowerProvider(): Generator { $item = $this->createItem(static::$itemtype_class); $engine = new static::$engine_class($item); diff --git a/tests/src/GlobalFixture.php b/tests/src/GlobalFixture.php index 14de96dc..4f8fbebe 100644 --- a/tests/src/GlobalFixture.php +++ b/tests/src/GlobalFixture.php @@ -129,7 +129,7 @@ public static function loadDataset() // ini_set('auto_detect_line_endings', true); $file = dirname(__DIR__) . '/fixtures/carbon_intensity.csv'; if (($handle = fopen($file, 'r')) === false) { - fwrite(STDOUT, sprintf('Failed to open carbon intensity dataset CSV file' . PHP_EOL)); + fwrite(STDOUT, 'Failed to open carbon intensity dataset CSV file' . PHP_EOL); exit(1); } while (($row = fgetcsv($handle, 256, ',', '"', '\\')) !== false) { @@ -147,7 +147,7 @@ public static function loadDataset() ]; $count = (new DbUtils())->countElementsInTable($intensity_table, $condition); if ($count !== 3648) { - fwrite(STDOUT, sprintf('Failed to load carbon intensity dataset' . PHP_EOL)); + fwrite(STDOUT, 'Failed to load carbon intensity dataset' . PHP_EOL); exit(1); }