You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

core.properties 333KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280
  1. #------------------------------------------------------------------------------
  2. #
  3. # GENERIC WORDS, sorted alphabetically
  4. #
  5. #------------------------------------------------------------------------------
  6. about=About
  7. action=Action
  8. actions=Actions
  9. active=Active
  10. activate=Activate
  11. add_verb=Add
  12. admin=Admin
  13. after=After
  14. apply=Apply
  15. all=All
  16. and=And
  17. anonymous=Anonymous
  18. any=Any
  19. ascending=Ascending
  20. assignee=Assignee
  21. author=Author
  22. billion=Billion
  23. bitbucket=Bitbucket
  24. back=Back
  25. backup=Backup
  26. backup_verb=Back up
  27. best=Best
  28. beta=BETA
  29. blocker=Blocker
  30. bold=Bold
  31. branch=Branch
  32. breadcrumbs=Breadcrumbs
  33. expand_breadcrumbs=Expand breadcrumbs
  34. by_=by
  35. calendar=Calendar
  36. cancel=Cancel
  37. category=Category
  38. attribute=Attribute
  39. see_changelog=See Changelog
  40. changelog=Changelog
  41. change_verb=Change
  42. check_all=Check all
  43. choose_file=Choose file
  44. class=Class
  45. classes=Classes
  46. clean_as_you_code=Clean as You Code
  47. clear_file=Clear file
  48. close=Close
  49. closed=Closed
  50. code=Code
  51. color=Color
  52. collapse_all=Collapse all
  53. compare=Compare
  54. component=Component
  55. configure=Configure
  56. confirm=Confirm
  57. continue=Continue
  58. copy=Copy
  59. create=Create
  60. create_new_element=Create new element
  61. created=Created
  62. created_on=Created on
  63. critical=Critical
  64. current=current
  65. current_noun=Current
  66. customize=Customize
  67. date=Date
  68. days=Days
  69. default=Default
  70. delete=Delete
  71. delete_x=Delete {0}
  72. deprecated=Deprecated
  73. descending=Descending
  74. description=Description
  75. directories=Directories
  76. directory=Directory
  77. disabled_=disabled
  78. dismiss=Dismiss
  79. dismiss_permanently=Dismiss permanently
  80. display=Display
  81. documentation=documentation
  82. done=Done
  83. download_verb=Download
  84. duplications=Duplications
  85. end_date=End Date
  86. edit=Edit
  87. error=Error
  88. events=Events
  89. example=Example
  90. expand_all=Expand all
  91. explore=Explore
  92. extend=Extend
  93. false=False
  94. favorite=Favorite
  95. field_required=This field is required
  96. fields_marked_with_x_required=All fields marked with {star} are required
  97. file=File
  98. files=Files
  99. filters=Filters
  100. follow=Follow
  101. format=Format
  102. from=From
  103. global=Global
  104. github=GitHub
  105. go_back=Go back
  106. help=Help
  107. here=here
  108. hide=Hide
  109. inactive=Inactive
  110. info=Info
  111. issue=Issue
  112. issues=Issues
  113. inheritance=Inheritance
  114. internal=internal
  115. key=Key
  116. language=Language
  117. last_analysis=Last Analysis
  118. learn_more=Learn More
  119. learn_more_x=Learn More: {link}
  120. library=Library
  121. line_number=Line Number
  122. links=Links
  123. list_of_issues=List of issues
  124. list_of_projects=List of projects
  125. list_of_rules=List of rules
  126. load_more=Load more
  127. load_verb=Load
  128. loading=Loading
  129. login=Login
  130. major=Major
  131. manual=Manual
  132. max=Max
  133. max_results_reached=Only the first {0} results are displayed
  134. me=Me
  135. members=Members
  136. menu=Menu
  137. min=Min
  138. minor=Minor
  139. more=More
  140. more_x={0} more
  141. more_actions=More Actions
  142. my_issues=My Issues
  143. my_favorite=My Favorite
  144. my_favorites=My Favorites
  145. my_projects=My Projects
  146. name=Name
  147. navigation=Navigation
  148. never=Never
  149. new=New
  150. next=Next
  151. next_month_x=next month {month}
  152. new_name=New name
  153. next_=next
  154. none=None
  155. no_file_selected=No file selected
  156. no_tags=No tags
  157. not_now=Not now
  158. off=off
  159. on=on
  160. or=Or
  161. open=Open
  162. open_in_ide=Open in IDE
  163. optional=Optional
  164. order=Order
  165. owner=Owner
  166. parameters=Parameters
  167. password=Password
  168. path=Path
  169. permalink=Permanent Link
  170. plugin=Plugin
  171. previous_=previous
  172. previous_month_x=previous month {month}
  173. project=Project
  174. project_x=Project: {0}
  175. projects=Projects
  176. projects_=project(s)
  177. x_projects_={0} project(s)
  178. project_plural=projects
  179. projects_management=Projects Management
  180. quality_profile=Quality Profile
  181. raw=Raw
  182. recent_history=Recent History
  183. recently_browsed=Recently Browsed
  184. recommended=Recommended
  185. refresh=Refresh
  186. reload=Reload
  187. remove=Remove
  188. remove_x=Remove {0}
  189. rename=Rename
  190. replaces=Replaces
  191. required=Required
  192. reset_verb=Reset
  193. reset_to_default=Reset To Default
  194. reset_date=Reset dates
  195. resolution=Resolution
  196. resolve=Resolve
  197. restart=Restart
  198. restore=Restore
  199. result=Result
  200. results=Results
  201. x_results={0} results
  202. review=Review
  203. rule=Rule
  204. rules=Rules
  205. save=Save
  206. search_results=Search results
  207. search_verb=Search
  208. secondary=Secondary
  209. see_all=See all
  210. see_x=See {0}
  211. select_verb=Select
  212. selected=Selected
  213. select_tags=Add or remove tags
  214. set=Set
  215. set_up=Set Up
  216. setup=Setup
  217. settings=Settings
  218. severity=Severity
  219. shared=Shared
  220. start_date=Start Date
  221. x_show={0} shown
  222. x_selected={0} selected
  223. x_of_y_shown={0} of {1} shown
  224. size=Size
  225. skip=Skip
  226. skip_to_content=Skip to main content
  227. status=Status
  228. support=Support
  229. success=Success
  230. table=Table
  231. tags=Tags
  232. tags_list_x=Tags list: {0}
  233. technical_debt=Technical Debt
  234. template=Template
  235. title=Title
  236. to=To
  237. to_=to
  238. total=Total
  239. treemap=Treemap
  240. true=True
  241. type=Type
  242. unassigned=Not assigned
  243. uncheck_all=Uncheck all
  244. unit_test=Unit test
  245. unit_tests=Unit tests
  246. unknown=Unknown
  247. unresolved=Unresolved
  248. updated=Updated
  249. updated_on=Updated on
  250. updates=Updates
  251. update_verb=Update
  252. updating=Updating
  253. unselected=Unselected
  254. user=User
  255. value=Value
  256. variation=Variation
  257. version=Version
  258. version_x=Version {0}
  259. view=View
  260. views=Views
  261. violations=Violations
  262. visibility=Visibility
  263. warnings=Warnings
  264. with=With
  265. worst=Worst
  266. yes=Yes
  267. no=No
  268. valid_input=Valid input
  269. #------------------------------------------------------------------------------
  270. #
  271. # GENERIC EXPRESSIONS, sorted alphabetically
  272. #
  273. #------------------------------------------------------------------------------
  274. 404_not_found=404 Not found
  275. address_mistyped_or_page_moved=You may have mistyped the address or the page may have moved.
  276. and_worse=and worse
  277. are_you_sure=Are you sure?
  278. as_explained_here=as explained here
  279. assigned_to=Assigned to
  280. bulk_change=Bulk Change
  281. bulleted_point=Bulleted point
  282. clear=Clear
  283. clear_x_filter=Clear {0} Filters
  284. clear_all_filters=Clear All Filters
  285. coding_rules=Rules
  286. copy_to_clipboard=Click to copy to clipboard
  287. copied_action=Copied to clipboard
  288. created_by=Created by
  289. default_error_message=The request cannot be processed. Try again later.
  290. default_save_field_error_message=This field cannot be saved. Try again later.
  291. default_severity=Default severity
  292. edit_permissions=Edit Permissions
  293. show_permissions=Show Permissions
  294. facet_might_have_more_results=There might be more results, try another set of filters to see them.
  295. false_positive=False positive
  296. go_back_to_homepage=Go back to the homepage
  297. last_analysis_before=Last analysis before
  298. less_than_1_hour_ago=< 1 hour ago
  299. local=Local
  300. logging_out=You're logging out, please wait...
  301. manage=Manage
  302. managed=Managed
  303. management=Management
  304. more_information=More information
  305. new_violations=New violations
  306. new_window=New window
  307. no_data=No data
  308. no_results=No results
  309. no_results_for_x=No results for "{0}"
  310. no_results_search=We couldn't find any results matching selected criteria.
  311. no_results_search.favorites=We couldn't find any results matching selected criteria in your favorites.
  312. no_results_search.2=Try to change filters to get some results.
  313. no_results_search.favorites.2=Would you like to search among {url} projects?
  314. opens_in_new_window=Opens in a new window
  315. page_extension_failed=Page extension failed.
  316. page_not_found=The page you were looking for does not exist.
  317. please_contact_administrator=Please contact the instance administrator.
  318. set_as_default=Set as Default
  319. short_number_suffix.g=G
  320. short_number_suffix.k=k
  321. short_number_suffix.m=M
  322. show_less=Show Less
  323. show_more=Show More
  324. show_all=Show All
  325. show_them=Show Them
  326. should_be_unique=Should be unique
  327. since_x=since {0}
  328. since_version=since version {0}
  329. since_version.short={0}
  330. since_version_detailed=since version {0} ({1})
  331. since_version_detailed.short={0} ({1})
  332. since_previous_version=since previous version
  333. since_previous_version.short=\u0394 version
  334. since_previous_version_detailed=since previous version ({0} - {1})
  335. since_previous_version_with_only_date=since previous version ({0})
  336. since_previous_version_detailed.short=\u0394 version ({0})
  337. this_name_is_already_taken=This name is already taken.
  338. tooltip_is_interactive=This is a tooltip with interactive elements. Use the TAB key to cycle through the interactive elements.
  339. update_details=Update details
  340. update_scm=Update SCM details
  341. work_duration.x_days={0}d
  342. work_duration.x_hours={0}h
  343. work_duration.x_minutes={0}min
  344. work_duration.about=~ {0}
  345. #------------------------------------------------------------------------------
  346. #
  347. # DAY PICKER
  348. #
  349. #------------------------------------------------------------------------------
  350. January=January
  351. February=February
  352. March=March
  353. April=April
  354. May=May
  355. June=June
  356. July=July
  357. August=August
  358. September=September
  359. October=October
  360. November=November
  361. December=December
  362. Jan=Jan
  363. Feb=Feb
  364. Mar=Mar
  365. Apr=Apr
  366. Jun=Jun
  367. Jul=Jul
  368. Aug=Aug
  369. Sep=Sep
  370. Oct=Oct
  371. Nov=Nov
  372. Dec=Dec
  373. Sunday=Sunday
  374. Monday=Monday
  375. Tuesday=Tuesday
  376. Wednesday=Wednesday
  377. Thursday=Thursday
  378. Friday=Friday
  379. Saturday=Saturday
  380. Sun=Sun
  381. Mon=Mon
  382. Tue=Tue
  383. Wed=Wed
  384. Thu=Thu
  385. Fri=Fri
  386. Sat=Sat
  387. Su=Su
  388. Mo=Mo
  389. Tu=Tu
  390. We=We
  391. Th=Th
  392. Fr=Fr
  393. Sa=Sa
  394. #------------------------------------------------------------------------------
  395. #
  396. # ALM
  397. #
  398. #------------------------------------------------------------------------------
  399. alm.azure=Azure DevOps
  400. alm.azure.short=Azure DevOps
  401. alm.bitbucket=Bitbucket
  402. alm.bitbucket.short=Bitbucket
  403. alm.bitbucket.long=Bitbucket Server
  404. alm.bitbucketcloud=Bitbucket
  405. alm.bitbucketcloud.short=Bitbucket
  406. alm.bitbucketcloud.long=Bitbucket Cloud
  407. alm.github=GitHub
  408. alm.github.short=GitHub
  409. alm.gitlab=GitLab
  410. alm.gitlab.short=GitLab
  411. alm.configuration.selector.label={0} configuration
  412. alm.configuration.selector.placeholder=Select a configuration
  413. #------------------------------------------------------------------------------
  414. #
  415. # RESOURCE QUALIFIERS
  416. #
  417. #------------------------------------------------------------------------------
  418. qualifier.TRK=Project
  419. qualifier.DIR=Directory
  420. qualifier.PAC=Package
  421. qualifier.VW=Portfolio
  422. qualifier.SVW=Portfolio
  423. qualifier.APP=Application
  424. qualifier.FIL=File
  425. qualifier.CLA=File
  426. qualifier.UTS=Test File
  427. qualifier.configuration.TRK=Project Configuration
  428. qualifier.configuration.VW=Portfolio Configuration
  429. qualifier.configuration.SVW=Portfolio Configuration
  430. qualifier.configuration.APP=Application Configuration
  431. qualifiers.TRK=Projects
  432. qualifiers.DIR=Directories
  433. qualifiers.PAC=Packages
  434. qualifiers.VW=Portfolios
  435. qualifiers.SVW=Portfolios
  436. qualifiers.APP=Applications
  437. qualifiers.FIL=Files
  438. qualifiers.CLA=Files
  439. qualifiers.UTS=Test Files
  440. qualifiers.all.TRK=All Projects
  441. qualifiers.all.VW=All Portfolios
  442. qualifiers.all.APP=All Applications
  443. qualifiers.new.TRK=New Project
  444. qualifiers.new.VW=New Portfolio
  445. qualifiers.new.APP=New Application
  446. qualifier.delete.TRK=Delete Project
  447. qualifier.delete.VW=Delete Portfolio
  448. qualifier.delete.APP=Delete Application
  449. qualifiers.delete.TRK=Delete Projects
  450. qualifiers.delete.VW=Delete Portfolios
  451. qualifiers.delete.APP=Delete Applications
  452. qualifier.delete_confirm.TRK=Do you want to delete this project?
  453. qualifier.delete_confirm.VW=Do you want to delete this portfolio?
  454. qualifier.delete_confirm.APP=Do you want to delete this application?
  455. qualifiers.delete_confirm.TRK=Do you want to delete these projects?
  456. qualifiers.delete_confirm.VW=Do you want to delete these portfolios?
  457. qualifiers.delete_confirm.APP=Do you want to delete these applications?
  458. qualifiers.create.TRK=Create Project
  459. qualifiers.create.VW=Create Portfolio
  460. qualifiers.create.APP=Create Application
  461. qualifiers.update.VW=Update Portfolio
  462. qualifiers.update.APP=Update Application
  463. qualifier.description.VW=Potentially multi-level, management-oriented overview aggregation.
  464. qualifier.description.SVW=Potentially multi-level, management-oriented overview aggregation.
  465. qualifier.description.APP=Single-level aggregation with a technical focus and a project-like homepage.
  466. #------------------------------------------------------------------------------
  467. #
  468. # Admin notification
  469. #
  470. #------------------------------------------------------------------------------
  471. admin_notification.update.new_minor_version=There’s a new version of SonarQube available. Update to enjoy the latest updates and features.
  472. admin_notification.update.new_patch=There’s an update available for your SonarQube instance. Please update to make sure you benefit from the latest security and bug fixes.
  473. admin_notification.update.pre_lts=You’re running a version of SonarQube that has reached end of life. Please upgrade to a supported version at your earliest convenience.
  474. admin_notification.update.previous_lts=You’re running a version of SonarQube that is past end of life. Please upgrade to a supported version immediately.
  475. #------------------------------------------------------------------------------
  476. #
  477. # PROJECT LINKS
  478. #
  479. #------------------------------------------------------------------------------
  480. project_links.homepage=Project's Website
  481. project_links.ci=Continuous integration
  482. project_links.issue=Bug Tracker
  483. project_links.scm=Sources
  484. project_links.scm_ro=Read-only connection
  485. project_links.scm_dev=Developer connection
  486. project_links.create_new_project_link=Create New Project Link
  487. project_links.delete_project_link=Delete Project Link
  488. project_links.are_you_sure_to_delete_x_link=Are you sure you want to delete the "{0}" link?
  489. project_links.delete_x_link=Delete "{0}" link
  490. project_links.name=Name
  491. project_links.url=URL
  492. project_links.no_results=No links yet. Click "Create" to add one.
  493. #------------------------------------------------------------------------------
  494. #
  495. # EVENT CATEGORIES
  496. #
  497. #------------------------------------------------------------------------------
  498. event.category.All=All
  499. event.category.VERSION=Version
  500. event.category.QUALITY_GATE=Quality Gate
  501. event.category.QUALITY_PROFILE=Quality Profile
  502. event.category.SQ_UPGRADE=SonarQube upgrade
  503. event.category.DEFINITION_CHANGE=Definition Change
  504. event.category.ISSUE_DETECTION=Issue Detection
  505. event.category.OTHER=Other
  506. event.quality_gate.still_x=Still {status}
  507. event.quality_gate.ERROR=Failed
  508. event.quality_gate.OK=Passed
  509. event.definition_change.added={project} added
  510. event.definition_change.removed={project} removed
  511. event.definition_change.branch_added={project} {branch} added
  512. event.definition_change.branch_removed={project} {branch} removed
  513. event.definition_change.branch_replaced={project} {oldBranch} replaced with {newBranch}
  514. event.failed_conditions=Failed Conditions:
  515. event.sqUpgrade=First analysis since upgrading to SonarQube {sqVersion}
  516. #------------------------------------------------------------------------------
  517. #
  518. # GLOBAL NAVIGATION
  519. #
  520. #------------------------------------------------------------------------------
  521. global_nav.account.tooltip=Account
  522. #------------------------------------------------------------------------------
  523. #
  524. # LAYOUT
  525. #
  526. #------------------------------------------------------------------------------
  527. layout.home=Home
  528. layout.login=Log in
  529. layout.logout=Log out
  530. layout.measures=Measures
  531. layout.settings=Administration
  532. layout.security_hotspots=Security Hotspots
  533. layout.settings.TRK=Project Settings
  534. layout.settings.APP=Application Settings
  535. layout.settings.VW=Portfolio Settings
  536. layout.settings.SVW=Portfolio Settings
  537. layout.security_reports=Security Reports
  538. layout.nav.home_logo_alt=Logo, link to homepage
  539. layout.must_be_configured=This will be available once your project is configured and analyzed.
  540. layout.all_project_must_be_accessible=You need access to all projects within this {0} to access it.
  541. sidebar.projects=Projects
  542. sidebar.project_settings=Configuration
  543. sidebar.security=Security
  544. sidebar.system=System
  545. sidebar.tools=Tools
  546. #------------------------------------------------------------------------------
  547. #
  548. # VISIBILITY
  549. #
  550. #------------------------------------------------------------------------------
  551. visibility.both=Public, Private
  552. visibility.public=Public
  553. visibility.public.description.TRK=This project is public. Anyone can browse and see the source code.
  554. visibility.public.description.VW=This portfolio is public. Anyone can browse it.
  555. visibility.public.description.APP=This application is public. Anyone can browse it.
  556. visibility.public.description.short=Anyone can browse and see the source code.
  557. visibility.public.description.long=Anyone will be able to browse your source code and see the result of your analysis.
  558. visibility.private=Private
  559. visibility.private.description.TRK=This project is private. Only authorized users can browse and see the source code.
  560. visibility.private.description.VW=This portfolio is private. Only authorized users can browse it.
  561. visibility.private.description.APP=This application is private. Only authorized users can browse it.
  562. visibility.private.description.short=Only authorized users can browse and see the source code.
  563. visibility.private.description.long=Only members of the organization will be able to browse your source code and see the result of your analysis.
  564. #------------------------------------------------------------------------------
  565. #
  566. # ADMIN PAGE TITLES and descriptions
  567. #
  568. #------------------------------------------------------------------------------
  569. coding_rules.page=Rules
  570. coding_rule.page={0} rule: {1}
  571. global_permissions.page=Global Permissions
  572. global_permissions.page.description=Grant and revoke permissions to make changes at the global level. These permissions include editing Quality Profiles, executing analysis, and performing global system administration.
  573. roles.page=Project Permissions
  574. roles.page.description2=Grant and revoke project-level permissions. Permissions can be granted to groups or individual users.
  575. roles.page.description_portfolio=Grant and revoke portfolio-level permissions. Permissions can be granted to groups or individual users.
  576. roles.page.description_application=Grant and revoke application-level permissions. Permissions can be granted to groups or individual users.
  577. roles.page.description.github=Project permissions are read-only for users provisioned from GitHub. For non-GitHub users, permissions can only be removed.
  578. project_permission.github_managed=Provisioned from GitHub
  579. project_permission.local_project_with_github_provisioning=Please note that this project is not linked to GitHub. Bind it to GitHub to benefit from permission provisioning.
  580. project_permission.remove_only_confirmation=Are you sure you want to remove the permission {permission} from {holder}? The permission can not be added back.
  581. project_permission.remove_only_confirmation_title=Remove permission
  582. project_settings.page=General Settings
  583. project_settings.page.description=Edit project settings.
  584. project_links.page=Links
  585. project_links.page.description=Edit some links associated with this project.
  586. projects_management.page.description=Use this page to delete multiple projects at once, or to provision projects if you would like to configure them before the first analysis. Note that once a project is provisioned, you have access to perform all project configurations on it.
  587. settings.page=General Settings
  588. settings.page.description=Edit global settings for this {instance} instance.
  589. system_info.page=System Info
  590. project_quality_profiles.page=Quality Profiles
  591. project_quality_profiles.page.description=Choose which profile is associated with this project on a language-by-language basis.
  592. project_quality_gate.page=Quality Gate
  593. project_quality_gate.page.description=Choose which quality gate is associated with this project.
  594. update_key.page=Update Key
  595. update_key.page.description=Edit the key of a project. Key changes must be made here BEFORE analyzing the project with the new keys, otherwise the analysis will simply create another project with the new key, rather than updating the existing project.
  596. deletion.page=Deletion
  597. project_deletion.page.description=Delete this project. The operation cannot be undone.
  598. portfolio_deletion.page.description=This portfolio and its sub-portfolios will be deleted. If this portfolio is referenced by other entities, it will be removed from them. Independent entities referenced by this portfolio, such as projects and other top-level portfolios will not be deleted. This operation cannot be undone.
  599. application_deletion.page.description=Delete this application. Application projects will not be deleted. Projects referenced by this application will not be deleted. This operation cannot be undone.
  600. application.branches.help=Easily create Application branches composed of the branches of projects in your application.
  601. application.branches.link=Create Branch
  602. project_branch_pull_request.page=Branches & Pull Requests
  603. project_branch_pull_request.lifetime_information=Branches and Pull Requests are permanently deleted after {days} days without analysis.
  604. project_branch_pull_request.lifetime_information.admin=You can adjust this value globally in {settings}.
  605. project_branch_pull_request.branch.rename=Rename branch
  606. project_branch_pull_request.branch.set_main=Set as main branch
  607. project_branch_pull_request.branch.set_x_as_main=Set "{branch}" as the main branch
  608. project_branch_pull_request.branch.delete=Delete branch
  609. project_branch_pull_request.branch.actions_label=Update {0}
  610. project_branch_pull_request.branch.delete.are_you_sure=Are you sure you want to delete branch "{name}"?
  611. project_branch_pull_request.branch.main_branch.are_you_sure=Are you sure you want to set branch "{branch}" as the main branch of this project?
  612. project_branch_pull_request.branch.main_branch.requires_reindex=Changing the main branch of your project will trigger a project re-indexing and may impact the level of information that is available until re-indexing is complete.
  613. project_branch_pull_request.branch.main_branch.learn_more=Please refer to the {documentation} to understand the impacts of changing the main branch.
  614. project_branch_pull_request.branch.auto_deletion.keep_when_inactive=Keep when inactive
  615. project_branch_pull_request.branch.auto_deletion.keep_when_inactive.tooltip=When turned on, the branch will not be automatically deleted when inactive.
  616. project_branch_pull_request.branch.auto_deletion.main_branch_tooltip=The main branch is always excluded from automatic deletion.
  617. project_branch_pull_request.pull_request.delete=Delete Pull Request
  618. project_branch_pull_request.pull_request.delete.are_you_sure=Are you sure you want to delete Pull Request "{name}"?
  619. project_branch_pull_request.tabs.branches=Branches
  620. project_branch_pull_request.tabs.pull_requests=Pull Requests
  621. project_branch_pull_request.table.branch=Branch
  622. project_branch_pull_request.table.pull_request=Pull Request
  623. project_branch_pull_request.last_analysis_date=Last Analysis Date
  624. project_baseline.page=New Code
  625. project_baseline.page.description=The new code definition sets which part of your code will be considered new code.
  626. project_baseline.page.description2=You can adjust this setting globally in {link}.
  627. project_baseline.page.description2.link=General Settings
  628. project_baseline.page.question=Choose the baseline for new code for this project
  629. project_baseline.default_setting=Project setting
  630. project_baseline.global_setting=Use the global setting
  631. project_baseline.specific_setting=Define a specific setting for this project
  632. project_baseline.configure_branches=Set a specific setting for a branch
  633. project_baseline.compliance.warning.title.project=Your project new code definition is not compliant with the Clean as You Code methodology
  634. baseline.specific_analysis=Specific analysis
  635. baseline.specific_analysis.description=Choose an analysis as the baseline for the new code.
  636. baseline.specific_analysis.compliance_warning.title=Choosing the "Specific analysis" option from the SonarQube UI is not compliant with the Clean as You Code methodology
  637. baseline.specific_analysis.compliance_warning.explanation=It has been deprecated. The option remains available through the Web API.
  638. baseline.specific_analysis.compliance_warning.link=Defining New Code
  639. baseline.reference_branch=Reference branch
  640. baseline.reference_branch.description=Choose a branch as the baseline for the new code.
  641. baseline.reference_branch.usecase=Recommended for projects using feature branches.
  642. baseline.reference_branch.description2=The branch you select as the reference branch will need its own new code definition to prevent it from using itself as a reference.
  643. baseline.last_analysis_before=Last analysis before
  644. baseline.next_analysis_notice=Changes will take effect after the next analysis
  645. baseline.reference_branch.choose=Choose a branch
  646. baseline.reference_branch.does_not_exist=Branch {0} could not be found in SonarQube.
  647. baseline.reference_branch.cannot_be_itself=A branch cannot be used as its own reference branch
  648. baseline.reference_branch.invalid_branch_setting=Branch {0} cannot use itself as a reference. Define a specific setting instead of using the project-level setting.
  649. baseline.edit_branch_setting=Edit the branch's setting
  650. branch_list.branch=Branch
  651. branch_list.current_setting=Setting
  652. branch_list.current_baseline=Current Baseline
  653. branch_list.actions=Actions
  654. branch_list.show_actions_for_x=Show actions for branch {0}
  655. branch_list.edit_for_x=Edit {0}
  656. branch_list.default_setting=Project setting
  657. baseline.new_code_period_for_branch_x=New Code for {0}
  658. baseline.new_code_period_for_branch_x.question=Choose the baseline for new code for this branch
  659. regulatory_report.page=Regulatory Report
  660. regulatory_report.description1=The regulatory report is a zip file containing a snapshot of the selected branch. It contains:
  661. regulatory_report.bullet_point1=An overview of the selected branch of the project.
  662. regulatory_report.bullet_point2=The configuration items relevant to the project's quality (quality profile, quality gate, and analysis exclusions).
  663. regulatory_report.bullet_point3=Lists of findings for both new and overall code on the selected branch.
  664. regulatory_report.description2=The generation and download of the report may take a few minutes.
  665. regulatory_page.download_start.sentence=Your download should start shortly. This may take some time.
  666. regulatory_page.select_branch=Select Branch
  667. regulatory_page.no_available_branch=No branch has been analyzed yet, no report can be generated.
  668. regulatory_page.available_branches_info.only_keep_when_inactive=Only branches marked as "Keep when inactive" are available.
  669. regulatory_page.available_branches_info.more_info=For further details, please check the {doc_link}.
  670. regulatory_page.available_branches_info.more_info.doc_link=related documentation
  671. #------------------------------------------------------------------------------
  672. #
  673. # OTHER PAGE TITLES
  674. #
  675. #------------------------------------------------------------------------------
  676. page_title.template.default=%s - SonarQube
  677. page_title.template.with_category=%s - {0} - SonarQube
  678. page_title.template.with_instance={0} - %s - SonarQube
  679. overview.page=Overview
  680. code.page=Code
  681. permissions.page=Permissions
  682. quality_profiles.page=Quality Profiles
  683. quality_gates.page=Quality Gates
  684. issues.page=Issues
  685. issues.skip_to_filters=Skip to issue filters
  686. issues.skip_to_list=Skip to issues list
  687. view_projects.page=Projects
  688. portfolios.page=Portfolios
  689. portfolio_breakdown.page=Portfolio Breakdown
  690. project_activity.page=Activity
  691. #------------------------------------------------------------------------------
  692. #
  693. # ASYNC PROCESS
  694. #
  695. #------------------------------------------------------------------------------
  696. process.still_working=Still Working...
  697. process.fail=Failed
  698. #------------------------------------------------------------------------------
  699. #
  700. # SESSION
  701. #
  702. #------------------------------------------------------------------------------
  703. sessions.log_in=Log in
  704. #------------------------------------------------------------------------------
  705. #
  706. # Audit Logs
  707. #
  708. #------------------------------------------------------------------------------
  709. audit_logs.page=Audit Logs
  710. audit_logs.page.description.1=Audit Logs help Administrators keep control and traceability of security related changes performed on the platform.
  711. audit_logs.page.description.2=Your instance is set to keep audit logs for {housekeeping}. You can change the number of days by updating your {link}.
  712. audit_logs.page.description.link=housekeeping policy
  713. audit_logs.housekeeping_policy.Weekly=7 days
  714. audit_logs.housekeeping_policy.Monthly=30 days
  715. audit_logs.housekeeping_policy.Trimestrial=90 days
  716. audit_logs.housekeeping_policy.Yearly=one year
  717. audit_logs.download=Download Audit Logs
  718. audit_logs.download_start.try_again=Try Again
  719. audit_logs.download_start.sentence.1=Your download should start shortly. For longer periods this might take some time.
  720. audit_logs.download_start.sentence.2=If the download doesn’t start after a few seconds, try to reduce the period for which you are fetching audit logs.
  721. audit_logs.download_start.sentence.3=Change your selection above to download additional audit logs.
  722. audit_logs.range_option.today=Today
  723. audit_logs.range_option.7days=7 days
  724. audit_logs.range_option.30days=30 days
  725. audit_logs.range_option.90days=90 days
  726. audit_logs.range_option.custom=Custom
  727. #------------------------------------------------------------------------------
  728. #
  729. # HOTSPOTS
  730. #
  731. #------------------------------------------------------------------------------
  732. risk_exposure.HIGH=High
  733. risk_exposure.MEDIUM=Medium
  734. risk_exposure.LOW=Low
  735. hotspots.page=Security Hotspots
  736. hotspots.no_hotspots.title=There are no Security Hotspots to review.
  737. hotspots.no_hotspots.description=Next time you analyze a piece of code that contains a potential security risk, it will show up here.
  738. hotspots.no_hotspots_for_file.title=The selected file contains no hotspots.
  739. hotspots.no_hotspots_for_file.description=Go back and select another file, or click "Show all hotspots".
  740. hotspots.no_hotspots_for_filters.title=We couldn't find any results matching the selected criteria.
  741. hotspots.no_hotspots_for_filters.description=Try changing the filters to get some results.
  742. hotspots.no_hotspots_for_keys.title=The requested hotspots no longer exist.
  743. hotspots.no_hotspots_for_keys.description=They have been closed because the code involved has been changed or removed.
  744. hotspots.learn_more=Learn more about Security Hotspots
  745. hotspots.list=List of Security Hotspots
  746. hotspots.list_title={0} Security Hotspots
  747. hotspots.list_title.TO_REVIEW={0} Security Hotspots to review
  748. hotspots.list_title.ACKNOWLEDGED={0} Security Hotspots reviewed as acknowledged
  749. hotspots.list_title.FIXED={0} Security Hotspots reviewed as fixed
  750. hotspots.list_title.SAFE={0} Security Hotspots reviewed as safe
  751. hotspots.risk_exposure=Review priority
  752. hotspots.tabs.code=Where is the risk?
  753. hotspots.tabs.risk_description=What's the risk?
  754. hotspots.tabs.vulnerability_description=Assess the risk
  755. hotspots.tabs.fix_recommendations=How can I fix it?
  756. hotspots.tabs.activity=Activity
  757. hotspots.tabs.code.short=Where
  758. hotspots.tabs.risk_description.short=What
  759. hotspots.tabs.vulnerability_description.short=Assess
  760. hotspots.tabs.fix_recommendations.short=How
  761. hotspots.tabs.activity.short=Activity
  762. hotspots.review_history.created=created Security Hotspot
  763. hotspots.review_history.comment_added=added a comment
  764. hotspots.comment.field=Comment:
  765. hotspots.comment.open=Comment
  766. hotspots.comment.submit=Comment
  767. hotspots.open_in_ide.success=Success. Switch to your IDE to see the security hotspot.
  768. hotspots.open_in_ide.failure=Unable to connect to your IDE to open the Security Hotspot. Please make sure you're running the latest version of SonarLint.
  769. hotspots.assignee.select_user=Select a user...
  770. hotspots.assignee.change_user=Click to change assignee
  771. hotspots.status.cannot_change_status=Changing a hotspot's status requires permission.
  772. hotspots.status.review=Review
  773. hotspots.status.review_title=Review Security Hotspot
  774. hotspots.status.select=Select a status
  775. hotspots.status.add_comment=Add a comment
  776. hotspots.status.add_comment_optional=Add a comment (Optional)
  777. hotspots.status.change_status=Change status
  778. hotspots.status_option.TO_REVIEW=To review
  779. hotspots.status_option.TO_REVIEW.description=This security hotspot needs to be reviewed to assess whether the code poses a risk.
  780. hotspots.status_option.ACKNOWLEDGED=Acknowledged
  781. hotspots.status_option.ACKNOWLEDGED.description=The code has been reviewed and does pose a risk. A fix is required.
  782. hotspots.status_option.FIXED=Fixed
  783. hotspots.status_option.FIXED.description=The code has been reviewed and modified to follow the recommended secure coding practices.
  784. hotspots.status_option.SAFE=Safe
  785. hotspots.status_option.SAFE.description=The code has been reviewed and does not pose a risk. It does not need to be modified.
  786. hotspots.get_permalink=Get Permalink
  787. hotspots.no_associated_lines=Security Hotspot raised on the following file:
  788. hotspots.congratulations=Congratulations!
  789. hotspots.find_in_status_filter_x= You can find it again by setting the status filter to {status_label}.
  790. hotspots.successful_status_change_to_x=The Security Hotspot was successfully changed to {0}.
  791. hotspots.x_done_keep_going={percentage} of the Security Hotspots have been reviewed.
  792. hotspots.see_x_hotspots=See "{0}" Security Hotspots
  793. hotspots.continue_to_next_hotspot=Continue Reviewing
  794. hotspot.filters.title=Filters
  795. hotspot.filters.assignee.assigned_to_me=Assigned to me
  796. hotspot.filters.assignee.all=All
  797. hotspot.filters.clear=Clear filters
  798. hotspot.filters.status=Status filter
  799. hotspot.filters.status.to_review=To review
  800. hotspot.filters.status.acknowledged=Acknowledged
  801. hotspot.filters.status.fixed=Fixed
  802. hotspot.filters.period=Period filter
  803. hotspot.filters.period.since_leak_period=New Code
  804. hotspot.filters.period.overall=Overall code
  805. hotspot.filters.status.safe=Safe
  806. hotspot.filters.by_file_or_list_x=Your hotspots are currently filtered, {show_all_link}
  807. hotspot.filters.show_all=show all hotspots
  808. hotspot.section.activity=Activity
  809. hotspot.location.count={0} extra location
  810. hotspot.location.count.plural={0} extra locations
  811. hotspots.reviewed.tooltip=Percentage of open Security Hotspots that have been reviewed (Acknowledged, Fixed or Safe)
  812. hotspots.review_hotspot=Review Hotspot
  813. hotspots.assign.success=Security Hotspot was successfully assigned to {0}
  814. hotspots.assign.unassign.success=Security Hotspot was successfully unassigned
  815. hotspots.update.success=Update successful
  816. hotspots.success_dialog.do_not_show=Don't show this dialog next time
  817. #------------------------------------------------------------------------------
  818. #
  819. # ISSUES
  820. #
  821. #------------------------------------------------------------------------------
  822. issues.on_file_x=Issues on file {0}
  823. issue.add_tags=Add Tags
  824. issue.remove_tags=Remove Tags
  825. issue.no_tag=No tags
  826. issue.create_tag=Create Tag
  827. issue.create_tag_x=Create Tag '{0}'
  828. issue.tags=Tags
  829. issue.assign.assigned_to_x_click_to_change=Assigned to {0}, click to change
  830. issue.assign.unassigned_click_to_assign=Unassigned, click to assign issue
  831. issue.assign.formlink=Assign
  832. issue.assign.to_me=to me
  833. issue.quick_fix=Quick fix
  834. issue.quick_fix_available_with_sonarlint=Quick fix available in {link}
  835. issue.quick_fix_available_with_sonarlint_no_link=Quick fix available in SonarLint
  836. issue.comment.add_comment=Add Comment
  837. issue.comment.add_comment.cancel=Cancel adding comment
  838. issue.comment.enter_comment=Enter Comment
  839. issue.comment.formlink=Comment
  840. issue.comment.formlink.total=comment
  841. issue.comment.formlink.total.plural=comments
  842. issue.comment.explain_why=Consider explaining why
  843. issue.comment.posted_on=Comment posted on
  844. issue.comment.edit=Edit comment
  845. issue.comment.edit.cancel=Cancel editing comment
  846. issue.comment.delete=Delete comment
  847. issue.comment.delete_confirm_message=Do you want to delete this comment?
  848. issue.comment.empty.list=There are no comments yet on this issue.
  849. issue.rule_details=Rule Details
  850. issue.send_notifications=Send Notifications
  851. issue.why_this_issue=Why is this an issue?
  852. issue.why_this_issue.long=Why is this an issue? Open the rule's details at the bottom of the page.
  853. issue.type.type_x_click_to_change=Type: {0}, click to change
  854. issue.severity.severity_x_click_to_change=Severity: {0}, click to change
  855. issue.change_status=Change Status
  856. issue.transition.community_plug_link=SonarSource Community
  857. issue.transition.status_x_click_to_change=Issue status: {0}, click to change
  858. issue.transition=Transition
  859. issue.transition.accept=Accept
  860. issue.transition.accept.description=Won't Fix now
  861. issue.transition.confirm=Confirm
  862. issue.transition.confirm.description=Deprecated
  863. issue.transition.confirm.deprecated_tooltip.1=The Confirm action is deprecated.
  864. issue.transition.confirm.deprecated_tooltip.2=If you were using Confirm to communicate with team members, consider assigning the issue or using comments and tags instead.
  865. issue.transition.confirm.deprecated_tooltip.3=If you have reviewed this issue but cannot fix it now, consider marking it as Accepted.
  866. issue.transition.unconfirm=Open
  867. issue.transition.unconfirm.description=Reopen issue
  868. issue.transition.resolve=Fixed
  869. issue.transition.resolve.description=Deprecated
  870. issue.transition.resolve.deprecated_tooltip.1=The Resolve as Fixed action is deprecated.
  871. issue.transition.resolve.deprecated_tooltip.2=The next analysis result will show if the issue has been fixed, otherwise it will reopen it automatically.
  872. issue.transition.resolve.deprecated_tooltip.3=If you were using Resolve as Fixed to communicate with team members that an issue is being fixed, consider assigning it or using comments and tags instead.
  873. issue.transition.falsepositive=False Positive
  874. issue.transition.falsepositive.description=Analysis is mistaken
  875. issue.transition.reopen=Open
  876. issue.transition.reopen.description=Reopen issue
  877. issue.transition.comment=Status change comment
  878. issue.transition.comment.placeholder.accept=Share why (optional)
  879. issue.transition.comment.placeholder.confirm=Share why this is confirmed (optional)
  880. issue.transition.comment.placeholder.resolve=Share why this is fixed (optional)
  881. issue.transition.comment.placeholder.falsepositive=Share why this is a false positive (optional)
  882. issue.transition.close=Close
  883. issue.transition.close.description=
  884. issue.transition.wontfix=Won't Fix
  885. issue.transition.wontfix.description=Deprecated
  886. issue.transition.openasvulnerability=Open as Vulnerability
  887. issue.transition.openasvulnerability.description=There's a Vulnerability in the code that must be fixed
  888. issue.transition.resolveasreviewed=Resolve as Reviewed
  889. issue.transition.resolveasreviewed.description=There is no Vulnerability in the code
  890. issue.transition.resetastoreview=Reset as To Review
  891. issue.transition.resetastoreview.description=The Security Hotspot should be analyzed again
  892. issue.tabs.code=Where is the issue?
  893. issue.location_x=Location {0}
  894. issue.closed.file_level=This issue is {status}. It was detected in the file below and is no longer being detected.
  895. issue.closed.project_level=This issue is {status}. It was detected in the project below and is no longer being detected.
  896. issues.assignee.change_user=Click to change assignee
  897. issues.action_select=Select issue
  898. issues.action_select.label=Select issue {0}
  899. issue.set_severity=Change Severity
  900. issue.set_type=Change Type
  901. issue.type.CODE_SMELL=Code Smell
  902. issue.type.BUG=Bug
  903. issue.type.VULNERABILITY=Vulnerability
  904. issue.type.SECURITY_HOTSPOT=Security Hotspot
  905. issue.type.CODE_SMELL.plural=Code Smells
  906. issue.type.BUG.plural=Bugs
  907. issue.type.VULNERABILITY.plural=Vulnerabilities
  908. issue.type.SECURITY_HOTSPOT.plural=Security Hotspots
  909. issue.type.deprecation.title=Issue types are deprecated and can no longer be modified.
  910. issue.type.deprecation.filter_by=You can now filter issues by:
  911. issue.type.deprecation.documentation=Documentation
  912. issue.severity.deprecation.title=Severities are now directly tied to the software quality impacted. This old severity is deprecated and can no longer be modified.
  913. issue.severity.deprecation.filter_by=You can now filter issues by:
  914. issue.severity.deprecation.documentation=Documentation
  915. issue.severity.new=The new severities
  916. issue.cct_attribute.label=Clean code attribute
  917. issue.software_qualities.label=Software qualities impacted
  918. issue.impact.severity.tooltip=This issue has a {severity} impact on the {quality} of your software.
  919. issue.clean_code_attribute_category.CONSISTENT=Consistency
  920. issue.clean_code_attribute_category.CONSISTENT.title=This is a consistency issue.
  921. issue.clean_code_attribute_category.CONSISTENT.advice=To be consistent, the code needs to be written in a uniform and conventional way.
  922. issue.clean_code_attribute_category.INTENTIONAL=Intentionality
  923. issue.clean_code_attribute_category.INTENTIONAL.title=This is an intentionality issue.
  924. issue.clean_code_attribute_category.INTENTIONAL.advice=To be intentional, the code content needs to be precise and purposeful.
  925. issue.clean_code_attribute_category.ADAPTABLE=Adaptability
  926. issue.clean_code_attribute_category.ADAPTABLE.title=This is an adaptability issue.
  927. issue.clean_code_attribute_category.ADAPTABLE.advice=To be adaptable, the code needs to be structured to be easy to evolve and develop with confidence.
  928. issue.clean_code_attribute_category.RESPONSIBLE=Responsibility
  929. issue.clean_code_attribute_category.RESPONSIBLE.title=This is a responsibility issue.
  930. issue.clean_code_attribute_category.RESPONSIBLE.advice=To be responsible, the code must take into account its ethical obligations on data and potential impact of societal norms.
  931. issue.clean_code_attribute=Clean Code Attribute
  932. issue.clean_code_attribute.CLEAR=Not clear
  933. issue.clean_code_attribute.CLEAR.title=This is an intentionality issue, the code is not clear enough.
  934. issue.clean_code_attribute.CLEAR.advice=To be clear, the code needs to be self-explanatory and transparently communicate its functionality.
  935. issue.clean_code_attribute.COMPLETE=Not complete
  936. issue.clean_code_attribute.COMPLETE.title=This is an intentionality issue, the code is not complete enough.
  937. issue.clean_code_attribute.COMPLETE.advice=To be complete, the code must be functional and achieve its implied goals through comprehensive, adequate, and thorough code constructs.
  938. issue.clean_code_attribute.CONVENTIONAL=Not conventional
  939. issue.clean_code_attribute.CONVENTIONAL.title=This is a consistency issue, the code is not conventional enough.
  940. issue.clean_code_attribute.CONVENTIONAL.advice=To be conventional, the code needs to perform tasks with expected instructions, and adhere to a single choice across all instances when faced with equally good options.
  941. issue.clean_code_attribute.DISTINCT=Not distinct
  942. issue.clean_code_attribute.DISTINCT.title=This is an adaptability issue, the code is not distinct enough.
  943. issue.clean_code_attribute.DISTINCT.advice=To be distinct, the code needs to have procedures and data that are unique and distinctive, without unnecessary duplication.
  944. issue.clean_code_attribute.EFFICIENT=Not efficient
  945. issue.clean_code_attribute.EFFICIENT.title=This is an intentionality issue, the code is not efficient enough.
  946. issue.clean_code_attribute.EFFICIENT.advice=To be efficient, the code needs to use resources without needless waste, and prioritize economical options when available.
  947. issue.clean_code_attribute.FOCUSED=Not focused
  948. issue.clean_code_attribute.FOCUSED.title=This is an adaptability issue, the code is not focused enough.
  949. issue.clean_code_attribute.FOCUSED.advice=To be focused, the code needs to have a single, narrow, and specific scope. Each of its units should have only one concise purpose.
  950. issue.clean_code_attribute.FORMATTED=Not formatted
  951. issue.clean_code_attribute.FORMATTED.title=This is a consistency issue, the code is not formatted enough.
  952. issue.clean_code_attribute.FORMATTED.advice=To be formatted, the code needs to be presented in a systematic and regular way, with the same non-semantic choices used over all the codebase.
  953. issue.clean_code_attribute.IDENTIFIABLE=Not identifiable
  954. issue.clean_code_attribute.IDENTIFIABLE.title=This is a consistency issue, the code is not identifiable enough.
  955. issue.clean_code_attribute.IDENTIFIABLE.advice=To be identifiable, the code needs to include names and identifiers with a regular structure based on language conventions.
  956. issue.clean_code_attribute.LAWFUL=Not lawful
  957. issue.clean_code_attribute.LAWFUL.title=This is a responsibility issue, the code is not lawful enough.
  958. issue.clean_code_attribute.LAWFUL.advice=To be lawful, the code needs to respect licensing and copyright regulation.
  959. issue.clean_code_attribute.LOGICAL=Not logical
  960. issue.clean_code_attribute.LOGICAL.title=This is an intentionality issue, the code is not logical enough.
  961. issue.clean_code_attribute.LOGICAL.advice=To be logical, the code needs to have well-formed and sound instructions that work together, and be free of explicit errors.
  962. issue.clean_code_attribute.MODULAR=Not modular
  963. issue.clean_code_attribute.MODULAR.title=This is an adaptability issue, the code is not modular enough.
  964. issue.clean_code_attribute.MODULAR.advice=To be modular, the code needs to be organized and distributed to emphasize the separation between its parts.
  965. issue.clean_code_attribute.RESPECTFUL=Not respectful
  966. issue.clean_code_attribute.RESPECTFUL.title=This is a responsibility issue, the code is not respectful enough.
  967. issue.clean_code_attribute.RESPECTFUL.advice=To be respectful, the code needs to refrain from using discriminatory and offensive language.
  968. issue.clean_code_attribute.TESTED=Not tested
  969. issue.clean_code_attribute.TESTED.title=This is an adaptability issue, the code is not tested enough.
  970. issue.clean_code_attribute.TESTED.advice=To be tested, the code needs to have automated functional tests that provide confidence in the functionality.
  971. issue.clean_code_attribute.TRUSTWORTHY=Not trustworthy
  972. issue.clean_code_attribute.TRUSTWORTHY.title=This is a responsibility issue, the code is not trustworthy enough.
  973. issue.clean_code_attribute.TRUSTWORTHY.advice=To be trustworthy, the code needs to abstain from revealing or hard-coding private information.
  974. issue.issue_status.OPEN=Open
  975. issue.issue_status.ACCEPTED=Accepted
  976. issue.issue_status.CONFIRMED=Confirmed
  977. issue.issue_status.FIXED=Fixed
  978. issue.issue_status.FALSE_POSITIVE=False Positive
  979. issue.status.ACCEPTED=Accepted
  980. issue.status.REOPENED=Reopened
  981. issue.status.RESOLVED=Resolved
  982. issue.status.OPEN=Open
  983. issue.status.CONFIRMED=Confirmed
  984. issue.status.CLOSED=Closed
  985. issue.status.TO_REVIEW=To Review
  986. issue.status.IN_REVIEW=In Review
  987. issue.status.REVIEWED=Reviewed
  988. issue.scope.MAIN=Main code
  989. issue.scope.TEST=Test code
  990. issue.resolution.FALSE-POSITIVE=False Positive
  991. issue.resolution.FALSE-POSITIVE.description=Issues that manual review determined were False Positives. Effort from these issues is ignored.
  992. issue.resolution.FIXED=Fixed
  993. issue.resolution.FIXED.description=Issues that were corrected in code and reanalyzed.
  994. issue.resolution.WONTFIX=Won't Fix
  995. issue.resolution.WONTFIX.description=Issues that are accepted in this context. They and their effort will be ignored.
  996. issue.resolution.REMOVED=Removed
  997. issue.resolution.REMOVED.description=Either the rule or the resource was changed (removed, relocated, parameters changed, etc.) so that analysis no longer finds these issues.
  998. issue.unresolved.description=Unresolved issues have not been addressed in any way.
  999. issue.action.permalink=Get permalink
  1000. issue.line_affected=Line affected:
  1001. issue.introduced=Introduced:
  1002. issue.code_variants=Variants:
  1003. issue.rule_status=Rule status
  1004. issue.effort=Effort:
  1005. issue.x_effort={0} effort
  1006. issue.ncloc_x.short=L{0}
  1007. issue.1_code_variant=1 variant
  1008. issue.x_code_variants={0} variants
  1009. issue.filter_similar_issues=Filter Similar Issues
  1010. issue.this_issue_involves_x_code_locations=This issue involves {0} code location(s)
  1011. issue.this_flow_involves_x_code_locations=This flow involves {0} code location(s)
  1012. issue.from_external_rule_engine=Issue detected by an external rule engine: {0}
  1013. issue.external_issue_description=This is external rule {0}. No details are available.
  1014. issues.loading_issues=Loading issues
  1015. issues.return_to_list=Return to List
  1016. issues.bulk_change_X_issues=Bulk Change {0} Issue(s)
  1017. issues.select_all_issues=Select all Issues
  1018. issues.issues=issues
  1019. issues.to_select_issues=Select issues
  1020. issues.to_navigate=Navigate to issue
  1021. issues.to_navigate_back=to navigate back
  1022. issues.to_navigate_issue_locations=to navigate issue locations
  1023. issues.to_switch_flows=to switch flows
  1024. issues.new_code=Issues in new code
  1025. issues.new_code_period=New Code Period
  1026. issues.max_new_code_period=Max New Code Period
  1027. issues.my_issues=My Issues
  1028. issues.no_my_issues=There are no issues assigned to you.
  1029. issues.no_issues=No Issues. Hooray!
  1030. issues.fixed_issues=Fixed issues
  1031. issues.fixed_issues.description=List of issues that will be fixed by {pullRequest}
  1032. issues.x_more_locations=+ {0} more locations
  1033. issues.not_all_issue_show=Not all issues are included
  1034. issues.not_all_issue_show_why=You do not have access to all projects in this portfolio
  1035. issues.open_in_ide.success=Success. Switch to your IDE to see the issue.
  1036. issues.open_in_ide.failure=Unable to open the issue in the IDE. Please check the {link}.
  1037. issue.activity.review_history.created=Created Issue
  1038. issue.activity.review_history.comment_added=added a comment
  1039. issue.activity.add_comment=Add a comment
  1040. # ISSUES SUBNAVIGATION
  1041. issue.hint.navigate=Navigate locations
  1042. issues.execution_flows=execution flows
  1043. issues.execution_flow=execution flow
  1044. issues.data_flow=data flow
  1045. issues.data_flows=data flows
  1046. issues.locations=locations
  1047. issues.location=location
  1048. issues.show_x_more_locations=Show {0} more location(s)
  1049. issue.flow.1_step=1 step
  1050. issue.flow.x_steps={0} steps
  1051. issue.unnamed_location=Other location
  1052. issue.show_full_execution_flow=See the whole {0} step execution flow
  1053. #------------------------------------------------------------------------------
  1054. #
  1055. # ISSUE CHANGELOG
  1056. #
  1057. #------------------------------------------------------------------------------
  1058. issue.changelog.found_on_x_show_more=Found on {0}; click to see changelog
  1059. issue.changelog.changed_to={0} changed to {1}
  1060. issue.changelog.was=was {0}
  1061. issue.changelog.webhook_source= (change triggered by a {0} webhook)
  1062. issue.change.file_move=The file has been moved from {0} to {1}
  1063. issue.change.from_branch=The issue has been copied from branch '{0}' to branch '{1}'
  1064. issue.change.from_non_branch=The issue has been merged from '{0}' into '{1}'
  1065. issue.changelog.removed={0} removed
  1066. issue.changelog.line_removed_X=Line number removed from issue (was {0})
  1067. issue.changelog.field.severity=Severity
  1068. issue.changelog.field.actionPlan=Action Plan
  1069. issue.changelog.field.assignee=Assignee
  1070. issue.changelog.field.author=Author
  1071. issue.changelog.field.resolution=Resolution
  1072. issue.changelog.field.effort=Effort
  1073. issue.changelog.field.status=Status
  1074. issue.changelog.field.issueStatus=Status
  1075. issue.changelog.field.tags=Tags
  1076. issue.changelog.field.code_variants=Code Variants
  1077. issue.changelog.field.type=Type
  1078. issue.changelog.field.file=File
  1079. issue.changelog.field.cleanCodeAttribute=Clean Code Attribute
  1080. #------------------------------------------------------------------------------
  1081. #
  1082. # ISSUES FACETS
  1083. #
  1084. #------------------------------------------------------------------------------
  1085. issues.facet.period=Period
  1086. issues.facet.types=Type
  1087. issues.facet.severities=Severity
  1088. issues.facet.scopes=Scope
  1089. issues.facet.projects=Project
  1090. issues.facet.issueStatuses=Status
  1091. issues.facet.hotspotStatuses=Hotspot Status
  1092. issues.facet.assignees=Assignee
  1093. issues.facet.files=File
  1094. issues.facet.modules=Module
  1095. issues.facet.directories=Directory
  1096. issues.facet.tags=Tag
  1097. issues.facet.rules=Rule
  1098. issues.facet.languages=Language
  1099. issues.facet.cleanCodeAttributeCategories=Clean Code Attribute
  1100. issues.facet.impactSoftwareQualities=Software Quality
  1101. issues.facet.codeVariants=Code Variant
  1102. issues.facet.createdAt=Creation Date
  1103. issues.facet.createdAt.all=All
  1104. issues.facet.createdAt.last_week=Last week
  1105. issues.facet.createdAt.last_month=Last month
  1106. issues.facet.createdAt.last_year=Last year
  1107. issues.facet.createdAt.bar_description={0} issues from {1} to {2}
  1108. issues.facet.authors=Author
  1109. issues.facet.impactSeverities=Severity
  1110. issues.facet.impactSeverities.help.line1=Severities are now directly tied to the software quality impacted. This means that one software quality impacted has one severity.
  1111. issues.facet.impactSeverities.help.line2=There are only three levels: high, medium, and low.
  1112. issues.facet.issues=Issue Key
  1113. issues.facet.mode=Display Mode
  1114. issues.facet.mode.count=Issues
  1115. issues.facet.mode.effort=Effort
  1116. issues.facet.standards=Security Category
  1117. issues.facet.owaspTop10=OWASP Top 10 2017
  1118. issues.facet.owaspTop10_2021=OWASP Top 10 2021
  1119. issues.facet.sonarsourceSecurity=SonarSource
  1120. issues.facet.cwe=CWE
  1121. issues.facet.sonarsource.show_more=Show more SonarSource categories
  1122. #------------------------------------------------------------------------------
  1123. #
  1124. # ISSUE BULK CHANGE
  1125. #
  1126. #------------------------------------------------------------------------------
  1127. issue_bulk_change.form.title=Change {0} issues
  1128. issue_bulk_change.max_issues_reached=There are more issues available than can be treated by a single bulk action. Your changes will only be applied to the first {max} issues.
  1129. issue_bulk_change.x_issues={0} issues
  1130. issue_bulk_change.no_match=There is no issue matching your filter selection
  1131. issue_bulk_change.assignee.change=Assign the selected issues to a user
  1132. issue_bulk_change.select_tags=Select tags
  1133. issue_bulk_change.selected_tags=Selected tags
  1134. issue_bulk_change.resolution_comment=Resolution comment
  1135. #------------------------------------------------------------------------------
  1136. #
  1137. # PROJECTS PAGE
  1138. #
  1139. #------------------------------------------------------------------------------
  1140. projects.page=Projects
  1141. projects.add=Create Project
  1142. projects.create_application=Create Application
  1143. projects.no_projects.empty_instance=There are no visible projects yet.
  1144. projects.no_projects.empty_instance.new_project=Once you analyze some projects, they will show up here.
  1145. projects.no_projects.empty_instance.how_to_add_projects=Here is how you can analyze new projects
  1146. projects.no_favorite_projects=You don't have any favorite projects yet.
  1147. projects.no_favorite_projects.engagement=Discover and mark as favorites projects you are interested in to have a quick access to them.
  1148. projects.explore_projects=Explore Projects
  1149. projects.not_analyzed.TRK=Project's Main Branch is not analyzed yet.
  1150. projects.not_analyzed.APP=None of the Application's projects have been analyzed.
  1151. projects.no_new_code_period.TRK=Project has no new code data yet.
  1152. projects.no_new_code_period.APP=Application has no new code data yet.
  1153. projects.new_code_period_x=New code: last {0}
  1154. projects.configure_analysis=Configure analysis
  1155. projects.last_analysis_on_x=Last analysis: {date}
  1156. projects.search=Search by project name or key
  1157. projects.perspective=Perspective
  1158. projects.skip_to_filters=Skip to project filters
  1159. projects.sort_by=Sort by
  1160. projects.sort_ascending=Result sorted in ascending order
  1161. projects.sort_descending=Result sorted in descending order
  1162. projects.sorting.default=default
  1163. projects.sorting.name=Name
  1164. projects.sorting.analysis_date=Last analysis date
  1165. projects.sorting.creation_date=Creation date
  1166. projects.sorting.reliability=Reliability
  1167. projects.sorting.security=Security
  1168. projects.sorting.security_review=Security Review
  1169. projects.sorting.maintainability=Maintainability
  1170. projects.sorting.coverage=Coverage
  1171. projects.sorting.duplications=Duplications
  1172. projects.sorting.size=Size
  1173. projects.sorting.new_reliability=Reliability
  1174. projects.sorting.new_security=Security
  1175. projects.sorting.new_security_review=Security Review
  1176. projects.sorting.new_maintainability=Maintainability
  1177. projects.sorting.new_coverage=Coverage
  1178. projects.sorting.new_duplications=Duplications
  1179. projects.sorting.new_lines=New Lines
  1180. projects.view.overall=Overall Status
  1181. projects.view.overall_code=Overall Code
  1182. projects.view.new_code=New Code
  1183. projects.worse_of_reliablity_and_security=Worse of Reliability and Security
  1184. projects.limited_set_of_projects=Displayed project set limited to the top {0} projects based on current sort: {1}.
  1185. projects.facets.quality_gate=Quality Gate
  1186. projects.facets.quality_gate.warning_help=Warning status is deprecated. This filter will disappear when no Warning Quality Gate remains.
  1187. projects.facets.rating_x={0} rating
  1188. projects.facets.languages=Languages
  1189. projects.facets.search.languages=Search for languages
  1190. projects.facets.new_lines=New Lines
  1191. projects.facets.tags=Tags
  1192. projects.facets.search.tags=Search for tags
  1193. projects.facets.qualifier=Type
  1194. projects.facets.qualitygate_label_x=Click to filter projects with a {0} quality gate.
  1195. projects.facets.rating_label_single_x=Click to filter projects with a {0} rating of {1}.
  1196. projects.facets.rating_label_multi_x=Click to filter projects with a {0} rating of {1} or worse.
  1197. projects.facets.label_no_data_x=Click to filter projects with no {0} data.
  1198. projects.facets.label_text_x=Click to filter projects by {0}: {1}
  1199. projects.facets.size.label.1=Click to filter projects with fewer than 1k lines of code
  1200. projects.facets.size.label.2=Click to filter projects with 1k lines of code or more
  1201. projects.facets.size.label.3=Click to filter projects with 10k lines of code or more
  1202. projects.facets.size.label.4=Click to filter projects with 100k lines of code or more
  1203. projects.facets.size.label.5=Click to filter projects with more than 500k lines of code
  1204. projects.facets.new_lines.label.1=Click to filter projects with fewer than 1k new lines
  1205. projects.facets.new_lines.label.2=Click to filter projects with 1k new lines or more
  1206. projects.facets.new_lines.label.3=Click to filter projects with 10k new lines or more
  1207. projects.facets.new_lines.label.4=Click to filter projects with 100k new lines or more
  1208. projects.facets.new_lines.label.5=Click to filter projects with more than 500k new lines
  1209. projects.facets.coverage.label.1=Click to filter projects with more than 80% coverage
  1210. projects.facets.coverage.label.2=Click to filter projects with less than 80% coverage
  1211. projects.facets.coverage.label.3=Click to filter projects with less than 70% coverage
  1212. projects.facets.coverage.label.4=Click to filter projects with less than 50% coverage
  1213. projects.facets.coverage.label.5=Click to filter projects with less than 30% coverage
  1214. projects.facets.duplication.label.1=Click to filter projects with less than 3% duplication
  1215. projects.facets.duplication.label.2=Click to filter projects with more than 3% duplication
  1216. projects.facets.duplication.label.3=Click to filter projects with more than 5% duplication
  1217. projects.facets.duplication.label.4=Click to filter projects with more than 10% duplication
  1218. projects.facets.duplication.label.5=Click to filter projects with more than 20% duplication
  1219. projects.facets.no_available_filters_clear_others=No available filters. Clear other filters to see options.
  1220. projects.sort.disabled=Disabled because sorting cannot affect the displayed result with the current project selection.
  1221. projects.sort.analysis_date=by last analysis date (oldest first)
  1222. projects.sort.-analysis_date=by last analysis date (latest first)
  1223. projects.sort.name=by name
  1224. projects.sort.-name=by name
  1225. projects.sort.reliability=by reliability (best first)
  1226. projects.sort.-reliability=by reliability (worst first)
  1227. projects.sort.security=by security (best first)
  1228. projects.sort.-security=by security (worst first)
  1229. projects.sort.maintainability=by maintainability (best first)
  1230. projects.sort.-maintainability=by maintainability (worst first)
  1231. projects.sort.coverage=by coverage (best first)
  1232. projects.sort.-coverage=by coverage (worst first)
  1233. projects.sort.duplications=by duplications (best first)
  1234. projects.sort.-duplications=by duplications (worst first)
  1235. projects.sort.size=by size (smallest first)
  1236. projects.sort.-size=by size (biggest first)
  1237. projects.show_more=Show more projects
  1238. projects.security_hotspots_reviewed=Hotspots Reviewed
  1239. #------------------------------------------------------------------------------
  1240. #
  1241. # DASHBOARD
  1242. #
  1243. #------------------------------------------------------------------------------
  1244. dashboard.project.not_found=The requested project could not be found.
  1245. dashboard.project.not_found.2=Either it has never been analyzed successfully or it has been deleted.
  1246. dashboard.portfolio.not_found=The requested portfolio could not be found.
  1247. dashboard.portfolio.not_found.2=Either its parent has not been recomputed or it has been deleted.
  1248. #------------------------------------------------------------------------------
  1249. #
  1250. # SETTINGS
  1251. #
  1252. #------------------------------------------------------------------------------
  1253. settings.key_x=Key: {0}
  1254. settings.default_x=Default: {0}
  1255. settings.not_set=(not set)
  1256. settings.state.saving=Saving...
  1257. settings.state.saved=Saved!
  1258. settings.state.validation_failed=Validation failed. {0}
  1259. settings.state.value_cant_be_empty=Provide a value or use "Reset" to set the value to the default one.
  1260. settings.state.value_cant_be_empty_no_default=Provide a value.
  1261. settings.state.url_not_valid={0} is not a valid URL
  1262. settings._default=(default)
  1263. settings.boolean.true=True
  1264. settings.boolean.false=False
  1265. settings.default.no_value=<no value>
  1266. settings.default.complex_value=<complex value>
  1267. settings.default.password=<password>
  1268. settings.reset_confirm.title=Reset Setting
  1269. settings.reset_confirm.description=Are you sure that you want to reset this setting?
  1270. settings.definition.reset=Reset "{0}" to default values
  1271. settings.definition.delete_value=Delete value "{1}" for setting "{0}"
  1272. settings.definitions.delete_fields=Delete row {1} for setting "{0}"
  1273. settings.search.placeholder=Find in Settings
  1274. settings.search.results=Search results list
  1275. settings.json.format=Format JSON
  1276. settings.json.format_error=Formatting requires valid JSON. Please fix it and retry.
  1277. settings.analysis_scope.wildcards.introduction=You can use the following wildcards.
  1278. settings.analysis_scope.wildcards.zero_more_char=Match zero or more characters
  1279. settings.analysis_scope.wildcards.zero_more_dir=Match zero or more directories
  1280. settings.analysis_scope.wildcards.single_char=Match a single character
  1281. settings.new_code_period.category=New Code
  1282. settings.new_code_period.title=New Code
  1283. settings.new_code_period.description0=The new code definition sets which part of your code will be considered new code.
  1284. settings.new_code_period.description1=This helps you focus attention on the most recent changes to your project, enabling you to follow the Clean as You Code methodology.
  1285. settings.new_code_period.description2=A specific new code definition can be configured at project level.
  1286. settings.new_code_period.description3=Learn more: {link}
  1287. settings.new_code_period.description3.link=Defining New Code
  1288. settings.new_code_period.question=Choose the baseline for new code for all projects by default
  1289. settings.languages.select_a_language_placeholder=Select a language
  1290. settings.projects.default_visibility_of_new_projects=Default visibility of new projects:
  1291. settings.projects.change_visibility_form.label=Change default visibility of new projects
  1292. settings.projects.change_visibility_form.header=Set Default Visibility of New Projects
  1293. settings.projects.change_visibility_form.warning=This will not change the visibility of already existing projects.
  1294. settings.projects.change_visibility_form.warning.github=This will not change the visibility of already existing projects. Additionally, projects bound to GitHub will not be affected by this option and will be ignored.
  1295. settings.projects.change_visibility_form.submit=Change Default Visibility
  1296. settings.almintegration.title=DevOps Platform Integrations
  1297. settings.almintegration.description=DevOps Platform integrations allow SonarQube to interact with your DevOps Platform. This enables things like authentication, or providing analysis details and a Quality Gate to your Pull Requests directly in your DevOps Platform's interface.
  1298. settings.almintegration.empty.server_base_url=You need to set the Server Base URL in General > {serverBaseUrl} to have correct links from the DevOps Platform to your SonarQube instance.
  1299. settings.almintegration.empty.server_base_url.setting_link=Server Base URL
  1300. settings.almintegration.tab.github=GitHub
  1301. settings.almintegration.tab.bitbucket=Bitbucket
  1302. settings.almintegration.tab.azure=Azure DevOps
  1303. settings.almintegration.tab.gitlab=GitLab
  1304. settings.almintegration.github.info=You need to install a GitHub App with specific settings and permissions to enable Pull Request Decoration on your Organization or Repository. {link}
  1305. settings.almintegration.github.additional_permission=If Quality Gate status reporting fails on private projects, you might need to add an additional permission to the GitHub App. {link}
  1306. settings.almintegration.bitbucketcloud.info=SonarQube needs you to create an {oauth} in your Bitbucket Cloud workspace settings to report the Quality Gate status on Pull Requests. It needs to be a private consumer with {permission} permission. An OAuth callback URL is required by Bitbucket Cloud but not used by SonarQube so any URL works. {doc_link}
  1307. settings.almintegration.bitbucketcloud.oauth=OAuth consumer
  1308. settings.almintegration.empty.azure=Create your first Azure DevOps configuration to start analyzing your repositories on SonarQube.
  1309. settings.almintegration.empty.bitbucket=Create your first Bitbucket configuration to start analyzing your repositories on SonarQube.
  1310. settings.almintegration.empty.bitbucketcloud=Create your first Bitbucket Cloud configuration to start analyzing your repositories on SonarQube.
  1311. settings.almintegration.empty.github=Create your first GitHub configuration to start analyzing your repositories on SonarQube.
  1312. settings.almintegration.empty.gitlab=Create your first GitLab configuration to start analyzing your repositories on SonarQube.
  1313. settings.almintegration.create=Create configuration
  1314. settings.almintegration.create.tooltip=Upgrade to {link} to integrate with multiple {alm} instances.
  1315. settings.almintegration.create.tooltip.link=Enterprise Edition
  1316. settings.almintegration.check_configuration=Check configuration
  1317. settings.almintegration.check_configuration_x=Check configuration '{0}'
  1318. settings.almintegration.edit_configuration=Edit configuration '{0}'
  1319. settings.almintegration.delete_configuration=Delete configuration '{0}'
  1320. settings.almintegration.checking_configuration=Checking configuration
  1321. settings.almintegration.configuration_valid=Configuration valid
  1322. settings.almintegration.configuration_invalid=You have the following errors in your configuration:
  1323. settings.almintegration.could_not_validate=Could not validate this configuration.
  1324. settings.almintegration.delete.header=Delete configuration
  1325. settings.almintegration.delete.message=Are you sure you want to delete the {id} configuration?
  1326. settings.almintegration.delete.info={0} projects will no longer get Pull Request Decorations.
  1327. settings.almintegration.delete.no_info=An unknown number of projects will no longer get Pull Request Decorations.
  1328. settings.almintegration.form.app_id.github.help=The App ID is found on your GitHub App's page on GitHub at Settings > Developer Settings > GitHub Apps
  1329. settings.almintegration.form.header.create=Create a configuration
  1330. settings.almintegration.form.header.edit=Edit the configuration
  1331. settings.almintegration.form.name.azure=Configuration name
  1332. settings.almintegration.form.name.azure.help=Give your configuration a clear and succinct name. This name will be used at project level to identify the correct configured Azure instance for a project.
  1333. settings.almintegration.form.choose_bitbucket_variant=Select which variant you want to configure
  1334. settings.almintegration.form.name.bitbucket=Configuration name
  1335. settings.almintegration.form.name.bitbucket.help=Give your configuration a clear and succinct name. This name will be used at project level to identify the correct configured Bitbucket instance for a project.
  1336. settings.almintegration.form.name.bitbucketcloud=Configuration name
  1337. settings.almintegration.form.name.bitbucketcloud.help=Give your configuration a clear and succinct name. This name will be used at project level to identify the correct configured Bitbucket Cloud instance for a project.
  1338. settings.almintegration.form.name.github=Configuration name
  1339. settings.almintegration.form.name.github.help=Give your configuration a clear and succinct name. This name will be used at project level to identify the correct configured GitHub App for a project.
  1340. settings.almintegration.form.name.gitlab=Configuration name
  1341. settings.almintegration.form.name.gitlab.help=Give your configuration a clear and succinct name. This name will be used at project level to identify the correct configured GitLab instance for a project.
  1342. settings.almintegration.form.workspace.bitbucketcloud=Workspace ID
  1343. settings.almintegration.form.workspace.bitbucketcloud.error=Workspace ID's can only contain lowercase letters, numbers, dashes, and underscores.
  1344. settings.almintegration.form.workspace.bitbucketcloud.help=The workspace ID is part of your bitbucket cloud URL {example}
  1345. settings.almintegration.form.oauth_key.bitbucketcloud.help=Bitbucket automatically creates an OAuth key when you create your OAuth consumer. You can find it in your Bitbucket Cloud workspace settings under OAuth consumers.
  1346. settings.almintegration.form.oauth_secret.bitbucketcloud.help=Bitbucket automatically creates an OAuth secret when you create your OAuth consumer. You can find it in your Bitbucket Cloud workspace settings under OAuth consumers.
  1347. settings.almintegration.form.url.azure=Azure DevOps URL
  1348. settings.almintegration.form.url.azure.help1=For Azure DevOps Server, provide the full collection URL:
  1349. settings.almintegration.form.url.azure.help2=For Azure DevOps Services, provide the full organization URL:
  1350. settings.almintegration.form.url.bitbucket=Bitbucket Server URL
  1351. settings.almintegration.form.url.bitbucket.help=Example: {example}
  1352. settings.almintegration.form.url.github=GitHub API URL
  1353. settings.almintegration.form.url.github.help1=Example for GitHub Enterprise:
  1354. settings.almintegration.form.url.github.help2=If using GitHub.com:
  1355. settings.almintegration.form.url.gitlab=GitLab API URL
  1356. settings.almintegration.form.url.gitlab.help=Provide the GitLab API URL. For example:
  1357. settings.almintegration.form.app_id=GitHub App ID
  1358. settings.almintegration.form.client_id.github=Client ID
  1359. settings.almintegration.form.client_id.github.help=The Client ID is found on your GitHub App's page.
  1360. settings.almintegration.form.client_secret.github=Client Secret
  1361. settings.almintegration.form.client_secret.github.help=The Client secret is found on your GitHub App's page.
  1362. settings.almintegration.form.client_id.bitbucketcloud=OAuth Key
  1363. settings.almintegration.form.client_secret.bitbucketcloud=OAuth Secret
  1364. settings.almintegration.form.private_key=Private Key
  1365. settings.almintegration.form.private_key.github.help=Your GitHub App's private key. You can generate a .pem file from your GitHub App's page under Private keys. Copy and paste the whole contents of the file here.
  1366. settings.almintegration.form.webhook_secret.github=Webhook Secret
  1367. settings.almintegration.form.webhook_secret.github.help=Leave this field empty unless you are using GitHub Code Scanning Alert feature. See documentation for more details.
  1368. settings.almintegration.form.personal_access_token=Personal Access Token
  1369. settings.almintegration.form.personal_access_token.azure.help=SonarQube needs a {pat} to report the Quality Gate status on Pull Requests in Azure DevOps. To create this token, we recommend using a dedicated Azure DevOps account with administration permissions. The token itself needs {permission} permission. {doc_link}
  1370. settings.almintegration.form.personal_access_token.azure.help.url=Personal Access Token
  1371. settings.almintegration.form.personal_access_token.gitlab.help=SonarQube needs a {pat} to report the Quality Gate status on Merge Requests in GitLab. To create this token, we recommend using a dedicated GitLab account with {permission} permission to all target projects. The token itself needs the {scope} scope. {doc_link}
  1372. settings.almintegration.form.personal_access_token.gitlab.help.url=Personal Access Token
  1373. settings.almintegration.form.personal_access_token.bitbucket.help=SonarQube needs a {pat} to report the Quality Gate status on Pull Requests in Bitbucket Server. To create this token, we recommend using a dedicated Bitbucket Server account with administration permissions. The token itself needs {permission} permission. {doc_link}
  1374. settings.almintegration.form.personal_access_token.bitbucket.help.url=Personal Access Token
  1375. settings.almintegration.form.save=Save configuration
  1376. settings.almintegration.form.cancel=Cancel
  1377. settings.almintegration.form.secret.field=This field is hidden for security reasons.
  1378. settings.almintegration.form.secret.update_field=Update field value
  1379. settings.almintegration.form.secret.update_field_x=Update {0} value
  1380. settings.almintegration.form.secret.can_encrypt=You can encrypt this value. {learn_more}
  1381. settings.almintegration.feature.status_reporting.title=Quality Gate status reporting
  1382. settings.almintegration.feature.status_reporting.description_pr=Add analysis and a Quality Gate to your Pull Requests directly in your DevOps Platform's interface.
  1383. settings.almintegration.feature.status_reporting.description_pr_and_commits=Add the Quality Gate status to your Pull Requests and on analyzed commits directly in your DevOps Platform's interface.
  1384. settings.almintegration.feature.status_reporting.description_mr=Add analysis and a Quality Gate to your Merge Requests directly in your DevOps Platform's interface.
  1385. settings.almintegration.feature.pr_decoration.disabled=Disabled
  1386. settings.almintegration.feature.pr_decoration.disabled.no_branches=Upgrade to {link} to enable this feature.
  1387. settings.almintegration.feature.pr_decoration.disabled.no_branches.link=Developer Edition
  1388. settings.almintegration.feature.alm_repo_import.title=Import repositories from your DevOps Platform
  1389. settings.almintegration.feature.alm_repo_import.description=Select repositories from your DevOps Platform, and import them into SonarQube.
  1390. settings.almintegration.feature.alm_repo_import.disabled=Disabled
  1391. settings.almintegration.feature.alm_repo_import.disabled.no_url=This feature is disabled because your configured instance has no URL.
  1392. settings.almintegration.tabs.authentication_moved=You can delegate authentication to this DevOps Platform. The relevant settings are under the {link} section.
  1393. # Authentication Common
  1394. settings.authentication.title=Authentication
  1395. settings.authentication.custom_message_information=You can define a custom log-in message to appear on the log-in page to help your users authenticate. The relevant settings are available under the {link} section.
  1396. settings.authentication.custom_message_information.link=General
  1397. settings.authentication.description=The following settings allow you to delegate authentication via SAML, or any of the following DevOps Platforms: GitHub, GitLab, and Bitbucket.
  1398. settings.authentication.help=For details on how to set up authentication, check out the {link}.
  1399. settings.authentication.legacy_help.github=Compatibility with GitHub OAuth App is deprecated and will be removed in a future release. Please check out the {link} for information on how to update your configuration.
  1400. settings.authentication.help.link=documentation
  1401. settings.authentication.form.create=Create configuration
  1402. settings.authentication.form.edit=Edit
  1403. settings.authentication.form.delete=Delete
  1404. settings.authentication.form.delete.tooltip=You can only delete a configuration if it is disabled.
  1405. settings.authentication.form.loading=Loading configuration
  1406. settings.authentication.form.enable=Enable configuration
  1407. settings.authentication.form.disable=Disable configuration
  1408. settings.authentication.form.disable.tooltip=You can not disable this configuration while using Automatic Provisioning. You must be in Just-in-Time Provisioning mode to disable this configuration.
  1409. settings.authentication.form.provisioning=Provisioning
  1410. settings.authentication.form.provisioning_at_login=Just-in-Time user and group provisioning (default)
  1411. settings.authentication.form.other_provisioning_enabled=Already enabled for another provider. Only one identity provider can have automatic users and groups provisioning enabled.
  1412. settings.authentication.form.settings.save_success=Settings saved successfully.
  1413. # GITHUB
  1414. settings.authentication.form.create.github=New GitHub Configuration
  1415. settings.authentication.form.edit.github=Edit GitHub Configuration
  1416. settings.authentication.github.appid_x=App ID: {0}
  1417. settings.authentication.github.confirm.auto=Switch to automatic provisioning
  1418. settings.authentication.github.confirm.jit=Switch to Just-in-Time provisioning
  1419. settings.authentication.github.confirm.auto.description=Once you transition to automatic provisioning, groups, users, group memberships, and permissions on GitHub projects will be inherited from GitHub. You will no longer have the ability to edit them within SonarQube. Do you want to proceed with this change?
  1420. settings.authentication.github.confirm.jit.description=Switching to Just-in-Time provisioning removes the automatic synchronization of users, groups, and group memberships. Users are provisioned and group memberships are updated only at user login. Are you sure?
  1421. settings.authentication.github.confirm_auto_provisioning.header=Confirm the provisioning method
  1422. settings.authentication.github.confirm_auto_provisioning.description1=Automatic user and group provisioning is currently suspended.
  1423. settings.authentication.github.confirm_auto_provisioning.description2=This provisioning method has been enhanced. It now includes the synchronization of user permissions and project visibility from GitHub. For more details, please refer to the {documentation}.
  1424. settings.authentication.github.confirm_auto_provisioning.question=Which provisioning method would you like to use?
  1425. settings.authentication.github.confirm_auto_provisioning.continue=Automatic user, group, and permission provisioning
  1426. settings.authentication.github.confirm_auto_provisioning.switch_jit=Just-in-Time user and group provisioning
  1427. settings.authentication.github.provisioning_change.confirm_changes=Confirm Changes
  1428. settings.authentication.github.configuration=GitHub Configuration
  1429. settings.authentication.github.form.not_configured=GitHub App is not configured
  1430. settings.authentication.github.form.legacy_configured=Compatibility with GitHub OAuth Apps is deprecated and will be removed in a future release. As such, your current configuration will continue to work but some features will no longer be available. We recommend that you create a new GitHub App configuration. This will automatically replace your current GitHub OAuth App configuration. {documentation}
  1431. settings.authentication.github.form.legacy_configured.link=Learn more about how to create a GitHub App configuration
  1432. settings.authentication.github.enable_first=Enable your GitHub configuration for more provisioning options.
  1433. settings.authentication.github.form.provisioning_with_github=Automatic user, group, and permission provisioning
  1434. settings.authentication.github.form.provisioning_with_github_short.autoProvisioning=Automatic provisioning
  1435. settings.authentication.github.form.provisioning_with_github_short.jit=Just-in-Time provisioning
  1436. settings.authentication.github.form.provisioning_with_github.description=Users, groups and permissions are automatically provisioned from your GitHub organizations. Once activated, users and groups can only be created and modified from your GitHub organizations/teams. Existing local users will be kept and can only be deactivated. {documentation}
  1437. settings.authentication.github.form.description.doc=For more details, see {documentation}.
  1438. settings.authentication.github.form.provisioning_at_login.description=Users and groups are synchronized only when users log in to SonarQube. {documentation}
  1439. settings.authentication.github.form.provisioning.disabled=Your current edition does not support provisioning with GitHub. See the {documentation} for more information.
  1440. settings.authentication.github.synchronize_now=Synchronize now
  1441. settings.authentication.github.synchronization_in_progress=Synchronization is in progress.
  1442. settings.authentication.github.synchronization_pending=Synchronization is pending.
  1443. settings.authentication.github.synchronization_finish=Synchronization is done.
  1444. settings.authentication.github.synchronization_successful=Last synchronization was done {0} ago.
  1445. settings.authentication.github.synchronization_successful.with_warning=Last synchronization was done {date} ago with warnings. {details}
  1446. settings.authentication.github.synchronization_failed=Last synchronization failed {0} ago.
  1447. settings.authentication.github.synchronization_failed_short=Last synchronization failed. {details}
  1448. settings.authentication.github.synchronization_details_link=More details
  1449. settings.authentication.github.configuration.validation.details=View details
  1450. settings.authentication.github.configuration.validation.valid.short=Configuration is valid.
  1451. settings.authentication.github.configuration.validation.valid=Configuration is valid for {0}. {1} organizations will be synced.
  1452. settings.authentication.github.configuration.validation.valid_one=Configuration is valid for {0}. Organization '{1}' will be synced.
  1453. settings.authentication.github.configuration.validation.invalid=Configuration is invalid. {0}
  1454. settings.authentication.github.configuration.validation.invalid_org=Organization "{0}" has the following error: {1}
  1455. settings.authentication.github.configuration.validation.details.title=Configuration validity
  1456. settings.authentication.github.configuration.validation.details.valid_label=Valid
  1457. settings.authentication.github.configuration.validation.details.invalid_label=Invalid
  1458. settings.authentication.github.configuration.validation.details.org_not_found={0} (not found or app not installed)
  1459. settings.authentication.github.configuration.roles_mapping.title=Role permission mapping
  1460. settings.authentication.github.configuration.roles_mapping.description=When synchronizing users and groups, SonarQube assigns permissions based on GitHub user and team roles. You can customize the mapping of permissions. The new mapping will take effect at the next synchronization.
  1461. settings.authentication.github.configuration.roles_mapping.button_label=Edit mapping
  1462. settings.authentication.github.configuration.roles_mapping.dialog.title=GitHub Roles Mapping
  1463. settings.authentication.github.configuration.roles_mapping.dialog.roles_column=Roles
  1464. settings.authentication.github.configuration.roles_mapping.dialog.add_custom_role=Add custom role:
  1465. settings.authentication.github.configuration.roles_mapping.dialog.custom_roles_description=When a custom role name added here matches an existing GitHub custom role in any of your organizations, the mapping applies to all users with this custom role. If an existing GitHub custom role has no exact match in this list, the permissions of its inherited base role are mapped.
  1466. settings.authentication.github.configuration.roles_mapping.dialog.delete_custom_role=Delete custom role {0}
  1467. settings.authentication.github.configuration.roles_mapping.role_exists=Role already exists.
  1468. settings.authentication.github.configuration.roles_mapping.empty_custom_role=Custom roles should have some permissions.
  1469. settings.authentication.github.configuration.roles_mapping.save_success=GitHub roles mapping saved successfully.
  1470. settings.authentication.github.configuration.unsaved_changes=You have unsaved changes.
  1471. # GITLAB
  1472. settings.authentication.gitlab.configuration=GitLab Configuration
  1473. settings.authentication.gitlab.form.not_configured=GitLab App is not configured
  1474. settings.authentication.gitlab.form.create=New GitLab Configuration
  1475. settings.authentication.gitlab.form.edit=Edit GitLab Configuration
  1476. settings.authentication.gitlab.form.applicationId.name=Application ID
  1477. settings.authentication.gitlab.form.applicationId.description=Application ID provided by GitLab when registering the application.
  1478. settings.authentication.gitlab.form.url.name=GitLab URL
  1479. settings.authentication.gitlab.form.url.description=URL to access GitLab.
  1480. settings.authentication.gitlab.form.secret.name=Secret
  1481. settings.authentication.gitlab.form.secret.description=Secret provided by GitLab when registering the application.
  1482. settings.authentication.gitlab.form.synchronizeGroups.name=Synchronize user groups
  1483. settings.authentication.gitlab.form.synchronizeGroups.description=For each GitLab group they belong to, the user will be associated to a group with the same name (if it exists) in SonarQube. If enabled, the GitLab OAuth 2 application will need to provide the api scope.
  1484. settings.authentication.gitlab.form.allowedGroups.name=Allowed groups
  1485. settings.authentication.gitlab.form.allowedGroups.description=Only members of these groups (and sub-groups) will be allowed to authenticate. Please enter the group slug as it appears in the GitLab URL, for instance `my-gitlab-group`. If you use Auto-provisioning, only members of these groups (and sub-groups) will be provisioned.
  1486. settings.authentication.gitlab.form.allowUsersToSignUp.name=Allow users to sign up
  1487. settings.authentication.gitlab.form.allowUsersToSignUp.description=Allow new users to authenticate. When set to disabled, only existing users will be able to authenticate to the server.
  1488. settings.authentication.gitlab.form.provisioningToken.name=Provisioning token
  1489. settings.authentication.gitlab.form.provisioningToken.description=Token used for user provisioning. You can either use a group or a personal access token, as long as it has visibility on the groups that need to be imported.
  1490. settings.authentication.gitlab.applicationId.name=App ID: {0}
  1491. settings.authentication.gitlab.enable_first=Enable your GitLab configuration for more provisioning options.
  1492. settings.authentication.gitlab.provisioning_at_login=Just-in-Time user provisioning (default)
  1493. settings.authentication.gitlab.provisioning_at_login.description=Users are synchronized only when users log in to SonarQube. {documentation}
  1494. settings.authentication.gitlab.description.JIT.learn_more=Learn more about Just-in-Time provisioning with GitLab
  1495. settings.authentication.gitlab.description.AUTO_PROVISIONING.learn_more=Learn more about automatic provisioning with GitLab
  1496. settings.authentication.gitlab.confirm.AUTO_PROVISIONING=Switch to automatic provisioning
  1497. settings.authentication.gitlab.confirm.JIT=Switch to Just-in-Time provisioning
  1498. settings.authentication.gitlab.confirm.AUTO_PROVISIONING.description=Once you transition to automatic provisioning users and groups on GitLab projects will be inherited from GitLab. You will no longer have the ability to edit them within SonarQube. Do you want to proceed with this change?
  1499. settings.authentication.gitlab.confirm.JIT.description=Switching to Just-in-Time provisioning removes the automatic synchronization of users and groups. Users are provisioned and updated only at user login. Are you sure?
  1500. settings.authentication.gitlab.provisioning_change.confirm_changes=Confirm Changes
  1501. settings.authentication.gitlab.form.provisioning_with_gitlab=Automatic user and group provisioning
  1502. settings.authentication.gitlab.form.provisioning_with_gitlab.description=Users and groups are automatically provisioned from GitLab. Once activated, users and groups can only be created and modified from GitLab. Existing local users will be kept and can only be deactivated. {documentation}
  1503. settings.authentication.gitlab.form.provisioning.disabled=Your current edition does not support provisioning with GitLab. See the {documentation} for more information.
  1504. settings.authentication.gitlab.configuration.unsaved_changes=You have unsaved changes.
  1505. settings.authentication.gitlab.configuration.valid.JIT=Configuration is valid for Just-in-Time provisioning.
  1506. settings.authentication.gitlab.configuration.valid.AUTO_PROVISIONING=Configuration is valid for Automatic provisioning.
  1507. # COMMON
  1508. settings.authentication.configuration.validity_check_loading=Checking the configuration
  1509. settings.authentication.configuration.test=Test configuration
  1510. # SAML
  1511. settings.authentication.form.create.saml=New SAML configuration
  1512. settings.authentication.form.edit.saml=Edit SAML configuration
  1513. settings.authentication.saml.configuration=SAML Configuration
  1514. settings.authentication.saml.confirm.scim=Switch to automatic provisioning
  1515. settings.authentication.saml.confirm.jit=Switch to Just-in-Time provisioning
  1516. settings.authentication.saml.confirm.scim.description=Once you transition to automatic provisioning, groups, users and group memberships will be managed by your identity provider. You will no longer have the ability to edit them within SonarQube. Do you want to proceed with this change?
  1517. settings.authentication.saml.confirm.jit.description=Switching to Just-in-Time provisioning removes all information provided while automatic provisioning through SCIM was active. These changes cannot be reverted. Are you sure?
  1518. settings.authentication.saml.form.loading=Loading SAML configuration
  1519. settings.authentication.saml.form.not_configured=SAML is not configured
  1520. settings.authentication.saml.form.create=New SAML configuration
  1521. settings.authentication.saml.form.edit=Edit SAML configuration
  1522. settings.authentication.saml.form.save=Save configuration
  1523. settings.authentication.saml.form.test=Test configuration
  1524. settings.authentication.saml.form.test.help.dirty=You must save your changes
  1525. settings.authentication.saml.form.test.help.incomplete=Some mandatory fields are empty
  1526. settings.authentication.saml.form.save_success=Saved successfully
  1527. settings.authentication.saml.form.save_partial=Saved partially
  1528. settings.authentication.saml.form.provisioning_at_login=Just-in-Time user and group provisioning (default)
  1529. settings.authentication.saml.form.provisioning_at_login.sub=Use this option if your identity provider does not support the SCIM protocol.
  1530. settings.authentication.saml.form.provisioning_with_scim=Automatic user and group provisioning with SCIM
  1531. settings.authentication.saml.form.provisioning_with_scim.sub=Preferred option when using a supported identity provider.
  1532. settings.authentication.saml.form.provisioning_with_scim.description=Users and groups are automatically provisioned from your identity provider using the SCIM protocol. Once activated, managed users and groups can only be modified from your identity provider. Existing local users and groups will be kept.
  1533. settings.authentication.saml.form.provisioning_with_scim.description.doc=For a list of supported providers and more details on automatic provisioning, see {documentation}.
  1534. settings.authentication.saml.form.provisioning.disabled=Your current edition does not support provisioning with SCIM. See the {documentation} for more information.
  1535. settings.authentication.saml.enable_first=Enable your SAML configuration to benefit from automatic user provisioning options.
  1536. settings.pr_decoration.binding.category=DevOps Platform Integration
  1537. settings.pr_decoration.binding.no_bindings=A system administrator needs to enable this feature in the global settings.
  1538. settings.pr_decoration.binding.no_bindings.admin=Set up a {link} first before you and your team can enable Pull Request Decoration.
  1539. settings.pr_decoration.binding.no_bindings.link=global configuration
  1540. settings.pr_decoration.binding.title=DevOps Platform Integration
  1541. settings.pr_decoration.binding.description=Display your Quality Gate status directly in your DevOps Platform.
  1542. settings.pr_decoration.binding.check_configuration=Check configuration
  1543. settings.pr_decoration.binding.check_configuration.failure=You have the following errors in your configuration:
  1544. settings.pr_decoration.binding.check_configuration.failure.check_global_settings=Please check your {link}.
  1545. settings.pr_decoration.binding.check_configuration.failure.check_global_settings.link=global settings
  1546. settings.pr_decoration.binding.check_configuration.contact_admin=Please contact your system administrator.
  1547. settings.pr_decoration.binding.check_configuration.success=Configuration valid.
  1548. settings.pr_decoration.binding.form.name=Configuration name
  1549. settings.pr_decoration.binding.form.name.help=Each DevOps Platform instance must be configured globally first, and given a unique name. Pick the instance your project is hosted on.
  1550. settings.pr_decoration.binding.form.monorepo=Enable mono repository support
  1551. settings.pr_decoration.binding.form.monorepo.help=Enable this setting if your project is part of a mono repository. {doc_link}
  1552. settings.pr_decoration.binding.form.monorepo.warning=This setting must be enabled for all SonarQube projects that are part of a mono repository.
  1553. settings.pr_decoration.binding.form.azure.project=Project name
  1554. settings.pr_decoration.binding.form.azure.project.help=The name of the Azure DevOps project containing your repository. You can find this name on your project's Overview page.
  1555. settings.pr_decoration.binding.form.azure.repository=Repository name
  1556. settings.pr_decoration.binding.form.azure.repository.help=The name of your Azure DevOps repository. You can find this name on your project's Repos page.
  1557. settings.pr_decoration.binding.form.github.repository=Repository name
  1558. settings.pr_decoration.binding.form.github.repository.help=The full name of your repository, including the organization. You can find this name in your repository's URL. This name is case-sensitive!
  1559. settings.pr_decoration.binding.form.github.summary_comment_setting=Enable analysis summary under the GitHub Conversation tab
  1560. settings.pr_decoration.binding.form.github.summary_comment_setting.help=When enabled, a summary is displayed under the GitHub Conversation tab. Notifications may be sent by GitHub depending on your settings.
  1561. settings.pr_decoration.binding.form.bitbucket.repository=Project key
  1562. settings.pr_decoration.binding.form.bitbucket.repository.help=The project key is part of your Bitbucket Server repository URL. This is case-sensitive!
  1563. settings.pr_decoration.binding.form.bitbucket.slug=Repository slug
  1564. settings.pr_decoration.binding.form.bitbucket.slug.help=The repository slug is part of your Bitbucket Server repository URL. This slug is case-sensitive!
  1565. settings.pr_decoration.binding.form.bitbucketcloud.repository=Repository slug
  1566. settings.pr_decoration.binding.form.bitbucketcloud.repository.help=The repository slug is part of your Bitbucket Cloud repository URL.
  1567. settings.pr_decoration.binding.form.gitlab.repository=Project ID
  1568. settings.pr_decoration.binding.form.gitlab.repository.help=The Project ID is a numerical unique identifier for your project. You can find it on your Project Overview.
  1569. property.category.announcement=Announcement
  1570. property.category.general=General
  1571. property.category.general.email=Email
  1572. property.category.general.duplications=Duplications
  1573. property.category.general.differentialViews=New Code
  1574. property.category.general.localization=Localization
  1575. property.category.general.databaseCleaner=Database Cleaner
  1576. property.category.general.looknfeel=Look & Feel
  1577. property.category.general.issues=Issues
  1578. property.category.general.qualityGate=Quality Gate
  1579. property.category.general.qualityProfile=Quality Profile
  1580. property.category.general.subProjects=Sub-projects
  1581. property.category.general.subProjectCreation=Project Creation
  1582. property.category.almintegration=DevOps Platform Integrations
  1583. property.category.authentication=Authentication
  1584. property.category.organizations=Organizations
  1585. property.category.security=Security
  1586. property.category.security.encryption=Encryption
  1587. property.category.java=Java
  1588. property.category.differentialViews=New Code
  1589. property.category.codeCoverage=Code Coverage
  1590. property.category.duplications=Duplications
  1591. property.category.localization=Localization
  1592. property.category.exclusions=Analysis Scope
  1593. property.category.webhooks=Webhooks
  1594. property.category.languages=Languages
  1595. property.sonar.inclusions.name=Source File Inclusions
  1596. property.sonar.inclusions.description=Patterns used to include some source files and only these ones in analysis.
  1597. property.sonar.test.inclusions.name=Test File Inclusions
  1598. property.sonar.test.inclusions.description=Patterns used to include some test files and only these ones in analysis.
  1599. property.sonar.exclusions.name=Source File Exclusions
  1600. property.sonar.exclusions.description=Patterns used to exclude some source files from analysis.
  1601. property.sonar.test.exclusions.name=Test File Exclusions
  1602. property.sonar.test.exclusions.description=Patterns used to exclude some test files from analysis.
  1603. property.sonar.global.exclusions.name=Global Source File Exclusions
  1604. property.sonar.global.exclusions.description=Patterns used to exclude some source files from analysis. They apply to every project and cannot be overridden.
  1605. property.sonar.global.test.exclusions.name=Global Test File Exclusions
  1606. property.sonar.global.test.exclusions.description=Patterns used to exclude some test files from analysis. They apply to every project and cannot be overridden.
  1607. property.category.exclusions.files=A. File Exclusions
  1608. property.category.exclusions.files.description=Configure the files that should be completely ignored by the analysis.
  1609. property.sonar.skippedModules.name=Module Exclusions
  1610. property.sonar.skippedModules.description=This property is deprecated since version 4.3 and should not be used anymore.
  1611. property.sonar.includedModules.name=Module Inclusions
  1612. property.sonar.includedModules.description=This property is deprecated since version 4.3 and should not be used anymore.
  1613. property.category.exclusions.issues=D. Issue Exclusions
  1614. property.category.exclusions.issues.description=Configure the conditions under which issues should not be reported.
  1615. property.category.exclusions.duplications=C. Duplication Exclusions
  1616. property.category.exclusions.duplications.description=Configure the files that should be ignored by duplication detection.
  1617. property.category.exclusions.coverage=B. Code Coverage Exclusions
  1618. property.category.exclusions.coverage.description=Configure the files that should be ignored by code coverage calculations.
  1619. property.sonar.coverage.exclusions.name=Coverage Exclusions
  1620. property.sonar.coverage.exclusions.description=Patterns used to exclude some files from coverage report.
  1621. property.category.technicalDebt=Technical Debt
  1622. property.error.notBoolean=Valid options are "true" and "false"
  1623. property.error.notInteger=Only digits are allowed
  1624. property.error.notFloat=Not a floating point number
  1625. property.error.notRegexp=Regular expression must be valid
  1626. property.error.notInOptions=Not a valid option
  1627. property.category.scm=SCM
  1628. property.category.housekeeping=Housekeeping
  1629. property.category.housekeeping.general=General
  1630. property.category.housekeeping.branchesAndPullRequests=Branches and Pull Requests
  1631. property.category.housekeeping.auditLogs=Audit Logs
  1632. #------------------------------------------------------------------------------
  1633. #
  1634. # SEARCH ENGINE FOR RESOURCES
  1635. #
  1636. #------------------------------------------------------------------------------
  1637. search.shortcut_hint=Hint: Press {shortcut} from anywhere to open this search bar.
  1638. search.show_more.hint=Press {key} to display
  1639. search.placeholder=Search for projects...
  1640. search.search_for_projects=Search for projects...
  1641. search.search_for_members=Search for members...
  1642. search.search_for_users=Search for users...
  1643. search.search_for_users_or_groups=Search for users or groups...
  1644. search.search_by_login_or_name=Search by login or name...
  1645. search.search_by_name=Search by name...
  1646. search.search_by_name_or_key=Search by name or key...
  1647. search.search_for_tags=Search for tags...
  1648. search.search_for_repositories=Search for repositories...
  1649. search.search_for_rules=Search for rules...
  1650. search.search_for_languages=Search for languages...
  1651. search.search_for_cwe=Search for CWEs...
  1652. search.search_for_authors=Search for authors...
  1653. search.search_for_directories=Search for directories...
  1654. search.search_for_files=Search for files...
  1655. search.search_for_modules=Search for modules...
  1656. search.search_for_metrics=Search for metrics...
  1657. search.search_for_profiles=Search for Quality Profiles...
  1658. search.tooShort=Please enter at least {0} characters
  1659. global_search.shortcut_hint=Hint: Press 'S' from anywhere to open this search bar.
  1660. #------------------------------------------------------------------------------
  1661. #
  1662. # GLOBAL HELP
  1663. #
  1664. #------------------------------------------------------------------------------
  1665. help.section.links=Links
  1666. help.section.shortcuts=Shortcuts
  1667. help.section.tutorials=Tutorials
  1668. shortcuts.section.global=Global
  1669. shortcuts.section.global.search=quickly open search bar
  1670. shortcuts.section.global.shortcuts=open this window
  1671. shortcuts.section.global.facets.multiselection=Press Ctrl to add to selection
  1672. shortcuts.section.global.facets.multiselection.mac=Press \u2318 to add to selection
  1673. shortcuts.section.global.facets.multiselection.title=Add to selection
  1674. shortcuts.section.issues=Issues Page
  1675. shortcuts.section.issues.navigate_between_issues=navigate between issues
  1676. shortcuts.section.issues.open_details=go from the list of issues to the source code
  1677. shortcuts.section.issues.return_to_list=return back to the list
  1678. shortcuts.section.issue.do_transition=do an issue transition
  1679. shortcuts.section.issue.assign=assign issue
  1680. shortcuts.section.issue.assign_to_me=assign issue to the current user
  1681. shortcuts.section.issue.change_severity=change severity of issue
  1682. shortcuts.section.issue.comment=comment issue
  1683. shortcuts.section.issue.submit_comment=submit comment
  1684. shortcuts.section.issue.change_tags=change tags of issue
  1685. shortcuts.section.rules=Rules Page
  1686. shortcuts.section.rules.navigate_between_rules=navigate between rules
  1687. shortcuts.section.rules.open_details=go from the list of rules to the rule details
  1688. shortcuts.section.rules.return_to_list=return back to the list
  1689. shortcuts.section.rules.activate=activate selected rule
  1690. shortcuts.section.rules.deactivate=deactivate selected rule
  1691. shortcuts.on_page.intro=This page allows you to use the following keyboard shortcuts:
  1692. shortcuts.on_page.left_x=Left arrow key: {0}
  1693. shortcuts.on_page.left_right_x=Left and right arrow keys: {0}
  1694. shortcuts.on_page.up_down_x=Up and down arrow keys: {0}
  1695. shortcuts.on_page.meta_x=Alt key + arrow keys: {0}
  1696. tutorials.onboarding=Analyze a new project
  1697. tutorials.skip=Skip this tutorial
  1698. tutorials.finish=Finish this tutorial
  1699. tutorials.find_tutorial_back_in_help=Find this tutorial back anytime in the Help section
  1700. tutorials.find_tutorial_back_in_plus=Find this tutorial back anytime in the "+" menu
  1701. #------------------------------------------------------------------------------
  1702. #
  1703. # SELECT2.js
  1704. #
  1705. #------------------------------------------------------------------------------
  1706. select2.noMatches=No matches
  1707. select2.searching=Searching...
  1708. select2.tooShort=Please enter at least {0} characters
  1709. #------------------------------------------------------------------------------
  1710. #
  1711. # DUPLICATION VIEWER
  1712. #
  1713. #------------------------------------------------------------------------------
  1714. duplications.dups_found_on_deleted_resource=This file contains duplicated blocks with some deleted resources. This project should be reanalyzed to remove these obsolete duplicated blocks.
  1715. #------------------------------------------------------------------------------
  1716. #
  1717. # GENERIC CODE VIEWER
  1718. #
  1719. #------------------------------------------------------------------------------
  1720. code_viewer.no_source_code_displayed_due_to_empty_analysis.TRK=No code files were found for analysis.
  1721. code_viewer.no_source_code_displayed_due_to_empty_analysis.APP=No projects in this application.
  1722. code_viewer.no_source_code_displayed_due_to_empty_analysis.VW=No projects, applications, or portfolios in this portfolio.
  1723. code_viewer.no_source_code_displayed_due_to_empty_analysis.SVW=No projects, applications, or portfolios in this portfolio.
  1724. code_viewer.no_source_code_displayed_due_to_security=Due to security settings, no source code can be displayed.
  1725. code_viewer.no_source_code_displayed_due_to_source_removed=The file was removed, no source code can be displayed.
  1726. code_viewer.not_all_measures_are_shown=Not all projects and applications are included
  1727. code_viewer.not_all_measures_are_shown.help=You do not have access to all projects and/or applications.
  1728. code_viewer.portfolio_code_toggle_disabled.help=New Code and Overall Code measures are not available when searching for projects or applications.
  1729. code_viewer.loading=Source code is loading
  1730. #------------------------------------------------------------------------------
  1731. #
  1732. # CUSTOM MEASURES
  1733. #
  1734. #------------------------------------------------------------------------------
  1735. custom_measures.page=Custom Measures
  1736. custom_measures.page.description=Update the values of custom metrics for this project. Changes will take effect at the project's next analysis. Custom metrics must be created at the global level.
  1737. custom_measures.deprecated=Custom measures are deprecated and will be removed soon.
  1738. custom_measures.pending=Pending
  1739. custom_measures.pending_tooltip=The value will be integrated to project during next analysis.
  1740. custom_measures.all_metrics_taken=There are already measures on all available custom metrics.
  1741. custom_measures.delete_custom_measure=Delete Custom Measure
  1742. custom_measures.delete_custom_measure.confirmation=Are you sure you want to delete custom measure "{0}"?
  1743. custom_measures.create_custom_measure=Create Custom Measure
  1744. custom_measures.update_custom_measure=Update Custom Measure
  1745. custom_measures.metric=Metric
  1746. #------------------------------------------------------------------------------
  1747. #
  1748. # PROJECT NAVIGATION
  1749. #
  1750. #------------------------------------------------------------------------------
  1751. project_navigation.analysis_status.failed=The last analysis has failed.
  1752. project_navigation.analysis_status.warnings=The last analysis has warnings.
  1753. project_navigation.analysis_status.pending=New analysis pending
  1754. project_navigation.analysis_status.in_progress=New analysis in progress
  1755. project_navigation.analysis_status.details_link=See details
  1756. #------------------------------------------------------------------------------
  1757. #
  1758. # PROJECT ACTIVITY/HISTORY SERVICE
  1759. #
  1760. #------------------------------------------------------------------------------
  1761. project_activity.analysis=Analysis
  1762. project_activity.analysis_build_string_X=Build string: {0}
  1763. project_activity.add_version=Create Version
  1764. project_activity.analysis_X_actions=Show actions for analysis {0}
  1765. project_activity.show_analysis_X_on_graph=Show details on interactive graph for analysis {0}. Note: this data is also available as a table. Click on the button below the graph.
  1766. project_activity.remove_version=Remove Version
  1767. project_activity.remove_version.question=Are you sure you want to delete this version?
  1768. project_activity.change_version=Change Version
  1769. project_activity.add_custom_event=Create Custom Event
  1770. project_activity.change_custom_event=Change Event
  1771. project_activity.remove_custom_event=Delete Event
  1772. project_activity.remove_custom_event.question=Are you sure you want to delete this event?
  1773. project_activity.reset_dates=Reset dates
  1774. project_activity.delete_analysis=Delete Analysis
  1775. project_activity.delete_analysis.question=Are you sure you want to delete this analysis from the history?
  1776. project_activity.filter_events=Filter events
  1777. project_activity.events.tooltip.edit=Edit this event
  1778. project_activity.events.tooltip.delete=Delete this event
  1779. project_activity.new_code_period_start=Everything above this line is New Code
  1780. project_activity.new_code_period_start.help=The analysis below this mark is the baseline for New Code comparison
  1781. project_activity.graphs.choose_type=Choose graph type
  1782. project_activity.graphs.explanation_x=This interactive graph shows data for the following project measures over time: {0}
  1783. project_activity.graphs.issues=Issues
  1784. project_activity.graphs.coverage=Coverage
  1785. project_activity.graphs.duplications=Duplications
  1786. project_activity.graphs.custom=Custom
  1787. project_activity.graphs.custom.add=Add metric
  1788. project_activity.graphs.custom.add_metric=Add a metric
  1789. project_activity.graphs.custom.select_metric=Select metric to display
  1790. project_activity.graphs.custom.add_metric_info=Only 3 metrics of the same type can be displayed on one graph. You can have a maximum of two graphs.
  1791. project_activity.graphs.custom.remove_metric=Remove the {0} metric from the graph
  1792. project_activity.graphs.custom.no_history=There isn't enough data to generate an activity graph, please select more metrics.
  1793. project_activity.graphs.custom.metric_no_history=This metric has no historical data to display.
  1794. project_activity.graphs.custom.search=Search for a metric by name
  1795. project_activity.graphs.custom.type_x_message=Only "{0}" metrics are available with your current selection.
  1796. project_activity.graphs.open_in_table=Show the graph data in a table
  1797. project_activity.graphs.data_table.title=Graph data in table format
  1798. project_activity.graphs.data_table.max_lines_warning=Only the {0} most recent data entries are shown. If you want to see different data, change the date filters on the main page.
  1799. project_activity.graphs.data_table.no_data_warning=There is no data for the selected series.
  1800. project_activity.graphs.data_table.no_data_warning_check_dates_x=There is no data for the selected date range (everything after {start}). Try modifying the date filters on the main page.
  1801. project_activity.graphs.data_table.no_data_warning_check_dates_y=There is no data for the selected date range (everything before {end}). Try modifying the date filters on the main page.
  1802. project_activity.graphs.data_table.no_data_warning_check_dates_x_y=There is no data for the selected date range ({start} to {end}). Try modifying the date filters on the main page.
  1803. project_activity.custom_metric.covered_lines=Covered Lines
  1804. #------------------------------------------------------------------------------
  1805. #
  1806. # PROJECT "UPDATE KEY" PAGE
  1807. #
  1808. #------------------------------------------------------------------------------
  1809. update_key.old_key=Old Key
  1810. update_key.new_key=New Key
  1811. update_key.are_you_sure_to_change_key=Are you sure you want to change key of "{0}"?
  1812. #------------------------------------------------------------------------------
  1813. #
  1814. # PROJECT QUALITY PROFILE PAGE
  1815. #
  1816. #------------------------------------------------------------------------------
  1817. project_quality_profile.instance_default=Instance default
  1818. project_quality_profile.successfully_updated={0} Quality Profile has been successfully updated.
  1819. project_quality_profile.subtitle=Manage project Quality Profiles
  1820. project_quality_profile.always_use_default=Always use the instance default Quality Profile
  1821. project_quality_profile.current=Current Quality Profile
  1822. project_quality_profile.always_use_specific=Always use a specific Quality Profile
  1823. project_quality_profile.change_lang_X_profile=Change {0} Quality Profile
  1824. project_quality_profile.requires_new_analysis=Changes will be applied after the next analysis.
  1825. project_quality_profile.add_language.title=Add a new language
  1826. project_quality_profile.add_language.description=Manually configure a specific profile for a new language before the next analysis.
  1827. project_quality_profile.add_language.action=Add language
  1828. project_quality_profile.add_language_modal.title=Add a language
  1829. project_quality_profile.add_language_modal.choose_language=Choose a language
  1830. project_quality_profile.add_language_modal.choose_profile=Choose a profile
  1831. project_quality_profile.add_language_modal.no_active_rules=this profile has no active rules
  1832. project_quality_profile.add_language_modal.profile_unavailable_no_active_rules=This profile has no active rules, and cannot be used. Please enable at least 1 rule before using this profile.
  1833. project_quality_profile.add_language_modal.go_to_profile=Go to Quality Profile
  1834. project_quality_profile.change_profile=Change profile
  1835. #------------------------------------------------------------------------------
  1836. #
  1837. # PROJECT QUALITY GATE PAGE
  1838. #
  1839. #------------------------------------------------------------------------------
  1840. project_quality_gate.default_qgate=Default
  1841. project_quality_gate.successfully_updated=Quality Gate has been successfully updated.
  1842. project_quality_gate.subtitle=Manage project Quality Gate
  1843. project_quality_gate.always_use_default=Always use the instance default Quality Gate
  1844. project_quality_gate.always_use_specific=Always use a specific Quality Gate
  1845. project_quality_gate.select_specific_qg=Select Quality Gate
  1846. project_quality_gate.requires_new_analysis=Changes will be applied after the next analysis.
  1847. project_quality_gate.no_condition=This Quality Gate is empty. To make it usable, add conditions to the {link}.
  1848. project_quality_gate.no_condition_on_new_code=This Quality Gate sets conditions on overall code but not on new code. It will not appear on pull requests. To enable it for pull requests, add conditions to the {link}.
  1849. project_quality_gate.no_condition.link=Quality Gate definition
  1850. project_quality_gate.no_condition.reason=No conditions
  1851. #------------------------------------------------------------------------------
  1852. #
  1853. # PROJECT (RESOURCE) DELETION PAGE
  1854. #
  1855. #------------------------------------------------------------------------------
  1856. project_deletion.delete_resource_confirmation=Are you sure you want to delete "{0}"?
  1857. project_deletion.resource_deleted=Project "{0}" has been successfully deleted.
  1858. projects_management.delete_resource_confirmation=Are you sure you want to delete "{0}"?
  1859. projects_management.delete_selected_warning=You're about to delete {0} selected items.
  1860. projects_management.delete_all_warning=You're about to delete all {0} items.
  1861. projects_management.project_has_been_successfully_created=Project {project} has been successfully created.
  1862. projects_management.select_project=Select project {0}
  1863. projects_management.show_actions_for_x=Show actions for project {0}
  1864. projects_management.filter_by_component=Filter by component
  1865. projects_management.filter_by_visibility=Filter by visibility
  1866. #------------------------------------------------------------------------------
  1867. #
  1868. # PROJECT INFORMATION DRAWER
  1869. #
  1870. #------------------------------------------------------------------------------
  1871. project.info.title=Project Information
  1872. application.info.title=Application Information
  1873. project.about.title=About this Project
  1874. application.about.title=About this Application
  1875. project.info.description=Description
  1876. project.info.empty_description=No description added for this project.
  1877. application.info.empty_description=No description added for this application.
  1878. project.info.quality_gate=Quality Gate used
  1879. project.info.to_notifications=Set notifications
  1880. project.info.notifications=Notifications
  1881. project.info.main_branch=Main branch
  1882. project.info.see_more_info_on_x_locs=See more information on your {0} lines of code
  1883. project.info.make_home.title=Use as homepage
  1884. project.info.make_home.label=Make this project my homepage
  1885. application.info.make_home.label=Make this application my homepage
  1886. project.info.make_home.tooltip=This means you'll be redirected to this project whenever you log in to SonarQube or click on the top-left SonarQube logo.
  1887. application.info.make_home.tooltip=This means you'll be redirected to this application whenever you log in to SonarQube or click on the top-left SonarQube logo.
  1888. overview.project_key.tooltip.TRK=Your project key is a unique identifier for your project. If you are using Maven, make sure the key matches the "groupId:artifactId" format.
  1889. overview.project_key.tooltip.APP=Your application key is a unique identifier for your application.
  1890. #------------------------------------------------------------------------------
  1891. #
  1892. # QUALITY PROFILES
  1893. #
  1894. #------------------------------------------------------------------------------
  1895. quality_profiles.page_title_changelog_x={0} Changelog
  1896. quality_profiles.page_title_compare_x={0} Comparison
  1897. quality_profiles.new_profile=New Quality Profile
  1898. quality_profiles.compare_with=Compare with
  1899. quality_profiles.filter_by=Filter by
  1900. quality_profiles.select_lang=Select language
  1901. quality_profiles.restore_profile=Restore Profile
  1902. quality_profiles.restore_profile.success={ruleSuccesses} rule(s) restored in profile "{profileName}"
  1903. quality_profiles.restore_profile.warning={ruleSuccesses} rule(s) restored, {ruleFailures} rule(s) ignored in profile "{profileName}"
  1904. quality_profiles.optional_configuration_file=Optional configuration file
  1905. quality_profiles.new_name=New name
  1906. quality_profiles.no_languages_available=There are no languages available. You cannot create a new profile.
  1907. quality_profiles.delete_confirm_title=Delete Profile
  1908. quality_profiles.are_you_sure_want_delete_profile_x=Are you sure that you want to delete the profile "{0}"?
  1909. quality_profiles.are_you_sure_want_delete_profile_x_and_descendants=Are you sure that you want to delete the profile "{0}" and all its descendants?
  1910. quality_profiles.this_profile_has_descendants=This profile has descendants.
  1911. quality_profiles.profile_inheritance=Inheritance
  1912. quality_profiles.no_projects_associated_to_profile=No projects are explicitly associated to the profile.
  1913. quality_profiles.cannot_associate_projects_no_rules=You must activate at least 1 rule before you can assign projects to this profile.
  1914. quality_profiles.cannot_set_default_no_rules=You must activate at least 1 rule before you can make this profile the default profile.
  1915. quality_profiles.warning.used_by_projects_no_rules=The current profile is used on several projects, but it has no active rules. Please activate at least 1 rule for this profile.
  1916. quality_profiles.warning.is_default_no_rules=The current profile is the default profile, but it has no active rules. Please activate at least 1 rule for this profile.
  1917. quality_profiles.x_sonarway_missing_rules={linkCount} Sonar way {count, plural, one {rule} other {rules}} not included
  1918. quality_profiles.parent=Parent:
  1919. quality_profiles.parameter_set_to=Parameter {0} set to {1}
  1920. quality_profile.summary_additional={count} additional {count, plural, one {rule} other {rules}}
  1921. quality_profile.summary_fewer={count} fewer {count, plural, one {rule} other {rules}}
  1922. quality_profile.summary_differences1={profile} has {additional} and {fewer} than {comparedProfile}.
  1923. quality_profile.summary_differences2={profile} has {difference} than {comparedProfile}
  1924. quality_profiles.x_rules_only_in={count} rules in {profile}
  1925. quality_profiles.x_rules_have_different_configuration={count} rules have a different configuration
  1926. quality_profiles.copy_x_title=Copy Profile "{0}" - {1}
  1927. quality_profiles.extend_x_title=Extend Profile "{0}" - {1}
  1928. quality_profiles.rename_x_title=Rename Profile {0} - {1}
  1929. quality_profiles.deprecated=deprecated
  1930. quality_profiles.deprecated_severity_set_to=Old severity set to
  1931. quality_profiles.changelog.ACTIVATED=Activated
  1932. quality_profiles.changelog.DEACTIVATED=Deactivated
  1933. quality_profiles.changelog.UPDATED=Updated
  1934. quality_profiles.changelog.parameter_reset_to_default_value=Parameter {0} reset to default value
  1935. quality_profiles.changelog.cca_and_category_changed=Clean Code category set to {newCleanCodeAttributeCategory} and attribute set to {newCleanCodeAttribute}, was {oldCleanCodeAttributeCategory} and {oldCleanCodeAttribute}
  1936. quality_profiles.changelog.cca_only_changed=Clean Code attribute set to {newCleanCodeAttribute}, was {oldCleanCodeAttribute}
  1937. quality_profiles.changelog.impact_changed=Software impact set to {newSoftwareQuality} with severity {newSeverity}, was {oldSoftwareQuality} with severity {oldSeverity}
  1938. quality_profiles.changelog.impact_added=Software impact {newSoftwareQuality} with severity {newSeverity} was added
  1939. quality_profiles.changelog.impact_removed=Software impact {oldSoftwareQuality} with severity {oldSeverity} was removed
  1940. quality_profiles.changelog.sq_upgrade=Instance upgraded to SonarQube {sqVersion}
  1941. quality_profiles.deleted_profile=The profile {0} doesn't exist anymore
  1942. quality_profiles.projects_for_default=Every project not specifically associated with a quality profile will be associated to this one by default.
  1943. quality_profile.x_rules={count} rule(s)
  1944. quality_profile.lang_deprecated_x_rules={name}, {count} deprecated rule(s)
  1945. quality_profile.x_active_rules={0} active rules
  1946. quality_profile.x_inactive_rules={0} inactive rules
  1947. quality_profile.rules.breakdown=Rule breakdown
  1948. quality_profile.rules.cct_categories_title=Clean Code Categories
  1949. quality_profile.rules.software_qualities_title=Software Qualities
  1950. quality_profile.rules.see_x_active_x_rules=See {0} active {1} rules
  1951. quality_profile.rules.see_x_inactive_x_rules=See {0} inactive {1} rules
  1952. quality_profiles.x_overridden_rules={0} overridden rules
  1953. quality_profiles.change_parent=Change Parent
  1954. quality_profiles.change_parent_warning=By changing the parent of this profile, any information on inherited rules that were manually disabled will be lost. This means some previously disabled rules might be re-enabled.
  1955. quality_profiles.all_profiles=All Profiles
  1956. quality_profiles.x_profiles={name}, {count} profile(s)
  1957. quality_profiles.projects.select_hint=Click to associate this project with the quality profile
  1958. quality_profiles.projects.deselect_hint=Click to remove association between this project and the quality profile
  1959. quality_profile.empty_comparison=The quality profiles are equal.
  1960. quality_profiles.activate_more=Activate More
  1961. quality_profiles.activate_more.help.built_in=This quality profile is built in, and cannot be updated manually. If you want to activate more rules, create a new profile that inherits from this one and add rules there.
  1962. quality_profiles.activate_more_rules=Activate More Rules
  1963. quality_profiles.comparison.activate_rule=Activate rule for profile "{profile}"
  1964. quality_profiles.comparison.deactivate_rule=Dectivate rule for profile "{profile}"
  1965. quality_profiles.intro=Quality profiles are collections of rules to apply during an analysis. For each language there is a default profile. All projects not explicitly assigned to some other profile will be analyzed with the default. Ideally, all projects will use the same profile for a language.
  1966. quality_profiles.list.projects=Projects
  1967. quality_profiles.list.projects.help=Projects assigned to a profile will always be analyzed with it for that language, regardless of which profile is the default. Quality profile administrators may assign projects to a non-default profile, or always make it follow the system default. Project administrators may choose any profile for each language.
  1968. quality_profiles.list.rules=Rules
  1969. quality_profiles.list.updated=Updated
  1970. quality_profiles.list.used=Used
  1971. quality_profiles.list.default.help=For each language there is a default profile. All projects not explicitly assigned to some other profile will be analyzed with the default.
  1972. quality_profiles.x_updated_on_y={name}, updated on {date}
  1973. quality_profiles.change_projects=Change Projects
  1974. quality_profiles.not_found=The requested quality profile was not found.
  1975. quality_profiles.back_to_list=Go back to the list of Quality Profiles
  1976. quality_profiles.latest_new_rules=Recently Added Rules
  1977. quality_profiles.latest_new_rules.activated={0}, activated on {1} profile(s)
  1978. quality_profiles.latest_new_rules.not_activated={0}, not yet activated
  1979. quality_profiles.latest_new_rules.see_all_x=See all {count} recently added rules
  1980. quality_profiles.deprecated_rules=Deprecated Rules
  1981. quality_profiles.x_deprecated_rules={linkCount} deprecated {count, plural, one {rule} other {rules}}
  1982. quality_profiles.deprecated_rules_description=These deprecated rules will eventually disappear. You should proactively investigate replacing them.
  1983. quality_profiles.deprecated_rules_are_still_activated=Deprecated rules are still activated on {count} quality profile(s):
  1984. quality_profiles.sonarway_missing_rules=Sonar way rules not included
  1985. quality_profiles.sonarway_missing_rules_description=Recommended rules are missing from your profile
  1986. quality_profiles.x_sonarway_missing_rules={linkCount} Sonar way {count, plural, one {rule} other {rules}} not included
  1987. quality_profiles.sonarway_see_x_missing_rules=See {0} missing Sonar way rules
  1988. quality_profiles.stagnant_profiles=Stagnant Profiles
  1989. quality_profiles.not_updated_more_than_year=The following profiles haven't been updated for more than 1 year:
  1990. quality_profiles.exporters=Exporters
  1991. quality_profiles.exporters.deprecated=Exporters are deprecated, and will be removed in a future version.
  1992. quality_profiles.updated_=Updated:
  1993. quality_profiles.used_=Used:
  1994. quality_profiles.built_in=Built-in
  1995. quality_profiles.built_in.description=This is a built-in quality profile that might be updated automatically.
  1996. quality_profiles.extends_built_in=Because this quality profile inherits from a built-in quality profile, it might be updated automatically.
  1997. quality_profiles.no_built_in_updates_warning=This quality profile does not inherit from a built-in profile. It will not benefit from automatic updates when new rules are introduced.
  1998. quality_profiles.no_built_in_updates_warning_admin=To benefit from automatic updates, set the corresponding built-in profile as the parent of your quality profile.
  1999. quality_profiles.no_built_in_updates_warning.new_profile=This new quality profile won't inherit from a built-in profile. It will not benefit from automatic updates when new rules are introduced.
  2000. quality_profiles.no_built_in_updates_warning.new_profile.2=If you want to benefit from automatic updates, consider extending a built-in quality profile instead.
  2001. quality_profiles.default_permissions=Users with the global "Administer Quality Profiles" permission and those listed below can manage this quality profile.
  2002. quality_profiles.grant_permissions_to_more_users=Grant permissions to more users
  2003. quality_profiles.grant_permissions_to_user_or_group=Grant permissions to a user or a group
  2004. quality_profiles.additional_user_groups=Additional users / groups:
  2005. quality_profiles.search_description=Search users by login or name, and groups by name:
  2006. quality_profiles.permissions.remove.user=Remove permission from user
  2007. quality_profiles.permissions.remove.user_x=Remove permission from user {0}
  2008. quality_profiles.permissions.remove.user.confirmation=Are you sure you want to remove permission on this quality profile from user {user}?
  2009. quality_profiles.permissions.remove.group=Remove permission from group
  2010. quality_profiles.permissions.remove.group_x=Remove permission for {0}
  2011. quality_profiles.permissions.remove.group.confirmation=Are you sure you want to remove permission on this quality profile from group {user}?
  2012. quality_profiles.copy_help=Create a new quality profile as a replica of "{0}". The two profiles will then evolve independently.
  2013. quality_profiles.extend_help=Create a child quality profile inheriting all active rules from "{0}". Changes to "{0}" will impact the child profile.
  2014. quality_profiles.extend_description=This profile extends {link}.
  2015. quality_profiles.extend_description_help=Changes to "{0}" or any of its parents may impact this quality profile.
  2016. quality_profiles.chose_creation_type=What type of profile do you want to create?
  2017. quality_profiles.creation_from_extend=Extend an existing quality profile
  2018. quality_profiles.creation_from_extend_description_1=Create a child quality profile inheriting its parent’s active rules.
  2019. quality_profiles.creation_from_extend_description_2=Changes to the parent profile will impact the child profile.
  2020. quality_profiles.creation_from_copy=Copy an existing quality profile
  2021. quality_profiles.creation_from_copy_description_1=Create a new quality profile as a replica of the copied quality profile.
  2022. quality_profiles.creation_from_copy_description_2=The two profiles will then evolve independently.
  2023. quality_profiles.creation_from_blank=Create a blank quality profile
  2024. quality_profiles.creation_from_blank_description=Create a new quality profile with no active rules by default.
  2025. quality_profiles.creation.choose_parent_quality_profile=Profile to extend
  2026. quality_profiles.creation.choose_copy_quality_profile=Profile to copy
  2027. quality_profiles.name_invalid=Quality profile name should not be empty
  2028. quality_profiles.actions=Open {0} {1} quality profile actions
  2029. #------------------------------------------------------------------------------
  2030. #
  2031. # QUALITY GATES
  2032. #
  2033. #------------------------------------------------------------------------------
  2034. quality_gate.create=Create
  2035. quality_gates.create=Create Quality Gate
  2036. quality_gates.rename=Rename Quality Gate
  2037. quality_gates.delete=Delete Quality Gate
  2038. quality_gates.copy=Copy Quality Gate
  2039. quality_gates.cannot_set_default_no_cayc=You must make this quality gate Clean as You Code compliant to make this the default quality gate.
  2040. quality_gates.cannot_copy_no_cayc=You must make this quality gate Clean as You Code compliant to copy.
  2041. quality_gates.is_default_no_conditions=This is the default quality gate, but it has no configured conditions. Please configure at least 1 condition for this quality gate.
  2042. quality_gates.is_built_in.description=Sonar way is recommended for most projects. {link}
  2043. quality_gates.is_built_in.cayc.description=The only quality gate you need to practice {link}
  2044. quality_gates.conditions=Conditions
  2045. quality_gates.conditions.help=Your project will fail the Quality Gate if it crosses any metric thresholds set for New Code or Overall Code.
  2046. quality_gates.conditions.help.link=See also: Clean as You Code
  2047. quality_gates.projects=Projects
  2048. quality_gates.projects.help=The Default gate is applied to all projects not explicitly assigned to a gate. Quality Gate administrators can assign projects to a non-default gate, or always make it follow the system default. Project administrators may choose any gate.
  2049. quality_gates.add_condition=Add Condition
  2050. quality_gates.condition.edit=Edit condition on {0}
  2051. quality_gates.condition.delete=Delete condition on {0}
  2052. quality_gates.condition_added=Successfully added condition.
  2053. quality_gates.update_condition=Update Condition
  2054. quality_gates.condition_updated=Successfully updated condition.
  2055. quality_gates.conditions_updated=Successfully updated conditions.
  2056. quality_gates.no_conditions=No Conditions
  2057. quality_gates.health_icons=Project health icons represent:
  2058. quality_gates.projects_for_default=Every project not specifically associated to a quality gate will be associated to this one by default.
  2059. quality_gates.projects.with=With
  2060. quality_gates.projects.without=Without
  2061. quality_gates.projects.all=All
  2062. quality_gates.projects.noResults=No Projects
  2063. quality_gates.projects.select_hint=Click to associate this project with the quality gate
  2064. quality_gates.projects.deselect_hint=Click to remove association between this project and the quality gate
  2065. quality_gates.projects.cannot_associate_projects_no_conditions=You must configure at least 1 condition before you can assign projects to this quality gate.
  2066. quality_gates.operator.LT=is less than
  2067. quality_gates.operator.inverted.LT=greather than or equal
  2068. quality_gates.operator.GT=is greater than
  2069. quality_gates.operator.inverted.GT=less than or equal
  2070. quality_gates.operator.EQ=equals
  2071. quality_gates.operator.NE=is not
  2072. quality_gates.operator.LT.short=<
  2073. quality_gates.operator.GT.short=>
  2074. quality_gates.operator.EQ.short==
  2075. quality_gates.operator.NE.short=\u2260
  2076. quality_gates.operator.LT.rating=is better than
  2077. quality_gates.operator.GT.rating=is worse than
  2078. quality_gates.operator.EQ.rating=is
  2079. quality_gates.operator.NE.rating=is not
  2080. quality_gates.delete.confirm.message=Are you sure you want to delete the "{0}" quality gate?
  2081. quality_gates.delete.confirm.default=Are you sure you want to delete the "{0}" quality gate, which is the default quality gate?
  2082. quality_gates.delete_condition=Delete Condition
  2083. quality_gates.condition_deleted=Successfully deleted condition
  2084. quality_gates.delete_condition.confirm.message=Are you sure you want to delete the "{0}" condition?
  2085. quality_gates.conditions.fails_when=Quality Gate fails when
  2086. quality_gates.conditions.metric=Metric
  2087. quality_gates.conditions.cayc=Your new code will be clean if:
  2088. quality_gates.conditions.cayc.description=These conditions apply to the new code of all branches and to pull requests.
  2089. quality_gates.conditions.cayc.metric={metric} is {operator} to {value}
  2090. quality_gates.conditions.cayc.hint=The conditions below must be true for your project to pass the Quality Gate.
  2091. quality_gates.conditions.cayc.threshold.hint=Sonar recommends this threshold. Create a new Quality Gate to set a different value.
  2092. quality_gates.conditions.new_code=On New Code
  2093. quality_gates.conditions.new_code.long=Conditions on New Code
  2094. quality_gates.conditions.new_code.description=Conditions on new code apply to all branches and to pull requests.
  2095. quality_gates.conditions.new_code_1=1 condition failed on new code
  2096. quality_gates.conditions.new_code_x={0} conditions failed on new code
  2097. quality_gates.conditions.overall_code=On Overall Code
  2098. quality_gates.conditions.overall_code.long=Conditions on Overall Code
  2099. quality_gates.conditions.overall_code.description=Conditions on overall code apply to branches only.
  2100. quality_gates.conditions.overall_code_1=1 condition failed on overall code
  2101. quality_gates.conditions.overall_code_x={0} conditions failed on overall code
  2102. quality_gates.conditions.operator=Operator
  2103. quality_gates.conditions.value=Value
  2104. quality_gates.conditions.where=Where?
  2105. quality_gates.duplicated_conditions=This quality gate has duplicated conditions:
  2106. quality_gates.intro.1=Quality Gate is the set of conditions the project must meet before it can be released into production.
  2107. quality_gates.intro.2=It is possible to set a default Quality Gate, which will be applied to all projects not explicitly assigned to some other gate.
  2108. quality_gates.built_in=Built-in
  2109. quality_gates.built_in.help=Built-in, immutable Quality Gate reflecting best practices.
  2110. quality_gates.built_in.description.1=This quality gate is provided by default.
  2111. quality_gates.built_in.description.2=It will automatically be updated with the latest recommendations.
  2112. quality_gates.status=Quality Gate status
  2113. quality_gates.help=A Quality Gate is a set of measure-based, Boolean conditions. It helps you know immediately whether your projects are production-ready. Ideally, all projects will use the same quality gate. Each project's Quality Gate status is displayed prominently on its homepage.
  2114. quality_gates.permissions=Permissions
  2115. quality_gates.permissions.help=Users with the global "Administer quality gates" permission and those listed below can manage this quality gate.
  2116. quality_gates.permissions.grant=Grant permissions to a user or a group
  2117. quality_gates.permissions.search=Search users by login or name, and groups by name:
  2118. quality_gates.permissions.remove.user=Remove permission from user
  2119. quality_gates.permissions.remove.user.confirmation=Are you sure you want to remove permission on this quality gate from user {user}?
  2120. quality_gates.permissions.remove.group=Remove permission from group
  2121. quality_gates.permissions.remove.group.confirmation=Are you sure you want to remove permission on this quality gate from group {user}?
  2122. quality_gates.cayc=Clean as You Code
  2123. quality_gates.cayc_missing.banner.title=This quality gate does not comply with Clean as You Code
  2124. quality_gates.cayc_missing.banner.description={cayc_link} is the most efficient approach to delivering Clean Code. This quality gate does not comply with this methodology. We highly recommend that you update this quality gate.
  2125. quality_gates.cayc_condition.review_update=Review and Fix Quality Gate
  2126. quality_gates.cayc.review_update_modal.header=Fix "{0}" to comply with Clean as You Code
  2127. quality_gates.cayc.review_update_modal.confirm_text=Fix Quality Gate
  2128. quality_gates.cayc.review_update_modal.description1=This quality gate will be updated to comply with {cayc_link}. Please review the changes below.
  2129. quality_gates.cayc.review_update_modal.description2=All other conditions will be preserved
  2130. quality_gates.cayc_optimize.banner.title=This quality gate can be further optimized for Clean as You Code
  2131. quality_gates.cayc_optimize.banner.description=This quality gate complies with the {cayc_link} methodology, but it can be further optimized to ensure that new code has 0 issues.
  2132. quality_gates.cayc_condition.review_optimize=Review and Optimize Quality Gate
  2133. quality_gates.cayc.review_optimize_modal.header=Optimize "{0}" for Clean as You Code
  2134. quality_gates.cayc.review_optimize_modal.confirm_text=Optimize Quality Gate
  2135. quality_gates.cayc.review_optimize_modal.description1=This quality gate will be optimized for {cayc_link}. Please review the changes below.
  2136. quality_gates.cayc.condition_simplification_list=List of conditions to ensure that any code added or changed is clean.
  2137. quality_gates.cayc.condition_simplification_tour.page_1.title='Clean as You Code' ready!
  2138. quality_gates.cayc.condition_simplification_tour.page_1.content1=The conditions in this quality gate have been updated to ensure that any code added or changed is clean.
  2139. quality_gates.cayc.condition_simplification_tour.page_2.title=One condition, zero issues
  2140. quality_gates.cayc.condition_simplification_tour.page_2.content1=One single condition ensures that new code has no issues.
  2141. quality_gates.cayc.condition_simplification_tour.page_2.content2=This condition replaces the three conditions on Security rating, Reliability rating and Maintainability rating.
  2142. quality_gates.cayc.condition_simplification_tour.page_3.title=Resolve pending issues
  2143. quality_gates.cayc.condition_simplification_tour.page_3.content1=Starting now, every issue in new code must be resolved for a project to pass this quality gate.
  2144. quality_gates.cayc.condition_simplification_tour.page_3.content2=Learn more: Issue resolutions
  2145. quality_gates.cayc.new_maintainability_rating.A=Technical debt ratio is less than {0}
  2146. quality_gates.cayc.new_maintainability_rating=Technical debt ratio is greater than {1}
  2147. quality_gates.cayc.new_reliability_rating.A=No bugs
  2148. quality_gates.cayc.new_security_rating.A=No vulnerabilities
  2149. quality_gates.cayc.unlock_edit=Unlock editing
  2150. quality_gates.cayc.tooltip.message=This quality gate does not comply with Clean as You Code.
  2151. quality_gates.cayc.badge.tooltip.learn_more=Learn more: Clean as You Code
  2152. quality_gates.cayc.banner.title=This quality gate complies with Clean as You Code
  2153. quality_gates.cayc.banner.description1=This quality gate complies with the {cayc_link} methodology, so that you benefit from the most efficient approach to delivering Clean Code.
  2154. quality_gates.cayc.banner.description2=It ensures that:
  2155. quality_gates.cayc_unfollow.description=You may click unlock to edit this quality gate. Adding extra conditions to a compliant quality gate can result in drawbacks. Are you reconsidering {cayc_link}? We strongly recommend this methodology to achieve a Clean Code status.
  2156. quality_gates.cayc.review_update_modal.add_condition.header= {0} condition(s) on new code will be added
  2157. quality_gates.cayc.review_update_modal.modify_condition.header= {0} condition(s) on new code will be modified
  2158. #------------------------------------------------------------------------------
  2159. #
  2160. # RULES DOCUMENTATION PAGE
  2161. #
  2162. #------------------------------------------------------------------------------
  2163. rules.parameters=Parameters
  2164. rules.status.beta=Beta
  2165. rules.status.BETA=Beta
  2166. rules.status.deprecated=Deprecated
  2167. rules.status.DEPRECATED=Deprecated
  2168. rules.status.DEPRECATED.help=The rule that generated this issue has been deprecated and will be removed. Once the rule is removed, this issue will no longer appear.
  2169. rules.status.ready=Ready
  2170. rules.status.READY=Ready
  2171. rules.status.REMOVED=Removed
  2172. rules.status.REMOVED.help=The rule that generated this issue has been removed. Starting on the next analysis, this issue will no longer appear.
  2173. #------------------------------------------------------------------------------
  2174. #
  2175. # CODING RULES
  2176. #
  2177. #------------------------------------------------------------------------------
  2178. coding_rules.active_in_all_profiles=The rule is already activated on all available Quality Profiles.
  2179. coding_rules.severity_deprecated=Changing rule severities is deprecated and will not be possible in the future.
  2180. coding_rules.activate=Activate
  2181. coding_rules.activate_in=Activate In
  2182. coding_rules.activate_in_quality_profile=Activate In Quality Profile
  2183. coding_rules.activation_severity=Activation Severity
  2184. coding_rules.available_since=Available Since
  2185. coding_rules.bulk_change=Bulk Change
  2186. coding_rules.bulk_change.success={2} rule(s) changed in profile {0} - {1}
  2187. coding_rules.bulk_change.warning={2} rule(s) changed, {3} rule(s) ignored in profile {0} - {1}
  2188. coding_rules.bulk_change.no_quality_profile=No quality profile.
  2189. coding_rules.can_not_bulk_change=Bulk change is only available when you have a custom Quality Profile to target. You can create a customizable Quality Profile based on a built-in one by Copying or Extending it in the Quality Profiles list.
  2190. coding_rules.can_not_deactivate=This rule is inherited and cannot be deactivated.
  2191. coding_rules.change_details=Change Details of Quality Profile
  2192. coding_rules.change_details_x=Change Details of Quality Profile {0}
  2193. coding_rules.context.others.title=How can I fix it in another component or framework?
  2194. coding_rules.context.others.description.first=Although the main framework or component you use in your project is not listed above, you may find helpful content in the instructions we provide.
  2195. coding_rules.context.others.description.second=Caution: The libraries mentioned in these instructions may not be appropriate for your code.
  2196. coding_rules.context.others.description.do=Do use libraries that are compatible with the frameworks you are using.
  2197. coding_rules.context.others.description.dont=Don’t blindly copy and paste the fixups into your code.
  2198. coding_rules.context.others.title_feedback=Help us improve
  2199. coding_rules.context.others.feedback_description_1=Let us know if the instructions we provide do not work for you. Tell us which framework you use and why our solution does not work by submitting an idea on the SonarQube productboard.
  2200. coding_rules.context.others.feedback_description_2=We will do our best to provide you with more relevant instructions in the future.
  2201. coding_rules.context.others.feedback_description.link=Submit an idea
  2202. coding_rules.create=Create
  2203. coding_rules.create_custom_rule=Create Custom Rule
  2204. coding_rules.custom_rule=Custom Rule
  2205. coding_rules.custom_rule.help=Custom rules are created by administrators from templates, and are the only fully-editable rules.
  2206. coding_rules.custom_rule.activation_notice=Note: parameters of a custom rule are not customizable on rule activation, only during creation/edit.
  2207. coding_rules.custom_rule.software_quality_x={quality} software quality
  2208. coding_rules.custom_rule.select_software_quality=Please select at least one software quality.
  2209. coding_rules.custom_rule.removal=Only custom rules may be deleted. When a custom rule is deleted, it is not removed from the SonarQube instance. Instead its status is set to "REMOVED", allowing relevant issues to continue to be displayed properly.
  2210. coding_rules.custom_rules=Custom Rules
  2211. coding_rules.deactivate_in_quality_profile=Deactivate In Quality Profile
  2212. coding_rules.deactivate_in_quality_profile_x=Deactivate In Quality Profile {0}
  2213. coding_rules.delete_rule=Delete Rule
  2214. coding_rules.delete_rule_x=Delete Rule {0}
  2215. coding_rules.delete.custom.confirm=Are you sure you want to delete custom rule "{0}"?
  2216. coding_rules.extend_description=Extend Description
  2217. coding_rules.deactivate_in=Deactivate In
  2218. coding_rules.deactivate=Deactivate
  2219. coding_rules.deactivate.confirm=Are you sure you want to deactivate this rule in the profile?
  2220. coding_rules.deactivate_in_all_quality_profiles=Deactivate In All {0} Profiles
  2221. coding_rules.inherits="{0}" inherits from "{1}"
  2222. coding_rules.issues=Issues
  2223. coding_rules.issues.only_main_branches=Only issues from the main project branches are included.
  2224. coding_rules.most_violating_projects=Most Violating Projects
  2225. coding_rules.most_violating_projects.more_x={count} more projects contain issues raised from this rule. {link}
  2226. coding_rules.most_violating_projects.link=See full list of issues
  2227. coding_rules.need_extend_or_copy=Rules in built-in Quality Profiles can't be changed. You can create a customizable Quality Profile based on a built-in one by Copying or Extending it in the Quality Profiles list.
  2228. coding_rules.no_results=No Coding Rules
  2229. coding_rules.no_issue_detected_for_projects=No issues were detected for this rule in the main project branches.
  2230. coding_rules.no_tags=No tags
  2231. coding_rules.original=Original:
  2232. coding_rules.overrides="{0}" overrides "{1}"
  2233. coding_rules.parameter.empty=(empty)
  2234. coding_rules.parameters=Parameters
  2235. coding_rules.parameters.default_value=Default Value:
  2236. coding_rules.quality_profiles=Quality Profiles
  2237. coding_rules.quality_profiles.template_caption=This rule template was activated on the following profiles in previous versions of {instance}. It is not possible anymore to do so. Instead, please create a custom rule.
  2238. coding_rules.quality_profile=Quality Profile
  2239. coding_rules.reactivate=Reactivate
  2240. coding_rules.reactivate.help=A rule with the same key has been previously deleted. Please reactivate the existing rule or modify the key to create a new rule.
  2241. coding_rules.return_to_list=Return to list
  2242. coding_rules.see_all=See all rules
  2243. coding_rules.remove_extended_description=Remove Extended Description
  2244. coding_rules.remove_extended_description.confirm=Are you sure you want to remove the extended description?
  2245. coding_rules.repository=Rule repo:
  2246. coding_rules.revert_to_parent_definition=Revert to Parent Definition
  2247. coding_rules.revert_to_parent_definition.confirm=This rule will be reverted to the parameters defined in profile {0}. Are you sure?
  2248. coding_rules.rule_template=Rule Template
  2249. coding_rules.rule_template.help=Rule Templates allow users to easily define their own rules. They are like cookie cutters from which you can stamp out new, "custom rules". The rules created from a template are listed on its rule detail page.
  2250. coding_rules.rule_template.title=This rule can be used as a template to create custom rules, it cannot be activated on a profile
  2251. coding_rules._rules=rules
  2252. coding_rules.show_template=Show Template
  2253. coding_rules.skip_to_filters=Skip to rules filters
  2254. coding_rules.software_qualities.label=Software qualities impacted
  2255. coding_rules.cct_attribute.label=Clean Code attribute
  2256. coding_rules.to_select_rules=Select rules
  2257. coding_rules.to_navigate=Navigate to rule
  2258. coding_rules.type.deprecation.title=Types of detection rules are deprecated.
  2259. coding_rules.type.deprecation.filter_by=You can now filter rules by Clean Code Attribute and Software Quality.
  2260. coding_rules.severity.deprecation.title=Severities are now directly tied to the software quality impacted. This old severity is deprecated and it will no longer be possible to change it in the future.
  2261. coding_rules.severity.deprecation.filter_by=You can now filter rules by Software Quality and new Severity.
  2262. coding_rules.update_custom_rule=Update Custom Rule
  2263. coding_rules.filters.activation=Activation
  2264. coding_rules.filters.activation.active=Active
  2265. coding_rules.filters.activation.active_rules=Active Rules
  2266. coding_rules.filters.activation.inactive=Inactive
  2267. coding_rules.filters.activation.help=Activation criterion is available when a Quality Profile is selected
  2268. coding_rules.filters.active_severity=Active Severity
  2269. coding_rules.filters.active_severity.inactive=Active severity criterion is available when a Quality Profile is selected
  2270. coding_rules.filters.availableSince=Available Since
  2271. coding_rules.filters.characteristic=Characteristic
  2272. coding_rules.filters.description=Description
  2273. coding_rules.filters.quality_profile=Quality Profile
  2274. coding_rules.filters.inheritance=Inheritance
  2275. coding_rules.filters.inheritance.inactive=Inheritance criterion is available when an inherited Quality Profile is selected
  2276. coding_rules.filters.inheritance.none=Not Inherited
  2277. coding_rules.filters.inheritance.inherited=Inherited
  2278. coding_rules.filters.inheritance.x_inherited_from_y={count} inherited from "{name}"
  2279. coding_rules.filters.inheritance.overrides=Overridden
  2280. coding_rules.filters.key=Key
  2281. coding_rules.filters.language=Language
  2282. coding_rules.filters.language.inactive=Language criterion is only available when no Quality Profile is selected
  2283. coding_rules.filters.name=Name
  2284. coding_rules.filters.repository=Repository
  2285. coding_rules.filters.severity=Severity
  2286. coding_rules.filters.status=Status
  2287. coding_rules.filters.tag=Tag
  2288. coding_rules.filters.template=Templates
  2289. coding_rules.filters.template.is_template=Show Templates Only
  2290. coding_rules.filters.template.is_not_template=Hide Templates
  2291. coding_rules.facet.languages=Language
  2292. coding_rules.facet.repositories=Repository
  2293. coding_rules.facet.impactSeverities=Severity
  2294. coding_rules.facet.cleanCodeAttributeCategories=Clean Code Attribute
  2295. coding_rules.facet.impactSoftwareQualities=Software Quality
  2296. coding_rules.facet.tags=Tags
  2297. coding_rules.facet.qprofile=Quality Profile
  2298. coding_rules.facet.qprofile.help=Quality Profiles are collections of Rules to apply during an analysis.
  2299. coding_rules.facet.qprofile.link=See also: Quality Profiles
  2300. coding_rules.facet.debt_characteristics=Characteristic
  2301. coding_rules.facet.severities=Default Severity
  2302. coding_rules.facet.statuses=Status
  2303. coding_rules.facet.available_since=Available Since
  2304. coding_rules.facet.inheritance=Inheritance
  2305. coding_rules.facet.activationSeverities=Activation Severity
  2306. coding_rules.facet.template=Template
  2307. coding_rules.facet.rule_key=Rule
  2308. coding_rules.facet.types=Type
  2309. coding_rules.facet.language.show_more=Show more languages
  2310. coding_rules.facet.language.show_less=Show less languages
  2311. coding_rules.facet.tag.show_more=Show more tags
  2312. coding_rules.facet.tag.show_less=Show less tags
  2313. coding_rules.facet.repository.show_more=Show more repositories
  2314. coding_rules.facet.repository.show_less=Show less repositories
  2315. coding_rules.facets.languages=Languages
  2316. coding_rules.facets.tags=Tags
  2317. coding_rules.facets.repositories=Repositories
  2318. coding_rules.facets.top=Top {0}
  2319. coding_rules.rule_id=Rule ID:
  2320. coding_rules.analysis_scope=Analysis scope:
  2321. coding_rules.scope.MAIN=main sources
  2322. coding_rules.scope.TEST=test sources
  2323. coding_rules.scope.ALL=all sources
  2324. coding_rules.remediation_effort=Effort:
  2325. coding_rules.remediation_function=Remediation function
  2326. coding_rules.remediation_function.LINEAR=Linear
  2327. coding_rules.remediation_function.LINEAR_OFFSET=Linear with offset
  2328. coding_rules.remediation_function.CONSTANT_ISSUE=Constant/issue
  2329. coding_rules.remediation_function.coeff=Coeff
  2330. coding_rules.remediation_function.offset=Offset
  2331. coding_rules.remediation_function.constant=Constant
  2332. coding_rules.external_rule.engine_tooltip=Rule provided by an external rule engine: {0}
  2333. coding_rules.external_rule.engine=Engine:
  2334. coding_rules.description_section.title.introduction=Introduction
  2335. coding_rules.description_section.title.root_cause=Why is this an issue?
  2336. coding_rules.description_section.title.root_cause.SECURITY_HOTSPOT=What is the risk?
  2337. coding_rules.description_section.title.assess_the_problem=Assess the risk
  2338. coding_rules.description_section.title.how_to_fix=How can I fix it?
  2339. coding_rules.description_section.title.more_info=More info
  2340. coding_rules.description_section.title.activity=Activity
  2341. coding_rules.description_context.title=Which component or framework contains the issue?
  2342. coding_rules.description_context.subtitle=How can I fix it in {0}?
  2343. coding_rules.description_context.default_information={0} was detected as the most relevant component or framework for this issue.
  2344. coding_rules.description_context.other=Other
  2345. coding_rules.more_info.education_principles.title=Clean Code principles
  2346. coding_rules.more_info.resources.title=Resources
  2347. coding_rules.more_info.notification_message=We've added new information about Clean Code principles below to help you improve your code quality and security. Take a moment to read through them.
  2348. coding_rules.more_info.scroll_message=Scroll down to Code Quality principles
  2349. coding_rules.detail.extend_description.form=Extend this rule's description
  2350. coding_rules.create_tag=Create Tag
  2351. coding_rules.select_profile=Select Profile
  2352. coding_rules.selected_profiles=Selected Profiles
  2353. coding_rules.system_tags_tooltip=This tag can't be removed because it has been predefined by our system
  2354. rule.impact.severity.tooltip=Issues found for this rule will have a {severity} impact on the {quality} of your software.
  2355. rule.clean_code_attribute_category.CONSISTENT=Consistency
  2356. rule.clean_code_attribute_category.CONSISTENT.title=This is a consistency rule.
  2357. rule.clean_code_attribute_category.INTENTIONAL=Intentionality
  2358. rule.clean_code_attribute_category.INTENTIONAL.title=This is an intentionality rule.
  2359. rule.clean_code_attribute_category.ADAPTABLE=Adaptability
  2360. rule.clean_code_attribute_category.ADAPTABLE.title=This is an adaptability rule.
  2361. rule.clean_code_attribute_category.RESPONSIBLE=Responsibility
  2362. rule.clean_code_attribute_category.RESPONSIBLE.title=This is a responsibility rule.
  2363. rule.clean_code_attribute.CLEAR=Clear
  2364. rule.clean_code_attribute.CLEAR.title=This is an intentionality rule, the code should be clear.
  2365. rule.clean_code_attribute.COMPLETE=Complete
  2366. rule.clean_code_attribute.COMPLETE.title=This is a intentionality rule, the code should be complete.
  2367. rule.clean_code_attribute.CONVENTIONAL=Conventional
  2368. rule.clean_code_attribute.CONVENTIONAL.title=This is a consistency rule, the code should be conventional.
  2369. rule.clean_code_attribute.DISTINCT=Distinct
  2370. rule.clean_code_attribute.DISTINCT.title=This is an adaptability rule, the code should be distinct.
  2371. rule.clean_code_attribute.EFFICIENT=Efficient
  2372. rule.clean_code_attribute.EFFICIENT.title=This is an intentionality rule, the code should be efficient.
  2373. rule.clean_code_attribute.FOCUSED=Focused
  2374. rule.clean_code_attribute.FOCUSED.title=This is an adaptability rule, the code should be focused.
  2375. rule.clean_code_attribute.FORMATTED=Formatted
  2376. rule.clean_code_attribute.FORMATTED.title=This is a consistency rule, the code should be formatted.
  2377. rule.clean_code_attribute.IDENTIFIABLE=Identifiable
  2378. rule.clean_code_attribute.IDENTIFIABLE.title=This is a consistency rule, the code should be identifiable.
  2379. rule.clean_code_attribute.LAWFUL=Lawful
  2380. rule.clean_code_attribute.LAWFUL.title=This is a responsibility rule, the code should be lawful.
  2381. rule.clean_code_attribute.LOGICAL=Logical
  2382. rule.clean_code_attribute.LOGICAL.title=This is an intentionality rule, the code should be logical.
  2383. rule.clean_code_attribute.MODULAR=Modular
  2384. rule.clean_code_attribute.MODULAR.title=This is an adaptability rule, the code should be modular.
  2385. rule.clean_code_attribute.RESPECTFUL=Respectful
  2386. rule.clean_code_attribute.RESPECTFUL.title=This is a responsibility rule, the code should be respectful.
  2387. rule.clean_code_attribute.TESTED=Tested
  2388. rule.clean_code_attribute.TESTED.title=This is an adaptability rule, the code should be tested.
  2389. rule.clean_code_attribute.TRUSTWORTHY=Trustworthy
  2390. rule.clean_code_attribute.TRUSTWORTHY.title=This is a responsibility rule, the code should be trustworthy.
  2391. #------------------------------------------------------------------------------
  2392. #
  2393. # EMAIL CONFIGURATION
  2394. #
  2395. #------------------------------------------------------------------------------
  2396. email_configuration.test.title=Test Configuration
  2397. email_configuration.test.to_address=To
  2398. email_configuration.test.subject=Subject
  2399. email_configuration.test.message=Message
  2400. email_configuration.test.message_text=This is a test message from SonarQube.
  2401. email_configuration.test.send=Send Test Email
  2402. email_configuration.test.email_was_sent_to_x=Email was sent to {0}
  2403. #------------------------------------------------------------------------------
  2404. #
  2405. # NOTIFICATIONS
  2406. #
  2407. #------------------------------------------------------------------------------
  2408. notification.notification=Notification
  2409. notification.channel.EmailNotificationChannel=Email
  2410. notification.dispatcher.information=A notification is never sent to the author of the event.
  2411. notification.dispatcher.ChangesOnMyIssue=Changes in issues/hotspots assigned to me
  2412. notification.dispatcher.NewIssues=New issues
  2413. notification.dispatcher.NewAlerts=Quality gate changes on all available projects
  2414. notification.dispatcher.NewAlerts.project=Quality gate changes
  2415. notification.dispatcher.NewFalsePositiveIssue=Issues resolved as false positive or accepted
  2416. notification.dispatcher.SQ-MyNewIssues=My new issues
  2417. notification.dispatcher.CeReportTaskFailure=Background tasks in failure on my administered projects
  2418. notification.dispatcher.CeReportTaskFailure.project=Background tasks in failure
  2419. notification.dispatcher.description_x=Check to receive notification for {0}
  2420. #------------------------------------------------------------------------------
  2421. #
  2422. # ALERTS
  2423. #
  2424. #------------------------------------------------------------------------------
  2425. alerts.operator.<=is less than
  2426. alerts.operator.>=is greater than
  2427. alerts.operator.\==equals
  2428. alerts.operator.!\==is not
  2429. alert.tooltip.error=This is an error message.
  2430. alert.tooltip.warning=This is a warning message.
  2431. alert.tooltip.success=This is a success message.
  2432. alert.tooltip.info=This is an info message.
  2433. alert.dismiss=Dismiss this message
  2434. #------------------------------------------------------------------------------
  2435. #
  2436. # USER
  2437. #
  2438. #------------------------------------------------------------------------------
  2439. user.password_doesnt_match_confirmation=Password doesn't match confirmation.
  2440. user.old_password_incorrect=Old password is incorrect
  2441. user.new_password_same_as_old=New password must be different from old password
  2442. user.login_or_email_used_as_scm_account=Login and email are automatically considered as SCM accounts
  2443. user.x_deleted={0} (deleted)
  2444. login.page=Log in
  2445. login.login_to_sonarqube=Log in to SonarQube
  2446. login.login_with_x=Log in with {0}
  2447. login.more_options=Log in with credentials
  2448. login.unauthorized_access_alert=You are not authorized to access this page. Please log in with more privileges and try again.
  2449. login.with_x=With {0}
  2450. login.authentication_failed=Authentication failed
  2451. login.logout_failed=Logout failed
  2452. unauthorized.page=Unauthorized
  2453. unauthorized.message=You're not authorized to access this page. Please contact the administrator.
  2454. unauthorized.reason=Reason:
  2455. #------------------------------------------------------------------------------
  2456. #
  2457. # MY PROFILE & MY ACCOUNT
  2458. #
  2459. #------------------------------------------------------------------------------
  2460. my_profile.login=Login
  2461. my_profile.email=Email
  2462. my_profile.groups=Groups
  2463. my_profile.scm_accounts=SCM Accounts
  2464. my_profile.scm_accounts.tooltip=SCM accounts are used for automatic issue assignment. Login and email are automatically considered as SCM account.
  2465. my_profile.password.title=Enter a new password
  2466. my_profile.password.old=Old Password
  2467. my_profile.password.new=New Password
  2468. my_profile.password.confirm=Confirm Password
  2469. my_profile.password.changed=The password has been changed!
  2470. my_profile.notifications.submit=Save changes
  2471. my_profile.overall_notifications.title=Overall notifications
  2472. my_profile.per_project_notifications.title=Notifications per project
  2473. my_profile.per_project_notifications.add=Add a project
  2474. my_profile.per_project_notifications.edit=Set notifications
  2475. my_account.page=My Account
  2476. my_account.notifications=Notifications
  2477. my_account.no_project_notifications=You have not set project notifications yet.
  2478. my_account.profile=Profile
  2479. my_account.security=Security
  2480. my_account.tokens_description=If you want to enforce security by not providing credentials of a real {instance} user to run your code scan or to invoke web services, you can provide a User Token as a replacement of the user login. This will increase the security of your installation by not letting your analysis user's password going through your network.
  2481. my_account.token_type=Type
  2482. my_account.project_name=Project
  2483. my_account.tokens_last_usage=Last use
  2484. my_account.tokens.expiration=Expiration
  2485. my_account.tokens.expired=Token is expired
  2486. my_account.projects=Projects
  2487. my_account.projects.description=You have admin privileges over the following projects.
  2488. my_account.projects.no_results=You have no project admin privileges.
  2489. my_account.projects.analyzed_x=Analyzed {0}
  2490. my_account.projects.never_analyzed=Never analyzed
  2491. my_account.search_project=Search Project
  2492. my_account.set_notifications_for=Search a project by name
  2493. my_account.set_notifications_for.title=Add a project
  2494. my_account.create_new.TRK=Add a project
  2495. my_account.add_project=Add Project
  2496. my_account.add_project.manual=Local project
  2497. my_account.add_project.azure=From Azure DevOps
  2498. my_account.add_project.bitbucket=From Bitbucket Server
  2499. my_account.add_project.bitbucketcloud=From Bitbucket Cloud
  2500. my_account.add_project.github=From GitHub
  2501. my_account.add_project.gitlab=From GitLab
  2502. my_account.add_project.more_others=Import from other DevOps Platforms
  2503. my_account.add_project.more=Import from DevOps Platforms
  2504. my_account.reset_password.page=Update password
  2505. my_account.reset_password=Update your password
  2506. my_account.reset_password.explain=This account should not use the default password.
  2507. my_account.create_new_project_portfolio_or_application=Analyze new project / Create new portfolio or application
  2508. my_account.preferences=Preferences
  2509. my_account.preferences.keyboard_shortcuts=Enable Keyboard Shortcuts
  2510. my_account.preferences.keyboard_shortcuts.description=Some actions can be performed using keyboard shortcuts. If you do not want to use these shortcuts, you can disable them here (this won't disable navigation shortcuts, which include the arrows, escape, and enter keys). For a list of available keyboard shortcuts, use the question mark shortcut (hit {questionMark} on your keyboard).
  2511. my_account.preferences.keyboard_shortcuts.enabled=Keyboard shortcuts are enabled
  2512. my_account.preferences.keyboard_shortcuts.disabled=Keyboard shortcuts are disabled
  2513. notifications.send_email=Send me an email for:
  2514. #------------------------------------------------------------------------------
  2515. #
  2516. # PROJECT PROVISIONING
  2517. #
  2518. #------------------------------------------------------------------------------
  2519. provisioning.no_analysis=No analysis has been performed since creation. The only available section is the configuration.
  2520. provisioning.no_analysis.delete=Either you should retry analysis or simply {link}.
  2521. provisioning.no_analysis.delete_project=delete the project
  2522. provisioning.no_analysis_on_main_branch="{0}" branch has not been analyzed yet.
  2523. provisioning.no_analysis_on_main_branch.bad_configuration="{0}" branch has not been analyzed yet and you have multiple branches already. It looks like it is not your {1}, check your configuration.
  2524. provisioning.only_provisioned=Only Provisioned
  2525. provisioning.only_provisioned.tooltip=Provisioned projects are projects that have been created, but have not been analyzed yet.
  2526. provisioning.no_analysis.application=No analysis has been performed since creation. Analyze a project to see information here.
  2527. provisioning.permission_synch_in_progress=Project permissions are being synchronized.
  2528. #------------------------------------------------------------------------------
  2529. #
  2530. # SEVERITIES
  2531. #
  2532. #------------------------------------------------------------------------------
  2533. severity.BLOCKER=Blocker
  2534. severity.BLOCKER.description=Must be fixed immediately.
  2535. severity.CRITICAL=Critical
  2536. severity.CRITICAL.description=Must be reviewed immediately and fixed soon.
  2537. severity.MAJOR=Major
  2538. severity.MAJOR.description=High potential for significant to moderate impact.
  2539. severity.MINOR=Minor
  2540. severity.MINOR.description=Potential for moderate to minor impact.
  2541. severity.INFO=Info
  2542. severity.INFO.description=Neither a bug nor a quality flaw. Just a finding.
  2543. # New severities
  2544. severity.HIGH=High
  2545. severity.HIGH.description=Must be fixed immediately.
  2546. severity.MEDIUM=Medium
  2547. severity.MEDIUM.description=High potential for significant to moderate impact.
  2548. severity.LOW=Low
  2549. severity.LOW.description=Potential for moderate to minor impact.
  2550. #------------------------------------------------------------------------------
  2551. #
  2552. # SOFTWARE QUALITIES
  2553. #
  2554. #------------------------------------------------------------------------------
  2555. software_quality=Software Quality
  2556. software_quality.SECURITY=Security
  2557. software_quality.RELIABILITY=Reliability
  2558. software_quality.MAINTAINABILITY=Maintainability
  2559. #------------------------------------------------------------------------------
  2560. #
  2561. # METRIC DOMAINS
  2562. #
  2563. #------------------------------------------------------------------------------
  2564. metric_domain.Size=Size
  2565. metric_domain.Tests=Tests
  2566. metric_domain.Integration Tests=Integration Tests
  2567. metric_domain.Complexity=Complexity
  2568. metric_domain.Documentation=Documentation
  2569. metric_domain.Rules=Rules
  2570. metric_domain.General=General
  2571. metric_domain.Duplication=Duplication
  2572. metric_domain.Design=Design
  2573. metric_domain.SCM=SCM
  2574. metric_domain.Maintainability=Maintainability
  2575. metric_domain.Releasability=Releasability
  2576. metric_domain.Reliability=Reliability
  2577. metric_domain.Security=Security
  2578. metric_domain.SecurityReview=Security Review
  2579. metric_domain.Issues=Issues
  2580. metric_domain.Duplications=Duplications
  2581. metric_domain.Coverage=Coverage
  2582. #--------------------------------------------------------------------------------------------------------------------
  2583. #
  2584. # METRIC TYPES
  2585. #
  2586. #--------------------------------------------------------------------------------------------------------------------
  2587. metric.type.INT=Integer
  2588. metric.type.FLOAT=Float
  2589. metric.type.PERCENT=Percent
  2590. metric.type.BOOL=Boolean
  2591. metric.type.STRING=String
  2592. metric.type.MILLISEC=Milliseconds
  2593. metric.type.DATA=Data
  2594. metric.type.LEVEL=Level
  2595. metric.type.DISTRIB=Distribution
  2596. metric.type.RATING=Rating
  2597. metric.type.WORK_DUR=Work Duration
  2598. metric.level.ERROR=Failed
  2599. metric.level.WARN=Warning
  2600. metric.level.OK=Passed
  2601. metric.level.NONE=None
  2602. #------------------------------------------------------------------------------
  2603. #
  2604. # METRICS
  2605. #
  2606. #------------------------------------------------------------------------------
  2607. metric.abstractness.description=Abstractness
  2608. metric.abstractness.name=Abstractness
  2609. metric.accessors.description=Accessors
  2610. metric.accessors.name=Accessors
  2611. metric.alert_status.description=The project status with regard to its quality gate.
  2612. metric.alert_status.name=Quality Gate Status
  2613. metric.authors_by_line.description=Authors by line
  2614. metric.authors_by_line.name=Authors by Line
  2615. metric.blocker_violations.description=Blocker issues
  2616. metric.blocker_violations.name=Blocker Issues
  2617. metric.branch_coverage.description=Condition coverage
  2618. metric.branch_coverage.name=Condition Coverage
  2619. metric.bugs.description=Bugs
  2620. metric.bugs.name=Bugs
  2621. metric.ca.description=Afferent couplings
  2622. metric.ca.name=Afferent Couplings
  2623. metric.ce.description=Efferent couplings
  2624. metric.ce.name=Efferent Couplings
  2625. metric.classes.description=Classes
  2626. metric.classes.name=Classes
  2627. metric.class_complexity.description=Complexity average by class
  2628. metric.class_complexity.name=Complexity / Class
  2629. metric.class_complexity_distribution.description=Classes distribution /complexity
  2630. metric.class_complexity_distribution.name=Class Distribution / Complexity
  2631. metric.code_smells.description=Code Smells
  2632. metric.code_smells.name=Code Smells
  2633. metric.cognitive_complexity.description=Cognitive complexity
  2634. metric.cognitive_complexity.name=Cognitive Complexity
  2635. metric.commented_out_code_lines.description=Commented lines of code
  2636. metric.commented_out_code_lines.name=Commented-Out LOC
  2637. metric.comment_blank_lines.description=Comments that do not contain comments
  2638. metric.comment_blank_lines.name=Blank Comments
  2639. metric.comment_lines.description=Number of comment lines
  2640. metric.comment_lines.name=Comment Lines
  2641. metric.comment_lines_density.description=Comments balanced by ncloc + comment lines
  2642. metric.comment_lines_density.name=Comments (%)
  2643. metric.comment_lines_density.short_name=Comments
  2644. metric.complexity.description=Cyclomatic complexity
  2645. metric.complexity.name=Cyclomatic Complexity
  2646. metric.complexity_in_classes.description=Cyclomatic complexity in classes
  2647. metric.complexity_in_classes.name=Complexity in Classes
  2648. metric.complexity_in_functions.description=Cyclomatic complexity in functions
  2649. metric.complexity_in_functions.name=Complexity in Functions
  2650. metric.conditions_by_line.description=Conditions by line
  2651. metric.conditions_by_line.name=Conditions by Line
  2652. metric.conditions_to_cover.description=Conditions to cover
  2653. metric.conditions_to_cover.name=Conditions to Cover
  2654. metric.confirmed_issues.description=Confirmed issues
  2655. metric.confirmed_issues.name=Confirmed Issues
  2656. metric.coverage.description=Coverage by tests
  2657. metric.coverage.name=Coverage
  2658. metric.coverage_line_hits_data.description=Coverage hits by line
  2659. metric.coverage_line_hits_data.name=Coverage Hits by Line
  2660. metric.covered_conditions.description=Covered conditions
  2661. metric.covered_conditions.name=Covered Conditions
  2662. metric.covered_conditions_by_line.description=Covered conditions by line
  2663. metric.covered_conditions_by_line.name=Covered Conditions by Line
  2664. metric.covered_lines.description=Covered lines
  2665. metric.covered_lines.name=Covered Lines
  2666. metric.critical_violations.description=Critical issues
  2667. metric.critical_violations.name=Critical Issues
  2668. metric.development_cost.description=Development cost
  2669. metric.development_cost.name=Development Cost
  2670. metric.directories.description=Directories
  2671. metric.directories.name=Directories
  2672. metric.distance.description=Distance
  2673. metric.distance.name=Distance
  2674. metric.dit.description=Depth in Inheritance Tree
  2675. metric.dit.name=Depth in Tree
  2676. metric.dsm.description=Dependency Matrix
  2677. metric.dsm.name=Dependency Matrix
  2678. metric.duplicated_blocks.description=Duplicated blocks
  2679. metric.duplicated_blocks.name=Duplicated Blocks
  2680. metric.duplicated_files.description=Duplicated files
  2681. metric.duplicated_files.name=Duplicated Files
  2682. metric.duplicated_lines.description=Duplicated lines
  2683. metric.duplicated_lines.name=Duplicated Lines
  2684. metric.duplicated_lines_density.description=Duplicated lines balanced by statements
  2685. metric.duplicated_lines_density.name=Duplicated Lines (%)
  2686. metric.duplicated_lines_density.short_name=Duplications
  2687. metric.duplicated_lines_density.extra_short_name=Density
  2688. metric.duplications_data.description=Duplications details
  2689. metric.duplications_data.name=Duplication Details
  2690. metric.efficiency.description=Efficiency
  2691. metric.efficiency.name=Efficiency
  2692. metric.effort_to_reach_maintainability_rating_a.description=Effort to reach maintainability rating A
  2693. metric.effort_to_reach_maintainability_rating_a.name=Effort to Reach Maintainability Rating A
  2694. metric.effort_to_reach_maintainability_rating_a.extra_short_name=Effort to Reach A
  2695. metric.false_positive_issues.description=False positive issues
  2696. metric.false_positive_issues.name=False Positive Issues
  2697. metric.files.description=Number of files
  2698. metric.files.name=Files
  2699. metric.file_complexity.description=Complexity average by file
  2700. metric.file_complexity.name=Complexity / File
  2701. metric.file_complexity_distribution.description=Files distribution /complexity
  2702. metric.file_complexity_distribution.name=File Distribution / Complexity
  2703. metric.file_cycles.description=File cycles
  2704. metric.file_cycles.name=File Cycles
  2705. metric.file_edges_weight.description=File edges weight
  2706. metric.file_edges_weight.name=File Edges Weight
  2707. metric.file_feedback_edges.description=Suspect file dependencies
  2708. metric.file_feedback_edges.name=Suspect File Dependencies
  2709. metric.file_tangles.description=Files tangles
  2710. metric.file_tangles.name=File Tangles
  2711. metric.file_tangle_index.description=File tangle index
  2712. metric.file_tangle_index.name=File Tangle Index
  2713. metric.functions.description=Functions
  2714. metric.functions.name=Functions
  2715. metric.function_complexity.description=Complexity average by function
  2716. metric.function_complexity.name=Complexity / Function
  2717. metric.function_complexity_distribution.description=Functions distribution /complexity
  2718. metric.function_complexity_distribution.name=Function Distribution / Complexity
  2719. metric.generated_lines.description=Number of generated lines
  2720. metric.generated_lines.name.suffix=generated lines
  2721. metric.generated_lines.name=Generated Lines
  2722. metric.generated_ncloc.description=Generated non Commenting Lines of Code
  2723. metric.generated_ncloc.name.suffix=generated lines of code
  2724. metric.generated_ncloc.name=Generated Lines of Code
  2725. metric.has_rating_X=Has rating: {0}
  2726. metric.no_rating=Has no rating
  2727. metric.info_violations.description=Info issues
  2728. metric.info_violations.name=Info Issues
  2729. metric.instability.description=Instability
  2730. metric.instability.name=Instability
  2731. metric.it_branch_coverage.description=Condition coverage by integration tests
  2732. metric.it_branch_coverage.name=IT Condition Coverage
  2733. metric.it_conditions_by_line.description=IT conditions by line
  2734. metric.it_conditions_by_line.name=IT Conditions by Line
  2735. metric.it_conditions_to_cover.description=Conditions to cover by integration tests
  2736. metric.it_conditions_to_cover.name=IT Conditions to Cover
  2737. metric.it_coverage.description=Integration tests coverage
  2738. metric.it_coverage.name=IT Coverage
  2739. metric.it_coverage_line_hits_data.description=Coverage hits by line by integration tests
  2740. metric.it_coverage_line_hits_data.name=IT Coverage Hits by Line
  2741. metric.it_covered_conditions_by_line.description=IT covered conditions by line
  2742. metric.it_covered_conditions_by_line.name=IT Covered Conditions by Line
  2743. metric.it_lines_to_cover.description=Lines to cover by integration tests
  2744. metric.it_lines_to_cover.name=IT Lines to Cover
  2745. metric.it_line_coverage.description=Line coverage by integration tests
  2746. metric.it_line_coverage.name=IT Line Coverage
  2747. metric.it_uncovered_conditions.description=Uncovered conditions by integration tests
  2748. metric.it_uncovered_conditions.name=IT Uncovered Conditions
  2749. metric.it_uncovered_lines.description=Uncovered lines by integration tests
  2750. metric.it_uncovered_lines.name=IT Uncovered Lines
  2751. metric.last_commit_date.name=Date of Last Commit
  2752. metric.last_commit_datetimes_by_line.description=Last commit dates by line
  2753. metric.last_commit_datetimes_by_line.name=Last Commit Dates by Line
  2754. metric.lcom4.description=Lack of Cohesion of Functions
  2755. metric.lcom4.name=LCOM4
  2756. metric.lcom4_blocks.description=LCOM4 blocks
  2757. metric.lcom4_blocks.name=LCOM4 Blocks
  2758. metric.lcom4_distribution.description=Class distribution /LCOM4
  2759. metric.lcom4_distribution.name=Class Distribution / LCOM4
  2760. metric.lines.description=Lines
  2761. metric.lines.name=Lines
  2762. metric.lines_to_cover.description=Lines to cover
  2763. metric.lines_to_cover.name=Lines to Cover
  2764. metric.line_coverage.description=Line coverage
  2765. metric.line_coverage.name=Line Coverage
  2766. metric.maintainability.description=Maintainability
  2767. metric.maintainability.name=Maintainability
  2768. metric.major_violations.description=Major issues
  2769. metric.major_violations.name=Major Issues
  2770. metric.minor_violations.description=Minor issues
  2771. metric.minor_violations.name=Minor Issues
  2772. metric.ncloc.name=Lines of Code
  2773. metric.ncloc.description=Non commenting lines of code
  2774. metric.ncloc_language_distribution.description=Non Commenting Lines of Code Distributed By Language
  2775. metric.ncloc_language_distribution.name=Lines of Code Per Language
  2776. metric.new_blocker_violations.description=New Blocker issues
  2777. metric.new_blocker_violations.name=New Blocker Issues
  2778. metric.new_blocker_violations.short_name=Blocker Issues
  2779. metric.new_branch_coverage.description=Condition coverage of new/changed code
  2780. metric.new_branch_coverage.name=Condition Coverage on New Code
  2781. metric.new_branch_coverage.extra_short_name=Condition Coverage
  2782. metric.new_bugs.description=New Bugs
  2783. metric.new_bugs.name=New Bugs
  2784. metric.new_bugs.short_name=Bugs
  2785. metric.new_code_smells.description=New Code Smells
  2786. metric.new_code_smells.name=New Code Smells
  2787. metric.new_code_smells.short_name=Code Smells
  2788. metric.new_conditions_to_cover.description=Conditions to cover on new code
  2789. metric.new_conditions_to_cover.name=Conditions to Cover on New Code
  2790. metric.new_conditions_to_cover.extra_short_name=Conditions to Cover
  2791. metric.new_coverage.description=Coverage of new/changed code
  2792. metric.new_coverage.description.positive=New code is sufficiently covered by test
  2793. metric.new_coverage.name=Coverage on New Code
  2794. metric.new_coverage.short_name=Coverage
  2795. metric.new_critical_violations.description=New Critical issues
  2796. metric.new_critical_violations.name=New Critical Issues
  2797. metric.new_critical_violations.short_name=Critical Issues
  2798. metric.new_development_cost.description=Development cost on new code
  2799. metric.new_development_cost.name=Development Cost on New Code
  2800. metric.new_duplicated_blocks.name=Duplicated Blocks on New Code
  2801. metric.new_duplicated_blocks.extra_short_name=Duplicated Blocks
  2802. metric.new_duplicated_blocks.description=Duplicated blocks on new code
  2803. metric.new_duplicated_lines.name=Duplicated Lines on New Code
  2804. metric.new_duplicated_lines.extra_short_name=Duplicated Lines
  2805. metric.new_duplicated_lines.description=Duplicated Lines on New Code
  2806. metric.new_duplicated_lines_density.description=Duplicated lines (%) on new code balanced by statements
  2807. metric.new_duplicated_lines_density.description.positive=New code has limited duplication
  2808. metric.new_duplicated_lines_density.name=Duplicated Lines (%) on New Code
  2809. metric.new_duplicated_lines_density.short_name=Duplications
  2810. metric.new_duplicated_lines_density.extra_short_name=Density
  2811. metric.new_info_violations.description=New Info issues
  2812. metric.new_info_violations.name=New Info Issues
  2813. metric.new_info_violations.short_name=Info Issues
  2814. metric.new_it_branch_coverage.description=Integration tests condition coverage of new/changed code
  2815. metric.new_it_branch_coverage.name=Condition Coverage by IT on New Code
  2816. metric.new_it_conditions_to_cover.description=New conditions to cover by integration tests
  2817. metric.new_it_conditions_to_cover.name=Conditions to Cover by IT on New Code
  2818. metric.new_it_coverage.description=Integration tests coverage of new/changed code
  2819. metric.new_it_coverage.name=Coverage by IT on New Code
  2820. metric.new_it_lines_to_cover.description=Lines to cover on new code by integration tests
  2821. metric.new_it_lines_to_cover.name=Lines to Cover by IT on New Code
  2822. metric.new_it_line_coverage.description=Integration tests line coverage of added/changed code
  2823. metric.new_it_line_coverage.name=Line Coverage by IT on New Code
  2824. metric.new_it_uncovered_conditions.description=New conditions that are not covered by integration tests
  2825. metric.new_it_uncovered_conditions.name=Uncovered Conditions by IT on New Code
  2826. metric.new_it_uncovered_lines.description=New lines that are not covered by integration tests
  2827. metric.new_it_uncovered_lines.name=Uncovered Lines by IT on New Code
  2828. metric.new_lines_to_cover.description=Lines to cover on new code
  2829. metric.new_lines_to_cover.name=Lines to Cover on New Code
  2830. metric.new_lines_to_cover.extra_short_name=Lines to Cover
  2831. metric.new_line_coverage.description=Line coverage of added/changed code
  2832. metric.new_line_coverage.name=Line Coverage on New Code
  2833. metric.new_line_coverage.extra_short_name=Line Coverage
  2834. metric.new_maintainability_rating.description=Maintainability rating on new code
  2835. metric.new_maintainability_rating.name=Maintainability Rating on New Code
  2836. metric.new_maintainability_rating.extra_short_name=Rating
  2837. metric.new_major_violations.description=New Major issues
  2838. metric.new_major_violations.name=New Major Issues
  2839. metric.new_major_violations.short_name=Major Issues
  2840. metric.new_minor_violations.description=New Minor issues
  2841. metric.new_minor_violations.name=New Minor Issues
  2842. metric.new_minor_violations.short_name=Minor Issues
  2843. metric.new_lines.name=New Lines
  2844. metric.new_lines.description=New lines
  2845. metric.new_lines.short_name=Lines
  2846. metric.new_overall_branch_coverage.description=Condition coverage of new/changed code by all tests
  2847. metric.new_overall_branch_coverage.name=Overall Condition Coverage on New Code
  2848. metric.new_overall_conditions_to_cover.description=New conditions to cover by all tests
  2849. metric.new_overall_conditions_to_cover.name=Overall Conditions to Cover on New Code
  2850. metric.new_overall_coverage.description=Overall coverage of new/changed code
  2851. metric.new_overall_coverage.name=Overall Coverage on New Code
  2852. metric.new_overall_lines_to_cover.description=New lines to cover by all tests
  2853. metric.new_overall_lines_to_cover.name=Overall Lines to Cover on New Code
  2854. metric.new_overall_line_coverage.description=Line coverage of added/changed code by all tests
  2855. metric.new_overall_line_coverage.name=Overall Line Coverage on New Code
  2856. metric.new_overall_uncovered_conditions.description=New conditions that are not covered by any test
  2857. metric.new_overall_uncovered_conditions.name=Overall Uncovered Conditions on New Code
  2858. metric.new_overall_uncovered_lines.description=New lines that are not covered by any tests
  2859. metric.new_overall_uncovered_lines.name=Overall Uncovered Lines on New Code
  2860. metric.new_reliability_rating.description=Reliability rating on new code
  2861. metric.new_reliability_rating.name=Reliability Rating on New Code
  2862. metric.new_reliability_rating.extra_short_name=Rating
  2863. metric.new_reliability_remediation_effort.description=Reliability remediation effort on new code
  2864. metric.new_reliability_remediation_effort.name=Reliability Remediation Effort on New Code
  2865. metric.new_reliability_remediation_effort.extra_short_name=Remediation Effort
  2866. metric.new_security_hotspots.description=New Security Hotspots
  2867. metric.new_security_hotspots.name=New Security Hotspots
  2868. metric.new_security_hotspots.short_name=Security Hotspots
  2869. metric.new_security_hotspots_reviewed.description=Percentage of Security Hotspots Reviewed on New Code
  2870. metric.new_security_hotspots_reviewed.description.positive=All new security hotspots are reviewed
  2871. metric.new_security_hotspots_reviewed.name=Security Hotspots Reviewed on New Code
  2872. metric.new_security_hotspots_reviewed.short_name=Security Hotspots Reviewed
  2873. metric.new_security_hotspots_reviewed_status.description=Security Review Reviewed Status on New Code
  2874. metric.new_security_hotspots_reviewed_status.name=Security Review Reviewed Status on New Code
  2875. metric.new_security_hotspots_to_review_status.description=Security Review To Review Status on New Code
  2876. metric.new_security_hotspots_to_review_status.name=Security Review To Review Status on New Code
  2877. metric.new_security_rating.description=Security rating on new code
  2878. metric.new_security_rating.name=Security Rating on New Code
  2879. metric.new_security_rating.extra_short_name=Rating
  2880. metric.new_security_remediation_effort.description=Security remediation effort on new code
  2881. metric.new_security_remediation_effort.name=Security Remediation Effort on New Code
  2882. metric.new_security_remediation_effort.extra_short_name=Remediation Effort
  2883. metric.new_security_review_rating.description=Security Review Rating on New Code
  2884. metric.new_security_review_rating.name=Security Review Rating on New Code
  2885. metric.new_security_review_rating.extra_short_name=Rating
  2886. metric.new_sqale_debt_ratio.description=Technical Debt Ratio of new/changed code.
  2887. metric.new_sqale_debt_ratio.name=Technical Debt Ratio on New Code
  2888. metric.new_sqale_debt_ratio.short_name=Debt Ratio on new code
  2889. metric.new_sqale_debt_ratio.extra_short_name=Debt Ratio
  2890. metric.new_technical_debt.description=Added technical debt
  2891. metric.new_technical_debt.name=Added Technical Debt
  2892. metric.new_technical_debt.short_name=Added Debt
  2893. metric.new_technical_debt.extra_short_name=Debt
  2894. metric.new_uncovered_conditions.description=Uncovered conditions on new code
  2895. metric.new_uncovered_conditions.name=Uncovered Conditions on New Code
  2896. metric.new_uncovered_conditions.extra_short_name=Uncovered Conditions
  2897. metric.new_uncovered_lines.description=Uncovered lines on new code
  2898. metric.new_uncovered_lines.name=Uncovered Lines on New Code
  2899. metric.new_uncovered_lines.extra_short_name=Uncovered Lines
  2900. metric.new_violations.description=New issues
  2901. metric.new_violations.description.positive=New code has 0 issues
  2902. metric.new_violations.name=New Issues
  2903. metric.new_vulnerabilities.description=New Vulnerabilities
  2904. metric.new_vulnerabilities.name=New Vulnerabilities
  2905. metric.new_vulnerabilities.short_name=Vulnerabilities
  2906. metric.noc.description=Number of Children
  2907. metric.noc.name=Number of Children
  2908. metric.open_issues.description=Open issues
  2909. metric.open_issues.name=Open Issues
  2910. metric.overall_branch_coverage.description=Condition coverage by all tests
  2911. metric.overall_branch_coverage.name=Overall Condition Coverage
  2912. metric.overall_conditions_by_line.description=Overall conditions by all tests and by line
  2913. metric.overall_conditions_by_line.name=Overall Conditions by Line
  2914. metric.overall_conditions_to_cover.description=Conditions to cover by all tests
  2915. metric.overall_conditions_to_cover.name=Overall Conditions to Cover
  2916. metric.overall_coverage.description=Overall test coverage
  2917. metric.overall_coverage.name=Overall Coverage
  2918. metric.overall_coverage_line_hits_data.description=Coverage hits by all tests and by line
  2919. metric.overall_coverage_line_hits_data.name=Overall Coverage Hits by Line
  2920. metric.overall_covered_conditions_by_line.description=Overall covered conditions by all tests and by line
  2921. metric.overall_covered_conditions_by_line.name=Overall Covered Conditions by Line
  2922. metric.overall_lines_to_cover.description=Lines to cover by all tests
  2923. metric.overall_lines_to_cover.name=Overall Lines to Cover
  2924. metric.overall_line_coverage.description=Line coverage by all tests
  2925. metric.overall_line_coverage.name=Overall Line Coverage
  2926. metric.overall_uncovered_conditions.description=Uncovered conditions by all tests
  2927. metric.overall_uncovered_conditions.name=Overall Uncovered Conditions
  2928. metric.overall_uncovered_lines.description=Uncovered lines by all tests
  2929. metric.overall_uncovered_lines.name=Overall Uncovered Lines
  2930. metric.packages.description=Packages
  2931. metric.packages.name=Packages
  2932. metric.package_cycles.description=Package cycles
  2933. metric.package_cycles.name=Package Cycles
  2934. metric.package_edges_weight.description=Package edges weight
  2935. metric.package_edges_weight.name=Package Edges Weight
  2936. metric.package_feedback_edges.description=Package dependencies to cut
  2937. metric.package_feedback_edges.name=Package Dependencies to Cut
  2938. metric.package_tangles.description=File dependencies to cut
  2939. metric.package_tangles.name=File Dependencies to Cut
  2940. metric.package_tangle_index.description=Package tangle index
  2941. metric.package_tangle_index.name=Package Tangle Index
  2942. metric.portability.description=Portability
  2943. metric.portability.name=Portability
  2944. metric.profile.description=Selected Quality Profile
  2945. metric.profile.name=Profile
  2946. metric.profile_version.description=Selected Quality Profile version
  2947. metric.profile_version.name=Profile Version
  2948. metric.projects.description=Number of project branches
  2949. metric.projects.name=Project branches
  2950. metric.public_api.description=Public API
  2951. metric.public_api.name=Public API
  2952. metric.public_documented_api_density.description=Public documented classes and functions balanced by ncloc
  2953. metric.public_documented_api_density.name=Public Documented API (%)
  2954. metric.public_undocumented_api.description=Public undocumented classes, functions and variables
  2955. metric.public_undocumented_api.name=Public Undocumented API
  2956. metric.quality_gate_details.description=The project detailed status with regard to its quality gate
  2957. metric.quality_gate_details.name=Quality Gate Details
  2958. metric.quality_profiles.description=Details of Quality Profiles used during analysis
  2959. metric.quality_profiles.name=Profiles
  2960. metric.reliability.description=Reliability
  2961. metric.reliability.name=Reliability
  2962. metric.reliability_rating.description=Reliability rating
  2963. metric.reliability_rating.name=Reliability Rating
  2964. metric.reliability_rating.extra_short_name=Rating
  2965. metric.reliability_rating.tooltip.A=Reliability rating is A when there are no bugs.
  2966. metric.reliability_rating.tooltip.B=Reliability rating is B when there is at least one minor bug.
  2967. metric.reliability_rating.tooltip.C=Reliability rating is C when there is at least one major bug.
  2968. metric.reliability_rating.tooltip.D=Reliability rating is D when there is at least one critical bug.
  2969. metric.reliability_rating.tooltip.E=Reliability rating is E when there is at least one blocker bug.
  2970. metric.reliability_remediation_effort.description=Reliability Remediation Effort
  2971. metric.reliability_remediation_effort.name=Reliability Remediation Effort
  2972. metric.reliability_remediation_effort.extra_short_name=Remediation Effort
  2973. metric.reopened_issues.description=Reopened issues
  2974. metric.reopened_issues.name=Reopened Issues
  2975. metric.revisions_by_line.description=Revisions by line
  2976. metric.revisions_by_line.name=Revisions by Line
  2977. metric.rfc.description=Response for Class
  2978. metric.rfc.name=Response for Class
  2979. metric.rfc_distribution.description=Class distribution /RFC
  2980. metric.rfc_distribution.name=Class Distribution / RFC
  2981. metric.security_hotspots.description=Security Hotspots
  2982. metric.security_hotspots.full_description=Security-sensitive code that requires manual review to assess whether or not a vulnerability exists.
  2983. metric.security_hotspots.name=Security Hotspots
  2984. metric.security_hotspots_reviewed.description=Percentage of Security Hotspots Reviewed
  2985. metric.security_hotspots_reviewed.name=Security Hotspots Reviewed
  2986. metric.security_hotspots_reviewed_status.description=Security Review Reviewed Status
  2987. metric.security_hotspots_reviewed_status.name=Security Review Reviewed Status
  2988. metric.security_hotspots_to_review_status.description=Security Review To Review Status
  2989. metric.security_hotspots_to_review_status.name=Security Review To Review Status
  2990. metric.security_rating.description=Security rating
  2991. metric.security_rating.name=Security Rating
  2992. metric.security_rating.extra_short_name=Rating
  2993. metric.security_rating.tooltip.A=Security rating is A when there are no vulnerabilities.
  2994. metric.security_rating.tooltip.B=Security rating is B when there is at least one minor vulnerability.
  2995. metric.security_rating.tooltip.C=Security rating is C when there is at least one major vulnerability.
  2996. metric.security_rating.tooltip.D=Security rating is D when there is at least one critical vulnerability.
  2997. metric.security_rating.tooltip.E=Security rating is E when there is at least one blocker vulnerability.
  2998. metric.security_remediation_effort.description=Security remediation effort
  2999. metric.security_remediation_effort.name=Security Remediation Effort
  3000. metric.security_remediation_effort.extra_short_name=Remediation Effort
  3001. metric.security_review_rating.description=Security Review Rating
  3002. metric.security_review_rating.name=Security Review Rating
  3003. metric.security_review_rating.extra_short_name=Rating
  3004. metric.security_review_rating.tooltip.A=Security Review rating is A when at least 80% of Security Hotspots are reviewed.
  3005. metric.security_review_rating.tooltip.B=Security Review rating is B when less than 80% of Security Hotspots are reviewed.
  3006. metric.security_review_rating.tooltip.C=Security Review rating is C when less than 70% of Security Hotspots are reviewed.
  3007. metric.security_review_rating.tooltip.D=Security Review rating is D when less than 50% of Security Hotspots are reviewed.
  3008. metric.security_review_rating.tooltip.E=Security Review rating is E when less than 30% of Security Hotspots are reviewed.
  3009. metric.skipped_tests.description=Number of skipped unit tests
  3010. metric.skipped_tests.name=Skipped Unit Tests
  3011. metric.skipped_tests.short_name=Skipped
  3012. metric.sqale_debt_ratio.description=Ratio of the actual technical debt compared to the estimated cost to develop the whole source code from scratch
  3013. metric.sqale_debt_ratio.name=Technical Debt Ratio
  3014. metric.sqale_debt_ratio.short_name=Debt Ratio
  3015. metric.sqale_index.description=Total effort (in minutes) to fix all the issues on the component and therefore to comply to all the requirements.
  3016. metric.sqale_index.name=Technical Debt
  3017. metric.sqale_index.short_name=Debt
  3018. metric.sqale_rating.description=A-to-E rating based on the technical debt ratio
  3019. metric.sqale_rating.name=Maintainability Rating
  3020. metric.sqale_rating.extra_short_name=Rating
  3021. metric.sqale_rating.tooltip=Maintainability rating is {0} when the technical debt ratio is greater than {1}
  3022. metric.sqale_rating.tooltip.A=Maintainability rating is A when the technical debt ratio is less than {0}
  3023. metric.statements.description=Number of statements
  3024. metric.statements.name=Statements
  3025. metric.suspect_lcom4_density.description=Density of classes having LCOM4>1
  3026. metric.suspect_lcom4_density.name=Suspect LCOM4 Density
  3027. metric.tests.description=Number of unit tests
  3028. metric.tests.name=Unit Tests
  3029. metric.test_data.description=Unit tests details
  3030. metric.test_data.name=Unit Test Details
  3031. metric.test_errors.description=Number of unit test errors
  3032. metric.test_errors.name=Unit Test Errors
  3033. metric.test_errors.short_name=Errors
  3034. metric.test_execution_time.description=Execution duration of unit tests
  3035. metric.test_execution_time.name=Unit Test Duration
  3036. metric.test_execution_time.short_name=Duration
  3037. metric.test_failures.description=Number of unit test failures
  3038. metric.test_failures.name=Unit Test Failures
  3039. metric.test_failures.short_name=Failures
  3040. metric.test_success_density.description=Density of successful unit tests
  3041. metric.test_success_density.name=Unit Test Success (%)
  3042. metric.test_success_density.short_name=Success
  3043. metric.uncovered_conditions.description=Uncovered conditions
  3044. metric.uncovered_conditions.name=Uncovered Conditions
  3045. metric.uncovered_lines.description=Uncovered lines
  3046. metric.uncovered_lines.name=Uncovered Lines
  3047. metric.usability.description=Usability
  3048. metric.usability.name=Usability
  3049. metric.violations.description=Issues
  3050. metric.violations.name=Issues
  3051. metric.violations.short_name=Issues
  3052. metric.vulnerabilities.description=Vulnerabilities
  3053. metric.vulnerabilities.name=Vulnerabilities
  3054. metric.wont_fix_issues.description=Won't fix issues
  3055. metric.wont_fix_issues.name=Won't Fix Issues
  3056. metric.accepted_issues.description=Accepted issues
  3057. metric.accepted_issues.name=Accepted Issues
  3058. metric.pull_request_fixed_issues.name=Pull request fixed issues
  3059. metric.pull_request_fixed_issues.description=Count of issues that would be fixed by the pull request.
  3060. metric.new_accepted_issues.name=New Accepted Issues
  3061. metric.new_accepted_issues.description=New accepted issues
  3062. metric.high_impact_accepted_issues.name=High Impact Accepted Issues
  3063. metric.high_impact_accepted_issues.description=Accepted issues with high impact
  3064. #------------------------------------------------------------------------------
  3065. #
  3066. # PERMISSIONS
  3067. #
  3068. #------------------------------------------------------------------------------
  3069. permission.assign_x_to_y=Assign permission {0} to {1}
  3070. #------------------------------------------------------------------------------
  3071. #
  3072. # GLOBAL PERMISSIONS
  3073. #
  3074. #------------------------------------------------------------------------------
  3075. global_permissions.permission=Permission
  3076. global_permissions.users=Users
  3077. global_permissions.groups=Groups
  3078. global_permissions.administer=Administer
  3079. global_permissions.creator=Create
  3080. global_permissions.admin=Administer System
  3081. global_permissions.admin.desc=Ability to perform all administration functions for the instance.
  3082. global_permissions.profileadmin=Quality Profiles
  3083. global_permissions.profileadmin.desc=Ability to perform any action on Quality Profiles.
  3084. global_permissions.gateadmin=Quality Gates
  3085. global_permissions.gateadmin.desc=Ability to perform any action on quality gates.
  3086. global_permissions.scan=Execute Analysis
  3087. global_permissions.scan.desc=Ability to get all settings required to perform an analysis (including the secured settings like passwords) and to push analysis results to the {instance} server.
  3088. global_permissions.provisioning=Projects
  3089. global_permissions.provisioning.desc=Ability to initialize a project so its settings can be configured before the first analysis.
  3090. global_permissions.filter_by_x_permission=Filter by "{0}" permission
  3091. global_permissions.restore_access=Restore Access
  3092. global_permissions.restore_access.message=You will receive {browse} and {administer} permissions on the project. Do you want to continue?
  3093. global_permissions.applicationcreator=Applications
  3094. global_permissions.applicationcreator.desc=Ability to create an application.
  3095. global_permissions.portfoliocreator=Portfolios
  3096. global_permissions.portfoliocreator.desc=Ability to create a portfolio.
  3097. #------------------------------------------------------------------------------
  3098. #
  3099. # PROJECTS PERMISSIONS
  3100. #
  3101. #------------------------------------------------------------------------------
  3102. projects_role.criteria.name=Name contains
  3103. projects_role.criteria.key=Key contains
  3104. projects_role.role=Role Membership For New
  3105. projects_role.groups=Groups
  3106. projects_role.admin=Administer
  3107. projects_role.admin.desc=Access project settings and perform administration tasks (for private projects, users also need the "Browse" permission)
  3108. projects_role.issueadmin=Administer Issues
  3109. projects_role.issueadmin.desc=Resolve issues as being "fixed", "accepted" or "false-positive" (for private projects, users also need the "Browse" permission).
  3110. projects_role.securityhotspotadmin=Administer Security Hotspots
  3111. projects_role.securityhotspotadmin.desc=Resolve a Security Hotspot as reviewed (fixed or safe), reset it as to review (for private projects, users also need the "Browse" permission).
  3112. projects_role.user=Browse
  3113. projects_role.user.desc=Access a project, browse its measures and issues, confirm issues, change the assignee, comment on issues and change tags.
  3114. projects_role.codeviewer=See Source Code
  3115. projects_role.codeviewer.desc=View the project's source code (for private projects, users also need the "Browse" permission)
  3116. projects_role.scan=Execute Analysis
  3117. projects_role.scan.desc=Ability to get all settings required to perform an analysis (including the secured settings like passwords) and to push analysis results to the {instance} server.
  3118. projects_role.bulk_change=Bulk Change
  3119. projects_role.apply_template=Apply Permission Template
  3120. projects_role.apply_template_to_x=Apply Permission Template To "{0}"
  3121. projects_role.apply_template.success=Permission template was successfully applied.
  3122. projects_role.no_projects=There are currently no results to apply the permission template to.
  3123. projects_role.turn_x_to_public=Turn "{0}" to Public
  3124. projects_role.turn_project_to_public.TRK=Turn Project to Public
  3125. projects_role.turn_project_to_public.VW=Turn Portfolio to Public
  3126. projects_role.turn_project_to_public.APP=Turn Application to Public
  3127. projects_role.are_you_sure_to_turn_project_to_public.TRK=Are you sure you want to turn your project to public?
  3128. projects_role.are_you_sure_to_turn_project_to_public.warning.TRK=Everybody will be able to browse and see the source code of your project.
  3129. projects_role.are_you_sure_to_turn_project_to_public.VW=Are you sure you want to turn your portfolio to public?
  3130. projects_role.are_you_sure_to_turn_project_to_public.warning.VW=Everybody will be able to browse it.
  3131. projects_role.are_you_sure_to_turn_project_to_public.APP=Are you sure you want to turn your application to public?
  3132. projects_role.are_you_sure_to_turn_project_to_public.warning.APP=Everybody will be able to browse it.
  3133. projects_role.public_projects_warning=This permission is always granted by default to everybody (anonymous and authenticated users) for public projects. Therefore, the selection made on this page will be applied to private projects only.
  3134. projects_role.applicationcreator=Create Applications
  3135. projects_role.applicationcreator.desc=Allow to create applications for non system administrator.
  3136. projects_role.portfoliocreator=Create Portfolios
  3137. projects_role.portfoliocreator.desc=Allow to create portfolios for non system administrator.
  3138. #------------------------------------------------------------------------------
  3139. #
  3140. # PERMISSION TEMPLATES
  3141. #
  3142. #------------------------------------------------------------------------------
  3143. permission_templates=Permission Templates
  3144. permission_templates.page=Permission Templates
  3145. permission_templates.page.description=Manage templates of project permission sets. The default template will be applied to all new projects.
  3146. permission_templates.set_default=Set Default
  3147. permission_templates.set_default_for=Set Default For
  3148. permission_templates.github_warning=Please note that permission templates will only affect non-GitHub projects due to the enabled automatic provisioning via GitHub.
  3149. permission_template.new_template=Create Permission Template
  3150. permission_template.delete_confirm_title=Delete Permission Template
  3151. permission_template.do_you_want_to_delete_template_xxx=Are you sure that you want to delete permission template "{0}"?
  3152. permission_template.edit_template=Edit Permission Template
  3153. permission_template.edit_permissions=Edit Permissions: {0}
  3154. permission_template.key_pattern=Project key pattern
  3155. permission_template.key_pattern.description=Should be a valid regular expression
  3156. permission_template.default_for=Default for {0}
  3157. permission_templates.project_creators=Creators
  3158. permission_templates.project_creators.explanation=When a new project, portfolio or application is created, the user who creates it will receive these permissions.
  3159. permission_templates.bulk_apply_permission_template=Bulk Apply Permission Template
  3160. permission_templates.bulk_apply_permission_template.apply_to_selected=You're about to apply the selected permission template to {0} selected item(s).
  3161. permission_templates.bulk_apply_permission_template.apply_to_all=You're about to apply the selected permission template to {0} item(s).
  3162. permission_templates.bulk_apply_permission_template.apply_to_github_projects=You can't apply the selected permission template to the {0} GitHub project(s).
  3163. permission_templates.bulk_apply_permission_template.apply_to_only_github_projects=You can't apply permission templates to GitHub projects.
  3164. permission_templates.select_to_delete=You must select at least one item
  3165. permission_templates.delete_selected=Delete all selected items
  3166. permission_templates.show_actions_for_x=Show actions for template {0}
  3167. #------------------------------------------------------------------------------
  3168. #
  3169. # Promotion
  3170. #
  3171. #------------------------------------------------------------------------------
  3172. promotion.sonarlint.title=Get the most out of SonarQube!
  3173. promotion.sonarlint.content=Take advantage of the whole ecosystem by using SonarLint, a free IDE plugin that helps you find and fix issues earlier in your workflow. Connect SonarLint to SonarQube to sync rule sets and issue states.
  3174. #------------------------------------------------------------------------------
  3175. #
  3176. # Sonarlint
  3177. #
  3178. #------------------------------------------------------------------------------
  3179. sonarlint-connection.request.title=Allow SonarLint connection?
  3180. sonarlint-connection.request.description=SonarLint for {0} is requesting access to SonarQube.
  3181. sonarlint-connection.request.description2=Do you allow SonarLint to connect? This will create a token and share it with SonarLint.
  3182. sonarlint-connection.request.action=Allow connection
  3183. sonarlint-connection.token-error.title=Token generation failed
  3184. sonarlint-connection.token-error.description=SonarQube was not able to generate a token.
  3185. sonarlint-connection.token-error.description2=Go back to your IDE and start again, or go to the {link} of your SonarQube account to create a new user token manually.
  3186. sonarlint-connection.token-error.description2.link=Security section
  3187. sonarlint-connection.connection-error.title=Token created
  3188. sonarlint-connection.connection-error.description=The following token was created:
  3189. sonarlint-connection.connection-error.token-name=Token name
  3190. sonarlint-connection.connection-error.token-value=Token value
  3191. sonarlint-connection.connection-error.next-steps=Next steps
  3192. sonarlint-connection.connection-error.step1=Copy the above token.
  3193. sonarlint-connection.connection-error.step2=Go back to your IDE and paste the token in SonarLint.
  3194. sonarlint-connection.success.title=SonarLint connection is almost ready!
  3195. sonarlint-connection.success.description=A new '{0}' token was created and sent to SonarLint in your IDE.
  3196. sonarlint-connection.success.last-step=Last step
  3197. sonarlint-connection.success.step=Go back to your IDE to complete the setup.
  3198. sonarlint-connection.unspecified-ide=an unspecified IDE
  3199. sonarlint-connected-mode-doc=documentation about SonarLint Connected Mode
  3200. #------------------------------------------------------------------------------
  3201. #
  3202. # HELP
  3203. #
  3204. #------------------------------------------------------------------------------
  3205. formatting.page=Formatting
  3206. formatting.helplink=Formatting Help
  3207. formatting.example.link=For a hyperlink, write: {example}
  3208. formatting.example.link.example=[link label](https://www.domain.com)
  3209. #------------------------------------------------------------------------------
  3210. #
  3211. # KEYBOARD SHORTCUTS
  3212. #
  3213. #------------------------------------------------------------------------------
  3214. keyboard_shortcuts.title=Keyboard Shortcuts
  3215. keyboard_shortcuts.disable_link=Disable shortcuts
  3216. keyboard_shortcuts.shortcut=Shortcut
  3217. keyboard_shortcuts.action=Action
  3218. keyboard_shortcuts.global.title=Global
  3219. keyboard_shortcuts.global.search=Open the search bar
  3220. keyboard_shortcuts.global.open_shortcuts=Open this panel
  3221. keyboard_shortcuts.code_page.title=Code Page
  3222. keyboard_shortcuts.code_page.select_files=Select files
  3223. keyboard_shortcuts.code_page.open_file=Open the selected file
  3224. keyboard_shortcuts.code_page.back=Return back to the list
  3225. keyboard_shortcuts.issues_page.title=Issues Page
  3226. keyboard_shortcuts.issues_page.navigate=navigate between issues
  3227. keyboard_shortcuts.issues_page.source_code=go from the list of issues to the source code
  3228. keyboard_shortcuts.issues_page.back=return back to the list
  3229. keyboard_shortcuts.issues_page.navigate_locations=to navigate issue locations
  3230. keyboard_shortcuts.issues_page.switch_flows=to switch flows
  3231. keyboard_shortcuts.issues_page.transition=do an issue transition
  3232. keyboard_shortcuts.issues_page.assign=assign issue
  3233. keyboard_shortcuts.issues_page.assign_to_me=assign issue to the current user
  3234. keyboard_shortcuts.issues_page.severity=change severity of issue
  3235. keyboard_shortcuts.issues_page.comment=comment issue
  3236. keyboard_shortcuts.issues_page.submit_comment=submit comment
  3237. keyboard_shortcuts.issues_page.tags=change tags of issue
  3238. keyboard_shortcuts.measures_page.title=Measures Page
  3239. keyboard_shortcuts.measures_page.select_files=Select files
  3240. keyboard_shortcuts.measures_page.open_file=Open the selected file
  3241. keyboard_shortcuts.measures_page.back=Return back to the list
  3242. keyboard_shortcuts.rules_page.title=Rules Page
  3243. keyboard_shortcuts.rules_page.navigate=navigate between rules
  3244. keyboard_shortcuts.rules_page.rule_details=go from the list of rules to the rule details
  3245. keyboard_shortcuts.rules_page.back=Return back to the list
  3246. #------------------------------------------------------------------------------
  3247. #
  3248. # DURATION
  3249. #
  3250. #------------------------------------------------------------------------------
  3251. duration.seconds=less than a minute
  3252. duration.minute=about a minute
  3253. duration.minutes={0} minutes
  3254. duration.hour=about an hour
  3255. duration.hours={0} hours
  3256. duration.day=a day
  3257. duration.days={0} days
  3258. duration.month=about a month
  3259. duration.months={0} months
  3260. duration.year=about a year
  3261. duration.years={0} years
  3262. #------------------------------------------------------------------------------
  3263. #
  3264. # COMPONENT VIEWER
  3265. #
  3266. #------------------------------------------------------------------------------
  3267. component_viewer.measure_section.unit_tests=Tests
  3268. component_viewer.transition.covers=Covers
  3269. component_viewer.transition.duplication=Duplicated By
  3270. component_viewer.tests.ordered_by=ordered by
  3271. component_viewer.tests.duration=duration
  3272. component_viewer.tests.test_name=name
  3273. component_viewer.tests.status=status
  3274. component_viewer.x_lines_are_covered={0} lines are covered
  3275. component_viewer.details=Details
  3276. component_viewer.show_raw_source=Show Raw Source
  3277. component_viewer.more_actions=More Actions
  3278. component_viewer.new_window=Open in New Window
  3279. component_viewer.open_in_workspace=Pin This File
  3280. component_viewer.open_in_workspace_X=Pin {0} File
  3281. component_viewer.copy_permalink=Click to copy permalink to clipboard
  3282. component_viewer.covered_lines=Covered Lines
  3283. component_viewer.show_details=Show Measures
  3284. component_viewer.file_measures=File measures
  3285. component_viewer.show_all_measures=Show all measures
  3286. component_viewer.no_component=The component has been removed or never existed.
  3287. component_viewer.copy_path_to_clipboard=Copy the file path to the clipboard
  3288. component_viewer.action_menu=File actions menu
  3289. source_viewer.view_all_issues=See all issues in this file
  3290. source_viewer.expand_all_lines=Show all lines of code
  3291. source_viewer.covered=Covered by the following tests
  3292. source_viewer.not_covered=Not covered by tests
  3293. source_viewer.conditions=conditions
  3294. source_viewer.line_X=Line: {0}
  3295. source_viewer.click_for_scm_info=Click to see SCM information for line {0}
  3296. source_viewer.author_X=Author: {0}
  3297. source_viewer.click_to_copy_filepath=Click to copy the filepath to clipboard
  3298. source_viewer.tooltip.duplicated_line=This line is duplicated. Click to see duplicated blocks.
  3299. source_viewer.tooltip.duplicated_block=Duplicated block. Click for details.
  3300. source_viewer.tooltip.covered=Fully covered by tests.
  3301. source_viewer.tooltip.covered.conditions=Fully covered by tests ({0} conditions).
  3302. source_viewer.tooltip.partially-covered=Partially covered by tests.
  3303. source_viewer.tooltip.partially-covered.conditions=Partially covered by tests ({0} of {1} conditions).
  3304. source_viewer.tooltip.uncovered=Not covered by tests.
  3305. source_viewer.tooltip.uncovered.conditions=Not covered by tests ({0} conditions).
  3306. source_viewer.tooltip.no_information_about_tests=There is no extra information about test files.
  3307. source_viewer.tooltip.scm.commited_on=Committed on
  3308. source_viewer.tooltip.scm.revision=Revision
  3309. source_viewer.issues_on_line.multiple_issues={0} multiple issues on this line.
  3310. source_viewer.issues_on_line.issue_of_type_X={0} {1} on this line
  3311. source_viewer.issues_on_line.X_issues_of_type_Y={0} {1} {2} on this line
  3312. source_viewer.issues_on_line.show=Show
  3313. source_viewer.issues_on_line.hide=Hide
  3314. source_viewer.load_more_code=Load More Code
  3315. source_viewer.loading_more_code=Loading More Code...
  3316. source_viewer.expand_above=Show previous few lines of code
  3317. source_viewer.expand_below=Show next few lines of code
  3318. source_viewer.copy_permalink=Copy Permalink
  3319. source_viewer.copy_line=Copy Line
  3320. source_viewer.copied_to_clipboard=Copied to Clipboard
  3321. source_viewer.new_code=New Code
  3322. source_viewer.coverage.covered=Covered code
  3323. source_viewer.coverage.uncovered=Uncovered code
  3324. source_viewer.coverage.partially-covered=Partially covered code
  3325. #------------------------------------------------------------------------------
  3326. #
  3327. # WORKSPACE
  3328. #
  3329. #------------------------------------------------------------------------------
  3330. workspace.minimize=Minimize
  3331. workspace.full_window=Expand to full window
  3332. workspace.normal_size=Collapse to normal size
  3333. workspace.close=Remove from the list of pinned files
  3334. workspace.no_rule=The rule has been removed or never existed.
  3335. #------------------------------------------------------------------------------
  3336. #
  3337. # MARKETPLACE
  3338. #
  3339. #------------------------------------------------------------------------------
  3340. marketplace.page=Marketplace
  3341. marketplace.page.description=Discover the additional benefits offered in SonarQube Commercial Editions
  3342. marketplace.page.description_best_edition=This edition includes access to all the SonarQube-SonarLint Ecosystem features!
  3343. marketplace.page.you_are_running.community=You are currently running a Community Edition.
  3344. marketplace.page.you_are_running.developer=You are currently running a Developer Edition.
  3345. marketplace.page.you_are_running.enterprise=You are currently running an Enterprise Edition.
  3346. marketplace.page.you_are_running.datacenter=You are currently running a Data Center Edition.
  3347. marketplace.page.plugins=Plugins
  3348. marketplace.page.plugins.description=Plugins available in the Marketplace are not provided or supported by SonarSource. Please reach out directly to their maintainers for support.
  3349. marketplace.page.plugins.description2=Installing a plugin is a manual operation. Please refer to the {link}.
  3350. marketplace.page.plugins.description2.link=documentation
  3351. marketplace.plugin_list.no_plugins.all=No installed plugins or updates available
  3352. marketplace.plugin_list.no_plugins.installed=No installed plugins
  3353. marketplace.plugin_list.no_plugins.updates=No plugin updates available
  3354. marketplace.instance_needs_to_be_restarted_to={instance} needs to be restarted in order to
  3355. marketplace.install_x_plugins=install {nb} plugins
  3356. marketplace.update_x_plugins=update {nb} plugins
  3357. marketplace.uninstall_x_plugins=uninstall {nb} plugins
  3358. marketplace.not_activated=Update Center is not activated.
  3359. marketplace.all=All
  3360. marketplace.installed=Installed
  3361. marketplace.updates_only=Updates Only
  3362. marketplace.restart=Restart
  3363. marketplace.revert=Revert
  3364. marketplace.install=Install
  3365. marketplace.upgrade_to_x=Upgrade to {0}
  3366. marketplace.downgrade_to_x=Downgrade to {0}
  3367. marketplace.installing=Installing...
  3368. marketplace.upgrade=Upgrade
  3369. marketplace.downgrade=Downgrade
  3370. marketplace.checking_license=Checking your license...
  3371. marketplace._installed=installed
  3372. marketplace.available_under_commercial_license=Available under our commercial editions
  3373. marketplace.learn_more=Learn more
  3374. marketplace.request_free_trial=Request a free trial
  3375. marketplace.homepage=Homepage
  3376. marketplace.issue_tracker=Issue Tracker
  3377. marketplace.licensed_under_x=Licensed under {license}
  3378. marketplace.developed_by_x=Developed by {organization}
  3379. marketplace.install_pending=Install Pending
  3380. marketplace.update_pending=Update Pending
  3381. marketplace.uninstall_pending=Uninstall Pending
  3382. marketplace.requires_restart=This requires a restart
  3383. marketplace.updates=Updates
  3384. marketplace.update_status.COMPATIBLE=Compatible
  3385. marketplace.update_status.INCOMPATIBLE=Incompatible
  3386. marketplace.update_status.REQUIRES_SYSTEM_UPGRADE=Requires system update
  3387. marketplace.update_status.DEPS_REQUIRE_SYSTEM_UPGRADE=Some of dependencies requires system update
  3388. marketplace.installing_this_plugin_will_also_install_x=Installing this plugin will also install: {0}
  3389. marketplace.show_plugin_changelog=See {0} {1} changelog
  3390. marketplace.update_to_x=Update to {0}
  3391. marketplace.uninstall=Uninstall
  3392. marketplace.i_accept_the=I accept the
  3393. marketplace.terms_and_conditions=Terms and Conditions
  3394. marketplace.release_notes=Release Notes
  3395. marketplace.how_to_setup_cluster_url=Further configuration is required to set up a cluster. See {url} documentation.
  3396. marketplace.search=Search by features, tags, or categories...
  3397. marketplace.risk_consent.title=Installation of plugins
  3398. marketplace.risk_consent.description=Plugins are not provided by SonarSource and are therefore installed at your own risk. SonarSource disclaims all liability for installing and using such plugins.
  3399. marketplace.risk_consent.installation=You can install plugins directly from the list below after you acknowledge the risk.
  3400. marketplace.risk_consent.action=I understand the risk
  3401. plugin_risk_consent.page=Plugin risk consent
  3402. plugin_risk_consent.title=Installation of plugins
  3403. plugin_risk_consent.description=A plugin has been detected.
  3404. plugin_risk_consent.description2=Plugins are not provided by SonarSource and are therefore installed at your own risk. SonarSource disclaims all liability for installing and using such plugins.
  3405. plugin_risk_consent.action=I understand the risk
  3406. #------------------------------------------------------------------------------
  3407. #
  3408. # BACKGROUND TASKS
  3409. #
  3410. #------------------------------------------------------------------------------
  3411. component_navigation.status.failed=The last background task has failed.
  3412. component_navigation.status.failed_X=The {type} has failed.
  3413. component_navigation.status.failed.admin.link=The last background task has failed. More details available on the {url} page.
  3414. component_navigation.status.failed_X.admin.link=The {type} has failed. More details available on the {url} page.
  3415. component_navigation.status.failed.admin.help=The last background task has failed. You can find more details below by clicking on the cog menu, and then "{stacktrace}".
  3416. component_navigation.status.failed_X.admin.help=The {type} has failed. You can find more details below by clicking on the cog menu, and then "{stacktrace}".
  3417. component_navigation.status.failed_branch=The last analysis on this project ({branch}) failed.
  3418. component_navigation.status.failed_branch_X=The last {type} on this project ({branch}) failed.
  3419. component_navigation.status.failed_branch.admin.link=The last analysis on this project ({branch}) failed. More details available on the {url} page.
  3420. component_navigation.status.failed_branch_X.admin.link=The last {type} on this project ({branch}) failed. More details available on the {url} page.
  3421. component_navigation.status.failed_branch.admin.help==The last analysis on this project ({branch}) failed. You can find more details below by clicking on the cog menu, and then "{stacktrace}".
  3422. component_navigation.status.failed_branch_X.admin.help=The last {type} on this project ({branch}) failed. You can find more details below by clicking on the cog menu, and then "{stacktrace}".
  3423. component_navigation.status.pending=There is a pending background task.
  3424. component_navigation.status.pending_X=There is a pending {type}.
  3425. component_navigation.status.pending.admin.link=There is a pending background task. More details available on the {url} page.
  3426. component_navigation.status.pending_X.admin.link=There is a pending {type}. More details available on the {url} page.
  3427. component_navigation.status.pending.admin.help=There is a pending background task.
  3428. component_navigation.status.pending_X.admin.help=There is a pending {type}.
  3429. component_navigation.status.in_progress=A background task is in progress.
  3430. component_navigation.status.in_progress_X=The {type} is in progress.
  3431. component_navigation.status.in_progress.admin.link=A background task is in progress. More details available on the {url} page.
  3432. component_navigation.status.in_progress_X.admin.link=The {type} is in progress. More details available on the {url} page.
  3433. component_navigation.status.in_progress.admin.help=A background task is in progress.
  3434. component_navigation.status.in_progress_X.admin.help=The {type} is in progress.
  3435. component_navigation.status.last_blocked_due_to_bad_license_X=Last analysis blocked due to an invalid license, which has since been corrected. Please reanalyze this {0}.
  3436. component_navigation.pr_deco.error_detected_X=We've detected an issue with your configuration. Your SonarQube instance won't be able to perform any pull request decoration. {action}
  3437. component_navigation.pr_deco.action.check_project_settings=Please check your project settings.
  3438. component_navigation.pr_deco.action.contact_project_admin=Please contact your project administrator.
  3439. background_task.status.ALL=All
  3440. background_task.status.PENDING=Pending
  3441. background_task.status.IN_PROGRESS=In Progress
  3442. background_task.status.SUCCESS=Success
  3443. background_task.status.FAILED=Failed
  3444. background_task.status.CANCELED=Canceled
  3445. background_task.status.ALL_EXCEPT_PENDING=All Except Pending
  3446. background_task.type.ALL=All
  3447. background_task.type.REPORT=Project Analysis
  3448. background_task.type.DEV_REFRESH=Developer Analysis
  3449. background_task.type.DEV_PURGE=Developer Cleaning
  3450. background_task.type.ISSUE_SYNC=Project Data Reload
  3451. background_task.type.APP_REFRESH=Application Recomputation
  3452. background_task.type.PROJECT_EXPORT=Project Export
  3453. background_task.type.PROJECT_IMPORT=Project Import
  3454. background_task.type.AUDIT_PURGE=Audit Log Purge
  3455. background_task.type.REPORT_SUBMIT=Report Email Submit
  3456. background_task.type.GITHUB_AUTH_PROVISIONING=GitHub Provisioning
  3457. background_task.type.GITHUB_PROJECT_PERMISSIONS_PROVISIONING=GitHub Project Permission Sync
  3458. background_task.type.GITLAB_AUTH_PROVISIONING=GitLab Provisioning
  3459. background_tasks.page=Background Tasks
  3460. background_tasks.page.description=This page allows monitoring of the queue of tasks running asynchronously on the server. It also gives access to the history of finished tasks and their status. Analysis report processing is the most common kind of background task.
  3461. background_tasks.currents_filter.ALL=All
  3462. background_tasks.currents_filter.ONLY_CURRENTS=Only Latest Analysis
  3463. background_tasks.date_filter=Date
  3464. background_tasks.date_filter.ALL=Any Date
  3465. background_tasks.date_filter.TODAY=Today
  3466. background_tasks.date_filter.CUSTOM=Custom
  3467. background_tasks.table.status=Status
  3468. background_tasks.table.task=Task
  3469. background_tasks.table.id=ID
  3470. background_tasks.table.submitted=Submitted
  3471. background_tasks.table.submitter=Submitter
  3472. background_tasks.table.started=Started
  3473. background_tasks.table.finished=Finished
  3474. background_tasks.table.duration=Duration
  3475. background_tasks.table.nodeName=Node
  3476. background_tasks.filter_by_component_x=Filter by Component "{0}"
  3477. background_tasks.cancel_task=Cancel Task
  3478. background_tasks.cancel_task.text=Are you sure you want to cancel this pending task?
  3479. background_tasks.cancel_all_tasks=Cancel All Pending Tasks
  3480. background_tasks.cancel_all_tasks.text=Are you sure you want to cancel all pending tasks?
  3481. background_tasks.cancel_all_tasks.submit=Cancel All
  3482. background_tasks.scanner_context=Scanner Context
  3483. background_tasks.show_scanner_context=Show Scanner Context
  3484. background_tasks.show_actions=Show actions
  3485. background_tasks.show_stacktrace=Show Error Details
  3486. background_tasks.show_warnings=Show Warnings
  3487. background_tasks.error_message=Error Message
  3488. background_tasks.error_stacktrace.title=Error Details: {project} [{type}]
  3489. background_tasks.error_stacktrace=Error Details
  3490. background_tasks.pending=pending
  3491. background_tasks.pending_time=pending time
  3492. background_tasks.pending_time.description=Pending time of the oldest background task waiting to be processed.
  3493. background_tasks.failures=still failing
  3494. background_tasks.date_and_time={date} - {time}
  3495. background_tasks.submitted_by_x=By {submitter}
  3496. background_tasks.number_of_workers=Number of Workers:
  3497. background_tasks.number_of_workers.warning=Configuring additional workers without first vertically scaling your server could have negative performance impacts.
  3498. background_tasks.change_number_of_workers=Edit CE Workers
  3499. background_tasks.change_number_of_workers.hint=If your queue backs up behind the analysis reports from large projects, increasing the number of Compute Engine workers will allow you to take full advantage of having configured increased Compute Engine memory on a multi-core server (vertical scaling).
  3500. background_tasks.add_more_workers=Speed up analysis with parallel processing
  3501. background_tasks.add_more_workers.text=Configure multiple workers for parallel processing of analysis reports in Enterprise Edition.
  3502. background_tasks.search_by_task_or_component=Search by Task or Component
  3503. background_tasks.failing_count=Count of projects where processing of most recent analysis report failed
  3504. #------------------------------------------------------------------------------
  3505. #
  3506. # Project Dump
  3507. #
  3508. #------------------------------------------------------------------------------
  3509. project_dump.page=Import / Export
  3510. project_dump.page.description1=Moving a project from one SonarQube instance to another is a 3 step operation:
  3511. project_dump.page.description2=Export the project, copy the generated dump on the target server, and finally import that dump from this page on the target SonarQube instance.
  3512. project_dump.page.description_without_import1=Export project issues, measures and measure history for import into an Enterprise Edition or higher instance of the same version and similar configuration. The export file will be generated to the file system. It must then be copied to the target file system for import.
  3513. project_dump.page.description_without_import2=The export file will be generated to the file system. It must then be copied to the target file system for import.
  3514. project_dump.refresh=Refresh
  3515. project_dump.see_details=See Details
  3516. project_dump.export=Export
  3517. project_dump.do_export=Export Project
  3518. project_dump.can_not_export=This project cannot be exported as no analysis has been run so far.
  3519. project_dump.pending_export=Export was scheduled on {0}, waiting to be processed.
  3520. project_dump.in_progress_export=Export is in progress, started {0}.
  3521. project_dump.failed_export=The last export failed. Please try once again.
  3522. project_dump.latest_export_available=Latest project dump was generated on {0}. It can be found on the server, in the following directory:
  3523. project_dump.export_available=Project dump was generated. It can be found on the server, in the following directory:
  3524. project_dump.export_form_description=Export the project to the file system. The export file will need to be manually copied to the target filesystem.
  3525. project_dump.import=Import
  3526. project_dump.do_import=Import Project
  3527. project_dump.import_success=The project has been successfully imported on {0}.
  3528. project_dump.can_not_import=This project can not be imported because it already contains some data.
  3529. project_dump.no_file_to_import=This project can not be imported because the dump file is not found.
  3530. project_dump.pending_import=Import was scheduled on {0}, waiting to be processed.
  3531. project_dump.in_progress_import=Import is in progress, started {0}.
  3532. project_dump.failed_import=The last import has failed. Please try once again.
  3533. project_dump.import_form_description=A dump has been found on the file system for this project. You can import it by clicking on the button below.
  3534. project_dump.import_form_description_disabled=Projects cannot be imported. This feature is only available starting from Enterprise Edition.
  3535. #------------------------------------------------------------------------------
  3536. #
  3537. # SYSTEM
  3538. #
  3539. #------------------------------------------------------------------------------
  3540. system.application_nodes_title=Application Nodes
  3541. system.are_you_sure_to_restart=Are you sure you want to restart the server? The restart will first wait for ongoing background tasks to complete.
  3542. system.cluster_log_level.info=Your selection affect all Application nodes but not the Search nodes.
  3543. system.copy_id_info=Copy ID information
  3544. system.current_health_of_x=Current health status of {0}
  3545. system.current_health.green=Status is up
  3546. system.current_health.yellow=Status is starting
  3547. system.current_health.red=Status is down
  3548. system.download_logs=Download Logs
  3549. system.download_system_info=Download System Info
  3550. system.download_x=Download {0}
  3551. system.forcing_shutdown_not_recommended=Forcing the shutdown is not recommended and can interrupt the processing of analysis reports.
  3552. system.hide_intermediate_versions=Hide intermediate versions
  3553. system.how_to_upgrade=How to upgrade?
  3554. system.latest_version=Latest Version
  3555. system.latest_patch=Patch Release
  3556. system.lts_version=Latest LTS Version
  3557. system.log_level.warning=This level has performance impacts, please make sure to get back to INFO level once your investigation is done. Please note that when the server is restarted, logging will revert to the level configured in sonar.properties.
  3558. system.log_level.warning.short=Current logs level has performance impacts, get back to INFO level.
  3559. system.log_level.info=Your selection does not affect the Search Engine.
  3560. system.logs_level=Logs level
  3561. system.logs_level.change=Change logs level
  3562. system.new_version_available=A new version of SonarQube is available.
  3563. system.restart_does_not_reload_sonar_properties=Also note that a restart will not reload the sonar.properties file.
  3564. system.see_whats_new=See what's new!
  3565. system.release_notes=Release Notes
  3566. system.released_x=Released {0}
  3567. system.restart_in_progress=Restart in progress
  3568. system.restart_server=Restart Server
  3569. system.instance_restarting={instance} restart is in progress. Ongoing {link} are completing.
  3570. system.search_nodes_title=Search Nodes
  3571. system.see_sonarqube_downloads=See All SonarQube Downloads
  3572. system.not_production_database_warning=This server ID is valid only for the embedded database, which should be considered disposable. Consider configuring an external database for long-term use prior to requesting your license.
  3573. system.server_id=Server ID
  3574. system.set_log_level=Set logs level
  3575. system.show_intermediate_versions=Show intermediate versions
  3576. system.system_upgrade=New update available
  3577. system.version=Version
  3578. system.version_is_availble={version} is available
  3579. #------------------------------------------------------------------------------
  3580. #
  3581. # OVERVIEW
  3582. #
  3583. #------------------------------------------------------------------------------
  3584. overview.X_conditions_failed={conditions} {conditions, plural, one {failed condition} other {failed conditions}}
  3585. overview.failed_condition.x_rating_required={rating} is {value}. Required {threshold}
  3586. overview.failed_condition.x_required={metric}. Required {threshold}
  3587. overview.fix_failed_conditions_with_sonarlint=Fix issues before they fail your Quality Gate with {link} in your IDE. Power up with connected mode!
  3588. overview.new_issues=New issues
  3589. overview.pull_request.fixed_issues=Fixed issues
  3590. overview.pull_request.fixed_issues.help=Estimation of issues fixed by this PR
  3591. overview.pull_request.fixed_issues.disclaimer=Only issues fixed on the files modified by the pull request are taken into account. Issues incidentally fixed on unmodified files are not counted.
  3592. overview.pull_request.fixed_issues.disclaimer.2=When the pull request and the target branch are not synchronized, issues introduced on the target branch may be incorrectly considered fixed by the pull request. Rebasing the pull request would give an updated value.
  3593. overview.accepted_issues=Accepted issues
  3594. overview.accepted_issues.help=Valid issues that were not fixed
  3595. overview.quality_gate.status=Quality Gate Status
  3596. overview.quality_gate=Quality Gate
  3597. overview.quality_gate_x=Quality Gate: {0}
  3598. overview.quality_gate.help=A Quality Gate is a set of measure-based Boolean conditions. It helps you know immediately whether your project is production-ready. If your current status is not Passed, you'll see which measures caused the problem and the values required to pass.
  3599. overview.quality_gate_failed_with_x=with {0} errors
  3600. overview.quality_gate_code_clean=Your code is clean!
  3601. overview.passed.clean_code=Enjoy your sparkling clean code!
  3602. overview.you_should_define_quality_gate=You should define a quality gate on this project.
  3603. overview.quality_gate.ignored_conditions=Some Quality Gate conditions on New Code were ignored because of the small number of New Lines
  3604. overview.quality_gate.ignored_conditions.tooltip=At the start of a new code period, if very few lines have been added or modified, it might be difficult to reach the desired level of code coverage or duplications. To prevent Quality Gate failure when there's little that can be done about it, Quality Gate conditions about duplications in new code and coverage on new code are ignored until the number of new lines is at least 20. An administrator can disable this in the general settings.
  3605. overview.quality_gate.conditions_on_new_code=Only conditions on new code that are defined in the Quality Gate are checked. See the {link} associated to the project for details.
  3606. overview.quality_gate.conditions.cayc.warning=The quality gate used by this project does not comply with Clean as You Code.
  3607. overview.quality_gate.conditions.cayc.details=Fixing this quality gate will help you achieve a Clean Code state.
  3608. overview.quality_gate.conditions.cayc.details_with_link=Fixing {link} will help you achieve a Clean Code state.
  3609. overview.quality_gate.conditions.non_cayc.warning.link=this quality gate
  3610. overview.quality_gate.conditions.cayc.link=Learn why
  3611. overview.quality_gates.conditions.condition_simplification_tour.title=One condition, zero issues
  3612. overview.quality_gates.conditions.condition_simplification_tour.content1=A new condition was introduced in {link} to ensure that new code has no issues.
  3613. overview.quality_gates.conditions.condition_simplification_tour.content1.link={0} quality gate
  3614. overview.quality_gates.conditions.condition_simplification_tour.content2=Starting now, every issue in new code must be resolved for a project to pass this quality gate.
  3615. overview.quality_gate.application.non_cayc.projects_x={0} project(s) in this application use a Quality Gate that does not comply with Clean as You Code
  3616. overview.quality_gate.show_project_conditions_x=Show failed conditions for project {0}
  3617. overview.quality_gate.hide_project_conditions_x=Hide failed conditions for project {0}
  3618. overview.quality_gate.coverage=Coverage
  3619. overview.quality_gate.duplications=Duplications
  3620. overview.quality_gate.on_x_new_lines_to_cover=On {link} New Lines to cover.
  3621. overview.quality_gate.on_x_new_lines=On {link} New Lines.
  3622. overview.quality_gate.x_estimated_after_merge={value} Estimated after merge
  3623. overview.quality_gate.require_fixing={count, plural, one {requires} other {require}} fixing
  3624. overview.quality_gate.require_reviewing={count, plural, one {requires} other {require}} reviewing
  3625. overview.quality_gate.required_x=Required {requirement}
  3626. overview.quality_profiles=Quality Profiles used
  3627. overview.new_code_period_x=New Code: {0}
  3628. overview.max_new_code_period_from_x=Max New Code from: {0}
  3629. overview.started_x=Started {0}
  3630. overview.set_as_homepage=Set as homepage
  3631. overview.new_code=New Code
  3632. overview.overall_code=Overall Code
  3633. overview.last_analysis_x=Last analysis {date}
  3634. overview.previous_analysis_x=Previous analysis was {0}
  3635. overview.started_on_x=Started on {0}
  3636. overview.previous_analysis_on_x=Previous analysis on {0}
  3637. overview.on_new_code=On New Code
  3638. overview.on_new_code_long=Conditions on New Code
  3639. overview.see_list_of_x_y_issues=See the list of {0} {1}
  3640. overview.see_more_details_on_x_of_y=See more details on {0} of {1}
  3641. overview.see_more_details_on_x_y=See more details on {0} {1}
  3642. overview.about_this_portfolio=About This Portfolio
  3643. overview.about_this_project.APP=About This Application
  3644. overview.about_this_project.TRK=About This Project
  3645. overview.project_activity.APP=Application Activity
  3646. overview.project_activity.TRK=Project Activity
  3647. overview.project_activity.click_to_see=Click to see project activity
  3648. overview.external_links=External Links
  3649. overview.project_key.APP=Application Key
  3650. overview.project_key.TRK=Project Key
  3651. overview.project_key.click_to_copy=Click to copy the key to your clipboard
  3652. overview.activity=Activity
  3653. overview.activity.graph_shows_data_for_x=This graph shows historical data for {0}. Click on the "Activity" link below to see more information.
  3654. overview.recent_activity=Recent Activity
  3655. overview.accepted_issues=Accepted issues
  3656. overview.accepted_issues.description=Issues that are valid, but were not fixed and represent accepted technical debt.
  3657. overview.accepted_issues.total=Total accepted issues
  3658. overview.high_impact_accepted_issues=High impact accepted issues
  3659. overview.measures=Measures
  3660. overview.measures.empty_explanation=Measures on New Code will appear after the second analysis of this branch.
  3661. overview.measures.empty_link={learn_more_link} about the Clean as You Code approach.
  3662. overview.measures.same_reference.explanation=This branch is configured to use itself as reference branch. It will never have New Code.
  3663. overview.measures.bad_reference.explanation=This branch could not be compared to its reference branch. See the SCM or analysis report for more details.
  3664. overview.measures.bad_setting.link=This can be fixed in the {setting_link} setting.
  3665. overview.measures.security_hotspots_reviewed=Reviewed
  3666. overview.project.no_lines_of_code=This project has no lines of code.
  3667. overview.project.empty=This project is empty.
  3668. overview.project.branch_X_no_lines_of_code=The "{0}" branch has no lines of code.
  3669. overview.project.branch_X_empty=The "{0}" branch of this project is empty.
  3670. overview.project.main_branch_no_lines_of_code=The main branch has no lines of code.
  3671. overview.project.main_branch_empty=The main branch of this project is empty.
  3672. overview.project.branch_needs_new_analysis=The branch data is incomplete. Run a new analysis to update it.
  3673. overview.project.last_analysis.date_time=Last analysis started on {0}
  3674. overview.project.next_steps.set_up_pr_deco_and_ci.admin=To benefit from more of SonarQube's features, {link_ci} and set up DevOps platform integration in your {link_project_settings}.
  3675. overview.project.next_steps.set_up_pr_deco_and_ci=To benefit from more of SonarQube's features, {link_ci} and ask a project administrator to set up DevOps platform integration.
  3676. overview.project.next_steps.set_up_pr_deco.admin=To benefit from more of SonarQube's features, set up DevOps platform integration in your {link_project_settings}.
  3677. overview.project.next_steps.set_up_pr_deco=To benefit from more of SonarQube's features, ask a project administrator to set up DevOps platform integration.
  3678. overview.project.next_steps.set_up_ci=To benefit from more of SonarQube's features, {link}.
  3679. overview.project.next_steps.links.project_settings=project settings
  3680. overview.project.next_steps.links.set_up_ci=set up analysis in your favorite CI
  3681. overview.coverage_on=Coverage on
  3682. overview.coverage_on_X_lines=Coverage on {count} Lines to cover
  3683. overview.coverage_on_X_new_lines=Coverage on {count} New Lines to cover
  3684. overview.duplications_on=Duplications on
  3685. overview.duplications_on_X_lines=Duplications on {count} Lines
  3686. overview.duplications_on_X_new_lines=Duplications on {count} New Lines
  3687. overview.period.previous_version=Since {0}
  3688. # Old periods, necessary to display project that haven't been analyzed with new setting (MMF-1579)
  3689. overview.period.previous_version_only_date=Since previous version
  3690. overview.period.previous_analysis=Since previous analysis
  3691. overview.period.days=Last {0} days
  3692. overview.period.version=Since {0}
  3693. overview.period.date=After {0}
  3694. overview.period.manual_baseline=Since {0}
  3695. # New periods (MMF-1579)
  3696. overview.period.number_of_days=From last {0} days
  3697. overview.period.specific_analysis=Since {0}
  3698. overview.period.reference_branch=Compared to {0}
  3699. overview.gate.ERROR=Failed
  3700. overview.gate.WARN=Warning
  3701. overview.gate.OK=Passed
  3702. overview.gate.view.no_alert=The view has passed the quality gate.
  3703. overview.gate.view.warnings=The view has warnings on the following quality gate conditions: {0}.
  3704. overview.gate.view.errors=The view failed the quality gate on the following conditions: {0}.
  3705. overview.measurement_type.DUPLICATION=Duplications
  3706. overview.measurement_type.COVERAGE=Coverage
  3707. overview.measures.failed_badge=Failed
  3708. overview.complexity_tooltip.function={0} functions have complexity around {1}
  3709. overview.complexity_tooltip.file={0} files have complexity around {1}
  3710. overview.deprecated_profile=This Quality Profile uses {0} deprecated rules and should be updated.
  3711. overview.deleted_profile={0} has been deleted since the last analysis.
  3712. overview.link_to_x_profile_y=Go to {0} profile "{1}"
  3713. overview.sonarlint_ad.header=Catch issues before they fail your Quality Gate with our IDE extension, SonarLint
  3714. overview.sonarlint_ad.details_1=The power of Sonar analyzers directly as you type
  3715. overview.sonarlint_ad.details_2=No need to wait for your PR to pass all checks
  3716. overview.sonarlint_ad.details_3=Repair flagged issues in real-time with quick fixes
  3717. overview.sonarlint_ad.details_4=12 major IDE's supported (including key JetBrains and Microsoft IDE's
  3718. overview.sonarlint_ad.details_5=Free forever
  3719. overview.sonarlint_ad.learn_more=Learn more about SonarLint
  3720. overview.sonarlint_ad.close_promotion=Close SonarLint romotion
  3721. overview.badges.get_badge=Badges
  3722. overview.badges.title=Get project badges
  3723. overview.badges.description.TRK=Show the status of your project metrics on your README or website. Pick your style:
  3724. overview.badges.description.VW=Show the status of your portfolio metrics on your README or website. Pick your style:
  3725. overview.badges.description.APP=Show the status of your application metrics on your README or website. Pick your style:
  3726. overview.badges.metric=Customize badge
  3727. overview.badges.format=Code format
  3728. overview.badges.options.colors.white=White
  3729. overview.badges.options.colors.black=Black
  3730. overview.badges.options.colors.orange=Orange
  3731. overview.badges.options.formats.md=Markdown
  3732. overview.badges.options.formats.url=Image URL only
  3733. overview.badges.measure.alt=Standard badge
  3734. overview.badges.measure.description.TRK=Displays the current status of one metric of your project.
  3735. overview.badges.measure.description.VW=Displays the current status of one metric of your portfolio.
  3736. overview.badges.measure.description.APP=Displays the current status of one metric of your application.
  3737. overview.badges.quality_gate.alt=Quality Gate badge
  3738. overview.badges.quality_gate.description=Displays the current quality gate status of your project.
  3739. overview.badges.quality_gate.description.APP=Displays the current quality gate status of your application.
  3740. overview.badges.quality_gate.description.TRK=Displays the current quality gate status of your project.
  3741. overview.badges.quality_gate.description.VW=Displays the current quality gate status of your portfolio.
  3742. overview.badges.leak_warning=Project badges can expose your security rating and other measures. Only use project badges in trusted environments.
  3743. overview.badges.renew=Renew Token
  3744. overview.badges.renew.description=If your project badge security token has leaked to an unsafe environment, you can renew it:
  3745. overview.badges.deprecated_badge_x_y=Badges displaying {0} are deprecated and will be removed in a future version. Please choose another badge for your {1}.
  3746. overview.quality_profiles_update_after_sq_upgrade.message=Upgrade to SonarQube {sqVersion} has updated your Quality Profiles. Issues on your project may have been affected. {link}
  3747. overview.quality_profiles_update_after_sq_upgrade.link=See more details
  3748. overview.activity.variations.new_analysis=New analysis:
  3749. overview.activity.variations.first_analysis=First analysis:
  3750. #------------------------------------------------------------------------------
  3751. #
  3752. # WS API
  3753. #
  3754. #------------------------------------------------------------------------------
  3755. api_documentation.deprecation_tooltip=An API deprecated in version X.Y will be dropped in version (X+1).0. Example: an API deprecated in 4.1 is supported in 4.X (4.2, 4.3, etc.) and will be dropped in version 5.0.
  3756. api_documentation.internal_tooltip=Use at your own risk; internal services are subject to change or removal without notice.
  3757. api_documentation.internal_tooltip_v2=Use at your own risk. Shows/hides the internal endpoints, parameters, and other details used for internal services. These are subject to change or removal without notice.
  3758. api_documentation.page=Web API
  3759. api_documentation.page.v2=Web API v2
  3760. api_documentation.show_deprecated=Show Deprecated API
  3761. api_documentation.show_internal=Show Internal API
  3762. api_documentation.show_internal_v2=Show Internal
  3763. api_documentation.possible_values=Possible values
  3764. api_documentation.default_values=Default value
  3765. api_documentation.example_values=Example value
  3766. api_documentation.max_values=Maximum allowed values
  3767. api_documentation.min_value=Minimum value
  3768. api_documentation.max_value=Maximum value
  3769. api_documentation.min_length=Minimum length
  3770. api_documentation.max_length=Maximum length
  3771. api_documentation.internal=internal
  3772. api_documentation.deprecated=deprecated
  3773. api_documentation.deprecated_since_x=deprecated since {0}
  3774. api_documentation.will_be_removed_in_x=Will be removed in {0}
  3775. api_documentation.parameters=Parameters
  3776. api_documentation.response_example=Response Example
  3777. api_documentation.changelog=Changelog
  3778. api_documentation.search=Search by name...
  3779. api_documentation.v2.search=Search API...
  3780. api_documentation.v2.parameter_header=Request
  3781. api_documentation.v2.response_header=Response
  3782. api_documentation.v2.request_subheader.query=Query Parameters
  3783. api_documentation.v2.request_subheader.path=Path Parameters
  3784. api_documentation.v2.request_subheader.header=Headers
  3785. api_documentation.v2.request_subheader.request_body=Request Body
  3786. api_documentation.v2.enum_description=Valid values: {values}
  3787. #------------------------------------------------------------------------------
  3788. #
  3789. # CODE
  3790. #
  3791. #------------------------------------------------------------------------------
  3792. code.open_component_page=Open Component's Page
  3793. code.search_placeholder=Search for files...
  3794. code.search_placeholder.application=Search for projects...
  3795. code.search_placeholder.portfolio=Search for projects and sub-portfolios...
  3796. code.parent_folder=Parent folder
  3797. code.last_analysis_date=Last analysis
  3798. code.name=Name
  3799. code.pin=Pin file
  3800. #------------------------------------------------------------------------------
  3801. #
  3802. # COMPONENT MEASURES
  3803. #
  3804. #------------------------------------------------------------------------------
  3805. component_measures.details_are_not_available=Details are not available for estimated measures.
  3806. component_measures.domain_x_overview={0} Overview
  3807. component_measures.domain_overview=Overview
  3808. component_measures.files=files
  3809. component_measures.tab.tree=Tree
  3810. component_measures.tab.list=List
  3811. component_measures.show_metric_history=Show history of this metric
  3812. component_measures.tab.treemap=Treemap
  3813. component_measures.view_as=View as
  3814. component_measures.legend.color=Color:
  3815. component_measures.legend.size=Size:
  3816. component_measures.legend.worse_of_x_y=Worse of {0} and {1}
  3817. component_measures.legend.help_x=Click to toggle visibility for data with rating {0}.
  3818. component_measures.legend.only_first_500_files=Only showing data for the first 500 files
  3819. component_measures.no_history=There isn't enough data to generate an activity graph.
  3820. component_measures.not_found=The requested measure was not found.
  3821. component_measures.empty=No measures.
  3822. component_measures.select_files=Select files
  3823. component_measures.navigate=Navigate
  3824. component_measures.to_select_files=to select files
  3825. component_measures.to_navigate=to navigate
  3826. component_measures.to_navigate_files=to next/previous file
  3827. component_measures.hidden_best_score_metrics=There are {0} hidden components with a score of {1}.
  3828. component_measures.hidden_best_score_metrics_show_label=Show hidden components
  3829. component_measures.navigation=Measures navigation
  3830. component_measures.skip_to_navigation=Skip to measure navigation
  3831. component_measures.see_metric_history=See history
  3832. component_measures.leak_legend.new_code=New Code:
  3833. component_measures.overview.project_overview.subnavigation=Project Overview
  3834. component_measures.overview.project_overview.title=Risk
  3835. component_measures.overview.project_overview.description=Get quick insights into the operational risks. For users relying on their keyboard, elements are sorted by the number of lines of code for each file. Any color but green indicates immediate risks: Bugs or Vulnerabilities that should be examined. A position at the top or right of the graph means that the longer-term health may be at risk. Green bubbles at the bottom-left are best.
  3836. component_measures.overview.Reliability.description=See bugs' operational risks. For users relying on their keyboard, elements are sorted by volume of bugs per file. The closer a bubble's color is to red, the more severe the worst bugs are. Bubble size indicates bug volume, and each bubble's vertical position reflects the estimated time to address the bugs. Small green bubbles on the bottom edge are best.
  3837. component_measures.overview.Security.description=See vulnerabilities' operational risks. For users relying on their keyboard, elements are sorted by volume of vulnerabilities per file. The closer a bubble's color is to red, the more severe the worst vulnerabilities are. Bubble size indicates vulnerability volume, and each bubble's vertical position reflects the estimated time to address the vulnerabilities. Small green bubbles on the bottom edge are best.
  3838. component_measures.overview.Maintainability.description=See code smells' long-term risks. For users relying on their keyboard, elements are sorted by the volume of code smells for each file. The closer a bubble's color is to red, the higher the ratio of technical debt is. Bubble size indicates code smell volume, and each bubble's vertical position reflects the estimated time to address the code smells. Small green bubbles on the bottom edge are best.
  3839. component_measures.overview.Coverage.description=See missing test coverage's long-term risks. For users relying on their keyboard, elements are sorted by volume of uncovered lines per file. Bubble size indicates the volume of uncovered lines, and each bubble's vertical position reflects the volume of missing coverage. Small bubbles on the bottom edge are best.
  3840. component_measures.overview.Duplications.description=See duplications' long-term risks. For users relying on their keyboard, elements are sorted by the number of duplicated blocks per file. Bubble size indicates the volume of duplicated blocks, and each bubble's vertical position reflects the volume of lines in those blocks. Small bubbles on the bottom edge are best.
  3841. component_measures.overview.see_data_as_list=See the data presented on this chart as a list
  3842. component_measures.domain_subnavigation.Reliability.help=Issues in this domain mark code where you will get behavior other than what was expected.
  3843. component_measures.domain_subnavigation.Maintainability.help=Issues in this domain mark code that will be more difficult to update competently than it should.
  3844. component_measures.domain_subnavigation.Security.help=Issues in this domain mark potential weaknesses to hackers.
  3845. component_measures.domain_subnavigation.SecurityReview.help=This domain represents potential security risks in the form of hotspots and their review status.
  3846. component_measures.domain_subnavigation.Complexity.help=How simple or complicated the control flow of the application is. Cyclomatic Complexity measures the minimum number of test cases required for full test coverage. Cognitive Complexity is a measure of how difficult the application is to understand
  3847. component_measures.subnavigation_category.new_code_category=New Code
  3848. component_measures.subnavigation_category.overall_category=Overall Code
  3849. component_measures.subnavigation_category.tests_category=Tests
  3850. component_measures.facet_category.overall_category.estimated=Estimated after merge
  3851. component_measures.bubble_chart.zoom_level=Current zoom level. Scroll on the chart to zoom or unzoom, click here to reset.
  3852. component_measures.not_all_measures_are_shown=Not all projects and applications are included
  3853. component_measures.not_all_measures_are_shown.help=You do not have access to all projects and/or applications. Measures are still computed based on all projects and applications.
  3854. #------------------------------------------------------------------------------
  3855. #
  3856. # DOCS
  3857. #
  3858. #------------------------------------------------------------------------------
  3859. docs.documentation=Documentation
  3860. docs.get_help=Get Help
  3861. docs.roadmap=Product Roadmap
  3862. docs.news=Product News
  3863. docs.stay_connected=Stay Connected
  3864. docs.suggestion=Suggestions For This Page
  3865. #------------------------------------------------------------------------------
  3866. #
  3867. # GLOBAL FOOTER
  3868. #
  3869. #------------------------------------------------------------------------------
  3870. footer.community=Community
  3871. footer.contact_us=Contact us
  3872. footer.documentation=Documentation
  3873. footer.help=Help
  3874. footer.license=LGPL v3
  3875. footer.news=News
  3876. footer.plugins=Plugins
  3877. footer.pricing=Pricing
  3878. footer.privacy=Privacy
  3879. footer.production_database_explanation=The embedded database will not scale, it will not support upgrading to newer versions of {instance}, and there is no support for migrating your data out of it into a different database engine.
  3880. footer.production_database_warning=Embedded database should be used for evaluation purposes only
  3881. footer.security=Security
  3882. footer.status=Status
  3883. footer.terms=Terms
  3884. footer.twitter=Twitter
  3885. footer.version_x=Version {0}
  3886. footer.web_api=Web API
  3887. #------------------------------------------------------------------------------
  3888. #
  3889. # NEW CODE DEFINITION
  3890. #
  3891. #------------------------------------------------------------------------------
  3892. new_code_definition.question=Choose the baseline for new code for this project
  3893. new_code_definition.question.multiple_projects=Choose the baseline for new code for those projects
  3894. new_code_definition.global_setting=Use the global setting
  3895. new_code_definition.specific_setting=Define a specific setting for this project
  3896. new_code_definition.specific_setting.multiple_projects=Define a specific setting for your projects
  3897. new_code_definition.previous_version=Previous version
  3898. new_code_definition.previous_version.usecase=Recommended for projects following regular versions or releases.
  3899. new_code_definition.previous_version.description=Any code that has changed since the previous version is considered new code.
  3900. new_code_definition.number_days=Number of days
  3901. new_code_definition.number_days.specify_days=Specify a number of days
  3902. new_code_definition.number_days.usecase=Recommended for projects following continuous delivery.
  3903. new_code_definition.number_days.description=Any code that has changed in the last x days is considered new code. If no action is taken on a new issue after x days, this issue will become part of the overall code.
  3904. new_code_definition.number_days.invalid=Please provide a whole number between {0} and {1}
  3905. new_code_definition.reference_branch=Reference branch
  3906. new_code_definition.reference_branch.description=Choose a branch as the baseline for the new code.
  3907. new_code_definition.reference_branch.usecase=Recommended for projects using feature branches.
  3908. new_code_definition.reference_branch.notice=The main branch will be set as the reference branch when the project is created. You will be able to choose another branch as the reference branch when your project will have more branches.
  3909. new_code_definition.auto_update.branch.message=The new code definition of the following branch(es) was automatically changed on {date}, following a SonarQube upgrade, as it was exceeding the maximum value: {branchesList} {link}
  3910. new_code_definition.auto_update.branch.list_item={branchName}: Number of days was changed from {previousDays} to {days}.
  3911. new_code_definition.auto_update.global.message=The global new code definition was automatically changed from {previousDays} to {days} days on {date}, following a SonarQube upgrade, as it was exceeding the maximum value. {link}
  3912. new_code_definition.auto_update.ncd_page.message=The number of days was automatically changed from {previousDays} to {days} on {date}, following a SonarQube upgrade, as it was exceeding the maximum value. {link}
  3913. new_code_definition.auto_update.project.message=This project's new code definition was automatically changed from {previousDays} to {days} days on {date}, following a SonarQube upgrade, as it was exceeding the maximum value. {link}
  3914. new_code_definition.auto_update.review_link=Review new code definition
  3915. #------------------------------------------------------------------------------
  3916. #
  3917. # ONBOARDING
  3918. #
  3919. #------------------------------------------------------------------------------
  3920. onboarding.alm.azure=Azure DevOps
  3921. onboarding.alm.bitbucket=Bitbucket Server
  3922. onboarding.alm.bitbucketcloud=Bitbucket Cloud
  3923. onboarding.alm.gitlab=GitLab
  3924. onboarding.project_analysis.header=Analyze your project
  3925. onboarding.project_analysis.description=We initialized your project on SonarQube, now it's up to you to launch analyses!
  3926. onboarding.project_analysis.guide_to_integrate_pipelines=follow the guide to integrating with Pipelines
  3927. onboarding.create_project.manual.step1=1 of 2
  3928. onboarding.create_project.manual.step2=2 of 2
  3929. onboarding.create_project.manual.title=Create a local project
  3930. onboarding.create_project.select_method=How do you want to create your project?
  3931. onboarding.create_project.select_method.manually=Are you just testing or have an advanced use-case? Create a local project.
  3932. onboarding.create_project.select_method.devops_platform=Do you want to benefit from all of SonarQube's features (like repository import and Pull Request decoration)?
  3933. onboarding.create_project.select_method.devops_platform_second=Create your project from your favorite DevOps platform.
  3934. onboarding.create_project.select_method.no_alm_yet.admin=First, you need to set up a DevOps platform configuration.
  3935. onboarding.create_project.select_method.manual=Local project
  3936. onboarding.create_project.select_method.azure=From Azure DevOps
  3937. onboarding.create_project.select_method.bitbucket=From Bitbucket Server
  3938. onboarding.create_project.select_method.bitbucketcloud=From Bitbucket Cloud
  3939. onboarding.create_project.select_method.github=From GitHub
  3940. onboarding.create_project.select_method.gitlab=From GitLab
  3941. onboarding.create_project.import_select_method.manual=Create a local project
  3942. onboarding.create_project.import_select_method.azure=Import from Azure DevOps
  3943. onboarding.create_project.import_select_method.bitbucket=Import from Bitbucket Server
  3944. onboarding.create_project.import_select_method.bitbucketcloud=Import from Bitbucket Cloud
  3945. onboarding.create_project.import_select_method.github=Import from GitHub
  3946. onboarding.create_project.import_select_method.gitlab=Import from GitLab
  3947. onboarding.create_project.alm_not_configured=Contact your admin to set up the global configuration allowing you to import project from this DevOps Platform
  3948. onboarding.create_project.check_alm_supported=Checking if available
  3949. onboarding.create_project.project_key=Project key
  3950. onboarding.create_project.project_key.duplicate_key=The project key name is already taken.
  3951. onboarding.create_project.project_key.wrong_format=The provided value doesn't match the expected format.
  3952. onboarding.create_project.project_key.description=The project key is a unique identifier for your project. It may contain up to 400 characters. Allowed characters are alphanumeric, '-' (dash), '_' (underscore), '.' (period) and ':' (colon), with at least one non-digit.
  3953. onboarding.create_project.project_key.error.empty=You must provide at least one character.
  3954. onboarding.create_project.project_key.error.too_long=The provided key is too long.
  3955. onboarding.create_project.project_key.error.invalid_char=The provided key contains invalid characters.
  3956. onboarding.create_project.project_key.error.only_digits=The provided key contains only digits.
  3957. onboarding.create_project.display_name=Project display name
  3958. onboarding.create_project.display_name.description=Up to 255 characters. Some scanners might override the value you provide.
  3959. onboarding.create_project.main_branch_name=Main branch name
  3960. onboarding.create_project.main_branch_name.description=The name of your project’s default branch { learn_more }
  3961. onboarding.create_project.pr_decoration.information=Local projects won’t benefit from the features associated with DevOps Platforms integration unless you configure them in the project settings.
  3962. onboarding.create_project.repository_imported=Already imported
  3963. onboarding.create_project.import=Import
  3964. onboarding.create_project.see_project=See the project
  3965. onboarding.create_project.search_repositories_by_name=Search for repository name starting with...
  3966. onboarding.create_project.search_projects_repositories=Search for projects and repositories
  3967. onboarding.create_project.search_repositories=Search for a repository
  3968. onboarding.create_project.select_repositories=Select repositories
  3969. onboarding.create_project.select_all_repositories=Select all available repositories
  3970. onboarding.create_application.key.description=If specified, this value is used as the key instead of generating it from the name of the Application. Only letters, digits, dashes and underscores can be used.
  3971. onboarding.create_project.pat_form.title=Grant access to your repositories
  3972. onboarding.create_project.pat_form.help.azure=SonarQube needs a personal access token to access and list your repositories from Azure DevOps.
  3973. onboarding.create_project.pat_form.help.bitbucket=SonarQube needs a personal access token to access and list your repositories from Bitbucket Server.
  3974. onboarding.create_project.pat_form.help.bitbucket_cloud=SonarQube needs an app password to access and list your repositories from Bitbucket Cloud.
  3975. onboarding.create_project.pat_form.help.gitlab=SonarQube needs a personal access token to access and list your projects from GitLab.
  3976. onboarding.create_project.pat_form.pat_required=Please enter a personal access token
  3977. onboarding.create_project.wrong_binding_count=You must have at least 1 {alm} instance configured in order to use this method, but none were found. Either create a local project, or contact your system administrator.
  3978. onboarding.create_project.wrong_binding_count.admin=You must have at least 1 {alm} instance configured in order to use this method. You can configure instances under {url}.
  3979. onboarding.create_project.azure.no_url.admin=Your Azure DevOps instance configuration is missing a URL. We cannot import projects in the current state. You can configure instances under {url}.
  3980. onboarding.create_project.azure.no_url=Your Azure DevOps instance configuration is missing a URL. We cannot import projects in the current state. Please contact your system administrator.
  3981. onboarding.create_project.enter_pat=Personal Access Token
  3982. onboarding.create_project.bitbucket_cloud.enter_password=App password
  3983. onboarding.create_project.bitbucket_cloud.enter_username=BitBucket username
  3984. onboarding.create_project.pat_incorrect.azure=Your personal access couldn't be validated.
  3985. onboarding.create_project.pat_incorrect.bitbucket=Your personal access couldn't be validated.
  3986. onboarding.create_project.pat_incorrect.bitbucket_cloud=Your app password couldn't be validated.
  3987. onboarding.create_project.pat_incorrect.gitlab=Your personal access couldn't be validated. Please make sure it has the right scope and that it is not expired.
  3988. onboarding.create_project.pat.expired.info_message=You have to do this again as your token may have expired or has been revoked.
  3989. onboarding.create_project.pat.expired.info_message_contact=If this does not fix the issue, please contact your system administrator.
  3990. onboarding.create_project.pat_help.instructions.azure=To create a Personal Access Token on Azure, {link} and make sure to select the “Code (Read & Write)” scope.
  3991. onboarding.create_project.pat_help.instructions.link.azure=generate a token
  3992. onboarding.create_project.pat_help.instructions.gitlab=To create a Personal Access Token on GitLab, {link} by setting a name, for example “SonarQube” and selecting the “read_api” scope.
  3993. onboarding.create_project.pat_help.instructions.gitlab.link=generate a token
  3994. onboarding.enter_username.instructions.bitbucket_cloud=You can find your username in your {link}
  3995. onboarding.enter_username.instructions.bitbucket_cloud.link=BitBucket profile settings
  3996. onboarding.create_project.enter_password.instructions.bitbucket_cloud=To create an app password on BitBucket, {link} by setting a name, for example “SonarQube” and selecting the “Repositories: Read” permissions.
  3997. onboarding.create_project.enter_password.instructions.bitbucket_cloud.link=add an app password
  3998. onboarding.create_project.pat_help.instructions.bitbucket_server=To create a Personal Access Token on BitBucket Server, go to {link} and click on “Create token”. Set a name, for example “SonarQube” and select the following permissions “Projects: Read” “Repositories: Read”.
  3999. onboarding.create_project.pat_help.instructions.bitbucket_server.link=HTTP access tokens
  4000. onboarding.create_project.pat_help.instructions2.bitbucket=Set a name, for example "SonarQube", and select the following permissions:
  4001. onboarding.create_project.pat_help.instructions2.bitbucketcloud=Set a name, for example "SonarQube", and select the following permissions:
  4002. onboarding.create_project.pat_help.instructions2.gitlab=Set a name, for example "SonarQube", and select the following scope:
  4003. onboarding.create_project.pat_help.gitlab.read_api_permission=read_api
  4004. onboarding.create_project.no_bbs_projects=No projects could be fetched from Bitbucket Server. Contact your system administrator, or {link}.
  4005. onboarding.create_project.no_bbs_repos=No repositories were found for this project. Contact your system administrator, or {link}.
  4006. onboarding.create_project.update_your_token=update your personal access token
  4007. onboarding.create_project.no_bbs_repos.filter=No repositories match your filter.
  4008. onboarding.create_project.only_showing_X_first_repos=We're only displaying the first {0} repositories. If you're looking for a repository that's not in this list, use the search above.
  4009. onboarding.create_project.see_on_github=See on GitHub
  4010. onboarding.create_project.search_prompt=Search for projects
  4011. onboarding.create_project.set_up=Set up
  4012. onboarding.create_project.azure.title=Azure project onboarding
  4013. onboarding.create_project.azure.subtitle=Import projects from one of your Azure projects
  4014. onboarding.create_project.azure.no_projects=No projects could be fetched from Azure DevOps. Contact your system administrator, or {link}.
  4015. onboarding.create_project.azure.search_results_for_project_X=Search results for "{0}"
  4016. onboarding.create_project.azure.no_repositories=Could not fetch repositories for this project. Contact your system administrator, or {link}.
  4017. onboarding.create_project.azure.no_results=No repositories match your search query.
  4018. onboarding.create_project.bitbucketcloud.title=Bitbucket Cloud project onboarding
  4019. onboarding.create_project.bitbucketcloud.subtitle=Import projects from one of your Bitbucket Cloud workspaces
  4020. onboarding.create_project.bitbucketcloud.no_projects=No projects could be fetched from Bitbucket. Contact your system administrator, or {link}.
  4021. onboarding.create_project.bitbucketcloud.link=See on Bitbucket
  4022. onboarding.create_project.github.title=GitHub project onboarding
  4023. onboarding.create_project.github.subtitle=Import repositories from one of your GitHub organizations.
  4024. onboarding.create_project.github.choose_organization=Choose an organization
  4025. onboarding.create_project.github.warning.message=Could not connect to GitHub. Please contact an administrator to configure GitHub integration.
  4026. onboarding.create_project.github.warning.message_admin=Could not connect to GitHub. Please make sure the GitHub instance is correctly configured in the {link} to create a new project from a repository.
  4027. onboarding.create_project.github.warning.message_admin.link=DevOps Platform integration settings
  4028. onboarding.create_project.github.no_orgs=We couldn't load any organizations with your key. Contact an administrator.
  4029. onboarding.create_project.github.no_orgs_admin=We couldn't load any organizations. Make sure the GitHub App is installed in at least one organization and check the GitHub instance configuration in the {link}.
  4030. onboarding.create_project.gitlab.title=Gitlab project onboarding
  4031. onboarding.create_project.gitlab.subtitle=Import projects from one of your GitLab groups
  4032. onboarding.create_project.gitlab.no_projects=No projects could be fetched from Gitlab. Contact your system administrator, or {link}.
  4033. onboarding.create_project.gitlab.link=See on GitLab
  4034. onboarding.create_project.bitbucket.title=Bitbucket Server project onboarding
  4035. onboarding.create_project.bitbucket.subtitle=Import projects from one of your Bitbucket server workspaces
  4036. onboarding.create_project.x_repositories_selected={count} {count, plural, one {repository} other {repositories}} selected
  4037. onboarding.create_project.x_repository_created={count} {count, plural, one {repository} other {repositories}} will be created as {count, plural, one {a project} other {projects}} in SonarQube
  4038. onboarding.create_project.please_dont_leave=If you leave the page the import could fail. Are you sure you want to leave?
  4039. onboarding.create_project.import_in_progress={count} of {total} projects imported. Please do not close this page until the import is complete.
  4040. onboarding.create_project.new_code_definition.title=Set up project for Clean as You Code
  4041. onboarding.create_x_project.new_code_definition.title=Set up {count, plural, one {project} other {# projects}} for Clean as You Code
  4042. onboarding.create_project.new_code_definition.title=Set up project for Clean as You Code
  4043. onboarding.create_project.new_code_definition.description=The new code definition sets which part of your code will be considered new code. This helps you focus attention on the most recent changes to your project, enabling you to follow the Clean as You Code methodology. Learn more: {link}
  4044. onboarding.create_project.new_code_definition.description.link=Defining New Code
  4045. onboarding.create_project.new_code_definition.create_x_projects=Create {count, plural, one {project} other {# projects}}
  4046. onboarding.create_projects.new_code_definition.change_info=You can change this setting for each project individually at any time in the project administration settings.
  4047. onboarding.create_project.success=Your {count, plural, one {project has} other {# projects have}} been created.
  4048. onboarding.create_project.success.admin=Project {project_link} has been successfully created.
  4049. onboarding.create_project.failure=Import of {count, plural, one {# project} other {# projects}} failed.
  4050. onboarding.token.header=Provide a token
  4051. onboarding.token.text=The token is used to identify you when an analysis is performed. If it has been compromised, you can revoke it at any point in time in your {link}.
  4052. onboarding.token.text.PROJECT_ANALYSIS_TOKEN=The project token is used to identify you when an analysis is performed. If it has been compromised, you can revoke it at any point in time in your {link}.
  4053. onboarding.token.text.GLOBAL_ANALYSIS_TOKEN=The global token is used to identify you when an analysis is performed. If it has been compromised, you can revoke it at any point in time in your {link}.
  4054. onboarding.token.text.user_account=user account
  4055. onboarding.token.generate=Generate
  4056. onboarding.token.generate.long=Generate a token
  4057. onboarding.token.generate.PROJECT_ANALYSIS_TOKEN=Generate a project token
  4058. onboarding.token.generate.GLOBAL_ANALYSIS_TOKEN=Generate a global token
  4059. onboarding.token.use_existing_token=Use existing token
  4060. onboarding.token.use_existing_token.label=Existing token value
  4061. onboarding.token.use_existing_token.help=Paste an existing token value into the input field.
  4062. onboarding.token.warning_project_token_scope=Please note that this token will only allow you to analyze the current project. If you want to use the same token to analyze multiple projects, you need to generate a global token in your {link}. See the {doc_link} for more information.
  4063. onboarding.token.name.label=Token name
  4064. onboarding.token.name.placeholder=Enter a name for your token
  4065. onboarding.token.name.help=Enter a name for your project token
  4066. onboarding.token.invalid_format=The token you have entered has invalid format.
  4067. onboarding.token.delete=Delete the token
  4068. onboarding.tutorial.env_variables=In the {field} field, enter {value} {extra}
  4069. onboarding.tutorial.env_variables.field=Value
  4070. onboarding.tutorial.env_variables.token_generator.value=an existing token, or a newly generated one:
  4071. onboarding.analysis.header=Run analysis on your project
  4072. onboarding.analysis.auto_refresh_after_analysis.done=Is my analysis done?
  4073. onboarding.analysis.auto_refresh_after_analysis.auto_refresh=If your analysis is successful, this page will automatically refresh in a few moments.
  4074. onboarding.analysis.auto_refresh_after_analysis.set_up_pr_deco_and_ci.admin=You can set up Pull Request Decoration under the project settings. To set up analysis with your favorite CI tool, see the tutorials.
  4075. onboarding.analysis.auto_refresh_after_analysis.set_up_pr_deco_and_ci=You can request from a project administrator to set up Pull Request Decoration. To set up analysis with your favorite CI tool, see the tutorials.
  4076. onboarding.analysis.auto_refresh_after_analysis.check_these_links=Check these useful links while you wait:
  4077. onboarding.analysis.auto_refresh_after_analysis.check_these_links.pr_analysis=Pull Request Analysis
  4078. onboarding.analysis.auto_refresh_after_analysis.check_these_links.branches=Branch Analysis
  4079. onboarding.build=What option best describes your build?
  4080. onboarding.build.maven=Maven
  4081. onboarding.build.gradle=Gradle
  4082. onboarding.build.make=Make
  4083. onboarding.build.dotnet=.NET
  4084. onboarding.build.dotnet.win_core=Windows + .NET Core
  4085. onboarding.build.dotnet.win_msbuild=Windows + .NET Framework
  4086. onboarding.build.dotnet.linux_core=Linux + .NET Core
  4087. onboarding.build.cfamily=C,C++ or ObjC
  4088. onboarding.build.other=Other (for JS, TS, Go, Python, PHP, ...)
  4089. onboarding.build.dotnet.variant=Choose your build tool
  4090. onboarding.build.dotnet.variant.dotnet_core=.NET Core
  4091. onboarding.build.dotnet.variant.dotnet_framework=.NET Framework
  4092. onboarding.build.other.os=What is your OS?
  4093. onboarding.build.other.os.linux=Linux
  4094. onboarding.build.other.os.win=Windows
  4095. onboarding.build.other.os.mac=macOS
  4096. onboarding.analysis.docs=Please visit the {link} for more details.
  4097. onboarding.analysis.build_wrapper.header.linux=Download and unzip the Build Wrapper for Linux
  4098. onboarding.analysis.build_wrapper.header.win=Download and unzip the Build Wrapper for Windows
  4099. onboarding.analysis.build_wrapper.header.mac=Download and unzip the Build Wrapper for macOS
  4100. onboarding.analysis.build_wrapper.text=And add the executable's directory to the {env_var} environment variable
  4101. onboarding.analysis.build_wrapper.execute=Execute the Build Wrapper as a prefix to your build command
  4102. onboarding.analysis.build_wrapper.execute_text=Run the following command in your project's folder.
  4103. onboarding.analysis.build_wrapper.execute_build_command=<your clean build command>
  4104. onboarding.analysis.build_wrapper.docs=Please visit the {link} of the Build Wrapper for more details.
  4105. onboarding.analysis.build_wrapper.docs_link=official documentation
  4106. onboarding.analysis.java.maven.header=Execute the Scanner for Maven
  4107. onboarding.analysis.java.maven.text=Running a {instance} analysis with Maven is straighforward. You just need to run the following command in your project's folder.
  4108. onboarding.analysis.java.maven.docs_link=official documentation of the Scanner for Maven
  4109. onboarding.analysis.java.maven.text.custom=Run the following command in your project's folder.
  4110. onboarding.analysis.java.gradle.header=Execute the Scanner for Gradle
  4111. onboarding.analysis.java.gradle.text.1=Running an analysis with Gradle is straighforward. You just need to declare the {plugin_code} plugin in your {groovy} or {kotlin} file:
  4112. onboarding.analysis.java.gradle.text.2=and run the following command:
  4113. onboarding.analysis.java.gradle.latest_version=You can find the latest version of the Gradle plugin {link}.
  4114. onboarding.analysis.java.gradle.docs_link=official documentation of the Scanner for Gradle
  4115. onboarding.analysis.msbuild.header=Download and unzip the Scanner for .NET
  4116. onboarding.analysis.msbuild.text=Visit the {link} to download the latest version, and add the executable's directory to the {code} environment variable
  4117. onboarding.analysis.msbuild.execute=Execute the Scanner for .NET
  4118. onboarding.analysis.msbuild.execute.text=Running a {instance} analysis is straighforward. You just need to execute the following commands at the root of your solution.
  4119. onboarding.analysis.msbuild.docs_link=official documentation of the Scanner for .NET
  4120. onboarding.analysis.sq_scanner.header.linux=Download and unzip the Scanner for Linux
  4121. onboarding.analysis.sq_scanner.header.win=Download and unzip the Scanner for Windows
  4122. onboarding.analysis.sq_scanner.header.mac=Download and unzip the Scanner for macOS
  4123. onboarding.analysis.sq_scanner.text=Visit the {link} to download the latest version, and add the {dir} directory to the {env_var} environment variable
  4124. onboarding.analysis.sq_scanner.execute=Execute the Scanner
  4125. onboarding.analysis.sq_scanner.execute.text=Running a {instance} analysis is straighforward. You just need to execute the following commands in your project's folder.
  4126. onboarding.analysis.sq_scanner.execute.text.custom=Run the following commands in your project's folder.
  4127. onboarding.analysis.sq_scanner.docs=Please visit the {link} for more details.
  4128. onboarding.analysis.sq_scanner.docs_use_case=Please visit the {link} for more details, and the {useCaseLink} to know more about this use case.
  4129. onboarding.analysis.sq_scanner.docs_link=official documentation of the Scanner
  4130. onboarding.analysis.sq_scanner.sonar_token_env.header=Configure a SONAR_TOKEN environment variable in your CI settings
  4131. onboarding.analysis.sq_scanner.sonar_token_env.var_name=Add an environment variable called
  4132. onboarding.analysis.sq_scanner.sonar_token_env.var_value=Give it the following value
  4133. onboarding.analysis.sqscanner.docs.gradle.title=official documentation of the Scanner for Gradle
  4134. onboarding.analysis.sqscanner.docs.gradle.example_project.title=live Gradle-based example project
  4135. onboarding.analysis.dotnetcore.global=Scanner .NET Core Global Tool
  4136. onboarding.analysis.dotnetcore.global.text=As a prerequisite you need to have the sonarscanner tool installed globally using the following command:
  4137. onboarding.analysis.dotnetcore.global.text.path=Make sure dotnet tools folder is in your path. See dotnet global tools documentation for more information.
  4138. onboarding.tutorial.return_to_list=Choose another option
  4139. onboarding.tutorial.ci_outro.all_set.title=You're all set!
  4140. onboarding.tutorial.ci_outro.done=And you are done!
  4141. onboarding.tutorial.ci_outro.refresh_text=If everything is running successfully, once the analysis is complete you'll be redirected to the Overview page of your project where the new analysis results will be displayed. This can take a few minutes.
  4142. onboarding.tutorial.ci_outro.commit=Commit and push your code to start the analysis.
  4143. onboarding.tutorial.ci_outro.commit.why.gitlab=Each new push you make on your branches or merge requests will trigger a new analysis in SonarQube. We will decorate merge requests directly on GitLab for you.
  4144. onboarding.tutorial.ci_outro.commit.why.github=Each new push you make on your branches or pull requests will trigger a new analysis in SonarQube. We will decorate pull requests directly on GitHub for you.
  4145. onboarding.tutorial.ci_outro.commit.why.bitbucket=Each new push you make on your branches or pull requests will trigger a new analysis in SonarQube. We will decorate pull requests directly on Bitbucket for you.
  4146. onboarding.tutorial.ci_outro.commit.why.bitbucketcloud=Each new push you make on your branches or pull requests will trigger a new analysis in SonarQube. We will decorate pull requests directly on Bitbucket for you.
  4147. onboarding.tutorial.ci_outro.commit.why.azure=Each new push you make on your branches or pull requests will trigger a new analysis in SonarQube. We will decorate pull requests directly on Azure for you.
  4148. onboarding.tutorial.ci_outro.commit.why.no_branches=Each new push you make on your main branch will trigger a new analysis in SonarQube.
  4149. onboarding.tutorial.ci_outro.refresh=This page will then refresh with your analysis results.
  4150. onboarding.tutorial.ci_outro.refresh.why=If the page doesn't refresh after a while, please double-check the analysis configuration, and check your logs.
  4151. onboarding.tutorial.other.project_key.sentence=Create a {file} file in your repository and paste the following code:
  4152. onboarding.tutorial.cfamilly.compilation_database_info=If you have trouble using the build wrapper, you can try using a {link}.
  4153. onboarding.tutorial.cfamilly.compilation_database_info.link=compilation database
  4154. onboarding.tutorial.cfamilly.speed_caching=You can also speed up your analysis by enabling {link}.
  4155. onboarding.tutorial.cfamilly.speed_caching.link=multi-threading and caching
  4156. onboarding.tutorial.cfamily.examples_repositories_description=Check out our C and C++ sample projects with SonarQube analysis configured
  4157. onboarding.tutorial.page.title=Analysis Method
  4158. onboarding.tutorial.page.description=Use this page to manage and set-up the way your analyses are performed.
  4159. onboarding.tutorial.choose_method=How do you want to analyze your repository?
  4160. onboarding.tutorial.choose_method.devops_platform.description=Do you want to integrate with your favorite CI? Choose one of the following tutorials.
  4161. onboarding.tutorial.choose_method.local.description=Are you just testing or have an advanced use-case? Analyze your project locally.
  4162. onboarding.tutorial.choose_method.local=Locally
  4163. onboarding.tutorial.choose_method.other-ci=Other CI
  4164. onboarding.tutorial.choose_method.jenkins=With Jenkins
  4165. onboarding.tutorial.choose_method.github-actions=With GitHub Actions
  4166. onboarding.tutorial.choose_method.gitlab-ci=With GitLab CI
  4167. onboarding.tutorial.choose_method.azure-pipelines=With Azure Pipelines
  4168. onboarding.tutorial.choose_method.bitbucket-pipelines=With Bitbucket Pipelines
  4169. onboarding.tutorial.breadcrumbs.home=Analysis Method
  4170. onboarding.tutorial.breadcrumbs.local=Locally
  4171. onboarding.tutorial.breadcrumbs.other-ci=Other CI
  4172. onboarding.tutorial.breadcrumbs.jenkins=Jenkins
  4173. onboarding.tutorial.breadcrumbs.github-actions=GitHub Actions
  4174. onboarding.tutorial.breadcrumbs.gitlab-ci=GitLab CI
  4175. onboarding.tutorial.breadcrumbs.azure-pipelines=Azure Pipelines
  4176. onboarding.tutorial.breadcrumbs.bitbucket-pipelines=Bitbucket Pipelines
  4177. onboarding.mode.help.manual=Use this for testing or advanced use-case. Other modes are recommended to help you set up your CI environment.
  4178. onboarding.mode.help.otherci=SonarQube integrates with your workflow no matter which CI tool you're using.
  4179. onboarding.tutorial.with.yaml.gradle=Update your {groovy} or {kotlin} file with the {sq} plugin and its configuration:
  4180. onboarding.tutorial.with.bitbucket_ci.title=Analyze your project with Bitbucket CI
  4181. onboarding.tutorial.with.bitbucket_pipelines.variables.title=Create repository variables
  4182. onboarding.tutorial.with.bitbucket_pipelines.yaml.title=Create your pipelines builds configuration
  4183. onboarding.tutorial.with.bitbucket_pipelines.variables.intro=In your Bitbucket repository, go to {repository_variables} and create two new variables:
  4184. onboarding.tutorial.with.bitbucket_pipelines.variables.intro.link=Repository settings > Repository variables
  4185. onboarding.tutorial.with.bitbucket_pipelines.variables.name.sentence=In the {name} field, enter
  4186. onboarding.tutorial.with.bitbucket_pipelines.variables.name.sentence.name=Name
  4187. onboarding.tutorial.with.bitbucket_pipelines.variables.add.sentence=Click on {add}.
  4188. onboarding.tutorial.with.bitbucket_pipelines.variables.add.sentence.add=Add
  4189. onboarding.tutorial.with.bitbucket_pipelines.variables.secured.sentence=Make sure {secured} is check.
  4190. onboarding.tutorial.with.bitbucket_pipelines.variables.secured.sentence.secured=Secured
  4191. onboarding.tutorial.with.github_ci.title=Analyze your project with GitHub CI
  4192. onboarding.tutorial.with.github_action.create_secret.title=Create GitHub Secrets
  4193. onboarding.tutorial.with.github_action.secret.intro=In your GitHub repository, go to {settings_secret} and create two new secrets:
  4194. onboarding.tutorial.with.github_action.secret.intro.link=Settings > Secrets
  4195. onboarding.tutorial.with.github_action.secret.name.sentence=In the {name} field, enter
  4196. onboarding.tutorial.with.github_action.secret.name.sentence.name=Name
  4197. onboarding.tutorial.with.github_action.secret.new.sentence=Click on {new_secret}.
  4198. onboarding.tutorial.with.github_action.secret.new.sentence.new_secret=New repository secret
  4199. onboarding.tutorial.with.github_action.secret.add.sentence=Click on {add_secret}.
  4200. onboarding.tutorial.with.github_action.secret.add.sentence.add_secret=Add secret
  4201. onboarding.tutorial.with.github_action.yaml.title=Create Workflow YAML File
  4202. onboarding.tutorial.with.github_action.yaml.create_yml=Create or update your {file} YAML file with the following content:
  4203. onboarding.tutorial.with.gitlab_ci.title=Analyze your project with GitLab CI
  4204. onboarding.tutorial.with.gitlab_ci.project_key.title=Set your project key
  4205. onboarding.tutorial.with.gitlab_ci.project_key.maven.step2=Add the following to your {file} file:
  4206. onboarding.tutorial.with.gitlab_ci.project_key.gradle.step2=Add the following to your {file} or {file2} file:
  4207. onboarding.tutorial.with.gitlab_ci.project_key.other.step2=Create a {file} file in your repository and paste the following code:
  4208. onboarding.tutorial.with.gitlab_ci.project_key.dotnet.step2=Create a {file} file in your repository and paste the following code:
  4209. onboarding.tutorial.with.gitlab_ci.project_key.cfamily.step2=Create a {file} file in your repository and paste the following code:
  4210. onboarding.tutorial.with.gitlab_ci.variables.title=Add environment variables
  4211. onboarding.tutorial.with.gitlab_ci.variables.description.link=Settings > CI/CD > Variables
  4212. onboarding.tutorial.with.gitlab_ci.variables.section.title=Define the SonarQube Token environment variable.
  4213. onboarding.tutorial.with.gitlab_ci.variables.section.description=In GitLab, go to {link} to add the following variable and make sure it is available for your project:
  4214. onboarding.tutorial.with.gitlab_ci.variables.edit.token.tooltip=Use an existing token or generate a new one.
  4215. onboarding.tutorial.with.gitlab_ci.variables.step1=Key {value} {extra}
  4216. onboarding.tutorial.with.gitlab_ci.variables.step3=Uncheck the {value} checkbox.
  4217. onboarding.tutorial.with.gitlab_ci.variables.step3.value=Protect Variable
  4218. onboarding.tutorial.with.gitlab_ci.variables.section.step4=Check the {value} checkbox.
  4219. onboarding.tutorial.with.gitlab_ci.variables.section.step4.value=Mask Variable
  4220. onboarding.tutorial.with.gitlab_ci.variables.section2.title=Define the SonarQube URL environment variable.
  4221. onboarding.tutorial.with.gitlab_ci.variables.section2.description=Still in {link} add a new variable and make sure it is available for your project:
  4222. onboarding.tutorial.with.gitlab_ci.variables.section2.step4=Leave the {value} checkbox unchecked.
  4223. onboarding.tutorial.with.gitlab_ci.yaml.title=Create or update the configuration file
  4224. onboarding.tutorial.with.gitlab_ci.yaml.description=Create or update your {filename} file with the following content.
  4225. onboarding.tutorial.with.gitlab_ci.yaml.filename=.gitlab-ci.yml
  4226. onboarding.tutorial.with.gitlab_ci.yaml.baseconfig=Note that this is a minimal base configuration to run a SonarQube analysis on your main branch and merge requests, and fetch the vulnerability report (if applicable).
  4227. onboarding.tutorial.with.gitlab_ci.yaml.existing=If you already have a pipeline configured and running, you might want to add the example above to your existing yml file.
  4228. onboarding.tutorial.with.gitlab_ci.yaml.premium=GitLab vulnerability report is only available with GitLab Ultimate. You may safely remove the sonarqube-vulnerability-report stage if you have not subscribed to this service.
  4229. onboarding.tutorial.with.jenkins.title=Analyze your project with Jenkins
  4230. onboarding.tutorial.with.jenkins.alm_selection.title=Select your DevOps platform
  4231. onboarding.tutorial.with.jenkins.prereqs.title=Prerequisites
  4232. onboarding.tutorial.with.jenkins.prereqs.intro.sentence=To run your project analyses with Jenkins, the following plugins must be {installed} and {configured}.
  4233. onboarding.tutorial.with.jenkins.prereqs.intro.sentence.installed=installed
  4234. onboarding.tutorial.with.jenkins.prereqs.intro.sentence.configured=configured
  4235. onboarding.tutorial.with.jenkins.prereqs.plugins.branch_source.bitbucket=Bitbucket Branch Source plugin for Jenkins - version 2.7 or later
  4236. onboarding.tutorial.with.jenkins.prereqs.plugins.branch_source.bitbucketcloud=Bitbucket Branch Source plugin for Jenkins - version 2.7 or later
  4237. onboarding.tutorial.with.jenkins.prereqs.plugins.branch_source.github=GitHub Branch Source plugin for Jenkins - version 2.7.1 or later
  4238. onboarding.tutorial.with.jenkins.prereqs.plugins.branch_source.gitlab=GitLab Branch Source plugin for Jenkins - version 1.5.3 or later
  4239. onboarding.tutorial.with.jenkins.prereqs.plugins.gitlab_plugin=GitLab plugin for Jenkins - version 1.5.13 or later
  4240. onboarding.tutorial.with.jenkins.prereqs.plugins.sonar_scanner=SonarQube Scanner plugin for Jenkins - version 2.11 or later
  4241. onboarding.tutorial.with.jenkins.prereqs.step_by_step_guide=For a step by step guide on installing and configuring those plugins in Jenkins, visit the {link} documentation page.
  4242. onboarding.tutorial.with.jenkins.prereqs.step_by_step_guide.link=Analysis Prerequisites
  4243. onboarding.tutorial.with.jenkins.prereqs.following_are_recommendations=We recommend using the configuration in the following steps for the best results, but you can customize it as needed.
  4244. onboarding.tutorial.with.jenkins.prereqs.done=Configure Analysis
  4245. onboarding.tutorial.with.jenkins.multi_branch_pipeline.title=Create a Multibranch Pipeline Job
  4246. onboarding.tutorial.with.jenkins.multi_branch_pipeline.intro=Create a Multibranch Pipeline in order to automatically analyze all your branches and pull requests.
  4247. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step1.sentence=From Jenkins' dashboard, click {new_item} and create a {type}.
  4248. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step1.sentence.new_item=New Item
  4249. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step1.sentence.type=Multibranch Pipeline Job
  4250. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.sentence=Under {tab}, add a {source} source and enter the following information:
  4251. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.sentence.tab=Branch Sources
  4252. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.sentence.source=Bitbucket
  4253. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.server.label=Server
  4254. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.server.action=select the instance hosting the repository you want to analyze.
  4255. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.creds.label=Credentials
  4256. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.creds.action=select the Bitbucket Server credentials.
  4257. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.owner.label=Owner
  4258. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.owner.action=enter your project key.
  4259. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.repo.label=Repository
  4260. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.repo.action=select the repository you want to analyze.
  4261. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.sentence=Under {tab}, add a {source} source and enter the following information:
  4262. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.sentence.tab=Branch Sources
  4263. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.sentence.source=Bitbucket
  4264. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.server.label=Server
  4265. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.server.action=Make sure that Bitbucket Cloud is selected.
  4266. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.creds.label=Credentials
  4267. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.creds.action=select the Bitbucket Cloud credentials.
  4268. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.owner.label=Owner
  4269. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.owner.action=enter your workspace ID.
  4270. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.repo.label=Repository
  4271. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.repo.action=select the repository you want to analyze.
  4272. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.github.sentence=Under {tab}, add a {source} source and enter the following information:
  4273. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.github.sentence.tab=Branch Sources
  4274. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.github.sentence.source=GitHub
  4275. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.github.creds.label=Credentials
  4276. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.github.creds.action=select or add your GitHub credentials.
  4277. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.github.repo_url.label=Repository HTTPS URL
  4278. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.github.repo_url.action=enter your repository URL.
  4279. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.sentence=Under {tab}, add a {source} source and enter the following information:
  4280. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.sentence.tab=Branch Sources
  4281. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.sentence.source=GitLab Project
  4282. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.creds.label=Checkout Credentials
  4283. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.creds.action=select or add your GitLab credentials.
  4284. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.owner.label=Owner
  4285. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.owner.action=enter the name of your user or your group.
  4286. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.repo.label=Projects
  4287. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.repo.action=select your project.
  4288. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.label=Behaviors
  4289. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.branches_prs.action=Exclude branches that are also filed as PRs.
  4290. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.branches_prs.label=Discover branches
  4291. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.branches_mrs.action=Exclude branches that are also filed as MRs.
  4292. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.branches_mrs.label=Discover branches
  4293. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.discover_prs.action=The current pull request revision.
  4294. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.discover_prs.label=Discover pull requests from origin
  4295. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.discover_mrs.action=The current merge request revision.
  4296. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.discover_mrs.label=Discover merge requests from origin
  4297. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.ref_specs.label=Specify ref specs
  4298. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.ref_specs.add_behaviour.sentence=By default, this behavior is not active. If you do not see it, click on {add} to see the list of available behaviors, and select {ref_spec}.
  4299. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.ref_specs.add_behaviour.sentence.add=Add
  4300. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.ref_specs.add_behaviour.sentence.ref_spec=Specify ref specs
  4301. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.ref_specs.set_pr_ref_specs.sentence=In order to correctly compute new code for Pull Requests, the scanner will need the refs of the target branch. Make sure the {ref_spec} value will include any target branches (the default value should be enough). Example:
  4302. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.ref_specs.set_pr_ref_specs.sentence.ref_spec=Ref Spec
  4303. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.ref_specs.set_mr_ref_specs.sentence=In order to correctly compute new code for Merge Requests, the scanner will need the refs of the target branch. Make sure the {ref_spec} value will include any target branches (the default value should be enough). Example:
  4304. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.ref_specs.set_mr_ref_specs.sentence.ref_spec=Ref Spec
  4305. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.leave_defaults=You can leave the other Branch Source settings at the defaults.
  4306. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step3.sentence=Jump to the {tab} section and make sure the parameters are set as follows:
  4307. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step3.sentence.tab=Build Configuration
  4308. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step3.mode.label=Mode
  4309. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step3.mode.action=by Jenkinsfile
  4310. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step3.script_path.label=Script Path
  4311. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step3.script_path.action=Jenkinsfile
  4312. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step4.sentence=Click {save}.
  4313. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step4.sentence.save=Save
  4314. onboarding.tutorial.with.jenkins.pipeline.title=Create a Pipeline Job
  4315. onboarding.tutorial.with.jenkins.pipeline.intro=Create a Pipeline in order to automatically analyze your project.
  4316. onboarding.tutorial.with.jenkins.pipeline.step1.sentence=From Jenkins' dashboard, click {new_item} and create a {type}.
  4317. onboarding.tutorial.with.jenkins.pipeline.step1.sentence.new_item=New Item
  4318. onboarding.tutorial.with.jenkins.pipeline.step1.sentence.type=Pipeline Job
  4319. onboarding.tutorial.with.jenkins.pipeline.step2.sentence=Under {tab}, choose {option}. You must set a unique, secret token for this field.
  4320. onboarding.tutorial.with.jenkins.pipeline.step2.sentence.tab=Build Triggers
  4321. onboarding.tutorial.with.jenkins.pipeline.step2.sentence.option=Trigger builds remotely
  4322. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.trigger.sentence=Under {tab}, choose {option}. Write down the webhook URL provided. You will need it when configuring the webhook in GitLab.
  4323. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.trigger.sentence.tab=Build Triggers
  4324. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.trigger.sentence.option=Build when a change is pushed to GitLab
  4325. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.pick_triggers.sentence=Under {triggers}, only select {push_events}.
  4326. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.pick_triggers.sentence.triggers=Enabled GitLab triggers
  4327. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.pick_triggers.sentence.push_events=Push events
  4328. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.click_advanced.sentence=Click on {advanced}
  4329. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.click_advanced.sentence.advanced=Advanced...
  4330. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.secret_token.sentence=Find the {secret_token} text field, and click on {generate}. Write down the secret token. You will need it when configuring the webhook in GitLab.
  4331. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.secret_token.sentence.secret_token=Secret token
  4332. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.secret_token.sentence.generate=Generate
  4333. onboarding.tutorial.with.jenkins.pipeline.step3.sentence=Under {tab}, make sure the parameters are set as follows:
  4334. onboarding.tutorial.with.jenkins.pipeline.step3.sentence.tab=Pipeline
  4335. onboarding.tutorial.with.jenkins.pipeline.step3.definition.label=Definition
  4336. onboarding.tutorial.with.jenkins.pipeline.step3.definition.action=Pipeline script from SCM
  4337. onboarding.tutorial.with.jenkins.pipeline.step3.scm.sentence={label} Configure your SCM. Make sure to only build your main branch. For example, if your main branch is called "main", put "*/main" under {branches_to_build}.
  4338. onboarding.tutorial.with.jenkins.pipeline.step3.scm.sentence.label=SCM:
  4339. onboarding.tutorial.with.jenkins.pipeline.step3.scm.sentence.branches_to_build=Branches to build
  4340. onboarding.tutorial.with.jenkins.pipeline.step3.script_path.label=Script Path
  4341. onboarding.tutorial.with.jenkins.pipeline.step3.script_path.action=Jenkinsfile
  4342. onboarding.tutorial.with.jenkins.pipeline.step4.sentence=Click {save}.
  4343. onboarding.tutorial.with.jenkins.pipeline.step4.sentence.save=Save
  4344. onboarding.tutorial.with.jenkins.webhook.bitbucket.title=Create a Bitbucket Server Webhook
  4345. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.title=Create a Bitbucket Cloud Webhook
  4346. onboarding.tutorial.with.jenkins.webhook.github.title=Create a GitHub Webhook
  4347. onboarding.tutorial.with.jenkins.webhook.gitlab.title=Create a GitLab Webhook
  4348. onboarding.tutorial.with.jenkins.webhook.intro.sentence=Create a Webhook in your repository to trigger the Jenkins job on push. You may skip this step if you already have a Webhook configured.
  4349. onboarding.tutorial.with.jenkins.webhook.step1.sentence=Go to the {link} and enter the following information:
  4350. onboarding.tutorial.with.jenkins.webhook.bitbucket.step1.link=Bitbucket Server Webhook creation page for your repository
  4351. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step1.link=Bitbucket Cloud Webhook creation page for your repository
  4352. onboarding.tutorial.with.jenkins.webhook.github.step1.link=GitHub Webhook creation page for your repository
  4353. onboarding.tutorial.with.jenkins.webhook.gitlab.step1.link=GitLab Webhook creation page for your repository
  4354. onboarding.tutorial.with.jenkins.webhook.step1.name.label=Name
  4355. onboarding.tutorial.with.jenkins.webhook.step1.name.action=give a unique name.
  4356. onboarding.tutorial.with.jenkins.webhook.bitbucket.step1.url.label=URL
  4357. onboarding.tutorial.with.jenkins.webhook.bitbucket.step1.url.action=Enter the following URL, replacing the values between *** as needed:
  4358. onboarding.tutorial.with.jenkins.webhook.bitbucket.step1.url.warning=The Bitbucket Server URL must be identical to the one in your Jenkins configuration. Watch out for any missing or extra "/" at the end.
  4359. onboarding.tutorial.with.jenkins.webhook.github.step1.url.label=URL
  4360. onboarding.tutorial.with.jenkins.webhook.github.step1.url.action=Enter the following URL, replacing the values between *** as needed:
  4361. onboarding.tutorial.with.jenkins.webhook.gitlab.step1.url_with_branches.label=URL
  4362. onboarding.tutorial.with.jenkins.webhook.gitlab.step1.url_with_branches.action=Enter the following URL, replacing the values between *** as needed:
  4363. onboarding.tutorial.with.jenkins.webhook.gitlab.step1.url_no_branches.label=URL
  4364. onboarding.tutorial.with.jenkins.webhook.gitlab.step1.url_no_branches.action=Enter the URL you wrote down in the previous step.
  4365. onboarding.tutorial.with.jenkins.webhook.gitlab.step1.secret_token.label=Secret Token
  4366. onboarding.tutorial.with.jenkins.webhook.gitlab.step1.secret_token.action=Enter the generated token you wrote down in the previous step.
  4367. onboarding.tutorial.with.jenkins.webhook.bitbucket.step2.sentence=Under {events}, make sure the following options are checked:
  4368. onboarding.tutorial.with.jenkins.webhook.bitbucket.step2.sentence.events=Events
  4369. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step2.sentence=Under {triggers}, select {option} and make sure the following options are checked:
  4370. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step2.sentence.triggers=Triggers
  4371. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step2.sentence.option=Choose from a full list of triggers
  4372. onboarding.tutorial.with.jenkins.webhook.github.step2.sentence=Under {events} select {option} and check the following:
  4373. onboarding.tutorial.with.jenkins.webhook.github.step2.sentence.events=Which events would you like to trigger this webhook?
  4374. onboarding.tutorial.with.jenkins.webhook.github.step2.sentence.option=Let me select individual events
  4375. onboarding.tutorial.with.jenkins.webhook.gitlab.step2.sentence=Under {trigger} check the following:
  4376. onboarding.tutorial.with.jenkins.webhook.gitlab.step2.sentence.trigger=Trigger
  4377. onboarding.tutorial.with.jenkins.webhook.bitbucket.step2.repo.label=Repository
  4378. onboarding.tutorial.with.jenkins.webhook.bitbucket.step2.repo.action=Push
  4379. onboarding.tutorial.with.jenkins.webhook.bitbucket.step2.pr.label=Pull Request
  4380. onboarding.tutorial.with.jenkins.webhook.bitbucket.step2.pr.action=Opened
  4381. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step2.repo.label=Repository
  4382. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step2.repo.action=Push
  4383. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step2.pr.label=Pull Request
  4384. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step2.pr.action=Created
  4385. onboarding.tutorial.with.jenkins.webhook.github.step2.repo=Pushes
  4386. onboarding.tutorial.with.jenkins.webhook.github.step2.pr=Pull Requests
  4387. onboarding.tutorial.with.jenkins.webhook.gitlab.step2.repo=Push events
  4388. onboarding.tutorial.with.jenkins.webhook.gitlab.step2.mr=Merge request events
  4389. onboarding.tutorial.with.jenkins.webhook.github.step3.sentence=Click {add_webhook}.
  4390. onboarding.tutorial.with.jenkins.webhook.github.step3.sentence.add_webhook=Add webhook
  4391. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step3.sentence=Click {save}.
  4392. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step3.sentence.save=Save
  4393. onboarding.tutorial.with.jenkins.webhook.bitbucket.step3.sentence=Click {create}.
  4394. onboarding.tutorial.with.jenkins.webhook.bitbucket.step3.sentence.create=Create
  4395. onboarding.tutorial.with.jenkins.webhook.gitlab.step3.sentence=Click {add_webhook}.
  4396. onboarding.tutorial.with.jenkins.webhook.gitlab.step3.sentence.add_webhook=Add webhook
  4397. onboarding.tutorial.with.jenkins.jenkinsfile.title=Create a Jenkinsfile
  4398. onboarding.tutorial.with.jenkins.jenkinsfile.jenkinsfile_step.sentence=Create a {file} file in your repository and paste the following code:
  4399. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.replace.sentence=Make sure to replace {default} with the name you gave to your Maven tool {in_jenkins}.
  4400. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.replace.sentence.default=Default Maven
  4401. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.replace.sentence.in_jenkins=in Jenkins
  4402. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.help1.sentence=To get the name of your Maven tool in Jenkins, navigate to {path}.
  4403. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.help1.sentence.path=Manage Jenkins > Global Tool Configuration
  4404. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.help2.sentence=The name is located under the {path} section, in the {name} field.
  4405. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.help2.sentence.path=Maven > Maven installations
  4406. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.help2.sentence.name=Name
  4407. onboarding.tutorial.with.jenkins.jenkinsfile.gradle.step2.sentence=Add the following to your {groovy} or {kotlin} file:
  4408. onboarding.tutorial.with.jenkins.jenkinsfile.dotnet.build_agent=Choose your build agent.
  4409. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.title.sentence=Prerequisite: Add a {default_msbuild} tool.
  4410. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.title.sentence.default_msbuild=MSBuild
  4411. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.info=This step need to be done only once per jenkins instance.
  4412. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step1.sentence=In Jenkins, make sure to have the {msbuild} installed.
  4413. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step1.sentence.msbuild=MSBuild Plugin
  4414. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step2.sentence=Navigate to {path}.
  4415. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step2.sentence.path=Manage Jenkins > Global Tool Configuration
  4416. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step3.sentence=Under {msbuild} click on {add_msbuild} and give a {name} that will be used in the last step. Refer to the {msbuild_plugin} documentation on how to install the tool:
  4417. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step3.sentence.msbuild=MSBuild
  4418. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step3.sentence.msbuild_plugin=MSBuild Plugin
  4419. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step3.sentence.add_msbuild=Add MSBuild
  4420. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step3.sentence.name=Name
  4421. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.title.sentence=Prerequisite: Add a {default_scanner} tool.
  4422. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.title.sentence.default_scanner=SonarScanner for MSBuild
  4423. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.info=This step needs to be done only once per jenkins instance or if you need different scanner versions.
  4424. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step1.sentence=In Jenkins, navigate to {path}.
  4425. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step1.sentence.path=Manage Jenkins > Global Tool Configuration
  4426. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step2.sentence=Under {default_scanner} click on {add_scanner_for_msbuild}.
  4427. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step2.sentence.default_scanner=SonarScanner for MSBuild
  4428. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step2.sentence.add_scanner_for_msbuild=Add SonarScanner for MSBuild
  4429. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step3.sentence=Choose a {name} that will be used in the last step:
  4430. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step3.sentence.name=Name
  4431. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step4.sentence=Check {install_auto}
  4432. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step4.sentence.install_auto=Install automatically
  4433. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step5.sentence=Under {install_from} select the corresponding .NET Core scanner required for you project.
  4434. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step5.sentence.install_from=Install from GitHub
  4435. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step5.sentence.install_auto=Install automatically
  4436. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.replace.sentence=Make sure to replace {default} with the name you gave to your SonarQube Scanner tool {in_jenkins}.
  4437. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.replace.sentence.default=SonarScanner
  4438. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.replace.sentence.in_jenkins=in Jenkins
  4439. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.help1.sentence=To get the name of your SonarQube Scanner tool in Jenkins, navigate to {path}.
  4440. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.help1.sentence.path=Manage Jenkins > Global Tool Configuration
  4441. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.help2.sentence=The name is located under the {path} section, in the {name} field.
  4442. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.help2.sentence.path=SonarQube Scanner > SonarQube Scanner installations
  4443. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.help2.sentence.name=Name
  4444. onboarding.tutorial.with.jenkins.jenkinsfile.cfamilly.agent_setup=We assume the Jenkins agent has the necessary tools to build your project.
  4445. onboarding.tutorial.with.azure_pipelines.os=What is your agent host?
  4446. onboarding.tutorial.with.azure_pipelines.title=Analyze your project with Azure DevOps Pipelines
  4447. onboarding.tutorial.with.azure_pipelines.ExtensionInstallation.title=Install SonarQube extension for Azure DevOps
  4448. onboarding.tutorial.with.azure_pipelines.ExtensionInstallation.sentence=From your Azure DevOps instance, navigate to the Visual Studio Marketplace and install the {link} by clicking the {button} button.
  4449. onboarding.tutorial.with.azure_pipelines.ExtensionInstallation.sentence.link=SonarQube extension
  4450. onboarding.tutorial.with.azure_pipelines.ExtensionInstallation.sentence.button=Get it free
  4451. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.title=Add a new SonarQube Service Endpoint in your project
  4452. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step1.sentence=In Azure DevOps, go to {menu}.
  4453. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step1.sentence.menu=Project settings > Service connections
  4454. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step2.sentence=Add a new service connection of type {type}.
  4455. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step2.sentence.type=SonarQube
  4456. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step3.sentence=Enter your SonarQube server url: {url} {button}
  4457. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step4.sentence=Enter an existing token, or a newly generated one
  4458. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step5.sentence=Enter a memorable connection name.
  4459. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step6.sentence=Create the service connection.
  4460. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.title=Configure analysis
  4461. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.info=The following steps assume you are using the Azure Pipelines classic editor. Check out our {doc_link} for the YAML counterpart.
  4462. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.info.doc_link=Azure DevOps integration page
  4463. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build_wrapper.ccpp.sentence=In Azure DevOps, create or edit a build {pipeline} to make Build Wrapper available on the build agent.
  4464. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build_wrapper.ccpp.script.sentence=Add a {task} task, select {inline} mode and add the following script to download and decompress the Build Wrapper on the build agent.
  4465. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build_wrapper.ccpp.win.sentence.task=PowerShell script
  4466. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build_wrapper.ccpp.nix.sentence.task=Bash script
  4467. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build_wrapper.ccpp.win.sentence.inline=inline
  4468. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build_wrapper.ccpp.nix.sentence.inline=inline
  4469. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.ccpp.sentence=Add a new {task} task {before} your build task.
  4470. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare_additional.ccpp=In {additional} in the {advanced} section, add a new property to set the output directory to which the Build Wrapper should write its results: {property} {button}
  4471. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare_additional.ccpp.additional=Additional Properties
  4472. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare_additional.ccpp.advanced=Advanced
  4473. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build.ccpp.sentence=Add or modify your build {task} task. For the analysis to happen, your build has to be run through a command line so that it can be wrapped-up by the build-wrapper.
  4474. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build.ccpp.sentence.task=Command Line
  4475. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build_script.ccpp.sentence=Run {build_wrapper} executable. Pass in as the arguments (1) the output directory configured in the previous task and (2) the command that runs a clean build of your project (not an incremental build). Example:
  4476. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build_script.ccpp.sentence.build_wrapper=Build Wrapper
  4477. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.run.ccpp.sentence=Add a new {task} task {after} your build task. Consider running this task right after the previous one as the build environment should not be significantly altered before running the analysis.
  4478. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.sentence=In Azure DevOps, create or edit a build {pipeline} and add a new {task} task {before} your build task:
  4479. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.sentence.pipeline=Pipeline
  4480. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.sentence.task=Prepare Analysis Configuration
  4481. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.sentence.before=before
  4482. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.endpoint.sentence=Select the {endpoint} you created in Step 2.
  4483. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.endpoint.sentence.endpoint=SonarQube server endpoint
  4484. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.run_analysis=Under {section}, select {run_analysis_value}.
  4485. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.run_analysis.section=Choose the way to run the analysis
  4486. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.run_analysis.values.dotnet=Integrate with MSBuild
  4487. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.run_analysis.values.maven=Integrate with Maven or Gradle
  4488. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.run_analysis.values.gradle=Integrate with Maven or Gradle
  4489. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.run_analysis.values.cfamily=Use standalone scanner
  4490. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.run_analysis.values.other=Use standalone scanner
  4491. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.manual.sentence=Select the {mode} mode.
  4492. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.manual.sentence.mode=Manually provide configuration
  4493. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.run.sentence=Add a new {task} task {after} your build task.
  4494. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.run.sentence.task=Run Code Analysis
  4495. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.run.sentence.after=after
  4496. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.run.key.sentence=In the {project_key} field, enter {key} {button}
  4497. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.run.key.sentence.project_key=Project Key
  4498. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.advanced_properties.sentence=Expand the {section} and replace the {properties} with the following snippet
  4499. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.advanced_properties.sentence.section=Advanced section
  4500. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.advanced_properties.sentence.properties=Additional Properties
  4501. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java_installer.title=Add a new Java tool installer task:
  4502. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java_installer.sentence=Under {field}, select {value}
  4503. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java_installer.java_version=JDK version
  4504. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java_installer.or_higher=(or higher)
  4505. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java_installer.java_architecture=JDK architecture
  4506. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java_installer.java_source=JDK source
  4507. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java_installer.pre-installed=Pre-installed
  4508. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java=Edit or add a new {0} task:
  4509. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java.settings.sentence=Under {section}, check {option}
  4510. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java.settings.sentence.section=Code Analysis
  4511. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java.settings.sentence.option=Run SonarQube or SonarCloud Analysis
  4512. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.publish_qg.sentence=Add a new {task} task to publish SonarQube's Quality Gate results on your build pipeline summary.
  4513. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.publish_qg.info.sentence1=This task may increase your build time as your pipeline will have to wait for SonarQube to process the analysis report. It is highly recommended but optional.
  4514. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.publish_qg.sentence.task=Publish Quality Gate Result
  4515. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.continous_integration.sentence=Under the {tab} tab of your pipeline, check {continuous_integration} and select all the branches for which you want the SonarQube analysis to run automatically.
  4516. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.continous_integration.sentence.tab=Triggers
  4517. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.continous_integration.sentence.continuous_integration=Enable continuous integration
  4518. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.continous_integration.no_branches.sentence=Under the {tab} tab of your pipeline, check {continuous_integration} and select the main branch
  4519. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.continous_integration.no_branches.sentence.tab=Triggers
  4520. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.continous_integration.no_branches.sentence.continuous_integration=Enable continuous integration
  4521. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.branch_protection=To make sure your Pull Requests are analyzed automatically and aren't merged when they're failing their quality gate, check out the {link}.
  4522. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.branch_protection.link=documentation
  4523. onboarding.tutorial.no_scan_rights=You do not have permission to analyze this project. Please contact the project administrator.
  4524. #------------------------------------------------------------------------------
  4525. #
  4526. # BRANCHES
  4527. #
  4528. #------------------------------------------------------------------------------
  4529. branches.branch=Branch
  4530. branches.main_branch=Main Branch
  4531. branches.pr=PR
  4532. branches.see_the_pr=See the PR
  4533. branches.see_the_pr_on_x=See the PR on {0}
  4534. #------------------------------------------------------------------------------
  4535. #
  4536. # BRANCH-LIKE NAVIGATION
  4537. #
  4538. #------------------------------------------------------------------------------
  4539. branch_like_navigation.manage=Manage branches and Pull Requests
  4540. branch_like_navigation.search_for_branch_like=Search for branches or Pull Requests...
  4541. branch_like_navigation.pull_requests=Pull Requests
  4542. branch_like_navigation.orphan_pull_requests=Orphan Pull Requests
  4543. branch_like_navigation.orphan_pull_requests.tooltip=When the base of a Pull Request is deleted, this Pull Request becomes orphan.
  4544. branch_like_navigation.for_merge_into_x_from_y=for merge into {target} from {branch}
  4545. branch_like_navigation.for_merge_into_x_from_y.title=for merge into {0} from {1}
  4546. branch_like_navigation.no_branch_support.title=Get the most out of SonarQube with branch and PR/MR analysis
  4547. branch_like_navigation.no_branch_support.title.pr=Get the most out of SonarQube with branch and PR analysis
  4548. branch_like_navigation.no_branch_support.title.mr=Get the most out of SonarQube with branch and MR analysis
  4549. branch_like_navigation.no_branch_support.content=With Developer Edition you can analyze every pull/merge request. You can also watch the quality of your release branches by analyzing each one individually in SonarQube.
  4550. branch_like_navigation.no_branch_support.content_x.pr=With Developer Edition you can analyze every pull request and get the results in {0}. You can also watch the quality of your release branches by analyzing each one individually in SonarQube.
  4551. branch_like_navigation.no_branch_support.content_x.mr=With Developer Edition you can analyze every merge request and get the results in {0}. You can also watch the quality of your release branches by analyzing each one individually in SonarQube.
  4552. branch_like_navigation.only_one_branch.title=Learn how to analyze branches in SonarQube
  4553. branch_like_navigation.only_one_branch.content=Quickly set up branch analysis and get separate insights for each of your branches and Pull Requests.
  4554. branch_like_navigation.only_one_branch.documentation=Branches documentation
  4555. branch_like_navigation.only_one_branch.pr_analysis=Pull Request analysis
  4556. branch_like_navigation.tutorial_for_ci=Show me how to set up my CI
  4557. #------------------------------------------------------------------------------
  4558. #
  4559. # APPLICATIONS
  4560. #
  4561. #------------------------------------------------------------------------------
  4562. application.cannot_access_all_child_projects1=You must have access to all the projects within this Application in order to browse it.
  4563. application.cannot_access_all_child_projects2=Please contact your project administrator.
  4564. #------------------------------------------------------------------------------
  4565. #
  4566. # PORTFOLIOS
  4567. #
  4568. #------------------------------------------------------------------------------
  4569. portfolio.has_always_been_x=has always been {rating}
  4570. portfolio.was_x_y=was {rating} {date}
  4571. portfolio.x_in_y={project_branches} in {rating}
  4572. portfolio.project_branch=project branch
  4573. portfolio.project_branches=project branches
  4574. portfolio.has_qg_status=Has Quality Gate Status
  4575. portfolio.have_qg_status=Have Quality Gate Status
  4576. portfolio.empty=This portfolio is empty.
  4577. portfolio.no_lines_of_code=All projects in this portfolio are empty
  4578. portfolio.not_computed=This portfolio is not yet computed.
  4579. portfolio.app.empty=This application is empty.
  4580. portfolio.app.no_lines_of_code=All projects in this application are empty
  4581. portfolio.metric_trend=Metric trend
  4582. portfolio.lowest_rated_project_branches=Lowest rated project branches
  4583. portfolio.health_factors=Portfolio health factors
  4584. portfolio.activity_link=See full history of analyses
  4585. portfolio.measures_link=Measures
  4586. portfolio.language_breakdown_link=Language breakdown
  4587. portfolio.breakdown=Portfolio breakdown
  4588. portfolio.number_of_projects=Number of project branches
  4589. portfolio.number_of_lines=Number of lines of code
  4590. portfolio.metric_domain.vulnerabilities=Security Vulnerabilities
  4591. portfolio.metric_domain.security_hotspots=Security Review
  4592. #------------------------------------------------------------------------------
  4593. #
  4594. # METRIC DOMAINS HELP TEXT
  4595. #
  4596. #------------------------------------------------------------------------------
  4597. portfolio.metric_domain.releasability.help=Ratio of projects in the Portfolio that have passed the Quality Gate.
  4598. portfolio.metric_domain.reliability.help=Average Reliability rating for all projects in the portfolio.
  4599. portfolio.metric_domain.vulnerabilities.help=Average security rating for all projects in the portfolio.
  4600. portfolio.metric_domain.security_hotspots.help=Average security review rating for all projects in the portfolio.
  4601. portfolio.metric_domain.maintainability.help=Average maintainability rating for all projects in the portfolio.
  4602. #------------------------------------------------------------------------------
  4603. #
  4604. # ENCRYPTION
  4605. #
  4606. #------------------------------------------------------------------------------
  4607. encryption.form_intro=Secret key is registered. You can encrypt any property value with the following form:
  4608. encryption.form_note=Note that the secret key can be changed, but all the encrypted properties will have to be updated. {moreInformationLink}
  4609. encryption.encrypted_value=Encrypted Value:
  4610. encryption.generate_secret_key=Generate Secret Key
  4611. encryption.generate_new_secret_key=Generate New Secret Key
  4612. encryption.encrypt=Encrypt
  4613. encryption.secret_key_description=Secret key is required to be able to encrypt properties. {moreInformationLink}
  4614. encryption.secret_key=Secret Key
  4615. encryption.how_to_use=How To Use
  4616. encryption.how_to_use.content1=Store the secret key in the file {secret_file} of the server. This file can be relocated by defining the property {property} in {propreties_file}
  4617. encryption.how_to_use.content2=Restrict access to this file by making it readable and by owner only
  4618. encryption.how_to_use.content3=Restart the server if the property {property} has been set or changed.
  4619. encryption.how_to_use.content4=For each property that you want to encrypt, generate the encrypted value and replace the original value wherever it is stored (configuration files, command lines).
  4620. #------------------------------------------------------------------------------
  4621. #
  4622. # USERS
  4623. #
  4624. #------------------------------------------------------------------------------
  4625. users.page=Users
  4626. users.page.description=Create and administer individual users.
  4627. users.page.managed_description=Your instance is managed by {provider}. No modification is allowed except for tokens and SCM account information. You can still delete local users. All other operations should be done on your identity provider. See {link} for help managing users.
  4628. users.info=User
  4629. users.deactivate=Deactivate
  4630. users.deactivate_user=Deactivate User
  4631. users.deactivate_user.confirmation=Are you sure you want to deactivate "{0} ({1})"?
  4632. users.delete_user=Delete user's personal information
  4633. users.delete_user.help=A user account cannot be reactivated once their personal information is deleted. {link}
  4634. users.delete_user.help.link=Learn more
  4635. users.delete_user.documentation=Authentication
  4636. users.create_user=Create User
  4637. users.create_user.scm_account_new=New SCM account
  4638. users.create_user.scm_account_x=SCM account '{0}'
  4639. users.update=Update users
  4640. users.list=Users list
  4641. users.update_user=Update User
  4642. users.cannot_update_delegated_user=You cannot update the name and email of this user, as it is controlled by an external identity provider.
  4643. users.minimum_x_characters=Minimum {0} characters
  4644. users.email=Email
  4645. users.last_connection=Last connection
  4646. users.last_sonarlint_connection=Last SonarLint connection
  4647. users.last_sonarlint_connection.help_text=The time of the last connection from SonarLint indicates that the user used SonarLint in connected mode.
  4648. users.update_users_groups=Update {0}'s group membership
  4649. users.update_groups=Update Groups
  4650. users.manage_user=Update {0}
  4651. users.update_tokens=Update tokens
  4652. users.update_tokens_for_x=Update tokens for user {0}
  4653. users.user_name=Name
  4654. users.add=Add user
  4655. users.remove=Remove user
  4656. users.search_description=Search users by login or name
  4657. users.activity_filter.label=Filter users by activity
  4658. users.activity_filter.placeholder=All users
  4659. users.activity_filter.helptext.sonarqube=Users are considered active if they connected to SonarQube at least once in the past 30 days.
  4660. users.activity_filter.helptext.sonarlint=Users are considered active with SonarLint if they used SonarLint in connected mode at least once in the past 30 days.
  4661. users.activity_filter.all_users=All users
  4662. users.activity_filter.active_sonarlint_users=Active users with SonarLint
  4663. users.activity_filter.active_sonarqube_users=Active users without SonarLint
  4664. users.activity_filter.inactive_users=Inactive users
  4665. users.tokens=Tokens
  4666. users.user_X_tokens=Tokens of {user}
  4667. users.tokens.sure=Sure?
  4668. users.tokens.sure_X=Are you sure you want to revoke token {token}?
  4669. users.tokens.revoke=Revoke
  4670. users.tokens.revoke_label=Revoke token {0}
  4671. users.tokens.remove_label=Remove expired token {0}
  4672. users.no_tokens=No tokens
  4673. users.generate=Generate
  4674. users.tokens.PROJECT_ANALYSIS_TOKEN=Project Analysis Token
  4675. users.tokens.PROJECT_ANALYSIS_TOKEN.short=Project
  4676. users.tokens.GLOBAL_ANALYSIS_TOKEN=Global Analysis Token
  4677. users.tokens.GLOBAL_ANALYSIS_TOKEN.short=Global
  4678. users.tokens.USER_TOKEN=User Token
  4679. users.tokens.USER_TOKEN.short=User
  4680. users.tokens.generate=Generate Tokens
  4681. users.tokens.name=Name
  4682. users.tokens.enter_name=Enter Token Name
  4683. users.tokens.type=Type
  4684. users.tokens.select_type=Select Token Type
  4685. users.tokens.project=Project
  4686. users.tokens.select_project=Select Project
  4687. users.tokens.expires_in=Expires in
  4688. users.tokens.expiration.30=30 days
  4689. users.tokens.expiration.90=90 days
  4690. users.tokens.expiration.365=1 year
  4691. users.tokens.expiration.0=No expiration
  4692. users.tokens.new_token_created=New token "{0}" has been created. Make sure you copy it now, you won't be able to see it again!
  4693. users.generate_new_token=Generate New Token
  4694. users.new_token=New token value
  4695. users.change_admin_password.page=Change password
  4696. users.change_admin_password.instance_is_at_risk=Secure your SonarQube instance
  4697. users.change_admin_password.header=Default Administrator credentials are still used
  4698. users.change_admin_password.description=Your SonarQube instance is still using default administrator credentials. You must change the password for the 'admin' account to secure your SonarQube instance.
  4699. users.change_admin_password.form.header=Change the password for user 'admin'
  4700. users.change_admin_password.form.password=New password for user 'admin'
  4701. users.change_admin_password.form.confirm=Confirm password for user 'admin'
  4702. users.change_admin_password.form.cannot_use_default_password=You must choose a password that is different from the default password.
  4703. users.change_admin_password.form.success=The admin user's password was successfully changed.
  4704. users.change_admin_password.form.continue_to_app=Continue to SonarQube
  4705. users.filter.by=Filter by
  4706. #------------------------------------------------------------------------------
  4707. #
  4708. # GROUPS
  4709. #
  4710. #------------------------------------------------------------------------------
  4711. user_groups.page=Groups
  4712. user_groups.page.description=Create and administer groups of users.
  4713. user_groups.page.group_header=Name
  4714. user_groups.page.managed_description=Your instance is managed by {provider}. No modification is allowed. You can still delete local groups. All other operations should be done on your identity provider. See {link} for help managing groups.
  4715. user_groups.anyone.description=Anybody who browses the application belongs to this group. If authentication is not enforced, assigned permissions also apply to non-authenticated users.
  4716. groups.delete_group=Delete Group
  4717. groups.delete_group.confirmation=Are you sure you want to delete "{0}"?
  4718. groups.create_group=Create Group
  4719. groups.update_group=Update Group
  4720. groups.users.edit=Change {0} members
  4721. groups.users.view=View {0} members
  4722. groups.edit=Edit {0}
  4723. group_membership.remove_user.error=User {0} is not a member of group {1}
  4724. #------------------------------------------------------------------------------
  4725. #
  4726. # MAINTENANCE
  4727. #
  4728. #------------------------------------------------------------------------------
  4729. maintenance.page=Maintenance
  4730. maintenance.upgrade_failed=Upgrade Failed
  4731. maintenance.upgrade_failed.text=Database connection cannot be established. Please check database status and JDBC settings.
  4732. maintenance.migration_not_supported=Migration not supported
  4733. maintenance.migration_not_supported.text=Migration is not supported on embedded databases.
  4734. maintenance.upgrade_database=Upgrade Database
  4735. maintenance.upgrade_database.1=The database upgrade can take several minutes.
  4736. maintenance.upgrade_database.2=It is mandatory to back up database before upgrading.
  4737. maintenance.upgrade_database.3=Make sure you have followed the steps from the SonarQube Upgrade guide.
  4738. maintenance.upgrade=Upgrade
  4739. maintenance.database_migration=Database Migration
  4740. maintenance.database_is_up_to_date=Database is up-to-date
  4741. maintenance.is_down={instance} is down
  4742. maintenance.sonarqube_is_down.text=Something went wrong. Please contact your system administrator.
  4743. maintenance.try_again=Try Again
  4744. maintenance.is_under_maintenance={instance} is under maintenance
  4745. maintenance.sonarqube_is_under_maintenance.1=While waiting, install {link} in your IDE!
  4746. maintenance.sonarqube_is_under_maintenance_link.1=SonarLint
  4747. maintenance.sonarqube_is_under_maintenance.2=If you are an administrator and have no idea why this message is being shown, you should read the {link}.
  4748. maintenance.sonarqube_is_under_maintenance_link.2=upgrade guide
  4749. maintenance.is_starting={instance} is starting
  4750. maintenance.is_up={instance} is up
  4751. maintenance.all_systems_opetational=All systems operational.
  4752. maintenance.is_offline={instance} is offline
  4753. maintenance.sonarqube_is_offline.text=The connection to SonarQube is lost. Please contact your system administrator.
  4754. #------------------------------------------------------------------------------
  4755. #
  4756. # INDEXING
  4757. #
  4758. #------------------------------------------------------------------------------
  4759. indexation.in_progress=Reindexing in progress.
  4760. indexation.details_unavailable=Details are unavailable until this process is complete.
  4761. indexation.link_unavailable=The link to these results is unavailable until this process is complete.
  4762. indexation.features_partly_available=Most features are available. Some details only show upon completion. {link}
  4763. indexation.features_partly_available.link=More info
  4764. indexation.progression={0} out of {1} projects reindexed.
  4765. indexation.progression_with_error={0} out of {1} projects reindexed with some {link}.
  4766. indexation.progression_with_error.link=tasks failing
  4767. indexation.completed=All project data has been reloaded.
  4768. indexation.completed_with_error=SonarQube completed the reload of project data. Some {link} causing some projects to remain unavailable.
  4769. indexation.completed_with_error.link=tasks failed or canceled
  4770. indexation.admin_link=See {link} for more information.
  4771. indexation.page_unavailable.title.issues=Issues page is temporarily unavailable
  4772. indexation.page_unavailable.title.portfolios=Portfolios page is temporarily unavailable
  4773. indexation.page_unavailable.title={componentQualifier} {componentName} is temporarily unavailable
  4774. indexation.page_unavailable.description=SonarQube is reindexing project data.
  4775. indexation.page_unavailable.description.additional_information=This page is unavailable until this process is complete. {link}
  4776. indexation.filter_unavailable.description=This filter is unavailable until this process is complete.
  4777. indexation.learn_more=Learn more:
  4778. indexation.reindexing=Reindexing
  4779. indexation.filters_unavailable=Some filters are unavailable until this process is complete. {link}
  4780. #------------------------------------------------------------------------------
  4781. #
  4782. # HOMEPAGE
  4783. #
  4784. #------------------------------------------------------------------------------
  4785. homepage.current=This page is your homepage. Click to revert to the default homepage. Click on the top-left logo to find it anytime.
  4786. homepage.current.is_default=This page is your homepage. Click on the top-left logo to find it anytime.
  4787. homepage.check=Click to make the current page your homepage.
  4788. #------------------------------------------------------------------------------
  4789. #
  4790. # FAVORITE
  4791. #
  4792. #------------------------------------------------------------------------------
  4793. favorite.action.TRK.add=Add this project to favorites
  4794. favorite.action.TRK.remove=Remove this project from favorites
  4795. favorite.action.VW.add=Add this portfolio to favorites
  4796. favorite.action.VW.remove=Remove this portfolio from favorites
  4797. favorite.action.SVW.add=Add this sub-portfolio to favorites
  4798. favorite.action.SVW.remove=Remove this sub-portfolio from favorites
  4799. favorite.action.APP.add=Add this application to favorites
  4800. favorite.action.APP.remove=Remove this application from favorites
  4801. favorite.action.TRK.add_x=Add project {0} to favorites
  4802. favorite.action.TRK.remove_x=Remove project {0} from favorites
  4803. favorite.action.VW.add_x=Add portfolio {0} to favorites
  4804. favorite.action.VW.remove_x=Remove portfolio {0} from favorites
  4805. favorite.action.SVW.add_x=Add sub-portfolio {0} to favorites
  4806. favorite.action.SVW.remove_x=Remove sub-portfolio {0} from favorites
  4807. favorite.action.APP.add_x=Add application {0} to favorites
  4808. favorite.action.APP.remove_x=Remove application {0} from favorites
  4809. #------------------------------------------------------------------------------
  4810. #
  4811. # WEBHOOKS
  4812. #
  4813. #------------------------------------------------------------------------------
  4814. webhooks.page=Webhooks
  4815. webhooks.create=Create Webhook
  4816. webhooks.delete=Delete Webhook
  4817. webhooks.delete.confirm=Are you sure you want to delete the webhook "{0}"?
  4818. webhooks.description0=Webhooks are used to notify external services when a project analysis is done.
  4819. webhooks.description1=An HTTP POST request including a JSON payload is sent to each of the provided URLs. Learn more in the {url}.
  4820. webhooks.deliveries.show=Show recent deliveries
  4821. webhooks.show_actions=Show actions for webhook {0}
  4822. webhooks.deliveries_for_x=Recent deliveries of {0}
  4823. webhooks.delivery.duration_x=Duration: {0}
  4824. webhooks.delivery.payload=Payload:
  4825. webhooks.delivery.response_x=Response: {0}
  4826. webhooks.delivery.server_unreachable=Server Unreachable
  4827. webhooks.documentation_link=Webhooks documentation
  4828. webhooks.last_execution=Last delivery
  4829. webhooks.last_execution.none=Never
  4830. webhooks.last_execution.open_for_x=Open last delivery of {0}
  4831. webhooks.latest_delivery_for_x=Last delivery of {0}
  4832. webhooks.maximum_reached=You reached your maximum number of {0} webhooks. You can still update or delete an existing one.
  4833. webhooks.name=Name
  4834. webhooks.name.required=Name is required.
  4835. webhooks.no_result=No webhook defined.
  4836. webhooks.update=Update Webhook
  4837. webhooks.secret=Secret
  4838. webhooks.secret_header=Has secret?
  4839. webhooks.secret.bad_format=Secret must have a maximum length of 200 characters
  4840. webhooks.secret.description=If provided, secret will be used as the key to generate the HMAC hex (lowercase) digest value in the 'X-Sonar-Webhook-HMAC-SHA256' header.
  4841. webhooks.secret.description.update=If blank, any secret previously configured will be removed. If not set, the secret will remain unchanged.
  4842. webhooks.secret.field_mask.description=Hidden for security reasons: {link}.
  4843. webhooks.secret.field_mask.link= edit secret
  4844. webhooks.url=URL
  4845. webhooks.url.bad_format=Bad format of URL.
  4846. webhooks.url.bad_protocol=URL must start with "http://" or "https://".
  4847. webhooks.url.description=Server endpoint that will receive the webhook payload, for example: "http://my_server/foo". If HTTP Basic authentication is used, HTTPS is recommended to avoid man in the middle attacks. Example: "https://myLogin:myPassword@my_server/foo"
  4848. webhooks.url.required=URL is required.
  4849. #------------------------------------------------------------------------------
  4850. #
  4851. # COMPONENT REPORT
  4852. #
  4853. #------------------------------------------------------------------------------
  4854. component_report.report={0} PDF report
  4855. component_report.download=Download {0} PDF report
  4856. component_report.no_email_to_subscribe=Email subscription requires an email address.
  4857. component_report.subscribe_x=Subscribe to {0} report
  4858. component_report.unsubscribe_x=Unsubscribe from {0} report
  4859. component_report.unsubscribe=Unsubscribe from report
  4860. component_report.unsubscribe.description=If you no longer wish to receive these reports via email, you can unsubscribe by clicking on the button below.
  4861. component_report.subscribe_x_success=Subscription successful. You will receive a {0} report for this {1} by email.
  4862. component_report.unsubscribe_x_success=Subscription successfully canceled. You won't receive a {0} report for this {1} by email.
  4863. component_report.unsubscribe_success=Subscription successfully canceled. You won't receive these reports by email anymore.
  4864. #------------------------------------------------------------------------------
  4865. #
  4866. # GUIDING
  4867. #
  4868. #------------------------------------------------------------------------------
  4869. guiding.issue_list.1.title=Introducing Clean Code Attributes
  4870. guiding.issue_list.1.content.1=Clean Code attributes are the characteristics that your code must have to be considered Clean Code.
  4871. guiding.issue_list.1.content.2=You can now filter by these attributes to evaluate why your code is breaking away from being clean.
  4872. guiding.issue_list.2.title=Introducing Software Qualities
  4873. guiding.issue_list.2.content.1=A software quality is a characteristic of software that contributes to its lasting value.
  4874. guiding.issue_list.2.content.2=You can now filter by these qualities to evaluate the areas in your software that are impacted by the introduction of code that isn't clean.
  4875. guiding.issue_list.3.title=Severity and Software Qualities
  4876. guiding.issue_list.3.content.1=Severities are now directly tied to the software quality impacted. This means that one software quality impacted has one severity.
  4877. guiding.issue_list.3.content.2=There are only 3 levels: high, medium, and low.
  4878. guiding.issue_list.4.title=Type and old severity deprecated
  4879. guiding.issue_list.4.content.1=Issue types and the old severities are deprecated and can no longer be modified.
  4880. guiding.issue_list.4.content.2=You can now filter issues by:
  4881. guiding.issue_list.4.content.list.1=Clean Code Attributes
  4882. guiding.issue_list.4.content.list.2=Software Qualities
  4883. guiding.issue_list.4.content.list.3=The severity of the software quality
  4884. guiding.issue_list.5.title=Learn more
  4885. guiding.issue_list.5.content=You can learn more about the approach to Clean Code in the {link}
  4886. guiding.issue_accept.1.title=Simplified issue lifecycle
  4887. guiding.issue_accept.1.content.1=Issue resolution and Issue status are now merged and there are only 5 possible statuses: Open, Accepted, False Positive, Confirmed and Fixed.
  4888. guiding.issue_accept.2.title=Won't Fix becomes Accept
  4889. guiding.issue_accept.2.content.1=Won't Fix is now called Accept and it keeps the same behaviour for now.
  4890. guiding.issue_accept.2.content.2=In the future, Accepting issues will be counted as technical debt.
  4891. guiding.issue_accept.2.content.link=Learn more about this status
  4892. guiding.issue_accept.3.title=Confirm and Fixed deprecated
  4893. guiding.issue_accept.3.content.1=Marking issues as Confirmed and Fixed is now deprecated.
  4894. guiding.issue_accept.3.content.2=Consider Accepting issues, assigning the issue or using comments and tags instead.
  4895. guiding.issue_accept.3.content.link=Learn more about issues statuses
  4896. guiding.step_x_of_y={0} of {1}