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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603
  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. apply=Apply
  13. all=All
  14. and=And
  15. anonymous=Anonymous
  16. any=Any
  17. ascending=Ascending
  18. assignee=Assignee
  19. author=Author
  20. billion=Billion
  21. bitbucket=Bitbucket
  22. back=Back
  23. backup=Backup
  24. backup_verb=Back up
  25. best=Best
  26. beta=BETA
  27. blocker=Blocker
  28. bold=Bold
  29. branch=Branch
  30. by_=by
  31. calendar=Calendar
  32. cancel=Cancel
  33. category=Category
  34. changelog=Changelog
  35. change_verb=Change
  36. class=Class
  37. classes=Classes
  38. close=Close
  39. closed=Closed
  40. code=Code
  41. color=Color
  42. collapse_all=Collapse all
  43. compare=Compare
  44. component=Component
  45. configure=Configure
  46. confirm=Confirm
  47. continue=Continue
  48. copy=Copy
  49. create=Create
  50. create_new_element=Create new element
  51. created=Created
  52. created_on=Created on
  53. critical=Critical
  54. customize=Customize
  55. date=Date
  56. days=Days
  57. default=Default
  58. delete=Delete
  59. deprecated=Deprecated
  60. descending=Descending
  61. description=Description
  62. directories=Directories
  63. directory=Directory
  64. display=Display
  65. download_verb=Download
  66. duplications=Duplications
  67. end_date=End Date
  68. edit=Edit
  69. events=Events
  70. example=Example
  71. expand_all=Expand all
  72. explore=Explore
  73. extend=Extend
  74. false=False
  75. favorite=Favorite
  76. file=File
  77. files=Files
  78. filters=Filters
  79. follow=Follow
  80. format=Format
  81. from=From
  82. global=Global
  83. github=GitHub
  84. help=Help
  85. hide=Hide
  86. inactive=Inactive
  87. info=Info
  88. issue=Issue
  89. issues=Issues
  90. inheritance=Inheritance
  91. internal=internal
  92. key=Key
  93. language=Language
  94. last_analysis=Last Analysis
  95. learn_more=Learn More
  96. library=Library
  97. line_number=Line Number
  98. links=Links
  99. load_more=Load more
  100. load_verb=Load
  101. login=Login
  102. major=Major
  103. manual=Manual
  104. max=Max
  105. max_results_reached=Only the first {0} results are displayed
  106. me=Me
  107. members=Members
  108. min=Min
  109. minor=Minor
  110. more=More
  111. more_x={0} more
  112. more_actions=More Actions
  113. my_issues=My Issues
  114. my_favorite=My Favorite
  115. my_favorites=My Favorites
  116. my_projects=My Projects
  117. name=Name
  118. navigation=Navigation
  119. never=Never
  120. new=New
  121. new_name=New name
  122. none=None
  123. no_tags=No tags
  124. not_now=Not now
  125. off=Off
  126. on=On
  127. or=Or
  128. organization_key=Organization Key
  129. organization.bitbucket=Bitbucket team
  130. organization.github=GitHub organization
  131. open=Open
  132. optional=Optional
  133. order=Order
  134. owner=Owner
  135. parameters=Parameters
  136. password=Password
  137. path=Path
  138. permalink=Permanent Link
  139. plugin=Plugin
  140. project=Project
  141. project_x=Project: {0}
  142. projects=Projects
  143. projects_=project(s)
  144. project_singular=project
  145. project_plural=projects
  146. projects_management=Projects Management
  147. quality_profile=Quality Profile
  148. raw=Raw
  149. recent_history=Recent History
  150. recently_browsed=Recently Browsed
  151. recommended=Recommended
  152. refresh=Refresh
  153. reload=Reload
  154. remove=Remove
  155. rename=Rename
  156. reset_verb=Reset
  157. reset_to_default=Reset To Default
  158. resolution=Resolution
  159. restart=Restart
  160. restore=Restore
  161. result=Result
  162. results=Results
  163. x_results={0} results
  164. review=Review
  165. rule=Rule
  166. rules=Rules
  167. save=Save
  168. search_verb=Search
  169. see_all=See all
  170. select_verb=Select
  171. selected=Selected
  172. set=Set
  173. set_up=Set Up
  174. severity=Severity
  175. shared=Shared
  176. start_date=Start Date
  177. x_show={0} shown
  178. x_selected={0} selected
  179. x_of_y_shown={0} of {1} shown
  180. size=Size
  181. skip=Skip
  182. skip_to_content=Skip to main content
  183. status=Status
  184. support=Support
  185. table=Table
  186. tags=Tags
  187. tags_list_x=Tags list: {0}
  188. technical_debt=Technical Debt
  189. template=Template
  190. title=Title
  191. to=To
  192. to_=to
  193. total=Total
  194. treemap=Treemap
  195. true=True
  196. type=Type
  197. unassigned=Not assigned
  198. unit_test=Unit test
  199. unit_tests=Unit tests
  200. unknown=Unknown
  201. unresolved=Unresolved
  202. updated=Updated
  203. updated_on=Updated on
  204. update_verb=Update
  205. updating=Updating
  206. unselected=Unselected
  207. user=User
  208. value=Value
  209. variation=Variation
  210. version=Version
  211. view=View
  212. views=Views
  213. violations=Violations
  214. visibility=Visibility
  215. warnings=Warnings
  216. with=With
  217. worst=Worst
  218. yes=Yes
  219. no=No
  220. #------------------------------------------------------------------------------
  221. #
  222. # GENERIC EXPRESSIONS, sorted alphabetically
  223. #
  224. #------------------------------------------------------------------------------
  225. 404_not_found=404 Not found
  226. address_mistyped_or_page_moved=You may have mistyped the address or the page may have moved.
  227. and_worse=and worse
  228. are_you_sure=Are you sure?
  229. as_explained_here=as explained here
  230. assigned_to=Assigned to
  231. bulk_change=Bulk Change
  232. bulleted_point=Bulleted point
  233. clear=Clear
  234. clear_all_filters=Clear All Filters
  235. coding_rules=Rules
  236. copy_to_clipboard=Click to copy to Clipboard
  237. copied_action=Copied to Clipboard
  238. created_by=Created by
  239. default_error_message=The request cannot be processed. Try again later.
  240. default_severity=Default severity
  241. edit_permissions=Edit Permissions
  242. facet_might_have_more_results=There might be more results, try another set of filters to see them.
  243. false_positive=False positive
  244. go_back_to_homepage=Go back to the homepage
  245. last_analysis_before=Last analysis before
  246. less_than_1_hour_ago=< 1 hour ago
  247. logging_out=You're logging out, please wait...
  248. manage=Manage
  249. management=Management
  250. more_information=More information
  251. my_organizations=My Organizations
  252. new_violations=New violations
  253. new_window=New window
  254. no_data=No data
  255. no_results=No results
  256. no_results_for_x=No results for "{0}"
  257. no_results_search=We couldn't find any results matching selected criteria.
  258. no_results_search.favorites=We couldn't find any results matching selected criteria in your favorites.
  259. no_results_search.2=Try to change filters to get some results.
  260. no_results_search.favorites.2=Would you like to search among {url} projects?
  261. page_extension_failed=Page extension failed.
  262. page_not_found=The page you were looking for does not exist.
  263. please_contact_administrator=Please contact the instance administrator.
  264. set_as_default=Set as Default
  265. short_number_suffix.g=G
  266. short_number_suffix.k=k
  267. short_number_suffix.m=M
  268. show_less=Show Less
  269. show_more=Show More
  270. show_all=Show All
  271. show_them=Show Them
  272. should_be_unique=Should be unique
  273. since_x=since {0}
  274. since_version=since version {0}
  275. since_version.short={0}
  276. since_version_detailed=since version {0} ({1})
  277. since_version_detailed.short={0} ({1})
  278. since_previous_version=since previous version
  279. since_previous_version.short=\u0394 version
  280. since_previous_version_detailed=since previous version ({0} - {1})
  281. since_previous_version_with_only_date=since previous version ({0})
  282. since_previous_version_detailed.short=\u0394 version ({0})
  283. this_name_is_already_taken=This name is already taken.
  284. update_details=Update details
  285. work_duration.x_days={0}d
  286. work_duration.x_hours={0}h
  287. work_duration.x_minutes={0}min
  288. work_duration.about=~ {0}
  289. #------------------------------------------------------------------------------
  290. #
  291. # CALENDAR
  292. #
  293. #------------------------------------------------------------------------------
  294. Done=Done
  295. Prev=Prev
  296. Next=Next
  297. Today=Today
  298. January=January
  299. February=February
  300. March=March
  301. April=April
  302. May=May
  303. June=June
  304. July=July
  305. August=August
  306. September=September
  307. October=October
  308. November=November
  309. December=December
  310. Jan=Jan
  311. Feb=Feb
  312. Mar=Mar
  313. Apr=Apr
  314. Jun=Jun
  315. Jul=Jul
  316. Aug=Aug
  317. Sep=Sep
  318. Oct=Oct
  319. Nov=Nov
  320. Dec=Dec
  321. Sunday=Sunday
  322. Monday=Monday
  323. Tuesday=Tuesday
  324. Wednesday=Wednesday
  325. Thursday=Thursday
  326. Friday=Friday
  327. Saturday=Saturday
  328. Sun=Sun
  329. Mon=Mon
  330. Tue=Tue
  331. Wed=Wed
  332. Thu=Thu
  333. Fri=Fri
  334. Sat=Sat
  335. Su=Su
  336. Mo=Mo
  337. Tu=Tu
  338. We=We
  339. Th=Th
  340. Fr=Fr
  341. Sa=Sa
  342. #------------------------------------------------------------------------------
  343. #
  344. # RESOURCE QUALIFIERS
  345. #
  346. #------------------------------------------------------------------------------
  347. qualifier.TRK=Project
  348. qualifier.BRC=Sub-project
  349. qualifier.DIR=Directory
  350. qualifier.PAC=Package
  351. qualifier.VW=Portfolio
  352. qualifier.SVW=Portfolio
  353. qualifier.APP=Application
  354. qualifier.FIL=File
  355. qualifier.CLA=File
  356. qualifier.UTS=Test File
  357. qualifier.DEV=Developer
  358. qualifier.configuration.TRK=Project Configuration
  359. qualifier.configuration.VW=Portfolio Configuration
  360. qualifier.configuration.SVW=Portfolio Configuration
  361. qualifier.configuration.APP=Application Configuration
  362. qualifiers.TRK=Projects
  363. qualifiers.BRC=Sub-projects
  364. qualifiers.DIR=Directories
  365. qualifiers.PAC=Packages
  366. qualifiers.VW=Portfolios
  367. qualifiers.SVW=Portfolios
  368. qualifiers.APP=Applications
  369. qualifiers.FIL=Files
  370. qualifiers.CLA=Files
  371. qualifiers.UTS=Test Files
  372. qualifiers.DEV=Developers
  373. qualifiers.all.TRK=All Projects
  374. qualifiers.all.VW=All Portfolios
  375. qualifiers.all.DEV=All Developers
  376. qualifiers.all.APP=All Applications
  377. qualifiers.new.TRK=New Project
  378. qualifiers.new.VW=New Portfolio
  379. qualifiers.new.DEV=New Developer
  380. qualifiers.new.APP=New Application
  381. qualifier.delete.TRK=Delete Project
  382. qualifier.delete.VW=Delete Portfolio
  383. qualifier.delete.APP=Delete Application
  384. qualifiers.delete.TRK=Delete Projects
  385. qualifiers.delete.VW=Delete Portfolios
  386. qualifiers.delete.APP=Delete Applications
  387. qualifier.delete_confirm.TRK=Do you want to delete this project?
  388. qualifier.delete_confirm.VW=Do you want to delete this portfolio?
  389. qualifier.delete_confirm.APP=Do you want to delete this application?
  390. qualifiers.delete_confirm.TRK=Do you want to delete these projects?
  391. qualifiers.delete_confirm.VW=Do you want to delete these portfolios?
  392. qualifiers.delete_confirm.APP=Do you want to delete these applications?
  393. qualifiers.create.TRK=Create Project
  394. qualifiers.create.VW=Create Portfolio
  395. qualifiers.create.DEV=Create Developer
  396. qualifiers.create.APP=Create Application
  397. qualifiers.update.VW=Update Portfolio
  398. qualifiers.update.DEV=Update Developer
  399. qualifiers.update.APP=Update Application
  400. qualifier.description.VW=Potentially multi-level, management-oriented overview aggregation.
  401. qualifier.description.SVW=Potentially multi-level, management-oriented overview aggregation.
  402. qualifier.description.APP=Single-level aggregation with a technical focus and a project-like homepage.
  403. #------------------------------------------------------------------------------
  404. #
  405. # PROJECT LINKS
  406. #
  407. #------------------------------------------------------------------------------
  408. project_links.homepage=Project's Website
  409. project_links.ci=Continuous integration
  410. project_links.issue=Bug Tracker
  411. project_links.scm=Sources
  412. project_links.scm_ro=Read-only connection
  413. project_links.scm_dev=Developer connection
  414. project_links.create_new_project_link=Create New Project Link
  415. project_links.delete_project_link=Delete Project Link
  416. project_links.are_you_sure_to_delete_x_link=Are you sure you want to delete the "{0}" link?
  417. project_links.name=Name
  418. project_links.url=URL
  419. #------------------------------------------------------------------------------
  420. #
  421. # EVENT CATEGORIES
  422. #
  423. #------------------------------------------------------------------------------
  424. event.category.All=All
  425. event.category.VERSION=Version
  426. event.category.QUALITY_GATE=Quality Gate
  427. event.category.QUALITY_PROFILE=Quality Profile
  428. event.category.DEFINITION_CHANGE=Definition Change
  429. event.category.OTHER=Other
  430. event.quality_gate.still_x=Still {status}
  431. event.definition_change.added={project} added
  432. event.definition_change.removed={project} removed
  433. event.definition_change.branch_added={project} {branch} added
  434. event.definition_change.branch_removed={project} {branch} removed
  435. event.definition_change.branch_replaced={project} {oldBranch} replaced with {newBranch}
  436. #------------------------------------------------------------------------------
  437. #
  438. # LAYOUT
  439. #
  440. #------------------------------------------------------------------------------
  441. layout.home=Home
  442. layout.login=Log in
  443. layout.logout=Log out
  444. layout.measures=Measures
  445. layout.settings=Administration
  446. layout.security_hotspots=Security Hotspots
  447. layout.settings.TRK=Project Settings
  448. layout.settings.APP=Application Settings
  449. layout.settings.VW=Portfolio Settings
  450. layout.settings.SVW=Portfolio Settings
  451. layout.security_reports=Security Reports
  452. layout.sonar.slogan=Continuous Code Quality
  453. sidebar.projects=Projects
  454. sidebar.project_settings=Configuration
  455. sidebar.security=Security
  456. sidebar.system=System
  457. sidebar.tools=Tools
  458. #------------------------------------------------------------------------------
  459. #
  460. # VISIBILITY
  461. #
  462. #------------------------------------------------------------------------------
  463. visibility.both=Public, Private
  464. visibility.public=Public
  465. visibility.public.description.TRK=This project is public. Anyone can browse and see the source code.
  466. visibility.public.description.VW=This portfolio is public. Anyone can browse it.
  467. visibility.public.description.APP=This application is public. Anyone can browse it.
  468. visibility.public.description.short=Anyone can browse and see the source code.
  469. visibility.public.description.long=Anyone will be able to browse your source code and see the result of your analysis.
  470. visibility.private=Private
  471. visibility.private.description.TRK=This project is private. Only authorized users can browse and see the source code.
  472. visibility.private.description.VW=This portfolio is private. Only authorized users can browse it.
  473. visibility.private.description.APP=This application is private. Only authorized users can browse it.
  474. visibility.private.description.short=Only authorized users can browse and see the source code.
  475. visibility.private.description.long=Only members of the organization will be able to browse your source code and see the result of your analysis.
  476. #------------------------------------------------------------------------------
  477. #
  478. # ADMIN PAGE TITLES and descriptions
  479. #
  480. #------------------------------------------------------------------------------
  481. coding_rules.page=Rules
  482. global_permissions.page=Global Permissions
  483. 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.
  484. organization_permissions.page.description=Grant and revoke organization permissions. Permissions can be granted to groups or individual users.
  485. roles.page=Project Permissions
  486. roles.page.description2=Grant and revoke project-level permissions. Permissions can be granted to groups or individual users.
  487. roles.page.description_portfolio=Grant and revoke portfolio-level permissions. Permissions can be granted to groups or individual users.
  488. project_settings.page=General Settings
  489. project_settings.page.description=Edit project settings.
  490. project_links.page=Links
  491. project_links.page.description=Edit some links associated with this project.
  492. 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.
  493. settings.page=General Settings
  494. settings.page.description=Edit global settings for this {instance} instance.
  495. system_info.page=System Info
  496. project_quality_profiles.page=Quality Profiles
  497. project_quality_profiles.page.description=Choose which profile is associated with this project on a language-by-language basis. (Note that you will only need to select profiles for multiple languages for multi-language projects.)
  498. project_quality_gate.page=Quality Gate
  499. project_quality_gate.page.description=Choose which quality gate is associated with this project.
  500. update_key.page=Update Key
  501. 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.
  502. deletion.page=Deletion
  503. project_deletion.page.description=Delete this project. The operation cannot be undone.
  504. 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.
  505. 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.
  506. application.branches.help=Easily create Application branches composed of the branches of projects in your application.
  507. application.branches.link=Create Branch
  508. project_branch_pull_request.page=Branches & Pull Requests
  509. project_branch_pull_request.lifetime_information=Branches and Pull Requests are permanently deleted after {days} days without analysis.
  510. project_branch_pull_request.lifetime_information.admin=You can adjust this value globally in {settings}.
  511. project_branch_pull_request.branch.rename=Rename branch
  512. project_branch_pull_request.branch.delete=Delete branch
  513. project_branch_pull_request.branch.delete.are_you_sure=Are you sure you want to delete branch "{0}"?
  514. project_branch_pull_request.branch.auto_deletion.keep_when_inactive=Keep when inactive
  515. project_branch_pull_request.branch.auto_deletion.keep_when_inactive.tooltip=When turned on, the branch will not be automatically deleted when inactive.
  516. project_branch_pull_request.branch.auto_deletion.main_branch_tooltip=The main branch is always excluded from automatic deletion.
  517. project_branch_pull_request.pull_request.delete=Delete Pull Request
  518. project_branch_pull_request.pull_request.delete.are_you_sure=Are you sure you want to delete Pull Request "{0}"?
  519. project_branch_pull_request.tabs.branches=Branches
  520. project_branch_pull_request.tabs.pull_requests=Pull Requests
  521. project_branch_pull_request.table.branch=Branch
  522. project_branch_pull_request.table.pull_request=Pull Request
  523. project_branch_pull_request.last_analysis_date=Last Analysis Date
  524. project_baseline.page=New Code Period
  525. project_baseline.page.description=Use this page to manage the New Code Period of your project. {link}
  526. project_baseline.page.description.link=Learn More
  527. project_baseline.page.description2=You can adjust this setting globally in {link}
  528. project_baseline.page.description2.link=General Settings
  529. project_baseline.default_setting=Project setting
  530. project_baseline.general_setting=Use the general setting
  531. project_baseline.specific_setting=Define a specific setting for this project
  532. project_baseline.configure_branches=Set a specific setting for a branch
  533. baseline.previous_version=Previous version
  534. baseline.previous_version.description=The New Code Period will begin with the analysis following the previous version.
  535. baseline.number_days=Number of days
  536. baseline.number_days.description=A floating New Code Period window set to a specific number of days.
  537. baseline.specific_date=Specific date
  538. baseline.specific_date.description=Set a specific date as the start of the New Code Period. (First analysis on this date will be used)
  539. baseline.specific_analysis=Specific analysis
  540. baseline.specific_analysis.description=Choose an analysis as the baseline for the New Code Period.
  541. baseline.specify_days=Specify a number of days
  542. baseline.last_analysis_before=Last analysis before
  543. baseline.next_analysis_notice=Changes will take effect after the next analysis
  544. branch_list.branch=Branch
  545. branch_list.current_setting=Setting
  546. branch_list.current_baseline=Current Baseline
  547. branch_list.actions=Actions
  548. branch_list.default_setting=Project setting
  549. baseline.new_code_period_for_branch_x=New Code Period for {0}
  550. baseline.analysis_from=Analysis from:
  551. baseline.branch_analyses.ranges.30days=Last 30 days
  552. baseline.branch_analyses.ranges.allTime=All time
  553. baseline.no_analyses=No analyses
  554. #------------------------------------------------------------------------------
  555. #
  556. # OTHER PAGE TITLES
  557. #
  558. #------------------------------------------------------------------------------
  559. overview.page=Overview
  560. code.page=Code
  561. permissions.page=Permissions
  562. quality_profiles.page=Quality Profiles
  563. quality_gates.page=Quality Gates
  564. issues.page=Issues
  565. issues.skip_to_filters=Skip to issue filters
  566. issues.skip_to_list=Skip to issues list
  567. view_projects.page=Projects
  568. portfolios.page=Portfolios
  569. project_activity.page=Activity
  570. #------------------------------------------------------------------------------
  571. #
  572. # ASYNC PROCESS
  573. #
  574. #------------------------------------------------------------------------------
  575. process.still_working=Still Working...
  576. process.fail=Failed
  577. #------------------------------------------------------------------------------
  578. #
  579. # SESSION
  580. #
  581. #------------------------------------------------------------------------------
  582. sessions.log_in=Log in
  583. sessions.email_already_exists.1=The email address {email} is already associated to this user account:
  584. sessions.email_already_exists.2=By clicking on "Continue" you will associate this email address to another user account:
  585. sessions.email_already_exists.3=This means the following:
  586. sessions.email_already_exists.4=Your email address will be erased from the first account.
  587. sessions.email_already_exists.5=You will no longer receive email notifications from this account.
  588. sessions.email_already_exists.6=Issues won't be automatically assigned to this account anymore.
  589. #------------------------------------------------------------------------------
  590. #
  591. # HOTSPOTS
  592. #
  593. #------------------------------------------------------------------------------
  594. risk_exposure.HIGH=High
  595. risk_exposure.MEDIUM=Medium
  596. risk_exposure.LOW=Low
  597. hotspots.page=Security Hotspots
  598. hotspots.no_hotspots.title=There are no Security Hotspots to review.
  599. hotspots.no_hotspots.description=Next time you analyse a piece of code that contains a potential security risk, it will show up here.
  600. hotspots.no_hotspots_for_filters.title=We couldn't find any results matching the selected criteria.
  601. hotspots.no_hotspots_for_filters.description=Try changing the filters to get some results.
  602. hotspots.no_hotspots_for_keys.title=The requested hotspots no longer exist.
  603. hotspots.no_hotspots_for_keys.description=They have been closed because the code involved has been changed or removed.
  604. hotspots.learn_more=Learn more about Security Hotspots
  605. hotspots.list_title={0} Security Hotspots
  606. hotspots.list_title.TO_REVIEW={0} Security Hotspots to review
  607. hotspots.list_title.FIXED={0} Security Hotspots reviewed as fixed
  608. hotspots.list_title.SAFE={0} Security Hotspots reviewed as safe
  609. hotspots.risk_exposure=Review priority
  610. hotspots.tabs.risk_description=What's the risk?
  611. hotspots.tabs.vulnerability_description=Are you at risk?
  612. hotspots.tabs.fix_recommendations=How can you fix it?
  613. hotspots.review_history.created=created Security Hotspot
  614. hotspots.review_history.comment_added=added a comment
  615. hotspots.comment.field=Comment:
  616. hotspots.comment.open=Add Comment
  617. hotspots.comment.submit=Comment
  618. hotspots.assignee.select_user=Select a user...
  619. hotspots.status.cannot_change_status=Changing a hotspot's status requires permission.
  620. hotspots.status.select_status=Select a status...
  621. hotspots.status.add_comment=Add a comment (Optional)
  622. hotspots.status.change_status=Change status
  623. hotspots.status_option.TO_REVIEW=To review
  624. hotspots.status_option.TO_REVIEW.description=This Security Hotspot needs to be reviewed to assess whether the code poses a risk.
  625. hotspots.status_option.FIXED=Fixed
  626. hotspots.status_option.FIXED.description=The code has been modified to follow recommended secure coding practices.
  627. hotspots.status_option.SAFE=Safe
  628. hotspots.status_option.SAFE.description=The code is not at risk and doesn't need to be modified.
  629. hotspots.get_permalink=Get Permalink
  630. hotspot.filters.title=Filters
  631. hotspot.filters.assignee.assigned_to_me=Assigned to me
  632. hotspot.filters.assignee.all=All
  633. hotspot.filters.status.to_review=To review
  634. hotspot.filters.status.fixed=Reviewed as fixed
  635. hotspot.filters.period.since_leak_period=New code
  636. hotspot.filters.period.overall=Overall code
  637. hotspot.filters.status.safe=Reviewed as safe
  638. hotspot.filters.show_all=Show all hotspots
  639. hotspot.section.activity=Activity:
  640. hotspots.reviewed.tooltip=Percentage of Security Hotspots reviewed (fixed or safe) among all non-closed Security Hotspots.
  641. hotspots.review_hotspot=Review Hotspot
  642. hotspots.assign.success=Security Hotspot was successfully assigned to {0}
  643. hotspots.update.success=Security Hotspot status was successfully changed to {0}
  644. #------------------------------------------------------------------------------
  645. #
  646. # ISSUES
  647. #
  648. #------------------------------------------------------------------------------
  649. issue.add_tags=Add Tags
  650. issue.remove_tags=Remove Tags
  651. issue.no_tag=No tags
  652. issue.assign.formlink=Assign
  653. issue.assign.to_me=to me
  654. issue.comment.formlink=Comment
  655. issue.comment.submit=Comment
  656. issue.comment.explain_why=Consider explaining why
  657. issue.comment.delete_confirm_message=Do you want to delete this comment?
  658. issue.manual_vulnerability=Manual
  659. issue.manual_vulnerability.description=This Vulnerability was created from a Security Hotspot and has its own issue workflow.
  660. issue.rule_details=Rule Details
  661. issue.send_notifications=Send Notifications
  662. issue.why_this_issue=Why is this an issue?
  663. issue.why_this_issue.long=Why is this an issue? Open the rule's details at the bottom of the page.
  664. issue.transition=Transition
  665. issue.transition.confirm=Confirm
  666. issue.transition.confirm.description=This issue has been reviewed and something should be done eventually to handle it.
  667. issue.transition.unconfirm=Unconfirm
  668. issue.transition.unconfirm.description=This issue should be reviewed again to decide what to do with it.
  669. issue.transition.resolve=Resolve as fixed
  670. 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.
  671. issue.transition.falsepositive=Resolve as false positive
  672. 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.
  673. issue.transition.reopen=Reopen
  674. issue.transition.reopen.description=This issue is not resolved, and should be reviewed again.
  675. issue.transition.close=Close
  676. issue.transition.close.description=
  677. issue.transition.wontfix=Resolve as won't fix
  678. issue.transition.wontfix.description=This issue can be ignored because the rule is irrelevant in this context. Its effort won't be counted.
  679. issue.transition.setinreview=Set as In Review
  680. issue.transition.setinreview.description=A review is in progress to check for a vulnerability
  681. issue.transition.openasvulnerability=Open as Vulnerability
  682. issue.transition.openasvulnerability.description=There's a Vulnerability in the code that must be fixed
  683. issue.transition.resolveasreviewed=Resolve as Reviewed
  684. issue.transition.resolveasreviewed.description=There is no Vulnerability in the code
  685. issue.transition.resetastoreview=Reset as To Review
  686. issue.transition.resetastoreview.description=The Security Hotspot should be analyzed again
  687. vulnerability.transition.resetastoreview=Reset as To Review
  688. vulnerability.transition.resetastoreview.description=The vulnerability can't be fixed as is and needs more details. The security hotspot needs to be reviewed again
  689. vulnerability.transition.resolveasreviewed=Resolve as Reviewed
  690. vulnerability.transition.resolveasreviewed.description=The vulnerability has been fixed. The security hotspot is considered reviewed
  691. issue.set_severity=Change Severity
  692. issue.set_type=Change Type
  693. issue.type.CODE_SMELL=Code Smell
  694. issue.type.BUG=Bug
  695. issue.type.VULNERABILITY=Vulnerability
  696. issue.type.SECURITY_HOTSPOT=Security Hotspot
  697. issue.type.CODE_SMELL.plural=Code Smells
  698. issue.type.BUG.plural=Bugs
  699. issue.type.VULNERABILITY.plural=Vulnerabilities
  700. issue.type.SECURITY_HOTSPOT.plural=Security Hotspots
  701. issue.status.REOPENED=Reopened
  702. issue.status.RESOLVED=Resolved
  703. issue.status.OPEN=Open
  704. issue.status.CONFIRMED=Confirmed
  705. issue.status.CLOSED=Closed
  706. issue.status.TO_REVIEW=To Review
  707. issue.status.IN_REVIEW=In Review
  708. issue.status.REVIEWED=Reviewed
  709. issue.resolution.FALSE-POSITIVE=False Positive
  710. issue.resolution.FALSE-POSITIVE.description=Issues that manual review determined were False Positives. Effort from these issues is ignored.
  711. issue.resolution.FIXED=Fixed
  712. issue.resolution.FIXED.description=Issues that were corrected in code and reanalyzed.
  713. issue.resolution.WONTFIX=Won't Fix
  714. issue.resolution.WONTFIX.description=Issues that are accepted in this context. They and their effort will be ignored.
  715. issue.resolution.REMOVED=Removed
  716. 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.
  717. issue.unresolved.description=Unresolved issues have not been addressed in any way.
  718. issue.effort=Effort:
  719. issue.x_effort={0} effort
  720. issue.filter_similar_issues=Filter Similar Issues
  721. issue.this_issue_involves_x_code_locations=This issue involves {0} code location(s)
  722. issue.from_external_rule_engine=Issue detected by an external rule engine: {0}
  723. issue.external_issue_description=This is external rule {0}. No details are available.
  724. issues.cannot_open_issue_max_initial_X_fetched=Cannot open selected issue, as it's not part of the initial {0} loaded issues.
  725. issues.return_to_list=Return to List
  726. issues.bulk_change_X_issues=Bulk Change {0} Issue(s)
  727. issues.select_all_issues=Select all Issues
  728. issues.issues=issues
  729. issues.to_select_issues=to select issues
  730. issues.to_navigate=to navigate
  731. issues.to_navigate_issue_locations=to navigate issue locations
  732. issues.to_switch_flows=to switch flows
  733. issues.new_code=New code
  734. issues.new_code_period=New Code Period
  735. issues.max_new_code_period=Max New Code Period
  736. issues.my_issues=My Issues
  737. issues.no_my_issues=There are no issues assigned to you.
  738. issues.no_issues=No Issues. Hooray!
  739. issues.x_more_locations=+ {0} more location(s)
  740. #------------------------------------------------------------------------------
  741. #
  742. # ISSUE CHANGELOG
  743. #
  744. #------------------------------------------------------------------------------
  745. issue.changelog.changed_to={0} changed to {1}
  746. issue.changelog.was=was {0}
  747. issue.change.file_move=The file has been moved from {0} to {1}
  748. issue.change.from_branch=The issue has been copied from branch '{0}' to branch '{1}'
  749. issue.change.from_non_branch=The issue has been merged from '{0}' into '{1}'
  750. issue.changelog.removed={0} removed
  751. issue.changelog.line_removed_X=Line number removed from issue (was {0})
  752. issue.changelog.field.severity=Severity
  753. issue.changelog.field.actionPlan=Action Plan
  754. issue.changelog.field.assignee=Assignee
  755. issue.changelog.field.author=Author
  756. issue.changelog.field.resolution=Resolution
  757. issue.changelog.field.effort=Effort
  758. issue.changelog.field.status=Status
  759. issue.changelog.field.tags=Tags
  760. issue.changelog.field.type=Type
  761. issue.changelog.field.file=File
  762. #------------------------------------------------------------------------------
  763. #
  764. # ISSUES FACETS
  765. #
  766. #------------------------------------------------------------------------------
  767. issues.facet.types=Type
  768. issues.facet.severities=Severity
  769. issues.facet.projects=Project
  770. issues.facet.statuses=Status
  771. issues.facet.hotspotStatuses=Hotspot Status
  772. issues.facet.assignees=Assignee
  773. issues.facet.files=File
  774. issues.facet.modules=Module
  775. issues.facet.directories=Directory
  776. issues.facet.tags=Tag
  777. issues.facet.rules=Rule
  778. issues.facet.resolutions=Resolution
  779. issues.facet.languages=Language
  780. issues.facet.createdAt=Creation Date
  781. issues.facet.createdAt.all=All
  782. issues.facet.createdAt.last_week=Last week
  783. issues.facet.createdAt.last_month=Last month
  784. issues.facet.createdAt.last_year=Last year
  785. issues.facet.authors=Author
  786. issues.facet.issues=Issue Key
  787. issues.facet.mode=Display Mode
  788. issues.facet.mode.count=Issues
  789. issues.facet.mode.effort=Effort
  790. issues.facet.standards=Security Category
  791. issues.facet.owaspTop10=OWASP Top 10
  792. issues.facet.sansTop25=SANS Top 25
  793. issues.facet.sonarsourceSecurity=SonarSource
  794. issues.facet.cwe=CWE
  795. #------------------------------------------------------------------------------
  796. #
  797. # ISSUE BULK CHANGE
  798. #
  799. #------------------------------------------------------------------------------
  800. issue_bulk_change.form.title=Change {0} issues
  801. issue_bulk_change.comment.help=This comment will be applied only to issues that will effectively be modified
  802. 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.
  803. issue_bulk_change.x_issues={0} issues
  804. issue_bulk_change.no_match=There is no issue matching your filter selection
  805. #------------------------------------------------------------------------------
  806. #
  807. # PROJECTS PAGE
  808. #
  809. #------------------------------------------------------------------------------
  810. projects.page=Projects
  811. projects._projects=projects
  812. projects.no_projects.empty_instance=There are no visible projects yet.
  813. projects.no_projects.empty_instance.new_project=Once you analyze some projects, they will show up here.
  814. projects.no_projects.empty_instance.how_to_add_projects=Here is how you can analyse new projects
  815. projects.no_favorite_projects=You don't have any favorite projects yet.
  816. projects.no_favorite_projects.engagement=Discover and mark as favorites projects you are interested in to have a quick access to them.
  817. projects.no_favorite_projects.how_to_add_projects=Here is how to add projects to this page
  818. projects.no_favorite_projects.favorite_projects_from_orgs=Favorite projects from your orgs
  819. projects.no_favorite_projects.favorite_public_projects=Favorite public projects
  820. projects.explore_projects=Explore Projects
  821. projects.not_analyzed=Project is not analyzed yet.
  822. projects.no_new_code_period=Project has no new code data yet.
  823. projects.new_code_period_x=New code: last {0}
  824. projects.configure_analysis=Configure analysis
  825. projects.last_analysis_on_x=Last analysis: {0}
  826. projects.search=Search by project name or key
  827. projects.perspective=Perspective
  828. projects.skip_to_filters=Skip to project filters
  829. projects.sort_by=Sort by
  830. projects.sort_ascending=Result sorted in ascending order
  831. projects.sort_descending=Result sorted in descending order
  832. projects.sorting.default=default
  833. projects.sorting.name=Name
  834. projects.sorting.analysis_date=Last analysis date
  835. projects.sorting.reliability=Reliability
  836. projects.sorting.security=Security
  837. projects.sorting.maintainability=Maintainability
  838. projects.sorting.coverage=Coverage
  839. projects.sorting.duplications=Duplications
  840. projects.sorting.size=Size
  841. projects.sorting.new_reliability=Reliability
  842. projects.sorting.new_security=Security
  843. projects.sorting.new_maintainability=Maintainability
  844. projects.sorting.new_coverage=Coverage
  845. projects.sorting.new_duplications=Duplications
  846. projects.sorting.new_lines=New Lines
  847. projects.view.overall=Overall Status
  848. projects.view.new_code=New Code
  849. projects.worse_of_reliablity_and_security=Worse of Reliability and Security
  850. projects.visualization.risk=Risk
  851. 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.
  852. projects.visualization.reliability=Reliability
  853. 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.
  854. projects.visualization.security=Security
  855. 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.
  856. projects.visualization.maintainability=Maintainability
  857. 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.
  858. projects.visualization.coverage=Coverage
  859. 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.
  860. projects.visualization.duplications=Duplications
  861. 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.
  862. projects.limited_set_of_projects=Displayed project set limited to the top {0} projects based on current sort: {1}.
  863. projects.facets.quality_gate=Quality Gate
  864. projects.facets.quality_gate.warning_help=Warning status is deprecated. This filter will disappear when no Warning Quality Gate remains.
  865. projects.facets.languages=Languages
  866. projects.facets.new_lines=New Lines
  867. projects.facets.tags=Tags
  868. projects.sort.disabled=Disabled because sorting cannot affect the displayed result with the current project selection.
  869. projects.sort.analysis_date=by last analysis date (oldest first)
  870. projects.sort.-analysis_date=by last analysis date (latest first)
  871. projects.sort.name=by name
  872. projects.sort.-name=by name
  873. projects.sort.reliability=by reliability (best first)
  874. projects.sort.-reliability=by reliability (worst first)
  875. projects.sort.security=by security (best first)
  876. projects.sort.-security=by security (worst first)
  877. projects.sort.maintainability=by maintainability (best first)
  878. projects.sort.-maintainability=by maintainability (worst first)
  879. projects.sort.coverage=by coverage (best first)
  880. projects.sort.-coverage=by coverage (worst first)
  881. projects.sort.duplications=by duplications (best first)
  882. projects.sort.-duplications=by duplications (worst first)
  883. projects.sort.size=by size (smallest first)
  884. projects.sort.-size=by size (biggest first)
  885. projects.security_hotspots_reviewed=Hotspots Reviewed
  886. #------------------------------------------------------------------------------
  887. #
  888. # DASHBOARD
  889. #
  890. #------------------------------------------------------------------------------
  891. dashboard.project_not_found=The requested project does not exist.
  892. dashboard.project_not_found.2=Either it has never been analyzed successfully or it has been deleted.
  893. #------------------------------------------------------------------------------
  894. #
  895. # SETTINGS
  896. #
  897. #------------------------------------------------------------------------------
  898. settings.key_x=Key: {0}
  899. settings.default_x=Default: {0}
  900. settings.not_set=(not set)
  901. settings.state.saving=Saving...
  902. settings.state.saved=Saved!
  903. settings.state.validation_failed=Validation failed. {0}
  904. settings.state.value_cant_be_empty=Provide a value or use "Reset" to set the value to the default one.
  905. settings.state.value_cant_be_empty_no_default=Provide a value.
  906. settings._default=(default)
  907. settings.boolean.true=True
  908. settings.boolean.false=False
  909. settings.default.no_value=<no value>
  910. settings.default.complex_value=<complex value>
  911. settings.default.password=<password>
  912. settings.reset_confirm.title=Reset Setting
  913. settings.reset_confirm.description=Are you sure that you want to reset this setting?
  914. settings.analysis_scope.wildcards.introduction=You can use the following wildcards.
  915. settings.analysis_scope.wildcards.zero_more_char=Match zero or more characters
  916. settings.analysis_scope.wildcards.zero_more_dir=Match zero or more directories
  917. settings.analysis_scope.wildcards.single_char=Match a single character
  918. settings.new_code_period.category=New Code Period
  919. settings.new_code_period.title=Default New Code Period behavior
  920. settings.new_code_period.description=The New Code Period is the period used to compare measures and track new issues. {link}
  921. settings.new_code_period.description2=This setting is the default for all projects. A specific New Code Period setting can be configured at project level.
  922. settings.languages.select_a_language_placeholder=Select a language
  923. settings.almintegration.title=Integration configurations
  924. 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.
  925. settings.almintegration.manage_instances=Manage instances
  926. settings.almintegration.azure.info=Accounts that will be used to decorate Pull Requests need Code: Read & Write permission. {link}
  927. 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}
  928. 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}
  929. 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.
  930. settings.almintegration.bitbucket.help_2=The account used for integration needs write permission.
  931. settings.almintegration.bitbucket.help_3=We recommend to integrate with SonarQube using a Bitbucket Server Service Account.
  932. settings.almintegration.table.title=ALM integration configurations
  933. settings.almintegration.table.empty.azure=Create your first Azure DevOps configuration to enable Pull Request Decoration on your projects.
  934. settings.almintegration.table.empty.bitbucket=Create your first Bitbucket configuration to enable Pull Request Decoration on your projects.
  935. settings.almintegration.table.empty.github=Create your first GitHub configuration to enable Pull Request Decoration on your organization or repository.
  936. settings.almintegration.table.empty.gitlab=Create your first GitLab configuration to enable Merge Request Decoration on your repository.
  937. settings.almintegration.table.create=Create configuration
  938. settings.almintegration.table.column.name=Name
  939. settings.almintegration.table.column.bitbucket.url=Bitbucket Server URL
  940. settings.almintegration.table.column.github.url=GitHub Enterprise or GitHub.com URL
  941. settings.almintegration.table.column.gitlab.url=GitLab Self-Managed or GitLab.com URL
  942. settings.almintegration.table.column.app_id=App ID
  943. settings.almintegration.table.column.edit=Edit
  944. settings.almintegration.table.column.delete=Delete
  945. settings.almintegration.delete.header=Delete configuration
  946. settings.almintegration.delete.message=Are you sure you want to delete the {id} configuration?
  947. settings.almintegration.delete.info={0} projects will no longer get Pull Request Decorations.
  948. settings.almintegration.delete.no_info=An unknown number of projects will no longer get Pull Request Decorations.
  949. settings.almintegration.form.header.create=Create a configuration
  950. settings.almintegration.form.header.edit=Edit the configuration
  951. settings.almintegration.form.name.azure=Configuration name
  952. 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.
  953. settings.almintegration.form.name.bitbucket=Configuration name
  954. 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.
  955. settings.almintegration.form.name.github=Configuration name
  956. 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.
  957. settings.almintegration.form.name.gitlab=Configuration name
  958. 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.
  959. settings.almintegration.form.url.bitbucket=Bitbucket Server URL
  960. settings.almintegration.form.url.bitbucket.help=Example: {example}
  961. settings.almintegration.form.url.github=GitHub URL
  962. settings.almintegration.form.url.github.help1=Example for Github Enterprise:
  963. settings.almintegration.form.url.github.help2=If using GitHub.com:
  964. settings.almintegration.form.url.gitlab=GitLab URL
  965. settings.almintegration.form.url.gitlab.help1=You do not have to provide this value if you're using GitLab CI.
  966. settings.almintegration.form.url.gitlab.help2=If you're using another CI, provide the GitLab API URL. For example:
  967. settings.almintegration.form.app_id=GitHub App ID
  968. settings.almintegration.form.private_key=Private Key
  969. settings.almintegration.form.personal_access_token=Personal Access token
  970. 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)".
  971. 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.
  972. settings.almintegration.form.save=Save configuration
  973. settings.almintegration.form.cancel=Cancel
  974. settings.almintegration.features=ALM integration features
  975. settings.almintegration.feature.enabled=This feature is enabled
  976. settings.almintegration.feature.disabled=This feature is currently disabled
  977. settings.almintegration.feature.need_at_least_1_binding=You need to have at least 1 binding configured to use this feature
  978. settings.almintegration.feature.pr_decoration.title=Pull Request Decoration
  979. settings.almintegration.feature.pr_decoration.description=Add analysis and a Quality Gate to your Pull Requests directly in your ALM provider's interface.
  980. settings.almintegration.feature.mr_decoration.title=Merge Request Decoration
  981. settings.almintegration.feature.mr_decoration.description=Add analysis and a Quality Gate to your Merge Requests directly in your ALM provider's interface.
  982. settings.almintegration.feature.alm_repo_import.title=Import repositories from your ALM
  983. settings.almintegration.feature.alm_repo_import.description=Select repositories from your ALM, and import them into SonarQube.
  984. settings.almintegration.feature.alm_repo_import.disabled_if_multiple_bbs_instances=Connecting to multiple Bitbucket Server instances will deactivate the {feature} feature. Projects will have to be set up manually.
  985. settings.pr_decoration.binding.category=Pull Request Decoration
  986. settings.pr_decoration.binding.no_bindings=This feature must first be enabled in the global settings. {link}
  987. settings.pr_decoration.binding.title=Pull Request Decoration
  988. settings.pr_decoration.binding.description=Enable Pull Request Decoration for this project.
  989. settings.pr_decoration.binding.form.url=Project location
  990. settings.pr_decoration.binding.form.name=Configuration name
  991. settings.pr_decoration.binding.form.github.repository=Repository identifier
  992. settings.pr_decoration.binding.form.github.repository.help=The path of your repository URL. Example: {example}
  993. settings.pr_decoration.binding.form.github.summary_comment_setting=Enable analysis summary under the GitHub Conversation tab
  994. settings.pr_decoration.binding.form.github.summary_comment_setting.help=When enabled, Pull Request analysis summary is displayed under the GitHub Conversation tab. Notifications may be sent by GitHub depending on your settings.
  995. settings.pr_decoration.binding.form.bitbucket.repository=Project Key
  996. settings.pr_decoration.binding.form.bitbucket.repository.help=The project key is part of your Bitbucket Server repository URL. Example: ({example})
  997. settings.pr_decoration.binding.form.bitbucket.slug=Repository SLUG
  998. settings.pr_decoration.binding.form.bitbucket.slug.help=The Repository Slug is part of your Bitbucket Server repository URL. Example: ({example})
  999. settings.pr_decoration.binding.form.gitlab.repository=Project ID
  1000. settings.pr_decoration.binding.form.gitlab.repository.help=If you are using GitLab CI, you do not have to provide this value. For any other CI, provide the project's numerical ID.
  1001. property.category.general=General
  1002. property.category.general.email=Email
  1003. property.category.general.duplications=Duplications
  1004. property.category.general.differentialViews=New Code
  1005. property.category.general.localization=Localization
  1006. property.category.general.databaseCleaner=Database Cleaner
  1007. property.category.general.looknfeel=Look & Feel
  1008. property.category.general.issues=Issues
  1009. property.category.general.subProjects=Sub-projects
  1010. property.category.almintegration=ALM Integrations
  1011. property.category.almintegration.github=GitHub Authentication
  1012. 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>
  1013. property.category.almintegration.gitlab=GitLab Authentication
  1014. property.category.almintegration.gitlab.description=In order to enable GitLab authentication, the property 'sonar.core.serverBaseURL' must be set to the public URL
  1015. property.category.organizations=Organizations
  1016. property.category.security=Security
  1017. property.category.security.encryption=Encryption
  1018. property.category.security.saml=SAML
  1019. property.category.security.saml.description=In order to enable SAML authentication, the property 'sonar.core.serverBaseURL' must be set to the public URL
  1020. property.category.java=Java
  1021. property.category.differentialViews=New Code
  1022. property.category.codeCoverage=Code Coverage
  1023. property.category.duplications=Duplications
  1024. property.category.localization=Localization
  1025. property.category.exclusions=Analysis Scope
  1026. property.category.webhooks=Webhooks
  1027. property.category.languages=Languages
  1028. property.sonar.inclusions.name=Source File Inclusions
  1029. property.sonar.inclusions.description=Patterns used to include some source files and only these ones in analysis.
  1030. property.sonar.test.inclusions.name=Test File Inclusions
  1031. property.sonar.test.inclusions.description=Patterns used to include some test files and only these ones in analysis.
  1032. property.sonar.exclusions.name=Source File Exclusions
  1033. property.sonar.exclusions.description=Patterns used to exclude some source files from analysis.
  1034. property.sonar.test.exclusions.name=Test File Exclusions
  1035. property.sonar.test.exclusions.description=Patterns used to exclude some test files from analysis.
  1036. property.sonar.global.exclusions.name=Global Source File Exclusions
  1037. property.sonar.global.exclusions.description=Patterns used to exclude some source files from analysis. They apply to every project and cannot be overridden.
  1038. property.sonar.global.test.exclusions.name=Global Test File Exclusions
  1039. property.sonar.global.test.exclusions.description=Patterns used to exclude some test files from analysis. They apply to every project and cannot be overridden.
  1040. property.category.exclusions.files=Files
  1041. property.category.exclusions.files.description=Configure the files that should be completely ignored by the analysis.
  1042. property.sonar.skippedModules.name=Module Exclusions
  1043. property.sonar.skippedModules.description=This property is deprecated since version 4.3 and should not be used anymore.
  1044. property.sonar.includedModules.name=Module Inclusions
  1045. property.sonar.includedModules.description=This property is deprecated since version 4.3 and should not be used anymore.
  1046. property.category.exclusions.issues=Issues
  1047. property.category.exclusions.issues.description=Configure the conditions under which issues should not be reported.
  1048. property.category.exclusions.duplications=Duplications
  1049. property.category.exclusions.duplications.description=Configure the files that should be ignored by duplication detection.
  1050. property.category.exclusions.coverage=Code Coverage
  1051. property.category.exclusions.coverage.description=Configure the files that should be ignored by code coverage calculations.
  1052. property.sonar.coverage.exclusions.name=Coverage Exclusions
  1053. property.sonar.coverage.exclusions.description=Patterns used to exclude some files from coverage report.
  1054. property.category.technicalDebt=Technical Debt
  1055. property.error.notBoolean=Valid options are "true" and "false"
  1056. property.error.notInteger=Only digits are allowed
  1057. property.error.notFloat=Not a floating point number
  1058. property.error.notRegexp=Regular expression must be valid
  1059. property.error.notInOptions=Not a valid option
  1060. property.category.scm=SCM
  1061. property.category.housekeeping=Housekeeping
  1062. property.category.housekeeping.general=General
  1063. property.category.housekeeping.branchesAndPullRequests=Branches and Pull Requests
  1064. #------------------------------------------------------------------------------
  1065. #
  1066. # SEARCH ENGINE FOR RESOURCES
  1067. #
  1068. #------------------------------------------------------------------------------
  1069. search.shortcut_hint=Hint: Press {shortcut} from anywhere to open this search bar.
  1070. search.show_more.hint=Press {key} to display
  1071. search.placeholder=Search for projects and files...
  1072. search.search_for_projects=Search for projects...
  1073. search.search_for_members=Search for members...
  1074. search.search_for_users=Search for users...
  1075. search.search_for_users_or_groups=Search for users or groups...
  1076. search.search_by_login_or_name=Search by login or name...
  1077. search.search_by_name=Search by name...
  1078. search.search_by_name_or_key=Search by name or key...
  1079. search.search_for_tags=Search for tags...
  1080. search.search_for_repositories=Search for repositories...
  1081. search.search_for_rules=Search for rules...
  1082. search.search_for_languages=Search for languages...
  1083. search.search_for_cwe=Search for CWEs...
  1084. search.search_for_authors=Search for authors...
  1085. search.search_for_directories=Search for directories...
  1086. search.search_for_files=Search for files...
  1087. search.search_for_modules=Search for modules...
  1088. search.search_for_metrics=Search for metrics...
  1089. #------------------------------------------------------------------------------
  1090. #
  1091. # GLOBAL HELP
  1092. #
  1093. #------------------------------------------------------------------------------
  1094. help.section.links=Links
  1095. help.section.shortcuts=Shortcuts
  1096. help.section.tutorials=Tutorials
  1097. shortcuts.section.global=Global
  1098. shortcuts.section.global.search=quickly open search bar
  1099. shortcuts.section.global.shortcuts=open this window
  1100. shortcuts.section.global.facets.multiselection=Ctrl + click to add to selection
  1101. shortcuts.section.global.facets.multiselection.mac=\u2318 + click to add to selection
  1102. shortcuts.section.issues=Issues Page
  1103. shortcuts.section.issues.navigate_between_issues=navigate between issues
  1104. shortcuts.section.issues.open_details=go from the list of issues to the source code
  1105. shortcuts.section.issues.return_to_list=return back to the list
  1106. shortcuts.section.issue.do_transition=do an issue transition
  1107. shortcuts.section.issue.assign=assign issue
  1108. shortcuts.section.issue.assign_to_me=assign issue to the current user
  1109. shortcuts.section.issue.change_severity=change severity of issue
  1110. shortcuts.section.issue.comment=comment issue
  1111. shortcuts.section.issue.submit_comment=submit comment
  1112. shortcuts.section.issue.change_tags=change tags of issue
  1113. shortcuts.section.rules=Rules Page
  1114. shortcuts.section.rules.navigate_between_rules=navigate between rules
  1115. shortcuts.section.rules.open_details=go from the list of rules to the rule details
  1116. shortcuts.section.rules.return_to_list=return back to the list
  1117. shortcuts.section.rules.activate=activate selected rule
  1118. shortcuts.section.rules.deactivate=deactivate selected rule
  1119. tutorials.onboarding=Analyze a new project
  1120. tutorials.skip=Skip this tutorial
  1121. tutorials.finish=Finish this tutorial
  1122. tutorials.find_tutorial_back_in_help=Find this tutorial back anytime in the Help section
  1123. tutorials.find_tutorial_back_in_plus=Find this tutorial back anytime in the "+" menu
  1124. #------------------------------------------------------------------------------
  1125. #
  1126. # SELECT2.js
  1127. #
  1128. #------------------------------------------------------------------------------
  1129. select2.noMatches=No matches
  1130. select2.searching=Searching...
  1131. select2.tooShort=Please enter at least {0} characters
  1132. #------------------------------------------------------------------------------
  1133. #
  1134. # DUPLICATION VIEWER
  1135. #
  1136. #------------------------------------------------------------------------------
  1137. 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.
  1138. #------------------------------------------------------------------------------
  1139. #
  1140. # GENERIC CODE VIEWER
  1141. #
  1142. #------------------------------------------------------------------------------
  1143. code_viewer.no_source_code_displayed_due_to_security=Due to security settings, no source code can be displayed.
  1144. code_viewer.no_source_code_displayed_due_to_source_removed=The file was removed, no source code can be displayed.
  1145. #------------------------------------------------------------------------------
  1146. #
  1147. # CUSTOM MEASURES
  1148. #
  1149. #------------------------------------------------------------------------------
  1150. custom_measures.page=Custom Measures
  1151. 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.
  1152. custom_measures.deprecated=Custom measures are deprecated and will be removed soon.
  1153. custom_measures.pending=Pending
  1154. custom_measures.pending_tooltip=The value will be integrated to project during next analysis.
  1155. custom_measures.all_metrics_taken=There are already measures on all available custom metrics.
  1156. custom_measures.delete_custom_measure=Delete Custom Measure
  1157. custom_measures.delete_custom_measure.confirmation=Are you sure you want to delete custom measure "{0}"?
  1158. custom_measures.create_custom_measure=Create Custom Measure
  1159. custom_measures.update_custom_measure=Update Custom Measure
  1160. custom_measures.metric=Metric
  1161. #------------------------------------------------------------------------------
  1162. #
  1163. # PROJECT ACTIVITY/HISTORY SERVICE
  1164. #
  1165. #------------------------------------------------------------------------------
  1166. project_activity.analysis=Analysis
  1167. project_activity.analysis_build_string_X=Build string: {0}
  1168. project_activity.add_version=Create Version
  1169. project_activity.analyzed.TRK=Project Analyzed
  1170. project_activity.analyzed.APP=Application Analyzed
  1171. project_activity.remove_version=Remove Version
  1172. project_activity.remove_version.question=Are you sure you want to delete this version?
  1173. project_activity.change_version=Change Version
  1174. project_activity.add_custom_event=Create Custom Event
  1175. project_activity.change_custom_event=Change Event
  1176. project_activity.remove_custom_event=Delete Event
  1177. project_activity.remove_custom_event.question=Are you sure you want to delete this event?
  1178. project_activity.reset_dates=Reset dates
  1179. project_activity.delete_analysis=Delete Analysis
  1180. project_activity.delete_analysis.question=Are you sure you want to delete this analysis from the history?
  1181. project_activity.filter_events=Filter events
  1182. project_activity.events.tooltip.edit=Edit this event
  1183. project_activity.events.tooltip.delete=Delete this event
  1184. project_activity.new_code_period_start=New Code Period starts here
  1185. project_activity.new_code_period_start.help=The analysis before this mark is the baseline for New Code comparison
  1186. project_activity.graphs.issues=Issues
  1187. project_activity.graphs.coverage=Coverage
  1188. project_activity.graphs.duplications=Duplications
  1189. project_activity.graphs.custom=Custom
  1190. project_activity.graphs.custom.add=Add metric
  1191. project_activity.graphs.custom.add_metric=Add a metric
  1192. 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.
  1193. project_activity.graphs.custom.no_history=There isn't enough data to generate an activity graph, please select more metrics.
  1194. project_activity.graphs.custom.metric_no_history=This metric has no historical data to display.
  1195. project_activity.graphs.custom.search=Search for a metric by name
  1196. project_activity.graphs.custom.type_x_message=Only "{0}" metrics are available with your current selection.
  1197. project_activity.custom_metric.covered_lines=Covered Lines
  1198. #------------------------------------------------------------------------------
  1199. #
  1200. # PROJECT "UPDATE KEY" PAGE
  1201. #
  1202. #------------------------------------------------------------------------------
  1203. update_key.old_key=Old Key
  1204. update_key.new_key=New Key
  1205. update_key.are_you_sure_to_change_key=Are you sure you want to change key of "{0}"?
  1206. #------------------------------------------------------------------------------
  1207. #
  1208. # PROJECT QUALITY PROFILE PAGE
  1209. #
  1210. #------------------------------------------------------------------------------
  1211. project_quality_profile.default_profile=Default
  1212. project_quality_profile.successfully_updated={0} quality profile has been successfully updated.
  1213. #------------------------------------------------------------------------------
  1214. #
  1215. # PROJECT QUALITY GATE PAGE
  1216. #
  1217. #------------------------------------------------------------------------------
  1218. project_quality_gate.default_qgate=Default
  1219. project_quality_gate.successfully_updated=Quality Gate has been successfully updated.
  1220. #------------------------------------------------------------------------------
  1221. #
  1222. # PROJECT (RESOURCE) DELETION PAGE
  1223. #
  1224. #------------------------------------------------------------------------------
  1225. project_deletion.delete_resource_confirmation=Are you sure you want to delete "{0}"?
  1226. project_deletion.resource_deleted=Project "{0}" has been successfully deleted.
  1227. projects_management.delete_resource_confirmation=Are you sure you want to delete "{0}"?
  1228. projects_management.delete_selected_warning=You're about to delete {0} selected items.
  1229. projects_management.delete_all_warning=You're about to delete all {0} items.
  1230. projects_management.project_has_been_successfully_created=Project {project} has been successfully created.
  1231. #------------------------------------------------------------------------------
  1232. #
  1233. # PROJECT INFORMATION DRAWER
  1234. #
  1235. #------------------------------------------------------------------------------
  1236. project.info.title=Project information
  1237. application.info.title=Application information
  1238. project.info.description=Description
  1239. project.info.quality_gate=Quality Gate used
  1240. project.info.to_notifications=Set notifications
  1241. project.info.notifications=Set notifications
  1242. #------------------------------------------------------------------------------
  1243. #
  1244. # QUALITY PROFILES
  1245. #
  1246. #------------------------------------------------------------------------------
  1247. quality_profiles.new_profile=New Profile
  1248. quality_profiles.compare_with=Compare with
  1249. quality_profiles.filter_by=Filter profiles by
  1250. quality_profiles.restore_profile=Restore Profile
  1251. quality_profiles.restore_profile.success={1} rule(s) restored in profile "{0}"
  1252. quality_profiles.restore_profile.warning={1} rule(s) restored, {2} rule(s) ignored in profile "{0}"
  1253. quality_profiles.optional_configuration_file=Optional configuration file
  1254. quality_profiles.new_name=New name
  1255. quality_profiles.no_languages_available=There are no languages available. You cannot create a new profile.
  1256. quality_profiles.delete_confirm_title=Delete Profile
  1257. quality_profiles.are_you_sure_want_delete_profile_x=Are you sure that you want to delete the profile "{0}"?
  1258. 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?
  1259. quality_profiles.this_profile_has_descendants=This profile has descendants.
  1260. quality_profiles.profile_inheritance=Inheritance
  1261. quality_profiles.no_projects_associated_to_profile=No projects are explicitly associated to the profile.
  1262. quality_profiles.parent=Parent:
  1263. quality_profiles.parameter_set_to=Parameter {0} set to {1}
  1264. quality_profiles.x_rules_only_in={0} rules only in
  1265. quality_profiles.x_rules_have_different_configuration={0} rules have a different configuration
  1266. quality_profiles.copy_x_title=Copy Profile "{0}" - {1}
  1267. quality_profiles.extend_x_title=Extend Profile "{0}" - {1}
  1268. quality_profiles.copy_new_name=New name
  1269. quality_profiles.rename_x_title=Rename Profile {0} - {1}
  1270. quality_profiles.deprecated=deprecated
  1271. quality_profiles.severity_set_to=Severity set to
  1272. quality_profiles.changelog.ACTIVATED=Activated
  1273. quality_profiles.changelog.DEACTIVATED=Deactivated
  1274. quality_profiles.changelog.UPDATED=Updated
  1275. quality_profiles.changelog.parameter_reset_to_default_value=Parameter {0} reset to default value
  1276. quality_profiles.deleted_profile=The profile {0} doesn't exist anymore
  1277. quality_profiles.projects_for_default=Every project not specifically associated with a quality profile will be associated to this one by default.
  1278. quality_profile.x_rules={0} rule(s)
  1279. quality_profile.x_active_rules={0} active rules
  1280. quality_profiles.x_overridden_rules={0} overridden rules
  1281. quality_profiles.change_parent=Change Parent
  1282. quality_profiles.all_profiles=All Profiles
  1283. quality_profiles.x_profiles={0} profile(s)
  1284. quality_profiles.x_Profiles={0} Profiles
  1285. quality_profiles.projects.select_hint=Click to associate this project with the quality profile
  1286. quality_profiles.projects.deselect_hint=Click to remove association between this project and the quality profile
  1287. quality_profile.empty_comparison=The quality profiles are equal.
  1288. quality_profiles.activate_more=Activate More
  1289. quality_profiles.activate_more_rules=Activate More Rules
  1290. quality_profiles.intro1=Quality Profiles are collections of rules to apply during an analysis.
  1291. 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.
  1292. quality_profiles.list.projects=Projects
  1293. quality_profiles.list.rules=Rules
  1294. quality_profiles.list.updated=Updated
  1295. quality_profiles.list.used=Used
  1296. quality_profiles.x_updated_on_y={0}, updated on {1}
  1297. quality_profiles.change_projects=Change Projects
  1298. quality_profiles.not_found=The requested quality profile was not found.
  1299. quality_profiles.latest_new_rules=Recently Added Rules
  1300. quality_profiles.latest_new_rules.activated={0}, activated on {1} profile(s)
  1301. quality_profiles.latest_new_rules.not_activated={0}, not yet activated
  1302. quality_profiles.deprecated_rules=Deprecated Rules
  1303. quality_profiles.deprecated_rules_description=These deprecated rules will eventually disappear. You should proactively investigate replacing them.
  1304. quality_profiles.deprecated_rules_are_still_activated=Deprecated rules are still activated on {0} quality profile(s):
  1305. quality_profiles.sonarway_missing_rules=Sonar way rules not included
  1306. quality_profiles.sonarway_missing_rules_description=Recommended rules are missing from your profile
  1307. quality_profiles.stagnant_profiles=Stagnant Profiles
  1308. quality_profiles.not_updated_more_than_year=The following profiles haven't been updated for more than 1 year:
  1309. quality_profiles.exporters=Exporters
  1310. quality_profiles.updated_=Updated:
  1311. quality_profiles.used_=Used:
  1312. quality_profiles.built_in=Built-in
  1313. quality_profiles.built_in.description.1=This quality profile is provided by a plugin.
  1314. quality_profiles.built_in.description.2=It will automatically be updated when a new version of the supplying plugin changes its definition.
  1315. quality_profiles.extends_built_in=Because it inherits from a built-in quality profile, this quality profile can be automatically updated when a new version of the corresponding plugin is deployed.
  1316. quality_profiles.default_permissions=Users with the global "Manage Quality Profile" permission can manage this quality profile.
  1317. quality_profiles.grant_permissions_to_more_users=Grant permissions to more users
  1318. quality_profiles.grant_permissions_to_user_or_group=Grant permissions to a user or a group
  1319. quality_profiles.additional_user_groups=Additional users / groups:
  1320. quality_profiles.search_description=Search users by login or name, and groups by name:
  1321. #------------------------------------------------------------------------------
  1322. #
  1323. # QUALITY GATES
  1324. #
  1325. #------------------------------------------------------------------------------
  1326. quality_gates.create=Create Quality Gate
  1327. quality_gates.rename=Rename Quality Gate
  1328. quality_gates.delete=Delete Quality Gate
  1329. quality_gates.copy=Copy Quality Gate
  1330. quality_gates.conditions=Conditions
  1331. quality_gates.projects=Projects
  1332. quality_gates.add_condition=Add Condition
  1333. quality_gates.condition_added=Successfully added condition.
  1334. quality_gates.update_condition=Update Condition
  1335. quality_gates.condition_updated=Successfully updated condition.
  1336. quality_gates.no_conditions=No Conditions
  1337. quality_gates.health_icons=Project health icons represent:
  1338. quality_gates.projects_for_default=Every project not specifically associated to a quality gate will be associated to this one by default.
  1339. quality_gates.projects.with=With
  1340. quality_gates.projects.without=Without
  1341. quality_gates.projects.all=All
  1342. quality_gates.projects.noResults=No Projects
  1343. quality_gates.projects.select_hint=Click to associate this project with the quality gate
  1344. quality_gates.projects.deselect_hint=Click to remove association between this project and the quality gate
  1345. quality_gates.operator.LT=is less than
  1346. quality_gates.operator.GT=is greater than
  1347. quality_gates.operator.EQ=equals
  1348. quality_gates.operator.NE=is not
  1349. quality_gates.operator.LT.short=<
  1350. quality_gates.operator.GT.short=>
  1351. quality_gates.operator.EQ.short==
  1352. quality_gates.operator.NE.short=\u2260
  1353. quality_gates.operator.LT.rating=is better than
  1354. quality_gates.operator.GT.rating=is worse than
  1355. quality_gates.operator.EQ.rating=is
  1356. quality_gates.operator.NE.rating=is not
  1357. quality_gates.delete.confirm.message=Are you sure you want to delete the "{0}" quality gate?
  1358. quality_gates.delete.confirm.default=Are you sure you want to delete the "{0}" quality gate, which is the default quality gate?
  1359. quality_gates.delete_condition=Delete Condition
  1360. quality_gates.condition_deleted=Successfully deleted condition
  1361. quality_gates.delete_condition.confirm.message=Are you sure you want to delete the "{0}" condition?
  1362. quality_gates.conditions.fails_when=Quality Gate fails when
  1363. quality_gates.conditions.metric=Metric
  1364. quality_gates.conditions.new_code=On New Code
  1365. quality_gates.conditions.new_code.long=Conditions on New Code
  1366. quality_gates.conditions.new_code.description=Conditions on New Code apply to all branches and to Pull Requests.
  1367. quality_gates.conditions.overall_code=On Overall Code
  1368. quality_gates.conditions.overall_code.long=Conditions on Overall Code
  1369. quality_gates.conditions.overall_code.description=Conditions on Overall Code apply to branches only.
  1370. quality_gates.conditions.operator=Operator
  1371. quality_gates.conditions.warning=Warning
  1372. quality_gates.conditions.warning.tooltip=Warning status is deprecated and will disappear with the next update of the Quality Gate.
  1373. quality_gates.conditions.value=Value
  1374. quality_gates.duplicated_conditions=This quality gate has duplicated conditions:
  1375. quality_gates.intro.1=Quality Gate is the set of conditions the project must meet before it can be released into production.
  1376. 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.
  1377. quality_gates.built_in=Built-in
  1378. quality_gates.built_in.description.1=This quality gate is provided by default.
  1379. quality_gates.built_in.description.2=It will automatically be updated with the latest recommendations.
  1380. quality_gates.status=Quality Gate status
  1381. #------------------------------------------------------------------------------
  1382. #
  1383. # RULES DOCUMENTATION PAGE
  1384. #
  1385. #------------------------------------------------------------------------------
  1386. rules.parameters=Parameters
  1387. rules.status.beta=Beta
  1388. rules.status.BETA=Beta
  1389. rules.status.deprecated=Deprecated
  1390. rules.status.DEPRECATED=Deprecated
  1391. rules.status.ready=Ready
  1392. rules.status.READY=Ready
  1393. rules.status.REMOVED=Removed
  1394. #------------------------------------------------------------------------------
  1395. #
  1396. # CODING RULES
  1397. #
  1398. #------------------------------------------------------------------------------
  1399. coding_rules.active_in_all_profiles=The rule is already activated on all available quality profiles.
  1400. coding_rules.activate=Activate
  1401. coding_rules.activate_in=Activate In
  1402. coding_rules.activate_in_quality_profile=Activate In Quality Profile
  1403. coding_rules.activation_severity=Activation Severity
  1404. coding_rules.available_since=Available Since
  1405. coding_rules.bulk_change=Bulk Change
  1406. coding_rules.bulk_change.success={2} rule(s) changed in profile {0} - {1}
  1407. coding_rules.bulk_change.warning={2} rule(s) changed, {3} rule(s) ignored in profile {0} - {1}
  1408. 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.
  1409. coding_rules.can_not_deactivate=This rule is inherited and can not be deactivated.
  1410. coding_rules.change_details=Change Details of Quality Profile
  1411. coding_rules.create=Create
  1412. coding_rules.create_custom_rule=Create Custom Rule
  1413. coding_rules.custom_rule=Custom Rule
  1414. coding_rules.custom_rule.activation_notice=Note: parameters of a custom rule are not customizable on rule activation, only during creation/edit.
  1415. coding_rules.custom_rules=Custom Rules
  1416. coding_rules.deactivate_in_quality_profile=Deactivate In Quality Profile
  1417. coding_rules.delete_rule=Delete Rule
  1418. coding_rules.delete.custom.confirm=Are you sure you want to delete custom rule "{0}"?
  1419. coding_rules.extend_description=Extend Description
  1420. coding_rules.deactivate_in=Deactivate In
  1421. coding_rules.deactivate=Deactivate
  1422. coding_rules.deactivate.confirm=Are you sure you want to deactivate this rule in the profile?
  1423. coding_rules.deactivate_in_all_quality_profiles=Deactivate In All {0} Profiles
  1424. coding_rules.inherits="{0}" inherits from "{1}"
  1425. coding_rules.issues=Issues
  1426. coding_rules.issues.only_main_branches=Only issues from the main project branches are included.
  1427. coding_rules.most_violating_projects=Most Violating Projects
  1428. coding_rules.need_extend_or_copy=Rules in built-in Quality Profiles can't be deactivated. You can create a customizable Quality Profile based on a built-in one by Copying or Extending it in the Quality Profiles list.
  1429. coding_rules.no_results=No Coding Rules
  1430. coding_rules.no_tags=No tags
  1431. coding_rules.original=Original:
  1432. coding_rules.overrides="{0}" overrides "{1}"
  1433. coding_rules.parameter.empty=(empty)
  1434. coding_rules.parameters=Parameters
  1435. coding_rules.parameters.default_value=Default Value:
  1436. coding_rules.quality_profiles=Quality Profiles
  1437. 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.
  1438. coding_rules.quality_profile=Quality Profile
  1439. coding_rules.reactivate=Reactivate
  1440. 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.
  1441. coding_rules.return_to_list=Return to list
  1442. coding_rules.see_all=See all rules
  1443. coding_rules.remove_extended_description=Remove Extended Description
  1444. coding_rules.remove_extended_description.confirm=Are you sure you want to remove the extended description?
  1445. coding_rules.repository_language=Rule repository (language)
  1446. coding_rules.revert_to_parent_definition=Revert to Parent Definition
  1447. coding_rules.revert_to_parent_definition.confirm=This rule will be reverted to the parameters defined in profile {0}. Are you sure?
  1448. coding_rules.rule_template=Rule Template
  1449. coding_rules.rule_template.title=This rule can be used as a template to create custom rules, it cannot be activated on a profile
  1450. coding_rules._rules=rules
  1451. coding_rules.show_template=Show Template
  1452. coding_rules.skip_to_filters=Skip to rules filters
  1453. coding_rules.to_select_rules=to select rules
  1454. coding_rules.type.tooltip.CODE_SMELL=Code Smell Detection Rule
  1455. coding_rules.type.tooltip.BUG=Bug Detection Rule
  1456. coding_rules.type.tooltip.VULNERABILITY=Vulnerability Detection Rule
  1457. coding_rules.type.tooltip.SECURITY_HOTSPOT=Security Hotspot Detection Rule
  1458. coding_rules.update_custom_rule=Update Custom Rule
  1459. coding_rules.filter_similar_rules=Filter Similar Rules
  1460. coding_rules.filters.activation=Activation
  1461. coding_rules.filters.activation.active=Active
  1462. coding_rules.filters.activation.inactive=Inactive
  1463. coding_rules.filters.activation.help=Activation criterion is available when a quality profile is selected
  1464. coding_rules.filters.active_severity=Active Severity
  1465. coding_rules.filters.active_severity.inactive=Active severity criterion is available when a quality profile is selected
  1466. coding_rules.filters.availableSince=Available Since
  1467. coding_rules.filters.characteristic=Characteristic
  1468. coding_rules.filters.description=Description
  1469. coding_rules.filters.quality_profile=Quality Profile
  1470. coding_rules.filters.inheritance=Inheritance
  1471. coding_rules.filters.inheritance.inactive=Inheritance criterion is available when an inherited quality profile is selected
  1472. coding_rules.filters.inheritance.none=Not Inherited
  1473. coding_rules.filters.inheritance.inherited=Inherited
  1474. coding_rules.filters.inheritance.x_inherited_from_y={0} inherited from "{1}"
  1475. coding_rules.filters.inheritance.overrides=Overridden
  1476. coding_rules.filters.key=Key
  1477. coding_rules.filters.language=Language
  1478. coding_rules.filters.language.inactive=Language criterion is only available when no quality profile is selected
  1479. coding_rules.filters.name=Name
  1480. coding_rules.filters.repository=Repository
  1481. coding_rules.filters.severity=Severity
  1482. coding_rules.filters.status=Status
  1483. coding_rules.filters.tag=Tag
  1484. coding_rules.filters.template=Templates
  1485. coding_rules.filters.template.is_template=Show Templates Only
  1486. coding_rules.filters.template.is_not_template=Hide Templates
  1487. coding_rules.facet.languages=Language
  1488. coding_rules.facet.repositories=Repository
  1489. coding_rules.facet.tags=Tag
  1490. coding_rules.facet.qprofile=Quality Profile
  1491. coding_rules.facet.debt_characteristics=Characteristic
  1492. coding_rules.facet.severities=Default Severity
  1493. coding_rules.facet.statuses=Status
  1494. coding_rules.facet.available_since=Available Since
  1495. coding_rules.facet.inheritance=Inheritance
  1496. coding_rules.facet.activationSeverities=Activation Severity
  1497. coding_rules.facet.template=Template
  1498. coding_rules.facet.rule_key=Rule
  1499. coding_rules.facet.types=Type
  1500. coding_rules.facets.languages=Languages
  1501. coding_rules.facets.tags=Tags
  1502. coding_rules.facets.repositories=Repositories
  1503. coding_rules.facets.top=Top {0}
  1504. coding_rules.remediation_function=Remediation function
  1505. coding_rules.remediation_function.LINEAR=Linear
  1506. coding_rules.remediation_function.LINEAR_OFFSET=Linear with offset
  1507. coding_rules.remediation_function.CONSTANT_ISSUE=Constant/issue
  1508. coding_rules.remediation_function.coeff=Coeff
  1509. coding_rules.remediation_function.offset=Offset
  1510. coding_rules.remediation_function.constant=Constant
  1511. coding_rules.scope.title=Analysis Scope
  1512. coding_rules.scope.MAIN=Main sources
  1513. coding_rules.scope.TEST=Test sources
  1514. coding_rules.scope.ALL=Main and Test sources
  1515. coding_rules.external_rule.engine=Rule provided by an external rule engine: {0}
  1516. #------------------------------------------------------------------------------
  1517. #
  1518. # EMAIL CONFIGURATION
  1519. #
  1520. #------------------------------------------------------------------------------
  1521. email_configuration.test.title=Test Configuration
  1522. email_configuration.test.to_address=To
  1523. email_configuration.test.subject=Subject
  1524. email_configuration.test.message=Message
  1525. email_configuration.test.message_text=This is a test message from SonarQube.
  1526. email_configuration.test.send=Send Test Email
  1527. email_configuration.test.email_was_sent_to_x=Email was sent to {0}
  1528. #------------------------------------------------------------------------------
  1529. #
  1530. # NOTIFICATIONS
  1531. #
  1532. #------------------------------------------------------------------------------
  1533. notification.channel.EmailNotificationChannel=Email
  1534. notification.dispatcher.information=A notification is never sent to the author of the event.
  1535. notification.dispatcher.ChangesOnMyIssue=Changes in issues/hotspots assigned to me
  1536. notification.dispatcher.NewIssues=New issues
  1537. notification.dispatcher.NewAlerts=New quality gate status
  1538. notification.dispatcher.NewFalsePositiveIssue=Issues resolved as false positive or won't fix
  1539. notification.dispatcher.SQ-MyNewIssues=My new issues
  1540. notification.dispatcher.CeReportTaskFailure=Background tasks in failure on my administered projects
  1541. notification.dispatcher.CeReportTaskFailure.project=Background tasks in failure
  1542. #------------------------------------------------------------------------------
  1543. #
  1544. # ALERTS
  1545. #
  1546. #------------------------------------------------------------------------------
  1547. alerts.operator.<=is less than
  1548. alerts.operator.>=is greater than
  1549. alerts.operator.\==equals
  1550. alerts.operator.!\==is not
  1551. alert.tooltip.error=This is an error message.
  1552. alert.tooltip.warning=This is a warning message.
  1553. alert.tooltip.success=This is a success message.
  1554. alert.tooltip.info=This is an info message.
  1555. #------------------------------------------------------------------------------
  1556. #
  1557. # USER
  1558. #
  1559. #------------------------------------------------------------------------------
  1560. user.password_doesnt_match_confirmation=Password doesn't match confirmation.
  1561. user.login_or_email_used_as_scm_account=Login and email are automatically considered as SCM accounts
  1562. user.x_deleted={0} (deleted)
  1563. login.login_to_sonarqube=Log In to SonarQube
  1564. login.login_or_signup_to_sonarcloud=Log in or Sign up to SonarCloud
  1565. login.login_with_x=Log in with {0}
  1566. login.more_options=More options
  1567. login.unauthorized_access_alert=You are not authorized to access this page. Please log in with more privileges and try again.
  1568. login.with_x=With {0}
  1569. unauthorized.message=You're not authorized to access this page. Please contact the administrator.
  1570. unauthorized.reason=Reason:
  1571. #------------------------------------------------------------------------------
  1572. #
  1573. # USERS & GROUPS PAGE
  1574. #
  1575. #------------------------------------------------------------------------------
  1576. users.add=Add user
  1577. users.remove=Remove user
  1578. users.remove.confirmation=Are you sure you want to remove user "{user}"?
  1579. users.search_description=Search users by login or name
  1580. users.update=Update users
  1581. users.update_details=Update details
  1582. groups.remove=Remove group
  1583. groups.remove.confirmation=Are you sure you want to remove group "{user}"?
  1584. #------------------------------------------------------------------------------
  1585. #
  1586. # MY PROFILE & MY ACCOUNT
  1587. #
  1588. #------------------------------------------------------------------------------
  1589. my_profile.login=Login
  1590. my_profile.email=Email
  1591. my_profile.groups=Groups
  1592. my_profile.scm_accounts=SCM Accounts
  1593. my_profile.scm_accounts.tooltip=SCM accounts are used for automatic issue assignment. Login and email are automatically considered as SCM account.
  1594. my_profile.password.title=Change password
  1595. my_profile.password.old=Old Password
  1596. my_profile.password.new=New Password
  1597. my_profile.password.confirm=Confirm Password
  1598. my_profile.password.submit=Change password
  1599. my_profile.password.changed=The password has been changed!
  1600. my_profile.notifications.submit=Save changes
  1601. my_profile.overall_notifications.title=Overall notifications
  1602. my_profile.sonarcloud_feature_notifications.title=SonarCloud new feature notifications
  1603. my_profile.sonarcloud_feature_notifications.description=Display a notification in the header when new features are deployed
  1604. my_profile.per_project_notifications.title=Notifications per project
  1605. my_profile.per_project_notifications.add=Add a project
  1606. my_profile.per_project_notifications.edit=Set notifications
  1607. my_account.page=My Account
  1608. my_account.notifications=Notifications
  1609. my_account.no_project_notifications=You have not set project notifications yet.
  1610. my_account.profile=Profile
  1611. my_account.security=Security
  1612. 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.
  1613. my_account.tokens_last_usage=Last use
  1614. my_account.projects=Projects
  1615. my_account.projects.description=Those projects are the ones you are administering.
  1616. my_account.projects.no_results=You are not administering any project yet.
  1617. my_account.projects.analyzed_x=Analyzed {0}
  1618. my_account.projects.never_analyzed=Never analyzed
  1619. my_account.organizations=Organizations
  1620. my_account.organizations.description=Those organizations are the ones you are member of.
  1621. my_account.organizations.no_results=You are not a member of any organizations yet.
  1622. my_account.create_organization=Create Organization
  1623. my_account.search_project=Search Project
  1624. my_account.set_notifications_for=Search a project by name
  1625. my_account.set_notifications_for.title=Add a project
  1626. my_account.create_new_portfolio_application=Create new portfolio / application
  1627. my_account.create_new.TRK=Create new project
  1628. my_account.create_new.VW=Create new portfolio
  1629. my_account.create_new.APP=Create new application
  1630. my_account.create_new_organization=Create new organization
  1631. my_account.create_new_project_or_organization=Analyze new project or create new organization
  1632. my_account.create_new_project_portfolio_or_application=Analyze new project / Create new portfolio or application
  1633. #------------------------------------------------------------------------------
  1634. #
  1635. # PROJECT PROVISIONING
  1636. #
  1637. #------------------------------------------------------------------------------
  1638. provisioning.analyze_new_project=Analyze new project
  1639. provisioning.no_analysis=No analysis has been performed since creation. The only available section is the configuration.
  1640. provisioning.no_analysis.delete=Either you should retry analysis or simply {link}.
  1641. provisioning.no_analysis.delete_project=delete the project
  1642. provisioning.no_analysis_on_main_branch="{branchName}" branch has not been analyzed yet.
  1643. 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.
  1644. provisioning.only_provisioned=Only Provisioned
  1645. provisioning.only_provisioned.tooltip=Provisioned projects are projects that have been created, but have not been analyzed yet.
  1646. provisioning.no_analysis.application=No analysis has been performed since creation. Analyze a project to see information here.
  1647. #------------------------------------------------------------------------------
  1648. #
  1649. # RULE SEVERITIES
  1650. #
  1651. #------------------------------------------------------------------------------
  1652. severity.BLOCKER=Blocker
  1653. severity.BLOCKER.description=Must be fixed immediately.
  1654. severity.CRITICAL=Critical
  1655. severity.CRITICAL.description=Must be reviewed immediately and fixed soon.
  1656. severity.MAJOR=Major
  1657. severity.MAJOR.description=High potential for significant to moderate impact.
  1658. severity.MINOR=Minor
  1659. severity.MINOR.description=Potential for moderate to minor impact.
  1660. severity.INFO=Info
  1661. severity.INFO.description=Neither a bug nor a quality flaw. Just a finding.
  1662. #------------------------------------------------------------------------------
  1663. #
  1664. # METRIC DOMAINS
  1665. #
  1666. #------------------------------------------------------------------------------
  1667. metric_domain.Size=Size
  1668. metric_domain.Tests=Tests
  1669. metric_domain.Integration Tests=Integration Tests
  1670. metric_domain.Complexity=Complexity
  1671. metric_domain.Documentation=Documentation
  1672. metric_domain.Rules=Rules
  1673. metric_domain.General=General
  1674. metric_domain.Duplication=Duplication
  1675. metric_domain.Design=Design
  1676. metric_domain.SCM=SCM
  1677. metric_domain.Maintainability=Maintainability
  1678. metric_domain.Releasability=Releasability
  1679. metric_domain.Reliability=Reliability
  1680. metric_domain.Security=Security
  1681. metric_domain.SecurityReview=Security Review
  1682. metric_domain.Issues=Issues
  1683. metric_domain.Duplications=Duplications
  1684. metric_domain.Coverage=Coverage
  1685. #--------------------------------------------------------------------------------------------------------------------
  1686. #
  1687. # METRIC TYPES
  1688. #
  1689. #--------------------------------------------------------------------------------------------------------------------
  1690. metric.type.INT=Integer
  1691. metric.type.FLOAT=Float
  1692. metric.type.PERCENT=Percent
  1693. metric.type.BOOL=Boolean
  1694. metric.type.STRING=String
  1695. metric.type.MILLISEC=Milliseconds
  1696. metric.type.DATA=Data
  1697. metric.type.LEVEL=Level
  1698. metric.type.DISTRIB=Distribution
  1699. metric.type.RATING=Rating
  1700. metric.type.WORK_DUR=Work Duration
  1701. metric.level.ERROR=Failed
  1702. metric.level.WARN=Warning
  1703. metric.level.OK=Passed
  1704. metric.level.NONE=None
  1705. #------------------------------------------------------------------------------
  1706. #
  1707. # METRICS
  1708. #
  1709. #------------------------------------------------------------------------------
  1710. metric.abstractness.description=Abstractness
  1711. metric.abstractness.name=Abstractness
  1712. metric.accessors.description=Accessors
  1713. metric.accessors.name=Accessors
  1714. metric.alert_status.description=The project status with regard to its quality gate.
  1715. metric.alert_status.name=Quality Gate Status
  1716. metric.authors_by_line.description=Authors by line
  1717. metric.authors_by_line.name=Authors by Line
  1718. metric.blocker_violations.description=Blocker issues
  1719. metric.blocker_violations.name=Blocker Issues
  1720. metric.branch_coverage.description=Condition coverage
  1721. metric.branch_coverage.name=Condition Coverage
  1722. metric.bugs.description=Bugs
  1723. metric.bugs.name=Bugs
  1724. metric.ca.description=Afferent couplings
  1725. metric.ca.name=Afferent Couplings
  1726. metric.ce.description=Efferent couplings
  1727. metric.ce.name=Efferent Couplings
  1728. metric.classes.description=Classes
  1729. metric.classes.name=Classes
  1730. metric.class_complexity.description=Complexity average by class
  1731. metric.class_complexity.name=Complexity / Class
  1732. metric.class_complexity_distribution.description=Classes distribution /complexity
  1733. metric.class_complexity_distribution.name=Class Distribution / Complexity
  1734. metric.code_smells.description=Code Smells
  1735. metric.code_smells.name=Code Smells
  1736. metric.cognitive_complexity.description=Cognitive complexity
  1737. metric.cognitive_complexity.name=Cognitive Complexity
  1738. metric.commented_out_code_lines.description=Commented lines of code
  1739. metric.commented_out_code_lines.name=Commented-Out LOC
  1740. metric.comment_blank_lines.description=Comments that do not contain comments
  1741. metric.comment_blank_lines.name=Blank Comments
  1742. metric.comment_lines.description=Number of comment lines
  1743. metric.comment_lines.name=Comment Lines
  1744. metric.comment_lines_density.description=Comments balanced by ncloc + comment lines
  1745. metric.comment_lines_density.name=Comments (%)
  1746. metric.comment_lines_density.short_name=Comments
  1747. metric.complexity.description=Cyclomatic complexity
  1748. metric.complexity.name=Cyclomatic Complexity
  1749. metric.complexity_in_classes.description=Cyclomatic complexity in classes
  1750. metric.complexity_in_classes.name=Complexity in Classes
  1751. metric.complexity_in_functions.description=Cyclomatic complexity in functions
  1752. metric.complexity_in_functions.name=Complexity in Functions
  1753. metric.conditions_by_line.description=Conditions by line
  1754. metric.conditions_by_line.name=Conditions by Line
  1755. metric.conditions_to_cover.description=Conditions to cover
  1756. metric.conditions_to_cover.name=Conditions to Cover
  1757. metric.confirmed_issues.description=Confirmed issues
  1758. metric.confirmed_issues.name=Confirmed Issues
  1759. metric.coverage.description=Coverage by tests
  1760. metric.coverage.name=Coverage
  1761. metric.coverage_line_hits_data.description=Coverage hits by line
  1762. metric.coverage_line_hits_data.name=Coverage Hits by Line
  1763. metric.covered_conditions.description=Covered conditions
  1764. metric.covered_conditions.name=Covered Conditions
  1765. metric.covered_conditions_by_line.description=Covered conditions by line
  1766. metric.covered_conditions_by_line.name=Covered Conditions by Line
  1767. metric.covered_lines.description=Covered lines
  1768. metric.covered_lines.name=Covered Lines
  1769. metric.critical_violations.description=Critical issues
  1770. metric.critical_violations.name=Critical Issues
  1771. metric.development_cost.description=Development cost
  1772. metric.development_cost.name=Development Cost
  1773. metric.directories.description=Directories
  1774. metric.directories.name=Directories
  1775. metric.distance.description=Distance
  1776. metric.distance.name=Distance
  1777. metric.dit.description=Depth in Inheritance Tree
  1778. metric.dit.name=Depth in Tree
  1779. metric.dsm.description=Dependency Matrix
  1780. metric.dsm.name=Dependency Matrix
  1781. metric.duplicated_blocks.description=Duplicated blocks
  1782. metric.duplicated_blocks.name=Duplicated Blocks
  1783. metric.duplicated_files.description=Duplicated files
  1784. metric.duplicated_files.name=Duplicated Files
  1785. metric.duplicated_lines.description=Duplicated lines
  1786. metric.duplicated_lines.name=Duplicated Lines
  1787. metric.duplicated_lines_density.description=Duplicated lines balanced by statements
  1788. metric.duplicated_lines_density.name=Duplicated Lines (%)
  1789. metric.duplicated_lines_density.short_name=Duplications
  1790. metric.duplicated_lines_density.extra_short_name=Density
  1791. metric.duplications_data.description=Duplications details
  1792. metric.duplications_data.name=Duplication Details
  1793. metric.efficiency.description=Efficiency
  1794. metric.efficiency.name=Efficiency
  1795. metric.effort_to_reach_maintainability_rating_a.description=Effort to reach maintainability rating A
  1796. metric.effort_to_reach_maintainability_rating_a.name=Effort to Reach Maintainability Rating A
  1797. metric.effort_to_reach_maintainability_rating_a.extra_short_name=Effort to Reach A
  1798. metric.false_positive_issues.description=False positive issues
  1799. metric.false_positive_issues.name=False Positive Issues
  1800. metric.files.description=Number of files
  1801. metric.files.name=Files
  1802. metric.file_complexity.description=Complexity average by file
  1803. metric.file_complexity.name=Complexity / File
  1804. metric.file_complexity_distribution.description=Files distribution /complexity
  1805. metric.file_complexity_distribution.name=File Distribution / Complexity
  1806. metric.file_cycles.description=File cycles
  1807. metric.file_cycles.name=File Cycles
  1808. metric.file_edges_weight.description=File edges weight
  1809. metric.file_edges_weight.name=File Edges Weight
  1810. metric.file_feedback_edges.description=Suspect file dependencies
  1811. metric.file_feedback_edges.name=Suspect File Dependencies
  1812. metric.file_tangles.description=Files tangles
  1813. metric.file_tangles.name=File Tangles
  1814. metric.file_tangle_index.description=File tangle index
  1815. metric.file_tangle_index.name=File Tangle Index
  1816. metric.functions.description=Functions
  1817. metric.functions.name=Functions
  1818. metric.function_complexity.description=Complexity average by function
  1819. metric.function_complexity.name=Complexity / Function
  1820. metric.function_complexity_distribution.description=Functions distribution /complexity
  1821. metric.function_complexity_distribution.name=Function Distribution / Complexity
  1822. metric.generated_lines.description=Number of generated lines
  1823. metric.generated_lines.name.suffix=generated lines
  1824. metric.generated_lines.name=Generated Lines
  1825. metric.generated_ncloc.description=Generated non Commenting Lines of Code
  1826. metric.generated_ncloc.name.suffix=generated lines of code
  1827. metric.generated_ncloc.name=Generated Lines of Code
  1828. metric.has_rating_X=Has rating: {0}
  1829. metric.no_rating=Has no rating
  1830. metric.info_violations.description=Info issues
  1831. metric.info_violations.name=Info Issues
  1832. metric.instability.description=Instability
  1833. metric.instability.name=Instability
  1834. metric.it_branch_coverage.description=Condition coverage by integration tests
  1835. metric.it_branch_coverage.name=IT Condition Coverage
  1836. metric.it_conditions_by_line.description=IT conditions by line
  1837. metric.it_conditions_by_line.name=IT Conditions by Line
  1838. metric.it_conditions_to_cover.description=Conditions to cover by integration tests
  1839. metric.it_conditions_to_cover.name=IT Conditions to Cover
  1840. metric.it_coverage.description=Integration tests coverage
  1841. metric.it_coverage.name=IT Coverage
  1842. metric.it_coverage_line_hits_data.description=Coverage hits by line by integration tests
  1843. metric.it_coverage_line_hits_data.name=IT Coverage Hits by Line
  1844. metric.it_covered_conditions_by_line.description=IT covered conditions by line
  1845. metric.it_covered_conditions_by_line.name=IT Covered Conditions by Line
  1846. metric.it_lines_to_cover.description=Lines to cover by integration tests
  1847. metric.it_lines_to_cover.name=IT Lines to Cover
  1848. metric.it_line_coverage.description=Line coverage by integration tests
  1849. metric.it_line_coverage.name=IT Line Coverage
  1850. metric.it_uncovered_conditions.description=Uncovered conditions by integration tests
  1851. metric.it_uncovered_conditions.name=IT Uncovered Conditions
  1852. metric.it_uncovered_lines.description=Uncovered lines by integration tests
  1853. metric.it_uncovered_lines.name=IT Uncovered Lines
  1854. metric.last_commit_date.name=Date of Last Commit
  1855. metric.last_commit_datetimes_by_line.description=Last commit dates by line
  1856. metric.last_commit_datetimes_by_line.name=Last Commit Dates by Line
  1857. metric.lcom4.description=Lack of Cohesion of Functions
  1858. metric.lcom4.name=LCOM4
  1859. metric.lcom4_blocks.description=LCOM4 blocks
  1860. metric.lcom4_blocks.name=LCOM4 Blocks
  1861. metric.lcom4_distribution.description=Class distribution /LCOM4
  1862. metric.lcom4_distribution.name=Class Distribution / LCOM4
  1863. metric.lines.description=Lines
  1864. metric.lines.name=Lines
  1865. metric.lines_to_cover.description=Lines to cover
  1866. metric.lines_to_cover.name=Lines to Cover
  1867. metric.line_coverage.description=Line coverage
  1868. metric.line_coverage.name=Line Coverage
  1869. metric.maintainability.description=Maintainability
  1870. metric.maintainability.name=Maintainability
  1871. metric.major_violations.description=Major issues
  1872. metric.major_violations.name=Major Issues
  1873. metric.minor_violations.description=Minor issues
  1874. metric.minor_violations.name=Minor Issues
  1875. metric.ncloc.name=Lines of Code
  1876. metric.ncloc.description=Non commenting lines of code
  1877. metric.ncloc_language_distribution.description=Non Commenting Lines of Code Distributed By Language
  1878. metric.ncloc_language_distribution.name=Lines of Code Per Language
  1879. metric.new_blocker_violations.description=New Blocker issues
  1880. metric.new_blocker_violations.name=New Blocker Issues
  1881. metric.new_branch_coverage.description=Condition coverage of new/changed code
  1882. metric.new_branch_coverage.name=Condition Coverage on New Code
  1883. metric.new_branch_coverage.extra_short_name=Condition Coverage
  1884. metric.new_bugs.description=New Bugs
  1885. metric.new_bugs.name=New Bugs
  1886. metric.new_bugs.short_name=Bugs
  1887. metric.new_code_smells.description=New Code Smells
  1888. metric.new_code_smells.name=New Code Smells
  1889. metric.new_code_smells.short_name=Code Smells
  1890. metric.new_conditions_to_cover.description=Conditions to cover on new code
  1891. metric.new_conditions_to_cover.name=Conditions to Cover on New Code
  1892. metric.new_conditions_to_cover.extra_short_name=Conditions to Cover
  1893. metric.new_coverage.description=Coverage of new/changed code
  1894. metric.new_coverage.name=Coverage on New Code
  1895. metric.new_coverage.short_name=Coverage
  1896. metric.new_critical_violations.description=New Critical issues
  1897. metric.new_critical_violations.name=New Critical Issues
  1898. metric.new_development_cost.description=Development cost on new code
  1899. metric.new_development_cost.name=Development Cost on New Code
  1900. metric.new_duplicated_blocks.name=Duplicated Blocks on New Code
  1901. metric.new_duplicated_blocks.extra_short_name=Duplicated Blocks
  1902. metric.new_duplicated_blocks.description=Duplicated blocks on new code
  1903. metric.new_duplicated_lines.name=Duplicated Lines on New Code
  1904. metric.new_duplicated_lines.extra_short_name=Duplicated Lines
  1905. metric.new_duplicated_lines.description=Duplicated Lines on New Code
  1906. metric.new_duplicated_lines_density.description=Duplicated lines on new code balanced by statements
  1907. metric.new_duplicated_lines_density.name=Duplicated Lines on New Code
  1908. metric.new_duplicated_lines_density.short_name=Duplications
  1909. metric.new_duplicated_lines_density.extra_short_name=Density
  1910. metric.new_info_violations.description=New Info issues
  1911. metric.new_info_violations.name=New Info Issues
  1912. metric.new_it_branch_coverage.description=Integration tests condition coverage of new/changed code
  1913. metric.new_it_branch_coverage.name=Condition Coverage by IT on New Code
  1914. metric.new_it_conditions_to_cover.description=New conditions to cover by integration tests
  1915. metric.new_it_conditions_to_cover.name=Conditions to Cover by IT on New Code
  1916. metric.new_it_coverage.description=Integration tests coverage of new/changed code
  1917. metric.new_it_coverage.name=Coverage by IT on New Code
  1918. metric.new_it_lines_to_cover.description=Lines to cover on new code by integration tests
  1919. metric.new_it_lines_to_cover.name=Lines to Cover by IT on New Code
  1920. metric.new_it_line_coverage.description=Integration tests line coverage of added/changed code
  1921. metric.new_it_line_coverage.name=Line Coverage by IT on New Code
  1922. metric.new_it_uncovered_conditions.description=New conditions that are not covered by integration tests
  1923. metric.new_it_uncovered_conditions.name=Uncovered Conditions by IT on New Code
  1924. metric.new_it_uncovered_lines.description=New lines that are not covered by integration tests
  1925. metric.new_it_uncovered_lines.name=Uncovered Lines by IT on New Code
  1926. metric.new_lines_to_cover.description=Lines to cover on new code
  1927. metric.new_lines_to_cover.name=Lines to Cover on New Code
  1928. metric.new_lines_to_cover.extra_short_name=Lines to Cover
  1929. metric.new_line_coverage.description=Line coverage of added/changed code
  1930. metric.new_line_coverage.name=Line Coverage on New Code
  1931. metric.new_line_coverage.extra_short_name=Line Coverage
  1932. metric.new_maintainability_rating.description=Maintainability rating on new code
  1933. metric.new_maintainability_rating.name=Maintainability Rating on New Code
  1934. metric.new_maintainability_rating.extra_short_name=Rating
  1935. metric.new_major_violations.description=New Major issues
  1936. metric.new_major_violations.name=New Major Issues
  1937. metric.new_minor_violations.description=New Minor issues
  1938. metric.new_minor_violations.name=New Minor Issues
  1939. metric.new_lines.name=New Lines
  1940. metric.new_lines.description=New lines
  1941. metric.new_lines.short_name=Lines
  1942. metric.new_overall_branch_coverage.description=Condition coverage of new/changed code by all tests
  1943. metric.new_overall_branch_coverage.name=Overall Condition Coverage on New Code
  1944. metric.new_overall_conditions_to_cover.description=New conditions to cover by all tests
  1945. metric.new_overall_conditions_to_cover.name=Overall Conditions to Cover on New Code
  1946. metric.new_overall_coverage.description=Overall coverage of new/changed code
  1947. metric.new_overall_coverage.name=Overall Coverage on New Code
  1948. metric.new_overall_lines_to_cover.description=New lines to cover by all tests
  1949. metric.new_overall_lines_to_cover.name=Overall Lines to Cover on New Code
  1950. metric.new_overall_line_coverage.description=Line coverage of added/changed code by all tests
  1951. metric.new_overall_line_coverage.name=Overall Line Coverage on New Code
  1952. metric.new_overall_uncovered_conditions.description=New conditions that are not covered by any test
  1953. metric.new_overall_uncovered_conditions.name=Overall Uncovered Conditions on New Code
  1954. metric.new_overall_uncovered_lines.description=New lines that are not covered by any tests
  1955. metric.new_overall_uncovered_lines.name=Overall Uncovered Lines on New Code
  1956. metric.new_reliability_rating.description=Reliability rating on new code
  1957. metric.new_reliability_rating.name=Reliability Rating on New Code
  1958. metric.new_reliability_rating.extra_short_name=Rating
  1959. metric.new_reliability_remediation_effort.description=Reliability remediation effort on new code
  1960. metric.new_reliability_remediation_effort.name=Reliability Remediation Effort on New Code
  1961. metric.new_reliability_remediation_effort.extra_short_name=Remediation Effort
  1962. metric.new_security_hotspots.description=New Security Hotspots
  1963. metric.new_security_hotspots.name=New Security Hotspots
  1964. metric.new_security_hotspots.short_name=Security Hotspots
  1965. metric.new_security_hotspots_reviewed.description=Percentage of Security Hotspots Reviewed on New Code
  1966. metric.new_security_hotspots_reviewed.name=Security Hotspots Reviewed on New Code
  1967. metric.new_security_hotspots_reviewed.short_name=Security Hotspots Reviewed
  1968. metric.new_security_hotspots_reviewed_status.description=Security Review Reviewed Status on New Code
  1969. metric.new_security_hotspots_reviewed_status.name=Security Review Reviewed Status on New Code
  1970. metric.new_security_hotspots_to_review_status.description=Security Review To Review Status on New Code
  1971. metric.new_security_hotspots_to_review_status.name=Security Review To Review Status on New Code
  1972. metric.new_security_rating.description=Security rating on new code
  1973. metric.new_security_rating.name=Security Rating on New Code
  1974. metric.new_security_rating.extra_short_name=Rating
  1975. metric.new_security_remediation_effort.description=Security remediation effort on new code
  1976. metric.new_security_remediation_effort.name=Security Remediation Effort on New Code
  1977. metric.new_security_remediation_effort.extra_short_name=Remediation Effort
  1978. metric.new_security_review_rating.description=Security Review Rating on New Code
  1979. metric.new_security_review_rating.name=Security Review Rating on New Code
  1980. metric.new_security_review_rating.extra_short_name=Rating
  1981. metric.new_sqale_debt_ratio.description=Technical Debt Ratio of new/changed code.
  1982. metric.new_sqale_debt_ratio.name=Technical Debt Ratio on New Code
  1983. metric.new_sqale_debt_ratio.short_name=Debt Ratio on new code
  1984. metric.new_sqale_debt_ratio.extra_short_name=Debt Ratio
  1985. metric.new_technical_debt.description=Added technical debt
  1986. metric.new_technical_debt.name=Added Technical Debt
  1987. metric.new_technical_debt.short_name=Added Debt
  1988. metric.new_technical_debt.extra_short_name=Debt
  1989. metric.new_uncovered_conditions.description=Uncovered conditions on new code
  1990. metric.new_uncovered_conditions.name=Uncovered Conditions on New Code
  1991. metric.new_uncovered_conditions.extra_short_name=Uncovered Conditions
  1992. metric.new_uncovered_lines.description=Uncovered lines on new code
  1993. metric.new_uncovered_lines.name=Uncovered Lines on New Code
  1994. metric.new_uncovered_lines.extra_short_name=Uncovered Lines
  1995. metric.new_violations.description=New issues
  1996. metric.new_violations.name=New Issues
  1997. metric.new_vulnerabilities.description=New Vulnerabilities
  1998. metric.new_vulnerabilities.name=New Vulnerabilities
  1999. metric.new_vulnerabilities.short_name=Vulnerabilities
  2000. metric.noc.description=Number of Children
  2001. metric.noc.name=Number of Children
  2002. metric.open_issues.description=Open issues
  2003. metric.open_issues.name=Open Issues
  2004. metric.overall_branch_coverage.description=Condition coverage by all tests
  2005. metric.overall_branch_coverage.name=Overall Condition Coverage
  2006. metric.overall_conditions_by_line.description=Overall conditions by all tests and by line
  2007. metric.overall_conditions_by_line.name=Overall Conditions by Line
  2008. metric.overall_conditions_to_cover.description=Conditions to cover by all tests
  2009. metric.overall_conditions_to_cover.name=Overall Conditions to Cover
  2010. metric.overall_coverage.description=Overall test coverage
  2011. metric.overall_coverage.name=Overall Coverage
  2012. metric.overall_coverage_line_hits_data.description=Coverage hits by all tests and by line
  2013. metric.overall_coverage_line_hits_data.name=Overall Coverage Hits by Line
  2014. metric.overall_covered_conditions_by_line.description=Overall covered conditions by all tests and by line
  2015. metric.overall_covered_conditions_by_line.name=Overall Covered Conditions by Line
  2016. metric.overall_lines_to_cover.description=Lines to cover by all tests
  2017. metric.overall_lines_to_cover.name=Overall Lines to Cover
  2018. metric.overall_line_coverage.description=Line coverage by all tests
  2019. metric.overall_line_coverage.name=Overall Line Coverage
  2020. metric.overall_uncovered_conditions.description=Uncovered conditions by all tests
  2021. metric.overall_uncovered_conditions.name=Overall Uncovered Conditions
  2022. metric.overall_uncovered_lines.description=Uncovered lines by all tests
  2023. metric.overall_uncovered_lines.name=Overall Uncovered Lines
  2024. metric.packages.description=Packages
  2025. metric.packages.name=Packages
  2026. metric.package_cycles.description=Package cycles
  2027. metric.package_cycles.name=Package Cycles
  2028. metric.package_edges_weight.description=Package edges weight
  2029. metric.package_edges_weight.name=Package Edges Weight
  2030. metric.package_feedback_edges.description=Package dependencies to cut
  2031. metric.package_feedback_edges.name=Package Dependencies to Cut
  2032. metric.package_tangles.description=File dependencies to cut
  2033. metric.package_tangles.name=File Dependencies to Cut
  2034. metric.package_tangle_index.description=Package tangle index
  2035. metric.package_tangle_index.name=Package Tangle Index
  2036. metric.portability.description=Portability
  2037. metric.portability.name=Portability
  2038. metric.profile.description=Selected quality profile
  2039. metric.profile.name=Profile
  2040. metric.profile_version.description=Selected quality profile version
  2041. metric.profile_version.name=Profile Version
  2042. metric.projects.description=Number of projects
  2043. metric.projects.name=Projects
  2044. metric.public_api.description=Public API
  2045. metric.public_api.name=Public API
  2046. metric.public_documented_api_density.description=Public documented classes and functions balanced by ncloc
  2047. metric.public_documented_api_density.name=Public Documented API (%)
  2048. metric.public_undocumented_api.description=Public undocumented classes, functions and variables
  2049. metric.public_undocumented_api.name=Public Undocumented API
  2050. metric.quality_gate_details.description=The project detailed status with regard to its quality gate
  2051. metric.quality_gate_details.name=Quality Gate Details
  2052. metric.quality_profiles.description=Details of quality profiles used during analysis
  2053. metric.quality_profiles.name=Profiles
  2054. metric.reliability.description=Reliability
  2055. metric.reliability.name=Reliability
  2056. metric.reliability_rating.description=Reliability rating
  2057. metric.reliability_rating.name=Reliability Rating
  2058. metric.reliability_rating.extra_short_name=Rating
  2059. metric.reliability_rating.tooltip.A=Reliability rating is A when there are no bugs.
  2060. metric.reliability_rating.tooltip.B=Reliability rating is B when there is at least one minor bug.
  2061. metric.reliability_rating.tooltip.C=Reliability rating is C when there is at least one major bug.
  2062. metric.reliability_rating.tooltip.D=Reliability rating is D when there is at least one critical bug.
  2063. metric.reliability_rating.tooltip.E=Reliability rating is E when there is at least one blocker bug.
  2064. metric.reliability_remediation_effort.description=Reliability Remediation Effort
  2065. metric.reliability_remediation_effort.name=Reliability Remediation Effort
  2066. metric.reliability_remediation_effort.extra_short_name=Remediation Effort
  2067. metric.reopened_issues.description=Reopened issues
  2068. metric.reopened_issues.name=Reopened Issues
  2069. metric.revisions_by_line.description=Revisions by line
  2070. metric.revisions_by_line.name=Revisions by Line
  2071. metric.rfc.description=Response for Class
  2072. metric.rfc.name=Response for Class
  2073. metric.rfc_distribution.description=Class distribution /RFC
  2074. metric.rfc_distribution.name=Class Distribution / RFC
  2075. metric.security_hotspots.description=Security Hotspots
  2076. metric.security_hotspots.name=Security Hotspots
  2077. metric.security_hotspots_reviewed.description=Percentage of Security Hotspots Reviewed
  2078. metric.security_hotspots_reviewed.name=Security Hotspots Reviewed
  2079. metric.security_hotspots_reviewed_status.description=Security Review Reviewed Status
  2080. metric.security_hotspots_reviewed_status.name=Security Review Reviewed Status
  2081. metric.security_hotspots_to_review_status.description=Security Review To Review Status
  2082. metric.security_hotspots_to_review_status.name=Security Review To Review Status
  2083. metric.security_rating.description=Security rating
  2084. metric.security_rating.name=Security Rating
  2085. metric.security_rating.extra_short_name=Rating
  2086. metric.security_rating.tooltip.A=Security rating is A when there are no vulnerabilities.
  2087. metric.security_rating.tooltip.B=Security rating is B when there is at least one minor vulnerability.
  2088. metric.security_rating.tooltip.C=Security rating is C when there is at least one major vulnerability.
  2089. metric.security_rating.tooltip.D=Security rating is D when there is at least one critical vulnerability.
  2090. metric.security_rating.tooltip.E=Security rating is E when there is at least one blocker vulnerability.
  2091. metric.security_remediation_effort.description=Security remediation effort
  2092. metric.security_remediation_effort.name=Security Remediation Effort
  2093. metric.security_remediation_effort.extra_short_name=Remediation Effort
  2094. metric.security_review_rating.description=Security Review Rating
  2095. metric.security_review_rating.name=Security Review Rating
  2096. metric.security_review_rating.extra_short_name=Rating
  2097. metric.security_review_rating.tooltip.A=Security rating is A when at least 80% of Security Hotspots are reviewed.
  2098. metric.security_review_rating.tooltip.B=Security rating is B when less than 80% of Security Hotspots are reviewed.
  2099. metric.security_review_rating.tooltip.C=Security rating is C when less than 70% of Security Hotspots are reviewed.
  2100. metric.security_review_rating.tooltip.D=Security rating is D when less than 50% of Security Hotspots are reviewed.
  2101. metric.security_review_rating.tooltip.E=Security rating is E when less than 30% of Security Hotspots are reviewed.
  2102. metric.skipped_tests.description=Number of skipped unit tests
  2103. metric.skipped_tests.name=Skipped Unit Tests
  2104. metric.skipped_tests.short_name=Skipped
  2105. metric.sqale_debt_ratio.description=Ratio of the actual technical debt compared to the estimated cost to develop the whole source code from scratch
  2106. metric.sqale_debt_ratio.name=Technical Debt Ratio
  2107. metric.sqale_debt_ratio.short_name=Debt Ratio
  2108. metric.sqale_index.description=Total effort (in hours) to fix all the issues on the component and therefore to comply to all the requirements.
  2109. metric.sqale_index.name=Technical Debt
  2110. metric.sqale_index.short_name=Debt
  2111. metric.sqale_rating.description=A-to-E rating based on the technical debt ratio
  2112. metric.sqale_rating.name=Maintainability Rating
  2113. metric.sqale_rating.extra_short_name=Rating
  2114. metric.sqale_rating.tooltip=Maintainability rating is {0} when the technical debt ratio is greater than {1}
  2115. metric.sqale_rating.tooltip.A=Maintainability rating is A when the technical debt ratio is less than {0}
  2116. metric.statements.description=Number of statements
  2117. metric.statements.name=Statements
  2118. metric.suspect_lcom4_density.description=Density of classes having LCOM4>1
  2119. metric.suspect_lcom4_density.name=Suspect LCOM4 Density
  2120. metric.tests.description=Number of unit tests
  2121. metric.tests.name=Unit Tests
  2122. metric.test_data.description=Unit tests details
  2123. metric.test_data.name=Unit Test Details
  2124. metric.test_errors.description=Number of unit test errors
  2125. metric.test_errors.name=Unit Test Errors
  2126. metric.test_errors.short_name=Errors
  2127. metric.test_execution_time.description=Execution duration of unit tests
  2128. metric.test_execution_time.name=Unit Test Duration
  2129. metric.test_execution_time.short_name=Duration
  2130. metric.test_failures.description=Number of unit test failures
  2131. metric.test_failures.name=Unit Test Failures
  2132. metric.test_failures.short_name=Failures
  2133. metric.test_success_density.description=Density of successful unit tests
  2134. metric.test_success_density.name=Unit Test Success (%)
  2135. metric.test_success_density.short_name=Success
  2136. metric.uncovered_conditions.description=Uncovered conditions
  2137. metric.uncovered_conditions.name=Uncovered Conditions
  2138. metric.uncovered_lines.description=Uncovered lines
  2139. metric.uncovered_lines.name=Uncovered Lines
  2140. metric.usability.description=Usability
  2141. metric.usability.name=Usability
  2142. metric.violations.description=Issues
  2143. metric.violations.name=Issues
  2144. metric.violations.short_name=Issues
  2145. metric.vulnerabilities.description=Vulnerabilities
  2146. metric.vulnerabilities.name=Vulnerabilities
  2147. metric.wont_fix_issues.description=Won't fix issues
  2148. metric.wont_fix_issues.name=Won't Fix Issues
  2149. #------------------------------------------------------------------------------
  2150. #
  2151. # GLOBAL PERMISSIONS
  2152. #
  2153. #------------------------------------------------------------------------------
  2154. global_permissions.permission=Permission
  2155. global_permissions.users=Users
  2156. global_permissions.groups=Groups
  2157. global_permissions.administer=Administer
  2158. global_permissions.creator=Create
  2159. global_permissions.admin=Administer System
  2160. global_permissions.admin.sonarcloud=Administer Organization
  2161. global_permissions.admin.desc=Ability to perform all administration functions for the instance.
  2162. global_permissions.admin.desc.sonarcloud=Ability to perform all administration functions for the organization.
  2163. global_permissions.profileadmin=Quality Profiles
  2164. global_permissions.profileadmin.desc=Ability to perform any action on quality profiles.
  2165. global_permissions.gateadmin=Quality Gates
  2166. global_permissions.gateadmin.desc=Ability to perform any action on quality gates.
  2167. global_permissions.scan=Execute Analysis
  2168. 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.
  2169. global_permissions.provisioning=Projects
  2170. global_permissions.provisioning.desc=Ability to initialize a project so its settings can be configured before the first analysis.
  2171. global_permissions.filter_by_x_permission=Filter by "{0}" permission
  2172. global_permissions.restore_access=Restore Access
  2173. global_permissions.restore_access.message=You will receive {browse} and {administer} permissions on the project. Do you want to continue?
  2174. global_permissions.applicationcreator=Applications
  2175. global_permissions.applicationcreator.desc=Ability to create an application.
  2176. global_permissions.portfoliocreator=Portfolios
  2177. global_permissions.portfoliocreator.desc=Ability to create a portfolio.
  2178. #------------------------------------------------------------------------------
  2179. #
  2180. # ORGANIZATIONS PERMISSIONS
  2181. #
  2182. #------------------------------------------------------------------------------
  2183. organizations_permissions.admin=Administer Organization
  2184. organizations_permissions.admin.desc=Ability to perform all administration functions for the organization.
  2185. organizations_permissions.profileadmin=Administer Quality Profiles
  2186. organizations_permissions.profileadmin.desc=Ability to perform any action on quality profiles.
  2187. organizations_permissions.gateadmin=Administer Quality Gates
  2188. organizations_permissions.gateadmin.desc=Ability to perform any action on quality gates.
  2189. organizations_permissions.scan=Execute Analysis
  2190. organizations_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.
  2191. organizations_permissions.provisioning=Create Projects
  2192. organizations_permissions.provisioning.desc=Ability to initialize a project so its settings can be configured before the first analysis.
  2193. #------------------------------------------------------------------------------
  2194. #
  2195. # PROJECTS PERMISSIONS
  2196. #
  2197. #------------------------------------------------------------------------------
  2198. projects_role.criteria.name=Name contains
  2199. projects_role.criteria.key=Key contains
  2200. projects_role.role=Role Membership For New
  2201. projects_role.groups=Groups
  2202. projects_role.admin=Administer
  2203. projects_role.admin.desc=Access project settings and perform administration tasks. (Users will also need "Browse" permission)
  2204. projects_role.issueadmin=Administer Issues
  2205. 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).
  2206. projects_role.securityhotspotadmin=Administer Security Hotspots
  2207. projects_role.securityhotspotadmin.desc=Resolve a Security Hotspot as reviewed (fixed or safe), reset it as to review (users also need Browse permission).
  2208. projects_role.user=Browse
  2209. projects_role.user.desc=Access a project, browse its measures and issues, confirm issues, change the assignee, comment on issues and change tags.
  2210. projects_role.codeviewer=See Source Code
  2211. projects_role.codeviewer.desc=View the project's source code. (Users will also need "Browse" permission)
  2212. projects_role.scan=Execute Analysis
  2213. 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.
  2214. projects_role.bulk_change=Bulk Change
  2215. projects_role.apply_template=Apply Permission Template
  2216. projects_role.apply_template_to_xxx=Apply Permission Template To "{0}"
  2217. projects_role.apply_template.success=Permission template was successfully applied.
  2218. projects_role.no_projects=There are currently no results to apply the permission template to.
  2219. projects_role.turn_x_to_public=Turn "{0}" to Public
  2220. projects_role.turn_project_to_public.TRK=Turn Project to Public
  2221. projects_role.turn_project_to_public.VW=Turn Portfolio to Public
  2222. projects_role.turn_project_to_public.APP=Turn Application to Public
  2223. projects_role.are_you_sure_to_turn_project_to_public.TRK=Are you sure you want to turn your project to public?
  2224. 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.
  2225. projects_role.are_you_sure_to_turn_project_to_public.VW=Are you sure you want to turn your portfolio to public?
  2226. projects_role.are_you_sure_to_turn_project_to_public.warning.VW=Everybody will be able to browse it.
  2227. projects_role.are_you_sure_to_turn_project_to_public.APP=Are you sure you want to turn your application to public?
  2228. projects_role.are_you_sure_to_turn_project_to_public.warning.APP=Everybody will be able to browse it.
  2229. 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.
  2230. projects_role.applicationcreator=Create Applications
  2231. projects_role.applicationcreator.desc=Allow to create applications for non system administrator.
  2232. projects_role.portfoliocreator=Create Portfolios
  2233. projects_role.portfoliocreator.desc=Allow to create portfolios for non system administrator.
  2234. #------------------------------------------------------------------------------
  2235. #
  2236. # PERMISSION TEMPLATES
  2237. #
  2238. #------------------------------------------------------------------------------
  2239. permission_templates=Permission Templates
  2240. permission_templates.page=Permission Templates
  2241. permission_templates.page.description=Manage templates of project permission sets. The default template will be applied to all new projects.
  2242. permission_templates.set_default=Set Default
  2243. permission_templates.set_default_for=Set Default For
  2244. permission_template.new_template=Create Permission Template
  2245. permission_template.delete_confirm_title=Delete Permission Template
  2246. permission_template.do_you_want_to_delete_template_xxx=Are you sure that you want to delete permission template "{0}"?
  2247. permission_template.edit_template=Edit Permission Template
  2248. permission_template.edit_permissions=Edit Permissions: {0}
  2249. permission_template.key_pattern=Project key pattern
  2250. permission_template.key_pattern.description=Should be a valid regular expression
  2251. permission_template.default_for=Default for {0}
  2252. permission_templates.project_creators=Creators
  2253. permission_templates.project_creators.explanation=When a new project, portfolio or application is created, the user who creates it will receive these permissions.
  2254. permission_templates.project_creators.explanation.sonarcloud=When a new project is created, the user who creates it will receive these permissions.
  2255. permission_templates.bulk_apply_permission_template=Bulk Apply Permission Template
  2256. permission_templates.bulk_apply_permission_template.apply_to_selected=You're about to apply the selected permission template to {0} selected item(s).
  2257. permission_templates.bulk_apply_permission_template.apply_to_all=You're about to apply the selected permission template to {0} item(s).
  2258. permission_templates.select_to_delete=You must select at least one item
  2259. permission_templates.delete_selected=Delete all selected items
  2260. #------------------------------------------------------------------------------
  2261. #
  2262. # HELP
  2263. #
  2264. #------------------------------------------------------------------------------
  2265. markdown.helplink=Markdown Help
  2266. #------------------------------------------------------------------------------
  2267. #
  2268. # DURATION
  2269. #
  2270. #------------------------------------------------------------------------------
  2271. duration.seconds=less than a minute
  2272. duration.minute=about a minute
  2273. duration.minutes={0} minutes
  2274. duration.hour=about an hour
  2275. duration.hours={0} hours
  2276. duration.day=a day
  2277. duration.days={0} days
  2278. duration.month=about a month
  2279. duration.months={0} months
  2280. duration.year=about a year
  2281. duration.years={0} years
  2282. #------------------------------------------------------------------------------
  2283. #
  2284. # COMPONENT VIEWER
  2285. #
  2286. #------------------------------------------------------------------------------
  2287. component_viewer.measure_section.unit_tests=Tests
  2288. component_viewer.transition.covers=Covers
  2289. component_viewer.transition.duplication=Duplicated By
  2290. component_viewer.tests.ordered_by=ordered by
  2291. component_viewer.tests.duration=duration
  2292. component_viewer.tests.test_name=name
  2293. component_viewer.tests.status=status
  2294. component_viewer.x_lines_are_covered={0} lines are covered
  2295. component_viewer.details=Details
  2296. component_viewer.show_raw_source=Show Raw Source
  2297. component_viewer.more_actions=More Actions
  2298. component_viewer.new_window=Open in New Window
  2299. component_viewer.open_in_workspace=Pin This File
  2300. component_viewer.get_permalink=Get Permalink
  2301. component_viewer.covered_lines=Covered Lines
  2302. component_viewer.show_details=Show Measures
  2303. component_viewer.file_measures=File measures
  2304. component_viewer.show_all_measures=Show all measures
  2305. component_viewer.no_component=The component has been removed or never existed.
  2306. source_viewer.view_all_issues=See all issues in this file
  2307. source_viewer.covered=Covered by the following tests
  2308. source_viewer.not_covered=Not covered by tests
  2309. source_viewer.conditions=conditions
  2310. source_viewer.tooltip.duplicated_line=This line is duplicated. Click to see duplicated blocks.
  2311. source_viewer.tooltip.duplicated_block=Duplicated block. Click for details.
  2312. source_viewer.tooltip.covered=Fully covered by tests.
  2313. source_viewer.tooltip.covered.conditions=Fully covered by tests ({0} conditions).
  2314. source_viewer.tooltip.partially-covered=Partially covered by tests.
  2315. source_viewer.tooltip.partially-covered.conditions=Partially covered by tests ({0} of {1} conditions).
  2316. source_viewer.tooltip.uncovered=Not covered by tests.
  2317. source_viewer.tooltip.uncovered.conditions=Not covered by tests ({0} conditions).
  2318. source_viewer.tooltip.no_information_about_tests=There is no extra information about test files.
  2319. source_viewer.load_more_code=Load More Code
  2320. source_viewer.loading_more_code=Loading More Code...
  2321. source_viewer.expand_above=Expand above
  2322. source_viewer.expand_below=Expand below
  2323. #------------------------------------------------------------------------------
  2324. #
  2325. # WORKSPACE
  2326. #
  2327. #------------------------------------------------------------------------------
  2328. workspace.minimize=Minimize
  2329. workspace.full_window=Expand to full window
  2330. workspace.normal_size=Collapse to normal size
  2331. workspace.close=Remove from the list of pinned files
  2332. workspace.no_rule=The rule has been removed or never existed.
  2333. #------------------------------------------------------------------------------
  2334. #
  2335. # MARKETPLACE
  2336. #
  2337. #------------------------------------------------------------------------------
  2338. marketplace.page=Marketplace
  2339. marketplace.page.description=Discover the additional benefits offered in SonarQube Commercial Editions
  2340. marketplace.page.description_best_edition=This edition includes access to all the SonarQube-SonarLint Ecosystem features!
  2341. marketplace.page.you_are_running.community=You are currently running a Community Edition.
  2342. marketplace.page.you_are_running.developer=You are currently running a Developer Edition.
  2343. marketplace.page.you_are_running.enterprise=You are currently running an Enterprise Edition.
  2344. marketplace.page.you_are_running.datacenter=You are currently running a Data Center Edition.
  2345. marketplace.page.open_source_plugins=Plugins
  2346. marketplace.instance_needs_to_be_restarted_to={instance} needs to be restarted in order to
  2347. marketplace.install_x_plugins=install {nb} plugins
  2348. marketplace.update_x_plugins=update {nb} plugins
  2349. marketplace.uninstall_x_plugins=uninstall {nb} plugins
  2350. marketplace.not_activated=Update Center is not activated.
  2351. marketplace.all=All
  2352. marketplace.installed=Installed
  2353. marketplace.updates_only=Updates Only
  2354. marketplace.restart=Restart
  2355. marketplace.revert=Revert
  2356. marketplace.install=Install
  2357. marketplace.upgrade_to_x=Upgrade to {0}
  2358. marketplace.downgrade_to_x=Downgrade to {0}
  2359. marketplace.installed=Installed
  2360. marketplace.installing=Installing...
  2361. marketplace.upgrade=Upgrade
  2362. marketplace.downgrade=Downgrade
  2363. marketplace.checking_license=Checking your license...
  2364. marketplace._installed=installed
  2365. marketplace.available_under_commercial_license=Available under our commercial editions
  2366. marketplace.learn_more=Learn more
  2367. marketplace.request_free_trial=Request a free trial
  2368. marketplace.homepage=Homepage
  2369. marketplace.issue_tracker=Issue Tracker
  2370. marketplace.licensed_under_x=Licensed under {license}
  2371. marketplace.developed_by_x=Developed by {organization}
  2372. marketplace.install_pending=Install Pending
  2373. marketplace.update_pending=Update Pending
  2374. marketplace.uninstall_pending=Uninstall Pending
  2375. marketplace.updates=Updates
  2376. marketplace.update_status.COMPATIBLE=Compatible
  2377. marketplace.update_status.INCOMPATIBLE=Incompatible
  2378. marketplace.update_status.REQUIRES_SYSTEM_UPGRADE=Requires system update
  2379. marketplace.update_status.DEPS_REQUIRE_SYSTEM_UPGRADE=Some of dependencies requires system update
  2380. marketplace.installing_this_plugin_will_also_install_x=Installing this plugin will also install: {0}
  2381. marketplace.update_to_x=Update to {0}
  2382. marketplace.uninstall=Uninstall
  2383. marketplace.i_accept_the=I accept the
  2384. marketplace.terms_and_conditions=Terms and Conditions
  2385. marketplace.release_notes=Release Notes
  2386. marketplace.how_to_setup_cluster_url=Further configuration is required to set up a cluster. See {url} documentation.
  2387. marketplace.search=Search by features, tags, or categories...
  2388. #------------------------------------------------------------------------------
  2389. #
  2390. # BACKGROUND TASKS
  2391. #
  2392. #------------------------------------------------------------------------------
  2393. component_navigation.status.failed=The last background task has failed.
  2394. component_navigation.status.failed_X=The {type} has failed.
  2395. component_navigation.status.failed.admin=The last background task has failed. More details available on the {url} page.
  2396. component_navigation.status.failed_X.admin=The {type} has failed. More details available on the {url} page.
  2397. component_navigation.status.failed_branch=The last analysis on this project ({branch}) failed.
  2398. component_navigation.status.failed_branch_X=The last {type} on this project ({branch}) failed.
  2399. component_navigation.status.failed_branch.admin=The last analysis on this project ({branch}) failed. More details available on the {url} page.
  2400. component_navigation.status.failed_branch_X.admin=The last {type} on this project ({branch}) failed. More details available on the {url} page.
  2401. component_navigation.status.pending=There is a pending background task.
  2402. component_navigation.status.pending_X=There is a pending {type}.
  2403. component_navigation.status.pending.admin=There is a pending background task. More details available on the {url} page.
  2404. component_navigation.status.pending_X.admin=There is a pending {type}. More details available on the {url} page.
  2405. component_navigation.status.in_progress=A background task is in progress.
  2406. component_navigation.status.in_progress_X=The {type} is in progress.
  2407. component_navigation.status.in_progress.admin=A background task is in progress. More details available on the {url} page.
  2408. component_navigation.status.in_progress_X.admin=The {type} is in progress. More details available on the {url} page.
  2409. 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}.
  2410. component_navigation.last_analysis_had_warnings=Last analysis had {warnings}
  2411. component_navigation.x_warnings={warningsCount} {warningsCount, plural, one {warning} other {warnings}}
  2412. background_task.status.ALL=All
  2413. background_task.status.PENDING=Pending
  2414. background_task.status.IN_PROGRESS=In Progress
  2415. background_task.status.SUCCESS=Success
  2416. background_task.status.FAILED=Failed
  2417. background_task.status.CANCELED=Canceled
  2418. background_task.status.ALL_EXCEPT_PENDING=All Except Pending
  2419. background_task.type.ALL=All
  2420. background_task.type.REPORT=Project Analysis
  2421. background_task.type.DEV_REFRESH=Developer Analysis
  2422. background_task.type.DEV_PURGE=Developer Cleaning
  2423. background_tasks.page=Background Tasks
  2424. 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.
  2425. background_tasks.currents_filter.ALL=All
  2426. background_tasks.currents_filter.ONLY_CURRENTS=Only Latest Analysis
  2427. background_tasks.date_filter.ALL=Any Date
  2428. background_tasks.date_filter.TODAY=Today
  2429. background_tasks.date_filter.CUSTOM=Custom
  2430. background_tasks.table.status=Status
  2431. background_tasks.table.task=Task
  2432. background_tasks.table.id=ID
  2433. background_tasks.table.submitted=Submitted
  2434. background_tasks.table.submitter=Submitter
  2435. background_tasks.table.started=Started
  2436. background_tasks.table.finished=Finished
  2437. background_tasks.table.duration=Duration
  2438. background_tasks.filter_by_component_x=Filter by Component "{0}"
  2439. background_tasks.cancel_task=Cancel Task
  2440. background_tasks.cancel_task.text=Are you sure you want to cancel this pending task?
  2441. background_tasks.cancel_all_tasks=Cancel All Pending Tasks
  2442. background_tasks.cancel_all_tasks.text=Are you sure you want to cancel all pending tasks?
  2443. background_tasks.cancel_all_tasks.submit=Cancel All
  2444. background_tasks.scanner_context=Scanner Context
  2445. background_tasks.show_scanner_context=Show Scanner Context
  2446. background_tasks.show_stacktrace=Show Error Details
  2447. background_tasks.show_warnings=Show Warnings
  2448. background_tasks.error_message=Error Message
  2449. background_tasks.error_stacktrace=Error Details
  2450. background_tasks.pending=pending
  2451. background_tasks.pending_time=pending time
  2452. background_tasks.pending_time.description=Pending time of the oldest background task waiting to be processed.
  2453. background_tasks.failures=still failing
  2454. background_tasks.number_of_workers=Number of Workers:
  2455. background_tasks.number_of_workers.warning=Configuring additional workers without first vertically scaling your server could have negative performance impacts.
  2456. background_tasks.change_number_of_workers=Edit CE Workers
  2457. 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).
  2458. background_tasks.add_more_workers=Speed up your analysis by adding more Workers
  2459. background_tasks.add_more_workers.text=Increase the number of Compute Engine Workers with the Enterprise Edition.
  2460. background_tasks.search_by_task_or_component=Search by Task or Component
  2461. background_tasks.failing_count=Count of projects where processing of most recent analysis report failed
  2462. #------------------------------------------------------------------------------
  2463. #
  2464. # SYSTEM
  2465. #
  2466. #------------------------------------------------------------------------------
  2467. system.application_nodes_title=Application Nodes
  2468. 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.
  2469. system.cluster_log_level.info=Your selection affect all Application nodes but not the Search nodes.
  2470. system.copy_id_info=Copy ID information
  2471. system.current_health_of_x=Current health status of {0}
  2472. system.download_logs=Download Logs
  2473. system.download_system_info=Download System Info
  2474. system.download_x=Download {0}
  2475. system.forcing_shutdown_not_recommended=Forcing the shutdown is not recommended and can interrupt the processing of analysis reports.
  2476. system.hide_intermediate_versions=Hide intermediate versions
  2477. system.how_to_upgrade=How to upgrade?
  2478. system.latest_version=Latest Version
  2479. system.lts_version=LTS Version
  2480. 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.
  2481. system.log_level.warning.short=Current logs level has performance impacts, get back to INFO level.
  2482. system.log_level.info=Your selection does not affect the Search Engine.
  2483. system.logs_level=Logs level
  2484. system.new_version_available=A new version of SonarQube is available.
  2485. system.release_notes=Release Notes
  2486. system.released_x=Released {0}
  2487. system.restart_in_progress=Restart in progress
  2488. system.restart_server=Restart Server
  2489. system.instance_restarting={instance} restart is in progress. Ongoing {link} are completing.
  2490. system.search_nodes_title=Search Nodes
  2491. system.see_sonarqube_downloads=See All SonarQube Downloads
  2492. system.server_id=Server ID
  2493. system.set_log_level=Set logs level
  2494. system.show_intermediate_versions=Show intermediate versions
  2495. system.system_upgrade=System Upgrade
  2496. system.version=Version
  2497. system.version_is_availble={version} is available
  2498. #------------------------------------------------------------------------------
  2499. #
  2500. # OVERVIEW
  2501. #
  2502. #------------------------------------------------------------------------------
  2503. overview.failed_conditions=Failed conditions
  2504. overview.X_more_failed_conditions={0} more failed conditions
  2505. overview.X_conditions_failed={0} conditions failed
  2506. overview.quality_gate=Quality Gate Status
  2507. overview.quality_gate_x=Quality Gate: {0}
  2508. overview.quality_gate_failed_with_x=with {0} errors
  2509. overview.quality_gate_code_clean=Your code is clean!
  2510. overview.quality_gate_all_conditions_passed=All conditions passed.
  2511. overview.you_should_define_quality_gate=You should define a quality gate on this project.
  2512. overview.quality_gate.ignored_conditions=Some Quality Gate conditions on New Code were ignored because of the small number of New Lines
  2513. 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.
  2514. 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.
  2515. overview.quality_profiles=Quality Profiles used
  2516. overview.new_code_period_x=New Code: {0}
  2517. overview.max_new_code_period_from_x=Max New Code from: {0}
  2518. overview.started_x=Started {0}
  2519. overview.new_code=New Code
  2520. overview.overall_code=Overall Code
  2521. overview.previous_analysis_x=Previous analysis was {0}
  2522. overview.started_on_x=Started on {0}
  2523. overview.previous_analysis_on_x=Previous analysis on {0}
  2524. overview.on_new_code=On New Code
  2525. overview.on_new_code_long=Conditions on New Code
  2526. overview.about_this_portfolio=About This Portfolio
  2527. overview.about_this_project.APP=About This Application
  2528. overview.about_this_project.TRK=About This Project
  2529. overview.project_activity.APP=Application Activity
  2530. overview.project_activity.TRK=Project Activity
  2531. overview.project_activity.click_to_see=Click to see project activity
  2532. overview.external_links=External Links
  2533. overview.project_key.APP=Application Key
  2534. overview.project_key.TRK=Project Key
  2535. overview.activity=Activity
  2536. overview.recent_activity=Recent Activity
  2537. overview.measures=Measures
  2538. overview.measures.empty_explanation=Measures on New Code will appear after the second analysis of this branch.
  2539. overview.measures.empty_link={learn_more_link} about the Clean as You Code approach.
  2540. overview.measures.security_hotspots_reviewed=Reviewed
  2541. overview.project.no_lines_of_code=This project has no lines of code.
  2542. overview.project.empty=This project is empty.
  2543. overview.project.branch_X_no_lines_of_code=The "{0}" branch has no lines of code.
  2544. overview.project.branch_X_empty=The "{0}" branch of this project is empty.
  2545. overview.project.main_branch_no_lines_of_code=The main branch has no lines of code.
  2546. overview.project.main_branch_empty=The main branch of this project is empty.
  2547. overview.project.branch_needs_new_analysis=The branch data is incomplete. Run a new analysis to update it.
  2548. overview.coverage_on=Coverage on
  2549. overview.coverage_on_X_lines=Coverage on {count} Lines to cover
  2550. overview.coverage_on_X_new_lines=Coverage on {count} New Lines to cover
  2551. overview.duplications_on=Duplications on
  2552. overview.duplications_on_X_lines=Duplications on {count} Lines
  2553. overview.duplications_on_X_new_lines=Duplications on {count} New Lines
  2554. overview.period.previous_version=Since {0}
  2555. # Old periods, necessary to display project that haven't been analyzed with new setting (MMF-1579)
  2556. overview.period.previous_version_only_date=Since previous version
  2557. overview.period.previous_analysis=Since previous analysis
  2558. overview.period.days=Last {0} days
  2559. overview.period.version=Since {0}
  2560. overview.period.date=After {0}
  2561. overview.period.manual_baseline=Since {0}
  2562. # New periods (MMF-1579)
  2563. overview.period.number_of_days=From last {0} days
  2564. overview.period.specific_analysis=Since {0}
  2565. overview.gate.ERROR=Failed
  2566. overview.gate.WARN=Warning
  2567. overview.gate.OK=Passed
  2568. overview.gate.view.no_alert=The view has passed the quality gate.
  2569. overview.gate.view.warnings=The view has warnings on the following quality gate conditions: {0}.
  2570. overview.gate.view.errors=The view failed the quality gate on the following conditions: {0}.
  2571. overview.domain.duplications=Duplications
  2572. overview.domain.size=Size
  2573. overview.complexity_tooltip.function={0} functions have complexity around {1}
  2574. overview.complexity_tooltip.file={0} files have complexity around {1}
  2575. overview.deprecated_profile=This quality profile uses {0} deprecated rules and should be updated.
  2576. overview.deleted_profile={0} has been deleted since the last analysis.
  2577. overview.badges.get_badge.TRK=Get project badges
  2578. overview.badges.get_badge.VW=Get portfolio badges
  2579. overview.badges.get_badge.APP=Get application badges
  2580. overview.badges.title=Get project badges
  2581. overview.badges.description.TRK=Show the status of your project metrics on your README or website. Pick your style:
  2582. overview.badges.description.VW=Show the status of your portfolio metrics on your README or website. Pick your style:
  2583. overview.badges.description.APP=Show the status of your application metrics on your README or website. Pick your style:
  2584. overview.badges.metric=Metric
  2585. overview.badges.options.colors.white=White
  2586. overview.badges.options.colors.black=Black
  2587. overview.badges.options.colors.orange=Orange
  2588. overview.badges.options.formats.md=Markdown
  2589. overview.badges.options.formats.url=Image URL only
  2590. overview.badges.measure.alt=Standard badge
  2591. overview.badges.measure.description.TRK=Displays the current status of one metric of your project.
  2592. overview.badges.measure.description.VW=Displays the current status of one metric of your portfolio.
  2593. overview.badges.measure.description.APP=Displays the current status of one metric of your application.
  2594. overview.badges.marketing.alt=Scanned on SonarCloud badge
  2595. overview.badges.marketing.description=This badge lets you advertise that you're using SonarCloud for code quality.
  2596. overview.badges.marketing.description.TRK=This badge lets you advertise that you're using SonarCloud for code quality.
  2597. overview.badges.quality_gate.alt=Quality Gate badge
  2598. overview.badges.quality_gate.description=Displays the current quality gate status of your project.
  2599. overview.badges.quality_gate.description.APP=Displays the current quality gate status of your application.
  2600. overview.badges.quality_gate.description.TRK=Displays the current quality gate status of your project.
  2601. overview.badges.quality_gate.description.VW=Displays the current quality gate status of your portfolio.
  2602. #------------------------------------------------------------------------------
  2603. #
  2604. # WS API
  2605. #
  2606. #------------------------------------------------------------------------------
  2607. 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.
  2608. api_documentation.internal_tooltip=Use at your own risk; internal services are subject to change or removal without notice.
  2609. api_documentation.page=Web API
  2610. api_documentation.show_deprecated=Show Deprecated API
  2611. api_documentation.show_internal=Show Internal API
  2612. api_documentation.possible_values=Possible values
  2613. api_documentation.default_values=Default value
  2614. api_documentation.example_values=Example value
  2615. api_documentation.max_values=Maximum allowed values
  2616. api_documentation.min_value=Minimum value
  2617. api_documentation.max_value=Maximum value
  2618. api_documentation.min_length=Minimum length
  2619. api_documentation.max_length=Maximum length
  2620. api_documentation.internal=internal
  2621. api_documentation.deprecated=deprecated
  2622. api_documentation.deprecated_since_x=deprecated since {0}
  2623. api_documentation.will_be_removed_in_x=Will be removed in {0}
  2624. api_documentation.parameters=Parameters
  2625. api_documentation.response_example=Response Example
  2626. api_documentation.changelog=Changelog
  2627. api_documentation.search=Search by name...
  2628. #------------------------------------------------------------------------------
  2629. #
  2630. # DOCUMENTATION PAGE
  2631. #
  2632. #------------------------------------------------------------------------------
  2633. documentation.page=Documentation
  2634. documentation.page_title.sonarcloud=SonarCloud Docs
  2635. documentation.page_title.sonarqube=SonarQube Docs
  2636. documentation.on_this_page=On this page
  2637. documentation.skip_to_nav=Skip to documentation navigation
  2638. #------------------------------------------------------------------------------
  2639. #
  2640. # CODE
  2641. #
  2642. #------------------------------------------------------------------------------
  2643. code.open_component_page=Open Component's Page
  2644. code.search_placeholder=Search for files...
  2645. code.search_placeholder.portfolio=Search for projects and sub-portfolios...
  2646. #------------------------------------------------------------------------------
  2647. #
  2648. # COMPONENT MEASURES
  2649. #
  2650. #------------------------------------------------------------------------------
  2651. component_measures.details_are_not_available=Details are not available for estimated measures.
  2652. component_measures.domain_x_overview={0} Overview
  2653. component_measures.domain_overview=Overview
  2654. component_measures.files=files
  2655. component_measures.show_metric_history=Show history of this metric
  2656. component_measures.tab.tree=Tree
  2657. component_measures.tab.list=List
  2658. component_measures.tab.treemap=Treemap
  2659. component_measures.view_as=View as
  2660. component_measures.legend.color_x=Color: {0}
  2661. component_measures.legend.size_x=Size: {0}
  2662. component_measures.legend.worse_of_x_y=Worse of {0} and {1}
  2663. component_measures.no_history=There isn't enough data to generate an activity graph.
  2664. component_measures.not_found=The requested measure was not found.
  2665. component_measures.empty=No measures.
  2666. component_measures.to_select_files=to select files
  2667. component_measures.to_navigate=to navigate
  2668. component_measures.to_navigate_files=to next/previous file
  2669. component_measures.hidden_best_score_metrics=There are {0} hidden components with a score of {1}.
  2670. component_measures.skip_to_filters=Skip to measure filters
  2671. component_measures.overview.project_overview.facet=Project Overview
  2672. component_measures.overview.project_overview.title=Risk
  2673. 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.
  2674. 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.
  2675. 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.
  2676. 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.
  2677. 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.
  2678. 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.
  2679. component_measures.domain_facets.Reliability.help=Issues in this domain mark code where you will get behavior other than what was expected.
  2680. component_measures.domain_facets.Maintainability.help=Issues in this domain mark code that will be more difficult to update competently than it should.
  2681. component_measures.domain_facets.Security.help=Issues in this domain mark potential weaknesses to hackers.
  2682. component_measures.domain_facets.SecurityReview.help=This domain represents potential security risks in the form of hotspots and their review status.
  2683. 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
  2684. component_measures.facet_category.new_code_category=On new code
  2685. component_measures.facet_category.overall_category=Overall
  2686. component_measures.facet_category.overall_category.estimated=Estimated after merge
  2687. component_measures.facet_category.tests_category=Tests
  2688. component_measures.bubble_chart.zoom_level=Current zoom level. Scroll on the chart to zoom or unzoom, click here to reset.
  2689. #------------------------------------------------------------------------------
  2690. #
  2691. # ABOUT PAGE
  2692. #
  2693. #------------------------------------------------------------------------------
  2694. about_page.projects_analyzed=Projects Analyzed
  2695. about_page.read_more=Read More
  2696. about_page.read_documentation=Read documentation
  2697. about_page.languages=Multi-Language
  2698. about_page.languages.text=20+ programming languages are supported by SonarQube thanks to our in-house code analyzers, including:
  2699. about_page.quality_model=Quality Model
  2700. about_page.quality_model.bugs=track code that is demonstrably wrong or highly likely to yield unexpected behavior.
  2701. about_page.quality_model.vulnerabilities=are raised on code that can be exploited by hackers.
  2702. 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.
  2703. about_page.quality_model.security_hotspots=are raised on security-sensitive code that requires manual review to assess whether or not a vulnerability exists.
  2704. about_page.clean_code=Write Clean Code
  2705. 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.
  2706. about_page.fix_the_leak=Clean as You Code
  2707. 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.
  2708. about_page.quality_gates=Enforce Quality Gate
  2709. 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.
  2710. about_page.standards=Follow Standards
  2711. about_page.standards.text=Code analyzers offer rules that support industry standards. Configure your Quality Profile with standard-related rules to ensure adherence.
  2712. about_page.scanners=Run Analysis With A SonarQube Scanner
  2713. 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.
  2714. about_page.scanners.sonarqube=SonarQube Scanner
  2715. about_page.scanners.msbuild=SonarQube Scanner for MSBuild
  2716. about_page.scanners.maven=SonarQube Scanner for Maven
  2717. about_page.scanners.gradle=SonarQube Scanner for Gradle
  2718. about_page.scanners.jenkins=SonarQube Scanner for Jenkins
  2719. about_page.scanners.ant=SonarQube Scanner for Ant
  2720. #------------------------------------------------------------------------------
  2721. #
  2722. # ORGANIZATIONS
  2723. #
  2724. #------------------------------------------------------------------------------
  2725. organization.avatar=Avatar
  2726. organization.avatar.description=Url of a small image that represents the organization (preferably 30px height).
  2727. organization.avatar.preview=Preview
  2728. organization.bind_to_x=Bind this organization to {0}
  2729. organization.go_to_settings_to_bind=Go to Organization Settings to bind it
  2730. organization.bound=This organization is bound.
  2731. organization.bound_to_x=This organization is bound to {0}
  2732. organization.not_bound_to_x=This organization is not bound to {0}
  2733. organization.created=Organization "{0}" has been created.
  2734. organization.delete=Delete Organization
  2735. organization.delete_x=Delete the "{0}" organization
  2736. organization.delete.description=Delete this organization from {instance}. All projects belonging to the organization will be deleted as well. The operation cannot be undone.
  2737. organization.delete.sonarcloud.paid_plan_info=Your current paid plan subscription will stop and you won't be charged anymore.
  2738. organization.delete.question=Are you sure you want to delete this organization?
  2739. organization.deleted=Organization has been deleted.
  2740. organization.deleted_x=Organization "{0}" has been deleted.
  2741. organization.description=Description
  2742. organization.description.description=Description of the organization.
  2743. organization.details=Organization details
  2744. organization.key=Key
  2745. organization.key.description=Key of the organization (up to 255 characters). All chars must be lower-case letters (a to z), digits or dash (but dash can neither be trailing nor heading). When not specified, the key is computed from the name.
  2746. organization.name=Name
  2747. organization.name.description=Name of the organization (up to 255 characters).
  2748. organization.see_on_x=See on {0}
  2749. organization.settings=Organization settings
  2750. organization.updated=Organization details have been updated.
  2751. organization.url=Url
  2752. organization.url.description=Url of the homepage of the organization.
  2753. organization.binding_with_x_easy_sync=Binding an organization from SonarCloud with {0} is an easy way to keep them synchronized.
  2754. organization.app_will_be_installed_on_x=To bind this organization to {0}, the SonarCloud application will be installed.
  2755. organization.members.page=Members
  2756. organization.members.page.description=Add users to the organization and grant them permissions to work on the projects. See {link} documentation.
  2757. organization.members.add=Add a member
  2758. organization.members.add.multiple=Add members
  2759. organization.members.x_groups={0} group(s)
  2760. organization.members.members=member(s)
  2761. organization.members.remove=Remove from organization's members
  2762. organization.members.remove_x=Are you sure you want to remove {0} from {1}'s members ?
  2763. organization.members.manage_groups=Manage groups
  2764. organization.members.members_groups={0}'s groups:
  2765. organization.members.manage_a_team=Manage a team
  2766. organization.members.add_to_members=Add to members
  2767. organization.members.config_synchro=Configure Synchronization
  2768. organization.members.auto_sync_with_x=Automatic sync with {0}
  2769. organization.members.auto_sync_members_from_org_x=Now your members can be automatically synchronized with your {0}.
  2770. organization.members.auto_sync_total_help.github=You might not see all members from your GitHub organization yet, as they need to connect to SonarCloud at least once to appear in this list.
  2771. organization.members.see_all_members_on_x=See all members on {0}
  2772. organization.members.management.title=Members Management
  2773. organization.members.management.description=Select your management mode for members of this organization.
  2774. organization.members.management.manual=Manual
  2775. organization.members.management.manual.add_members_manually=Admin add members manually from SonarCloud existing users
  2776. organization.members.management.automatic=Automatic sync with {0}
  2777. organization.members.management.automatic.synchronized_from_x=Members are synchronized automatically from your {0}
  2778. organization.members.management.automatic.members_changes_reflected.github=If you add or remove a member on GitHub, SonarCloud immediately reflects the changes
  2779. organization.members.management.automatic.warning_x=This will override your current Members, removing those that are not part of your {0}.
  2780. organization.members.management.choose_members_permissions=Admin manages permissions for each member in SonarCloud
  2781. organization.paid_plan.badge=Paid plan
  2782. organization.default_visibility_of_new_projects=Default visibility of new projects:
  2783. organization.change_visibility_form.header=Set Default Visibility of New Projects
  2784. organization.change_visibility_form.warning=This will not change the visibility of already existing projects.
  2785. organization.change_visibility_form.submit=Change Default Visibility
  2786. organization.bind.success=Organization bound successfully
  2787. #------------------------------------------------------------------------------
  2788. #
  2789. # EMBEDED DOCS
  2790. #
  2791. #------------------------------------------------------------------------------
  2792. embed_docs.blog=Blog
  2793. embed_docs.documentation=Documentation
  2794. embed_docs.get_help=Get Help
  2795. embed_docs.latest_blog=Latest blog
  2796. embed_docs.news=Product News
  2797. embed_docs.stay_connected=Stay Connected
  2798. embed_docs.suggestion=Suggestions For This Page
  2799. embed_docs.whats_new=What's new on SonarCloud?
  2800. #------------------------------------------------------------------------------
  2801. #
  2802. # GLOBAL FOOTER
  2803. #
  2804. #------------------------------------------------------------------------------
  2805. footer.about=About
  2806. footer.community=Community
  2807. footer.contact_us=Contact us
  2808. footer.documentation=Documentation
  2809. footer.help=Help
  2810. footer.license=LGPL v3
  2811. footer.news=News
  2812. footer.plugins=Plugins
  2813. footer.pricing=Pricing
  2814. footer.privacy=Privacy
  2815. 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.
  2816. footer.production_database_warning=Embedded database should be used for evaluation purposes only
  2817. footer.security=Security
  2818. footer.support=Get Support
  2819. footer.status=Status
  2820. footer.terms=Terms
  2821. footer.twitter=Twitter
  2822. footer.version_x=Version {0}
  2823. footer.web_api=Web API
  2824. #------------------------------------------------------------------------------
  2825. #
  2826. # ONBOARDING
  2827. #
  2828. #------------------------------------------------------------------------------
  2829. onboarding.header=Welcome to SonarCloud
  2830. onboarding.header.description=Let us help you get started in your journey to code quality
  2831. onboarding.footer=Don't worry you can do all of this later. Just click the "+" icon on your top bar.
  2832. onboarding.finish=Finish
  2833. onboarding.project.header=Analyze a project
  2834. onboarding.project.header.description=Want to quickly analyze a first project? Follow these {0} easy steps.
  2835. onboarding.project.create=Create a new project
  2836. onboarding.project_analysis.header=Analyze your project
  2837. onboarding.project_analysis.description=We initialized your project on {instance}, now it's up to you to launch analyses!
  2838. onboarding.project_analysis.commands_for_analysis=Below are the commands to use to do an analysis.
  2839. onboarding.project_analysis.guide_to_integrate_pipelines=follow the guide to integrating with Pipelines
  2840. onboarding.project_analysis.guide_to_integrate_bitbucket_cloud=Get started with Bitbucket Cloud
  2841. onboarding.project_analysis.guide_to_integrate_travis=follow the guide to integrating with Travis CI
  2842. onboarding.project_analysis.guide_to_integrate_vsts=follow the guide to integrating with Azure DevOps Services
  2843. onboarding.project_analysis.simply_link=Simply {link}.
  2844. onboarding.project_analysis.suggestions.bitbucket=Please follow the {link} guide to find out how to configure your CI to analyze your repository in a couple of minutes.
  2845. onboarding.project_analysis.suggestions.bitbucket_extra=In case you need it, the steps below will help you find the relevant command to execute in your build script.
  2846. onboarding.project_analysis.suggestions.github=If you are using Travis CI, the SonarCloud Travis Add-on makes it easier to run these commands with your CI process.
  2847. onboarding.create_project.header=Analyze projects
  2848. onboarding.create_project.setup_manually=Create manually
  2849. onboarding.create_project.create_new_org=Create another organization
  2850. onboarding.create_project.import_new_org=Import another organization
  2851. onboarding.create_project.install_app_description.bitbucket=We need you to install the SonarCloud Bitbucket application on one of your team in order to select which repositories you want to analyze.
  2852. onboarding.create_project.install_app_description.github=We need you to install the SonarCloud GitHub application on one of your organization in order to select which repositories you want to analyze.
  2853. onboarding.create_project.1_repository_selected=1 repository selected
  2854. onboarding.create_project.x_repositories_selected={0} repositories selected
  2855. onboarding.create_project.1_repository_created_as_public=1 repository will be created as a public project on SonarCloud
  2856. onboarding.create_project.x_repository_created_as_public={0} repositories will be created as public projects on SonarCloud
  2857. onboarding.create_project.1_repository_created_as_private=1 repository will be created as a private project on SonarCloud
  2858. onboarding.create_project.x_repository_created_as_private={0} repositories will be created as private projects on SonarCloud
  2859. onboarding.create_project.no_repositories=No repositories found for this organization.
  2860. onboarding.create_project.organization=Organization
  2861. onboarding.create_project.project_key=Project key
  2862. onboarding.create_project.project_key.description=Up to 400 characters. All letters, digits, dash, underscore, period or colon.
  2863. onboarding.create_project.project_key.error=The provided value doesn't match the expected format.
  2864. 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.
  2865. onboarding.create_project.project_key.taken=This project key is already taken.
  2866. onboarding.create_project.display_name=Display name
  2867. onboarding.create_project.display_name.error=The display name is required.
  2868. onboarding.create_project.display_name.description=Up to 255 characters
  2869. onboarding.create_project.display_name.help=Some scanners might override the value you provide.
  2870. onboarding.create_project.repository_imported=Already set up
  2871. onboarding.create_project.see_project=See the project
  2872. onboarding.create_project.search_repositories_by_name=Search for repository name starting with...
  2873. onboarding.create_project.select_repositories=Select repositories
  2874. onboarding.create_project.select_all_repositories=Select all available repositories
  2875. onboarding.create_project.subscribe_to_import_private_repositories=You need to subscribe your organization to a paid plan to import private projects
  2876. onboarding.create_project.encourage_to_subscribe=Subscribe your organization to our paid plan to get unlimited private projects.
  2877. onboarding.create_project.subscribtion_success_x={0} has been successfully upgraded to paid plan. You can now import and analyze private projects.
  2878. onboarding.create_project.from_bbs=From Bitbucket Server
  2879. onboarding.create_project.grant_access_to_bbs.title=Grant access to your repositories
  2880. onboarding.create_project.grant_access_to_bbs.help=SonarQube needs a personal access token to access and list your repositories from Bitbucket Server.
  2881. onboarding.create_project.select_method=How do you want to create your project?
  2882. onboarding.create_project.select_method.manual=Manually
  2883. onboarding.create_project.select_method.from_bbs=From a Bitbucket Server repository
  2884. onboarding.create_project.check_bbs_supported=Checking if available
  2885. onboarding.create_project.too_many_bbs_instances_X=You must have exactly 1 Bitbucket Server instance configured in order to use this method. You currently have {0}.
  2886. onboarding.create_project.zero_bbs_instances=You must first configure a Bitbucket Server instance.
  2887. onboarding.create_project.bbs_not_configured=This feature isn't available
  2888. onboarding.create_project.no_bbs_binding=You must have exactly at least 1 Bitbucket Server instance configured in order to use this method, but none were found. Either create the project manually, or contact your system administrator.
  2889. onboarding.create_project.no_bbs_binding.admin=You must have exactly at least 1 Bitbucket Server instance configured in order to use this method. You can configure instances under {url}.
  2890. onboarding.create_project.enter_pat=Enter personal access token
  2891. onboarding.create_project.pat_incorrect=Your personal access token failed to validate.
  2892. onboarding.create_project.pat_help.title=How to create a personal access token?
  2893. onboarding.create_project.pat_help.bbs_help_1=Click the following link to generate a token in Bitbucket Server, and copy-paste it into the personal access token field.
  2894. onboarding.create_project.pat_help.bbs_help_2=Set a name, for example "SonarQube", and select the following permissions:
  2895. onboarding.create_project.pat_help.link=Create personal access token
  2896. onboarding.create_project.pat_help.bbs_permission_projects=Projects: {perm}
  2897. onboarding.create_project.pat_help.bbs_permission_repos=Repositories: {perm}
  2898. onboarding.create_project.pat_help.read_permission=Read
  2899. onboarding.create_project.no_bbs_projects=No projects could be fetched from Bitbucket Server. Contact your system administrator, or {link}.
  2900. onboarding.create_project.no_bbs_repos=No repositories were found for this project. Contact your system administrator, or {link}.
  2901. onboarding.create_project.update_your_token=update your personal access token
  2902. onboarding.create_project.no_bbs_repos.filter=No repositories match your filter.
  2903. 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.
  2904. onboarding.create_project.import_selected_repo=Set up selected repository
  2905. onboarding.create_project.go_to_project=Go to project
  2906. onboarding.create_organization.page.header=Create Organization
  2907. onboarding.create_organization.page.description=An organization is a space where a team or a whole company can collaborate accross many projects.
  2908. onboarding.create_organization.organization_name=Key
  2909. onboarding.create_organization.organization_name.description=Up to 255 characters. All chars must be lower-case letters (a to z), digits or dash (but dash can neither be trailing nor heading). The display name can be specified in the additional info.
  2910. onboarding.create_organization.organization_name.error=The provided value doesn't match the expected format.
  2911. onboarding.create_organization.organization_name.taken=This name is already taken.
  2912. onboarding.create_organization.add_additional_info=Add additional info
  2913. onboarding.create_organization.hide_additional_info=Hide additional info
  2914. onboarding.create_organization.description=Description
  2915. onboarding.create_organization.description.error=The provided value doesn't match the expected format.
  2916. onboarding.create_organization.display_name=Display Name
  2917. onboarding.create_organization.display_name.description=Up to 255 characters
  2918. onboarding.create_organization.display_name.error=The provided value doesn't match the expected format.
  2919. onboarding.create_organization.avatar=Avatar
  2920. onboarding.create_organization.avatar.description=Url of a small image that represents the organization (preferably 30px height).
  2921. onboarding.create_organization.avatar.error=The value must be a valid url.
  2922. onboarding.create_organization.avatar.placeholder=Default avatar
  2923. onboarding.create_organization.url=URL
  2924. onboarding.create_organization.url.error=The value must be a valid url.
  2925. onboarding.create_organization.enter_org_details=Enter your organization details
  2926. onboarding.create_organization.create_manually=Create manually
  2927. onboarding.create_organization.enter_payment_details=Enter payment details
  2928. onboarding.create_organization.choose_plan=Choose a plan
  2929. onboarding.create_organization.enter_your_coupon=Enter your coupon
  2930. onboarding.create_organization.create_and_upgrade=Create Organization and Upgrade
  2931. onboarding.create_organization.ready=All set! Your organization is now ready to go
  2932. onboarding.import_organization.bind=Bind Organization
  2933. onboarding.import_organization.choose_unbound_installation_x=Choose one of your {0} that already have the SonarCloud application installed:
  2934. onboarding.import_organization.import=Import Organization
  2935. onboarding.import_organization.import_org_details=Import organization details
  2936. onboarding.import_organization.org_not_found=We were not able to find the requested organization, here are a few tips to help you troubleshoot the issue:
  2937. onboarding.import_organization.org_not_found.tips_1=You must be an administrator of the organization
  2938. onboarding.import_organization.org_not_found.tips_2=Try to uninstall and re-install the SonarCloud App (using the button bellow)
  2939. onboarding.import_organization.choose_organization=Choose an organization...
  2940. onboarding.import_organization.choose_organization_button.bitbucket=Choose a team on Bitbucket
  2941. onboarding.import_organization.choose_organization_button.github=Choose an organization on GitHub
  2942. onboarding.import_organization.choose_the_organization_button.bitbucket=Choose the team on Bitbucket
  2943. onboarding.import_organization.choose_the_organization_button.github=Choose the organization on GitHub
  2944. onboarding.import_organization.installing=Finalize installation of the {0} application...
  2945. onboarding.import_organization.personal.import_org_details=Import personal organization details
  2946. onboarding.import_organization.private.disabled=Selecting private repository is not available yet and will come soon. Meanwhile, you need to create the project manually.
  2947. onboarding.import_organization.import_from_x=Import from {0}
  2948. onboarding.import_organization.bind_existing=Bind to an existing SonarCloud organization
  2949. onboarding.import_organization.create_new=Create new SonarCloud organization from it
  2950. onboarding.import_organization.already_bound_x=Your organization {avatar} {name} is already bound to the SonarCloud organization {boundAvatar} {boundName}. Try again and choose a different organization.
  2951. onboarding.import_organization.members_sync_info_x=All members from your {0} {1} will be added to your SonarCloud organization. As they connect to SonarCloud with their {2} account, members will automatically have access to your SonarCloud organization and its projects.
  2952. onboarding.import_organization.bind_members_not_sync_info_x=We'll keep your members, groups and permissions as they are today on SonarCloud. To sync your members with your {0}, enable members sync in your Members tab.
  2953. onboarding.import_organization_x=Import {avatar} {name} into a SonarCloud organization
  2954. onboarding.import_personal_organization_x=Bind {avatar} {name} with your personal SonarCloud organization {personalAvatar} {personalName}
  2955. onboarding.binding_organization=Binding organization
  2956. onboarding.team.header=Join a team
  2957. onboarding.team.first_step=Well congrats, the first step is done!
  2958. onboarding.team.how_to_join=To join a team, the only thing you need to do is to be a user registered on Sonarcloud. The administrator of the Sonarcloud organization you wish to join has to add you to their organization's members {link}. Ask them to do so!
  2959. onboarding.team.work_in_progress=We are currently working on a better way to join a team or invite people to yours.
  2960. onboarding.analyze_your_code.note=Free
  2961. onboarding.analyze_your_code=Analyze your code
  2962. onboarding.contribute_existing_project=Join a team
  2963. onboarding.browse_your_organizations=Browse your organizations
  2964. onboarding.token.header=Provide a token
  2965. 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}.
  2966. onboarding.token.text.user_account=user account
  2967. onboarding.token.generate=Generate
  2968. onboarding.token.placeholder=Enter a name for your token
  2969. onboarding.token.generate_token=Generate a token
  2970. onboarding.token.generate_token.placeholder=Enter a name for your token
  2971. onboarding.token.use_existing_token=Use existing token
  2972. onboarding.token.use_existing_token.placeholder=Enter your existing token
  2973. onboarding.token.invalid_format=The token you have entered has invalid format.
  2974. onboarding.organization.header=Choose an organization for your project
  2975. onboarding.organization.text=Organizations are where your projects belong. You can add your team members to your organization later to allow them to contribute to your projects.
  2976. onboarding.organization.placeholder=Enter a name for your organization
  2977. onboarding.organization.my_personal_organization=My personal organization
  2978. onboarding.organization.exising_organization=Existing organization
  2979. onboarding.organization.create_another_organization=Create another organization
  2980. onboarding.organization.key_requirement=2 to 32 characters. All chars must be lower-case letters (a to z), digits or dash (but dash can neither be trailing nor heading)
  2981. onboarding.project_key_requirement=Allowed characters are alphanumeric, '-', '_', '.' and ':', with at least one non-digit. 400 characters max.
  2982. onboarding.analysis.header=Run analysis on your project
  2983. 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.
  2984. onboarding.analysis.browse_url_after_analysis=Once the analysis is completed, you will be able to browse your project at the URL displayed at the end of the logs.
  2985. onboarding.build=What is your build technology?
  2986. onboarding.build.maven=Maven
  2987. onboarding.build.gradle=Gradle
  2988. onboarding.build.make=Make
  2989. onboarding.build.other=Other (for JS, TS, Go, Python, PHP, ...)
  2990. onboarding.language=What is your project's main language?
  2991. onboarding.language.header=Which primary language are you using?
  2992. onboarding.language.java=Java
  2993. onboarding.language.java.build_technology=You are developing primarily in Java: what is your build technology?
  2994. onboarding.language.java.build_technology.maven=Maven
  2995. onboarding.language.java.build_technology.gradle=Gradle
  2996. onboarding.language.dotnet=C# or VB.NET
  2997. onboarding.language.c-family=C, C++, Objective-C
  2998. onboarding.language.c-family.compiler=Which compiler are you using?
  2999. onboarding.language.c-family.compiler.msvc=Microsoft Visual C++
  3000. onboarding.language.c-family.compiler.clang-gcc=Clang or GCC
  3001. onboarding.language.other=Other (JS, TS, Go, Python, PHP, ...)
  3002. onboarding.language.os=What is your OS?
  3003. onboarding.language.os.linux=Linux
  3004. onboarding.language.os.win=Windows
  3005. onboarding.language.os.mac=macOS
  3006. onboarding.language.project_key=Define a unique project key
  3007. onboarding.analysis.docs=Please visit the {link} for more details.
  3008. onboarding.analysis.java.maven.header=Execute the Scanner for Maven from your computer
  3009. onboarding.analysis.java.maven.header.ci=Execute the Scanner for Maven from your CI
  3010. 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.
  3011. onboarding.analysis.java.maven.docs_link=official documentation of the Scanner for Maven
  3012. onboarding.analysis.java.maven.text.custom=Run the following command in your project's folder.
  3013. onboarding.analysis.java.maven.text.custom.ci=Run the following command in the project's folder.
  3014. onboarding.analysis.java.maven.header.sonarcloud=Execute the Scanner for Maven from Travis
  3015. onboarding.analysis.java.maven.text.sonarcloud=Add the following lines to your <code>.travis.yml</code> file:
  3016. onboarding.analysis.java.maven.docs.sonarcloud=Please visit the <a href="http://redirect.sonarsource.com/doc/install-configure-scanner-maven.html" rel="noopener noreferrer" target="_blank">official documentation of the Scanner for Maven</a> for more details, and the <a href="https://github.com/SonarSource/sq-com_example_java-maven-travis" rel="noopener noreferrer" target="_blank">live Maven-based example project</a> to know more about this use case.
  3017. onboarding.analysis.java.gradle.header=Execute the Scanner for Gradle from your computer
  3018. onboarding.analysis.java.gradle.header.ci=Execute the Scanner for Gradle from your CI
  3019. 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:
  3020. onboarding.analysis.java.gradle.text.2=and run the following command:
  3021. onboarding.analysis.java.gradle.docs_link=official documentation of the Scanner for Gradle
  3022. onboarding.analysis.java.gradle.header.sonarcloud=Execute the Scanner for Gradle from Travis
  3023. onboarding.analysis.java.gradle.text.1.sonarcloud=Declare the {plugin} plugin in your {file} file:
  3024. onboarding.analysis.java.gradle.text.2.sonarcloud=and add the following lines to your {file} file:
  3025. onboarding.analysis.msbuild.header=Download and unzip the Scanner for MSBuild
  3026. onboarding.analysis.msbuild.text=And add the executable's directory to the {code} environment variable
  3027. onboarding.analysis.msbuild.execute=Execute the Scanner for MSBuild from your computer
  3028. 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.
  3029. onboarding.analysis.msbuild.docs_link=official documentation of the Scanner for MSBuild
  3030. onboarding.analysis.msbuild.header.sonarcloud=Download and unzip the Scanner for MSBuild
  3031. onboarding.analysis.msbuild.text.sonarcloud=And add the executable's directory to the <code>%PATH%</code> environment variable
  3032. onboarding.analysis.msbuild.execute.sonarcloud=Execute the Scanner for MSBuild from your computer
  3033. onboarding.analysis.msbuild.execute.text.sonarcloud=Execute the following commands at the root of your solution.
  3034. onboarding.analysis.msbuild.docs.sonarcloud=Please visit the <a href="http://redirect.sonarsource.com/doc/install-configure-scanner-msbuild.html" rel="noopener noreferrer" target="_blank">official documentation of the Scanner for MSBuild</a> for more details.
  3035. onboarding.analysis.build_wrapper.header.linux=Download and unzip the Build Wrapper for Linux
  3036. onboarding.analysis.build_wrapper.header.win=Download and unzip the Build Wrapper for Windows
  3037. onboarding.analysis.build_wrapper.header.mac=Download and unzip the Build Wrapper for macOS
  3038. onboarding.analysis.build_wrapper.header.ci=Download and unzip the Build Wrapper for your CI
  3039. onboarding.analysis.build_wrapper.text=And add the executable's directory to the {env_var} environment variable
  3040. onboarding.analysis.build_wrapper.text.linux=And add the executable's directory to the <code>PATH</code> environment variable
  3041. onboarding.analysis.build_wrapper.text.win=And add the executable's directory to the <code>%PATH%</code> environment variable
  3042. onboarding.analysis.build_wrapper.text.mac=And add the executable's directory to the <code>PATH</code> environment variable
  3043. onboarding.analysis.build_wrapper.text.ci=And add the executable's directory to the <code>PATH</code> environment variable
  3044. onboarding.analysis.sonar_scanner_version=3.3.0.1492
  3045. onboarding.analysis.sq_scanner.header.linux=Download and unzip the Scanner for Linux
  3046. onboarding.analysis.sq_scanner.header.win=Download and unzip the Scanner for Windows
  3047. onboarding.analysis.sq_scanner.header.mac=Download and unzip the Scanner for macOS
  3048. onboarding.analysis.sq_scanner.header.ci=Download and unzip the Scanner for your CI
  3049. onboarding.analysis.sq_scanner.text=And add the {dir} directory to the {env_var} environment variable
  3050. onboarding.analysis.sq_scanner.text.linux=And add the <code>bin</code> directory to the <code>PATH</code> environment variable
  3051. onboarding.analysis.sq_scanner.text.win=And add the <code>bin</code> directory to the <code>%PATH%</code> environment variable
  3052. onboarding.analysis.sq_scanner.text.mac=And add the <code>bin</code> directory to the <code>PATH</code> environment variable
  3053. onboarding.analysis.sq_scanner.text.ci=And add the <code>bin</code> directory to the <code>PATH</code> environment variable
  3054. onboarding.analysis.sq_scanner.text.sonarcloud=Add the following lines to your {file} file:
  3055. onboarding.analysis.sq_scanner.execute=Execute the Scanner from your computer
  3056. onboarding.analysis.sq_scanner.execute.ci=Execute the Scanner in the project's folder
  3057. 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.
  3058. onboarding.analysis.sq_scanner.execute.text.custom=Run the following commands in your project's folder.
  3059. onboarding.analysis.sq_scanner.docs=Please visit the {link} for more details.
  3060. onboarding.analysis.sq_scanner.docs_use_case=Please visit the {link} for more details, and the {useCaseLink} to know more about this use case.
  3061. onboarding.analysis.sq_scanner.docs_link=official documentation of the Scanner
  3062. onboarding.analysis.standard.docs=Please visit the <a href="http://redirect.sonarsource.com/doc/install-configure-scanner.html" rel="noopener noreferrer" target="_blank">official documentation of the Scanner</a> for more details, and the <a href="https://github.com/SonarSource/sq-com_example_standard-sqscanner-travis" rel="noopener noreferrer" target="_blank">live standard example project</a> to know more about this use case.
  3063. onboarding.analysis.sqscanner.docs.gradle.title=official documentation of the Scanner for Gradle
  3064. onboarding.analysis.sqscanner.docs.gradle.example_project.title=live Gradle-based example project
  3065. onboarding.project_watcher.not_started=Once your project is analyzed, this page will refresh automatically.
  3066. onboarding.project_watcher.in_progress=Analysis is in progress, please wait...
  3067. onboarding.project_watcher.finished=Analysis is finished, redirecting...
  3068. onboarding.project_watcher.failed=Something went wrong, please check the analysis logs.
  3069. onboarding.analysis.travis.sonarcloud=Edit your {filename} file
  3070. onboarding.finished.title=Once analysis is complete, results will appear here.
  3071. onboarding.finished.text=Each new push you make on GitHub on your main branch or any pull-request will trigger a new analysis on SonarCloud.
  3072. onboarding.finished.links.title=Check these useful links while you wait
  3073. onboarding.analysis.with.travis.title=Analyze with Travis CI
  3074. onboarding.analysis.with.travis.encrypt.docs.link.label=Encrypt your token
  3075. onboarding.analysis.with.travis.encrypt.docs.settings.link.label=Repository Settings
  3076. onboarding.analysis.with.travis.encrypt.title=Provide and encrypt your token
  3077. onboarding.analysis.with.travis.sonar.properties.title=Create a {filename} file
  3078. onboarding.analysis.with.travis.sonar.properties.text=Create a configuration file in the root directory of the project: {code}
  3079. onboarding.analysis.with.travis.env.var=Define this environment variable in your {link}
  3080. onboarding.analysis.with.travis.environments=Use one of the two following environments:
  3081. onboarding.analysis.with.travis.environment=Use the following environment:
  3082. onboarding.analysis.with.travis.environment.image.java=CI Environment with JVM VM image
  3083. onboarding.analysis.with.travis.environment.image.ci=Trusty CI Environment
  3084. onboarding.analysis.with.travis.setup.title.a=a. Configure your platform
  3085. onboarding.analysis.with.travis.setup.title.b=b. Configure the scanner
  3086. onboarding.analysis.with.yourci.title=Analyze from your CI
  3087. onboarding.analysis.with.local.title=Analyze from your local sources
  3088. onboarding.analysis.with.autoscan.title=Analyze with AutoScan
  3089. onboarding.analysis.with.autoscan.alert=This is currently a Beta feature, with a {scopes} and some {caveats}.
  3090. onboarding.analysis.with.autoscan.alert.scopes=limited languages scope
  3091. onboarding.analysis.with.autoscan.alert.caveats=caveats
  3092. onboarding.analysis.with.autoscan.text=SonarCloud can autonomously scan your code, by simply reading it from your repository!
  3093. onboarding.analysis.with.autoscan.filename=Add a {filename} file in your repository
  3094. onboarding.tutorial.return_to_list=Choose another option
  3095. onboarding.tutorial.return_to_tutorial=Return to tutorial
  3096. #------------------------------------------------------------------------------
  3097. #
  3098. # BRANCHES
  3099. #
  3100. #------------------------------------------------------------------------------
  3101. branches.main_branch=Main Branch
  3102. branches.see_the_pr=See the PR
  3103. #------------------------------------------------------------------------------
  3104. #
  3105. # BRANCH-LIKE NAVIGATION
  3106. #
  3107. #------------------------------------------------------------------------------
  3108. branch_like_navigation.manage=Manage branches and Pull Requests
  3109. branch_like_navigation.search_for_branch_like=Search for branches or Pull Requests...
  3110. branch_like_navigation.pull_requests=Pull Requests
  3111. branch_like_navigation.orphan_pull_requests=Orphan Pull Requests
  3112. branch_like_navigation.orphan_pull_requests.tooltip=When the base of a Pull Request is deleted, this Pull Request becomes orphan.
  3113. branch_like_navigation.for_merge_into_x_from_y=for merge into {target} from {branch}
  3114. #------------------------------------------------------------------------------
  3115. #
  3116. # PORTFOLIOS
  3117. #
  3118. #------------------------------------------------------------------------------
  3119. portfolio.has_always_been_x=has always been {rating}
  3120. portfolio.was_x_y=was {rating} {date}
  3121. portfolio.x_in_y={projects} in {rating}
  3122. portfolio.has_qg_status=Has Quality Gate Status
  3123. portfolio.have_qg_status=Have Quality Gate Status
  3124. portfolio.empty=This portfolio is empty.
  3125. portfolio.no_lines_of_code=All projects in this portfolio are empty
  3126. portfolio.not_computed=This portfolio is not yet computed.
  3127. portfolio.app.empty=This application is empty.
  3128. portfolio.app.no_lines_of_code=All projects in this application are empty
  3129. portfolio.metric_trend=Metric trend
  3130. portfolio.lowest_rated_projects=Lowest rated projects
  3131. portfolio.health_factors=Portfolio health factors
  3132. portfolio.activity_link=Activity
  3133. portfolio.measures_link=Measures
  3134. portfolio.language_breakdown_link=Language breakdown
  3135. portfolio.breakdown=Portfolio breakdown
  3136. portfolio.pdf_report=Portfolio PDF Report
  3137. portfolio.number_of_projects=Number of projects
  3138. portfolio.number_of_lines=Number of lines of code
  3139. portfolio.metric_domain.vulnerabilities=Security Vulnerabilities
  3140. portfolio.metric_domain.security_hotspots=Security Review
  3141. #------------------------------------------------------------------------------
  3142. #
  3143. # METRIC DOMAINS HELP TEXT
  3144. #
  3145. #------------------------------------------------------------------------------
  3146. portfolio.metric_domain.releasability.help=Ratio of projects in the Portfolio that have passed the Quality Gate.
  3147. portfolio.metric_domain.reliability.help=Average Reliability rating for all projects in the portfolio.
  3148. portfolio.metric_domain.vulnerabilities.help=Average security rating for all projects in the portfolio.
  3149. portfolio.metric_domain.security_hotspots.help=Average security review rating for all projects in the portfolio.
  3150. portfolio.metric_domain.maintainability.help=Average maintainability rating for all projects in the portfolio.
  3151. #------------------------------------------------------------------------------
  3152. #
  3153. # ENCRYPTION
  3154. #
  3155. #------------------------------------------------------------------------------
  3156. encryption.form_intro=Secret key is registered. You can encrypt any property value with the following form:
  3157. encryption.form_note=Note that the secret key can be changed, but all the encrypted properties will have to be updated. {moreInformationLink}
  3158. encryption.encrypted_value=Encrypted Value:
  3159. encryption.generate_secret_key=Generate Secret Key
  3160. encryption.generate_new_secret_key=Generate New Secret Key
  3161. encryption.encrypt=Encrypt
  3162. encryption.secret_key_description=Secret key is required to be able to encrypt properties. {moreInformationLink}
  3163. encryption.secret_key=Secret Key
  3164. encryption.how_to_use=How To Use
  3165. 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}
  3166. encryption.how_to_use.content2=Restrict access to this file by making it readable and by owner only
  3167. encryption.how_to_use.content3=Restart the server if the property {property} has been set or changed.
  3168. 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).
  3169. #------------------------------------------------------------------------------
  3170. #
  3171. # CUSTOM METRICS
  3172. #
  3173. #------------------------------------------------------------------------------
  3174. custom_metrics.page=Custom Metrics
  3175. custom_metrics.deprecated=Custom metrics are deprecated and will be removed soon.
  3176. custom_metrics.page.description=These metrics are available for all projects. Manual measures can be set at project level via the configuration interface.
  3177. custom_metrics.delete_metric=Delete Metric
  3178. custom_metrics.delete_metric.confirmation=Are you sure you want to delete metric "{0}"?
  3179. custom_metrics.update_metric=Update Metric
  3180. custom_metrics.create_metric=Create Metric
  3181. custom_metrics.domain=Domain
  3182. #------------------------------------------------------------------------------
  3183. #
  3184. # USERS
  3185. #
  3186. #------------------------------------------------------------------------------
  3187. users.page=Users
  3188. users.page.description=Create and administer individual users.
  3189. users.deactivate=Deactivate
  3190. users.deactivate_user=Deactivate User
  3191. users.deactivate_user.confirmation=Are you sure you want to deactivate "{0} ({1})"?
  3192. users.create_user=Create User
  3193. users.update_user=Update User
  3194. users.cannot_update_delegated_user=You cannot update the name and email of this user, as it is controlled by an external identity provider.
  3195. users.minimum_x_characters=Minimum {0} characters
  3196. users.email=Email
  3197. users.last_connection=Last connection
  3198. users.update_groups=Update Groups
  3199. users.update_tokens=Update Tokens
  3200. users.add=Add user
  3201. users.remove=Remove user
  3202. users.search_description=Search users by login or name
  3203. users.update=Update users
  3204. users.tokens=Tokens
  3205. users.user_X_tokens=Tokens of {user}
  3206. users.tokens.sure=Sure?
  3207. users.tokens.sure_X=Are you sure you want to revoke token {token}?
  3208. users.tokens.revoke=Revoke
  3209. users.tokens.revoke_token=Revoke token
  3210. users.no_tokens=No tokens
  3211. users.generate=Generate
  3212. users.generate_tokens=Generate Tokens
  3213. users.enter_token_name=Enter Token Name
  3214. 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!
  3215. users.generate_new_token=Generate New Token
  3216. #------------------------------------------------------------------------------
  3217. #
  3218. # GROUPS
  3219. #
  3220. #------------------------------------------------------------------------------
  3221. user_groups.page=Groups
  3222. user_groups.page.description=Create and administer groups of users.
  3223. user_groups.anyone.description=Anybody (authenticated or not) who browses the application belongs to this group
  3224. groups.delete_group=Delete Group
  3225. groups.delete_group.confirmation=Are you sure you want to delete "{0}"?
  3226. groups.create_group=Create Group
  3227. groups.update_group=Update Group
  3228. groups.anyone=Anyone
  3229. #------------------------------------------------------------------------------
  3230. #
  3231. # MAINTENANCE
  3232. #
  3233. #------------------------------------------------------------------------------
  3234. maintenance.page=Maintenance
  3235. maintenance.upgrade_failed=Upgrade Failed
  3236. maintenance.upgrade_failed.text=Database connection cannot be established. Please check database status and JDBC settings.
  3237. maintenance.migration_not_supported=Migration not supported
  3238. maintenance.migration_not_supported.text=Migration is not supported on embedded databases.
  3239. maintenance.upgrade_database=Upgrade Database
  3240. maintenance.upgrade_database.1=The database upgrade can take several minutes.
  3241. maintenance.upgrade_database.2=It is mandatory to back up database before upgrading.
  3242. maintenance.upgrade_database.3=Make sure you have followed the steps from the SonarQube Upgrade guide.
  3243. maintenance.upgrade=Upgrade
  3244. maintenance.database_migration=Database Migration
  3245. maintenance.database_is_up_to_date=Database is up-to-date
  3246. maintenance.is_down={instance} is down
  3247. maintenance.sonarqube_is_down.text=Something went wrong. Please contact your system administrator.
  3248. maintenance.try_again=Try Again
  3249. maintenance.is_under_maintenance={instance} is under maintenance
  3250. maintenance.sonarqube_is_under_maintenance.1=While waiting, you might want to investigate {link} to extend the current functionality.
  3251. maintenance.sonarqube_is_under_maintenance_link.1=new plugins
  3252. 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}.
  3253. maintenance.sonarqube_is_under_maintenance_link.2=upgrade guide
  3254. maintenance.is_starting={instance} is starting
  3255. maintenance.is_up={instance} is up
  3256. maintenance.all_systems_opetational=All systems operational.
  3257. maintenance.is_offline={instance} is offline
  3258. maintenance.sonarqube_is_offline.text=The connection to SonarQube is lost. Please contact your system administrator.
  3259. #------------------------------------------------------------------------------
  3260. #
  3261. # HOMEPAGE
  3262. #
  3263. #------------------------------------------------------------------------------
  3264. homepage.current=This page is your homepage. Click on the top-left logo to find it anytime.
  3265. homepage.check=Click to make the current page your homepage
  3266. #------------------------------------------------------------------------------
  3267. #
  3268. # FAVORITE
  3269. #
  3270. #------------------------------------------------------------------------------
  3271. favorite.action.add=Add project to favorites
  3272. favorite.action.remove=Remove project from favorites
  3273. favorite.check.TRK=Click to mark this project as favorite.
  3274. favorite.check.VW=Click to mark this portfolio as favorite.
  3275. favorite.check.SVW=Click to mark this sub-ortfolio as favorite.
  3276. favorite.check.APP=Click to mark this application as favorite.
  3277. favorite.check.FIL=Click to mark this file as favorite.
  3278. favorite.check.UTS=Click to mark this test file as favorite.
  3279. favorite.current.TRK=This project is marked as favorite.
  3280. favorite.current.VW=This portfolio is marked as favorite.
  3281. favorite.current.SVW=This sub-ortfolio is marked as favorite.
  3282. favorite.current.APP=This application is marked as favorite.
  3283. favorite.current.FIL=This file is marked as favorite.
  3284. favorite.current.UTS=This test file is marked as favorite.
  3285. #------------------------------------------------------------------------------
  3286. #
  3287. # WEBHOOKS
  3288. #
  3289. #------------------------------------------------------------------------------
  3290. webhooks.page=Webhooks
  3291. webhooks.create=Create Webhook
  3292. webhooks.delete=Delete Webhook
  3293. webhooks.delete.confirm=Are you sure you want to delete the webhook "{0}"?
  3294. 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}.
  3295. webhooks.deliveries.show=Show recent deliveries
  3296. webhooks.deliveries_for_x=Recent deliveries of {0}
  3297. webhooks.delivery.duration_x=Duration: {0}
  3298. webhooks.delivery.payload=Payload:
  3299. webhooks.delivery.response_x=Response: {0}
  3300. webhooks.delivery.server_unreachable=Server Unreachable
  3301. webhooks.documentation_link=Webhooks documentation
  3302. webhooks.last_execution=Last delivery
  3303. webhooks.last_execution.none=Never
  3304. webhooks.latest_delivery_for_x=Last delivery of {0}
  3305. webhooks.maximum_reached=You reached your maximum number of {0} webhooks. You can still update or delete an existing one.
  3306. webhooks.name=Name
  3307. webhooks.name.required=Name is required.
  3308. webhooks.no_result=No webhook defined.
  3309. webhooks.update=Update Webhook
  3310. webhooks.secret=Secret
  3311. webhooks.secret_header=Secret?
  3312. webhooks.secret.bad_format=Secret must have a maximum length of 200 characters
  3313. 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
  3314. webhooks.url=URL
  3315. webhooks.url.bad_format=Bad format of URL.
  3316. webhooks.url.bad_protocol=URL must start with "http://" or "https://".
  3317. 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"
  3318. webhooks.url.required=URL is required.