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

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