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 263KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392
  1. #------------------------------------------------------------------------------
  2. #
  3. # GENERIC WORDS, sorted alphabetically
  4. #
  5. #------------------------------------------------------------------------------
  6. action=Action
  7. actions=Actions
  8. active=Active
  9. activate=Activate
  10. add_verb=Add
  11. admin=Admin
  12. after=After
  13. apply=Apply
  14. all=All
  15. and=And
  16. anonymous=Anonymous
  17. any=Any
  18. ascending=Ascending
  19. assignee=Assignee
  20. author=Author
  21. billion=Billion
  22. bitbucket=Bitbucket
  23. back=Back
  24. backup=Backup
  25. backup_verb=Back up
  26. best=Best
  27. beta=BETA
  28. blocker=Blocker
  29. bold=Bold
  30. branch=Branch
  31. by_=by
  32. calendar=Calendar
  33. cancel=Cancel
  34. category=Category
  35. changelog=Changelog
  36. change_verb=Change
  37. check_all=Check all
  38. class=Class
  39. classes=Classes
  40. close=Close
  41. closed=Closed
  42. code=Code
  43. color=Color
  44. collapse_all=Collapse all
  45. compare=Compare
  46. component=Component
  47. configure=Configure
  48. confirm=Confirm
  49. continue=Continue
  50. copy=Copy
  51. create=Create
  52. create_new_element=Create new element
  53. created=Created
  54. created_on=Created on
  55. critical=Critical
  56. current=current
  57. current_noun=Current
  58. customize=Customize
  59. date=Date
  60. days=Days
  61. default=Default
  62. delete=Delete
  63. deprecated=Deprecated
  64. descending=Descending
  65. description=Description
  66. directories=Directories
  67. directory=Directory
  68. dismiss=Dismiss
  69. dismiss_permanently=Dismiss permanently
  70. display=Display
  71. documentation=documentation
  72. download_verb=Download
  73. duplications=Duplications
  74. end_date=End Date
  75. edit=Edit
  76. error=Error
  77. events=Events
  78. example=Example
  79. expand_all=Expand all
  80. explore=Explore
  81. extend=Extend
  82. false=False
  83. favorite=Favorite
  84. field_required=This field is required
  85. fields_marked_with_x_required=All fields marked with {star} are required
  86. file=File
  87. files=Files
  88. filters=Filters
  89. follow=Follow
  90. format=Format
  91. from=From
  92. global=Global
  93. github=GitHub
  94. help=Help
  95. here=here
  96. hide=Hide
  97. inactive=Inactive
  98. info=Info
  99. issue=Issue
  100. issues=Issues
  101. inheritance=Inheritance
  102. internal=internal
  103. key=Key
  104. language=Language
  105. last_analysis=Last Analysis
  106. learn_more=Learn More
  107. library=Library
  108. line_number=Line Number
  109. links=Links
  110. list_of_issues=List of issues
  111. list_of_projects=List of projects
  112. load_more=Load more
  113. load_verb=Load
  114. login=Login
  115. major=Major
  116. manual=Manual
  117. max=Max
  118. max_results_reached=Only the first {0} results are displayed
  119. me=Me
  120. members=Members
  121. min=Min
  122. minor=Minor
  123. more=More
  124. more_x={0} more
  125. more_actions=More Actions
  126. my_issues=My Issues
  127. my_favorite=My Favorite
  128. my_favorites=My Favorites
  129. my_projects=My Projects
  130. name=Name
  131. navigation=Navigation
  132. never=Never
  133. new=New
  134. new_name=New name
  135. none=None
  136. no_tags=No tags
  137. not_now=Not now
  138. off=Off
  139. on=On
  140. or=Or
  141. open=Open
  142. optional=Optional
  143. order=Order
  144. owner=Owner
  145. parameters=Parameters
  146. password=Password
  147. path=Path
  148. permalink=Permanent Link
  149. plugin=Plugin
  150. project=Project
  151. project_x=Project: {0}
  152. projects=Projects
  153. projects_=project(s)
  154. x_projects_={0} project(s)
  155. project_plural=projects
  156. projects_management=Projects Management
  157. quality_profile=Quality Profile
  158. raw=Raw
  159. recent_history=Recent History
  160. recently_browsed=Recently Browsed
  161. recommended=Recommended
  162. refresh=Refresh
  163. reload=Reload
  164. remove=Remove
  165. rename=Rename
  166. replaces=Replaces
  167. reset_verb=Reset
  168. reset_to_default=Reset To Default
  169. resolution=Resolution
  170. restart=Restart
  171. restore=Restore
  172. result=Result
  173. results=Results
  174. x_results={0} results
  175. review=Review
  176. rule=Rule
  177. rules=Rules
  178. save=Save
  179. search_results=Search results
  180. search_verb=Search
  181. secondary=Secondary
  182. see_all=See all
  183. see_x=See {0}
  184. select_verb=Select
  185. selected=Selected
  186. select_tags=Add or remove tags
  187. set=Set
  188. set_up=Set Up
  189. severity=Severity
  190. shared=Shared
  191. show_all=Show all
  192. start_date=Start Date
  193. x_show={0} shown
  194. x_selected={0} selected
  195. x_of_y_shown={0} of {1} shown
  196. size=Size
  197. skip=Skip
  198. skip_to_content=Skip to main content
  199. status=Status
  200. support=Support
  201. success=Success
  202. table=Table
  203. tags=Tags
  204. tags_list_x=Tags list: {0}
  205. technical_debt=Technical Debt
  206. template=Template
  207. title=Title
  208. to=To
  209. to_=to
  210. total=Total
  211. treemap=Treemap
  212. true=True
  213. type=Type
  214. unassigned=Not assigned
  215. uncheck_all=Uncheck all
  216. unit_test=Unit test
  217. unit_tests=Unit tests
  218. unknown=Unknown
  219. unresolved=Unresolved
  220. updated=Updated
  221. updated_on=Updated on
  222. update_verb=Update
  223. updating=Updating
  224. unselected=Unselected
  225. user=User
  226. value=Value
  227. variation=Variation
  228. version=Version
  229. view=View
  230. views=Views
  231. violations=Violations
  232. visibility=Visibility
  233. warnings=Warnings
  234. with=With
  235. worst=Worst
  236. yes=Yes
  237. no=No
  238. valid_input=Valid input
  239. #------------------------------------------------------------------------------
  240. #
  241. # GENERIC EXPRESSIONS, sorted alphabetically
  242. #
  243. #------------------------------------------------------------------------------
  244. 404_not_found=404 Not found
  245. address_mistyped_or_page_moved=You may have mistyped the address or the page may have moved.
  246. and_worse=and worse
  247. are_you_sure=Are you sure?
  248. as_explained_here=as explained here
  249. assigned_to=Assigned to
  250. bulk_change=Bulk Change
  251. bulleted_point=Bulleted point
  252. clear=Clear
  253. clear_x_filter=Clear {0} Filters
  254. clear_all_filters=Clear All Filters
  255. coding_rules=Rules
  256. copy_to_clipboard=Click to copy to clipboard
  257. copied_action=Copied to clipboard
  258. created_by=Created by
  259. default_error_message=The request cannot be processed. Try again later.
  260. default_severity=Default severity
  261. edit_permissions=Edit Permissions
  262. facet_might_have_more_results=There might be more results, try another set of filters to see them.
  263. false_positive=False positive
  264. go_back_to_homepage=Go back to the homepage
  265. last_analysis_before=Last analysis before
  266. less_than_1_hour_ago=< 1 hour ago
  267. logging_out=You're logging out, please wait...
  268. manage=Manage
  269. management=Management
  270. more_information=More information
  271. new_violations=New violations
  272. new_window=New window
  273. no_data=No data
  274. no_results=No results
  275. no_results_for_x=No results for "{0}"
  276. no_results_search=We couldn't find any results matching selected criteria.
  277. no_results_search.favorites=We couldn't find any results matching selected criteria in your favorites.
  278. no_results_search.2=Try to change filters to get some results.
  279. no_results_search.favorites.2=Would you like to search among {url} projects?
  280. opens_in_new_window=Opens in a new window
  281. page_extension_failed=Page extension failed.
  282. page_not_found=The page you were looking for does not exist.
  283. please_contact_administrator=Please contact the instance administrator.
  284. set_as_default=Set as Default
  285. short_number_suffix.g=G
  286. short_number_suffix.k=k
  287. short_number_suffix.m=M
  288. show_less=Show Less
  289. show_more=Show More
  290. show_all=Show All
  291. show_them=Show Them
  292. should_be_unique=Should be unique
  293. since_x=since {0}
  294. since_version=since version {0}
  295. since_version.short={0}
  296. since_version_detailed=since version {0} ({1})
  297. since_version_detailed.short={0} ({1})
  298. since_previous_version=since previous version
  299. since_previous_version.short=\u0394 version
  300. since_previous_version_detailed=since previous version ({0} - {1})
  301. since_previous_version_with_only_date=since previous version ({0})
  302. since_previous_version_detailed.short=\u0394 version ({0})
  303. this_name_is_already_taken=This name is already taken.
  304. update_details=Update details
  305. work_duration.x_days={0}d
  306. work_duration.x_hours={0}h
  307. work_duration.x_minutes={0}min
  308. work_duration.about=~ {0}
  309. #------------------------------------------------------------------------------
  310. #
  311. # CALENDAR
  312. #
  313. #------------------------------------------------------------------------------
  314. Done=Done
  315. Prev=Prev
  316. Next=Next
  317. Today=Today
  318. January=January
  319. February=February
  320. March=March
  321. April=April
  322. May=May
  323. June=June
  324. July=July
  325. August=August
  326. September=September
  327. October=October
  328. November=November
  329. December=December
  330. Jan=Jan
  331. Feb=Feb
  332. Mar=Mar
  333. Apr=Apr
  334. Jun=Jun
  335. Jul=Jul
  336. Aug=Aug
  337. Sep=Sep
  338. Oct=Oct
  339. Nov=Nov
  340. Dec=Dec
  341. Sunday=Sunday
  342. Monday=Monday
  343. Tuesday=Tuesday
  344. Wednesday=Wednesday
  345. Thursday=Thursday
  346. Friday=Friday
  347. Saturday=Saturday
  348. Sun=Sun
  349. Mon=Mon
  350. Tue=Tue
  351. Wed=Wed
  352. Thu=Thu
  353. Fri=Fri
  354. Sat=Sat
  355. Su=Su
  356. Mo=Mo
  357. Tu=Tu
  358. We=We
  359. Th=Th
  360. Fr=Fr
  361. Sa=Sa
  362. select_month=Select a month
  363. select_year=Select a year
  364. #------------------------------------------------------------------------------
  365. #
  366. # ALM
  367. #
  368. #------------------------------------------------------------------------------
  369. alm.azure=Azure DevOps
  370. alm.azure.short=Azure DevOps
  371. alm.bitbucket=Bitbucket
  372. alm.bitbucket.short=Bitbucket
  373. alm.bitbucket.long=Bitbucket Server
  374. alm.bitbucketcloud=Bitbucket
  375. alm.bitbucketcloud.short=Bitbucket
  376. alm.bitbucketcloud.long=Bitbucket Cloud
  377. alm.github=GitHub
  378. alm.github.short=GitHub
  379. alm.gitlab=GitLab
  380. alm.gitlab.short=GitLab
  381. #------------------------------------------------------------------------------
  382. #
  383. # RESOURCE QUALIFIERS
  384. #
  385. #------------------------------------------------------------------------------
  386. qualifier.TRK=Project
  387. qualifier.DIR=Directory
  388. qualifier.PAC=Package
  389. qualifier.VW=Portfolio
  390. qualifier.SVW=Portfolio
  391. qualifier.APP=Application
  392. qualifier.FIL=File
  393. qualifier.CLA=File
  394. qualifier.UTS=Test File
  395. qualifier.DEV=Developer
  396. qualifier.configuration.TRK=Project Configuration
  397. qualifier.configuration.VW=Portfolio Configuration
  398. qualifier.configuration.SVW=Portfolio Configuration
  399. qualifier.configuration.APP=Application Configuration
  400. qualifiers.TRK=Projects
  401. qualifiers.DIR=Directories
  402. qualifiers.PAC=Packages
  403. qualifiers.VW=Portfolios
  404. qualifiers.SVW=Portfolios
  405. qualifiers.APP=Applications
  406. qualifiers.FIL=Files
  407. qualifiers.CLA=Files
  408. qualifiers.UTS=Test Files
  409. qualifiers.DEV=Developers
  410. qualifiers.all.TRK=All Projects
  411. qualifiers.all.VW=All Portfolios
  412. qualifiers.all.DEV=All Developers
  413. qualifiers.all.APP=All Applications
  414. qualifiers.new.TRK=New Project
  415. qualifiers.new.VW=New Portfolio
  416. qualifiers.new.DEV=New Developer
  417. qualifiers.new.APP=New Application
  418. qualifier.delete.TRK=Delete Project
  419. qualifier.delete.VW=Delete Portfolio
  420. qualifier.delete.APP=Delete Application
  421. qualifiers.delete.TRK=Delete Projects
  422. qualifiers.delete.VW=Delete Portfolios
  423. qualifiers.delete.APP=Delete Applications
  424. qualifier.delete_confirm.TRK=Do you want to delete this project?
  425. qualifier.delete_confirm.VW=Do you want to delete this portfolio?
  426. qualifier.delete_confirm.APP=Do you want to delete this application?
  427. qualifiers.delete_confirm.TRK=Do you want to delete these projects?
  428. qualifiers.delete_confirm.VW=Do you want to delete these portfolios?
  429. qualifiers.delete_confirm.APP=Do you want to delete these applications?
  430. qualifiers.create.TRK=Create Project
  431. qualifiers.create.VW=Create Portfolio
  432. qualifiers.create.DEV=Create Developer
  433. qualifiers.create.APP=Create Application
  434. qualifiers.update.VW=Update Portfolio
  435. qualifiers.update.DEV=Update Developer
  436. qualifiers.update.APP=Update Application
  437. qualifier.description.VW=Potentially multi-level, management-oriented overview aggregation.
  438. qualifier.description.SVW=Potentially multi-level, management-oriented overview aggregation.
  439. qualifier.description.APP=Single-level aggregation with a technical focus and a project-like homepage.
  440. #------------------------------------------------------------------------------
  441. #
  442. # Admin notification
  443. #
  444. #------------------------------------------------------------------------------
  445. admin_notification.update.new_minor_version=There’s a new version of SonarQube available. Update to enjoy the latest updates and features.
  446. 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.
  447. 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.
  448. 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.
  449. #------------------------------------------------------------------------------
  450. #
  451. # PROJECT LINKS
  452. #
  453. #------------------------------------------------------------------------------
  454. project_links.homepage=Project's Website
  455. project_links.ci=Continuous integration
  456. project_links.issue=Bug Tracker
  457. project_links.scm=Sources
  458. project_links.scm_ro=Read-only connection
  459. project_links.scm_dev=Developer connection
  460. project_links.create_new_project_link=Create New Project Link
  461. project_links.delete_project_link=Delete Project Link
  462. project_links.are_you_sure_to_delete_x_link=Are you sure you want to delete the "{0}" link?
  463. project_links.name=Name
  464. project_links.url=URL
  465. #------------------------------------------------------------------------------
  466. #
  467. # EVENT CATEGORIES
  468. #
  469. #------------------------------------------------------------------------------
  470. event.category.All=All
  471. event.category.VERSION=Version
  472. event.category.QUALITY_GATE=Quality Gate
  473. event.category.QUALITY_PROFILE=Quality Profile
  474. event.category.DEFINITION_CHANGE=Definition Change
  475. event.category.OTHER=Other
  476. event.quality_gate.still_x=Still {status}
  477. event.definition_change.added={project} added
  478. event.definition_change.removed={project} removed
  479. event.definition_change.branch_added={project} {branch} added
  480. event.definition_change.branch_removed={project} {branch} removed
  481. event.definition_change.branch_replaced={project} {oldBranch} replaced with {newBranch}
  482. #------------------------------------------------------------------------------
  483. #
  484. # LAYOUT
  485. #
  486. #------------------------------------------------------------------------------
  487. layout.home=Home
  488. layout.login=Log in
  489. layout.logout=Log out
  490. layout.measures=Measures
  491. layout.settings=Administration
  492. layout.security_hotspots=Security Hotspots
  493. layout.settings.TRK=Project Settings
  494. layout.settings.APP=Application Settings
  495. layout.settings.VW=Portfolio Settings
  496. layout.settings.SVW=Portfolio Settings
  497. layout.security_reports=Security Reports
  498. layout.sonar.slogan=Continuous Code Quality
  499. layout.must_be_configured=This will be available once your project is configured and analyzed.
  500. layout.all_project_must_be_accessible=You need access to all projects within this {0} to access it.
  501. sidebar.projects=Projects
  502. sidebar.project_settings=Configuration
  503. sidebar.security=Security
  504. sidebar.system=System
  505. sidebar.tools=Tools
  506. #------------------------------------------------------------------------------
  507. #
  508. # VISIBILITY
  509. #
  510. #------------------------------------------------------------------------------
  511. visibility.both=Public, Private
  512. visibility.public=Public
  513. visibility.public.description.TRK=This project is public. Anyone can browse and see the source code.
  514. visibility.public.description.VW=This portfolio is public. Anyone can browse it.
  515. visibility.public.description.APP=This application is public. Anyone can browse it.
  516. visibility.public.description.short=Anyone can browse and see the source code.
  517. visibility.public.description.long=Anyone will be able to browse your source code and see the result of your analysis.
  518. visibility.private=Private
  519. visibility.private.description.TRK=This project is private. Only authorized users can browse and see the source code.
  520. visibility.private.description.VW=This portfolio is private. Only authorized users can browse it.
  521. visibility.private.description.APP=This application is private. Only authorized users can browse it.
  522. visibility.private.description.short=Only authorized users can browse and see the source code.
  523. visibility.private.description.long=Only members of the organization will be able to browse your source code and see the result of your analysis.
  524. #------------------------------------------------------------------------------
  525. #
  526. # ADMIN PAGE TITLES and descriptions
  527. #
  528. #------------------------------------------------------------------------------
  529. coding_rules.page=Rules
  530. global_permissions.page=Global Permissions
  531. 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.
  532. roles.page=Project Permissions
  533. roles.page.description2=Grant and revoke project-level permissions. Permissions can be granted to groups or individual users.
  534. roles.page.description_portfolio=Grant and revoke portfolio-level permissions. Permissions can be granted to groups or individual users.
  535. roles.page.description_application=Grant and revoke application-level permissions. Permissions can be granted to groups or individual users.
  536. project_settings.page=General Settings
  537. project_settings.page.description=Edit project settings.
  538. project_links.page=Links
  539. project_links.page.description=Edit some links associated with this project.
  540. 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.
  541. settings.page=General Settings
  542. settings.page.description=Edit global settings for this {instance} instance.
  543. system_info.page=System Info
  544. project_quality_profiles.page=Quality Profiles
  545. project_quality_profiles.page.description=Choose which profile is associated with this project on a language-by-language basis.
  546. project_quality_gate.page=Quality Gate
  547. project_quality_gate.page.description=Choose which quality gate is associated with this project.
  548. update_key.page=Update Key
  549. 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.
  550. deletion.page=Deletion
  551. project_deletion.page.description=Delete this project. The operation cannot be undone.
  552. 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.
  553. 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.
  554. application.branches.help=Easily create Application branches composed of the branches of projects in your application.
  555. application.branches.link=Create Branch
  556. project_branch_pull_request.page=Branches & Pull Requests
  557. project_branch_pull_request.lifetime_information=Branches and Pull Requests are permanently deleted after {days} days without analysis.
  558. project_branch_pull_request.lifetime_information.admin=You can adjust this value globally in {settings}.
  559. project_branch_pull_request.branch.rename=Rename branch
  560. project_branch_pull_request.branch.delete=Delete branch
  561. project_branch_pull_request.branch.delete.are_you_sure=Are you sure you want to delete branch "{0}"?
  562. project_branch_pull_request.branch.auto_deletion.keep_when_inactive=Keep when inactive
  563. project_branch_pull_request.branch.auto_deletion.keep_when_inactive.tooltip=When turned on, the branch will not be automatically deleted when inactive.
  564. project_branch_pull_request.branch.auto_deletion.main_branch_tooltip=The main branch is always excluded from automatic deletion.
  565. project_branch_pull_request.pull_request.delete=Delete Pull Request
  566. project_branch_pull_request.pull_request.delete.are_you_sure=Are you sure you want to delete Pull Request "{0}"?
  567. project_branch_pull_request.tabs.branches=Branches
  568. project_branch_pull_request.tabs.pull_requests=Pull Requests
  569. project_branch_pull_request.table.branch=Branch
  570. project_branch_pull_request.table.pull_request=Pull Request
  571. project_branch_pull_request.last_analysis_date=Last Analysis Date
  572. project_baseline.page=New Code
  573. project_baseline.page.description=Use this page to define the New Code of your project. {link}
  574. project_baseline.page.description.link=Learn More
  575. project_baseline.page.description2=You can adjust this setting globally in {link}
  576. project_baseline.page.description2.link=General Settings
  577. project_baseline.default_setting=Project setting
  578. project_baseline.general_setting=Use the general setting
  579. project_baseline.specific_setting=Define a specific setting for this project
  580. project_baseline.configure_branches=Set a specific setting for a branch
  581. baseline.previous_version=Previous version
  582. baseline.previous_version.description=The New Code will be based on the analysis following the previous version.
  583. baseline.number_days=Number of days
  584. baseline.number_days.description=A floating window set to a specific number of days used to define New Code.
  585. baseline.specific_analysis=Specific analysis
  586. baseline.specific_analysis.description=Choose an analysis as the baseline for the New Code.
  587. baseline.reference_branch=Reference branch
  588. baseline.reference_branch.description=Choose a branch as the reference for the New Code.
  589. 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.
  590. baseline.specify_days=Specify a number of days
  591. baseline.last_analysis_before=Last analysis before
  592. baseline.next_analysis_notice=Changes will take effect after the next analysis
  593. baseline.reference_branch.choose=Choose a branch
  594. baseline.reference_branch.does_not_exist=Branch {0} could not be found in SonarQube.
  595. baseline.reference_branch.cannot_be_itself=A branch cannot be used as its own reference branch
  596. 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.
  597. baseline.edit_branch_setting=Edit the branch's setting
  598. branch_list.branch=Branch
  599. branch_list.current_setting=Setting
  600. branch_list.current_baseline=Current Baseline
  601. branch_list.actions=Actions
  602. branch_list.default_setting=Project setting
  603. baseline.new_code_period_for_branch_x=New Code Period for {0}
  604. baseline.analysis_from=Analysis from:
  605. baseline.branch_analyses.ranges.30days=Last 30 days
  606. baseline.branch_analyses.ranges.allTime=All time
  607. baseline.no_analyses=No analyses
  608. regulatory_report.page=Regulatory Report
  609. regulatory_report.description1=The regulatory report is a zip file containing a snapshot of the selected branch. It contains:
  610. regulatory_report.bullet_point1=An overview of the selected branch of the project.
  611. regulatory_report.bullet_point2=The configuration items relevant to the project's quality (quality profile, quality gate, and analysis exclusions).
  612. regulatory_report.bullet_point3=Lists of findings for both new and overall code on the selected branch.
  613. regulatory_report.description2=The generation and download of the report may take a few minutes.
  614. regulatory_page.download_start.sentence=Your download should start shortly. This may take some time.
  615. regulatory_page.select_branch=Select Branch
  616. #------------------------------------------------------------------------------
  617. #
  618. # OTHER PAGE TITLES
  619. #
  620. #------------------------------------------------------------------------------
  621. overview.page=Overview
  622. code.page=Code
  623. permissions.page=Permissions
  624. quality_profiles.page=Quality Profiles
  625. quality_gates.page=Quality Gates
  626. issues.page=Issues
  627. issues.skip_to_filters=Skip to issue filters
  628. issues.skip_to_list=Skip to issues list
  629. view_projects.page=Projects
  630. portfolios.page=Portfolios
  631. portfolio_breakdown.page=Portfolio Breakdown
  632. project_activity.page=Activity
  633. #------------------------------------------------------------------------------
  634. #
  635. # ASYNC PROCESS
  636. #
  637. #------------------------------------------------------------------------------
  638. process.still_working=Still Working...
  639. process.fail=Failed
  640. #------------------------------------------------------------------------------
  641. #
  642. # SESSION
  643. #
  644. #------------------------------------------------------------------------------
  645. sessions.log_in=Log in
  646. #------------------------------------------------------------------------------
  647. #
  648. # Audit Logs
  649. #
  650. #------------------------------------------------------------------------------
  651. audit_logs.page=Audit Logs
  652. audit_logs.page.description.1=Audit Logs help Administrators keep control and traceability of security related changes performed on the platform.
  653. 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}.
  654. audit_logs.page.description.link=housekeeping policy
  655. audit_logs.housekeeping_policy.Weekly=7 days
  656. audit_logs.housekeeping_policy.Monthly=30 days
  657. audit_logs.housekeeping_policy.Trimestrial=90 days
  658. audit_logs.housekeeping_policy.Yearly=one year
  659. audit_logs.download=Download Audit Logs
  660. audit_logs.download_start.try_again=Try Again
  661. audit_logs.download_start.sentence.1=Your download should start shortly. For longer periods this might take some time.
  662. 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.
  663. audit_logs.download_start.sentence.3=Change your selection above to download additional audit logs.
  664. audit_logs.range_option.today=Today
  665. audit_logs.range_option.7days=7 days
  666. audit_logs.range_option.30days=30 days
  667. audit_logs.range_option.90days=90 days
  668. audit_logs.range_option.custom=Custom
  669. #------------------------------------------------------------------------------
  670. #
  671. # HOTSPOTS
  672. #
  673. #------------------------------------------------------------------------------
  674. risk_exposure.HIGH=High
  675. risk_exposure.MEDIUM=Medium
  676. risk_exposure.LOW=Low
  677. hotspots.page=Security Hotspots
  678. hotspots.no_hotspots.title=There are no Security Hotspots to review.
  679. hotspots.no_hotspots.description=Next time you analyze a piece of code that contains a potential security risk, it will show up here.
  680. hotspots.no_hotspots_for_file.title=The selected file contains no hotspots.
  681. hotspots.no_hotspots_for_file.description=Go back and select another file, or click "Show all hotspots".
  682. hotspots.no_hotspots_for_filters.title=We couldn't find any results matching the selected criteria.
  683. hotspots.no_hotspots_for_filters.description=Try changing the filters to get some results.
  684. hotspots.no_hotspots_for_keys.title=The requested hotspots no longer exist.
  685. hotspots.no_hotspots_for_keys.description=They have been closed because the code involved has been changed or removed.
  686. hotspots.learn_more=Learn more about Security Hotspots
  687. hotspots.list_title={0} Security Hotspots
  688. hotspots.list_title.TO_REVIEW={0} Security Hotspots to review
  689. hotspots.list_title.ACKNOWLEDGED={0} Security Hotspots reviewed as acknowledged
  690. hotspots.list_title.FIXED={0} Security Hotspots reviewed as fixed
  691. hotspots.list_title.SAFE={0} Security Hotspots reviewed as safe
  692. hotspots.risk_exposure=Review priority
  693. hotspots.tabs.code=Where is the risk?
  694. hotspots.tabs.risk_description=What's the risk?
  695. hotspots.tabs.vulnerability_description=Assess the risk
  696. hotspots.tabs.fix_recommendations=How can I fix it?
  697. hotspots.review_history.created=created Security Hotspot
  698. hotspots.review_history.comment_added=added a comment
  699. hotspots.comment.field=Comment:
  700. hotspots.comment.open=Comment
  701. hotspots.comment.submit=Comment
  702. hotspots.open_in_ide.open=Open in IDE
  703. hotspots.open_in_ide.success=Success. Switch to your IDE to see the security hotspot.
  704. 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.
  705. hotspots.assignee.select_user=Select a user...
  706. hotspots.assignee.change_user=Click to change assignee
  707. hotspots.status.cannot_change_status=Changing a hotspot's status requires permission.
  708. hotspots.status.select_status=Change status
  709. hotspots.status.add_comment=Add a comment (Optional)
  710. hotspots.status.change_status=Change status
  711. hotspots.status_option.TO_REVIEW=To review
  712. hotspots.status_option.TO_REVIEW.description=This security hotspot needs to be reviewed to assess whether the code poses a risk.
  713. hotspots.status_option.ACKNOWLEDGED=Acknowledged
  714. hotspots.status_option.ACKNOWLEDGED.description=The code has been reviewed and does pose a risk. A fix is required.
  715. hotspots.status_option.FIXED=Fixed
  716. hotspots.status_option.FIXED.description=The code has been reviewed and modified to follow the recommended secure coding practices.
  717. hotspots.status_option.SAFE=Safe
  718. hotspots.status_option.SAFE.description=The code has been reviewed and does not pose a risk. It does not need to be modified.
  719. hotspots.get_permalink=Get Permalink
  720. hotspots.no_associated_lines=Security Hotspot raised on the following file:
  721. hotspots.congratulations=Congratulations!
  722. hotspots.find_in_status_filter_x= You can find it again by setting the status filter to {status_label}.
  723. hotspots.successful_status_change_to_x=The Security Hotspot was successfully changed to {0}.
  724. hotspots.x_done_keep_going={percentage} of the Security Hotspots have been reviewed.
  725. hotspots.see_x_hotspots=See "{0}" Security Hotspots
  726. hotspots.continue_to_next_hotspot=Continue Reviewing
  727. hotspot.filters.title=Filters
  728. hotspot.filters.assignee.assigned_to_me=Assigned to me
  729. hotspot.filters.assignee.all=All
  730. hotspot.filters.status=Status filter
  731. hotspot.filters.status.to_review=To review
  732. hotspot.filters.status.acknowledged=Acknowledged
  733. hotspot.filters.status.fixed=Fixed
  734. hotspot.filters.period=Period filter
  735. hotspot.filters.period.since_leak_period=New code
  736. hotspot.filters.period.overall=Overall code
  737. hotspot.filters.status.safe=Safe
  738. hotspot.filters.show_all=Show all hotspots
  739. hotspot.section.activity=Recent activity:
  740. hotspots.reviewed.tooltip=Percentage of open Security Hotspots that have been reviewed (Acknowledged, Fixed or Safe)
  741. hotspots.review_hotspot=Review Hotspot
  742. hotspots.assign.success=Security Hotspot was successfully assigned to {0}
  743. hotspots.assign.unassign.success=Security Hotspot was successfully unassigned
  744. hotspots.update.success=Update successful
  745. #------------------------------------------------------------------------------
  746. #
  747. # ISSUES
  748. #
  749. #------------------------------------------------------------------------------
  750. issues.on_file_x=Issues on file {0}
  751. issue.add_tags=Add Tags
  752. issue.remove_tags=Remove Tags
  753. issue.no_tag=No tags
  754. issue.create_tag_x=Create Tag '{0}'
  755. issue.assign.assigned_to_x_click_to_change=Assigned to {0}, click to change
  756. issue.assign.unassigned_click_to_assign=Unassigned, click to assign issue
  757. issue.assign.formlink=Assign
  758. issue.assign.to_me=to me
  759. issue.quick_fix_available_with_sonarlint=Quick fix available in {link}
  760. issue.comment.add_comment=Add Comment
  761. issue.comment.add_comment.cancel=Cancel adding comment
  762. issue.comment.enter_comment=Enter Comment
  763. issue.comment.formlink=Comment
  764. issue.comment.formlink.plural=comments
  765. issue.comment.submit=Comment
  766. issue.comment.explain_why=Consider explaining why
  767. issue.comment.posted_on=Comment posted on
  768. issue.comment.edit=Edit comment
  769. issue.comment.edit.cancel=Cancel editing comment
  770. issue.comment.delete=Delete comment
  771. issue.comment.delete_confirm_message=Do you want to delete this comment?
  772. issue.comment.empty.list=There are no comments yet on this issue.
  773. issue.rule_details=Rule Details
  774. issue.send_notifications=Send Notifications
  775. issue.why_this_issue=Why is this an issue?
  776. issue.why_this_issue.long=Why is this an issue? Open the rule's details at the bottom of the page.
  777. issue.type.type_x_click_to_change=Type: {0}, click to change
  778. issue.severity.severity_x_click_to_change=Severity: {0}, click to change
  779. issue.transition.community_plug_link=SonarSource Community
  780. issue.transition.status_x_click_to_change=Issue status: {0}, click to change
  781. issue.transition=Transition
  782. issue.transition.confirm=Confirm
  783. issue.transition.confirm.description=This issue has been reviewed and something should be done eventually to handle it.
  784. issue.transition.unconfirm=Unconfirm
  785. issue.transition.unconfirm.description=This issue should be reviewed again to decide what to do with it.
  786. issue.transition.resolve=Resolve as fixed
  787. issue.transition.resolve.description=This issue has been fixed in the code and is waiting for the next analysis to close it - or reopen it if it was not actually fixed.
  788. issue.transition.falsepositive=Resolve as false positive
  789. issue.transition.falsepositive.description=This issue can be suppressed as it was not raised accurately. Please report false-positives to the {community_plug_link}!
  790. issue.transition.reopen=Reopen
  791. issue.transition.reopen.description=This issue is not resolved, and should be reviewed again.
  792. issue.transition.close=Close
  793. issue.transition.close.description=
  794. issue.transition.wontfix=Resolve as won't fix
  795. issue.transition.wontfix.description=This issue can be suppressed because the rule is irrelevant in this context.
  796. issue.transition.setinreview=Set as In Review
  797. issue.transition.setinreview.description=A review is in progress to check for a vulnerability
  798. issue.transition.openasvulnerability=Open as Vulnerability
  799. issue.transition.openasvulnerability.description=There's a Vulnerability in the code that must be fixed
  800. issue.transition.resolveasreviewed=Resolve as Reviewed
  801. issue.transition.resolveasreviewed.description=There is no Vulnerability in the code
  802. issue.transition.resetastoreview=Reset as To Review
  803. issue.transition.resetastoreview.description=The Security Hotspot should be analyzed again
  804. issue.tabs.code=Where is the issue?
  805. issue.x_data_flows={0} data flow(s)
  806. issue.execution_flow=Full execution flow
  807. issues.action_select=Select issue
  808. issues.action_select.label=Select issue {0}
  809. issue.set_severity=Change Severity
  810. issue.set_type=Change Type
  811. issue.type.CODE_SMELL=Code Smell
  812. issue.type.BUG=Bug
  813. issue.type.VULNERABILITY=Vulnerability
  814. issue.type.SECURITY_HOTSPOT=Security Hotspot
  815. issue.type.CODE_SMELL.plural=Code Smells
  816. issue.type.BUG.plural=Bugs
  817. issue.type.VULNERABILITY.plural=Vulnerabilities
  818. issue.type.SECURITY_HOTSPOT.plural=Security Hotspots
  819. issue.status.REOPENED=Reopened
  820. issue.status.RESOLVED=Resolved
  821. issue.status.OPEN=Open
  822. issue.status.CONFIRMED=Confirmed
  823. issue.status.CLOSED=Closed
  824. issue.status.TO_REVIEW=To Review
  825. issue.status.IN_REVIEW=In Review
  826. issue.status.REVIEWED=Reviewed
  827. issue.scope.MAIN=Main code
  828. issue.scope.TEST=Test code
  829. issue.resolution.FALSE-POSITIVE=False Positive
  830. issue.resolution.FALSE-POSITIVE.description=Issues that manual review determined were False Positives. Effort from these issues is ignored.
  831. issue.resolution.FIXED=Fixed
  832. issue.resolution.FIXED.description=Issues that were corrected in code and reanalyzed.
  833. issue.resolution.WONTFIX=Won't Fix
  834. issue.resolution.WONTFIX.description=Issues that are accepted in this context. They and their effort will be ignored.
  835. issue.resolution.REMOVED=Removed
  836. 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.
  837. issue.resolution.badge.REMOVED=Rule removed
  838. issue.resolution.badge.DEPRECATED=Rule deprecated
  839. issue.unresolved.description=Unresolved issues have not been addressed in any way.
  840. issue.action.permalink=Get permalink
  841. issue.effort=Effort:
  842. issue.x_effort={0} effort
  843. issue.filter_similar_issues=Filter Similar Issues
  844. issue.this_issue_involves_x_code_locations=This issue involves {0} code location(s)
  845. issue.this_flow_involves_x_code_locations=This flow involves {0} code location(s)
  846. issue.from_external_rule_engine=Issue detected by an external rule engine: {0}
  847. issue.external_issue_description=This is external rule {0}. No details are available.
  848. issues.cannot_open_issue_max_initial_X_fetched=Cannot open selected issue, as it's not part of the initial {0} loaded issues.
  849. issues.loading_issues=Loading issues
  850. issues.return_to_list=Return to List
  851. issues.bulk_change_X_issues=Bulk Change {0} Issue(s)
  852. issues.select_all_issues=Select all Issues
  853. issues.issues=issues
  854. issues.to_select_issues=to select issues
  855. issues.to_navigate=to navigate
  856. issues.to_navigate_back=to navigate back
  857. issues.to_navigate_issue_locations=to navigate issue locations
  858. issues.to_switch_flows=to switch flows
  859. issues.new_code=New code
  860. issues.new_code_period=New Code Period
  861. issues.max_new_code_period=Max New Code Period
  862. issues.my_issues=My Issues
  863. issues.no_my_issues=There are no issues assigned to you.
  864. issues.no_issues=No Issues. Hooray!
  865. issues.x_more_locations=+ {0} more location(s)
  866. issues.not_all_issue_show=Not all issues are included
  867. issues.not_all_issue_show_why=You do not have access to all projects in this portfolio
  868. #------------------------------------------------------------------------------
  869. #
  870. # ISSUE CHANGELOG
  871. #
  872. #------------------------------------------------------------------------------
  873. issue.changelog.changed_to={0} changed to {1}
  874. issue.changelog.was=was {0}
  875. issue.changelog.webhook_source= (change triggered by a {0} webhook)
  876. issue.change.file_move=The file has been moved from {0} to {1}
  877. issue.change.from_branch=The issue has been copied from branch '{0}' to branch '{1}'
  878. issue.change.from_non_branch=The issue has been merged from '{0}' into '{1}'
  879. issue.changelog.removed={0} removed
  880. issue.changelog.line_removed_X=Line number removed from issue (was {0})
  881. issue.changelog.field.severity=Severity
  882. issue.changelog.field.actionPlan=Action Plan
  883. issue.changelog.field.assignee=Assignee
  884. issue.changelog.field.author=Author
  885. issue.changelog.field.resolution=Resolution
  886. issue.changelog.field.effort=Effort
  887. issue.changelog.field.status=Status
  888. issue.changelog.field.tags=Tags
  889. issue.changelog.field.type=Type
  890. issue.changelog.field.file=File
  891. #------------------------------------------------------------------------------
  892. #
  893. # ISSUES FACETS
  894. #
  895. #------------------------------------------------------------------------------
  896. issues.facet.period=Period
  897. issues.facet.types=Type
  898. issues.facet.severities=Severity
  899. issues.facet.scopes=Scope
  900. issues.facet.projects=Project
  901. issues.facet.statuses=Status
  902. issues.facet.hotspotStatuses=Hotspot Status
  903. issues.facet.assignees=Assignee
  904. issues.facet.files=File
  905. issues.facet.modules=Module
  906. issues.facet.directories=Directory
  907. issues.facet.tags=Tag
  908. issues.facet.rules=Rule
  909. issues.facet.resolutions=Resolution
  910. issues.facet.languages=Language
  911. issues.facet.createdAt=Creation Date
  912. issues.facet.createdAt.all=All
  913. issues.facet.createdAt.last_week=Last week
  914. issues.facet.createdAt.last_month=Last month
  915. issues.facet.createdAt.last_year=Last year
  916. issues.facet.createdAt.bar_description={0} issues from {1} to {2}
  917. issues.facet.authors=Author
  918. issues.facet.issues=Issue Key
  919. issues.facet.mode=Display Mode
  920. issues.facet.mode.count=Issues
  921. issues.facet.mode.effort=Effort
  922. issues.facet.standards=Security Category
  923. issues.facet.owaspTop10=OWASP Top 10 2017
  924. issues.facet.owaspTop10_2021=OWASP Top 10 2021
  925. issues.facet.sansTop25=SANS Top 25
  926. issues.facet.sonarsourceSecurity=SonarSource
  927. issues.facet.cwe=CWE
  928. #------------------------------------------------------------------------------
  929. #
  930. # ISSUE BULK CHANGE
  931. #
  932. #------------------------------------------------------------------------------
  933. issue_bulk_change.form.title=Change {0} issues
  934. issue_bulk_change.comment.help=This comment will be applied only to issues that will effectively be modified
  935. 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.
  936. issue_bulk_change.x_issues={0} issues
  937. issue_bulk_change.no_match=There is no issue matching your filter selection
  938. issue_bulk_change.no_change_selected=Make at least 1 change (e.g.: change assignee) in order to update the selected issues.
  939. #------------------------------------------------------------------------------
  940. #
  941. # PROJECTS PAGE
  942. #
  943. #------------------------------------------------------------------------------
  944. projects.page=Projects
  945. projects.add=Create Project
  946. projects.create_application=Create Application
  947. projects.no_projects.empty_instance=There are no visible projects yet.
  948. projects.no_projects.empty_instance.new_project=Once you analyze some projects, they will show up here.
  949. projects.no_projects.empty_instance.how_to_add_projects=Here is how you can analyze new projects
  950. projects.no_favorite_projects=You don't have any favorite projects yet.
  951. projects.no_favorite_projects.engagement=Discover and mark as favorites projects you are interested in to have a quick access to them.
  952. projects.explore_projects=Explore Projects
  953. projects.not_analyzed.TRK=Project's Main Branch is not analyzed yet.
  954. projects.not_analyzed.APP=None of the Application's projects have been analyzed.
  955. projects.no_new_code_period.TRK=Project has no new code data yet.
  956. projects.no_new_code_period.APP=Application has no new code data yet.
  957. projects.new_code_period_x=New code: last {0}
  958. projects.configure_analysis=Configure analysis
  959. projects.last_analysis_on_x=Last analysis: {date}
  960. projects.search=Search by project name or key
  961. projects.perspective=Perspective
  962. projects.skip_to_filters=Skip to project filters
  963. projects.sort_by=Sort by
  964. projects.sort_ascending=Result sorted in ascending order
  965. projects.sort_descending=Result sorted in descending order
  966. projects.sorting.default=default
  967. projects.sorting.name=Name
  968. projects.sorting.analysis_date=Last analysis date
  969. projects.sorting.reliability=Reliability
  970. projects.sorting.security=Security
  971. projects.sorting.security_review=Security Review
  972. projects.sorting.maintainability=Maintainability
  973. projects.sorting.coverage=Coverage
  974. projects.sorting.duplications=Duplications
  975. projects.sorting.size=Size
  976. projects.sorting.new_reliability=Reliability
  977. projects.sorting.new_security=Security
  978. projects.sorting.new_security_review=Security Review
  979. projects.sorting.new_maintainability=Maintainability
  980. projects.sorting.new_coverage=Coverage
  981. projects.sorting.new_duplications=Duplications
  982. projects.sorting.new_lines=New Lines
  983. projects.view.overall=Overall Status
  984. projects.view.overall_code=Overall Code
  985. projects.view.new_code=New Code
  986. projects.worse_of_reliablity_and_security=Worse of Reliability and Security
  987. projects.limited_set_of_projects=Displayed project set limited to the top {0} projects based on current sort: {1}.
  988. projects.facets.quality_gate=Quality Gate
  989. projects.facets.quality_gate.warning_help=Warning status is deprecated. This filter will disappear when no Warning Quality Gate remains.
  990. projects.facets.rating_x={0} rating
  991. projects.facets.languages=Languages
  992. projects.facets.search.languages=Search for languages
  993. projects.facets.new_lines=New Lines
  994. projects.facets.tags=Tags
  995. projects.facets.search.tags=Search for tags
  996. projects.facets.qualifier=Type
  997. projects.facets.qualitygate_label_x=Click to filter projects with a {0} quality gate.
  998. projects.facets.rating_label_single_x=Click to filter projects with a {0} rating of {1}.
  999. projects.facets.rating_label_multi_x=Click to filter projects with a {0} rating of {1} or worse.
  1000. projects.facets.label_no_data_x=Click to filter projects with no {0} data.
  1001. projects.facets.label_text_x=Click to filter projects by {0}: {1}
  1002. projects.facets.size.label.1=Click to filter projects with fewer than 1k lines of code
  1003. projects.facets.size.label.2=Click to filter projects with 1k lines of code or more
  1004. projects.facets.size.label.3=Click to filter projects with 10k lines of code or more
  1005. projects.facets.size.label.4=Click to filter projects with 100k lines of code or more
  1006. projects.facets.size.label.5=Click to filter projects with more than 500k lines of code
  1007. projects.facets.new_lines.label.1=Click to filter projects with fewer than 1k new lines
  1008. projects.facets.new_lines.label.2=Click to filter projects with 1k new lines or more
  1009. projects.facets.new_lines.label.3=Click to filter projects with 10k new lines or more
  1010. projects.facets.new_lines.label.4=Click to filter projects with 100k new lines or more
  1011. projects.facets.new_lines.label.5=Click to filter projects with more than 500k new lines
  1012. projects.facets.coverage.label.1=Click to filter projects with more than 80% coverage
  1013. projects.facets.coverage.label.2=Click to filter projects with less than 80% coverage
  1014. projects.facets.coverage.label.3=Click to filter projects with less than 70% coverage
  1015. projects.facets.coverage.label.4=Click to filter projects with less than 50% coverage
  1016. projects.facets.coverage.label.5=Click to filter projects with less than 30% coverage
  1017. projects.facets.duplication.label.1=Click to filter projects with less than 3% duplication
  1018. projects.facets.duplication.label.2=Click to filter projects with more than 3% duplication
  1019. projects.facets.duplication.label.3=Click to filter projects with more than 5% duplication
  1020. projects.facets.duplication.label.4=Click to filter projects with more than 10% duplication
  1021. projects.facets.duplication.label.5=Click to filter projects with more than 20% duplication
  1022. projects.facets.no_available_filters_clear_others=No available filters. Clear other filters to see options.
  1023. projects.sort.disabled=Disabled because sorting cannot affect the displayed result with the current project selection.
  1024. projects.sort.analysis_date=by last analysis date (oldest first)
  1025. projects.sort.-analysis_date=by last analysis date (latest first)
  1026. projects.sort.name=by name
  1027. projects.sort.-name=by name
  1028. projects.sort.reliability=by reliability (best first)
  1029. projects.sort.-reliability=by reliability (worst first)
  1030. projects.sort.security=by security (best first)
  1031. projects.sort.-security=by security (worst first)
  1032. projects.sort.maintainability=by maintainability (best first)
  1033. projects.sort.-maintainability=by maintainability (worst first)
  1034. projects.sort.coverage=by coverage (best first)
  1035. projects.sort.-coverage=by coverage (worst first)
  1036. projects.sort.duplications=by duplications (best first)
  1037. projects.sort.-duplications=by duplications (worst first)
  1038. projects.sort.size=by size (smallest first)
  1039. projects.sort.-size=by size (biggest first)
  1040. projects.show_more=Show more projects
  1041. projects.security_hotspots_reviewed=Hotspots Reviewed
  1042. #------------------------------------------------------------------------------
  1043. #
  1044. # DASHBOARD
  1045. #
  1046. #------------------------------------------------------------------------------
  1047. dashboard.project_not_found=The requested project does not exist.
  1048. dashboard.project_not_found.2=Either it has never been analyzed successfully or it has been deleted.
  1049. #------------------------------------------------------------------------------
  1050. #
  1051. # SETTINGS
  1052. #
  1053. #------------------------------------------------------------------------------
  1054. settings.key_x=Key: {0}
  1055. settings.default_x=Default: {0}
  1056. settings.not_set=(not set)
  1057. settings.state.saving=Saving...
  1058. settings.state.saved=Saved!
  1059. settings.state.validation_failed=Validation failed. {0}
  1060. settings.state.value_cant_be_empty=Provide a value or use "Reset" to set the value to the default one.
  1061. settings.state.value_cant_be_empty_no_default=Provide a value.
  1062. settings.state.url_not_valid={0} is not a valid URL
  1063. settings._default=(default)
  1064. settings.boolean.true=True
  1065. settings.boolean.false=False
  1066. settings.default.no_value=<no value>
  1067. settings.default.complex_value=<complex value>
  1068. settings.default.password=<password>
  1069. settings.reset_confirm.title=Reset Setting
  1070. settings.reset_confirm.description=Are you sure that you want to reset this setting?
  1071. settings.search.placeholder=Find in Settings
  1072. settings.json.format=Format JSON
  1073. settings.json.format_error=Formatting requires valid JSON. Please fix it and retry.
  1074. settings.analysis_scope.wildcards.introduction=You can use the following wildcards.
  1075. settings.analysis_scope.wildcards.zero_more_char=Match zero or more characters
  1076. settings.analysis_scope.wildcards.zero_more_dir=Match zero or more directories
  1077. settings.analysis_scope.wildcards.single_char=Match a single character
  1078. settings.new_code_period.category=New Code
  1079. settings.new_code_period.title=Default New Code behavior
  1080. settings.new_code_period.description=The New Code definition is used to compare measures and track new issues. {link}
  1081. settings.new_code_period.description2=This setting is the default for all projects. A specific New Code definition can be configured at project level.
  1082. settings.languages.select_a_language_placeholder=Select a language
  1083. settings.projects.default_visibility_of_new_projects=Default visibility of new projects:
  1084. settings.projects.change_visibility_form.header=Set Default Visibility of New Projects
  1085. settings.projects.change_visibility_form.warning=This will not change the visibility of already existing projects.
  1086. settings.projects.change_visibility_form.submit=Change Default Visibility
  1087. settings.almintegration.title=DevOps Platform Integrations
  1088. 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.
  1089. 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}
  1090. 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}
  1091. 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}
  1092. settings.almintegration.bitbucketcloud.oauth=OAuth consumer
  1093. settings.almintegration.empty.azure=Create your first Azure DevOps configuration to start analyzing your repositories on SonarQube.
  1094. settings.almintegration.empty.bitbucket=Create your first Bitbucket configuration to start analyzing your repositories on SonarQube.
  1095. settings.almintegration.empty.bitbucketcloud=Create your first Bitbucket Cloud configuration to start analyzing your repositories on SonarQube.
  1096. settings.almintegration.empty.github=Create your first GitHub configuration to start analyzing your repositories on SonarQube.
  1097. settings.almintegration.empty.gitlab=Create your first GitLab configuration to start analyzing your repositories on SonarQube.
  1098. settings.almintegration.create=Create configuration
  1099. settings.almintegration.create.tooltip=Upgrade to {link} to integrate with multiple {alm} instances.
  1100. settings.almintegration.create.tooltip.link=Enterprise Edition
  1101. settings.almintegration.check_configuration=Check configuration
  1102. settings.almintegration.checking_configuration=Checking configuration
  1103. settings.almintegration.configuration_valid=Configuration valid
  1104. settings.almintegration.configuration_invalid=You have the following errors in your configuration:
  1105. settings.almintegration.could_not_validate=Could not validate this configuration.
  1106. settings.almintegration.delete.header=Delete configuration
  1107. settings.almintegration.delete.message=Are you sure you want to delete the {id} configuration?
  1108. settings.almintegration.delete.info={0} projects will no longer get Pull Request Decorations.
  1109. settings.almintegration.delete.no_info=An unknown number of projects will no longer get Pull Request Decorations.
  1110. 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
  1111. settings.almintegration.form.header.create=Create a configuration
  1112. settings.almintegration.form.header.edit=Edit the configuration
  1113. settings.almintegration.form.second_instance_warning=Binding more than one instance of a DevOps Platform will deactivate the import of repositories from that DevOps Platform.
  1114. settings.almintegration.form.name.azure=Configuration name
  1115. 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.
  1116. settings.almintegration.form.choose_bitbucket_variant=Select which variant you want to configure
  1117. settings.almintegration.form.name.bitbucket=Configuration name
  1118. 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.
  1119. settings.almintegration.form.name.bitbucketcloud=Configuration name
  1120. 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.
  1121. settings.almintegration.form.name.github=Configuration name
  1122. 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.
  1123. settings.almintegration.form.name.gitlab=Configuration name
  1124. 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.
  1125. settings.almintegration.form.workspace.bitbucketcloud=Workspace ID
  1126. settings.almintegration.form.workspace.bitbucketcloud.error=Workspace ID's can only contain lowercase letters, numbers, dashes, and underscores.
  1127. settings.almintegration.form.workspace.bitbucketcloud.help=The workspace ID is part of your bitbucket cloud URL {example}
  1128. 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.
  1129. 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.
  1130. settings.almintegration.form.url.azure=Azure DevOps URL
  1131. settings.almintegration.form.url.azure.help1=For Azure DevOps Server, provide the full collection URL:
  1132. settings.almintegration.form.url.azure.help2=For Azure DevOps Services, provide the full organization URL:
  1133. settings.almintegration.form.url.bitbucket=Bitbucket Server URL
  1134. settings.almintegration.form.url.bitbucket.help=Example: {example}
  1135. settings.almintegration.form.url.github=GitHub API URL
  1136. settings.almintegration.form.url.github.help1=Example for Github Enterprise:
  1137. settings.almintegration.form.url.github.help2=If using GitHub.com:
  1138. settings.almintegration.form.url.gitlab=GitLab API URL
  1139. settings.almintegration.form.url.gitlab.help=Provide the GitLab API URL. For example:
  1140. settings.almintegration.form.app_id=GitHub App ID
  1141. settings.almintegration.form.client_id.github=Client ID
  1142. settings.almintegration.form.client_id.github.help=The Client ID is found on your GitHub App's page.
  1143. settings.almintegration.form.client_secret.github=Client Secret
  1144. settings.almintegration.form.client_secret.github.help=The Client secret is found on your GitHub App's page.
  1145. settings.almintegration.form.client_id.bitbucketcloud=OAuth Key
  1146. settings.almintegration.form.client_secret.bitbucketcloud=OAuth Secret
  1147. settings.almintegration.form.private_key=Private Key
  1148. 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.
  1149. settings.almintegration.form.webhook_secret.github=Webhook Secret
  1150. 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.
  1151. settings.almintegration.form.personal_access_token=Personal Access Token
  1152. 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}
  1153. settings.almintegration.form.personal_access_token.azure.help.url=Personal Access Token
  1154. 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}
  1155. settings.almintegration.form.personal_access_token.gitlab.help.url=Personal Access Token
  1156. 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}
  1157. settings.almintegration.form.personal_access_token.bitbucket.help.url=Personal Access Token
  1158. settings.almintegration.form.save=Save configuration
  1159. settings.almintegration.form.cancel=Cancel
  1160. settings.almintegration.form.secret.field=This field is hidden for security reasons.
  1161. settings.almintegration.form.secret.update_field=Update field value
  1162. settings.almintegration.form.secret.can_encrypt=You can encrypt this value. {learn_more}
  1163. settings.almintegration.feature.status_reporting.title=Quality Gate status reporting
  1164. settings.almintegration.feature.status_reporting.description_pr=Add analysis and a Quality Gate to your Pull Requests directly in your DevOps Platform's interface.
  1165. 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.
  1166. settings.almintegration.feature.status_reporting.description_mr=Add analysis and a Quality Gate to your Merge Requests directly in your DevOps Platform's interface.
  1167. settings.almintegration.feature.pr_decoration.disabled=Disabled
  1168. settings.almintegration.feature.pr_decoration.disabled.no_branches=Upgrade to {link} to enable this feature.
  1169. settings.almintegration.feature.pr_decoration.disabled.no_branches.link=Developer Edition
  1170. settings.almintegration.feature.alm_repo_import.title=Import repositories from your DevOps Platform
  1171. settings.almintegration.feature.alm_repo_import.description=Select repositories from your DevOps Platform, and import them into SonarQube.
  1172. settings.almintegration.feature.alm_repo_import.disabled=Disabled
  1173. settings.almintegration.feature.alm_repo_import.disabled.multiple=This feature is disabled because you have 2 or more integration instances configured.
  1174. settings.almintegration.feature.alm_repo_import.disabled.no_url=This feature is disabled because your configured instance has no URL.
  1175. settings.almintegration.tabs.authentication_moved=You can delegate authentication to this DevOps Platform. The relevant settings are under the {link} section.
  1176. settings.authentication.title=Authentication
  1177. settings.authentication.description=The following settings allow you to delegate authentication via SAML, or any of the following DevOps Platforms: GitHub, GitLab, and Bitbucket.
  1178. settings.authentication.help=If you need help setting up authentication, read our dedicated {link}.
  1179. settings.authentication.help.link=documentation
  1180. settings.authentication.saml.form.save=Save configuration
  1181. settings.authentication.saml.form.test=Test configuration
  1182. settings.authentication.saml.form.test.help.dirty=You must save your changes
  1183. settings.authentication.saml.form.test.help.incomplete=Some mandatory fields are empty
  1184. settings.authentication.saml.form.save_success=Saved successfully
  1185. settings.authentication.saml.form.save_partial=Saved partially
  1186. settings.authentication.saml.form.save_warn=Please check the error messages in the form above, saving failed for {0} field(s).
  1187. settings.authentication.saml.tooltip.required_fields=Please provide a value for the following required field(s): {0}
  1188. settings.pr_decoration.binding.category=DevOps Platform Integration
  1189. settings.pr_decoration.binding.no_bindings=A system administrator needs to enable this feature in the global settings.
  1190. settings.pr_decoration.binding.no_bindings.admin=Set up a {link} first before you and your team can enable Pull Request Decoration.
  1191. settings.pr_decoration.binding.no_bindings.link=global configuration
  1192. settings.pr_decoration.binding.title=DevOps Platform Integration
  1193. settings.pr_decoration.binding.description=Display your Quality Gate status directly in your DevOps Platform.
  1194. settings.pr_decoration.binding.check_configuration=Check configuration
  1195. settings.pr_decoration.binding.check_configuration.failure=You have the following errors in your configuration:
  1196. settings.pr_decoration.binding.check_configuration.failure.check_global_settings=Please check your {link}.
  1197. settings.pr_decoration.binding.check_configuration.failure.check_global_settings.link=global settings
  1198. settings.pr_decoration.binding.check_configuration.contact_admin=Please contact your system administrator.
  1199. settings.pr_decoration.binding.check_configuration.success=Configuration valid.
  1200. settings.pr_decoration.binding.form.name=Configuration name
  1201. 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.
  1202. settings.pr_decoration.binding.form.monorepo=Enable mono repository support
  1203. settings.pr_decoration.binding.form.monorepo.help=Enable this setting if your project is part of a mono repository. {doc_link}
  1204. settings.pr_decoration.binding.form.monorepo.warning=This setting must be enabled for all SonarQube projects that are part of a mono repository.
  1205. settings.pr_decoration.binding.form.azure.project=Project name
  1206. 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.
  1207. settings.pr_decoration.binding.form.azure.repository=Repository name
  1208. 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.
  1209. settings.pr_decoration.binding.form.github.repository=Repository name
  1210. 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!
  1211. settings.pr_decoration.binding.form.github.summary_comment_setting=Enable analysis summary under the GitHub Conversation tab
  1212. 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.
  1213. settings.pr_decoration.binding.form.bitbucket.repository=Project key
  1214. settings.pr_decoration.binding.form.bitbucket.repository.help=The project key is part of your Bitbucket Server repository URL. This is case-sensitive!
  1215. settings.pr_decoration.binding.form.bitbucket.slug=Repository slug
  1216. settings.pr_decoration.binding.form.bitbucket.slug.help=The repository slug is part of your Bitbucket Server repository URL. This slug is case-sensitive!
  1217. settings.pr_decoration.binding.form.bitbucketcloud.repository=Repository slug
  1218. settings.pr_decoration.binding.form.bitbucketcloud.repository.help=The repository slug is part of your Bitbucket Cloud repository URL.
  1219. settings.pr_decoration.binding.form.gitlab.repository=Project ID
  1220. 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.
  1221. property.category.announcement=Annoucement
  1222. property.category.general=General
  1223. property.category.general.email=Email
  1224. property.category.general.duplications=Duplications
  1225. property.category.general.differentialViews=New Code
  1226. property.category.general.localization=Localization
  1227. property.category.general.databaseCleaner=Database Cleaner
  1228. property.category.general.looknfeel=Look & Feel
  1229. property.category.general.issues=Issues
  1230. property.category.general.qualityGate=Quality Gate
  1231. property.category.general.subProjects=Sub-projects
  1232. property.category.almintegration=DevOps Platform Integrations
  1233. property.category.authentication=Authentication
  1234. property.category.organizations=Organizations
  1235. property.category.security=Security
  1236. property.category.security.encryption=Encryption
  1237. property.category.java=Java
  1238. property.category.differentialViews=New Code
  1239. property.category.codeCoverage=Code Coverage
  1240. property.category.duplications=Duplications
  1241. property.category.localization=Localization
  1242. property.category.exclusions=Analysis Scope
  1243. property.category.webhooks=Webhooks
  1244. property.category.languages=Languages
  1245. property.sonar.inclusions.name=Source File Inclusions
  1246. property.sonar.inclusions.description=Patterns used to include some source files and only these ones in analysis.
  1247. property.sonar.test.inclusions.name=Test File Inclusions
  1248. property.sonar.test.inclusions.description=Patterns used to include some test files and only these ones in analysis.
  1249. property.sonar.exclusions.name=Source File Exclusions
  1250. property.sonar.exclusions.description=Patterns used to exclude some source files from analysis.
  1251. property.sonar.test.exclusions.name=Test File Exclusions
  1252. property.sonar.test.exclusions.description=Patterns used to exclude some test files from analysis.
  1253. property.sonar.global.exclusions.name=Global Source File Exclusions
  1254. property.sonar.global.exclusions.description=Patterns used to exclude some source files from analysis. They apply to every project and cannot be overridden.
  1255. property.sonar.global.test.exclusions.name=Global Test File Exclusions
  1256. property.sonar.global.test.exclusions.description=Patterns used to exclude some test files from analysis. They apply to every project and cannot be overridden.
  1257. property.category.exclusions.files=A. File Exclusions
  1258. property.category.exclusions.files.description=Configure the files that should be completely ignored by the analysis.
  1259. property.sonar.skippedModules.name=Module Exclusions
  1260. property.sonar.skippedModules.description=This property is deprecated since version 4.3 and should not be used anymore.
  1261. property.sonar.includedModules.name=Module Inclusions
  1262. property.sonar.includedModules.description=This property is deprecated since version 4.3 and should not be used anymore.
  1263. property.category.exclusions.issues=D. Issue Exclusions
  1264. property.category.exclusions.issues.description=Configure the conditions under which issues should not be reported.
  1265. property.category.exclusions.duplications=C. Duplication Exclusions
  1266. property.category.exclusions.duplications.description=Configure the files that should be ignored by duplication detection.
  1267. property.category.exclusions.coverage=B. Code Coverage Exclusions
  1268. property.category.exclusions.coverage.description=Configure the files that should be ignored by code coverage calculations.
  1269. property.sonar.coverage.exclusions.name=Coverage Exclusions
  1270. property.sonar.coverage.exclusions.description=Patterns used to exclude some files from coverage report.
  1271. property.category.technicalDebt=Technical Debt
  1272. property.error.notBoolean=Valid options are "true" and "false"
  1273. property.error.notInteger=Only digits are allowed
  1274. property.error.notFloat=Not a floating point number
  1275. property.error.notRegexp=Regular expression must be valid
  1276. property.error.notInOptions=Not a valid option
  1277. property.category.scm=SCM
  1278. property.category.housekeeping=Housekeeping
  1279. property.category.housekeeping.general=General
  1280. property.category.housekeeping.branchesAndPullRequests=Branches and Pull Requests
  1281. property.category.housekeeping.auditLogs=Audit Logs
  1282. #------------------------------------------------------------------------------
  1283. #
  1284. # SEARCH ENGINE FOR RESOURCES
  1285. #
  1286. #------------------------------------------------------------------------------
  1287. search.shortcut_hint=Hint: Press {shortcut} from anywhere to open this search bar.
  1288. search.show_more.hint=Press {key} to display
  1289. search.placeholder=Search for projects...
  1290. search.search_for_projects=Search for projects...
  1291. search.search_for_members=Search for members...
  1292. search.search_for_users=Search for users...
  1293. search.search_for_users_or_groups=Search for users or groups...
  1294. search.search_by_login_or_name=Search by login or name...
  1295. search.search_by_name=Search by name...
  1296. search.search_by_name_or_key=Search by name or key...
  1297. search.search_for_tags=Search for tags...
  1298. search.search_for_repositories=Search for repositories...
  1299. search.search_for_rules=Search for rules...
  1300. search.search_for_languages=Search for languages...
  1301. search.search_for_cwe=Search for CWEs...
  1302. search.search_for_authors=Search for authors...
  1303. search.search_for_directories=Search for directories...
  1304. search.search_for_files=Search for files...
  1305. search.search_for_modules=Search for modules...
  1306. search.search_for_metrics=Search for metrics...
  1307. #------------------------------------------------------------------------------
  1308. #
  1309. # GLOBAL HELP
  1310. #
  1311. #------------------------------------------------------------------------------
  1312. help.section.links=Links
  1313. help.section.shortcuts=Shortcuts
  1314. help.section.tutorials=Tutorials
  1315. shortcuts.section.global=Global
  1316. shortcuts.section.global.search=quickly open search bar
  1317. shortcuts.section.global.shortcuts=open this window
  1318. shortcuts.section.global.facets.multiselection=Press Ctrl to add to selection
  1319. shortcuts.section.global.facets.multiselection.mac=Press \u2318 to add to selection
  1320. shortcuts.section.issues=Issues Page
  1321. shortcuts.section.issues.navigate_between_issues=navigate between issues
  1322. shortcuts.section.issues.open_details=go from the list of issues to the source code
  1323. shortcuts.section.issues.return_to_list=return back to the list
  1324. shortcuts.section.issue.do_transition=do an issue transition
  1325. shortcuts.section.issue.assign=assign issue
  1326. shortcuts.section.issue.assign_to_me=assign issue to the current user
  1327. shortcuts.section.issue.change_severity=change severity of issue
  1328. shortcuts.section.issue.comment=comment issue
  1329. shortcuts.section.issue.submit_comment=submit comment
  1330. shortcuts.section.issue.change_tags=change tags of issue
  1331. shortcuts.section.rules=Rules Page
  1332. shortcuts.section.rules.navigate_between_rules=navigate between rules
  1333. shortcuts.section.rules.open_details=go from the list of rules to the rule details
  1334. shortcuts.section.rules.return_to_list=return back to the list
  1335. shortcuts.section.rules.activate=activate selected rule
  1336. shortcuts.section.rules.deactivate=deactivate selected rule
  1337. shortcuts.on_page.intro=This page allows you to use the following keyboard shortcuts:
  1338. shortcuts.on_page.left_x=Left arrow key: {0}
  1339. shortcuts.on_page.left_right_x=Left and right arrow keys: {0}
  1340. shortcuts.on_page.up_down_x=Up and down arrow keys: {0}
  1341. shortcuts.on_page.meta_x=Alt key + arrow keys: {0}
  1342. tutorials.onboarding=Analyze a new project
  1343. tutorials.skip=Skip this tutorial
  1344. tutorials.finish=Finish this tutorial
  1345. tutorials.find_tutorial_back_in_help=Find this tutorial back anytime in the Help section
  1346. tutorials.find_tutorial_back_in_plus=Find this tutorial back anytime in the "+" menu
  1347. #------------------------------------------------------------------------------
  1348. #
  1349. # SELECT2.js
  1350. #
  1351. #------------------------------------------------------------------------------
  1352. select2.noMatches=No matches
  1353. select2.searching=Searching...
  1354. select2.tooShort=Please enter at least {0} characters
  1355. #------------------------------------------------------------------------------
  1356. #
  1357. # DUPLICATION VIEWER
  1358. #
  1359. #------------------------------------------------------------------------------
  1360. 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.
  1361. #------------------------------------------------------------------------------
  1362. #
  1363. # GENERIC CODE VIEWER
  1364. #
  1365. #------------------------------------------------------------------------------
  1366. code_viewer.no_source_code_displayed_due_to_empty_analysis.TRK=No code files were found for analysis.
  1367. code_viewer.no_source_code_displayed_due_to_empty_analysis.APP=No projects in this application.
  1368. code_viewer.no_source_code_displayed_due_to_empty_analysis.VW=No projects, applications, or portfolios in this portfolio.
  1369. code_viewer.no_source_code_displayed_due_to_empty_analysis.SVW=No projects, applications, or portfolios in this portfolio.
  1370. code_viewer.no_source_code_displayed_due_to_security=Due to security settings, no source code can be displayed.
  1371. code_viewer.no_source_code_displayed_due_to_source_removed=The file was removed, no source code can be displayed.
  1372. code_viewer.not_all_measures_are_shown=Not all projects and applications are included
  1373. code_viewer.not_all_measures_are_shown.help=You do not have access to all projects and/or applications.
  1374. code_viewer.portfolio_code_toggle_disabled.help=New Code and Overall Code measures are not available when searching for projects or applications.
  1375. code_viewer.loading=Source code is loading
  1376. #------------------------------------------------------------------------------
  1377. #
  1378. # CUSTOM MEASURES
  1379. #
  1380. #------------------------------------------------------------------------------
  1381. custom_measures.page=Custom Measures
  1382. 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.
  1383. custom_measures.deprecated=Custom measures are deprecated and will be removed soon.
  1384. custom_measures.pending=Pending
  1385. custom_measures.pending_tooltip=The value will be integrated to project during next analysis.
  1386. custom_measures.all_metrics_taken=There are already measures on all available custom metrics.
  1387. custom_measures.delete_custom_measure=Delete Custom Measure
  1388. custom_measures.delete_custom_measure.confirmation=Are you sure you want to delete custom measure "{0}"?
  1389. custom_measures.create_custom_measure=Create Custom Measure
  1390. custom_measures.update_custom_measure=Update Custom Measure
  1391. custom_measures.metric=Metric
  1392. #------------------------------------------------------------------------------
  1393. #
  1394. # PROJECT ACTIVITY/HISTORY SERVICE
  1395. #
  1396. #------------------------------------------------------------------------------
  1397. project_activity.analysis=Analysis
  1398. project_activity.analysis_build_string_X=Build string: {0}
  1399. project_activity.add_version=Create Version
  1400. project_activity.analyzed.TRK=Project Analyzed
  1401. project_activity.analyzed.APP=Application Analyzed
  1402. project_activity.remove_version=Remove Version
  1403. project_activity.remove_version.question=Are you sure you want to delete this version?
  1404. project_activity.change_version=Change Version
  1405. project_activity.add_custom_event=Create Custom Event
  1406. project_activity.change_custom_event=Change Event
  1407. project_activity.remove_custom_event=Delete Event
  1408. project_activity.remove_custom_event.question=Are you sure you want to delete this event?
  1409. project_activity.reset_dates=Reset dates
  1410. project_activity.delete_analysis=Delete Analysis
  1411. project_activity.delete_analysis.question=Are you sure you want to delete this analysis from the history?
  1412. project_activity.filter_events=Filter events
  1413. project_activity.events.tooltip.edit=Edit this event
  1414. project_activity.events.tooltip.delete=Delete this event
  1415. project_activity.new_code_period_start=New Code Period starts here
  1416. project_activity.new_code_period_start.help=The analysis before this mark is the baseline for New Code comparison
  1417. project_activity.graphs.new_code=New Code
  1418. project_activity.graphs.new_code_long=New Code is indicated in yellow on the graph.
  1419. project_activity.graphs.issues=Issues
  1420. project_activity.graphs.coverage=Coverage
  1421. project_activity.graphs.duplications=Duplications
  1422. project_activity.graphs.custom=Custom
  1423. project_activity.graphs.custom.add=Add metric
  1424. project_activity.graphs.custom.add_metric=Add a metric
  1425. project_activity.graphs.custom.select_metric=Select metric to display
  1426. 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.
  1427. project_activity.graphs.custom.no_history=There isn't enough data to generate an activity graph, please select more metrics.
  1428. project_activity.graphs.custom.metric_no_history=This metric has no historical data to display.
  1429. project_activity.graphs.custom.search=Search for a metric by name
  1430. project_activity.graphs.custom.type_x_message=Only "{0}" metrics are available with your current selection.
  1431. project_activity.custom_metric.covered_lines=Covered Lines
  1432. #------------------------------------------------------------------------------
  1433. #
  1434. # PROJECT "UPDATE KEY" PAGE
  1435. #
  1436. #------------------------------------------------------------------------------
  1437. update_key.old_key=Old Key
  1438. update_key.new_key=New Key
  1439. update_key.are_you_sure_to_change_key=Are you sure you want to change key of "{0}"?
  1440. #------------------------------------------------------------------------------
  1441. #
  1442. # PROJECT QUALITY PROFILE PAGE
  1443. #
  1444. #------------------------------------------------------------------------------
  1445. project_quality_profile.instance_default=Instance default
  1446. project_quality_profile.successfully_updated={0} Quality Profile has been successfully updated.
  1447. project_quality_profile.subtitle=Manage project Quality Profiles
  1448. project_quality_profile.always_use_default=Always use the instance default Quality Profile
  1449. project_quality_profile.current=Current Quality Profile
  1450. project_quality_profile.always_use_specific=Always use a specific Quality Profile
  1451. project_quality_profile.change_lang_X_profile=Change {0} Quality Profile
  1452. project_quality_profile.requires_new_analysis=Changes will be applied after the next analysis.
  1453. project_quality_profile.add_language.title=Add a new language
  1454. project_quality_profile.add_language.description=Manually configure a specific profile for a new language before the next analysis.
  1455. project_quality_profile.add_language.action=Add language
  1456. project_quality_profile.add_language_modal.title=Add a language
  1457. project_quality_profile.add_language_modal.choose_language=Choose a language
  1458. project_quality_profile.add_language_modal.choose_profile=Choose a profile
  1459. project_quality_profile.add_language_modal.no_active_rules=this profile has no active rules
  1460. 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.
  1461. project_quality_profile.add_language_modal.go_to_profile=Go to Quality Profile
  1462. project_quality_profile.change_profile=Change profile
  1463. #------------------------------------------------------------------------------
  1464. #
  1465. # PROJECT QUALITY GATE PAGE
  1466. #
  1467. #------------------------------------------------------------------------------
  1468. project_quality_gate.default_qgate=Default
  1469. project_quality_gate.successfully_updated=Quality Gate has been successfully updated.
  1470. project_quality_gate.subtitle=Manage project Quality Gate
  1471. project_quality_gate.always_use_default=Always use the instance default Quality Gate
  1472. project_quality_gate.always_use_specific=Always use a specific Quality Gate
  1473. project_quality_gate.requires_new_analysis=Changes will be applied after the next analysis.
  1474. project_quality_gate.no_condition=This Quality Gate is empty. To make it usable, add conditions to the {link}.
  1475. 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}.
  1476. project_quality_gate.no_condition.link=Quality Gate definition
  1477. project_quality_gate.no_condition.reason=No conditions
  1478. #------------------------------------------------------------------------------
  1479. #
  1480. # PROJECT (RESOURCE) DELETION PAGE
  1481. #
  1482. #------------------------------------------------------------------------------
  1483. project_deletion.delete_resource_confirmation=Are you sure you want to delete "{0}"?
  1484. project_deletion.resource_deleted=Project "{0}" has been successfully deleted.
  1485. projects_management.delete_resource_confirmation=Are you sure you want to delete "{0}"?
  1486. projects_management.delete_selected_warning=You're about to delete {0} selected items.
  1487. projects_management.delete_all_warning=You're about to delete all {0} items.
  1488. projects_management.project_has_been_successfully_created=Project {project} has been successfully created.
  1489. #------------------------------------------------------------------------------
  1490. #
  1491. # PROJECT INFORMATION DRAWER
  1492. #
  1493. #------------------------------------------------------------------------------
  1494. project.info.title=Project Information
  1495. application.info.title=Application Information
  1496. project.info.description=Description
  1497. project.info.quality_gate=Quality Gate used
  1498. project.info.to_notifications=Set notifications
  1499. project.info.notifications=Set notifications
  1500. project.info.main_branch=Main branch
  1501. project.info.see_more_info_on_x_locs=See more information on your {0} lines of code
  1502. #------------------------------------------------------------------------------
  1503. #
  1504. # QUALITY PROFILES
  1505. #
  1506. #------------------------------------------------------------------------------
  1507. quality_profiles.new_profile=New Profile
  1508. quality_profiles.compare_with=Compare with
  1509. quality_profiles.filter_by=Filter profiles by
  1510. quality_profiles.restore_profile=Restore Profile
  1511. quality_profiles.restore_profile.success={1} rule(s) restored in profile "{0}"
  1512. quality_profiles.restore_profile.warning={1} rule(s) restored, {2} rule(s) ignored in profile "{0}"
  1513. quality_profiles.optional_configuration_file=Optional configuration file
  1514. quality_profiles.new_name=New name
  1515. quality_profiles.no_languages_available=There are no languages available. You cannot create a new profile.
  1516. quality_profiles.delete_confirm_title=Delete Profile
  1517. quality_profiles.are_you_sure_want_delete_profile_x=Are you sure that you want to delete the profile "{0}"?
  1518. 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?
  1519. quality_profiles.this_profile_has_descendants=This profile has descendants.
  1520. quality_profiles.profile_inheritance=Inheritance
  1521. quality_profiles.no_projects_associated_to_profile=No projects are explicitly associated to the profile.
  1522. quality_profiles.cannot_associate_projects_no_rules=You must activate at least 1 rule before you can assign projects to this profile.
  1523. quality_profiles.cannot_set_default_no_rules=You must activate at least 1 rule before you can make this profile the default profile.
  1524. 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.
  1525. 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.
  1526. quality_profiles.parent=Parent:
  1527. quality_profiles.parameter_set_to=Parameter {0} set to {1}
  1528. quality_profiles.x_rules_only_in={0} rules only in
  1529. quality_profiles.x_rules_have_different_configuration={0} rules have a different configuration
  1530. quality_profiles.copy_x_title=Copy Profile "{0}" - {1}
  1531. quality_profiles.extend_x_title=Extend Profile "{0}" - {1}
  1532. quality_profiles.rename_x_title=Rename Profile {0} - {1}
  1533. quality_profiles.deprecated=deprecated
  1534. quality_profiles.severity_set_to=Severity set to
  1535. quality_profiles.changelog.ACTIVATED=Activated
  1536. quality_profiles.changelog.DEACTIVATED=Deactivated
  1537. quality_profiles.changelog.UPDATED=Updated
  1538. quality_profiles.changelog.parameter_reset_to_default_value=Parameter {0} reset to default value
  1539. quality_profiles.deleted_profile=The profile {0} doesn't exist anymore
  1540. quality_profiles.projects_for_default=Every project not specifically associated with a Quality Profile will be associated to this one by default.
  1541. quality_profile.x_rules={0} rule(s)
  1542. quality_profile.x_active_rules={0} active rules
  1543. quality_profiles.x_overridden_rules={0} overridden rules
  1544. quality_profiles.change_parent=Change Parent
  1545. quality_profiles.all_profiles=All Profiles
  1546. quality_profiles.x_profiles={0} profile(s)
  1547. quality_profiles.x_Profiles={0} Profiles
  1548. quality_profiles.projects.select_hint=Click to associate this project with the Quality Profile
  1549. quality_profiles.projects.deselect_hint=Click to remove association between this project and the Quality Profile
  1550. quality_profile.empty_comparison=The Quality Profiles are equal.
  1551. quality_profiles.activate_more=Activate More
  1552. 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.
  1553. quality_profiles.activate_more_rules=Activate More Rules
  1554. quality_profiles.intro1=Quality Profiles are collections of rules to apply during an analysis.
  1555. quality_profiles.intro2=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.
  1556. quality_profiles.list.projects=Projects
  1557. 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.
  1558. quality_profiles.list.rules=Rules
  1559. quality_profiles.list.updated=Updated
  1560. quality_profiles.list.used=Used
  1561. 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.
  1562. quality_profiles.x_updated_on_y={0}, updated on {1}
  1563. quality_profiles.change_projects=Change Projects
  1564. quality_profiles.not_found=The requested Quality Profile was not found.
  1565. quality_profiles.latest_new_rules=Recently Added Rules
  1566. quality_profiles.latest_new_rules.activated={0}, activated on {1} profile(s)
  1567. quality_profiles.latest_new_rules.not_activated={0}, not yet activated
  1568. quality_profiles.deprecated_rules=Deprecated Rules
  1569. quality_profiles.deprecated_rules_description=These deprecated rules will eventually disappear. You should proactively investigate replacing them.
  1570. quality_profiles.deprecated_rules_are_still_activated=Deprecated rules are still activated on {0} Quality Profile(s):
  1571. quality_profiles.sonarway_missing_rules=Sonar way rules not included
  1572. quality_profiles.sonarway_missing_rules_description=Recommended rules are missing from your profile
  1573. quality_profiles.stagnant_profiles=Stagnant Profiles
  1574. quality_profiles.not_updated_more_than_year=The following profiles haven't been updated for more than 1 year:
  1575. quality_profiles.exporters=Exporters
  1576. quality_profiles.exporters.deprecated=Exporters are deprecated, and will be removed in a future version.
  1577. quality_profiles.updated_=Updated:
  1578. quality_profiles.used_=Used:
  1579. quality_profiles.built_in=Built-in
  1580. quality_profiles.built_in.description=This is a built-in Quality Profile that might be updated automatically.
  1581. quality_profiles.extends_built_in=Because this Quality Profile inherits from a built-in Quality Profile, it might be updated automatically.
  1582. quality_profiles.default_permissions=Users with the global "Administer Quality Profiles" permission and those listed below can manage this Quality Profile.
  1583. quality_profiles.grant_permissions_to_more_users=Grant permissions to more users
  1584. quality_profiles.grant_permissions_to_user_or_group=Grant permissions to a user or a group
  1585. quality_profiles.additional_user_groups=Additional users / groups:
  1586. quality_profiles.search_description=Search users by login or name, and groups by name:
  1587. quality_profiles.permissions.remove.user=Remove permission from user
  1588. quality_profiles.permissions.remove.user.confirmation=Are you sure you want to remove permission on this quality profile from user {user}?
  1589. quality_profiles.permissions.remove.group=Remove permission from group
  1590. quality_profiles.permissions.remove.group.confirmation=Are you sure you want to remove permission on this quality profile from group {user}?
  1591. #------------------------------------------------------------------------------
  1592. #
  1593. # QUALITY GATES
  1594. #
  1595. #------------------------------------------------------------------------------
  1596. quality_gates.create=Create Quality Gate
  1597. quality_gates.rename=Rename Quality Gate
  1598. quality_gates.delete=Delete Quality Gate
  1599. quality_gates.copy=Copy Quality Gate
  1600. quality_gates.cannot_set_default_no_conditions=You must configure at least 1 condition before you can make this the default quality gate.
  1601. 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.
  1602. quality_gates.conditions=Conditions
  1603. quality_gates.conditions.help=Your project will fail the Quality Gate if it crosses any metric thresholds set for New Code or Overall Code.
  1604. quality_gates.conditions.help.link=See also: Clean as You Code
  1605. quality_gates.projects=Projects
  1606. 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.
  1607. quality_gates.add_condition=Add Condition
  1608. quality_gates.condition.edit=Edit condition on {0}
  1609. quality_gates.condition.delete=Delete condition on {0}
  1610. quality_gates.condition_added=Successfully added condition.
  1611. quality_gates.update_condition=Update Condition
  1612. quality_gates.condition_updated=Successfully updated condition.
  1613. quality_gates.no_conditions=No Conditions
  1614. quality_gates.health_icons=Project health icons represent:
  1615. quality_gates.projects_for_default=Every project not specifically associated to a quality gate will be associated to this one by default.
  1616. quality_gates.projects.with=With
  1617. quality_gates.projects.without=Without
  1618. quality_gates.projects.all=All
  1619. quality_gates.projects.noResults=No Projects
  1620. quality_gates.projects.select_hint=Click to associate this project with the quality gate
  1621. quality_gates.projects.deselect_hint=Click to remove association between this project and the quality gate
  1622. quality_gates.projects.cannot_associate_projects_no_conditions=You must configure at least 1 condition before you can assign projects to this quality gate.
  1623. quality_gates.operator.LT=is less than
  1624. quality_gates.operator.GT=is greater than
  1625. quality_gates.operator.EQ=equals
  1626. quality_gates.operator.NE=is not
  1627. quality_gates.operator.LT.short=<
  1628. quality_gates.operator.GT.short=>
  1629. quality_gates.operator.EQ.short==
  1630. quality_gates.operator.NE.short=\u2260
  1631. quality_gates.operator.LT.rating=is better than
  1632. quality_gates.operator.GT.rating=is worse than
  1633. quality_gates.operator.EQ.rating=is
  1634. quality_gates.operator.NE.rating=is not
  1635. quality_gates.delete.confirm.message=Are you sure you want to delete the "{0}" quality gate?
  1636. quality_gates.delete.confirm.default=Are you sure you want to delete the "{0}" quality gate, which is the default quality gate?
  1637. quality_gates.delete_condition=Delete Condition
  1638. quality_gates.condition_deleted=Successfully deleted condition
  1639. quality_gates.delete_condition.confirm.message=Are you sure you want to delete the "{0}" condition?
  1640. quality_gates.conditions.fails_when=Quality Gate fails when
  1641. quality_gates.conditions.metric=Metric
  1642. quality_gates.conditions.new_code=On New Code
  1643. quality_gates.conditions.new_code.long=Conditions on New Code
  1644. quality_gates.conditions.new_code.description=Conditions on New Code apply to all branches and to Pull Requests.
  1645. quality_gates.conditions.overall_code=On Overall Code
  1646. quality_gates.conditions.overall_code.long=Conditions on Overall Code
  1647. quality_gates.conditions.overall_code.description=Conditions on Overall Code apply to branches only.
  1648. quality_gates.conditions.operator=Operator
  1649. quality_gates.conditions.warning=Warning
  1650. quality_gates.conditions.warning.tooltip=Warning status is deprecated and will disappear with the next update of the Quality Gate.
  1651. quality_gates.conditions.value=Value
  1652. quality_gates.duplicated_conditions=This quality gate has duplicated conditions:
  1653. quality_gates.intro.1=Quality Gate is the set of conditions the project must meet before it can be released into production.
  1654. 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.
  1655. quality_gates.built_in=Built-in
  1656. quality_gates.built_in.help=Built-in, immutable Quality Gate reflecting best practices.
  1657. quality_gates.built_in.description.1=This quality gate is provided by default.
  1658. quality_gates.built_in.description.2=It will automatically be updated with the latest recommendations.
  1659. quality_gates.status=Quality Gate status
  1660. 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.
  1661. quality_gates.permissions=Permissions
  1662. quality_gates.permissions.help=Users with the global "Administer Quality Gates" permission and those listed below can manage this Quality Gate.
  1663. quality_gates.permissions.grant=Grant permissions to a user or a group
  1664. quality_gates.permissions.search=Search users by login or name, and groups by name:
  1665. quality_gates.permissions.remove.user=Remove permission from user
  1666. quality_gates.permissions.remove.user.confirmation=Are you sure you want to remove permission on this quality gate from user {user}?
  1667. quality_gates.permissions.remove.group=Remove permission from group
  1668. quality_gates.permissions.remove.group.confirmation=Are you sure you want to remove permission on this quality gate from group {user}?
  1669. #------------------------------------------------------------------------------
  1670. #
  1671. # RULES DOCUMENTATION PAGE
  1672. #
  1673. #------------------------------------------------------------------------------
  1674. rules.parameters=Parameters
  1675. rules.status.beta=Beta
  1676. rules.status.BETA=Beta
  1677. rules.status.deprecated=Deprecated
  1678. rules.status.DEPRECATED=Deprecated
  1679. 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.
  1680. rules.status.ready=Ready
  1681. rules.status.READY=Ready
  1682. rules.status.REMOVED=Removed
  1683. rules.status.REMOVED.help=The rule that generated this issue has been removed. Starting on the next analysis, this issue will no longer appear.
  1684. #------------------------------------------------------------------------------
  1685. #
  1686. # CODING RULES
  1687. #
  1688. #------------------------------------------------------------------------------
  1689. coding_rules.active_in_all_profiles=The rule is already activated on all available Quality Profiles.
  1690. coding_rules.activate=Activate
  1691. coding_rules.activate_in=Activate In
  1692. coding_rules.activate_in_quality_profile=Activate In Quality Profile
  1693. coding_rules.activation_severity=Activation Severity
  1694. coding_rules.available_since=Available Since
  1695. coding_rules.bulk_change=Bulk Change
  1696. coding_rules.bulk_change.success={2} rule(s) changed in profile {0} - {1}
  1697. coding_rules.bulk_change.warning={2} rule(s) changed, {3} rule(s) ignored in profile {0} - {1}
  1698. coding_rules.bulk_change.no_quality_profile=No quality profile.
  1699. 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.
  1700. coding_rules.can_not_deactivate=This rule is inherited and cannot be deactivated.
  1701. coding_rules.change_details=Change Details of Quality Profile
  1702. coding_rules.context.others.title=How can I fix it in another component or framework?
  1703. 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.
  1704. coding_rules.context.others.description.second=Caution: The libraries mentioned in these instructions may not be appropriate for your code.
  1705. coding_rules.context.others.description.do=Do use libraries that are compatible with the frameworks you are using.
  1706. coding_rules.context.others.description.dont=Don’t blindly copy and paste the fixups into your code.
  1707. coding_rules.context.others.title_feedback=Help us improve
  1708. 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.
  1709. coding_rules.context.others.feedback_description_2=We will do our best to provide you with more relevant instructions in the future.
  1710. coding_rules.context.others.feedback_description.link=Submit an idea
  1711. coding_rules.create=Create
  1712. coding_rules.create_custom_rule=Create Custom Rule
  1713. coding_rules.custom_rule=Custom Rule
  1714. coding_rules.custom_rule.help=Custom rules are created by administrators from templates, and are the only fully-editable rules.
  1715. coding_rules.custom_rule.activation_notice=Note: parameters of a custom rule are not customizable on rule activation, only during creation/edit.
  1716. 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.
  1717. coding_rules.custom_rules=Custom Rules
  1718. coding_rules.deactivate_in_quality_profile=Deactivate In Quality Profile
  1719. coding_rules.delete_rule=Delete Rule
  1720. coding_rules.delete.custom.confirm=Are you sure you want to delete custom rule "{0}"?
  1721. coding_rules.extend_description=Extend Description
  1722. coding_rules.deactivate_in=Deactivate In
  1723. coding_rules.deactivate=Deactivate
  1724. coding_rules.deactivate.confirm=Are you sure you want to deactivate this rule in the profile?
  1725. coding_rules.deactivate_in_all_quality_profiles=Deactivate In All {0} Profiles
  1726. coding_rules.inherits="{0}" inherits from "{1}"
  1727. coding_rules.issues=Issues
  1728. coding_rules.issues.only_main_branches=Only issues from the main project branches are included.
  1729. coding_rules.most_violating_projects=Most Violating Projects
  1730. 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.
  1731. coding_rules.no_results=No Coding Rules
  1732. coding_rules.no_issue_detected_for_projects=No issues were detected for this rule in the main project branches.
  1733. coding_rules.no_tags=No tags
  1734. coding_rules.original=Original:
  1735. coding_rules.overrides="{0}" overrides "{1}"
  1736. coding_rules.parameter.empty=(empty)
  1737. coding_rules.parameters=Parameters
  1738. coding_rules.parameters.default_value=Default Value:
  1739. coding_rules.quality_profiles=Quality Profiles
  1740. 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.
  1741. coding_rules.quality_profile=Quality Profile
  1742. coding_rules.reactivate=Reactivate
  1743. 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.
  1744. coding_rules.return_to_list=Return to list
  1745. coding_rules.see_all=See all rules
  1746. coding_rules.remove_extended_description=Remove Extended Description
  1747. coding_rules.remove_extended_description.confirm=Are you sure you want to remove the extended description?
  1748. coding_rules.repository_language=Rule repository (language)
  1749. coding_rules.revert_to_parent_definition=Revert to Parent Definition
  1750. coding_rules.revert_to_parent_definition.confirm=This rule will be reverted to the parameters defined in profile {0}. Are you sure?
  1751. coding_rules.rule_template=Rule Template
  1752. 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.
  1753. coding_rules.rule_template.title=This rule can be used as a template to create custom rules, it cannot be activated on a profile
  1754. coding_rules._rules=rules
  1755. coding_rules.show_template=Show Template
  1756. coding_rules.skip_to_filters=Skip to rules filters
  1757. coding_rules.to_select_rules=to select rules
  1758. coding_rules.type.tooltip.CODE_SMELL=Code Smell Detection Rule
  1759. coding_rules.type.tooltip.BUG=Bug Detection Rule
  1760. coding_rules.type.tooltip.VULNERABILITY=Vulnerability Detection Rule
  1761. coding_rules.type.tooltip.SECURITY_HOTSPOT=Security Hotspot Detection Rule
  1762. coding_rules.update_custom_rule=Update Custom Rule
  1763. coding_rules.filter_similar_rules=Filter Similar Rules
  1764. coding_rules.filters.activation=Activation
  1765. coding_rules.filters.activation.active=Active
  1766. coding_rules.filters.activation.active_rules=Active Rules
  1767. coding_rules.filters.activation.inactive=Inactive
  1768. coding_rules.filters.activation.help=Activation criterion is available when a Quality Profile is selected
  1769. coding_rules.filters.active_severity=Active Severity
  1770. coding_rules.filters.active_severity.inactive=Active severity criterion is available when a Quality Profile is selected
  1771. coding_rules.filters.availableSince=Available Since
  1772. coding_rules.filters.characteristic=Characteristic
  1773. coding_rules.filters.description=Description
  1774. coding_rules.filters.quality_profile=Quality Profile
  1775. coding_rules.filters.inheritance=Inheritance
  1776. coding_rules.filters.inheritance.inactive=Inheritance criterion is available when an inherited Quality Profile is selected
  1777. coding_rules.filters.inheritance.none=Not Inherited
  1778. coding_rules.filters.inheritance.inherited=Inherited
  1779. coding_rules.filters.inheritance.x_inherited_from_y={0} inherited from "{1}"
  1780. coding_rules.filters.inheritance.overrides=Overridden
  1781. coding_rules.filters.key=Key
  1782. coding_rules.filters.language=Language
  1783. coding_rules.filters.language.inactive=Language criterion is only available when no Quality Profile is selected
  1784. coding_rules.filters.name=Name
  1785. coding_rules.filters.repository=Repository
  1786. coding_rules.filters.severity=Severity
  1787. coding_rules.filters.status=Status
  1788. coding_rules.filters.tag=Tag
  1789. coding_rules.filters.template=Templates
  1790. coding_rules.filters.template.is_template=Show Templates Only
  1791. coding_rules.filters.template.is_not_template=Hide Templates
  1792. coding_rules.facet.languages=Language
  1793. coding_rules.facet.repositories=Repository
  1794. coding_rules.facet.tags=Tag
  1795. coding_rules.facet.qprofile=Quality Profile
  1796. coding_rules.facet.qprofile.help=Quality Profiles are collections of Rules to apply during an analysis.
  1797. coding_rules.facet.qprofile.link=See also: Quality Profiles
  1798. coding_rules.facet.debt_characteristics=Characteristic
  1799. coding_rules.facet.severities=Default Severity
  1800. coding_rules.facet.statuses=Status
  1801. coding_rules.facet.available_since=Available Since
  1802. coding_rules.facet.inheritance=Inheritance
  1803. coding_rules.facet.activationSeverities=Activation Severity
  1804. coding_rules.facet.template=Template
  1805. coding_rules.facet.rule_key=Rule
  1806. coding_rules.facet.types=Type
  1807. coding_rules.facets.languages=Languages
  1808. coding_rules.facets.tags=Tags
  1809. coding_rules.facets.repositories=Repositories
  1810. coding_rules.facets.top=Top {0}
  1811. coding_rules.remediation_function=Remediation function
  1812. coding_rules.remediation_function.LINEAR=Linear
  1813. coding_rules.remediation_function.LINEAR_OFFSET=Linear with offset
  1814. coding_rules.remediation_function.CONSTANT_ISSUE=Constant/issue
  1815. coding_rules.remediation_function.coeff=Coeff
  1816. coding_rules.remediation_function.offset=Offset
  1817. coding_rules.remediation_function.constant=Constant
  1818. coding_rules.external_rule.engine=Rule provided by an external rule engine: {0}
  1819. coding_rules.description_section.title.introduction=Introduction
  1820. coding_rules.description_section.title.root_cause=Why is this an issue?
  1821. coding_rules.description_section.title.root_cause.SECURITY_HOTSPOT=What is the risk?
  1822. coding_rules.description_section.title.assess_the_problem=Assess the risk
  1823. coding_rules.description_section.title.how_to_fix=How can I fix it?
  1824. coding_rules.description_section.title.more_info=More Info
  1825. coding_rules.description_context.title=Which component or framework contains the issue?
  1826. coding_rules.description_context.sub_title=How can I fix it in {0}?
  1827. coding_rules.description_context.default_information={0} was detected as the most relevant component or framework for this issue.
  1828. coding_rules.description_context.other=Other
  1829. coding_rules.more_info.education_principles.title=Security principles
  1830. coding_rules.more_info.resources.title=Resources
  1831. coding_rules.more_info.notification_message=We've added new information about security principles below. Security principles are general guidelines that can help you improve the security of your code. Take a moment now to read through them.
  1832. coding_rules.more_info.scroll_message=Scroll down to security principles
  1833. #------------------------------------------------------------------------------
  1834. #
  1835. # EMAIL CONFIGURATION
  1836. #
  1837. #------------------------------------------------------------------------------
  1838. email_configuration.test.title=Test Configuration
  1839. email_configuration.test.to_address=To
  1840. email_configuration.test.subject=Subject
  1841. email_configuration.test.message=Message
  1842. email_configuration.test.message_text=This is a test message from SonarQube.
  1843. email_configuration.test.send=Send Test Email
  1844. email_configuration.test.email_was_sent_to_x=Email was sent to {0}
  1845. #------------------------------------------------------------------------------
  1846. #
  1847. # NOTIFICATIONS
  1848. #
  1849. #------------------------------------------------------------------------------
  1850. notification.channel.EmailNotificationChannel=Email
  1851. notification.dispatcher.information=A notification is never sent to the author of the event.
  1852. notification.dispatcher.ChangesOnMyIssue=Changes in issues/hotspots assigned to me
  1853. notification.dispatcher.NewIssues=New issues
  1854. notification.dispatcher.NewAlerts=Quality gate changes on all available projects
  1855. notification.dispatcher.NewAlerts.project=Quality gate changes
  1856. notification.dispatcher.NewFalsePositiveIssue=Issues resolved as false positive or won't fix
  1857. notification.dispatcher.SQ-MyNewIssues=My new issues
  1858. notification.dispatcher.CeReportTaskFailure=Background tasks in failure on my administered projects
  1859. notification.dispatcher.CeReportTaskFailure.project=Background tasks in failure
  1860. #------------------------------------------------------------------------------
  1861. #
  1862. # ALERTS
  1863. #
  1864. #------------------------------------------------------------------------------
  1865. alerts.operator.<=is less than
  1866. alerts.operator.>=is greater than
  1867. alerts.operator.\==equals
  1868. alerts.operator.!\==is not
  1869. alert.tooltip.error=This is an error message.
  1870. alert.tooltip.warning=This is a warning message.
  1871. alert.tooltip.success=This is a success message.
  1872. alert.tooltip.info=This is an info message.
  1873. alert.dismiss=Dismiss this message
  1874. #------------------------------------------------------------------------------
  1875. #
  1876. # USER
  1877. #
  1878. #------------------------------------------------------------------------------
  1879. user.password_doesnt_match_confirmation=Password doesn't match confirmation.
  1880. user.login_or_email_used_as_scm_account=Login and email are automatically considered as SCM accounts
  1881. user.x_deleted={0} (deleted)
  1882. login.login_to_sonarqube=Log In to SonarQube
  1883. login.login_with_x=Log in with {0}
  1884. login.more_options=More options
  1885. login.unauthorized_access_alert=You are not authorized to access this page. Please log in with more privileges and try again.
  1886. login.with_x=With {0}
  1887. login.authentication_failed=Authentication failed
  1888. login.logout_failed=Logout failed
  1889. unauthorized.message=You're not authorized to access this page. Please contact the administrator.
  1890. unauthorized.reason=Reason:
  1891. #------------------------------------------------------------------------------
  1892. #
  1893. # USERS & GROUPS PAGE
  1894. #
  1895. #------------------------------------------------------------------------------
  1896. users.update=Update users
  1897. groups.users.edit=Change group members
  1898. #------------------------------------------------------------------------------
  1899. #
  1900. # MY PROFILE & MY ACCOUNT
  1901. #
  1902. #------------------------------------------------------------------------------
  1903. my_profile.login=Login
  1904. my_profile.email=Email
  1905. my_profile.groups=Groups
  1906. my_profile.scm_accounts=SCM Accounts
  1907. my_profile.scm_accounts.tooltip=SCM accounts are used for automatic issue assignment. Login and email are automatically considered as SCM account.
  1908. my_profile.password.title=Enter a new password
  1909. my_profile.password.old=Old Password
  1910. my_profile.password.new=New Password
  1911. my_profile.password.confirm=Confirm Password
  1912. my_profile.password.changed=The password has been changed!
  1913. my_profile.notifications.submit=Save changes
  1914. my_profile.overall_notifications.title=Overall notifications
  1915. my_profile.per_project_notifications.title=Notifications per project
  1916. my_profile.per_project_notifications.add=Add a project
  1917. my_profile.per_project_notifications.edit=Set notifications
  1918. my_account.page=My Account
  1919. my_account.notifications=Notifications
  1920. my_account.no_project_notifications=You have not set project notifications yet.
  1921. my_account.profile=Profile
  1922. my_account.security=Security
  1923. 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.
  1924. my_account.token_type=Type
  1925. my_account.project_name=Project
  1926. my_account.tokens_last_usage=Last use
  1927. my_account.tokens.expiration=Expiration
  1928. my_account.tokens.expired=Token is expired
  1929. my_account.projects=Projects
  1930. my_account.projects.description=Those projects are the ones you are administering.
  1931. my_account.projects.no_results=You are not administering any project yet.
  1932. my_account.projects.analyzed_x=Analyzed {0}
  1933. my_account.projects.never_analyzed=Never analyzed
  1934. my_account.search_project=Search Project
  1935. my_account.set_notifications_for=Search a project by name
  1936. my_account.set_notifications_for.title=Add a project
  1937. my_account.create_new.TRK=Add a project
  1938. my_account.add_project=Add Project
  1939. my_account.add_project.manual=Manually
  1940. my_account.add_project.azure=Azure DevOps
  1941. my_account.add_project.bitbucket=Bitbucket
  1942. my_account.add_project.bitbucketcloud=Bitbucket
  1943. my_account.add_project.github=GitHub
  1944. my_account.add_project.gitlab=GitLab
  1945. my_account.reset_password=Update your password
  1946. my_account.reset_password.explain=This account should not use the default password.
  1947. my_account.create_new_project_portfolio_or_application=Analyze new project / Create new portfolio or application
  1948. my_account.preferences=Preferences
  1949. my_account.preferences.keyboard_shortcuts=Enable Keyboard Shortcuts
  1950. 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).
  1951. my_account.preferences.keyboard_shortcuts.enabled=Keyboard shortcuts are enabled
  1952. my_account.preferences.keyboard_shortcuts.disabled=Keyboard shortcuts are disabled
  1953. #------------------------------------------------------------------------------
  1954. #
  1955. # PROJECT PROVISIONING
  1956. #
  1957. #------------------------------------------------------------------------------
  1958. provisioning.no_analysis=No analysis has been performed since creation. The only available section is the configuration.
  1959. provisioning.no_analysis.delete=Either you should retry analysis or simply {link}.
  1960. provisioning.no_analysis.delete_project=delete the project
  1961. provisioning.no_analysis_on_main_branch="{branchName}" branch has not been analyzed yet.
  1962. provisioning.no_analysis_on_main_branch.bad_configuration="{branchName}" branch has not been analyzed yet and you have multiple branches already. It looks like it is not your {branchType}, check your configuration.
  1963. provisioning.only_provisioned=Only Provisioned
  1964. provisioning.only_provisioned.tooltip=Provisioned projects are projects that have been created, but have not been analyzed yet.
  1965. provisioning.no_analysis.application=No analysis has been performed since creation. Analyze a project to see information here.
  1966. #------------------------------------------------------------------------------
  1967. #
  1968. # RULE SEVERITIES
  1969. #
  1970. #------------------------------------------------------------------------------
  1971. severity.BLOCKER=Blocker
  1972. severity.BLOCKER.description=Must be fixed immediately.
  1973. severity.CRITICAL=Critical
  1974. severity.CRITICAL.description=Must be reviewed immediately and fixed soon.
  1975. severity.MAJOR=Major
  1976. severity.MAJOR.description=High potential for significant to moderate impact.
  1977. severity.MINOR=Minor
  1978. severity.MINOR.description=Potential for moderate to minor impact.
  1979. severity.INFO=Info
  1980. severity.INFO.description=Neither a bug nor a quality flaw. Just a finding.
  1981. #------------------------------------------------------------------------------
  1982. #
  1983. # METRIC DOMAINS
  1984. #
  1985. #------------------------------------------------------------------------------
  1986. metric_domain.Size=Size
  1987. metric_domain.Tests=Tests
  1988. metric_domain.Integration Tests=Integration Tests
  1989. metric_domain.Complexity=Complexity
  1990. metric_domain.Documentation=Documentation
  1991. metric_domain.Rules=Rules
  1992. metric_domain.General=General
  1993. metric_domain.Duplication=Duplication
  1994. metric_domain.Design=Design
  1995. metric_domain.SCM=SCM
  1996. metric_domain.Maintainability=Maintainability
  1997. metric_domain.Releasability=Releasability
  1998. metric_domain.Reliability=Reliability
  1999. metric_domain.Security=Security
  2000. metric_domain.SecurityReview=Security Review
  2001. metric_domain.Issues=Issues
  2002. metric_domain.Duplications=Duplications
  2003. metric_domain.Coverage=Coverage
  2004. #--------------------------------------------------------------------------------------------------------------------
  2005. #
  2006. # METRIC TYPES
  2007. #
  2008. #--------------------------------------------------------------------------------------------------------------------
  2009. metric.type.INT=Integer
  2010. metric.type.FLOAT=Float
  2011. metric.type.PERCENT=Percent
  2012. metric.type.BOOL=Boolean
  2013. metric.type.STRING=String
  2014. metric.type.MILLISEC=Milliseconds
  2015. metric.type.DATA=Data
  2016. metric.type.LEVEL=Level
  2017. metric.type.DISTRIB=Distribution
  2018. metric.type.RATING=Rating
  2019. metric.type.WORK_DUR=Work Duration
  2020. metric.level.ERROR=Failed
  2021. metric.level.WARN=Warning
  2022. metric.level.OK=Passed
  2023. metric.level.NONE=None
  2024. #------------------------------------------------------------------------------
  2025. #
  2026. # METRICS
  2027. #
  2028. #------------------------------------------------------------------------------
  2029. metric.abstractness.description=Abstractness
  2030. metric.abstractness.name=Abstractness
  2031. metric.accessors.description=Accessors
  2032. metric.accessors.name=Accessors
  2033. metric.alert_status.description=The project status with regard to its quality gate.
  2034. metric.alert_status.name=Quality Gate Status
  2035. metric.authors_by_line.description=Authors by line
  2036. metric.authors_by_line.name=Authors by Line
  2037. metric.blocker_violations.description=Blocker issues
  2038. metric.blocker_violations.name=Blocker Issues
  2039. metric.branch_coverage.description=Condition coverage
  2040. metric.branch_coverage.name=Condition Coverage
  2041. metric.bugs.description=Bugs
  2042. metric.bugs.name=Bugs
  2043. metric.ca.description=Afferent couplings
  2044. metric.ca.name=Afferent Couplings
  2045. metric.ce.description=Efferent couplings
  2046. metric.ce.name=Efferent Couplings
  2047. metric.classes.description=Classes
  2048. metric.classes.name=Classes
  2049. metric.class_complexity.description=Complexity average by class
  2050. metric.class_complexity.name=Complexity / Class
  2051. metric.class_complexity_distribution.description=Classes distribution /complexity
  2052. metric.class_complexity_distribution.name=Class Distribution / Complexity
  2053. metric.code_smells.description=Code Smells
  2054. metric.code_smells.name=Code Smells
  2055. metric.cognitive_complexity.description=Cognitive complexity
  2056. metric.cognitive_complexity.name=Cognitive Complexity
  2057. metric.commented_out_code_lines.description=Commented lines of code
  2058. metric.commented_out_code_lines.name=Commented-Out LOC
  2059. metric.comment_blank_lines.description=Comments that do not contain comments
  2060. metric.comment_blank_lines.name=Blank Comments
  2061. metric.comment_lines.description=Number of comment lines
  2062. metric.comment_lines.name=Comment Lines
  2063. metric.comment_lines_density.description=Comments balanced by ncloc + comment lines
  2064. metric.comment_lines_density.name=Comments (%)
  2065. metric.comment_lines_density.short_name=Comments
  2066. metric.complexity.description=Cyclomatic complexity
  2067. metric.complexity.name=Cyclomatic Complexity
  2068. metric.complexity_in_classes.description=Cyclomatic complexity in classes
  2069. metric.complexity_in_classes.name=Complexity in Classes
  2070. metric.complexity_in_functions.description=Cyclomatic complexity in functions
  2071. metric.complexity_in_functions.name=Complexity in Functions
  2072. metric.conditions_by_line.description=Conditions by line
  2073. metric.conditions_by_line.name=Conditions by Line
  2074. metric.conditions_to_cover.description=Conditions to cover
  2075. metric.conditions_to_cover.name=Conditions to Cover
  2076. metric.confirmed_issues.description=Confirmed issues
  2077. metric.confirmed_issues.name=Confirmed Issues
  2078. metric.coverage.description=Coverage by tests
  2079. metric.coverage.name=Coverage
  2080. metric.coverage_line_hits_data.description=Coverage hits by line
  2081. metric.coverage_line_hits_data.name=Coverage Hits by Line
  2082. metric.covered_conditions.description=Covered conditions
  2083. metric.covered_conditions.name=Covered Conditions
  2084. metric.covered_conditions_by_line.description=Covered conditions by line
  2085. metric.covered_conditions_by_line.name=Covered Conditions by Line
  2086. metric.covered_lines.description=Covered lines
  2087. metric.covered_lines.name=Covered Lines
  2088. metric.critical_violations.description=Critical issues
  2089. metric.critical_violations.name=Critical Issues
  2090. metric.development_cost.description=Development cost
  2091. metric.development_cost.name=Development Cost
  2092. metric.directories.description=Directories
  2093. metric.directories.name=Directories
  2094. metric.distance.description=Distance
  2095. metric.distance.name=Distance
  2096. metric.dit.description=Depth in Inheritance Tree
  2097. metric.dit.name=Depth in Tree
  2098. metric.dsm.description=Dependency Matrix
  2099. metric.dsm.name=Dependency Matrix
  2100. metric.duplicated_blocks.description=Duplicated blocks
  2101. metric.duplicated_blocks.name=Duplicated Blocks
  2102. metric.duplicated_files.description=Duplicated files
  2103. metric.duplicated_files.name=Duplicated Files
  2104. metric.duplicated_lines.description=Duplicated lines
  2105. metric.duplicated_lines.name=Duplicated Lines
  2106. metric.duplicated_lines_density.description=Duplicated lines balanced by statements
  2107. metric.duplicated_lines_density.name=Duplicated Lines (%)
  2108. metric.duplicated_lines_density.short_name=Duplications
  2109. metric.duplicated_lines_density.extra_short_name=Density
  2110. metric.duplications_data.description=Duplications details
  2111. metric.duplications_data.name=Duplication Details
  2112. metric.efficiency.description=Efficiency
  2113. metric.efficiency.name=Efficiency
  2114. metric.effort_to_reach_maintainability_rating_a.description=Effort to reach maintainability rating A
  2115. metric.effort_to_reach_maintainability_rating_a.name=Effort to Reach Maintainability Rating A
  2116. metric.effort_to_reach_maintainability_rating_a.extra_short_name=Effort to Reach A
  2117. metric.false_positive_issues.description=False positive issues
  2118. metric.false_positive_issues.name=False Positive Issues
  2119. metric.files.description=Number of files
  2120. metric.files.name=Files
  2121. metric.file_complexity.description=Complexity average by file
  2122. metric.file_complexity.name=Complexity / File
  2123. metric.file_complexity_distribution.description=Files distribution /complexity
  2124. metric.file_complexity_distribution.name=File Distribution / Complexity
  2125. metric.file_cycles.description=File cycles
  2126. metric.file_cycles.name=File Cycles
  2127. metric.file_edges_weight.description=File edges weight
  2128. metric.file_edges_weight.name=File Edges Weight
  2129. metric.file_feedback_edges.description=Suspect file dependencies
  2130. metric.file_feedback_edges.name=Suspect File Dependencies
  2131. metric.file_tangles.description=Files tangles
  2132. metric.file_tangles.name=File Tangles
  2133. metric.file_tangle_index.description=File tangle index
  2134. metric.file_tangle_index.name=File Tangle Index
  2135. metric.functions.description=Functions
  2136. metric.functions.name=Functions
  2137. metric.function_complexity.description=Complexity average by function
  2138. metric.function_complexity.name=Complexity / Function
  2139. metric.function_complexity_distribution.description=Functions distribution /complexity
  2140. metric.function_complexity_distribution.name=Function Distribution / Complexity
  2141. metric.generated_lines.description=Number of generated lines
  2142. metric.generated_lines.name.suffix=generated lines
  2143. metric.generated_lines.name=Generated Lines
  2144. metric.generated_ncloc.description=Generated non Commenting Lines of Code
  2145. metric.generated_ncloc.name.suffix=generated lines of code
  2146. metric.generated_ncloc.name=Generated Lines of Code
  2147. metric.has_rating_X=Has rating: {0}
  2148. metric.no_rating=Has no rating
  2149. metric.info_violations.description=Info issues
  2150. metric.info_violations.name=Info Issues
  2151. metric.instability.description=Instability
  2152. metric.instability.name=Instability
  2153. metric.it_branch_coverage.description=Condition coverage by integration tests
  2154. metric.it_branch_coverage.name=IT Condition Coverage
  2155. metric.it_conditions_by_line.description=IT conditions by line
  2156. metric.it_conditions_by_line.name=IT Conditions by Line
  2157. metric.it_conditions_to_cover.description=Conditions to cover by integration tests
  2158. metric.it_conditions_to_cover.name=IT Conditions to Cover
  2159. metric.it_coverage.description=Integration tests coverage
  2160. metric.it_coverage.name=IT Coverage
  2161. metric.it_coverage_line_hits_data.description=Coverage hits by line by integration tests
  2162. metric.it_coverage_line_hits_data.name=IT Coverage Hits by Line
  2163. metric.it_covered_conditions_by_line.description=IT covered conditions by line
  2164. metric.it_covered_conditions_by_line.name=IT Covered Conditions by Line
  2165. metric.it_lines_to_cover.description=Lines to cover by integration tests
  2166. metric.it_lines_to_cover.name=IT Lines to Cover
  2167. metric.it_line_coverage.description=Line coverage by integration tests
  2168. metric.it_line_coverage.name=IT Line Coverage
  2169. metric.it_uncovered_conditions.description=Uncovered conditions by integration tests
  2170. metric.it_uncovered_conditions.name=IT Uncovered Conditions
  2171. metric.it_uncovered_lines.description=Uncovered lines by integration tests
  2172. metric.it_uncovered_lines.name=IT Uncovered Lines
  2173. metric.last_commit_date.name=Date of Last Commit
  2174. metric.last_commit_datetimes_by_line.description=Last commit dates by line
  2175. metric.last_commit_datetimes_by_line.name=Last Commit Dates by Line
  2176. metric.lcom4.description=Lack of Cohesion of Functions
  2177. metric.lcom4.name=LCOM4
  2178. metric.lcom4_blocks.description=LCOM4 blocks
  2179. metric.lcom4_blocks.name=LCOM4 Blocks
  2180. metric.lcom4_distribution.description=Class distribution /LCOM4
  2181. metric.lcom4_distribution.name=Class Distribution / LCOM4
  2182. metric.lines.description=Lines
  2183. metric.lines.name=Lines
  2184. metric.lines_to_cover.description=Lines to cover
  2185. metric.lines_to_cover.name=Lines to Cover
  2186. metric.line_coverage.description=Line coverage
  2187. metric.line_coverage.name=Line Coverage
  2188. metric.maintainability.description=Maintainability
  2189. metric.maintainability.name=Maintainability
  2190. metric.major_violations.description=Major issues
  2191. metric.major_violations.name=Major Issues
  2192. metric.minor_violations.description=Minor issues
  2193. metric.minor_violations.name=Minor Issues
  2194. metric.ncloc.name=Lines of Code
  2195. metric.ncloc.description=Non commenting lines of code
  2196. metric.ncloc_language_distribution.description=Non Commenting Lines of Code Distributed By Language
  2197. metric.ncloc_language_distribution.name=Lines of Code Per Language
  2198. metric.new_blocker_violations.description=New Blocker issues
  2199. metric.new_blocker_violations.name=New Blocker Issues
  2200. metric.new_branch_coverage.description=Condition coverage of new/changed code
  2201. metric.new_branch_coverage.name=Condition Coverage on New Code
  2202. metric.new_branch_coverage.extra_short_name=Condition Coverage
  2203. metric.new_bugs.description=New Bugs
  2204. metric.new_bugs.name=New Bugs
  2205. metric.new_bugs.short_name=Bugs
  2206. metric.new_code_smells.description=New Code Smells
  2207. metric.new_code_smells.name=New Code Smells
  2208. metric.new_code_smells.short_name=Code Smells
  2209. metric.new_conditions_to_cover.description=Conditions to cover on new code
  2210. metric.new_conditions_to_cover.name=Conditions to Cover on New Code
  2211. metric.new_conditions_to_cover.extra_short_name=Conditions to Cover
  2212. metric.new_coverage.description=Coverage of new/changed code
  2213. metric.new_coverage.name=Coverage on New Code
  2214. metric.new_coverage.short_name=Coverage
  2215. metric.new_critical_violations.description=New Critical issues
  2216. metric.new_critical_violations.name=New Critical Issues
  2217. metric.new_development_cost.description=Development cost on new code
  2218. metric.new_development_cost.name=Development Cost on New Code
  2219. metric.new_duplicated_blocks.name=Duplicated Blocks on New Code
  2220. metric.new_duplicated_blocks.extra_short_name=Duplicated Blocks
  2221. metric.new_duplicated_blocks.description=Duplicated blocks on new code
  2222. metric.new_duplicated_lines.name=Duplicated Lines on New Code
  2223. metric.new_duplicated_lines.extra_short_name=Duplicated Lines
  2224. metric.new_duplicated_lines.description=Duplicated Lines on New Code
  2225. metric.new_duplicated_lines_density.description=Duplicated lines (%) on new code balanced by statements
  2226. metric.new_duplicated_lines_density.name=Duplicated Lines (%) on New Code
  2227. metric.new_duplicated_lines_density.short_name=Duplications
  2228. metric.new_duplicated_lines_density.extra_short_name=Density
  2229. metric.new_info_violations.description=New Info issues
  2230. metric.new_info_violations.name=New Info Issues
  2231. metric.new_it_branch_coverage.description=Integration tests condition coverage of new/changed code
  2232. metric.new_it_branch_coverage.name=Condition Coverage by IT on New Code
  2233. metric.new_it_conditions_to_cover.description=New conditions to cover by integration tests
  2234. metric.new_it_conditions_to_cover.name=Conditions to Cover by IT on New Code
  2235. metric.new_it_coverage.description=Integration tests coverage of new/changed code
  2236. metric.new_it_coverage.name=Coverage by IT on New Code
  2237. metric.new_it_lines_to_cover.description=Lines to cover on new code by integration tests
  2238. metric.new_it_lines_to_cover.name=Lines to Cover by IT on New Code
  2239. metric.new_it_line_coverage.description=Integration tests line coverage of added/changed code
  2240. metric.new_it_line_coverage.name=Line Coverage by IT on New Code
  2241. metric.new_it_uncovered_conditions.description=New conditions that are not covered by integration tests
  2242. metric.new_it_uncovered_conditions.name=Uncovered Conditions by IT on New Code
  2243. metric.new_it_uncovered_lines.description=New lines that are not covered by integration tests
  2244. metric.new_it_uncovered_lines.name=Uncovered Lines by IT on New Code
  2245. metric.new_lines_to_cover.description=Lines to cover on new code
  2246. metric.new_lines_to_cover.name=Lines to Cover on New Code
  2247. metric.new_lines_to_cover.extra_short_name=Lines to Cover
  2248. metric.new_line_coverage.description=Line coverage of added/changed code
  2249. metric.new_line_coverage.name=Line Coverage on New Code
  2250. metric.new_line_coverage.extra_short_name=Line Coverage
  2251. metric.new_maintainability_rating.description=Maintainability rating on new code
  2252. metric.new_maintainability_rating.name=Maintainability Rating on New Code
  2253. metric.new_maintainability_rating.extra_short_name=Rating
  2254. metric.new_major_violations.description=New Major issues
  2255. metric.new_major_violations.name=New Major Issues
  2256. metric.new_minor_violations.description=New Minor issues
  2257. metric.new_minor_violations.name=New Minor Issues
  2258. metric.new_lines.name=New Lines
  2259. metric.new_lines.description=New lines
  2260. metric.new_lines.short_name=Lines
  2261. metric.new_overall_branch_coverage.description=Condition coverage of new/changed code by all tests
  2262. metric.new_overall_branch_coverage.name=Overall Condition Coverage on New Code
  2263. metric.new_overall_conditions_to_cover.description=New conditions to cover by all tests
  2264. metric.new_overall_conditions_to_cover.name=Overall Conditions to Cover on New Code
  2265. metric.new_overall_coverage.description=Overall coverage of new/changed code
  2266. metric.new_overall_coverage.name=Overall Coverage on New Code
  2267. metric.new_overall_lines_to_cover.description=New lines to cover by all tests
  2268. metric.new_overall_lines_to_cover.name=Overall Lines to Cover on New Code
  2269. metric.new_overall_line_coverage.description=Line coverage of added/changed code by all tests
  2270. metric.new_overall_line_coverage.name=Overall Line Coverage on New Code
  2271. metric.new_overall_uncovered_conditions.description=New conditions that are not covered by any test
  2272. metric.new_overall_uncovered_conditions.name=Overall Uncovered Conditions on New Code
  2273. metric.new_overall_uncovered_lines.description=New lines that are not covered by any tests
  2274. metric.new_overall_uncovered_lines.name=Overall Uncovered Lines on New Code
  2275. metric.new_reliability_rating.description=Reliability rating on new code
  2276. metric.new_reliability_rating.name=Reliability Rating on New Code
  2277. metric.new_reliability_rating.extra_short_name=Rating
  2278. metric.new_reliability_remediation_effort.description=Reliability remediation effort on new code
  2279. metric.new_reliability_remediation_effort.name=Reliability Remediation Effort on New Code
  2280. metric.new_reliability_remediation_effort.extra_short_name=Remediation Effort
  2281. metric.new_security_hotspots.description=New Security Hotspots
  2282. metric.new_security_hotspots.name=New Security Hotspots
  2283. metric.new_security_hotspots.short_name=Security Hotspots
  2284. metric.new_security_hotspots_reviewed.description=Percentage of Security Hotspots Reviewed on New Code
  2285. metric.new_security_hotspots_reviewed.name=Security Hotspots Reviewed on New Code
  2286. metric.new_security_hotspots_reviewed.short_name=Security Hotspots Reviewed
  2287. metric.new_security_hotspots_reviewed_status.description=Security Review Reviewed Status on New Code
  2288. metric.new_security_hotspots_reviewed_status.name=Security Review Reviewed Status on New Code
  2289. metric.new_security_hotspots_to_review_status.description=Security Review To Review Status on New Code
  2290. metric.new_security_hotspots_to_review_status.name=Security Review To Review Status on New Code
  2291. metric.new_security_rating.description=Security rating on new code
  2292. metric.new_security_rating.name=Security Rating on New Code
  2293. metric.new_security_rating.extra_short_name=Rating
  2294. metric.new_security_remediation_effort.description=Security remediation effort on new code
  2295. metric.new_security_remediation_effort.name=Security Remediation Effort on New Code
  2296. metric.new_security_remediation_effort.extra_short_name=Remediation Effort
  2297. metric.new_security_review_rating.description=Security Review Rating on New Code
  2298. metric.new_security_review_rating.name=Security Review Rating on New Code
  2299. metric.new_security_review_rating.extra_short_name=Rating
  2300. metric.new_sqale_debt_ratio.description=Technical Debt Ratio of new/changed code.
  2301. metric.new_sqale_debt_ratio.name=Technical Debt Ratio on New Code
  2302. metric.new_sqale_debt_ratio.short_name=Debt Ratio on new code
  2303. metric.new_sqale_debt_ratio.extra_short_name=Debt Ratio
  2304. metric.new_technical_debt.description=Added technical debt
  2305. metric.new_technical_debt.name=Added Technical Debt
  2306. metric.new_technical_debt.short_name=Added Debt
  2307. metric.new_technical_debt.extra_short_name=Debt
  2308. metric.new_uncovered_conditions.description=Uncovered conditions on new code
  2309. metric.new_uncovered_conditions.name=Uncovered Conditions on New Code
  2310. metric.new_uncovered_conditions.extra_short_name=Uncovered Conditions
  2311. metric.new_uncovered_lines.description=Uncovered lines on new code
  2312. metric.new_uncovered_lines.name=Uncovered Lines on New Code
  2313. metric.new_uncovered_lines.extra_short_name=Uncovered Lines
  2314. metric.new_violations.description=New issues
  2315. metric.new_violations.name=New Issues
  2316. metric.new_vulnerabilities.description=New Vulnerabilities
  2317. metric.new_vulnerabilities.name=New Vulnerabilities
  2318. metric.new_vulnerabilities.short_name=Vulnerabilities
  2319. metric.noc.description=Number of Children
  2320. metric.noc.name=Number of Children
  2321. metric.open_issues.description=Open issues
  2322. metric.open_issues.name=Open Issues
  2323. metric.overall_branch_coverage.description=Condition coverage by all tests
  2324. metric.overall_branch_coverage.name=Overall Condition Coverage
  2325. metric.overall_conditions_by_line.description=Overall conditions by all tests and by line
  2326. metric.overall_conditions_by_line.name=Overall Conditions by Line
  2327. metric.overall_conditions_to_cover.description=Conditions to cover by all tests
  2328. metric.overall_conditions_to_cover.name=Overall Conditions to Cover
  2329. metric.overall_coverage.description=Overall test coverage
  2330. metric.overall_coverage.name=Overall Coverage
  2331. metric.overall_coverage_line_hits_data.description=Coverage hits by all tests and by line
  2332. metric.overall_coverage_line_hits_data.name=Overall Coverage Hits by Line
  2333. metric.overall_covered_conditions_by_line.description=Overall covered conditions by all tests and by line
  2334. metric.overall_covered_conditions_by_line.name=Overall Covered Conditions by Line
  2335. metric.overall_lines_to_cover.description=Lines to cover by all tests
  2336. metric.overall_lines_to_cover.name=Overall Lines to Cover
  2337. metric.overall_line_coverage.description=Line coverage by all tests
  2338. metric.overall_line_coverage.name=Overall Line Coverage
  2339. metric.overall_uncovered_conditions.description=Uncovered conditions by all tests
  2340. metric.overall_uncovered_conditions.name=Overall Uncovered Conditions
  2341. metric.overall_uncovered_lines.description=Uncovered lines by all tests
  2342. metric.overall_uncovered_lines.name=Overall Uncovered Lines
  2343. metric.packages.description=Packages
  2344. metric.packages.name=Packages
  2345. metric.package_cycles.description=Package cycles
  2346. metric.package_cycles.name=Package Cycles
  2347. metric.package_edges_weight.description=Package edges weight
  2348. metric.package_edges_weight.name=Package Edges Weight
  2349. metric.package_feedback_edges.description=Package dependencies to cut
  2350. metric.package_feedback_edges.name=Package Dependencies to Cut
  2351. metric.package_tangles.description=File dependencies to cut
  2352. metric.package_tangles.name=File Dependencies to Cut
  2353. metric.package_tangle_index.description=Package tangle index
  2354. metric.package_tangle_index.name=Package Tangle Index
  2355. metric.portability.description=Portability
  2356. metric.portability.name=Portability
  2357. metric.profile.description=Selected Quality Profile
  2358. metric.profile.name=Profile
  2359. metric.profile_version.description=Selected Quality Profile version
  2360. metric.profile_version.name=Profile Version
  2361. metric.projects.description=Number of project branches
  2362. metric.projects.name=Project branches
  2363. metric.public_api.description=Public API
  2364. metric.public_api.name=Public API
  2365. metric.public_documented_api_density.description=Public documented classes and functions balanced by ncloc
  2366. metric.public_documented_api_density.name=Public Documented API (%)
  2367. metric.public_undocumented_api.description=Public undocumented classes, functions and variables
  2368. metric.public_undocumented_api.name=Public Undocumented API
  2369. metric.quality_gate_details.description=The project detailed status with regard to its quality gate
  2370. metric.quality_gate_details.name=Quality Gate Details
  2371. metric.quality_profiles.description=Details of Quality Profiles used during analysis
  2372. metric.quality_profiles.name=Profiles
  2373. metric.reliability.description=Reliability
  2374. metric.reliability.name=Reliability
  2375. metric.reliability_rating.description=Reliability rating
  2376. metric.reliability_rating.name=Reliability Rating
  2377. metric.reliability_rating.extra_short_name=Rating
  2378. metric.reliability_rating.tooltip.A=Reliability rating is A when there are no bugs.
  2379. metric.reliability_rating.tooltip.B=Reliability rating is B when there is at least one minor bug.
  2380. metric.reliability_rating.tooltip.C=Reliability rating is C when there is at least one major bug.
  2381. metric.reliability_rating.tooltip.D=Reliability rating is D when there is at least one critical bug.
  2382. metric.reliability_rating.tooltip.E=Reliability rating is E when there is at least one blocker bug.
  2383. metric.reliability_remediation_effort.description=Reliability Remediation Effort
  2384. metric.reliability_remediation_effort.name=Reliability Remediation Effort
  2385. metric.reliability_remediation_effort.extra_short_name=Remediation Effort
  2386. metric.reopened_issues.description=Reopened issues
  2387. metric.reopened_issues.name=Reopened Issues
  2388. metric.revisions_by_line.description=Revisions by line
  2389. metric.revisions_by_line.name=Revisions by Line
  2390. metric.rfc.description=Response for Class
  2391. metric.rfc.name=Response for Class
  2392. metric.rfc_distribution.description=Class distribution /RFC
  2393. metric.rfc_distribution.name=Class Distribution / RFC
  2394. metric.security_hotspots.description=Security Hotspots
  2395. metric.security_hotspots.full_description=Security-sensitive code that requires manual review to assess whether or not a vulnerability exists.
  2396. metric.security_hotspots.name=Security Hotspots
  2397. metric.security_hotspots_reviewed.description=Percentage of Security Hotspots Reviewed
  2398. metric.security_hotspots_reviewed.name=Security Hotspots Reviewed
  2399. metric.security_hotspots_reviewed_status.description=Security Review Reviewed Status
  2400. metric.security_hotspots_reviewed_status.name=Security Review Reviewed Status
  2401. metric.security_hotspots_to_review_status.description=Security Review To Review Status
  2402. metric.security_hotspots_to_review_status.name=Security Review To Review Status
  2403. metric.security_rating.description=Security rating
  2404. metric.security_rating.name=Security Rating
  2405. metric.security_rating.extra_short_name=Rating
  2406. metric.security_rating.tooltip.A=Security rating is A when there are no vulnerabilities.
  2407. metric.security_rating.tooltip.B=Security rating is B when there is at least one minor vulnerability.
  2408. metric.security_rating.tooltip.C=Security rating is C when there is at least one major vulnerability.
  2409. metric.security_rating.tooltip.D=Security rating is D when there is at least one critical vulnerability.
  2410. metric.security_rating.tooltip.E=Security rating is E when there is at least one blocker vulnerability.
  2411. metric.security_remediation_effort.description=Security remediation effort
  2412. metric.security_remediation_effort.name=Security Remediation Effort
  2413. metric.security_remediation_effort.extra_short_name=Remediation Effort
  2414. metric.security_review_rating.description=Security Review Rating
  2415. metric.security_review_rating.name=Security Review Rating
  2416. metric.security_review_rating.extra_short_name=Rating
  2417. metric.security_review_rating.tooltip.A=Security Review rating is A when at least 80% of Security Hotspots are reviewed.
  2418. metric.security_review_rating.tooltip.B=Security Review rating is B when less than 80% of Security Hotspots are reviewed.
  2419. metric.security_review_rating.tooltip.C=Security Review rating is C when less than 70% of Security Hotspots are reviewed.
  2420. metric.security_review_rating.tooltip.D=Security Review rating is D when less than 50% of Security Hotspots are reviewed.
  2421. metric.security_review_rating.tooltip.E=Security Review rating is E when less than 30% of Security Hotspots are reviewed.
  2422. metric.skipped_tests.description=Number of skipped unit tests
  2423. metric.skipped_tests.name=Skipped Unit Tests
  2424. metric.skipped_tests.short_name=Skipped
  2425. metric.sqale_debt_ratio.description=Ratio of the actual technical debt compared to the estimated cost to develop the whole source code from scratch
  2426. metric.sqale_debt_ratio.name=Technical Debt Ratio
  2427. metric.sqale_debt_ratio.short_name=Debt Ratio
  2428. metric.sqale_index.description=Total effort (in hours) to fix all the issues on the component and therefore to comply to all the requirements.
  2429. metric.sqale_index.name=Technical Debt
  2430. metric.sqale_index.short_name=Debt
  2431. metric.sqale_rating.description=A-to-E rating based on the technical debt ratio
  2432. metric.sqale_rating.name=Maintainability Rating
  2433. metric.sqale_rating.extra_short_name=Rating
  2434. metric.sqale_rating.tooltip=Maintainability rating is {0} when the technical debt ratio is greater than {1}
  2435. metric.sqale_rating.tooltip.A=Maintainability rating is A when the technical debt ratio is less than {0}
  2436. metric.statements.description=Number of statements
  2437. metric.statements.name=Statements
  2438. metric.suspect_lcom4_density.description=Density of classes having LCOM4>1
  2439. metric.suspect_lcom4_density.name=Suspect LCOM4 Density
  2440. metric.tests.description=Number of unit tests
  2441. metric.tests.name=Unit Tests
  2442. metric.test_data.description=Unit tests details
  2443. metric.test_data.name=Unit Test Details
  2444. metric.test_errors.description=Number of unit test errors
  2445. metric.test_errors.name=Unit Test Errors
  2446. metric.test_errors.short_name=Errors
  2447. metric.test_execution_time.description=Execution duration of unit tests
  2448. metric.test_execution_time.name=Unit Test Duration
  2449. metric.test_execution_time.short_name=Duration
  2450. metric.test_failures.description=Number of unit test failures
  2451. metric.test_failures.name=Unit Test Failures
  2452. metric.test_failures.short_name=Failures
  2453. metric.test_success_density.description=Density of successful unit tests
  2454. metric.test_success_density.name=Unit Test Success (%)
  2455. metric.test_success_density.short_name=Success
  2456. metric.uncovered_conditions.description=Uncovered conditions
  2457. metric.uncovered_conditions.name=Uncovered Conditions
  2458. metric.uncovered_lines.description=Uncovered lines
  2459. metric.uncovered_lines.name=Uncovered Lines
  2460. metric.usability.description=Usability
  2461. metric.usability.name=Usability
  2462. metric.violations.description=Issues
  2463. metric.violations.name=Issues
  2464. metric.violations.short_name=Issues
  2465. metric.vulnerabilities.description=Vulnerabilities
  2466. metric.vulnerabilities.name=Vulnerabilities
  2467. metric.wont_fix_issues.description=Won't fix issues
  2468. metric.wont_fix_issues.name=Won't Fix Issues
  2469. #------------------------------------------------------------------------------
  2470. #
  2471. # GLOBAL PERMISSIONS
  2472. #
  2473. #------------------------------------------------------------------------------
  2474. global_permissions.permission=Permission
  2475. global_permissions.users=Users
  2476. global_permissions.groups=Groups
  2477. global_permissions.administer=Administer
  2478. global_permissions.creator=Create
  2479. global_permissions.admin=Administer System
  2480. global_permissions.admin.desc=Ability to perform all administration functions for the instance.
  2481. global_permissions.profileadmin=Quality Profiles
  2482. global_permissions.profileadmin.desc=Ability to perform any action on Quality Profiles.
  2483. global_permissions.gateadmin=Quality Gates
  2484. global_permissions.gateadmin.desc=Ability to perform any action on quality gates.
  2485. global_permissions.scan=Execute Analysis
  2486. 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.
  2487. global_permissions.provisioning=Projects
  2488. global_permissions.provisioning.desc=Ability to initialize a project so its settings can be configured before the first analysis.
  2489. global_permissions.filter_by_x_permission=Filter by "{0}" permission
  2490. global_permissions.restore_access=Restore Access
  2491. global_permissions.restore_access.message=You will receive {browse} and {administer} permissions on the project. Do you want to continue?
  2492. global_permissions.applicationcreator=Applications
  2493. global_permissions.applicationcreator.desc=Ability to create an application.
  2494. global_permissions.portfoliocreator=Portfolios
  2495. global_permissions.portfoliocreator.desc=Ability to create a portfolio.
  2496. #------------------------------------------------------------------------------
  2497. #
  2498. # PROJECTS PERMISSIONS
  2499. #
  2500. #------------------------------------------------------------------------------
  2501. projects_role.criteria.name=Name contains
  2502. projects_role.criteria.key=Key contains
  2503. projects_role.role=Role Membership For New
  2504. projects_role.groups=Groups
  2505. projects_role.admin=Administer
  2506. projects_role.admin.desc=Access project settings and perform administration tasks. (Users will also need "Browse" permission)
  2507. projects_role.issueadmin=Administer Issues
  2508. projects_role.issueadmin.desc=Change the type and severity of issues, resolve issues as being "fixed", "won't fix" or "false-positive" (users also need "Browse" permission).
  2509. projects_role.securityhotspotadmin=Administer Security Hotspots
  2510. projects_role.securityhotspotadmin.desc=Resolve a Security Hotspot as reviewed (fixed or safe), reset it as to review (users also need Browse permission).
  2511. projects_role.user=Browse
  2512. projects_role.user.desc=Access a project, browse its measures and issues, confirm issues, change the assignee, comment on issues and change tags.
  2513. projects_role.codeviewer=See Source Code
  2514. projects_role.codeviewer.desc=View the project's source code. (Users will also need "Browse" permission)
  2515. projects_role.scan=Execute Analysis
  2516. 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.
  2517. projects_role.bulk_change=Bulk Change
  2518. projects_role.apply_template=Apply Permission Template
  2519. projects_role.apply_template_to_xxx=Apply Permission Template To "{0}"
  2520. projects_role.apply_template.success=Permission template was successfully applied.
  2521. projects_role.no_projects=There are currently no results to apply the permission template to.
  2522. projects_role.turn_x_to_public=Turn "{0}" to Public
  2523. projects_role.turn_project_to_public.TRK=Turn Project to Public
  2524. projects_role.turn_project_to_public.VW=Turn Portfolio to Public
  2525. projects_role.turn_project_to_public.APP=Turn Application to Public
  2526. projects_role.are_you_sure_to_turn_project_to_public.TRK=Are you sure you want to turn your project to public?
  2527. 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.
  2528. projects_role.are_you_sure_to_turn_project_to_public.VW=Are you sure you want to turn your portfolio to public?
  2529. projects_role.are_you_sure_to_turn_project_to_public.warning.VW=Everybody will be able to browse it.
  2530. projects_role.are_you_sure_to_turn_project_to_public.APP=Are you sure you want to turn your application to public?
  2531. projects_role.are_you_sure_to_turn_project_to_public.warning.APP=Everybody will be able to browse it.
  2532. 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.
  2533. projects_role.applicationcreator=Create Applications
  2534. projects_role.applicationcreator.desc=Allow to create applications for non system administrator.
  2535. projects_role.portfoliocreator=Create Portfolios
  2536. projects_role.portfoliocreator.desc=Allow to create portfolios for non system administrator.
  2537. #------------------------------------------------------------------------------
  2538. #
  2539. # PERMISSION TEMPLATES
  2540. #
  2541. #------------------------------------------------------------------------------
  2542. permission_templates=Permission Templates
  2543. permission_templates.page=Permission Templates
  2544. permission_templates.page.description=Manage templates of project permission sets. The default template will be applied to all new projects.
  2545. permission_templates.set_default=Set Default
  2546. permission_templates.set_default_for=Set Default For
  2547. permission_template.new_template=Create Permission Template
  2548. permission_template.delete_confirm_title=Delete Permission Template
  2549. permission_template.do_you_want_to_delete_template_xxx=Are you sure that you want to delete permission template "{0}"?
  2550. permission_template.edit_template=Edit Permission Template
  2551. permission_template.edit_permissions=Edit Permissions: {0}
  2552. permission_template.key_pattern=Project key pattern
  2553. permission_template.key_pattern.description=Should be a valid regular expression
  2554. permission_template.default_for=Default for {0}
  2555. permission_templates.project_creators=Creators
  2556. permission_templates.project_creators.explanation=When a new project, portfolio or application is created, the user who creates it will receive these permissions.
  2557. permission_templates.bulk_apply_permission_template=Bulk Apply Permission Template
  2558. permission_templates.bulk_apply_permission_template.apply_to_selected=You're about to apply the selected permission template to {0} selected item(s).
  2559. permission_templates.bulk_apply_permission_template.apply_to_all=You're about to apply the selected permission template to {0} item(s).
  2560. permission_templates.select_to_delete=You must select at least one item
  2561. permission_templates.delete_selected=Delete all selected items
  2562. #------------------------------------------------------------------------------
  2563. #
  2564. # Promotion
  2565. #
  2566. #------------------------------------------------------------------------------
  2567. promotion.sonarlint.title=Get the most out of SonarQube!
  2568. 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.
  2569. #------------------------------------------------------------------------------
  2570. #
  2571. # Sonarlint
  2572. #
  2573. #------------------------------------------------------------------------------
  2574. sonarlint-connection.title=SonarLint binding
  2575. sonarlint-connection.description=An instance of SonarLint for {0} requests access to this SonarQube instance.
  2576. sonarlint-connection.unspecified-ide=an unspecified IDE
  2577. sonarlint-connection.description2=Click on the button below to allow it to connect to this SonarQube instance. This will create a token and share it with SonarLint.
  2578. sonarlint-connection.action=Allow SonarLint to connect to this instance
  2579. sonarlint-connection.error=Something went wrong. Make sure your IDE is still running and try again.
  2580. sonarlint-connection.success=A new '{0}' token was created and successfully sent to SonarLint in your IDE.
  2581. #------------------------------------------------------------------------------
  2582. #
  2583. # HELP
  2584. #
  2585. #------------------------------------------------------------------------------
  2586. formatting.helplink=Formatting Help
  2587. #------------------------------------------------------------------------------
  2588. #
  2589. # KEYBOARD SHORTCUTS
  2590. #
  2591. #------------------------------------------------------------------------------
  2592. keyboard_shortcuts.title=Keyboard Shortcuts
  2593. keyboard_shortcuts.disable_link=Disable shortcuts
  2594. keyboard_shortcuts.shortcut=Shortcut
  2595. keyboard_shortcuts.action=Action
  2596. keyboard_shortcuts.global.title=Global
  2597. keyboard_shortcuts.global.search=Open the search bar
  2598. keyboard_shortcuts.global.open_shortcuts=Open this panel
  2599. keyboard_shortcuts.code_page.title=Code Page
  2600. keyboard_shortcuts.code_page.select_files=Select files
  2601. keyboard_shortcuts.code_page.open_file=Open the selected file
  2602. keyboard_shortcuts.code_page.back=Return back to the list
  2603. keyboard_shortcuts.issues_page.title=Issues Page
  2604. keyboard_shortcuts.issues_page.navigate=navigate between issues
  2605. keyboard_shortcuts.issues_page.source_code=go from the list of issues to the source code
  2606. keyboard_shortcuts.issues_page.back=return back to the list
  2607. keyboard_shortcuts.issues_page.navigate_locations=to navigate issue locations
  2608. keyboard_shortcuts.issues_page.switch_flows=to switch flows
  2609. keyboard_shortcuts.issues_page.transition=do an issue transition
  2610. keyboard_shortcuts.issues_page.assign=assign issue
  2611. keyboard_shortcuts.issues_page.assign_to_me=assign issue to the current user
  2612. keyboard_shortcuts.issues_page.severity=change severity of issue
  2613. keyboard_shortcuts.issues_page.comment=comment issue
  2614. keyboard_shortcuts.issues_page.submit_comment=submit comment
  2615. keyboard_shortcuts.issues_page.tags=change tags of issue
  2616. keyboard_shortcuts.measures_page.title=Measures Page
  2617. keyboard_shortcuts.measures_page.select_files=Select files
  2618. keyboard_shortcuts.measures_page.open_file=Open the selected file
  2619. keyboard_shortcuts.measures_page.back=Return back to the list
  2620. keyboard_shortcuts.rules_page.title=Rules Page
  2621. keyboard_shortcuts.rules_page.navigate=navigate between rules
  2622. keyboard_shortcuts.rules_page.rule_details=go from the list of rules to the rule details
  2623. keyboard_shortcuts.rules_page.back=Return back to the list
  2624. #------------------------------------------------------------------------------
  2625. #
  2626. # DURATION
  2627. #
  2628. #------------------------------------------------------------------------------
  2629. duration.seconds=less than a minute
  2630. duration.minute=about a minute
  2631. duration.minutes={0} minutes
  2632. duration.hour=about an hour
  2633. duration.hours={0} hours
  2634. duration.day=a day
  2635. duration.days={0} days
  2636. duration.month=about a month
  2637. duration.months={0} months
  2638. duration.year=about a year
  2639. duration.years={0} years
  2640. #------------------------------------------------------------------------------
  2641. #
  2642. # COMPONENT VIEWER
  2643. #
  2644. #------------------------------------------------------------------------------
  2645. component_viewer.measure_section.unit_tests=Tests
  2646. component_viewer.transition.covers=Covers
  2647. component_viewer.transition.duplication=Duplicated By
  2648. component_viewer.tests.ordered_by=ordered by
  2649. component_viewer.tests.duration=duration
  2650. component_viewer.tests.test_name=name
  2651. component_viewer.tests.status=status
  2652. component_viewer.x_lines_are_covered={0} lines are covered
  2653. component_viewer.details=Details
  2654. component_viewer.show_raw_source=Show Raw Source
  2655. component_viewer.more_actions=More Actions
  2656. component_viewer.new_window=Open in New Window
  2657. component_viewer.open_in_workspace=Pin This File
  2658. component_viewer.copy_permalink=Click to copy permalink to clipboard
  2659. component_viewer.covered_lines=Covered Lines
  2660. component_viewer.show_details=Show Measures
  2661. component_viewer.file_measures=File measures
  2662. component_viewer.show_all_measures=Show all measures
  2663. component_viewer.no_component=The component has been removed or never existed.
  2664. component_viewer.copy_path_to_clipboard=Copy the file path to the clipboard
  2665. component_viewer.action_menu=File actions menu
  2666. source_viewer.view_all_issues=See all issues in this file
  2667. source_viewer.expand_all_lines=Show all lines of code
  2668. source_viewer.covered=Covered by the following tests
  2669. source_viewer.not_covered=Not covered by tests
  2670. source_viewer.conditions=conditions
  2671. source_viewer.line_X=Line: {0}
  2672. source_viewer.click_for_scm_info=Click to see SCM information
  2673. source_viewer.author_X=Author: {0}
  2674. source_viewer.click_to_copy_filepath=Click to copy the filepath to clipboard
  2675. source_viewer.tooltip.duplicated_line=This line is duplicated. Click to see duplicated blocks.
  2676. source_viewer.tooltip.duplicated_block=Duplicated block. Click for details.
  2677. source_viewer.tooltip.covered=Fully covered by tests.
  2678. source_viewer.tooltip.covered.conditions=Fully covered by tests ({0} conditions).
  2679. source_viewer.tooltip.partially-covered=Partially covered by tests.
  2680. source_viewer.tooltip.partially-covered.conditions=Partially covered by tests ({0} of {1} conditions).
  2681. source_viewer.tooltip.uncovered=Not covered by tests.
  2682. source_viewer.tooltip.uncovered.conditions=Not covered by tests ({0} conditions).
  2683. source_viewer.tooltip.no_information_about_tests=There is no extra information about test files.
  2684. source_viewer.tooltip.scm.commited_on=Committed on
  2685. source_viewer.tooltip.scm.revision=Revision
  2686. source_viewer.issues_on_line.multiple_issues=There are multiple issues on this line.
  2687. source_viewer.issues_on_line.issue_of_type_X=There is a {0} on this line
  2688. source_viewer.issues_on_line.X_issues_of_type_Y=There are {0} {1} on this line
  2689. source_viewer.issues_on_line.show=Click to show all issues on this line
  2690. source_viewer.issues_on_line.hide=Click to hide all issues on this line
  2691. source_viewer.load_more_code=Load More Code
  2692. source_viewer.loading_more_code=Loading More Code...
  2693. source_viewer.expand_above=Show previous few lines of code
  2694. source_viewer.expand_below=Show next few lines of code
  2695. #------------------------------------------------------------------------------
  2696. #
  2697. # WORKSPACE
  2698. #
  2699. #------------------------------------------------------------------------------
  2700. workspace.minimize=Minimize
  2701. workspace.full_window=Expand to full window
  2702. workspace.normal_size=Collapse to normal size
  2703. workspace.close=Remove from the list of pinned files
  2704. workspace.no_rule=The rule has been removed or never existed.
  2705. #------------------------------------------------------------------------------
  2706. #
  2707. # MARKETPLACE
  2708. #
  2709. #------------------------------------------------------------------------------
  2710. marketplace.page=Marketplace
  2711. marketplace.page.description=Discover the additional benefits offered in SonarQube Commercial Editions
  2712. marketplace.page.description_best_edition=This edition includes access to all the SonarQube-SonarLint Ecosystem features!
  2713. marketplace.page.you_are_running.community=You are currently running a Community Edition.
  2714. marketplace.page.you_are_running.developer=You are currently running a Developer Edition.
  2715. marketplace.page.you_are_running.enterprise=You are currently running an Enterprise Edition.
  2716. marketplace.page.you_are_running.datacenter=You are currently running a Data Center Edition.
  2717. marketplace.page.plugins=Plugins
  2718. 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.
  2719. marketplace.page.plugins.description2=Installing a plugin is a manual operation. Please refer to the {link}.
  2720. marketplace.page.plugins.description2.link=documentation
  2721. marketplace.plugin_list.no_plugins.all=No installed plugins or updates available
  2722. marketplace.plugin_list.no_plugins.installed=No installed plugins
  2723. marketplace.plugin_list.no_plugins.updates=No plugin updates available
  2724. marketplace.instance_needs_to_be_restarted_to={instance} needs to be restarted in order to
  2725. marketplace.install_x_plugins=install {nb} plugins
  2726. marketplace.update_x_plugins=update {nb} plugins
  2727. marketplace.uninstall_x_plugins=uninstall {nb} plugins
  2728. marketplace.not_activated=Update Center is not activated.
  2729. marketplace.all=All
  2730. marketplace.installed=Installed
  2731. marketplace.updates_only=Updates Only
  2732. marketplace.restart=Restart
  2733. marketplace.revert=Revert
  2734. marketplace.install=Install
  2735. marketplace.upgrade_to_x=Upgrade to {0}
  2736. marketplace.downgrade_to_x=Downgrade to {0}
  2737. marketplace.installed=Installed
  2738. marketplace.installing=Installing...
  2739. marketplace.upgrade=Upgrade
  2740. marketplace.downgrade=Downgrade
  2741. marketplace.checking_license=Checking your license...
  2742. marketplace._installed=installed
  2743. marketplace.available_under_commercial_license=Available under our commercial editions
  2744. marketplace.learn_more=Learn more
  2745. marketplace.request_free_trial=Request a free trial
  2746. marketplace.homepage=Homepage
  2747. marketplace.issue_tracker=Issue Tracker
  2748. marketplace.licensed_under_x=Licensed under {license}
  2749. marketplace.developed_by_x=Developed by {organization}
  2750. marketplace.install_pending=Install Pending
  2751. marketplace.update_pending=Update Pending
  2752. marketplace.uninstall_pending=Uninstall Pending
  2753. marketplace.requires_restart=This requires a restart
  2754. marketplace.updates=Updates
  2755. marketplace.update_status.COMPATIBLE=Compatible
  2756. marketplace.update_status.INCOMPATIBLE=Incompatible
  2757. marketplace.update_status.REQUIRES_SYSTEM_UPGRADE=Requires system update
  2758. marketplace.update_status.DEPS_REQUIRE_SYSTEM_UPGRADE=Some of dependencies requires system update
  2759. marketplace.installing_this_plugin_will_also_install_x=Installing this plugin will also install: {0}
  2760. marketplace.update_to_x=Update to {0}
  2761. marketplace.uninstall=Uninstall
  2762. marketplace.i_accept_the=I accept the
  2763. marketplace.terms_and_conditions=Terms and Conditions
  2764. marketplace.release_notes=Release Notes
  2765. marketplace.how_to_setup_cluster_url=Further configuration is required to set up a cluster. See {url} documentation.
  2766. marketplace.search=Search by features, tags, or categories...
  2767. marketplace.risk_consent.title=Installation of plugins
  2768. 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.
  2769. marketplace.risk_consent.installation=You can install plugins directly from the list below after you acknowledge the risk.
  2770. marketplace.risk_consent.action=I understand the risk
  2771. plugin_risk_consent.title=Installation of plugins
  2772. plugin_risk_consent.description=A plugin has been detected.
  2773. 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.
  2774. plugin_risk_consent.action=I understand the risk
  2775. #------------------------------------------------------------------------------
  2776. #
  2777. # BACKGROUND TASKS
  2778. #
  2779. #------------------------------------------------------------------------------
  2780. component_navigation.status.failed=The last background task has failed.
  2781. component_navigation.status.failed_X=The {type} has failed.
  2782. component_navigation.status.failed.admin.link=The last background task has failed. More details available on the {url} page.
  2783. component_navigation.status.failed_X.admin.link=The {type} has failed. More details available on the {url} page.
  2784. 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}".
  2785. 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}".
  2786. component_navigation.status.failed_branch=The last analysis on this project ({branch}) failed.
  2787. component_navigation.status.failed_branch_X=The last {type} on this project ({branch}) failed.
  2788. component_navigation.status.failed_branch.admin.link=The last analysis on this project ({branch}) failed. More details available on the {url} page.
  2789. component_navigation.status.failed_branch_X.admin.link=The last {type} on this project ({branch}) failed. More details available on the {url} page.
  2790. 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}".
  2791. 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}".
  2792. component_navigation.status.pending=There is a pending background task.
  2793. component_navigation.status.pending_X=There is a pending {type}.
  2794. component_navigation.status.pending.admin.link=There is a pending background task. More details available on the {url} page.
  2795. component_navigation.status.pending_X.admin.link=There is a pending {type}. More details available on the {url} page.
  2796. component_navigation.status.pending.admin.help=There is a pending background task.
  2797. component_navigation.status.pending_X.admin.help=There is a pending {type}.
  2798. component_navigation.status.in_progress=A background task is in progress.
  2799. component_navigation.status.in_progress_X=The {type} is in progress.
  2800. component_navigation.status.in_progress.admin.link=A background task is in progress. More details available on the {url} page.
  2801. component_navigation.status.in_progress_X.admin.link=The {type} is in progress. More details available on the {url} page.
  2802. component_navigation.status.in_progress.admin.help=A background task is in progress.
  2803. component_navigation.status.in_progress_X.admin.help=The {type} is in progress.
  2804. 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}.
  2805. component_navigation.last_analysis_had_warnings=Last analysis of this {branchType} had {warnings}
  2806. component_navigation.x_warnings={warningsCount} {warningsCount, plural, one {warning} other {warnings}}
  2807. 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}
  2808. component_navigation.pr_deco.action.check_project_settings=Please check your project settings.
  2809. component_navigation.pr_deco.action.contact_project_admin=Please contact your project administrator.
  2810. background_task.status.ALL=All
  2811. background_task.status.PENDING=Pending
  2812. background_task.status.IN_PROGRESS=In Progress
  2813. background_task.status.SUCCESS=Success
  2814. background_task.status.FAILED=Failed
  2815. background_task.status.CANCELED=Canceled
  2816. background_task.status.ALL_EXCEPT_PENDING=All Except Pending
  2817. background_task.type.ALL=All
  2818. background_task.type.REPORT=Project Analysis
  2819. background_task.type.DEV_REFRESH=Developer Analysis
  2820. background_task.type.DEV_PURGE=Developer Cleaning
  2821. background_task.type.ISSUE_SYNC=Project Data Reload
  2822. background_task.type.APP_REFRESH=Application Recomputation
  2823. background_task.type.PROJECT_EXPORT=Project Export
  2824. background_task.type.PROJECT_IMPORT=Project Import
  2825. background_task.type.AUDIT_PURGE=Audit Log Purge
  2826. background_task.type.REPORT_SUBMIT=Report Email Submit
  2827. background_tasks.page=Background Tasks
  2828. 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.
  2829. background_tasks.currents_filter.ALL=All
  2830. background_tasks.currents_filter.ONLY_CURRENTS=Only Latest Analysis
  2831. background_tasks.date_filter.ALL=Any Date
  2832. background_tasks.date_filter.TODAY=Today
  2833. background_tasks.date_filter.CUSTOM=Custom
  2834. background_tasks.table.status=Status
  2835. background_tasks.table.task=Task
  2836. background_tasks.table.id=ID
  2837. background_tasks.table.submitted=Submitted
  2838. background_tasks.table.submitter=Submitter
  2839. background_tasks.table.started=Started
  2840. background_tasks.table.finished=Finished
  2841. background_tasks.table.duration=Duration
  2842. background_tasks.filter_by_component_x=Filter by Component "{0}"
  2843. background_tasks.cancel_task=Cancel Task
  2844. background_tasks.cancel_task.text=Are you sure you want to cancel this pending task?
  2845. background_tasks.cancel_all_tasks=Cancel All Pending Tasks
  2846. background_tasks.cancel_all_tasks.text=Are you sure you want to cancel all pending tasks?
  2847. background_tasks.cancel_all_tasks.submit=Cancel All
  2848. background_tasks.scanner_context=Scanner Context
  2849. background_tasks.show_scanner_context=Show Scanner Context
  2850. background_tasks.show_stacktrace=Show Error Details
  2851. background_tasks.show_warnings=Show Warnings
  2852. background_tasks.error_message=Error Message
  2853. background_tasks.error_stacktrace=Error Details
  2854. background_tasks.pending=pending
  2855. background_tasks.pending_time=pending time
  2856. background_tasks.pending_time.description=Pending time of the oldest background task waiting to be processed.
  2857. background_tasks.failures=still failing
  2858. background_tasks.number_of_workers=Number of Workers:
  2859. background_tasks.number_of_workers.warning=Configuring additional workers without first vertically scaling your server could have negative performance impacts.
  2860. background_tasks.change_number_of_workers=Edit CE Workers
  2861. 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).
  2862. background_tasks.add_more_workers=Speed up analysis with parallel processing
  2863. background_tasks.add_more_workers.text=Configure multiple workers for parallel processing of analysis reports in Enterprise Edition.
  2864. background_tasks.search_by_task_or_component=Search by Task or Component
  2865. background_tasks.failing_count=Count of projects where processing of most recent analysis report failed
  2866. #------------------------------------------------------------------------------
  2867. #
  2868. # Project Dump
  2869. #
  2870. #------------------------------------------------------------------------------
  2871. project_dump.page=Import / Export
  2872. project_dump.page.description=Moving a project from one SonarQube instance to another is a 3 step operation: export the project, copy the generated dump on the target server, and finally import that dump from this page on the target SonarQube instance.
  2873. project_dump.page.description_without_import=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.
  2874. project_dump.refresh=Refresh
  2875. project_dump.see_details=See Details
  2876. project_dump.export=Export
  2877. project_dump.do_export=Export
  2878. project_dump.can_not_export=This project cannot be exported as no analysis has been run so far.
  2879. project_dump.pending_export=Export was scheduled on {0}, waiting to be processed.
  2880. project_dump.in_progress_export=Export is in progress, started {0}.
  2881. project_dump.failed_export=The last export failed. Please try once again.
  2882. project_dump.latest_export_available=Latest project dump was generated on {0}. It can be found on the server, in the following directory:
  2883. project_dump.export_available=Project dump was generated. It can be found on the server, in the following directory:
  2884. 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.
  2885. project_dump.import=Import
  2886. project_dump.do_import=Import
  2887. project_dump.import_success=The project has been successfully imported on {0}.
  2888. project_dump.can_not_import=This project can not be imported because it already contains some data.
  2889. project_dump.no_file_to_import=This project can not be imported because the dump file is not found.
  2890. project_dump.pending_import=Import was scheduled on {0}, waiting to be processed.
  2891. project_dump.in_progress_import=Import is in progress, started {0}.
  2892. project_dump.failed_import=The last import has failed. Please try once again.
  2893. 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.
  2894. project_dump.import_form_description_disabled=Projects cannot be imported. This feature is only available starting from Enterprise Edition.
  2895. #------------------------------------------------------------------------------
  2896. #
  2897. # SYSTEM
  2898. #
  2899. #------------------------------------------------------------------------------
  2900. system.application_nodes_title=Application Nodes
  2901. 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.
  2902. system.cluster_log_level.info=Your selection affect all Application nodes but not the Search nodes.
  2903. system.copy_id_info=Copy ID information
  2904. system.current_health_of_x=Current health status of {0}
  2905. system.current_health.green=Status is up
  2906. system.current_health.yellow=Status is starting
  2907. system.current_health.red=Status is down
  2908. system.download_logs=Download Logs
  2909. system.download_system_info=Download System Info
  2910. system.download_x=Download {0}
  2911. system.forcing_shutdown_not_recommended=Forcing the shutdown is not recommended and can interrupt the processing of analysis reports.
  2912. system.hide_intermediate_versions=Hide intermediate versions
  2913. system.how_to_upgrade=How to upgrade?
  2914. system.latest_version=Latest Version
  2915. system.latest_patch=Patch Release
  2916. system.lts_version=Latest LTS Version
  2917. 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.
  2918. system.log_level.warning.short=Current logs level has performance impacts, get back to INFO level.
  2919. system.log_level.info=Your selection does not affect the Search Engine.
  2920. system.logs_level=Logs level
  2921. system.new_version_available=A new version of SonarQube is available.
  2922. system.see_whats_new=See what's new!
  2923. system.release_notes=Release Notes
  2924. system.released_x=Released {0}
  2925. system.restart_in_progress=Restart in progress
  2926. system.restart_server=Restart Server
  2927. system.instance_restarting={instance} restart is in progress. Ongoing {link} are completing.
  2928. system.search_nodes_title=Search Nodes
  2929. system.see_sonarqube_downloads=See All SonarQube Downloads
  2930. 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.
  2931. system.server_id=Server ID
  2932. system.set_log_level=Set logs level
  2933. system.show_intermediate_versions=Show intermediate versions
  2934. system.system_upgrade=New update available
  2935. system.version=Version
  2936. system.version_is_availble={version} is available
  2937. #------------------------------------------------------------------------------
  2938. #
  2939. # OVERVIEW
  2940. #
  2941. #------------------------------------------------------------------------------
  2942. overview.failed_conditions=Failed conditions
  2943. overview.X_more_failed_conditions={0} more failed conditions
  2944. overview.X_conditions_failed={0} conditions failed
  2945. overview.fix_failed_conditions_with_sonarlint=Fix issues before they fail your Quality Gate with {link} in your IDE. Power up with connected mode!
  2946. overview.quality_gate=Quality Gate Status
  2947. 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.
  2948. overview.quality_gate_failed_with_x=with {0} errors
  2949. overview.quality_gate_code_clean=Your code is clean!
  2950. overview.quality_gate_all_conditions_passed=All conditions passed.
  2951. overview.you_should_define_quality_gate=You should define a quality gate on this project.
  2952. overview.quality_gate.ignored_conditions=Some Quality Gate conditions on New Code were ignored because of the small number of New Lines
  2953. 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.
  2954. 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.
  2955. overview.quality_profiles=Quality Profiles used
  2956. overview.new_code_period_x=New Code: {0}
  2957. overview.max_new_code_period_from_x=Max New Code from: {0}
  2958. overview.started_x=Started {0}
  2959. overview.new_code=New Code
  2960. overview.overall_code=Overall Code
  2961. overview.previous_analysis_x=Previous analysis was {0}
  2962. overview.started_on_x=Started on {0}
  2963. overview.previous_analysis_on_x=Previous analysis on {0}
  2964. overview.on_new_code=On New Code
  2965. overview.on_new_code_long=Conditions on New Code
  2966. overview.see_list_of_x_y_issues=See the list of {0} {1}
  2967. overview.see_more_details_on_x_of_y=See more details on {0} of {1}
  2968. overview.see_more_details_on_x_y=See more details on {0} {1}
  2969. overview.about_this_portfolio=About This Portfolio
  2970. overview.about_this_project.APP=About This Application
  2971. overview.about_this_project.TRK=About This Project
  2972. overview.project_activity.APP=Application Activity
  2973. overview.project_activity.TRK=Project Activity
  2974. overview.project_activity.click_to_see=Click to see project activity
  2975. overview.external_links=External Links
  2976. overview.project_key.APP=Application Key
  2977. overview.project_key.TRK=Project Key
  2978. overview.project_key.click_to_copy=Click to copy the key to your clipboard
  2979. overview.activity=Activity
  2980. overview.activity.graph_shows_data_for_x=This space normally shows historical data for {0}. Click on the "Activity" link below to see more information.
  2981. overview.recent_activity=Recent Activity
  2982. overview.measures=Measures
  2983. overview.measures.empty_explanation=Measures on New Code will appear after the second analysis of this branch.
  2984. overview.measures.empty_link={learn_more_link} about the Clean as You Code approach.
  2985. overview.measures.same_reference.explanation=This branch is configured to use itself as reference branch. It will never have New Code.
  2986. overview.measures.bad_reference.explanation=This branch could not be compared to its reference branch. See the SCM or analysis report for more details.
  2987. overview.measures.bad_setting.link=This can be fixed in the {setting_link} setting.
  2988. overview.measures.security_hotspots_reviewed=Reviewed
  2989. overview.project.no_lines_of_code=This project has no lines of code.
  2990. overview.project.empty=This project is empty.
  2991. overview.project.branch_X_no_lines_of_code=The "{0}" branch has no lines of code.
  2992. overview.project.branch_X_empty=The "{0}" branch of this project is empty.
  2993. overview.project.main_branch_no_lines_of_code=The main branch has no lines of code.
  2994. overview.project.main_branch_empty=The main branch of this project is empty.
  2995. overview.project.branch_needs_new_analysis=The branch data is incomplete. Run a new analysis to update it.
  2996. overview.project.last_analysis.date_time=Last analysis started on {0}
  2997. 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}.
  2998. 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.
  2999. 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}.
  3000. 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.
  3001. overview.project.next_steps.set_up_ci=To benefit from more of SonarQube's features, {link}.
  3002. overview.project.next_steps.links.project_settings=project settings
  3003. overview.project.next_steps.links.set_up_ci=set up analysis in your favorite CI
  3004. overview.coverage_on=Coverage on
  3005. overview.coverage_on_X_lines=Coverage on {count} Lines to cover
  3006. overview.coverage_on_X_new_lines=Coverage on {count} New Lines to cover
  3007. overview.duplications_on=Duplications on
  3008. overview.duplications_on_X_lines=Duplications on {count} Lines
  3009. overview.duplications_on_X_new_lines=Duplications on {count} New Lines
  3010. overview.period.previous_version=Since {0}
  3011. # Old periods, necessary to display project that haven't been analyzed with new setting (MMF-1579)
  3012. overview.period.previous_version_only_date=Since previous version
  3013. overview.period.previous_analysis=Since previous analysis
  3014. overview.period.days=Last {0} days
  3015. overview.period.version=Since {0}
  3016. overview.period.date=After {0}
  3017. overview.period.manual_baseline=Since {0}
  3018. # New periods (MMF-1579)
  3019. overview.period.number_of_days=From last {0} days
  3020. overview.period.specific_analysis=Since {0}
  3021. overview.period.reference_branch=Compared to {0}
  3022. overview.gate.ERROR=Failed
  3023. overview.gate.WARN=Warning
  3024. overview.gate.OK=Passed
  3025. overview.gate.view.no_alert=The view has passed the quality gate.
  3026. overview.gate.view.warnings=The view has warnings on the following quality gate conditions: {0}.
  3027. overview.gate.view.errors=The view failed the quality gate on the following conditions: {0}.
  3028. overview.domain.duplications=Duplications
  3029. overview.domain.size=Size
  3030. overview.complexity_tooltip.function={0} functions have complexity around {1}
  3031. overview.complexity_tooltip.file={0} files have complexity around {1}
  3032. overview.deprecated_profile=This Quality Profile uses {0} deprecated rules and should be updated.
  3033. overview.deleted_profile={0} has been deleted since the last analysis.
  3034. overview.link_to_x_profile_y=Go to {0} profile "{1}"
  3035. overview.badges.get_badge.TRK=Get project badges
  3036. overview.badges.get_badge.VW=Get portfolio badges
  3037. overview.badges.get_badge.APP=Get application badges
  3038. overview.badges.title=Get project badges
  3039. overview.badges.description.TRK=Show the status of your project metrics on your README or website. Pick your style:
  3040. overview.badges.description.VW=Show the status of your portfolio metrics on your README or website. Pick your style:
  3041. overview.badges.description.APP=Show the status of your application metrics on your README or website. Pick your style:
  3042. overview.badges.metric=Metric
  3043. overview.badges.options.colors.white=White
  3044. overview.badges.options.colors.black=Black
  3045. overview.badges.options.colors.orange=Orange
  3046. overview.badges.options.formats.md=Markdown
  3047. overview.badges.options.formats.url=Image URL only
  3048. overview.badges.measure.alt=Standard badge
  3049. overview.badges.measure.description.TRK=Displays the current status of one metric of your project.
  3050. overview.badges.measure.description.VW=Displays the current status of one metric of your portfolio.
  3051. overview.badges.measure.description.APP=Displays the current status of one metric of your application.
  3052. overview.badges.quality_gate.alt=Quality Gate badge
  3053. overview.badges.quality_gate.description=Displays the current quality gate status of your project.
  3054. overview.badges.quality_gate.description.APP=Displays the current quality gate status of your application.
  3055. overview.badges.quality_gate.description.TRK=Displays the current quality gate status of your project.
  3056. overview.badges.quality_gate.description.VW=Displays the current quality gate status of your portfolio.
  3057. overview.badges.leak_warning=Project badges can expose your security rating and other measures. Only use project badges in trusted environments.
  3058. overview.badges.renew=Renew Token
  3059. overview.badges.renew.description=If your project badge security token has leaked to an unsafe environment, you can renew it:
  3060. #------------------------------------------------------------------------------
  3061. #
  3062. # WS API
  3063. #
  3064. #------------------------------------------------------------------------------
  3065. api_documentation.deprecation_tooltip=If an API is deprecated in version X.Y, this API will be dropped in version (X+2).0. Example: an API deprecated in 4.1 is supported in 4.2, 4.3, 5.0, 5.1, 5.2, 5.3 and is dropped in version 6.0.
  3066. api_documentation.internal_tooltip=Use at your own risk; internal services are subject to change or removal without notice.
  3067. api_documentation.page=Web API
  3068. api_documentation.show_deprecated=Show Deprecated API
  3069. api_documentation.show_internal=Show Internal API
  3070. api_documentation.possible_values=Possible values
  3071. api_documentation.default_values=Default value
  3072. api_documentation.example_values=Example value
  3073. api_documentation.max_values=Maximum allowed values
  3074. api_documentation.min_value=Minimum value
  3075. api_documentation.max_value=Maximum value
  3076. api_documentation.min_length=Minimum length
  3077. api_documentation.max_length=Maximum length
  3078. api_documentation.internal=internal
  3079. api_documentation.deprecated=deprecated
  3080. api_documentation.deprecated_since_x=deprecated since {0}
  3081. api_documentation.will_be_removed_in_x=Will be removed in {0}
  3082. api_documentation.parameters=Parameters
  3083. api_documentation.response_example=Response Example
  3084. api_documentation.changelog=Changelog
  3085. api_documentation.search=Search by name...
  3086. #------------------------------------------------------------------------------
  3087. #
  3088. # DOCUMENTATION PAGE
  3089. #
  3090. #------------------------------------------------------------------------------
  3091. documentation.page=Documentation
  3092. documentation.page_title.sonarqube=SonarQube Docs
  3093. documentation.on_this_page=On this page
  3094. documentation.skip_to_nav=Skip to documentation navigation
  3095. #------------------------------------------------------------------------------
  3096. #
  3097. # CODE
  3098. #
  3099. #------------------------------------------------------------------------------
  3100. code.open_component_page=Open Component's Page
  3101. code.search_placeholder=Search for files...
  3102. code.search_placeholder.portfolio=Search for projects and sub-portfolios...
  3103. code.parent_folder=Parent folder
  3104. #------------------------------------------------------------------------------
  3105. #
  3106. # COMPONENT MEASURES
  3107. #
  3108. #------------------------------------------------------------------------------
  3109. component_measures.details_are_not_available=Details are not available for estimated measures.
  3110. component_measures.domain_x_overview={0} Overview
  3111. component_measures.domain_overview=Overview
  3112. component_measures.files=files
  3113. component_measures.show_metric_history=Show history of this metric
  3114. component_measures.tab.tree=Tree
  3115. component_measures.tab.list=List
  3116. component_measures.tab.treemap=Treemap
  3117. component_measures.view_as=View as
  3118. component_measures.legend.color_x=Color: {0}
  3119. component_measures.legend.size_x=Size: {0}
  3120. component_measures.legend.worse_of_x_y=Worse of {0} and {1}
  3121. component_measures.legend.help_x=Click to toggle visibility for data with rating {0}.
  3122. component_measures.legend.only_first_500_files=Only showing data for the first 500 files
  3123. component_measures.no_history=There isn't enough data to generate an activity graph.
  3124. component_measures.not_found=The requested measure was not found.
  3125. component_measures.empty=No measures.
  3126. component_measures.to_select_files=to select files
  3127. component_measures.to_navigate=to navigate
  3128. component_measures.to_navigate_files=to next/previous file
  3129. component_measures.hidden_best_score_metrics=There are {0} hidden components with a score of {1}.
  3130. component_measures.skip_to_filters=Skip to measure filters
  3131. component_measures.overview.project_overview.facet=Project Overview
  3132. component_measures.overview.project_overview.title=Risk
  3133. 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.
  3134. 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.
  3135. 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.
  3136. 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.
  3137. 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.
  3138. 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.
  3139. component_measures.overview.see_data_as_list=See the data presented on this chart as a list
  3140. component_measures.domain_facets.Reliability.help=Issues in this domain mark code where you will get behavior other than what was expected.
  3141. component_measures.domain_facets.Maintainability.help=Issues in this domain mark code that will be more difficult to update competently than it should.
  3142. component_measures.domain_facets.Security.help=Issues in this domain mark potential weaknesses to hackers.
  3143. component_measures.domain_facets.SecurityReview.help=This domain represents potential security risks in the form of hotspots and their review status.
  3144. component_measures.domain_facets.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
  3145. component_measures.facet_category.new_code_category=On new code
  3146. component_measures.facet_category.overall_category=Overall
  3147. component_measures.facet_category.overall_category.estimated=Estimated after merge
  3148. component_measures.facet_category.tests_category=Tests
  3149. component_measures.bubble_chart.zoom_level=Current zoom level. Scroll on the chart to zoom or unzoom, click here to reset.
  3150. component_measures.not_all_measures_are_shown=Not all projects and applications are included
  3151. 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.
  3152. #------------------------------------------------------------------------------
  3153. #
  3154. # EMBEDED DOCS
  3155. #
  3156. #------------------------------------------------------------------------------
  3157. embed_docs.documentation=Documentation
  3158. embed_docs.get_help=Get Help
  3159. embed_docs.news=Product News
  3160. embed_docs.stay_connected=Stay Connected
  3161. embed_docs.suggestion=Suggestions For This Page
  3162. #------------------------------------------------------------------------------
  3163. #
  3164. # GLOBAL FOOTER
  3165. #
  3166. #------------------------------------------------------------------------------
  3167. footer.community=Community
  3168. footer.contact_us=Contact us
  3169. footer.documentation=Documentation
  3170. footer.help=Help
  3171. footer.license=LGPL v3
  3172. footer.news=News
  3173. footer.plugins=Plugins
  3174. footer.pricing=Pricing
  3175. footer.privacy=Privacy
  3176. 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.
  3177. footer.production_database_warning=Embedded database should be used for evaluation purposes only
  3178. footer.security=Security
  3179. footer.status=Status
  3180. footer.terms=Terms
  3181. footer.twitter=Twitter
  3182. footer.version_x=Version {0}
  3183. footer.web_api=Web API
  3184. #------------------------------------------------------------------------------
  3185. #
  3186. # ONBOARDING
  3187. #
  3188. #------------------------------------------------------------------------------
  3189. onboarding.alm.azure=Azure DevOps
  3190. onboarding.alm.bitbucket=Bitbucket Server
  3191. onboarding.alm.bitbucketcloud=Bitbucket Cloud
  3192. onboarding.alm.gitlab=GitLab
  3193. onboarding.project_analysis.header=Analyze your project
  3194. onboarding.project_analysis.description=We initialized your project on {instance}, now it's up to you to launch analyses!
  3195. onboarding.project_analysis.guide_to_integrate_pipelines=follow the guide to integrating with Pipelines
  3196. onboarding.create_project.setup_manually=Create a project
  3197. onboarding.create_project.select_method=How do you want to create your project?
  3198. onboarding.create_project.select_method.manually=Are you just testing or have an advanced use-case? Create a project manually.
  3199. 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)? Create your project from your favorite DevOps platform.
  3200. onboarding.create_project.select_method.no_alm_yet.admin=First, you need to set up a DevOps platform configuration.
  3201. onboarding.create_project.select_method.manual=Manually
  3202. onboarding.create_project.select_method.azure=From Azure DevOps
  3203. onboarding.create_project.select_method.bitbucket=From Bitbucket
  3204. onboarding.create_project.select_method.github=From GitHub
  3205. onboarding.create_project.select_method.gitlab=From GitLab
  3206. onboarding.create_project.alm_not_configured=Contact admin to set up global configuration
  3207. onboarding.create_project.alm_not_configured.admin=Set up global configuration
  3208. onboarding.create_project.check_alm_supported=Checking if available
  3209. onboarding.create_project.project_key=Project key
  3210. 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.
  3211. onboarding.create_project.project_key.error.empty=You must provide at least one character.
  3212. onboarding.create_project.project_key.error.too_long=The provided key is too long.
  3213. onboarding.create_project.project_key.error.invalid_char=The provided key contains invalid characters.
  3214. onboarding.create_project.project_key.error.only_digits=The provided key contains only digits.
  3215. onboarding.create_project.project_key.taken=This project key is already taken.
  3216. onboarding.create_project.display_name=Project display name
  3217. onboarding.create_project.display_name.error.empty=The display name is required.
  3218. onboarding.create_project.display_name.description=Up to 255 characters. Some scanners might override the value you provide.
  3219. onboarding.create_project.pr_decoration.information=Manually created projects won’t benefit from the features associated with DevOps Platforms integration unless you configure them in the project settings.
  3220. onboarding.create_project.repository_imported=Already set up
  3221. onboarding.create_project.see_project=See the project
  3222. onboarding.create_project.search_repositories_by_name=Search for repository name starting with...
  3223. onboarding.create_project.search_projects_repositories=Search for projects and repositories
  3224. onboarding.create_project.search_repositories=Search for a repository
  3225. onboarding.create_project.select_repositories=Select repositories
  3226. onboarding.create_project.select_all_repositories=Select all available repositories
  3227. onboarding.create_project.from_bbs=Create a project from Bitbucket Server
  3228. 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.
  3229. onboarding.create_project.pat_form.title.azure=Allow SonarQube to access and list your Azure DevOps repositories
  3230. onboarding.create_project.pat_form.title.bitbucket=Grant access to your repositories
  3231. onboarding.create_project.pat_form.title.bitbucketcloud=Grant access to your repositories
  3232. onboarding.create_project.pat_form.title.gitlab=Grant access to your projects
  3233. onboarding.create_project.pat_form.help.azure=SonarQube needs a personal access token to access and list your repositories from Azure DevOps.
  3234. onboarding.create_project.pat_form.help.bitbucket=SonarQube needs a personal access token to access and list your repositories from Bitbucket Server.
  3235. onboarding.create_project.pat_form.help.bitbucketcloud=SonarQube needs an app password to access and list your repositories from Bitbucket Cloud.
  3236. onboarding.create_project.pat_form.help.gitlab=SonarQube needs a personal access token to access and list your projects from GitLab.
  3237. onboarding.create_project.pat_form.pat_required=Please enter a personal access token
  3238. onboarding.create_project.pat_form.list_repositories=List repositories
  3239. onboarding.create_project.select_method=How do you want to create your project?
  3240. onboarding.create_project.too_many_alm_instances_X=This method requires exactly one {0} configuration.
  3241. onboarding.create_project.wrong_binding_count=You must have exactly 1 {alm} instance configured in order to use this method, but none were found. Either create the project manually, or contact your system administrator.
  3242. onboarding.create_project.wrong_binding_count.admin=You must have exactly 1 {alm} instance configured in order to use this method. You can configure instances under {url}.
  3243. 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}.
  3244. 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.
  3245. onboarding.create_project.enter_pat=Enter personal access token
  3246. onboarding.create_project.enter_pat.bitbucketcloud=Enter your app password
  3247. onboarding.create_project.enter_username=Enter your Bitbucket username
  3248. onboarding.create_project.pat_incorrect.azure=Your personal access couldn't be validated.
  3249. onboarding.create_project.pat_incorrect.bitbucket=Your personal access couldn't be validated.
  3250. onboarding.create_project.pat_incorrect.bitbucketcloud=Your app password couldn't be validated.
  3251. 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.
  3252. onboarding.create_project.pat_help.title=How to create a personal access token?
  3253. onboarding.create_project.pat_help.bitbucketcloud.title=How to create an app password?
  3254. onboarding.create_project.pat_help.instructions.azure=Create and provide an Azure DevOps {link}. You need to select the {scope} scope so we can display a list of your repositories which are available for analysis.
  3255. onboarding.create_project.pat_help.instructions.link.azure=personal access token
  3256. onboarding.create_project.pat_help.instructions=Click the following link to generate a token in {alm}, and copy-paste it into the personal access token field.
  3257. onboarding.create_project.pat_help.bitbucketcloud.instructions=Click the following link to generate an app password, and copy-paste it into the app password field.
  3258. onboarding.create_project.pat_help.bitbucket.instructions=Click the following link and go to {menu} and click {button} to generate a token. Then, copy-paste it into the personal access token field.
  3259. onboarding.create_project.pat_help.bitbucket.instructions.menu=HTTP access tokens
  3260. onboarding.create_project.pat_help.bitbucket.instructions.button=Create token
  3261. onboarding.create_project.pat_help.instructions2.bitbucket=Set a name, for example "SonarQube", and select the following permissions:
  3262. onboarding.create_project.pat_help.instructions2.bitbucketcloud=Set a name, for example "SonarQube", and select the following permissions:
  3263. onboarding.create_project.pat_help.instructions_username.bitbucketcloud.title=How to find your username?
  3264. onboarding.create_project.pat_help.instructions_username.bitbucketcloud=Click the following link to find your username in the Bitbucket profile settings
  3265. onboarding.create_project.pat_help.instructions_username.bitbucketcloud.link=Personal settings
  3266. onboarding.create_project.pat_help.link=Create personal access token
  3267. onboarding.create_project.pat_help.bitbucketcloud.link=Add app password
  3268. onboarding.create_project.pat_help.bbs_permission_projects=Projects: {perm}
  3269. onboarding.create_project.pat_help.bbs_permission_repos=Repositories: {perm}
  3270. onboarding.create_project.pat_help.read_permission=Read
  3271. onboarding.create_project.pat_help.instructions2.gitlab=Set a name, for example "SonarQube", and select the following scope:
  3272. onboarding.create_project.pat_help.gitlab.read_api_permission=read_api
  3273. onboarding.create_project.no_bbs_projects=No projects could be fetched from Bitbucket Server. Contact your system administrator, or {link}.
  3274. onboarding.create_project.no_bbs_repos=No repositories were found for this project. Contact your system administrator, or {link}.
  3275. onboarding.create_project.update_your_token=update your personal access token
  3276. onboarding.create_project.no_bbs_repos.filter=No repositories match your filter.
  3277. 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.
  3278. onboarding.create_project.import_selected_repo=Set up selected repository
  3279. onboarding.create_project.go_to_project=Go to project
  3280. onboarding.create_project.see_on_github=See project on GitHub
  3281. onboarding.create_project.search_prompt=Search for projects
  3282. onboarding.create_project.set_up=Set up
  3283. onboarding.create_project.azure.title=Which Azure DevOps repository do you want to set up?
  3284. onboarding.create_project.azure.no_projects=No projects could be fetched from Azure DevOps. Contact your system administrator, or {link}.
  3285. onboarding.create_project.azure.search_results_for_project_X=Search results for "{0}"
  3286. onboarding.create_project.azure.no_repositories=Could not fetch repositories for this project. Contact your system administrator, or {link}.
  3287. onboarding.create_project.azure.no_results=No repositories match your search query.
  3288. onboarding.create_project.bitbucketcloud.title=Which Bitbucket Cloud repository do you want to set up?
  3289. onboarding.create_project.bitbucketcloud.no_projects=No projects could be fetched from Bitbucket. Contact your system administrator, or {link}.
  3290. onboarding.create_project.bitbucketcloud.link=See on Bitbucket
  3291. onboarding.create_project.github.title=Which GitHub repository do you want to set up?
  3292. onboarding.create_project.github.choose_organization=Choose organization
  3293. onboarding.create_project.github.warning.title=Could not connect to GitHub
  3294. onboarding.create_project.github.warning.message=Please contact an administrator to configure GitHub integration.
  3295. onboarding.create_project.github.warning.message_admin=Please make sure the GitHub instance is correctly configured in the {link} to create a new project from a repository.
  3296. onboarding.create_project.github.warning.message_admin.link=DevOps Platform integration settings
  3297. onboarding.create_project.github.no_orgs=We couldn't load any organizations with your key. Contact an administrator.
  3298. 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}.
  3299. onboarding.create_project.gitlab.title=Which GitLab project do you want to set up?
  3300. onboarding.create_project.gitlab.no_projects=No projects could be fetched from Gitlab. Contact your system administrator, or {link}.
  3301. onboarding.create_project.gitlab.link=See on GitLab
  3302. onboarding.token.header=Provide a token
  3303. 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}.
  3304. 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}.
  3305. 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}.
  3306. onboarding.token.text.user_account=user account
  3307. onboarding.token.generate=Generate
  3308. onboarding.token.generate.long=Generate a token
  3309. onboarding.token.generate.PROJECT_ANALYSIS_TOKEN=Generate a project token
  3310. onboarding.token.generate.GLOBAL_ANALYSIS_TOKEN=Generate a global token
  3311. onboarding.token.use_existing_token=Use existing token
  3312. onboarding.token.use_existing_token.label=Existing token value
  3313. onboarding.token.use_existing_token.help=Paste an existing token value into the input field.
  3314. 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.
  3315. onboarding.token.name.label=Token name
  3316. onboarding.token.name.placeholder=Enter a name for your token
  3317. onboarding.token.name.help=Enter a name for your project token
  3318. onboarding.token.invalid_format=The token you have entered has invalid format.
  3319. onboarding.tutorial.env_variables=In the {field} field, enter {value} {extra}
  3320. onboarding.tutorial.env_variables.field=Value
  3321. onboarding.tutorial.env_variables.token_generator.value=an existing token, or a newly generated one:
  3322. onboarding.analysis.header=Run analysis on your project
  3323. onboarding.analysis.auto_refresh_after_analysis.done=Is my analysis done?
  3324. onboarding.analysis.auto_refresh_after_analysis.auto_refresh=If your analysis is successful, this page will automatically refresh in a few moments.
  3325. 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.
  3326. 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.
  3327. onboarding.analysis.auto_refresh_after_analysis.check_these_links=Check these useful links while you wait: {link_branches}, {link_pr_analysis}.
  3328. onboarding.analysis.auto_refresh_after_analysis.check_these_links.pr_analysis=Pull Request Analysis
  3329. onboarding.analysis.auto_refresh_after_analysis.check_these_links.branches=Branch Analysis
  3330. onboarding.build=What option best describes your build?
  3331. onboarding.build.maven=Maven
  3332. onboarding.build.gradle=Gradle
  3333. onboarding.build.make=Make
  3334. onboarding.build.dotnet=.NET
  3335. onboarding.build.dotnet.win_core=Windows + .NET Core
  3336. onboarding.build.dotnet.win_msbuild=Windows + .NET Framework
  3337. onboarding.build.dotnet.linux_core=Linux + .NET Core
  3338. onboarding.build.cfamily=C,C++ or ObjC
  3339. onboarding.build.other=Other (for JS, TS, Go, Python, PHP, ...)
  3340. onboarding.build.dotnet.variant=Choose your build tool
  3341. onboarding.build.dotnet.variant.dotnet_core=.NET Core
  3342. onboarding.build.dotnet.variant.dotnet_framework=.NET Framework
  3343. onboarding.build.other.os=What is your OS?
  3344. onboarding.build.other.os.linux=Linux
  3345. onboarding.build.other.os.win=Windows
  3346. onboarding.build.other.os.mac=macOS
  3347. onboarding.analysis.docs=Please visit the {link} for more details.
  3348. onboarding.analysis.build_wrapper.header.linux=Download and unzip the Build Wrapper for Linux
  3349. onboarding.analysis.build_wrapper.header.win=Download and unzip the Build Wrapper for Windows
  3350. onboarding.analysis.build_wrapper.header.mac=Download and unzip the Build Wrapper for macOS
  3351. onboarding.analysis.build_wrapper.text=And add the executable's directory to the {env_var} environment variable
  3352. onboarding.analysis.build_wrapper.execute=Execute the Build Wrapper as a prefix to your build command
  3353. onboarding.analysis.build_wrapper.execute_text=Run the following command in your project's folder.
  3354. onboarding.analysis.build_wrapper.execute_build_command=<your clean build command>
  3355. onboarding.analysis.build_wrapper.docs=Please visit the {link} of the Build Wrapper for more details.
  3356. onboarding.analysis.build_wrapper.docs_link=official documentation
  3357. onboarding.analysis.java.maven.header=Execute the Scanner for Maven
  3358. 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.
  3359. onboarding.analysis.java.maven.docs_link=official documentation of the Scanner for Maven
  3360. onboarding.analysis.java.maven.text.custom=Run the following command in your project's folder.
  3361. onboarding.analysis.java.gradle.header=Execute the Scanner for Gradle
  3362. onboarding.analysis.java.gradle.text.1=Running an analysis with Gradle is straighforward. You just need to declare the {plugin_code} plugin in your {filename} file:
  3363. onboarding.analysis.java.gradle.text.2=and run the following command:
  3364. onboarding.analysis.java.gradle.latest_version=You can find the latest version of the Gradle plugin {link}.
  3365. onboarding.analysis.java.gradle.docs_link=official documentation of the Scanner for Gradle
  3366. onboarding.analysis.msbuild.header=Download and unzip the Scanner for .NET
  3367. onboarding.analysis.msbuild.text=Visit the {link} to download the latest version, and add the executable's directory to the {code} environment variable
  3368. onboarding.analysis.msbuild.execute=Execute the Scanner for .NET
  3369. 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.
  3370. onboarding.analysis.msbuild.docs_link=official documentation of the Scanner for .NET
  3371. onboarding.analysis.sq_scanner.header.linux=Download and unzip the Scanner for Linux
  3372. onboarding.analysis.sq_scanner.header.win=Download and unzip the Scanner for Windows
  3373. onboarding.analysis.sq_scanner.header.mac=Download and unzip the Scanner for macOS
  3374. onboarding.analysis.sq_scanner.text=Visit the {link} to download the latest version, and add the {dir} directory to the {env_var} environment variable
  3375. onboarding.analysis.sq_scanner.execute=Execute the Scanner
  3376. 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.
  3377. onboarding.analysis.sq_scanner.execute.text.custom=Run the following commands in your project's folder.
  3378. onboarding.analysis.sq_scanner.docs=Please visit the {link} for more details.
  3379. onboarding.analysis.sq_scanner.docs_use_case=Please visit the {link} for more details, and the {useCaseLink} to know more about this use case.
  3380. onboarding.analysis.sq_scanner.docs_link=official documentation of the Scanner
  3381. onboarding.analysis.sq_scanner.sonar_token_env.header=Configure a SONAR_TOKEN environment variable in your CI settings
  3382. onboarding.analysis.sq_scanner.sonar_token_env.var_name=Add an environment variable called
  3383. onboarding.analysis.sq_scanner.sonar_token_env.var_value=Give it the following value
  3384. onboarding.analysis.sqscanner.docs.gradle.title=official documentation of the Scanner for Gradle
  3385. onboarding.analysis.sqscanner.docs.gradle.example_project.title=live Gradle-based example project
  3386. onboarding.analysis.dotnetcore.global=Scanner .NET Core Global Tool
  3387. onboarding.analysis.dotnetcore.global.text=As a prerequisite you need to have the sonarscanner tool installed globally using the following command:
  3388. onboarding.analysis.dotnetcore.global.text.path=Make sure dotnet tools folder is in your path. See dotnet global tools documentation for more information.
  3389. onboarding.tutorial.return_to_list=Choose another option
  3390. onboarding.tutorial.ci_outro.all_set.title=You're all set!
  3391. onboarding.tutorial.ci_outro.all_set.sentence={all_set} and ready to improve the quality and security of your code!
  3392. onboarding.tutorial.ci_outro.all_set.sentence.all_set=You're all set
  3393. onboarding.tutorial.ci_outro.commit=Commit and push your code to start the analysis.
  3394. 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.
  3395. 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.
  3396. 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.
  3397. 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.
  3398. 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.
  3399. onboarding.tutorial.ci_outro.commit.why.no_branches=Each new push you make on your main branch will trigger a new analysis in SonarQube.
  3400. onboarding.tutorial.ci_outro.refresh=This page will then refresh with your analysis results.
  3401. 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.
  3402. onboarding.tutorial.ci_outro.waiting_for_fist_analysis=Waiting for the first analysis to come in...
  3403. onboarding.tutorial.other.project_key.sentence=Create a {file} file in your repository and paste the following code:
  3404. onboarding.tutorial.cfamilly.compilation_database_info=If you have trouble using the build wrapper, you can try using a {link}.
  3405. onboarding.tutorial.cfamilly.compilation_database_info.link=compilation database
  3406. onboarding.tutorial.cfamilly.speed_caching=You can also speed up your analysis by enabling {link}.
  3407. onboarding.tutorial.cfamilly.speed_caching.link=multi-threading and caching
  3408. onboarding.tutorial.cfamily.examples_repositories_description=Check out our C and C++ sample projects with SonarQube analysis configured
  3409. onboarding.tutorial.choose_method=How do you want to analyze your repository?
  3410. onboarding.tutorial.choose_method.devops_platform.description=Do you want to integrate with your favorite CI? Choose one of the following tutorials.
  3411. onboarding.tutorial.choose_method.local.description=Are you just testing or have an advanced use-case? Analyze your project locally.
  3412. onboarding.tutorial.choose_method.local=Locally
  3413. onboarding.tutorial.choose_method.other-ci=Other CI
  3414. onboarding.tutorial.choose_method.jenkins=With Jenkins
  3415. onboarding.tutorial.choose_method.github-actions=With GitHub Actions
  3416. onboarding.tutorial.choose_method.gitlab-ci=With GitLab CI
  3417. onboarding.tutorial.choose_method.azure-pipelines=With Azure Pipelines
  3418. onboarding.tutorial.choose_method.bitbucket-pipelines=With Bitbucket Pipelines
  3419. onboarding.tutorial.with.yaml.gradle=Update your {gradle} file with the {sq} plugin and it's configuration:
  3420. onboarding.tutorial.with.bitbucket_pipelines.create_secret.title=Create repository variables
  3421. onboarding.tutorial.with.bitbucket_pipelines.yaml.title=Create your pipelines builds configuration
  3422. onboarding.tutorial.with.bitbucket_pipelines.variables.intro=In your Bitbucket repository, go to {repository_variables} and create two new variables:
  3423. onboarding.tutorial.with.bitbucket_pipelines.variables.intro.link=Repository settings > Repository variables
  3424. onboarding.tutorial.with.bitbucket_pipelines.variables.name.sentence=In the {name} field, enter
  3425. onboarding.tutorial.with.bitbucket_pipelines.variables.name.sentence.name=Name
  3426. onboarding.tutorial.with.bitbucket_pipelines.variables.add.sentence=Click on {add}
  3427. onboarding.tutorial.with.bitbucket_pipelines.variables.add.sentence.add=Add
  3428. onboarding.tutorial.with.bitbucket_pipelines.variables.secured.sentence=Make sure {secured} is check
  3429. onboarding.tutorial.with.bitbucket_pipelines.variables.secured.sentence.secured=Secured
  3430. onboarding.tutorial.with.github_action.create_secret.title=Create GitHub Secrets
  3431. onboarding.tutorial.with.github_action.secret.intro=In your GitHub repository, go to {settings_secret} and create two new secrets:
  3432. onboarding.tutorial.with.github_action.secret.intro.link=Settings > Secrets
  3433. onboarding.tutorial.with.github_action.secret.name.sentence=In the {name} field, enter
  3434. onboarding.tutorial.with.github_action.secret.name.sentence.name=Name
  3435. onboarding.tutorial.with.github_action.secret.new.sentence=Click on {new_secret}
  3436. onboarding.tutorial.with.github_action.secret.new.sentence.new_secret=New repository secret
  3437. onboarding.tutorial.with.github_action.secret.add.sentence=Click on {add_secret}
  3438. onboarding.tutorial.with.github_action.secret.add.sentence.add_secret=Add secret
  3439. onboarding.tutorial.with.github_action.yaml.title=Create Workflow YAML File
  3440. onboarding.tutorial.with.github_action.yaml.create_yml=Create or update your {file} YAML file with the following content:
  3441. onboarding.tutorial.with.gitlab_ci.title=Analyze your project with GitLab CI
  3442. onboarding.tutorial.with.gitlab_ci.project_key.title=Set your project key
  3443. onboarding.tutorial.with.gitlab_ci.project_key.maven.step2=Add the following to your {file} file:
  3444. onboarding.tutorial.with.gitlab_ci.project_key.gradle.step2=Add the following to your {file} file:
  3445. onboarding.tutorial.with.gitlab_ci.project_key.other.step2=Create a {file} file in your repository and paste the following code:
  3446. onboarding.tutorial.with.gitlab_ci.project_key.dotnet.step2=Create a {file} file in your repository and paste the following code:
  3447. onboarding.tutorial.with.gitlab_ci.project_key.cfamily.step2=Create a {file} file in your repository and paste the following code:
  3448. onboarding.tutorial.with.gitlab_ci.env_variables.title=Add environment variables
  3449. onboarding.tutorial.with.gitlab_ci.env_variables.description.link=Settings > CI/CD > Variables
  3450. onboarding.tutorial.with.gitlab_ci.env_variables.section.title=a. Define the SonarQube Token environment variable
  3451. onboarding.tutorial.with.gitlab_ci.env_variables.section.description=In GitLab, go to {link} to add the following variable and make sure it is available for your project:
  3452. onboarding.tutorial.with.gitlab_ci.env_variables.edit.token.tooltip=Use an existing token or generate a new one.
  3453. onboarding.tutorial.with.gitlab_ci.env_variables.step1=Key
  3454. onboarding.tutorial.with.gitlab_ci.env_variables.step3=Uncheck the "Protect Variable" checkbox
  3455. onboarding.tutorial.with.gitlab_ci.env_variables.section.step4=Check the "Mask Variable" checkbox
  3456. onboarding.tutorial.with.gitlab_ci.env_variables.section2.title=b. Define the SonarQube URL environment variable
  3457. onboarding.tutorial.with.gitlab_ci.env_variables.section2.description=Still in {link} add a new variable and make sure it is available for your project:
  3458. onboarding.tutorial.with.gitlab_ci.env_variables.section2.step4=Leave the "Mask variable" checkbox unchecked
  3459. onboarding.tutorial.with.gitlab_ci.yml.title=Create or update the configuration file
  3460. onboarding.tutorial.with.gitlab_ci.yml.description=Create or update your {filename} file with the following content.
  3461. onboarding.tutorial.with.gitlab_ci.yml.filename=.gitlab-ci.yml
  3462. onboarding.tutorial.with.gitlab_ci.yml.baseconfig=Note that this is a minimal base configuration to run a SonarQube analysis on your main branch and merge requests.
  3463. onboarding.tutorial.with.gitlab_ci.yml.baseconfig.no_branches=Note that this is a minimal base configuration to run a SonarQube analysis on your main branch.
  3464. onboarding.tutorial.with.gitlab_ci.yml.existing=If you already have a pipeline configured and running, you might want to add the example from this step to your existing yml file.
  3465. onboarding.tutorial.with.jenkins.title=Analyze your project with Jenkins
  3466. onboarding.tutorial.with.jenkins.alm_selection.title=Select your DevOps platform
  3467. onboarding.tutorial.with.jenkins.prereqs.title=Prerequisites
  3468. onboarding.tutorial.with.jenkins.prereqs.intro.sentence=To run your project analyses with Jenkins, the following plugins must be {installed} and {configured}.
  3469. onboarding.tutorial.with.jenkins.prereqs.intro.sentence.installed=installed
  3470. onboarding.tutorial.with.jenkins.prereqs.intro.sentence.configured=configured
  3471. onboarding.tutorial.with.jenkins.prereqs.plugins.branch_source.bitbucket=Bitbucket Branch Source plugin for Jenkins - version 2.7 or later
  3472. onboarding.tutorial.with.jenkins.prereqs.plugins.branch_source.bitbucketcloud=Bitbucket Branch Source plugin for Jenkins - version 2.7 or later
  3473. onboarding.tutorial.with.jenkins.prereqs.plugins.branch_source.github=GitHub Branch Source plugin for Jenkins - version 2.7.1 or later
  3474. onboarding.tutorial.with.jenkins.prereqs.plugins.branch_source.gitlab=GitLab Branch Source plugin for Jenkins - version 1.5.3 or later
  3475. onboarding.tutorial.with.jenkins.prereqs.plugins.gitlab_plugin=GitLab plugin for Jenkins - version 1.5.13 or later
  3476. onboarding.tutorial.with.jenkins.prereqs.plugins.sonar_scanner=SonarQube Scanner plugin for Jenkins - version 2.11 or later
  3477. 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.
  3478. onboarding.tutorial.with.jenkins.prereqs.step_by_step_guide.link=Analysis Prerequisites
  3479. 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.
  3480. onboarding.tutorial.with.jenkins.prereqs.done=Configure Analysis
  3481. onboarding.tutorial.with.jenkins.multi_branch_pipeline.title=Create a Multibranch Pipeline Job
  3482. onboarding.tutorial.with.jenkins.multi_branch_pipeline.intro=Create a Multibranch Pipeline in order to automatically analyze all your branches and pull requests.
  3483. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step1.sentence=From Jenkins' dashboard, click {new_item} and create a {type}.
  3484. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step1.sentence.new_item=New Item
  3485. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step1.sentence.type=Multibranch Pipeline Job
  3486. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.sentence=Under {tab}, add a {source} source and enter the following information:
  3487. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.sentence.tab=Branch Sources
  3488. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.sentence.source=Bitbucket
  3489. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.server.label=Server
  3490. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.server.action=select the instance hosting the repository you want to analyze.
  3491. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.creds.label=Credentials
  3492. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.creds.action=select the Bitbucket Server credentials.
  3493. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.owner.label=Owner
  3494. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.owner.action=enter your project key.
  3495. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.repo.label=Repository
  3496. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucket.repo.action=select the repository you want to analyze.
  3497. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.sentence=Under {tab}, add a {source} source and enter the following information:
  3498. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.sentence.tab=Branch Sources
  3499. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.sentence.source=Bitbucket
  3500. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.server.label=Server
  3501. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.server.action=Make sure that Bitbucket Cloud is selected.
  3502. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.creds.label=Credentials
  3503. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.creds.action=select the Bitbucket Cloud credentials.
  3504. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.owner.label=Owner
  3505. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.owner.action=enter your workspace ID
  3506. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.repo.label=Repository
  3507. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.bitbucketcloud.repo.action=select the repository you want to analyze.
  3508. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.github.sentence=Under {tab}, add a {source} source and enter the following information:
  3509. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.github.sentence.tab=Branch Sources
  3510. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.github.sentence.source=GitHub
  3511. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.github.creds.label=Credentials
  3512. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.github.creds.action=select or add your GitHub credentials.
  3513. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.github.repo_url.label=Repository HTTPS URL
  3514. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.github.repo_url.action=enter your repository URL.
  3515. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.sentence=Under {tab}, add a {source} source and enter the following information:
  3516. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.sentence.tab=Branch Sources
  3517. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.sentence.source=GitLab Project
  3518. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.creds.label=Checkout Credentials
  3519. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.creds.action=select or add your GitLab credentials.
  3520. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.owner.label=Owner
  3521. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.owner.action=enter the name of your user or your group.
  3522. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.repo.label=Projects
  3523. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.gitlab.repo.action=select your project.
  3524. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.label=Behaviors
  3525. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.branches_prs.action=Exclude branches that are also filed as PRs
  3526. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.branches_prs.label=Discover branches
  3527. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.branches_mrs.action=Exclude branches that are also filed as MRs
  3528. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.branches_mrs.label=Discover branches
  3529. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.discover_prs.action=The current pull request revision
  3530. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.discover_prs.label=Discover pull requests from origin
  3531. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.discover_mrs.action=The current merge request revision
  3532. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.discover_mrs.label=Discover merge requests from origin
  3533. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.ref_specs.label=Specify ref specs
  3534. 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}.
  3535. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.ref_specs.add_behaviour.sentence.add=Add
  3536. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.ref_specs.add_behaviour.sentence.ref_spec=Specify ref specs
  3537. 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:
  3538. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.ref_specs.set_pr_ref_specs.sentence.ref_spec=Ref Spec
  3539. 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:
  3540. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.behaviors.ref_specs.set_mr_ref_specs.sentence.ref_spec=Ref Spec
  3541. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step2.leave_defaults=You can leave the other Branch Source settings at the defaults.
  3542. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step3.sentence=Jump to the {tab} section and make sure the parameters are set as follows:
  3543. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step3.sentence.tab=Build Configuration
  3544. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step3.mode.label=Mode
  3545. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step3.mode.action=by Jenkinsfile
  3546. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step3.script_path.label=Script Path
  3547. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step3.script_path.action=Jenkinsfile
  3548. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step4.sentence=Click {save}.
  3549. onboarding.tutorial.with.jenkins.multi_branch_pipeline.step4.sentence.save=Save
  3550. onboarding.tutorial.with.jenkins.pipeline.title=Create a Pipeline Job
  3551. onboarding.tutorial.with.jenkins.pipeline.intro=Create a Pipeline in order to automatically analyze your project.
  3552. onboarding.tutorial.with.jenkins.pipeline.step1.sentence=From Jenkins' dashboard, click {new_item} and create a {type}.
  3553. onboarding.tutorial.with.jenkins.pipeline.step1.sentence.new_item=New Item
  3554. onboarding.tutorial.with.jenkins.pipeline.step1.sentence.type=Pipeline Job
  3555. onboarding.tutorial.with.jenkins.pipeline.step2.sentence=Under {tab}, choose {option}. You must set a unique, secret token for this field.
  3556. onboarding.tutorial.with.jenkins.pipeline.step2.sentence.tab=Build Triggers
  3557. onboarding.tutorial.with.jenkins.pipeline.step2.sentence.option=Trigger builds remotely
  3558. 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.
  3559. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.trigger.sentence.tab=Build Triggers
  3560. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.trigger.sentence.option=Build when a change is pushed to GitLab
  3561. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.pick_triggers.sentence=Under {triggers}, only select {push_events}.
  3562. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.pick_triggers.sentence.triggers=Enabled GitLab triggers
  3563. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.pick_triggers.sentence.push_events=Push events
  3564. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.click_advanced.sentence=Click on {advanced}
  3565. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.click_advanced.sentence.advanced=Advanced...
  3566. 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.
  3567. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.secret_token.sentence.secret_token=Secret token
  3568. onboarding.tutorial.with.jenkins.pipeline.gitlab.step2.secret_token.sentence.generate=Generate
  3569. onboarding.tutorial.with.jenkins.pipeline.step3.sentence=Under {tab}, make sure the parameters are set as follows:
  3570. onboarding.tutorial.with.jenkins.pipeline.step3.sentence.tab=Pipeline
  3571. onboarding.tutorial.with.jenkins.pipeline.step3.definition.label=Definition
  3572. onboarding.tutorial.with.jenkins.pipeline.step3.definition.action=Pipeline script from SCM
  3573. 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}.
  3574. onboarding.tutorial.with.jenkins.pipeline.step3.scm.sentence.label=SCM:
  3575. onboarding.tutorial.with.jenkins.pipeline.step3.scm.sentence.branches_to_build=Branches to build
  3576. onboarding.tutorial.with.jenkins.pipeline.step3.script_path.label=Script Path
  3577. onboarding.tutorial.with.jenkins.pipeline.step3.script_path.action=Jenkinsfile
  3578. onboarding.tutorial.with.jenkins.pipeline.step4.sentence=Click {save}.
  3579. onboarding.tutorial.with.jenkins.pipeline.step4.sentence.save=Save
  3580. onboarding.tutorial.with.jenkins.webhook.bitbucket.title=Create a Bitbucket Server Webhook
  3581. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.title=Create a Bitbucket Cloud Webhook
  3582. onboarding.tutorial.with.jenkins.webhook.github.title=Create a GitHub Webhook
  3583. onboarding.tutorial.with.jenkins.webhook.gitlab.title=Create a GitLab Webhook
  3584. onboarding.tutorial.with.jenkins.webhook.intro.sentence=Create a Webhook in your repository to trigger the Jenkins job on push. Already have a Webhook configured? {link}
  3585. onboarding.tutorial.with.jenkins.webhook.intro.link=Skip this step.
  3586. onboarding.tutorial.with.jenkins.webhook.step1.sentence=Go to the {link} and enter the following information:
  3587. onboarding.tutorial.with.jenkins.webhook.bitbucket.step1.link=Bitbucket Server Webhook creation page for your repository
  3588. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step1.link=Bitbucket Cloud Webhook creation page for your repository
  3589. onboarding.tutorial.with.jenkins.webhook.github.step1.link=GitHub Webhook creation page for your repository
  3590. onboarding.tutorial.with.jenkins.webhook.gitlab.step1.link=GitLab Webhook creation page for your repository
  3591. onboarding.tutorial.with.jenkins.webhook.step1.name.label=Name
  3592. onboarding.tutorial.with.jenkins.webhook.step1.name.action=give a unique name.
  3593. onboarding.tutorial.with.jenkins.webhook.bitbucket.step1.url.label=URL
  3594. onboarding.tutorial.with.jenkins.webhook.bitbucket.step1.url.action=Enter the following URL, replacing the values between *** as needed:
  3595. 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.
  3596. onboarding.tutorial.with.jenkins.webhook.github.step1.url.label=URL
  3597. onboarding.tutorial.with.jenkins.webhook.github.step1.url.action=Enter the following URL, replacing the values between *** as needed:
  3598. onboarding.tutorial.with.jenkins.webhook.gitlab.step1.url_with_branches.label=URL
  3599. onboarding.tutorial.with.jenkins.webhook.gitlab.step1.url_with_branches.action=Enter the following URL, replacing the values between *** as needed:
  3600. onboarding.tutorial.with.jenkins.webhook.gitlab.step1.url_no_branches.label=URL
  3601. onboarding.tutorial.with.jenkins.webhook.gitlab.step1.url_no_branches.action=Enter the URL you wrote down in the previous step.
  3602. onboarding.tutorial.with.jenkins.webhook.gitlab.step1.secret_token.label=Secret Token
  3603. onboarding.tutorial.with.jenkins.webhook.gitlab.step1.secret_token.action=Enter the generated token you wrote down in the previous step.
  3604. onboarding.tutorial.with.jenkins.webhook.bitbucket.step2.sentence=Under {events}, make sure the following options are checked:
  3605. onboarding.tutorial.with.jenkins.webhook.bitbucket.step2.sentence.events=Events
  3606. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step2.sentence=Under {triggers}, select {option} and make sure the following options are checked:
  3607. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step2.sentence.triggers=Triggers
  3608. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step2.sentence.option=Choose from a full list of triggers
  3609. onboarding.tutorial.with.jenkins.webhook.github.step2.sentence=Under {events} select {option} and check the following:
  3610. onboarding.tutorial.with.jenkins.webhook.github.step2.sentence.events=Which events would you like to trigger this webhook?
  3611. onboarding.tutorial.with.jenkins.webhook.github.step2.sentence.option=Let me select individual events
  3612. onboarding.tutorial.with.jenkins.webhook.gitlab.step2.sentence=Under {trigger} check the following:
  3613. onboarding.tutorial.with.jenkins.webhook.gitlab.step2.sentence.trigger=Trigger
  3614. onboarding.tutorial.with.jenkins.webhook.bitbucket.step2.repo.label=Repository
  3615. onboarding.tutorial.with.jenkins.webhook.bitbucket.step2.repo.action=Push
  3616. onboarding.tutorial.with.jenkins.webhook.bitbucket.step2.pr.label=Pull Request
  3617. onboarding.tutorial.with.jenkins.webhook.bitbucket.step2.pr.action=Opened
  3618. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step2.repo.label=Repository
  3619. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step2.repo.action=Push
  3620. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step2.pr.label=Pull Request
  3621. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step2.pr.action=Created
  3622. onboarding.tutorial.with.jenkins.webhook.github.step2.repo=Pushes
  3623. onboarding.tutorial.with.jenkins.webhook.github.step2.pr=Pull Requests
  3624. onboarding.tutorial.with.jenkins.webhook.gitlab.step2.repo=Push events
  3625. onboarding.tutorial.with.jenkins.webhook.gitlab.step2.mr=Merge request events
  3626. onboarding.tutorial.with.jenkins.webhook.github.step3.sentence=Click {add_webhook}.
  3627. onboarding.tutorial.with.jenkins.webhook.github.step3.sentence.add_webhook=Add webhook
  3628. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step3.sentence=Click {save}.
  3629. onboarding.tutorial.with.jenkins.webhook.bitbucketcloud.step3.sentence.save=Save
  3630. onboarding.tutorial.with.jenkins.webhook.bitbucket.step3.sentence=Click {create}.
  3631. onboarding.tutorial.with.jenkins.webhook.bitbucket.step3.sentence.create=Create
  3632. onboarding.tutorial.with.jenkins.webhook.gitlab.step3.sentence=Click {add_webhook}.
  3633. onboarding.tutorial.with.jenkins.webhook.gitlab.step3.sentence.add_webhook=Add webhook
  3634. onboarding.tutorial.with.jenkins.jenkinsfile.title=Create a Jenkinsfile
  3635. onboarding.tutorial.with.jenkins.jenkinsfile.jenkinsfile_step.sentence=Create a {file} file in your repository and paste the following code:
  3636. 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}.
  3637. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.replace.sentence.default=Default Maven
  3638. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.replace.sentence.in_jenkins=in Jenkins
  3639. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.help1.sentence=To get the name of your Maven tool in Jenkins, navigate to {path}.
  3640. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.help1.sentence.path=Manage Jenkins > Global Tool Configuration
  3641. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.help2.sentence=The name is located under the {path} section, in the {name} field.
  3642. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.help2.sentence.path=Maven > Maven installations
  3643. onboarding.tutorial.with.jenkins.jenkinsfile.maven.step3.help2.sentence.name=Name
  3644. onboarding.tutorial.with.jenkins.jenkinsfile.gradle.step2.sentence=Add the following to your {file} file:
  3645. onboarding.tutorial.with.jenkins.jenkinsfile.dotnet.build_agent=Choose your build agent.
  3646. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.title.sentence=Prerequisite: Add a {default_msbuild} tool
  3647. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.title.sentence.default_msbuild=MSBuild
  3648. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.info=This step need to be done only once per jenkins instance.
  3649. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step1.sentence=In Jenkins, make sure to have the {msbuild} installed.
  3650. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step1.sentence.msbuild=MSBuild Plugin
  3651. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step2.sentence=Navigate to {path}.
  3652. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step2.sentence.path=Manage Jenkins > Global Tool Configuration
  3653. 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:
  3654. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step3.sentence.msbuild=MSBuild
  3655. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step3.sentence.msbuild_plugin=MSBuild Plugin
  3656. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step3.sentence.add_msbuild=Add MSBuild
  3657. onboarding.tutorial.with.jenkins.dotnet.msbuild.prereqs.step3.sentence.name=Name
  3658. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.title.sentence=Prerequisite: Add a {default_scanner} tool
  3659. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.title.sentence.default_scanner=SonarScanner for MSBuild
  3660. 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.
  3661. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step1.sentence=In Jenkins, navigate to {path}.
  3662. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step1.sentence.path=Manage Jenkins > Global Tool Configuration
  3663. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step2.sentence=Under {default_scanner} click on {add_scanner_for_msbuild}
  3664. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step2.sentence.default_scanner=SonarScanner for MSBuild
  3665. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step2.sentence.add_scanner_for_msbuild=Add SonarScanner for MSBuild
  3666. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step3.sentence=Choose a {name} that will be used in the last step:
  3667. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step3.sentence.name=Name
  3668. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step4.sentence=Check {install_auto}
  3669. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step4.sentence.install_auto=Install automatically
  3670. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step5.sentence=Under {install_from} select the corresponding .NET Core scanner required for you project.
  3671. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step5.sentence.install_from=Install from GitHub
  3672. onboarding.tutorial.with.jenkins.dotnet.scanner.prereqs.step5.sentence.install_auto=Install automatically
  3673. 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}.
  3674. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.replace.sentence.default=SonarScanner
  3675. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.replace.sentence.in_jenkins=in Jenkins
  3676. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.help1.sentence=To get the name of your SonarQube Scanner tool in Jenkins, navigate to {path}.
  3677. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.help1.sentence.path=Manage Jenkins > Global Tool Configuration
  3678. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.help2.sentence=The name is located under the {path} section, in the {name} field.
  3679. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.help2.sentence.path=SonarQube Scanner > SonarQube Scanner installations
  3680. onboarding.tutorial.with.jenkins.jenkinsfile.other.step3.help2.sentence.name=Name
  3681. onboarding.tutorial.with.jenkins.jenkinsfile.cfamilly.agent_setup=We assume the Jenkins agent has the necessary tools to build your project.
  3682. onboarding.tutorial.with.azure_pipelines.os=What is your agent host?
  3683. onboarding.tutorial.with.azure_pipelines.title=Analyze your project with Azure DevOps Pipelines
  3684. onboarding.tutorial.with.azure_pipelines.ExtensionInstallation.title=Install SonarQube extension for Azure DevOps
  3685. 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.
  3686. onboarding.tutorial.with.azure_pipelines.ExtensionInstallation.sentence.link=SonarQube extension
  3687. onboarding.tutorial.with.azure_pipelines.ExtensionInstallation.sentence.button=Get it free
  3688. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.title=Add a new SonarQube Service Endpoint in your project
  3689. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step1.sentence=In Azure DevOps, go to {menu}
  3690. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step1.sentence.menu=Project settings > Service connections
  3691. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step2.sentence=Add a new service connection of type {type}
  3692. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step2.sentence.type=SonarQube
  3693. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step3.sentence=Enter your SonarQube server url: {url} {button}
  3694. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step4.sentence=Enter an existing token, or a newly generated one
  3695. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step5.sentence=Enter a memorable connection name
  3696. onboarding.tutorial.with.azure_pipelines.ServiceEndpoint.step6.sentence=Create the service connection
  3697. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.title=Configure analysis
  3698. 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.
  3699. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.info.doc_link=Azure DevOps integration page
  3700. 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.
  3701. 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.
  3702. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build_wrapper.ccpp.win.sentence.task=PowerShell script
  3703. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build_wrapper.ccpp.nix.sentence.task=Bash script
  3704. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build_wrapper.ccpp.win.sentence.inline=inline
  3705. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build_wrapper.ccpp.nix.sentence.inline=inline
  3706. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.ccpp.sentence=Add a new {task} task {before} your build task
  3707. 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}
  3708. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare_additional.ccpp.additional=Additional Properties
  3709. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare_additional.ccpp.advanced=Advanced
  3710. 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.
  3711. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build.ccpp.sentence.task=Command Line
  3712. 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:
  3713. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.build_script.ccpp.sentence.build_wrapper=Build Wrapper
  3714. 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.
  3715. 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
  3716. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.sentence.pipeline=Pipeline
  3717. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.sentence.task=Prepare Analysis Configuration
  3718. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.sentence.before=before
  3719. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.endpoint.sentence=Select the {endpoint} you created in Step 2
  3720. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.endpoint.sentence.endpoint=SonarQube server endpoint
  3721. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.run_analysis=Under {section}, select {run_analysis_value}
  3722. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.run_analysis.section=Choose the way to run the analysis
  3723. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.run_analysis.values.dotnet=Integrate with MSBuild
  3724. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.run_analysis.values.maven=Integrate with Maven or Gradle
  3725. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.run_analysis.values.gradle=Integrate with Maven or Gradle
  3726. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.run_analysis.values.cfamily=Use standalone scanner
  3727. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.prepare.run_analysis.values.other=Use standalone scanner
  3728. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.manual.sentence=Select the {mode} mode
  3729. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.manual.sentence.mode=Manually provide configuration
  3730. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.run.sentence=Add a new {task} task {after} your build task
  3731. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.run.sentence.task=Run Code Analysis
  3732. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.run.sentence.after=after
  3733. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.run.key.sentence=In the {project_key} field, enter {key} {button}
  3734. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.run.key.sentence.project_key=Project Key
  3735. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.advanced_properties.sentence=Expand the {section} and replace the {properties} with the following snippet
  3736. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.advanced_properties.sentence.section=Advanced section
  3737. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.advanced_properties.sentence.properties=Additional Properties
  3738. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java_installer.title=Add a new Java tool installer task
  3739. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java_installer.sentence=Under {field}, select {value}
  3740. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java_installer.java_version=JDK version
  3741. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java_installer.or_higher=(or higher)
  3742. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java_installer.java_architecture=JDK architecture
  3743. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java_installer.java_source=JDK source
  3744. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java_installer.pre-installed=Pre-installed
  3745. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java=Edit or add a new {0} task
  3746. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java.settings.sentence=Under {section}, check {option}
  3747. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java.settings.sentence.section=Code Analysis
  3748. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.java.settings.sentence.option=Run SonarQube or SonarCloud Analysis
  3749. 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
  3750. 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.
  3751. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.publish_qg.sentence.task=Publish Quality Gate Result
  3752. 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
  3753. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.continous_integration.sentence.tab=Triggers
  3754. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.continous_integration.sentence.continuous_integration=Enable continuous integration
  3755. 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
  3756. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.continous_integration.no_branches.sentence.tab=Triggers
  3757. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.continous_integration.no_branches.sentence.continuous_integration=Enable continuous integration
  3758. 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}.
  3759. onboarding.tutorial.with.azure_pipelines.BranchAnalysis.branch_protection.link=documentation
  3760. onboarding.tutorial.no_scan_rights=You do not have permission to analyze this project. Please contact the project administrator.
  3761. #------------------------------------------------------------------------------
  3762. #
  3763. # BRANCHES
  3764. #
  3765. #------------------------------------------------------------------------------
  3766. branches.branch=Branch
  3767. branches.main_branch=Main Branch
  3768. branches.pr=PR
  3769. branches.see_the_pr=See the PR
  3770. #------------------------------------------------------------------------------
  3771. #
  3772. # BRANCH-LIKE NAVIGATION
  3773. #
  3774. #------------------------------------------------------------------------------
  3775. branch_like_navigation.manage=Manage branches and Pull Requests
  3776. branch_like_navigation.search_for_branch_like=Search for branches or Pull Requests...
  3777. branch_like_navigation.pull_requests=Pull Requests
  3778. branch_like_navigation.orphan_pull_requests=Orphan Pull Requests
  3779. branch_like_navigation.orphan_pull_requests.tooltip=When the base of a Pull Request is deleted, this Pull Request becomes orphan.
  3780. branch_like_navigation.for_merge_into_x_from_y=for merge into {target} from {branch}
  3781. branch_like_navigation.no_branch_support.title=Get the most out of SonarQube with branch and PR/MR analysis
  3782. branch_like_navigation.no_branch_support.title.pr=Get the most out of SonarQube with branch and PR analysis
  3783. branch_like_navigation.no_branch_support.title.mr=Get the most out of SonarQube with branch and MR analysis
  3784. 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.
  3785. 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.
  3786. 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.
  3787. branch_like_navigation.only_one_branch.title=Learn how to analyze branches in SonarQube
  3788. branch_like_navigation.only_one_branch.content=Quickly setup branch analysis and get separate insights for each of your branches and Pull Requests.
  3789. branch_like_navigation.only_one_branch.documentation=Branches documentation
  3790. branch_like_navigation.only_one_branch.pr_analysis=Pull Request analysis
  3791. branch_like_navigation.tutorial_for_ci=Show me how to set up my CI
  3792. #------------------------------------------------------------------------------
  3793. #
  3794. # APPLICATIONS
  3795. #
  3796. #------------------------------------------------------------------------------
  3797. application.cannot_access_all_child_projects1=You must have access to all the projects within this Application in order to browse it.
  3798. application.cannot_access_all_child_projects2=Please contact your project administrator.
  3799. #------------------------------------------------------------------------------
  3800. #
  3801. # PORTFOLIOS
  3802. #
  3803. #------------------------------------------------------------------------------
  3804. portfolio.has_always_been_x=has always been {rating}
  3805. portfolio.was_x_y=was {rating} {date}
  3806. portfolio.x_in_y={project_branches} in {rating}
  3807. portfolio.project_branch=project branch
  3808. portfolio.project_branches=project branches
  3809. portfolio.has_qg_status=Has Quality Gate Status
  3810. portfolio.have_qg_status=Have Quality Gate Status
  3811. portfolio.empty=This portfolio is empty.
  3812. portfolio.no_lines_of_code=All projects in this portfolio are empty
  3813. portfolio.not_computed=This portfolio is not yet computed.
  3814. portfolio.app.empty=This application is empty.
  3815. portfolio.app.no_lines_of_code=All projects in this application are empty
  3816. portfolio.metric_trend=Metric trend
  3817. portfolio.lowest_rated_project_branches=Lowest rated project branches
  3818. portfolio.health_factors=Portfolio health factors
  3819. portfolio.activity_link=Activity
  3820. portfolio.measures_link=Measures
  3821. portfolio.language_breakdown_link=Language breakdown
  3822. portfolio.breakdown=Portfolio breakdown
  3823. portfolio.number_of_projects=Number of project branches
  3824. portfolio.number_of_lines=Number of lines of code
  3825. portfolio.metric_domain.vulnerabilities=Security Vulnerabilities
  3826. portfolio.metric_domain.security_hotspots=Security Review
  3827. #------------------------------------------------------------------------------
  3828. #
  3829. # METRIC DOMAINS HELP TEXT
  3830. #
  3831. #------------------------------------------------------------------------------
  3832. portfolio.metric_domain.releasability.help=Ratio of projects in the Portfolio that have passed the Quality Gate.
  3833. portfolio.metric_domain.reliability.help=Average Reliability rating for all projects in the portfolio.
  3834. portfolio.metric_domain.vulnerabilities.help=Average security rating for all projects in the portfolio.
  3835. portfolio.metric_domain.security_hotspots.help=Average security review rating for all projects in the portfolio.
  3836. portfolio.metric_domain.maintainability.help=Average maintainability rating for all projects in the portfolio.
  3837. #------------------------------------------------------------------------------
  3838. #
  3839. # ENCRYPTION
  3840. #
  3841. #------------------------------------------------------------------------------
  3842. encryption.form_intro=Secret key is registered. You can encrypt any property value with the following form:
  3843. encryption.form_note=Note that the secret key can be changed, but all the encrypted properties will have to be updated. {moreInformationLink}
  3844. encryption.encrypted_value=Encrypted Value:
  3845. encryption.generate_secret_key=Generate Secret Key
  3846. encryption.generate_new_secret_key=Generate New Secret Key
  3847. encryption.encrypt=Encrypt
  3848. encryption.secret_key_description=Secret key is required to be able to encrypt properties. {moreInformationLink}
  3849. encryption.secret_key=Secret Key
  3850. encryption.how_to_use=How To Use
  3851. 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}
  3852. encryption.how_to_use.content2=Restrict access to this file by making it readable and by owner only
  3853. encryption.how_to_use.content3=Restart the server if the property {property} has been set or changed.
  3854. 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).
  3855. #------------------------------------------------------------------------------
  3856. #
  3857. # USERS
  3858. #
  3859. #------------------------------------------------------------------------------
  3860. users.page=Users
  3861. users.page.description=Create and administer individual users.
  3862. users.deactivate=Deactivate
  3863. users.deactivate_user=Deactivate User
  3864. users.deactivate_user.confirmation=Are you sure you want to deactivate "{0} ({1})"?
  3865. users.delete_user=Delete user's personal information
  3866. users.delete_user.help=Deleting a user's personal information will change its login, making it impossible to reactivate them. {link}
  3867. users.delete_user.help.link=Learn more
  3868. users.delete_user.documentation=Authentication
  3869. users.create_user=Create User
  3870. users.update_user=Update User
  3871. users.cannot_update_delegated_user=You cannot update the name and email of this user, as it is controlled by an external identity provider.
  3872. users.minimum_x_characters=Minimum {0} characters
  3873. users.email=Email
  3874. users.last_connection=Last connection
  3875. users.update_groups=Update Groups
  3876. users.update_tokens=Update Tokens
  3877. users.add=Add user
  3878. users.remove=Remove user
  3879. users.search_description=Search users by login or name
  3880. users.update=Update users
  3881. users.tokens=Tokens
  3882. users.user_X_tokens=Tokens of {user}
  3883. users.tokens.sure=Sure?
  3884. users.tokens.sure_X=Are you sure you want to revoke token {token}?
  3885. users.tokens.revoke=Revoke
  3886. users.tokens.revoke_token=Revoke token
  3887. users.no_tokens=No tokens
  3888. users.generate=Generate
  3889. users.tokens.PROJECT_ANALYSIS_TOKEN=Project Analysis Token
  3890. users.tokens.PROJECT_ANALYSIS_TOKEN.short=Project
  3891. users.tokens.GLOBAL_ANALYSIS_TOKEN=Global Analysis Token
  3892. users.tokens.GLOBAL_ANALYSIS_TOKEN.short=Global
  3893. users.tokens.USER_TOKEN=User Token
  3894. users.tokens.USER_TOKEN.short=User
  3895. users.tokens.generate=Generate Tokens
  3896. users.tokens.name=Name
  3897. users.tokens.enter_name=Enter Token Name
  3898. users.tokens.type=Type
  3899. users.tokens.select_type=Select Token Type
  3900. users.tokens.project=Project
  3901. users.tokens.select_project=Select Project
  3902. users.tokens.expires_in=Expires in
  3903. users.tokens.expiration.30=30 days
  3904. users.tokens.expiration.90=90 days
  3905. users.tokens.expiration.365=1 year
  3906. users.tokens.expiration.0=No expiration
  3907. 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!
  3908. users.generate_new_token=Generate New Token
  3909. users.new_token=New token value
  3910. users.change_admin_password.instance_is_at_risk=Secure your SonarQube instance
  3911. users.change_admin_password.header=Default Administrator credentials are still used
  3912. 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.
  3913. users.change_admin_password.form.header=Change the password for user 'admin'
  3914. users.change_admin_password.form.password=New password for user 'admin'
  3915. users.change_admin_password.form.confirm=Confirm password for user 'admin'
  3916. users.change_admin_password.form.cannot_use_default_password=You must choose a password that is different from the default password.
  3917. users.change_admin_password.form.success=The admin user's password was successfully changed.
  3918. users.change_admin_password.form.continue_to_app=Continue to SonarQube
  3919. #------------------------------------------------------------------------------
  3920. #
  3921. # GROUPS
  3922. #
  3923. #------------------------------------------------------------------------------
  3924. user_groups.page=Groups
  3925. user_groups.page.description=Create and administer groups of users.
  3926. user_groups.anyone.description=Anybody (authenticated or not) who browses the application belongs to this group
  3927. groups.delete_group=Delete Group
  3928. groups.delete_group.confirmation=Are you sure you want to delete "{0}"?
  3929. groups.create_group=Create Group
  3930. groups.update_group=Update Group
  3931. groups.anyone=Anyone
  3932. #------------------------------------------------------------------------------
  3933. #
  3934. # MAINTENANCE
  3935. #
  3936. #------------------------------------------------------------------------------
  3937. maintenance.page=Maintenance
  3938. maintenance.upgrade_failed=Upgrade Failed
  3939. maintenance.upgrade_failed.text=Database connection cannot be established. Please check database status and JDBC settings.
  3940. maintenance.migration_not_supported=Migration not supported
  3941. maintenance.migration_not_supported.text=Migration is not supported on embedded databases.
  3942. maintenance.upgrade_database=Upgrade Database
  3943. maintenance.upgrade_database.1=The database upgrade can take several minutes.
  3944. maintenance.upgrade_database.2=It is mandatory to back up database before upgrading.
  3945. maintenance.upgrade_database.3=Make sure you have followed the steps from the SonarQube Upgrade guide.
  3946. maintenance.upgrade=Upgrade
  3947. maintenance.database_migration=Database Migration
  3948. maintenance.database_is_up_to_date=Database is up-to-date
  3949. maintenance.is_down={instance} is down
  3950. maintenance.sonarqube_is_down.text=Something went wrong. Please contact your system administrator.
  3951. maintenance.try_again=Try Again
  3952. maintenance.is_under_maintenance={instance} is under maintenance
  3953. maintenance.sonarqube_is_under_maintenance.1=While waiting, install {link} in your IDE!
  3954. maintenance.sonarqube_is_under_maintenance_link.1=SonarLint
  3955. 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}.
  3956. maintenance.sonarqube_is_under_maintenance_link.2=upgrade guide
  3957. maintenance.is_starting={instance} is starting
  3958. maintenance.is_up={instance} is up
  3959. maintenance.all_systems_opetational=All systems operational.
  3960. maintenance.is_offline={instance} is offline
  3961. maintenance.sonarqube_is_offline.text=The connection to SonarQube is lost. Please contact your system administrator.
  3962. #------------------------------------------------------------------------------
  3963. #
  3964. # INDEXATION
  3965. #
  3966. #------------------------------------------------------------------------------
  3967. indexation.in_progress=SonarQube is reloading project data. Some projects will be unavailable until this process is complete.
  3968. indexation.progression={0}% complete.
  3969. indexation.progression_with_error={0}% complete with some {link}.
  3970. indexation.progression_with_error.link=tasks failing
  3971. indexation.completed=All project data has been reloaded.
  3972. indexation.completed_with_error=SonarQube completed the reload of project data. Some {link} causing some projects to remain unavailable.
  3973. indexation.completed_with_error.link=tasks failed or cancelled
  3974. indexation.admin_link=See {link} for more information.
  3975. indexation.page_unavailable.title.issues=Issues page is temporarily unavailable
  3976. indexation.page_unavailable.title.portfolios=Portfolios page is temporarily unavailable
  3977. indexation.page_unavailable.title={componentQualifier} {componentName} is temporarily unavailable
  3978. indexation.page_unavailable.description=This page will be available after the data is reloaded. This might take a while depending on the amount of projects and issues in your SonarQube instance.
  3979. indexation.page_unavailable.description.additional_information=You can keep analyzing your projects during this process.
  3980. #------------------------------------------------------------------------------
  3981. #
  3982. # HOMEPAGE
  3983. #
  3984. #------------------------------------------------------------------------------
  3985. homepage.current=This page is your homepage. Click to revert to the default homepage. Click on the top-left logo to find it anytime.
  3986. homepage.current.is_default=This page is your homepage. Click on the top-left logo to find it anytime.
  3987. homepage.check=Click to make the current page your homepage.
  3988. #------------------------------------------------------------------------------
  3989. #
  3990. # FAVORITE
  3991. #
  3992. #------------------------------------------------------------------------------
  3993. favorite.action.TRK.add=Add this project to favorites
  3994. favorite.action.TRK.remove=Remove this project from favorites
  3995. favorite.action.VW.add=Add this portfolio to favorites
  3996. favorite.action.VW.remove=Remove this portfolio from favorites
  3997. favorite.action.SVW.add=Add sub-this portfolio to favorites
  3998. favorite.action.SVW.remove=Remove sub-this portfolio from favorites
  3999. favorite.action.APP.add=Add this application to favorites
  4000. favorite.action.APP.remove=Remove this application from favorites
  4001. favorite.action.TRK.add_x=Add project {0} to favorites
  4002. favorite.action.TRK.remove_x=Remove project {0} from favorites
  4003. favorite.action.VW.add_x=Add portfolio {0} to favorites
  4004. favorite.action.VW.remove_x=Remove portfolio {0} from favorites
  4005. favorite.action.SVW.add_x=Add sub-portfolio {0} to favorites
  4006. favorite.action.SVW.remove_x=Remove sub-portfolio {0} from favorites
  4007. favorite.action.APP.add_x=Add application {0} to favorites
  4008. favorite.action.APP.remove_x=Remove application {0} from favorites
  4009. #------------------------------------------------------------------------------
  4010. #
  4011. # WEBHOOKS
  4012. #
  4013. #------------------------------------------------------------------------------
  4014. webhooks.page=Webhooks
  4015. webhooks.create=Create Webhook
  4016. webhooks.delete=Delete Webhook
  4017. webhooks.delete.confirm=Are you sure you want to delete the webhook "{0}"?
  4018. webhooks.description=Webhooks are used to notify external services when a project analysis is done. An HTTP POST request including a JSON payload is sent to each of the provided URLs. Learn more in the {url}.
  4019. webhooks.deliveries.show=Show recent deliveries
  4020. webhooks.deliveries_for_x=Recent deliveries of {0}
  4021. webhooks.delivery.duration_x=Duration: {0}
  4022. webhooks.delivery.payload=Payload:
  4023. webhooks.delivery.response_x=Response: {0}
  4024. webhooks.delivery.server_unreachable=Server Unreachable
  4025. webhooks.documentation_link=Webhooks documentation
  4026. webhooks.last_execution=Last delivery
  4027. webhooks.last_execution.none=Never
  4028. webhooks.latest_delivery_for_x=Last delivery of {0}
  4029. webhooks.maximum_reached=You reached your maximum number of {0} webhooks. You can still update or delete an existing one.
  4030. webhooks.name=Name
  4031. webhooks.name.required=Name is required.
  4032. webhooks.no_result=No webhook defined.
  4033. webhooks.update=Update Webhook
  4034. webhooks.secret=Secret
  4035. webhooks.secret_header=Secret?
  4036. webhooks.secret.bad_format=Secret must have a maximum length of 200 characters
  4037. 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
  4038. webhooks.url=URL
  4039. webhooks.url.bad_format=Bad format of URL.
  4040. webhooks.url.bad_protocol=URL must start with "http://" or "https://".
  4041. 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"
  4042. webhooks.url.required=URL is required.
  4043. #------------------------------------------------------------------------------
  4044. #
  4045. # COMPONENT REPORT
  4046. #
  4047. #------------------------------------------------------------------------------
  4048. component_report.report={0} PDF report
  4049. component_report.download=Download {0} PDF report
  4050. component_report.no_email_to_subscribe=Email subscription requires an email address.
  4051. component_report.subscribe_x=Subscribe to {0} report
  4052. component_report.unsubscribe_x=Unsubscribe from {0} report
  4053. component_report.unsubscribe=Unsubscribe from report
  4054. component_report.unsubscribe.description=If you no longer wish to receive these reports via email, you can unsubscribe by clicking on the button below.
  4055. component_report.subscribe_x_success=Subscription successful. You will receive a {0} report for this {1} by email.
  4056. component_report.unsubscribe_x_success=Subscription successfully canceled. You won't receive a {0} report for this {1} by email.
  4057. component_report.unsubscribe_success=Subscription successfully canceled. You won't receive these reports by email anymore.