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

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