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

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