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

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