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

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