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.

locale_en-US.ini 201KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681
  1. home = Home
  2. dashboard = Dashboard
  3. explore = Explore
  4. help = Help
  5. logo = Logo
  6. sign_in = Sign In
  7. sign_in_with_provider = Sign in with %s
  8. sign_in_or = or
  9. sign_out = Sign Out
  10. sign_up = Register
  11. link_account = Link Account
  12. register = Register
  13. version = Version
  14. powered_by = Powered by %s
  15. page = Page
  16. template = Template
  17. language = Language
  18. notifications = Notifications
  19. active_stopwatch = Active Time Tracker
  20. tracked_time_summary = Summary of tracked time based on filters of issue list
  21. create_new = Create…
  22. user_profile_and_more = Profile and Settings…
  23. signed_in_as = Signed in as
  24. enable_javascript = This website requires JavaScript.
  25. toc = Table of Contents
  26. licenses = Licenses
  27. return_to_gitea = Return to Gitea
  28. more_items = More items
  29. username = Username
  30. email = Email Address
  31. password = Password
  32. access_token = Access Token
  33. re_type = Confirm Password
  34. captcha = CAPTCHA
  35. twofa = Two-Factor Authentication
  36. twofa_scratch = Two-Factor Scratch Code
  37. passcode = Passcode
  38. webauthn_insert_key = Insert your security key
  39. webauthn_sign_in = Press the button on your security key. If your security key has no button, re-insert it.
  40. webauthn_press_button = Please press the button on your security key…
  41. webauthn_use_twofa = Use a two-factor code from your phone
  42. webauthn_error = Could not read your security key.
  43. webauthn_unsupported_browser = Your browser does not currently support WebAuthn.
  44. webauthn_error_unknown = An unknown error occurred. Please retry.
  45. webauthn_error_insecure = WebAuthn only supports secure connections. For testing over HTTP, you can use the origin "localhost" or "127.0.0.1"
  46. webauthn_error_unable_to_process = The server could not process your request.
  47. webauthn_error_duplicated = The security key is not permitted for this request. Please make sure that the key is not already registered.
  48. webauthn_error_empty = You must set a name for this key.
  49. webauthn_error_timeout = Timeout reached before your key could be read. Please reload this page and retry.
  50. webauthn_reload = Reload
  51. repository = Repository
  52. organization = Organization
  53. mirror = Mirror
  54. new_repo = New Repository
  55. new_migrate = New Migration
  56. new_mirror = New Mirror
  57. new_fork = New Repository Fork
  58. new_org = New Organization
  59. new_project = New Project
  60. new_project_column = New Column
  61. manage_org = Manage Organizations
  62. admin_panel = Site Administration
  63. account_settings = Account Settings
  64. settings = Settings
  65. your_profile = Profile
  66. your_starred = Starred
  67. your_settings = Settings
  68. all = All
  69. sources = Sources
  70. mirrors = Mirrors
  71. collaborative = Collaborative
  72. forks = Forks
  73. activities = Activities
  74. pull_requests = Pull Requests
  75. issues = Issues
  76. milestones = Milestones
  77. ok = OK
  78. cancel = Cancel
  79. retry = Retry
  80. rerun = Re-run
  81. rerun_all = Re-run all jobs
  82. save = Save
  83. add = Add
  84. add_all = Add All
  85. remove = Remove
  86. remove_all = Remove All
  87. remove_label_str = Remove item "%s"
  88. edit = Edit
  89. view = View
  90. enabled = Enabled
  91. disabled = Disabled
  92. locked = Locked
  93. copy = Copy
  94. copy_url = Copy URL
  95. copy_hash = Copy hash
  96. copy_content = Copy content
  97. copy_branch = Copy branch name
  98. copy_success = Copied!
  99. copy_error = Copy failed
  100. copy_type_unsupported = This file type cannot be copied
  101. write = Write
  102. preview = Preview
  103. loading = Loading…
  104. error = Error
  105. error404 = The page you are trying to reach either <strong>does not exist</strong> or <strong>you are not authorized</strong> to view it.
  106. go_back = Go Back
  107. invalid_data = Invalid data: %v
  108. never = Never
  109. unknown = Unknown
  110. rss_feed = RSS Feed
  111. pin = Pin
  112. unpin = Unpin
  113. artifacts = Artifacts
  114. confirm_delete_artifact = Are you sure you want to delete the artifact '%s' ?
  115. archived = Archived
  116. concept_system_global = Global
  117. concept_user_individual = Individual
  118. concept_code_repository = Repository
  119. concept_user_organization = Organization
  120. show_timestamps = Show timestamps
  121. show_log_seconds = Show seconds
  122. show_full_screen = Show full screen
  123. download_logs = Download logs
  124. confirm_delete_selected = Confirm to delete all selected items?
  125. name = Name
  126. value = Value
  127. filter = Filter
  128. filter.clear = Clear Filter
  129. filter.is_archived = Archived
  130. filter.not_archived = Not Archived
  131. filter.is_fork = Forked
  132. filter.not_fork = Not Forked
  133. filter.is_mirror = Mirrored
  134. filter.not_mirror = Not Mirrored
  135. filter.is_template = Template
  136. filter.not_template = Not Template
  137. filter.public = Public
  138. filter.private = Private
  139. no_results_found = No results found.
  140. [search]
  141. search = Search...
  142. type_tooltip = Search type
  143. fuzzy = Fuzzy
  144. fuzzy_tooltip = Include results that also match the search term closely
  145. match = Match
  146. match_tooltip = Include only results that match the exact search term
  147. repo_kind = Search repos...
  148. user_kind = Search users...
  149. org_kind = Search orgs...
  150. team_kind = Search teams...
  151. code_kind = Search code...
  152. code_search_unavailable = Code search is currently not available. Please contact the site administrator.
  153. code_search_by_git_grep = Current code search results are provided by "git grep". There might be better results if site administrator enables Repository Indexer.
  154. package_kind = Search packages...
  155. project_kind = Search projects...
  156. branch_kind = Search branches...
  157. commit_kind = Search commits...
  158. runner_kind = Search runners...
  159. no_results = No matching results found.
  160. keyword_search_unavailable = Searching by keyword is currently not available. Please contact the site administrator.
  161. [aria]
  162. navbar = Navigation Bar
  163. footer = Footer
  164. footer.software = About Software
  165. footer.links = Links
  166. [heatmap]
  167. number_of_contributions_in_the_last_12_months = %s contributions in the last 12 months
  168. no_contributions = No contributions
  169. less = Less
  170. more = More
  171. [editor]
  172. buttons.heading.tooltip = Add heading
  173. buttons.bold.tooltip = Add bold text
  174. buttons.italic.tooltip = Add italic text
  175. buttons.quote.tooltip = Quote text
  176. buttons.code.tooltip = Add code
  177. buttons.link.tooltip = Add a link
  178. buttons.list.unordered.tooltip = Add a bullet list
  179. buttons.list.ordered.tooltip = Add a numbered list
  180. buttons.list.task.tooltip = Add a list of tasks
  181. buttons.mention.tooltip = Mention a user or team
  182. buttons.ref.tooltip = Reference an issue or pull request
  183. buttons.switch_to_legacy.tooltip = Use the legacy editor instead
  184. buttons.enable_monospace_font = Enable monospace font
  185. buttons.disable_monospace_font = Disable monospace font
  186. [filter]
  187. string.asc = A - Z
  188. string.desc = Z - A
  189. [error]
  190. occurred = An error occurred
  191. report_message = If you believe that this is a Gitea bug, please search for issues on <a href="https://github.com/go-gitea/gitea/issues" target="_blank">GitHub</a> or open a new issue if necessary.
  192. missing_csrf = Bad Request: no CSRF token present
  193. invalid_csrf = Bad Request: invalid CSRF token
  194. not_found = The target couldn't be found.
  195. network_error = Network error
  196. [startpage]
  197. app_desc = A painless, self-hosted Git service
  198. install = Easy to install
  199. install_desc = Simply <a target="_blank" rel="noopener noreferrer" href="https://docs.gitea.com/installation/install-from-binary">run the binary</a> for your platform, ship it with <a target="_blank" rel="noopener noreferrer" href="https://github.com/go-gitea/gitea/tree/master/docker">Docker</a>, or get it <a target="_blank" rel="noopener noreferrer" href="https://docs.gitea.com/installation/install-from-package">packaged</a>.
  200. platform = Cross-platform
  201. platform_desc = Gitea runs anywhere <a target="_blank" rel="noopener noreferrer" href="https://go.dev/">Go</a> can compile for: Windows, macOS, Linux, ARM, etc. Choose the one you love!
  202. lightweight = Lightweight
  203. lightweight_desc = Gitea has low minimal requirements and can run on an inexpensive Raspberry Pi. Save your machine energy!
  204. license = Open Source
  205. license_desc = Go get <a target="_blank" rel="noopener noreferrer" href="https://code.gitea.io/gitea">code.gitea.io/gitea</a>! Join us by <a target="_blank" rel="noopener noreferrer" href="https://github.com/go-gitea/gitea">contributing</a> to make this project even better. Don't be shy to be a contributor!
  206. [install]
  207. install = Installation
  208. title = Initial Configuration
  209. docker_helper = If you run Gitea inside Docker, please read the <a target="_blank" rel="noopener noreferrer" href="%s">documentation</a> before changing any settings.
  210. require_db_desc = Gitea requires MySQL, PostgreSQL, MSSQL, SQLite3 or TiDB (MySQL protocol).
  211. db_title = Database Settings
  212. db_type = Database Type
  213. host = Host
  214. user = Username
  215. password = Password
  216. db_name = Database Name
  217. db_schema = Schema
  218. db_schema_helper = Leave blank for database default ("public").
  219. ssl_mode = SSL
  220. path = Path
  221. sqlite_helper = File path for the SQLite3 database.<br>Enter an absolute path if you run Gitea as a service.
  222. reinstall_error = You are trying to install into an existing Gitea database
  223. reinstall_confirm_message = Re-installing with an existing Gitea database can cause multiple problems. In most cases, you should use your existing "app.ini" to run Gitea. If you know what you are doing, confirm the following:
  224. reinstall_confirm_check_1 = The data encrypted by the SECRET_KEY in app.ini may be lost: users may not be able to log in with 2FA/OTP & mirrors may not function correctly. By checking this box you confirm that the current app.ini file contains the correct the SECRET_KEY.
  225. reinstall_confirm_check_2 = The repositories and settings may need to be re-synchronized. By checking this box you confirm that you will resynchronize the hooks for the repositories and authorized_keys file manually. You confirm that you will ensure that repository and mirror settings are correct.
  226. reinstall_confirm_check_3 = You confirm that you are absolutely sure that this Gitea is running with the correct app.ini location and that you are sure that you have to re-install. You confirm that you acknowledge the above risks.
  227. err_empty_db_path = The SQLite3 database path cannot be empty.
  228. no_admin_and_disable_registration = You cannot disable user self-registration without creating an administrator account.
  229. err_empty_admin_password = The administrator password cannot be empty.
  230. err_empty_admin_email = The administrator email cannot be empty.
  231. err_admin_name_is_reserved = Administrator Username is invalid, username is reserved
  232. err_admin_name_pattern_not_allowed = Administrator username is invalid, the username matches a reserved pattern
  233. err_admin_name_is_invalid = Administrator Username is invalid
  234. general_title = General Settings
  235. app_name = Site Title
  236. app_name_helper = You can enter your company name here.
  237. repo_path = Repository Root Path
  238. repo_path_helper = Remote Git repositories will be saved to this directory.
  239. lfs_path = Git LFS Root Path
  240. lfs_path_helper = Files tracked by Git LFS will be stored in this directory. Leave empty to disable.
  241. run_user = Run As Username
  242. run_user_helper = The operating system username that Gitea runs as. Note that this user must have access to the repository root path.
  243. domain = Server Domain
  244. domain_helper = Domain or host address for the server.
  245. ssh_port = SSH Server Port
  246. ssh_port_helper = Port number your SSH server listens on. Leave empty to disable.
  247. http_port = Gitea HTTP Listen Port
  248. http_port_helper = Port number the Giteas web server will listen on.
  249. app_url = Gitea Base URL
  250. app_url_helper = Base address for HTTP(S) clone URLs and email notifications.
  251. log_root_path = Log Path
  252. log_root_path_helper = Log files will be written to this directory.
  253. optional_title = Optional Settings
  254. email_title = Email Settings
  255. smtp_addr = SMTP Host
  256. smtp_port = SMTP Port
  257. smtp_from = Send Email As
  258. smtp_from_invalid = The "Send Email As" address is invalid
  259. smtp_from_helper = Email address Gitea will use. Enter a plain email address or use the "Name" <email@example.com> format.
  260. mailer_user = SMTP Username
  261. mailer_password = SMTP Password
  262. register_confirm = Require Email Confirmation to Register
  263. mail_notify = Enable Email Notifications
  264. server_service_title = Server and Third-Party Service Settings
  265. offline_mode = Enable Local Mode
  266. offline_mode_popup = Disable third-party content delivery networks and serve all resources locally.
  267. disable_gravatar = Disable Gravatar
  268. disable_gravatar_popup = Disable Gravatar and third-party avatar sources. A default avatar will be used unless a user locally uploads an avatar.
  269. federated_avatar_lookup = Enable Federated Avatars
  270. federated_avatar_lookup_popup = Enable federated avatar lookup using Libravatar.
  271. disable_registration = Disable Self-Registration
  272. disable_registration_popup = Disable user self-registration. Only administrators will be able to create new user accounts.
  273. allow_only_external_registration_popup = Allow Registration Only Through External Services
  274. openid_signin = Enable OpenID Sign-In
  275. openid_signin_popup = Enable user sign-in via OpenID.
  276. openid_signup = Enable OpenID Self-Registration
  277. openid_signup_popup = Enable OpenID-based user self-registration.
  278. enable_captcha = Enable registration CAPTCHA
  279. enable_captcha_popup = Require a CAPTCHA for user self-registration.
  280. require_sign_in_view = Require Sign-In to View Pages
  281. require_sign_in_view_popup = Limit page access to signed-in users. Visitors will only see the sign-in and registration pages.
  282. admin_setting_desc = Creating an administrator account is optional. The first registered user will automatically become an administrator.
  283. admin_title = Administrator Account Settings
  284. admin_name = Administrator Username
  285. admin_password = Password
  286. confirm_password = Confirm Password
  287. admin_email = Email Address
  288. install_btn_confirm = Install Gitea
  289. test_git_failed = Could not test 'git' command: %v
  290. sqlite3_not_available = This Gitea version does not support SQLite3. Please download the official binary version from %s (not the 'gobuild' version).
  291. invalid_db_setting = The database settings are invalid: %v
  292. invalid_db_table = The database table "%s" is invalid: %v
  293. invalid_repo_path = The repository root path is invalid: %v
  294. invalid_app_data_path = The app data path is invalid: %v
  295. run_user_not_match = The 'run as' username is not the current username: %s -> %s
  296. internal_token_failed = Failed to generate internal token: %v
  297. secret_key_failed = Failed to generate secret key: %v
  298. save_config_failed = Failed to save configuration: %v
  299. invalid_admin_setting = Administrator account setting is invalid: %v
  300. invalid_log_root_path = The log path is invalid: %v
  301. default_keep_email_private = Hide Email Addresses by Default
  302. default_keep_email_private_popup = Hide email addresses of new user accounts by default.
  303. default_allow_create_organization = Allow Creation of Organizations by Default
  304. default_allow_create_organization_popup = Allow new user accounts to create organizations by default.
  305. default_enable_timetracking = Enable Time Tracking by Default
  306. default_enable_timetracking_popup = Enable time tracking for new repositories by default.
  307. no_reply_address = Hidden Email Domain
  308. no_reply_address_helper = Domain name for users with a hidden email address. For example, the username 'joe' will be logged in Git as 'joe@noreply.example.org' if the hidden email domain is set to 'noreply.example.org'.
  309. password_algorithm = Password Hash Algorithm
  310. invalid_password_algorithm = Invalid password hash algorithm
  311. password_algorithm_helper = Set the password hashing algorithm. Algorithms have differing requirements and strength. The argon2 algorithm is rather secure but uses a lot of memory and may be inappropriate for small systems.
  312. enable_update_checker = Enable Update Checker
  313. enable_update_checker_helper = Checks for new version releases periodically by connecting to gitea.io.
  314. env_config_keys = Environment Configuration
  315. env_config_keys_prompt = The following environment variables will also be applied to your configuration file:
  316. [home]
  317. nav_menu = Navigation Menu
  318. uname_holder = Username or Email Address
  319. password_holder = Password
  320. switch_dashboard_context = Switch Dashboard Context
  321. my_repos = Repositories
  322. show_more_repos = Show more repositories…
  323. collaborative_repos = Collaborative Repositories
  324. my_orgs = My Organizations
  325. my_mirrors = My Mirrors
  326. view_home = View %s
  327. filter = Other Filters
  328. filter_by_team_repositories = Filter by team repositories
  329. feed_of = Feed of "%s"
  330. show_archived = Archived
  331. show_both_archived_unarchived = Showing both archived and unarchived
  332. show_only_archived = Showing only archived
  333. show_only_unarchived = Showing only unarchived
  334. show_private = Private
  335. show_both_private_public = Showing both public and private
  336. show_only_private = Showing only private
  337. show_only_public = Showing only public
  338. issues.in_your_repos = In your repositories
  339. [explore]
  340. repos = Repositories
  341. users = Users
  342. organizations = Organizations
  343. go_to = Go to
  344. code = Code
  345. code_last_indexed_at = Last indexed %s
  346. relevant_repositories_tooltip = Repositories that are forks or that have no topic, no icon, and no description are hidden.
  347. relevant_repositories = Only relevant repositories are being shown, <a href="%s">show unfiltered results</a>.
  348. [auth]
  349. create_new_account = Register Account
  350. register_helper_msg = Already have an account? Sign in now!
  351. social_register_helper_msg = Already have an account? Link it now!
  352. disable_register_prompt = Registration is disabled. Please contact your site administrator.
  353. disable_register_mail = Email confirmation for registration is disabled.
  354. manual_activation_only = Contact your site administrator to complete activation.
  355. remember_me = Remember This Device
  356. remember_me.compromised = The login token is not valid anymore which may indicate a compromised account. Please check your account for unusual activities.
  357. forgot_password_title= Forgot Password
  358. forgot_password = Forgot password?
  359. sign_up_now = Need an account? Register now.
  360. sign_up_successful = Account was successfully created. Welcome!
  361. confirmation_mail_sent_prompt_ex = A new confirmation email has been sent to <b>%s</b>. Please check your inbox within the next %s to complete the registration process. If your registration email address is incorrect, you can sign in again and change it.
  362. must_change_password = Update your password
  363. allow_password_change = Require user to change password (recommended)
  364. reset_password_mail_sent_prompt = A confirmation email has been sent to <b>%s</b>. Please check your inbox within the next %s to complete the account recovery process.
  365. active_your_account = Activate Your Account
  366. account_activated = Account has been activated
  367. prohibit_login = Sign In Prohibited
  368. prohibit_login_desc = Your account is prohibited from signing in, please contact your site administrator.
  369. resent_limit_prompt = You have already requested an activation email recently. Please wait 3 minutes and try again.
  370. has_unconfirmed_mail = Hi %s, you have an unconfirmed email address (<b>%s</b>). If you haven't received a confirmation email or need to resend a new one, please click on the button below.
  371. change_unconfirmed_mail_address = If your registration email address is incorrect, you can change it here and resend a new confirmation email.
  372. resend_mail = Click here to resend your activation email
  373. email_not_associate = The email address is not associated with any account.
  374. send_reset_mail = Send Account Recovery Email
  375. reset_password = Account Recovery
  376. invalid_code = Your confirmation code is invalid or has expired.
  377. invalid_code_forgot_password = Your confirmation code is invalid or has expired. Click <a href="%s">here</a> to start a new session.
  378. invalid_password = Your password does not match the password that was used to create the account.
  379. reset_password_helper = Recover Account
  380. reset_password_wrong_user = You are signed in as %s, but the account recovery link is meant for %s
  381. password_too_short = Password length cannot be less than %d characters.
  382. non_local_account = Non-local users cannot update their password through the Gitea web interface.
  383. verify = Verify
  384. scratch_code = Scratch code
  385. use_scratch_code = Use a scratch code
  386. twofa_scratch_used = You have used your scratch code. You have been redirected to the two-factor settings page so you may remove your device enrollment or generate a new scratch code.
  387. twofa_passcode_incorrect = Your passcode is incorrect. If you misplaced your device, use your scratch code to sign in.
  388. twofa_scratch_token_incorrect = Your scratch code is incorrect.
  389. login_userpass = Sign In
  390. login_openid = OpenID
  391. oauth_signup_tab = Register New Account
  392. oauth_signup_title = Complete New Account
  393. oauth_signup_submit = Complete Account
  394. oauth_signin_tab = Link to Existing Account
  395. oauth_signin_title = Sign In to Authorize Linked Account
  396. oauth_signin_submit = Link Account
  397. oauth.signin.error = There was an error processing the authorization request. If this error persists, please contact the site administrator.
  398. oauth.signin.error.access_denied = The authorization request was denied.
  399. oauth.signin.error.temporarily_unavailable = Authorization failed because the authentication server is temporarily unavailable. Please try again later.
  400. openid_connect_submit = Connect
  401. openid_connect_title = Connect to an existing account
  402. openid_connect_desc = The chosen OpenID URI is unknown. Associate it with a new account here.
  403. openid_register_title = Create new account
  404. openid_register_desc = The chosen OpenID URI is unknown. Associate it with a new account here.
  405. openid_signin_desc = Enter your OpenID URI. For example: alice.openid.example.org or https://openid.example.org/alice.
  406. disable_forgot_password_mail = Account recovery is disabled because no email is set up. Please contact your site administrator.
  407. disable_forgot_password_mail_admin = Account recovery is only available when email is set up. Please set up email to enable account recovery.
  408. email_domain_blacklisted = You cannot register with your email address.
  409. authorize_application = Authorize Application
  410. authorize_redirect_notice = You will be redirected to %s if you authorize this application.
  411. authorize_application_created_by = This application was created by %s.
  412. authorize_application_description = If you grant the access, it will be able to access and write to all your account information, including private repos and organisations.
  413. authorize_title = Authorize "%s" to access your account?
  414. authorization_failed = Authorization failed
  415. authorization_failed_desc = The authorization failed because we detected an invalid request. Please contact the maintainer of the app you have tried to authorize.
  416. sspi_auth_failed = SSPI authentication failed
  417. password_pwned = The password you chose is on a <a target="_blank" rel="noopener noreferrer" href="https://haveibeenpwned.com/Passwords">list of stolen passwords</a> previously exposed in public data breaches. Please try again with a different password and consider changing this password elsewhere too.
  418. password_pwned_err = Could not complete request to HaveIBeenPwned
  419. last_admin = You cannot remove the last admin. There must be at least one admin.
  420. [mail]
  421. view_it_on = View it on %s
  422. reply = or reply to this email directly
  423. link_not_working_do_paste = Not working? Try copying and pasting it to your browser.
  424. hi_user_x = Hi <b>%s</b>,
  425. activate_account = Please activate your account
  426. activate_account.title = %s, please activate your account
  427. activate_account.text_1 = Hi <b>%[1]s</b>, thanks for registering at %[2]s!
  428. activate_account.text_2 = Please click the following link to activate your account within <b>%s</b>:
  429. activate_email = Verify your email address
  430. activate_email.title = %s, please verify your email address
  431. activate_email.text = Please click the following link to verify your email address within <b>%s</b>:
  432. register_notify = Welcome to Gitea
  433. register_notify.title = %[1]s, welcome to %[2]s
  434. register_notify.text_1 = this is your registration confirmation email for %s!
  435. register_notify.text_2 = You can now login via username: %s.
  436. register_notify.text_3 = If this account has been created for you, please <a href="%s">set your password</a> first.
  437. reset_password = Recover your account
  438. reset_password.title = %s, you have requested to recover your account
  439. reset_password.text = Please click the following link to recover your account within <b>%s</b>:
  440. register_success = Registration successful
  441. issue_assigned.pull = @%[1]s assigned you to pull request %[2]s in repository %[3]s.
  442. issue_assigned.issue = @%[1]s assigned you to issue %[2]s in repository %[3]s.
  443. issue.x_mentioned_you = <b>@%s</b> mentioned you:
  444. issue.action.force_push = <b>%[1]s</b> force-pushed the <b>%[2]s</b> from %[3]s to %[4]s.
  445. issue.action.push_1 = <b>@%[1]s</b> pushed %[3]d commit to %[2]s
  446. issue.action.push_n = <b>@%[1]s</b> pushed %[3]d commits to %[2]s
  447. issue.action.close = <b>@%[1]s</b> closed #%[2]d.
  448. issue.action.reopen = <b>@%[1]s</b> reopened #%[2]d.
  449. issue.action.merge = <b>@%[1]s</b> merged #%[2]d into %[3]s.
  450. issue.action.approve = <b>@%[1]s</b> approved this pull request.
  451. issue.action.reject = <b>@%[1]s</b> requested changes on this pull request.
  452. issue.action.review = <b>@%[1]s</b> commented on this pull request.
  453. issue.action.review_dismissed = <b>@%[1]s</b> dismissed last review from %[2]s for this pull request.
  454. issue.action.ready_for_review = <b>@%[1]s</b> marked this pull request ready for review.
  455. issue.action.new = <b>@%[1]s</b> created #%[2]d.
  456. issue.in_tree_path = In %s:
  457. release.new.subject = %s in %s released
  458. release.new.text = <b>@%[1]s</b> released %[2]s in %[3]s
  459. release.title = Title: %s
  460. release.note = Note:
  461. release.downloads = Downloads:
  462. release.download.zip = Source Code (ZIP)
  463. release.download.targz = Source Code (TAR.GZ)
  464. repo.transfer.subject_to = %s would like to transfer "%s" to %s
  465. repo.transfer.subject_to_you = %s would like to transfer "%s" to you
  466. repo.transfer.to_you = you
  467. repo.transfer.body = To accept or reject it visit %s or just ignore it.
  468. repo.collaborator.added.subject = %s added you to %s
  469. repo.collaborator.added.text = You have been added as a collaborator of repository:
  470. team_invite.subject = %[1]s has invited you to join the %[2]s organization
  471. team_invite.text_1 = %[1]s has invited you to join team %[2]s in organization %[3]s.
  472. team_invite.text_2 = Please click the following link to join the team:
  473. team_invite.text_3 = Note: This invitation was intended for %[1]s. If you were not expecting this invitation, you can ignore this email.
  474. [modal]
  475. yes = Yes
  476. no = No
  477. confirm = Confirm
  478. cancel = Cancel
  479. modify = Update
  480. [form]
  481. UserName = Username
  482. RepoName = Repository name
  483. Email = Email address
  484. Password = Password
  485. Retype = Confirm Password
  486. SSHTitle = SSH key name
  487. HttpsUrl = HTTPS URL
  488. PayloadUrl = Payload URL
  489. TeamName = Team name
  490. AuthName = Authorization name
  491. AdminEmail = Admin email
  492. NewBranchName = New branch name
  493. CommitSummary = Commit summary
  494. CommitMessage = Commit message
  495. CommitChoice = Commit choice
  496. TreeName = File path
  497. Content = Content
  498. SSPISeparatorReplacement = Separator
  499. SSPIDefaultLanguage = Default Language
  500. require_error = ` cannot be empty.`
  501. alpha_dash_error = ` should contain only alphanumeric, dash ('-') and underscore ('_') characters.`
  502. alpha_dash_dot_error = ` should contain only alphanumeric, dash ('-'), underscore ('_') and dot ('.') characters.`
  503. git_ref_name_error = ` must be a well-formed Git reference name.`
  504. size_error = ` must be size %s.`
  505. min_size_error = ` must contain at least %s characters.`
  506. max_size_error = ` must contain at most %s characters.`
  507. email_error = ` is not a valid email address.`
  508. url_error = `"%s" is not a valid URL.`
  509. include_error = ` must contain substring "%s".`
  510. glob_pattern_error = ` glob pattern is invalid: %s.`
  511. regex_pattern_error = ` regex pattern is invalid: %s.`
  512. username_error = ` can only contain alphanumeric chars ('0-9','a-z','A-Z'), dash ('-'), underscore ('_') and dot ('.'). It cannot begin or end with non-alphanumeric chars, and consecutive non-alphanumeric chars are also forbidden.`
  513. invalid_group_team_map_error = ` mapping is invalid: %s`
  514. unknown_error = Unknown error:
  515. captcha_incorrect = The CAPTCHA code is incorrect.
  516. password_not_match = The passwords do not match.
  517. lang_select_error = Select a language from the list.
  518. username_been_taken = The username is already taken.
  519. username_change_not_local_user = Non-local users are not allowed to change their username.
  520. username_has_not_been_changed = Username has not been changed
  521. repo_name_been_taken = The repository name is already used.
  522. repository_force_private = Force Private is enabled: private repositories cannot be made public.
  523. repository_files_already_exist = Files already exist for this repository. Contact the system administrator.
  524. repository_files_already_exist.adopt = Files already exist for this repository and can only be Adopted.
  525. repository_files_already_exist.delete = Files already exist for this repository. You must delete them.
  526. repository_files_already_exist.adopt_or_delete = Files already exist for this repository. Either adopt them or delete them.
  527. visit_rate_limit = Remote visit addressed rate limitation.
  528. 2fa_auth_required = Remote visit required two factors authentication.
  529. org_name_been_taken = The organization name is already taken.
  530. team_name_been_taken = The team name is already taken.
  531. team_no_units_error = Allow access to at least one repository section.
  532. email_been_used = The email address is already used.
  533. email_invalid = The email address is invalid.
  534. email_domain_is_not_allowed = The domain of user email <b>%s</b> conflicts with EMAIL_DOMAIN_ALLOWLIST or EMAIL_DOMAIN_BLOCKLIST. Please ensure your operation is expected.
  535. openid_been_used = The OpenID address "%s" is already used.
  536. username_password_incorrect = Username or password is incorrect.
  537. password_complexity = Password does not pass complexity requirements:
  538. password_lowercase_one = At least one lowercase character
  539. password_uppercase_one = At least one uppercase character
  540. password_digit_one = At least one digit
  541. password_special_one = At least one special character (punctuation, brackets, quotes, etc.)
  542. enterred_invalid_repo_name = The repository name you entered is incorrect.
  543. enterred_invalid_org_name = The organization name you entered is incorrect.
  544. enterred_invalid_owner_name = The new owner name is not valid.
  545. enterred_invalid_password = The password you entered is incorrect.
  546. unset_password = The login user has not set the password.
  547. unsupported_login_type = The login type is not supported to delete account.
  548. user_not_exist = The user does not exist.
  549. team_not_exist = The team does not exist.
  550. last_org_owner = You cannot remove the last user from the 'owners' team. There must be at least one owner for an organization.
  551. cannot_add_org_to_team = An organization cannot be added as a team member.
  552. duplicate_invite_to_team = The user was already invited as a team member.
  553. organization_leave_success = You have successfully left the organization %s.
  554. invalid_ssh_key = Cannot verify your SSH key: %s
  555. invalid_gpg_key = Cannot verify your GPG key: %s
  556. invalid_ssh_principal = Invalid principal: %s
  557. must_use_public_key = The key you provided is a private key. Please do not upload your private key anywhere. Use your public key instead.
  558. unable_verify_ssh_key = "Cannot verify the SSH key, double-check it for mistakes."
  559. auth_failed = Authentication failed: %v
  560. still_own_repo = "Your account owns one or more repositories, delete or transfer them first."
  561. still_has_org = "Your account is a member of one or more organizations, leave them first."
  562. still_own_packages = "Your account owns one or more packages, delete them first."
  563. org_still_own_repo = "This organization still owns one or more repositories, delete or transfer them first."
  564. org_still_own_packages = "This organization still owns one or more packages, delete them first."
  565. target_branch_not_exist = Target branch does not exist.
  566. admin_cannot_delete_self = You cannot delete yourself when you are an admin. Please remove your admin privileges first.
  567. [user]
  568. change_avatar = Change your avatar…
  569. joined_on = Joined on %s
  570. repositories = Repositories
  571. activity = Public Activity
  572. followers = Followers
  573. starred = Starred Repositories
  574. watched = Watched Repositories
  575. code = Code
  576. projects = Projects
  577. overview = Overview
  578. following = Following
  579. follow = Follow
  580. unfollow = Unfollow
  581. user_bio = Biography
  582. disabled_public_activity = This user has disabled the public visibility of the activity.
  583. email_visibility.limited = Your email address is visible to all authenticated users
  584. email_visibility.private = Your email address is only visible to you and administrators
  585. show_on_map = Show this place on a map
  586. settings = User Settings
  587. form.name_reserved = The username "%s" is reserved.
  588. form.name_pattern_not_allowed = The pattern "%s" is not allowed in a username.
  589. form.name_chars_not_allowed = User name "%s" contains invalid characters.
  590. block.block = Block
  591. block.block.user = Block user
  592. block.block.org = Block user for organization
  593. block.block.failure = Failed to block user: %s
  594. block.unblock = Unblock
  595. block.unblock.failure = Failed to unblock user: %s
  596. block.blocked = You have blocked this user.
  597. block.title = Block a user
  598. block.info = Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
  599. block.info_1 = Blocking a user prevents the following actions on your account and your repositories:
  600. block.info_2 = following your account
  601. block.info_3 = send you notifications by @mentioning your username
  602. block.info_4 = inviting you as a collaborator to their repositories
  603. block.info_5 = starring, forking or watching on repositories
  604. block.info_6 = opening and commenting on issues or pull requests
  605. block.info_7 = reacting on your comments in issues or pull requests
  606. block.user_to_block = User to block
  607. block.note = Note
  608. block.note.title = Optional note:
  609. block.note.info = The note is not visible to the blocked user.
  610. block.note.edit = Edit note
  611. block.list = Blocked users
  612. block.list.none = You have not blocked any users.
  613. [settings]
  614. profile = Profile
  615. account = Account
  616. appearance = Appearance
  617. password = Password
  618. security = Security
  619. avatar = Avatar
  620. ssh_gpg_keys = SSH / GPG Keys
  621. social = Social Accounts
  622. applications = Applications
  623. orgs = Manage Organizations
  624. repos = Repositories
  625. delete = Delete Account
  626. twofa = Two-Factor Authentication (TOTP)
  627. account_link = Linked Accounts
  628. organization = Organizations
  629. uid = UID
  630. webauthn = Two-Factor Authentication (Security Keys)
  631. public_profile = Public Profile
  632. biography_placeholder = Tell us a little bit about yourself! (You can use Markdown)
  633. location_placeholder = Share your approximate location with others
  634. profile_desc = Control how your profile is show to other users. Your primary email address will be used for notifications, password recovery and web-based Git operations.
  635. password_username_disabled = Non-local users are not allowed to change their username. Please contact your site administrator for more details.
  636. full_name = Full Name
  637. website = Website
  638. location = Location
  639. update_theme = Update Theme
  640. update_profile = Update Profile
  641. update_language = Update Language
  642. update_language_not_found = Language "%s" is not available.
  643. update_language_success = Language has been updated.
  644. update_profile_success = Your profile has been updated.
  645. change_username = Your username has been changed.
  646. change_username_prompt = Note: Changing your username also changes your account URL.
  647. change_username_redirect_prompt = The old username will redirect until someone claims it.
  648. continue = Continue
  649. cancel = Cancel
  650. language = Language
  651. ui = Theme
  652. hidden_comment_types = Hidden comment types
  653. hidden_comment_types_description = Comment types checked here will not be shown inside issue pages. Checking "Label" for example removes all "{user} added/removed {label}" comments.
  654. hidden_comment_types.ref_tooltip = Comments where this issue was referenced from another issue/commit/…
  655. hidden_comment_types.issue_ref_tooltip = Comments where the user changes the branch/tag associated with the issue
  656. comment_type_group_reference = Reference
  657. comment_type_group_label = Label
  658. comment_type_group_milestone = Milestone
  659. comment_type_group_assignee = Assignee
  660. comment_type_group_title = Title
  661. comment_type_group_branch = Branch
  662. comment_type_group_time_tracking = Time Tracking
  663. comment_type_group_deadline = Deadline
  664. comment_type_group_dependency = Dependency
  665. comment_type_group_lock = Lock Status
  666. comment_type_group_review_request = Review request
  667. comment_type_group_pull_request_push = Added commits
  668. comment_type_group_project = Project
  669. comment_type_group_issue_ref = Issue reference
  670. saved_successfully = Your settings were saved successfully.
  671. privacy = Privacy
  672. keep_activity_private = Hide Activity from profile page
  673. keep_activity_private_popup = Makes the activity visible only for you and the admins
  674. lookup_avatar_by_mail = Look Up Avatar by Email Address
  675. federated_avatar_lookup = Federated Avatar Lookup
  676. enable_custom_avatar = Use Custom Avatar
  677. choose_new_avatar = Choose new avatar
  678. update_avatar = Update Avatar
  679. delete_current_avatar = Delete Current Avatar
  680. uploaded_avatar_not_a_image = The uploaded file is not an image.
  681. uploaded_avatar_is_too_big = The uploaded file size (%d KiB) exceeds the maximum size (%d KiB).
  682. update_avatar_success = Your avatar has been updated.
  683. update_user_avatar_success = The user's avatar has been updated.
  684. change_password = Update Password
  685. old_password = Current Password
  686. new_password = New Password
  687. retype_new_password = Confirm New Password
  688. password_incorrect = The current password is incorrect.
  689. change_password_success = Your password has been updated. Sign in using your new password from now on.
  690. password_change_disabled = Non-local users cannot update their password through the Gitea web interface.
  691. emails = Email Addresses
  692. manage_emails = Manage Email Addresses
  693. manage_themes = Select default theme
  694. manage_openid = Manage OpenID Addresses
  695. email_desc = Your primary email address will be used for notifications, password recovery and, provided that it is not hidden, web-based Git operations.
  696. theme_desc = This will be your default theme across the site.
  697. primary = Primary
  698. activated = Activated
  699. requires_activation = Requires activation
  700. primary_email = Make Primary
  701. activate_email = Send Activation
  702. activations_pending = Activations Pending
  703. can_not_add_email_activations_pending = There is a pending activation, try again in a few minutes if you want to add a new email.
  704. delete_email = Remove
  705. email_deletion = Remove Email Address
  706. email_deletion_desc = The email address and related information will be removed from your account. Git commits by this email address will remain unchanged. Continue?
  707. email_deletion_success = The email address has been removed.
  708. theme_update_success = Your theme was updated.
  709. theme_update_error = The selected theme does not exist.
  710. openid_deletion = Remove OpenID Address
  711. openid_deletion_desc = Removing this OpenID address from your account will prevent you from signing in with it. Continue?
  712. openid_deletion_success = The OpenID address has been removed.
  713. add_new_email = Add New Email Address
  714. add_new_openid = Add New OpenID URI
  715. add_email = Add Email Address
  716. add_openid = Add OpenID URI
  717. add_email_confirmation_sent = A confirmation email has been sent to "%s". Please check your inbox within the next %s to confirm your email address.
  718. add_email_success = The new email address has been added.
  719. email_preference_set_success = Email preference has been set successfully.
  720. add_openid_success = The new OpenID address has been added.
  721. keep_email_private = Hide Email Address
  722. keep_email_private_popup = This will hide your email address from your profile, as well as when you make a pull request or edit a file using the web interface. Pushed commits will not be modified. Use %s in commits to associate them with your account.
  723. openid_desc = OpenID lets you delegate authentication to an external provider.
  724. manage_ssh_keys = Manage SSH Keys
  725. manage_ssh_principals = Manage SSH Certificate Principals
  726. manage_gpg_keys = Manage GPG Keys
  727. add_key = Add Key
  728. ssh_desc = These public SSH keys are associated with your account. The corresponding private keys allow full access to your repositories.
  729. principal_desc = These SSH certificate principals are associated with your account and allow full access to your repositories.
  730. gpg_desc = These public GPG keys are associated with your account. Keep your private keys safe as they allow commits to be verified.
  731. ssh_helper = <strong>Need help?</strong> Have a look at GitHub's guide to <a href="%s">create your own SSH keys</a> or solve <a href="%s">common problems</a> you may encounter using SSH.
  732. gpg_helper = <strong>Need help?</strong> Have a look at GitHub's guide <a href="%s">about GPG</a>.
  733. add_new_key = Add SSH Key
  734. add_new_gpg_key = Add GPG Key
  735. key_content_ssh_placeholder = Begins with 'ssh-ed25519', 'ssh-rsa', 'ecdsa-sha2-nistp256', 'ecdsa-sha2-nistp384', 'ecdsa-sha2-nistp521', 'sk-ecdsa-sha2-nistp256@openssh.com', or 'sk-ssh-ed25519@openssh.com'
  736. key_content_gpg_placeholder = Begins with '-----BEGIN PGP PUBLIC KEY BLOCK-----'
  737. add_new_principal = Add Principal
  738. ssh_key_been_used = This SSH key has already been added to the server.
  739. ssh_key_name_used = An SSH key with same name already exists on your account.
  740. ssh_principal_been_used = This principal has already been added to the server.
  741. gpg_key_id_used = A public GPG key with same ID already exists.
  742. gpg_no_key_email_found = This GPG key does not match any activated email address associated with your account. It may still be added if you sign the provided token.
  743. gpg_key_matched_identities = Matched Identities:
  744. gpg_key_matched_identities_long=The embedded identities in this key match the following activated email addresses for this user. Commits matching these email addresses can be verified with this key.
  745. gpg_key_verified=Verified Key
  746. gpg_key_verified_long=Key has been verified with a token and can be used to verify commits matching any activated email addresses for this user in addition to any matched identities for this key.
  747. gpg_key_verify=Verify
  748. gpg_invalid_token_signature = The provided GPG key, signature and token do not match or token is out-of-date.
  749. gpg_token_required = You must provide a signature for the below token
  750. gpg_token = Token
  751. gpg_token_help = You can generate a signature using:
  752. gpg_token_signature = Armored GPG signature
  753. key_signature_gpg_placeholder = Begins with '-----BEGIN PGP SIGNATURE-----'
  754. verify_gpg_key_success = GPG key "%s" has been verified.
  755. ssh_key_verified=Verified Key
  756. ssh_key_verified_long=Key has been verified with a token and can be used to verify commits matching any activated email addresses for this user.
  757. ssh_key_verify=Verify
  758. ssh_invalid_token_signature = The provided SSH key, signature or token do not match or token is out-of-date.
  759. ssh_token_required = You must provide a signature for the below token
  760. ssh_token = Token
  761. ssh_token_help = You can generate a signature using:
  762. ssh_token_signature = Armored SSH signature
  763. key_signature_ssh_placeholder = Begins with '-----BEGIN SSH SIGNATURE-----'
  764. verify_ssh_key_success = SSH key "%s" has been verified.
  765. subkeys = Subkeys
  766. key_id = Key ID
  767. key_name = Key Name
  768. key_content = Content
  769. principal_content = Content
  770. add_key_success = The SSH key "%s" has been added.
  771. add_gpg_key_success = The GPG key "%s" has been added.
  772. add_principal_success = The SSH certificate principal "%s" has been added.
  773. delete_key = Remove
  774. ssh_key_deletion = Remove SSH Key
  775. gpg_key_deletion = Remove GPG Key
  776. ssh_principal_deletion = Remove SSH Certificate Principal
  777. ssh_key_deletion_desc = Removing an SSH key revokes its access to your account. Continue?
  778. gpg_key_deletion_desc = Removing a GPG key un-verifies commits signed by it. Continue?
  779. ssh_principal_deletion_desc = Removing a SSH Certificate Principal revokes its access to your account. Continue?
  780. ssh_key_deletion_success = The SSH key has been removed.
  781. gpg_key_deletion_success = The GPG key has been removed.
  782. ssh_principal_deletion_success = The principal has been removed.
  783. added_on = Added on %s
  784. valid_until_date = Valid until %s
  785. valid_forever = Valid forever
  786. last_used = Last used on
  787. no_activity = No recent activity
  788. can_read_info = Read
  789. can_write_info = Write
  790. key_state_desc = This key has been used in the last 7 days
  791. token_state_desc = This token has been used in the last 7 days
  792. principal_state_desc = This principal has been used in the last 7 days
  793. show_openid = Show on profile
  794. hide_openid = Hide from profile
  795. ssh_disabled = SSH Disabled
  796. ssh_signonly = SSH is currently disabled so these keys are only used for commit signature verification.
  797. ssh_externally_managed = This SSH key is externally managed for this user
  798. manage_social = Manage Associated Social Accounts
  799. social_desc = These social accounts can be used to sign in to your account. Make sure you recognize all of them.
  800. unbind = Unlink
  801. unbind_success = The social account has been removed successfully.
  802. manage_access_token = Manage Access Tokens
  803. generate_new_token = Generate New Token
  804. tokens_desc = These tokens grant access to your account using the Gitea API.
  805. token_name = Token Name
  806. generate_token = Generate Token
  807. generate_token_success = Your new token has been generated. Copy it now as it will not be shown again.
  808. generate_token_name_duplicate = <strong>%s</strong> has been used as an application name already. Please use a new one.
  809. delete_token = Delete
  810. access_token_deletion = Delete Access Token
  811. access_token_deletion_cancel_action = Cancel
  812. access_token_deletion_confirm_action = Delete
  813. access_token_deletion_desc = Deleting a token will revoke access to your account for applications using it. This cannot be undone. Continue?
  814. delete_token_success = The token has been deleted. Applications using it no longer have access to your account.
  815. repo_and_org_access = Repository and Organization Access
  816. permissions_public_only = Public only
  817. permissions_access_all = All (public, private, and limited)
  818. select_permissions = Select permissions
  819. permission_not_set = Not set
  820. permission_no_access = No Access
  821. permission_read = Read
  822. permission_write = Read and Write
  823. access_token_desc = Selected token permissions limit authorization only to the corresponding <a %s>API</a> routes. Read the <a %s>documentation</a> for more information.
  824. at_least_one_permission = You must select at least one permission to create a token
  825. permissions_list = Permissions:
  826. manage_oauth2_applications = Manage OAuth2 Applications
  827. edit_oauth2_application = Edit OAuth2 Application
  828. oauth2_applications_desc = OAuth2 applications enables your third-party application to securely authenticate users at this Gitea instance.
  829. remove_oauth2_application = Remove OAuth2 Application
  830. remove_oauth2_application_desc = Removing an OAuth2 application will revoke access to all signed access tokens. Continue?
  831. remove_oauth2_application_success = The application has been deleted.
  832. create_oauth2_application = Create a new OAuth2 Application
  833. create_oauth2_application_button = Create Application
  834. create_oauth2_application_success = You have successfully created a new OAuth2 application.
  835. update_oauth2_application_success = You have successfully updated the OAuth2 application.
  836. oauth2_application_name = Application Name
  837. oauth2_confidential_client = Confidential Client. Select for apps that keep the secret confidential, such as web apps. Do not select for native apps including desktop and mobile apps.
  838. oauth2_redirect_uris = Redirect URIs. Please use a new line for every URI.
  839. save_application = Save
  840. oauth2_client_id = Client ID
  841. oauth2_client_secret = Client Secret
  842. oauth2_regenerate_secret = Regenerate Secret
  843. oauth2_regenerate_secret_hint = Lost your secret?
  844. oauth2_client_secret_hint = The secret will not be shown again after you leave or refresh this page. Please ensure that you have saved it.
  845. oauth2_application_edit = Edit
  846. oauth2_application_create_description = OAuth2 applications gives your third-party application access to user accounts on this instance.
  847. oauth2_application_remove_description = Removing an OAuth2 application will prevent it from accessing authorized user accounts on this instance. Continue?
  848. oauth2_application_locked = Gitea pre-registers some OAuth2 applications on startup if enabled in config. To prevent unexpected behavior, these can neither be edited nor removed. Please refer to the OAuth2 documentation for more information.
  849. authorized_oauth2_applications = Authorized OAuth2 Applications
  850. authorized_oauth2_applications_description = You have granted access to your personal Gitea account to these third party applications. Please revoke access for applications you no longer need.
  851. revoke_key = Revoke
  852. revoke_oauth2_grant = Revoke Access
  853. revoke_oauth2_grant_description = Revoking access for this third party application will prevent this application from accessing your data. Are you sure?
  854. revoke_oauth2_grant_success = Access revoked successfully.
  855. twofa_desc = To protect your account against password theft, you can use a smartphone or another device for receiving time-based one-time passwords ("TOTP").
  856. twofa_recovery_tip = If you lose your device, you will be able to use a single-use recovery key to regain access to your account.
  857. twofa_is_enrolled = Your account is currently <strong>enrolled</strong> in two-factor authentication.
  858. twofa_not_enrolled = Your account is not currently enrolled in two-factor authentication.
  859. twofa_disable = Disable Two-Factor Authentication
  860. twofa_scratch_token_regenerate = Regenerate Single-Use Recovery Key
  861. twofa_scratch_token_regenerated = Your single-use recovery key is now %s. Store it in a safe place, as it will not be shown again.
  862. twofa_enroll = Enroll into Two-Factor Authentication
  863. twofa_disable_note = You can disable two-factor authentication if needed.
  864. twofa_disable_desc = Disabling two-factor authentication will make your account less secure. Continue?
  865. regenerate_scratch_token_desc = If you misplaced your recovery key or have already used it to sign in, you can reset it here.
  866. twofa_disabled = Two-factor authentication has been disabled.
  867. scan_this_image = Scan this image with your authentication application:
  868. or_enter_secret = Or enter the secret: %s
  869. then_enter_passcode = And enter the passcode shown in the application:
  870. passcode_invalid = The passcode is incorrect. Try again.
  871. twofa_enrolled = Your account has been successfully enrolled. Store your single-use recovery key (%s) in a safe place, as it will not be shown again.
  872. twofa_failed_get_secret = Failed to get secret.
  873. webauthn_desc = Security keys are hardware devices containing cryptographic keys. They can be used for two-factor authentication. Security keys must support the <a rel="noreferrer" target="_blank" href="https://w3c.github.io/webauthn/#webauthn-authenticator">WebAuthn Authenticator</a> standard.
  874. webauthn_register_key = Add Security Key
  875. webauthn_nickname = Nickname
  876. webauthn_delete_key = Remove Security Key
  877. webauthn_delete_key_desc = If you remove a security key you can no longer sign in with it. Continue?
  878. webauthn_key_loss_warning = If you lose your security keys, you will lose access to your account.
  879. webauthn_alternative_tip = You may want to configure an additional authentication method.
  880. manage_account_links = Manage Linked Accounts
  881. manage_account_links_desc = These external accounts are linked to your Gitea account.
  882. account_links_not_available = There are currently no external accounts linked to your Gitea account.
  883. link_account = Link Account
  884. remove_account_link = Remove Linked Account
  885. remove_account_link_desc = Removing a linked account will revoke its access to your Gitea account. Continue?
  886. remove_account_link_success = The linked account has been removed.
  887. hooks.desc = Add webhooks which will be triggered for <strong>all repositories</strong> that you own.
  888. orgs_none = You are not a member of any organizations.
  889. repos_none = You do not own any repositories.
  890. delete_account = Delete Your Account
  891. delete_prompt = This operation will permanently delete your user account. It <strong>CANNOT</strong> be undone.
  892. delete_with_all_comments = Your account is younger than %s. To avoid ghost comments, all issue/PR comments will be deleted with it.
  893. confirm_delete_account = Confirm Deletion
  894. delete_account_title = Delete User Account
  895. delete_account_desc = Are you sure you want to permanently delete this user account?
  896. email_notifications.enable = Enable Email Notifications
  897. email_notifications.onmention = Only Email on Mention
  898. email_notifications.disable = Disable Email Notifications
  899. email_notifications.submit = Set Email Preference
  900. email_notifications.andyourown = And Your Own Notifications
  901. visibility = User visibility
  902. visibility.public = Public
  903. visibility.public_tooltip = Visible to everyone
  904. visibility.limited = Limited
  905. visibility.limited_tooltip = Visible only to authenticated users
  906. visibility.private = Private
  907. visibility.private_tooltip = Visible only to members of organizations you have joined
  908. [repo]
  909. new_repo_helper = A repository contains all project files, including revision history. Already hosting one elsewhere? <a href="%s">Migrate repository.</a>
  910. owner = Owner
  911. owner_helper = Some organizations may not show up in the dropdown due to a maximum repository count limit.
  912. repo_name = Repository Name
  913. repo_name_helper = Good repository names use short, memorable and unique keywords.
  914. repo_size = Repository Size
  915. template = Template
  916. template_select = Select a template.
  917. template_helper = Make repository a template
  918. template_description = Template repositories let users generate new repositories with the same directory structure, files, and optional settings.
  919. visibility = Visibility
  920. visibility_description = Only the owner or the organization members if they have rights, will be able to see it.
  921. visibility_helper = Make repository private
  922. visibility_helper_forced = Your site administrator forces new repositories to be private.
  923. visibility_fork_helper = (Changing this will affect all forks.)
  924. clone_helper = Need help cloning? Visit <a target="_blank" rel="noopener noreferrer" href="%s">Help</a>.
  925. fork_repo = Fork Repository
  926. fork_from = Fork From
  927. already_forked = You've already forked %s
  928. fork_to_different_account = Fork to a different account
  929. fork_visibility_helper = The visibility of a forked repository cannot be changed.
  930. fork_branch = Branch to be cloned to the fork
  931. all_branches = All branches
  932. fork_no_valid_owners = This repository can not be forked because there are no valid owners.
  933. fork.blocked_user = Cannot fork the repository because you are blocked by the repository owner.
  934. use_template = Use this template
  935. open_with_editor = Open with %s
  936. download_zip = Download ZIP
  937. download_tar = Download TAR.GZ
  938. download_bundle = Download BUNDLE
  939. generate_repo = Generate Repository
  940. generate_from = Generate From
  941. repo_desc = Description
  942. repo_desc_helper = Enter short description (optional)
  943. repo_lang = Language
  944. repo_gitignore_helper = Select .gitignore templates.
  945. repo_gitignore_helper_desc = Choose which files not to track from a list of templates for common languages. Typical artifacts generated by each language's build tools are included on .gitignore by default.
  946. issue_labels = Issue Labels
  947. issue_labels_helper = Select an issue label set.
  948. license = License
  949. license_helper = Select a license file.
  950. license_helper_desc = A license governs what others can and can't do with your code. Not sure which one is right for your project? See <a target="_blank" rel="noopener noreferrer" href="%s">Choose a license.</a>
  951. object_format = Object Format
  952. object_format_helper = Object format of the repository. Cannot be changed later. SHA1 is most compatible.
  953. readme = README
  954. readme_helper = Select a README file template.
  955. readme_helper_desc = This is the place where you can write a complete description for your project.
  956. auto_init = Initialize Repository (Adds .gitignore, License and README)
  957. trust_model_helper = Select trust model for signature verification. Possible options are:
  958. trust_model_helper_collaborator = Collaborator: Trust signatures by collaborators
  959. trust_model_helper_committer = Committer: Trust signatures that match committers
  960. trust_model_helper_collaborator_committer = Collaborator+Committer: Trust signatures by collaborators which match the committer
  961. trust_model_helper_default = Default: Use the default trust model for this installation
  962. create_repo = Create Repository
  963. default_branch = Default Branch
  964. default_branch_label = default
  965. default_branch_helper = The default branch is the base branch for pull requests and code commits.
  966. mirror_prune = Prune
  967. mirror_prune_desc = Remove obsolete remote-tracking references
  968. mirror_interval = Mirror Interval (valid time units are 'h', 'm', 's'). 0 to disable periodic sync. (Minimum interval: %s)
  969. mirror_interval_invalid = The mirror interval is not valid.
  970. mirror_sync = synced
  971. mirror_sync_on_commit = Sync when commits are pushed
  972. mirror_address = Clone From URL
  973. mirror_address_desc = Put any required credentials in the Authorization section.
  974. mirror_address_url_invalid = The provided URL is invalid. You must escape all components of the url correctly.
  975. mirror_address_protocol_invalid = The provided URL is invalid. Only http(s):// or git:// locations can be used for mirroring.
  976. mirror_lfs = Large File Storage (LFS)
  977. mirror_lfs_desc = Activate mirroring of LFS data.
  978. mirror_lfs_endpoint = LFS Endpoint
  979. mirror_lfs_endpoint_desc = Sync will attempt to use the clone url to <a target="_blank" rel="noopener noreferrer" href="%s">determine the LFS server</a>. You can also specify a custom endpoint if the repository LFS data is stored somewhere else.
  980. mirror_last_synced = Last Synchronized
  981. mirror_password_placeholder = (Unchanged)
  982. mirror_password_blank_placeholder = (Unset)
  983. mirror_password_help = Change the username to erase a stored password.
  984. watchers = Watchers
  985. stargazers = Stargazers
  986. stars_remove_warning = This will remove all stars from this repository.
  987. forks = Forks
  988. stars = Stars
  989. reactions_more = and %d more
  990. unit_disabled = The site administrator has disabled this repository section.
  991. language_other = Other
  992. adopt_search = Enter username to search for unadopted repositories... (leave blank to find all)
  993. adopt_preexisting_label = Adopt Files
  994. adopt_preexisting = Adopt pre-existing files
  995. adopt_preexisting_content = Create repository from %s
  996. adopt_preexisting_success = Adopted files and created repository from %s
  997. delete_preexisting_label = Delete
  998. delete_preexisting = Delete pre-existing files
  999. delete_preexisting_content = Delete files in %s
  1000. delete_preexisting_success = Deleted unadopted files in %s
  1001. blame_prior = View blame prior to this change
  1002. blame.ignore_revs = Ignoring revisions in <a href="%s">.git-blame-ignore-revs</a>. Click <a href="%s">here to bypass</a> and see the normal blame view.
  1003. blame.ignore_revs.failed = Failed to ignore revisions in <a href="%s">.git-blame-ignore-revs</a>.
  1004. author_search_tooltip = Shows a maximum of 30 users
  1005. tree_path_not_found_commit = Path %[1]s doesn't exist in commit %[2]s
  1006. tree_path_not_found_branch = Path %[1]s doesn't exist in branch %[2]s
  1007. tree_path_not_found_tag = Path %[1]s doesn't exist in tag %[2]s
  1008. transfer.accept = Accept Transfer
  1009. transfer.accept_desc = Transfer to "%s"
  1010. transfer.reject = Reject Transfer
  1011. transfer.reject_desc = Cancel transfer to "%s"
  1012. transfer.no_permission_to_accept = You do not have permission to accept this transfer.
  1013. transfer.no_permission_to_reject = You do not have permission to reject this transfer.
  1014. desc.private = Private
  1015. desc.public = Public
  1016. desc.template = Template
  1017. desc.internal = Internal
  1018. desc.archived = Archived
  1019. desc.sha256 = SHA256
  1020. template.items = Template Items
  1021. template.git_content = Git Content (Default Branch)
  1022. template.git_hooks = Git Hooks
  1023. template.git_hooks_tooltip = You are currently unable to modify or remove Git Hooks once added. Select this only if you trust the template repository.
  1024. template.webhooks = Webhooks
  1025. template.topics = Topics
  1026. template.avatar = Avatar
  1027. template.issue_labels = Issue Labels
  1028. template.one_item = Must select at least one template item
  1029. template.invalid = Must select a template repository
  1030. archive.title = This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
  1031. archive.title_date = This repository has been archived on %s. You can view files and clone it, but cannot push or open issues or pull requests.
  1032. archive.issue.nocomment = This repo is archived. You cannot comment on issues.
  1033. archive.pull.nocomment = This repo is archived. You cannot comment on pull requests.
  1034. form.reach_limit_of_creation_1 = The owner has already reached the limit of %d repository.
  1035. form.reach_limit_of_creation_n = The owner has already reached the limit of %d repositories.
  1036. form.name_reserved = The repository name "%s" is reserved.
  1037. form.name_pattern_not_allowed = The pattern "%s" is not allowed in a repository name.
  1038. need_auth = Authorization
  1039. migrate_options = Migration Options
  1040. migrate_service = Migration Service
  1041. migrate_options_mirror_helper = This repository will be a mirror
  1042. migrate_options_lfs = Migrate LFS files
  1043. migrate_options_lfs_endpoint.label = LFS Endpoint
  1044. migrate_options_lfs_endpoint.description = Migration will attempt to use your Git remote to <a target="_blank" rel="noopener noreferrer" href="%s">determine the LFS server</a>. You can also specify a custom endpoint if the repository LFS data is stored somewhere else.
  1045. migrate_options_lfs_endpoint.description.local = A local server path is supported too.
  1046. migrate_options_lfs_endpoint.placeholder = If left blank, the endpoint will be derived from the clone URL
  1047. migrate_items = Migration Items
  1048. migrate_items_wiki = Wiki
  1049. migrate_items_milestones = Milestones
  1050. migrate_items_labels = Labels
  1051. migrate_items_issues = Issues
  1052. migrate_items_pullrequests = Pull Requests
  1053. migrate_items_merge_requests = Merge Requests
  1054. migrate_items_releases = Releases
  1055. migrate_repo = Migrate Repository
  1056. migrate.clone_address = Migrate / Clone From URL
  1057. migrate.clone_address_desc = The HTTP(S) or Git 'clone' URL of an existing repository
  1058. migrate.github_token_desc = You can put one or more tokens with comma separated here to make migrating faster because of GitHub API rate limit. WARN: Abusing this feature may violate the service provider's policy and lead to account blocking.
  1059. migrate.clone_local_path = or a local server path
  1060. migrate.permission_denied = You are not allowed to import local repositories.
  1061. migrate.permission_denied_blocked = You cannot import from disallowed hosts, please ask the admin to check ALLOWED_DOMAINS/ALLOW_LOCALNETWORKS/BLOCKED_DOMAINS settings.
  1062. migrate.invalid_local_path = "The local path is invalid. It doesn't exist or is not a directory."
  1063. migrate.invalid_lfs_endpoint = The LFS endpoint is not valid.
  1064. migrate.failed = Migration failed: %v
  1065. migrate.migrate_items_options = Access Token is required to migrate additional items
  1066. migrated_from = Migrated from <a href="%[1]s">%[2]s</a>
  1067. migrated_from_fake = Migrated From %[1]s
  1068. migrate.migrate = Migrate From %s
  1069. migrate.migrating = Migrating from <b>%s</b> ...
  1070. migrate.migrating_failed = Migrating from <b>%s</b> failed.
  1071. migrate.migrating_failed.error = Failed to migrate: %s
  1072. migrate.migrating_failed_no_addr = Migration failed.
  1073. migrate.github.description = Migrate data from github.com or other GitHub instances.
  1074. migrate.git.description = Migrate a repository only from any Git service.
  1075. migrate.gitlab.description = Migrate data from gitlab.com or other GitLab instances.
  1076. migrate.gitea.description = Migrate data from gitea.com or other Gitea instances.
  1077. migrate.gogs.description = Migrate data from notabug.org or other Gogs instances.
  1078. migrate.onedev.description = Migrate data from code.onedev.io or other OneDev instances.
  1079. migrate.codebase.description = Migrate data from codebasehq.com.
  1080. migrate.gitbucket.description = Migrate data from GitBucket instances.
  1081. migrate.migrating_git = Migrating Git Data
  1082. migrate.migrating_topics = Migrating Topics
  1083. migrate.migrating_milestones = Migrating Milestones
  1084. migrate.migrating_labels = Migrating Labels
  1085. migrate.migrating_releases = Migrating Releases
  1086. migrate.migrating_issues = Migrating Issues
  1087. migrate.migrating_pulls = Migrating Pull Requests
  1088. migrate.cancel_migrating_title = Cancel Migration
  1089. migrate.cancel_migrating_confirm = Do you want to cancel this migration?
  1090. mirror_from = mirror of
  1091. forked_from = forked from
  1092. generated_from = generated from
  1093. fork_from_self = You cannot fork a repository you own.
  1094. fork_guest_user = Sign in to fork this repository.
  1095. watch_guest_user = Sign in to watch this repository.
  1096. star_guest_user = Sign in to star this repository.
  1097. unwatch = Unwatch
  1098. watch = Watch
  1099. unstar = Unstar
  1100. star = Star
  1101. fork = Fork
  1102. action.blocked_user = Cannot perform action because you are blocked by the repository owner.
  1103. download_archive = Download Repository
  1104. more_operations = More Operations
  1105. no_desc = No Description
  1106. quick_guide = Quick Guide
  1107. clone_this_repo = Clone this repository
  1108. cite_this_repo = Cite this repository
  1109. create_new_repo_command = Creating a new repository on the command line
  1110. push_exist_repo = Pushing an existing repository from the command line
  1111. empty_message = This repository does not contain any content.
  1112. broken_message = The Git data underlying this repository cannot be read. Contact the administrator of this instance or delete this repository.
  1113. code = Code
  1114. code.desc = Access source code, files, commits and branches.
  1115. branch = Branch
  1116. tree = Tree
  1117. clear_ref = `Clear current reference`
  1118. filter_branch_and_tag = Filter branch or tag
  1119. find_tag = Find tag
  1120. branches = Branches
  1121. tags = Tags
  1122. issues = Issues
  1123. pulls = Pull Requests
  1124. project_board = Projects
  1125. packages = Packages
  1126. actions = Actions
  1127. labels = Labels
  1128. org_labels_desc = Organization level labels that can be used with <strong>all repositories</strong> under this organization
  1129. org_labels_desc_manage = manage
  1130. milestones = Milestones
  1131. commits = Commits
  1132. commit = Commit
  1133. release = Release
  1134. releases = Releases
  1135. tag = Tag
  1136. released_this = released this
  1137. tagged_this = tagged this
  1138. file.title = %s at %s
  1139. file_raw = Raw
  1140. file_history = History
  1141. file_view_source = View Source
  1142. file_view_rendered = View Rendered
  1143. file_view_raw = View Raw
  1144. file_permalink = Permalink
  1145. file_too_large = The file is too large to be shown.
  1146. code_preview_line_from_to = Lines %[1]d to %[2]d in %[3]s
  1147. code_preview_line_in = Line %[1]d in %[2]s
  1148. invisible_runes_header = `This file contains invisible Unicode characters`
  1149. invisible_runes_description = `This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.`
  1150. ambiguous_runes_header = `This file contains ambiguous Unicode characters`
  1151. ambiguous_runes_description = `This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.`
  1152. invisible_runes_line = `This line has invisible unicode characters`
  1153. ambiguous_runes_line = `This line has ambiguous unicode characters`
  1154. ambiguous_character = `%[1]c [U+%04[1]X] can be confused with %[2]c [U+%04[2]X]`
  1155. escape_control_characters = Escape
  1156. unescape_control_characters = Unescape
  1157. file_copy_permalink = Copy Permalink
  1158. view_git_blame = View Git Blame
  1159. video_not_supported_in_browser = Your browser does not support the HTML5 'video' tag.
  1160. audio_not_supported_in_browser = Your browser does not support the HTML5 'audio' tag.
  1161. stored_lfs = Stored with Git LFS
  1162. symbolic_link = Symbolic link
  1163. executable_file = Executable File
  1164. vendored = Vendored
  1165. generated = Generated
  1166. commit_graph = Commit Graph
  1167. commit_graph.select = Select branches
  1168. commit_graph.hide_pr_refs = Hide Pull Requests
  1169. commit_graph.monochrome = Mono
  1170. commit_graph.color = Color
  1171. commit.contained_in = This commit is contained in:
  1172. commit.contained_in_default_branch = This commit is part of the default branch
  1173. commit.load_referencing_branches_and_tags = Load branches and tags referencing this commit
  1174. blame = Blame
  1175. download_file = Download file
  1176. normal_view = Normal View
  1177. line = line
  1178. lines = lines
  1179. from_comment = (comment)
  1180. editor.add_file = Add File
  1181. editor.new_file = New File
  1182. editor.upload_file = Upload File
  1183. editor.edit_file = Edit File
  1184. editor.preview_changes = Preview Changes
  1185. editor.cannot_edit_lfs_files = LFS files cannot be edited in the web interface.
  1186. editor.cannot_edit_non_text_files = Binary files cannot be edited in the web interface.
  1187. editor.edit_this_file = Edit File
  1188. editor.this_file_locked = File is locked
  1189. editor.must_be_on_a_branch = You must be on a branch to make or propose changes to this file.
  1190. editor.fork_before_edit = You must fork this repository to make or propose changes to this file.
  1191. editor.delete_this_file = Delete File
  1192. editor.must_have_write_access = You must have write access to make or propose changes to this file.
  1193. editor.file_delete_success = File "%s" has been deleted.
  1194. editor.name_your_file = Name your file…
  1195. editor.filename_help = Add a directory by typing its name followed by a slash ('/'). Remove a directory by typing backspace at the beginning of the input field.
  1196. editor.or = or
  1197. editor.cancel_lower = Cancel
  1198. editor.commit_signed_changes = Commit Signed Changes
  1199. editor.commit_changes = Commit Changes
  1200. editor.add_tmpl = Add '{filename}'
  1201. editor.add = Add %s
  1202. editor.update = Update %s
  1203. editor.delete = Delete %s
  1204. editor.patch = Apply Patch
  1205. editor.patching = Patching:
  1206. editor.fail_to_apply_patch = Unable to apply patch "%s"
  1207. editor.new_patch = New Patch
  1208. editor.commit_message_desc = Add an optional extended description…
  1209. editor.signoff_desc = Add a Signed-off-by trailer by the committer at the end of the commit log message.
  1210. editor.commit_directly_to_this_branch = Commit directly to the <strong class="branch-name">%s</strong> branch.
  1211. editor.create_new_branch = Create a <strong>new branch</strong> for this commit and start a pull request.
  1212. editor.create_new_branch_np = Create a <strong>new branch</strong> for this commit.
  1213. editor.propose_file_change = Propose file change
  1214. editor.new_branch_name = Name the new branch for this commit
  1215. editor.new_branch_name_desc = New branch name…
  1216. editor.cancel = Cancel
  1217. editor.filename_cannot_be_empty = The filename cannot be empty.
  1218. editor.filename_is_invalid = The filename is invalid: "%s".
  1219. editor.branch_does_not_exist = Branch "%s" does not exist in this repository.
  1220. editor.branch_already_exists = Branch "%s" already exists in this repository.
  1221. editor.directory_is_a_file = Directory name "%s" is already used as a filename in this repository.
  1222. editor.file_is_a_symlink = `"%s" is a symbolic link. Symbolic links cannot be edited in the web editor`
  1223. editor.filename_is_a_directory = Filename "%s" is already used as a directory name in this repository.
  1224. editor.file_editing_no_longer_exists = The file being edited, "%s", no longer exists in this repository.
  1225. editor.file_deleting_no_longer_exists = The file being deleted, "%s", no longer exists in this repository.
  1226. editor.file_changed_while_editing = The file contents have changed since you started editing. <a target="_blank" rel="noopener noreferrer" href="%s">Click here</a> to see them or <strong>Commit Changes again</strong> to overwrite them.
  1227. editor.file_already_exists = A file named "%s" already exists in this repository.
  1228. editor.commit_id_not_matching = The Commit ID does not match the ID when you began editing. Commit into a patch branch and then merge.
  1229. editor.push_out_of_date = The push appears to be out of date.
  1230. editor.commit_empty_file_header = Commit an empty file
  1231. editor.commit_empty_file_text = The file you're about to commit is empty. Proceed?
  1232. editor.no_changes_to_show = There are no changes to show.
  1233. editor.fail_to_update_file = Failed to update/create file "%s".
  1234. editor.fail_to_update_file_summary = Error Message:
  1235. editor.push_rejected_no_message = The change was rejected by the server without a message. Please check Git Hooks.
  1236. editor.push_rejected = The change was rejected by the server. Please check Git Hooks.
  1237. editor.push_rejected_summary = Full Rejection Message:
  1238. editor.add_subdir = Add a directory…
  1239. editor.unable_to_upload_files = Failed to upload files to "%s" with error: %v
  1240. editor.upload_file_is_locked = File "%s" is locked by %s.
  1241. editor.upload_files_to_dir = Upload files to "%s"
  1242. editor.cannot_commit_to_protected_branch = Cannot commit to protected branch "%s".
  1243. editor.no_commit_to_branch = Unable to commit directly to branch because:
  1244. editor.user_no_push_to_branch = User cannot push to branch
  1245. editor.require_signed_commit = Branch requires a signed commit
  1246. editor.cherry_pick = Cherry-pick %s onto:
  1247. editor.revert = Revert %s onto:
  1248. commits.desc = Browse source code change history.
  1249. commits.commits = Commits
  1250. commits.no_commits = No commits in common. "%s" and "%s" have entirely different histories.
  1251. commits.nothing_to_compare = These branches are equal.
  1252. commits.search.tooltip = You can prefix keywords with "author:", "committer:", "after:", or "before:", e.g. "revert author:Alice before:2019-01-13".
  1253. commits.search_branch = This Branch
  1254. commits.search_all = All Branches
  1255. commits.author = Author
  1256. commits.message = Message
  1257. commits.date = Date
  1258. commits.older = Older
  1259. commits.newer = Newer
  1260. commits.signed_by = Signed by
  1261. commits.signed_by_untrusted_user = Signed by untrusted user
  1262. commits.signed_by_untrusted_user_unmatched = Signed by untrusted user who does not match committer
  1263. commits.gpg_key_id = GPG Key ID
  1264. commits.ssh_key_fingerprint = SSH Key Fingerprint
  1265. commits.view_path=View at this point in history
  1266. commit.operations = Operations
  1267. commit.revert = Revert
  1268. commit.revert-header = Revert: %s
  1269. commit.revert-content = Select branch to revert onto:
  1270. commit.cherry-pick = Cherry-pick
  1271. commit.cherry-pick-header = Cherry-pick: %s
  1272. commit.cherry-pick-content = Select branch to cherry-pick onto:
  1273. commitstatus.error = Error
  1274. commitstatus.failure = Failure
  1275. commitstatus.pending = Pending
  1276. commitstatus.success = Success
  1277. ext_issues = Access to External Issues
  1278. ext_issues.desc = Link to an external issue tracker.
  1279. projects = Projects
  1280. projects.desc = Manage issues and pulls in project boards.
  1281. projects.description = Description (optional)
  1282. projects.description_placeholder = Description
  1283. projects.create = Create Project
  1284. projects.title = Title
  1285. projects.new = New Project
  1286. projects.new_subheader = Coordinate, track, and update your work in one place, so projects stay transparent and on schedule.
  1287. projects.create_success = The project "%s" has been created.
  1288. projects.deletion = Delete Project
  1289. projects.deletion_desc = Deleting a project removes it from all related issues. Continue?
  1290. projects.deletion_success = The project has been deleted.
  1291. projects.edit = Edit Project
  1292. projects.edit_subheader = Projects organize issues and track progress.
  1293. projects.modify = Edit Project
  1294. projects.edit_success = Project "%s" has been updated.
  1295. projects.type.none = "None"
  1296. projects.type.basic_kanban = "Basic Kanban"
  1297. projects.type.bug_triage = "Bug Triage"
  1298. projects.template.desc = "Template"
  1299. projects.template.desc_helper = "Select a project template to get started"
  1300. projects.column.edit = "Edit Column"
  1301. projects.column.edit_title = "Name"
  1302. projects.column.new_title = "Name"
  1303. projects.column.new_submit = "Create Column"
  1304. projects.column.new = "New Column"
  1305. projects.column.set_default = "Set Default"
  1306. projects.column.set_default_desc = "Set this column as default for uncategorized issues and pulls"
  1307. projects.column.delete = "Delete Column"
  1308. projects.column.deletion_desc = "Deleting a project column moves all related issues to the default column. Continue?"
  1309. projects.column.color = "Color"
  1310. projects.open = Open
  1311. projects.close = Close
  1312. projects.column.assigned_to = Assigned to
  1313. projects.card_type.desc = "Card Previews"
  1314. projects.card_type.images_and_text = "Images and Text"
  1315. projects.card_type.text_only = "Text Only"
  1316. issues.desc = Organize bug reports, tasks and milestones.
  1317. issues.filter_assignees = Filter Assignee
  1318. issues.filter_milestones = Filter Milestone
  1319. issues.filter_projects = Filter Project
  1320. issues.filter_labels = Filter Label
  1321. issues.filter_reviewers = Filter Reviewer
  1322. issues.new = New Issue
  1323. issues.new.title_empty = Title cannot be empty
  1324. issues.new.labels = Labels
  1325. issues.new.no_label = No Label
  1326. issues.new.clear_labels = Clear labels
  1327. issues.new.projects = Projects
  1328. issues.new.clear_projects = Clear projects
  1329. issues.new.no_projects = No project
  1330. issues.new.open_projects = Open Projects
  1331. issues.new.closed_projects = Closed Projects
  1332. issues.new.no_items = No items
  1333. issues.new.milestone = Milestone
  1334. issues.new.no_milestone = No Milestone
  1335. issues.new.clear_milestone = Clear milestone
  1336. issues.new.open_milestone = Open Milestones
  1337. issues.new.closed_milestone = Closed Milestones
  1338. issues.new.assignees = Assignees
  1339. issues.new.clear_assignees = Clear assignees
  1340. issues.new.no_assignees = No Assignees
  1341. issues.new.no_reviewers = No reviewers
  1342. issues.new.blocked_user = Cannot create issue because you are blocked by the repository owner.
  1343. issues.edit.blocked_user = Cannot edit content because you are blocked by the poster or repository owner.
  1344. issues.choose.get_started = Get Started
  1345. issues.choose.open_external_link = Open
  1346. issues.choose.blank = Default
  1347. issues.choose.blank_about = Create an issue from default template.
  1348. issues.choose.ignore_invalid_templates = Invalid templates have been ignored
  1349. issues.choose.invalid_templates = %v invalid template(s) found
  1350. issues.choose.invalid_config = The issue config contains errors:
  1351. issues.no_ref = No Branch/Tag Specified
  1352. issues.create = Create Issue
  1353. issues.new_label = New Label
  1354. issues.new_label_placeholder = Label name
  1355. issues.new_label_desc_placeholder = Description
  1356. issues.create_label = Create Label
  1357. issues.label_templates.title = Load a predefined set of labels
  1358. issues.label_templates.info = No labels exist yet. Create a label with 'New Label' or use a predefined label set:
  1359. issues.label_templates.helper = Select a label set
  1360. issues.label_templates.use = Use Label Set
  1361. issues.label_templates.fail_to_load_file = Failed to load label template file "%s": %v
  1362. issues.add_label = added the %s label %s
  1363. issues.add_labels = added the %s labels %s
  1364. issues.remove_label = removed the %s label %s
  1365. issues.remove_labels = removed the %s labels %s
  1366. issues.add_remove_labels = added %s and removed %s labels %s
  1367. issues.add_milestone_at = `added this to the <b>%s</b> milestone %s`
  1368. issues.add_project_at = `added this to the <b>%s</b> project %s`
  1369. issues.change_milestone_at = `modified the milestone from <b>%s</b> to <b>%s</b> %s`
  1370. issues.change_project_at = `modified the project from <b>%s</b> to <b>%s</b> %s`
  1371. issues.remove_milestone_at = `removed this from the <b>%s</b> milestone %s`
  1372. issues.remove_project_at = `removed this from the <b>%s</b> project %s`
  1373. issues.deleted_milestone = `(deleted)`
  1374. issues.deleted_project = `(deleted)`
  1375. issues.self_assign_at = `self-assigned this %s`
  1376. issues.add_assignee_at = `was assigned by <b>%s</b> %s`
  1377. issues.remove_assignee_at = `was unassigned by <b>%s</b> %s`
  1378. issues.remove_self_assignment = `removed their assignment %s`
  1379. issues.change_title_at = `changed title from <b><strike>%s</strike></b> to <b>%s</b> %s`
  1380. issues.change_ref_at = `changed reference from <b><strike>%s</strike></b> to <b>%s</b> %s`
  1381. issues.remove_ref_at = `removed reference <b>%s</b> %s`
  1382. issues.add_ref_at = `added reference <b>%s</b> %s`
  1383. issues.delete_branch_at = `deleted branch <b>%s</b> %s`
  1384. issues.filter_label = Label
  1385. issues.filter_label_exclude = `Use <code>alt</code> + <code>click/enter</code> to exclude labels`
  1386. issues.filter_label_no_select = All labels
  1387. issues.filter_label_select_no_label = No label
  1388. issues.filter_milestone = Milestone
  1389. issues.filter_milestone_all = All milestones
  1390. issues.filter_milestone_none = No milestones
  1391. issues.filter_milestone_open = Open milestones
  1392. issues.filter_milestone_closed = Closed milestones
  1393. issues.filter_project = Project
  1394. issues.filter_project_all = All projects
  1395. issues.filter_project_none = No project
  1396. issues.filter_assignee = Assignee
  1397. issues.filter_assginee_no_select = All assignees
  1398. issues.filter_assginee_no_assignee = No assignee
  1399. issues.filter_poster = Author
  1400. issues.filter_poster_no_select = All authors
  1401. issues.filter_type = Type
  1402. issues.filter_type.all_issues = All issues
  1403. issues.filter_type.assigned_to_you = Assigned to you
  1404. issues.filter_type.created_by_you = Created by you
  1405. issues.filter_type.mentioning_you = Mentioning you
  1406. issues.filter_type.review_requested = Review requested
  1407. issues.filter_type.reviewed_by_you = Reviewed by you
  1408. issues.filter_sort = Sort
  1409. issues.filter_sort.latest = Newest
  1410. issues.filter_sort.oldest = Oldest
  1411. issues.filter_sort.recentupdate = Recently updated
  1412. issues.filter_sort.leastupdate = Least recently updated
  1413. issues.filter_sort.mostcomment = Most commented
  1414. issues.filter_sort.leastcomment = Least commented
  1415. issues.filter_sort.nearduedate = Nearest due date
  1416. issues.filter_sort.farduedate = Farthest due date
  1417. issues.filter_sort.moststars = Most stars
  1418. issues.filter_sort.feweststars = Fewest stars
  1419. issues.filter_sort.mostforks = Most forks
  1420. issues.filter_sort.fewestforks = Fewest forks
  1421. issues.action_open = Open
  1422. issues.action_close = Close
  1423. issues.action_label = Label
  1424. issues.action_milestone = Milestone
  1425. issues.action_milestone_no_select = No milestone
  1426. issues.action_assignee = Assignee
  1427. issues.action_assignee_no_select = No assignee
  1428. issues.action_check = Check/Uncheck
  1429. issues.action_check_all = Check/Uncheck all items
  1430. issues.opened_by = opened %[1]s by <a href="%[2]s">%[3]s</a>
  1431. pulls.merged_by = by <a href="%[2]s">%[3]s</a> was merged %[1]s
  1432. pulls.merged_by_fake = by %[2]s was merged %[1]s
  1433. issues.closed_by = by <a href="%[2]s">%[3]s</a> was closed %[1]s
  1434. issues.opened_by_fake = opened %[1]s by %[2]s
  1435. issues.closed_by_fake = by %[2]s was closed %[1]s
  1436. issues.previous = Previous
  1437. issues.next = Next
  1438. issues.open_title = Open
  1439. issues.closed_title = Closed
  1440. issues.draft_title = Draft
  1441. issues.num_comments_1 = %d comment
  1442. issues.num_comments = %d comments
  1443. issues.commented_at = `commented <a href="#%s">%s</a>`
  1444. issues.delete_comment_confirm = Are you sure you want to delete this comment?
  1445. issues.context.copy_link = Copy Link
  1446. issues.context.quote_reply = Quote Reply
  1447. issues.context.reference_issue = Reference in New Issue
  1448. issues.context.edit = Edit
  1449. issues.context.delete = Delete
  1450. issues.no_content = No description provided.
  1451. issues.close = Close Issue
  1452. issues.comment_pull_merged_at = merged commit %[1]s into %[2]s %[3]s
  1453. issues.comment_manually_pull_merged_at = manually merged commit %[1]s into %[2]s %[3]s
  1454. issues.close_comment_issue = Comment and Close
  1455. issues.reopen_issue = Reopen
  1456. issues.reopen_comment_issue = Comment and Reopen
  1457. issues.create_comment = Comment
  1458. issues.comment.blocked_user = Cannot create or edit comment because you are blocked by the poster or repository owner.
  1459. issues.closed_at = `closed this issue <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  1460. issues.reopened_at = `reopened this issue <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  1461. issues.commit_ref_at = `referenced this issue from a commit <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  1462. issues.ref_issue_from = `<a href="%[3]s">referenced this issue %[4]s</a> <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  1463. issues.ref_pull_from = `<a href="%[3]s">referenced this pull request %[4]s</a> <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  1464. issues.ref_closing_from = `<a href="%[3]s">referenced a pull request %[4]s that will close this issue</a> <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  1465. issues.ref_reopening_from = `<a href="%[3]s">referenced a pull request %[4]s that will reopen this issue</a> <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  1466. issues.ref_closed_from = `<a href="%[3]s">closed this issue %[4]s</a> <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  1467. issues.ref_reopened_from = `<a href="%[3]s">reopened this issue %[4]s</a> <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  1468. issues.ref_from = `from %[1]s`
  1469. issues.author = Author
  1470. issues.author_helper = This user is the author.
  1471. issues.role.owner = Owner
  1472. issues.role.owner_helper = This user is the owner of this repository.
  1473. issues.role.member = Member
  1474. issues.role.member_helper = This user is a member of the organization owning this repository.
  1475. issues.role.collaborator = Collaborator
  1476. issues.role.collaborator_helper = This user has been invited to collaborate on the repository.
  1477. issues.role.first_time_contributor = First-time contributor
  1478. issues.role.first_time_contributor_helper = This is the first contribution of this user to the repository.
  1479. issues.role.contributor = Contributor
  1480. issues.role.contributor_helper = This user has previously committed to the repository.
  1481. issues.re_request_review=Re-request review
  1482. issues.is_stale = There have been changes to this PR since this review
  1483. issues.remove_request_review=Remove review request
  1484. issues.remove_request_review_block=Can't remove review request
  1485. issues.dismiss_review = Dismiss Review
  1486. issues.dismiss_review_warning = Are you sure you want to dismiss this review?
  1487. issues.sign_in_require_desc = <a href="%s">Sign in</a> to join this conversation.
  1488. issues.edit = Edit
  1489. issues.cancel = Cancel
  1490. issues.save = Save
  1491. issues.label_title = Name
  1492. issues.label_description = Description
  1493. issues.label_color = Color
  1494. issues.label_exclusive = Exclusive
  1495. issues.label_archive = Archive Label
  1496. issues.label_archived_filter = Show archived labels
  1497. issues.label_archive_tooltip = Archived labels are excluded by default from the suggestions when searching by label.
  1498. issues.label_exclusive_desc = Name the label <code>scope/item</code> to make it mutually exclusive with other <code>scope/</code> labels.
  1499. issues.label_exclusive_warning = Any conflicting scoped labels will be removed when editing the labels of an issue or pull request.
  1500. issues.label_count = %d labels
  1501. issues.label_open_issues = %d open issues/pull requests
  1502. issues.label_edit = Edit
  1503. issues.label_delete = Delete
  1504. issues.label_modify = Edit Label
  1505. issues.label_deletion = Delete Label
  1506. issues.label_deletion_desc = Deleting a label removes it from all issues. Continue?
  1507. issues.label_deletion_success = The label has been deleted.
  1508. issues.label.filter_sort.alphabetically = Alphabetically
  1509. issues.label.filter_sort.reverse_alphabetically = Reverse alphabetically
  1510. issues.label.filter_sort.by_size = Smallest size
  1511. issues.label.filter_sort.reverse_by_size = Largest size
  1512. issues.num_participants = %d Participants
  1513. issues.attachment.open_tab = `Click to see "%s" in a new tab`
  1514. issues.attachment.download = `Click to download "%s"`
  1515. issues.subscribe = Subscribe
  1516. issues.unsubscribe = Unsubscribe
  1517. issues.unpin_issue = Unpin Issue
  1518. issues.max_pinned = "You can't pin more issues"
  1519. issues.pin_comment = "pinned this %s"
  1520. issues.unpin_comment = "unpinned this %s"
  1521. issues.lock = Lock conversation
  1522. issues.unlock = Unlock conversation
  1523. issues.lock.unknown_reason = Cannot lock an issue with an unknown reason.
  1524. issues.lock_duplicate = An issue cannot be locked twice.
  1525. issues.unlock_error = Cannot unlock an issue that is not locked.
  1526. issues.lock_with_reason = "locked as <strong>%s</strong> and limited conversation to collaborators %s"
  1527. issues.lock_no_reason = "locked and limited conversation to collaborators %s"
  1528. issues.unlock_comment = "unlocked this conversation %s"
  1529. issues.lock_confirm = Lock
  1530. issues.unlock_confirm = Unlock
  1531. issues.lock.notice_1 = - Other users can’t add new comments to this issue.
  1532. issues.lock.notice_2 = - You and other collaborators with access to this repository can still leave comments that others can see.
  1533. issues.lock.notice_3 = - You can always unlock this issue again in the future.
  1534. issues.unlock.notice_1 = - Everyone would be able to comment on this issue once more.
  1535. issues.unlock.notice_2 = - You can always lock this issue again in the future.
  1536. issues.lock.reason = Reason for locking
  1537. issues.lock.title = Lock conversation on this issue.
  1538. issues.unlock.title = Unlock conversation on this issue.
  1539. issues.comment_on_locked = You cannot comment on a locked issue.
  1540. issues.delete = Delete
  1541. issues.delete.title = Delete this issue?
  1542. issues.delete.text = Do you really want to delete this issue? (This will permanently remove all content. Consider closing it instead, if you intend to keep it archived)
  1543. issues.tracker = Time Tracker
  1544. issues.start_tracking_short = Start Timer
  1545. issues.start_tracking = Start Time Tracking
  1546. issues.start_tracking_history = `started working %s`
  1547. issues.tracker_auto_close = Timer will be stopped automatically when this issue gets closed
  1548. issues.tracking_already_started = `You have already started time tracking on <a href="%s">another issue</a>!`
  1549. issues.stop_tracking = Stop Timer
  1550. issues.stop_tracking_history = `stopped working %s`
  1551. issues.cancel_tracking = Discard
  1552. issues.cancel_tracking_history = `canceled time tracking %s`
  1553. issues.add_time = Manually Add Time
  1554. issues.del_time = Delete this time log
  1555. issues.add_time_short = Add Time
  1556. issues.add_time_cancel = Cancel
  1557. issues.add_time_history = `added spent time %s`
  1558. issues.del_time_history= `deleted spent time %s`
  1559. issues.add_time_hours = Hours
  1560. issues.add_time_minutes = Minutes
  1561. issues.add_time_sum_to_small = No time was entered.
  1562. issues.time_spent_total = Total Time Spent
  1563. issues.time_spent_from_all_authors = `Total Time Spent: %s`
  1564. issues.due_date = Due Date
  1565. issues.invalid_due_date_format = "Due date format must be 'yyyy-mm-dd'."
  1566. issues.error_modifying_due_date = "Failed to modify the due date."
  1567. issues.error_removing_due_date = "Failed to remove the due date."
  1568. issues.push_commit_1 = "added %d commit %s"
  1569. issues.push_commits_n = "added %d commits %s"
  1570. issues.force_push_codes = `force-pushed %[1]s from <a class="ui sha" href="%[3]s"><code>%[2]s</code></a> to <a class="ui sha" href="%[5]s"><code>%[4]s</code></a> %[6]s`
  1571. issues.force_push_compare = Compare
  1572. issues.due_date_form = "yyyy-mm-dd"
  1573. issues.due_date_form_add = "Add due date"
  1574. issues.due_date_form_edit = "Edit"
  1575. issues.due_date_form_remove = "Remove"
  1576. issues.due_date_not_writer = "You need write access to this repository in order to update the due date of an issue."
  1577. issues.due_date_not_set = "No due date set."
  1578. issues.due_date_added = "added the due date %s %s"
  1579. issues.due_date_modified = "modified the due date from %[2]s to %[1]s %[3]s"
  1580. issues.due_date_remove = "removed the due date %s %s"
  1581. issues.due_date_overdue = "Overdue"
  1582. issues.due_date_invalid = "The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'."
  1583. issues.dependency.title = Dependencies
  1584. issues.dependency.issue_no_dependencies = No dependencies set.
  1585. issues.dependency.pr_no_dependencies = No dependencies set.
  1586. issues.dependency.no_permission_1 = "You do not have permission to read %d dependency"
  1587. issues.dependency.no_permission_n = "You do not have permission to read %d dependencies"
  1588. issues.dependency.no_permission.can_remove = "You do not have permission to read this dependency but can remove this dependency"
  1589. issues.dependency.add = Add dependency…
  1590. issues.dependency.cancel = Cancel
  1591. issues.dependency.remove = Remove
  1592. issues.dependency.remove_info = Remove this dependency
  1593. issues.dependency.added_dependency = `added a new dependency %s`
  1594. issues.dependency.removed_dependency = `removed a dependency %s`
  1595. issues.dependency.pr_closing_blockedby = Closing this pull request is blocked by the following issues
  1596. issues.dependency.issue_closing_blockedby = Closing this issue is blocked by the following issues
  1597. issues.dependency.issue_close_blocks = This issue blocks closing of the following issues
  1598. issues.dependency.pr_close_blocks = This pull request blocks closing of the following issues
  1599. issues.dependency.issue_close_blocked = You need to close all issues blocking this issue before you can close it.
  1600. issues.dependency.issue_batch_close_blocked = "Cannot batch close issues that you choose, because issue #%d still has open dependencies"
  1601. issues.dependency.pr_close_blocked = You need to close all issues blocking this pull request before you can merge it.
  1602. issues.dependency.blocks_short = Blocks
  1603. issues.dependency.blocked_by_short = Depends on
  1604. issues.dependency.remove_header = Remove Dependency
  1605. issues.dependency.issue_remove_text = This will remove the dependency from this issue. Continue?
  1606. issues.dependency.pr_remove_text = This will remove the dependency from this pull request. Continue?
  1607. issues.dependency.setting = Enable Dependencies For Issues and Pull Requests
  1608. issues.dependency.add_error_same_issue = You cannot make an issue depend on itself.
  1609. issues.dependency.add_error_dep_issue_not_exist = Dependent issue does not exist.
  1610. issues.dependency.add_error_dep_not_exist = Dependency does not exist.
  1611. issues.dependency.add_error_dep_exists = Dependency already exists.
  1612. issues.dependency.add_error_cannot_create_circular = You cannot create a dependency with two issues blocking each other.
  1613. issues.dependency.add_error_dep_not_same_repo = Both issues must be in the same repository.
  1614. issues.review.self.approval = You cannot approve your own pull request.
  1615. issues.review.self.rejection = You cannot request changes on your own pull request.
  1616. issues.review.approve = "approved these changes %s"
  1617. issues.review.comment = "reviewed %s"
  1618. issues.review.dismissed = "dismissed %s’s review %s"
  1619. issues.review.dismissed_label = Dismissed
  1620. issues.review.left_comment = left a comment
  1621. issues.review.content.empty = You need to leave a comment indicating the requested change(s).
  1622. issues.review.reject = "requested changes %s"
  1623. issues.review.wait = "was requested for review %s"
  1624. issues.review.add_review_request = "requested review from %s %s"
  1625. issues.review.remove_review_request = "removed review request for %s %s"
  1626. issues.review.remove_review_request_self = "refused to review %s"
  1627. issues.review.pending = Pending
  1628. issues.review.pending.tooltip = This comment is not currently visible to other users. To submit your pending comments, select "%s" -> "%s/%s/%s" at the top of the page.
  1629. issues.review.review = Review
  1630. issues.review.reviewers = Reviewers
  1631. issues.review.outdated = Outdated
  1632. issues.review.outdated_description = Content has changed since this comment was made
  1633. issues.review.option.show_outdated_comments = Show outdated comments
  1634. issues.review.option.hide_outdated_comments = Hide outdated comments
  1635. issues.review.show_outdated = Show outdated
  1636. issues.review.hide_outdated = Hide outdated
  1637. issues.review.show_resolved = Show resolved
  1638. issues.review.hide_resolved = Hide resolved
  1639. issues.review.resolve_conversation = Resolve conversation
  1640. issues.review.un_resolve_conversation = Unresolve conversation
  1641. issues.review.resolved_by = marked this conversation as resolved
  1642. issues.assignee.error = Not all assignees was added due to an unexpected error.
  1643. issues.reference_issue.body = Body
  1644. issues.content_history.deleted = deleted
  1645. issues.content_history.edited = edited
  1646. issues.content_history.created = created
  1647. issues.content_history.delete_from_history = Delete from history
  1648. issues.content_history.delete_from_history_confirm = Delete from history?
  1649. issues.content_history.options = Options
  1650. issues.reference_link = Reference: %s
  1651. compare.compare_base = base
  1652. compare.compare_head = compare
  1653. pulls.desc = Enable pull requests and code reviews.
  1654. pulls.new = New Pull Request
  1655. pulls.new.blocked_user = Cannot create pull request because you are blocked by the repository owner.
  1656. pulls.view = View Pull Request
  1657. pulls.compare_changes = New Pull Request
  1658. pulls.allow_edits_from_maintainers = Allow edits from maintainers
  1659. pulls.allow_edits_from_maintainers_desc = Users with write access to the base branch can also push to this branch
  1660. pulls.allow_edits_from_maintainers_err = Updating failed
  1661. pulls.compare_changes_desc = Select the branch to merge into and the branch to pull from.
  1662. pulls.has_viewed_file = Viewed
  1663. pulls.has_changed_since_last_review = Changed since your last review
  1664. pulls.viewed_files_label = %[1]d / %[2]d files viewed
  1665. pulls.expand_files = Expand all files
  1666. pulls.collapse_files = Collapse all files
  1667. pulls.compare_base = merge into
  1668. pulls.compare_compare = pull from
  1669. pulls.switch_comparison_type = Switch comparison type
  1670. pulls.switch_head_and_base = Switch head and base
  1671. pulls.filter_branch = Filter branch
  1672. pulls.show_all_commits = Show all commits
  1673. pulls.show_changes_since_your_last_review = Show changes since your last review
  1674. pulls.showing_only_single_commit = Showing only changes of commit %[1]s
  1675. pulls.showing_specified_commit_range = Showing only changes between %[1]s..%[2]s
  1676. pulls.select_commit_hold_shift_for_range = Select commit. Hold shift + click to select a range
  1677. pulls.review_only_possible_for_full_diff = Review is only possible when viewing the full diff
  1678. pulls.filter_changes_by_commit = Filter by commit
  1679. pulls.nothing_to_compare = These branches are equal. There is no need to create a pull request.
  1680. pulls.nothing_to_compare_have_tag = The selected branch/tag are equal.
  1681. pulls.nothing_to_compare_and_allow_empty_pr = These branches are equal. This PR will be empty.
  1682. pulls.has_pull_request = `A pull request between these branches already exists: <a href="%[1]s">%[2]s#%[3]d</a>`
  1683. pulls.create = Create Pull Request
  1684. pulls.title_desc = wants to merge %[1]d commits from <code>%[2]s</code> into <code id="branch_target">%[3]s</code>
  1685. pulls.merged_title_desc = merged %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> %[4]s
  1686. pulls.change_target_branch_at = `changed target branch from <b>%s</b> to <b>%s</b> %s`
  1687. pulls.tab_conversation = Conversation
  1688. pulls.tab_commits = Commits
  1689. pulls.tab_files = Files Changed
  1690. pulls.reopen_to_merge = Please reopen this pull request to perform a merge.
  1691. pulls.cant_reopen_deleted_branch = This pull request cannot be reopened because the branch was deleted.
  1692. pulls.merged = Merged
  1693. pulls.merged_success = Pull request successfully merged and closed
  1694. pulls.closed = Pull request closed
  1695. pulls.manually_merged = Manually merged
  1696. pulls.merged_info_text = The branch %s can now be deleted.
  1697. pulls.is_closed = The pull request has been closed.
  1698. pulls.title_wip_desc = `<a href="#">Start the title with <strong>%s</strong></a> to prevent the pull request from being merged accidentally.`
  1699. pulls.cannot_merge_work_in_progress = This pull request is marked as a work in progress.
  1700. pulls.still_in_progress = Still in progress?
  1701. pulls.add_prefix = Add <strong>%s</strong> prefix
  1702. pulls.remove_prefix = Remove <strong>%s</strong> prefix
  1703. pulls.data_broken = This pull request is broken due to missing fork information.
  1704. pulls.files_conflicted = This pull request has changes conflicting with the target branch.
  1705. pulls.is_checking = "Merge conflict checking is in progress. Try again in few moments."
  1706. pulls.is_ancestor = "This branch is already included in the target branch. There is nothing to merge."
  1707. pulls.is_empty = "The changes on this branch are already on the target branch. This will be an empty commit."
  1708. pulls.required_status_check_failed = Some required checks were not successful.
  1709. pulls.required_status_check_missing = Some required checks are missing.
  1710. pulls.required_status_check_administrator = As an administrator, you may still merge this pull request.
  1711. pulls.blocked_by_approvals = "This pull request doesn't have enough approvals yet. %d of %d approvals granted."
  1712. pulls.blocked_by_rejection = "This pull request has changes requested by an official reviewer."
  1713. pulls.blocked_by_official_review_requests = "This pull request has official review requests."
  1714. pulls.blocked_by_outdated_branch = "This pull request is blocked because it's outdated."
  1715. pulls.blocked_by_changed_protected_files_1= "This pull request is blocked because it changes a protected file:"
  1716. pulls.blocked_by_changed_protected_files_n= "This pull request is blocked because it changes protected files:"
  1717. pulls.can_auto_merge_desc = This pull request can be merged automatically.
  1718. pulls.cannot_auto_merge_desc = This pull request cannot be merged automatically due to conflicts.
  1719. pulls.cannot_auto_merge_helper = Merge manually to resolve the conflicts.
  1720. pulls.num_conflicting_files_1 = "%d conflicting file"
  1721. pulls.num_conflicting_files_n = "%d conflicting files"
  1722. pulls.approve_count_1 = "%d approval"
  1723. pulls.approve_count_n = "%d approvals"
  1724. pulls.reject_count_1 = "%d change request"
  1725. pulls.reject_count_n = "%d change requests"
  1726. pulls.waiting_count_1 = "%d waiting review"
  1727. pulls.waiting_count_n = "%d waiting reviews"
  1728. pulls.wrong_commit_id = "commit id must be a commit id on the target branch"
  1729. pulls.no_merge_desc = This pull request cannot be merged because all repository merge options are disabled.
  1730. pulls.no_merge_helper = Enable merge options in the repository settings or merge the pull request manually.
  1731. pulls.no_merge_wip = This pull request cannot be merged because it is marked as being a work in progress.
  1732. pulls.no_merge_not_ready = This pull request is not ready to be merged, check review status and status checks.
  1733. pulls.no_merge_access = You are not authorized to merge this pull request.
  1734. pulls.merge_pull_request = Create merge commit
  1735. pulls.rebase_merge_pull_request = Rebase then fast-forward
  1736. pulls.rebase_merge_commit_pull_request = Rebase then create merge commit
  1737. pulls.squash_merge_pull_request = Create squash commit
  1738. pulls.fast_forward_only_merge_pull_request = Fast-forward only
  1739. pulls.merge_manually = Manually merged
  1740. pulls.merge_commit_id = The merge commit ID
  1741. pulls.require_signed_wont_sign = The branch requires signed commits but this merge will not be signed
  1742. pulls.invalid_merge_option = You cannot use this merge option for this pull request.
  1743. pulls.merge_conflict = Merge Failed: There was a conflict whilst merging. Hint: Try a different strategy
  1744. pulls.merge_conflict_summary = Error Message
  1745. pulls.rebase_conflict = Merge Failed: There was a conflict whilst rebasing commit: %[1]s. Hint: Try a different strategy
  1746. pulls.rebase_conflict_summary = Error Message
  1747. pulls.unrelated_histories = Merge Failed: The merge head and base do not share a common history. Hint: Try a different strategy
  1748. pulls.merge_out_of_date = Merge Failed: Whilst generating the merge, the base was updated. Hint: Try again.
  1749. pulls.head_out_of_date = Merge Failed: Whilst generating the merge, the head was updated. Hint: Try again.
  1750. pulls.has_merged = Failed: The pull request has been merged, you cannot merge again or change the target branch.
  1751. pulls.push_rejected = Push Failed: The push was rejected. Review the Git Hooks for this repository.
  1752. pulls.push_rejected_summary = Full Rejection Message
  1753. pulls.push_rejected_no_message = Push Failed: The push was rejected but there was no remote message. Review the Git Hooks for this repository
  1754. pulls.open_unmerged_pull_exists = `You cannot perform a reopen operation because there is a pending pull request (#%d) with identical properties.`
  1755. pulls.status_checking = Some checks are pending
  1756. pulls.status_checks_success = All checks were successful
  1757. pulls.status_checks_warning = Some checks reported warnings
  1758. pulls.status_checks_failure = Some checks failed
  1759. pulls.status_checks_error = Some checks reported errors
  1760. pulls.status_checks_requested = Required
  1761. pulls.status_checks_details = Details
  1762. pulls.status_checks_hide_all = Hide all checks
  1763. pulls.status_checks_show_all = Show all checks
  1764. pulls.update_branch = Update branch by merge
  1765. pulls.update_branch_rebase = Update branch by rebase
  1766. pulls.update_branch_success = Branch update was successful
  1767. pulls.update_not_allowed = You are not allowed to update branch
  1768. pulls.outdated_with_base_branch = This branch is out-of-date with the base branch
  1769. pulls.close = Close Pull Request
  1770. pulls.closed_at = `closed this pull request <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  1771. pulls.reopened_at = `reopened this pull request <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  1772. pulls.cmd_instruction_hint = `View <a class="show-instruction">command line instructions</a>.`
  1773. pulls.cmd_instruction_checkout_title = Checkout
  1774. pulls.cmd_instruction_checkout_desc = From your project repository, check out a new branch and test the changes.
  1775. pulls.cmd_instruction_merge_title = Merge
  1776. pulls.cmd_instruction_merge_desc = Merge the changes and update on Gitea.
  1777. pulls.clear_merge_message = Clear merge message
  1778. pulls.clear_merge_message_hint = Clearing the merge message will only remove the commit message content and keep generated git trailers such as "Co-Authored-By …".
  1779. pulls.auto_merge_button_when_succeed = (When checks succeed)
  1780. pulls.auto_merge_when_succeed = Auto merge when all checks succeed
  1781. pulls.auto_merge_newly_scheduled = The pull request was scheduled to merge when all checks succeed.
  1782. pulls.auto_merge_has_pending_schedule = %[1]s scheduled this pull request to auto merge when all checks succeed %[2]s.
  1783. pulls.auto_merge_cancel_schedule = Cancel auto merge
  1784. pulls.auto_merge_not_scheduled = This pull request is not scheduled to auto merge.
  1785. pulls.auto_merge_canceled_schedule = The auto merge was canceled for this pull request.
  1786. pulls.auto_merge_newly_scheduled_comment = `scheduled this pull request to auto merge when all checks succeed %[1]s`
  1787. pulls.auto_merge_canceled_schedule_comment = `canceled auto merging this pull request when all checks succeed %[1]s`
  1788. pulls.delete.title = Delete this pull request?
  1789. pulls.delete.text = Do you really want to delete this pull request? (This will permanently remove all content. Consider closing it instead, if you intend to keep it archived)
  1790. pulls.recently_pushed_new_branches = You pushed on branch <strong>%[1]s</strong> %[2]s
  1791. pull.deleted_branch = (deleted):%s
  1792. milestones.new = New Milestone
  1793. milestones.closed = Closed %s
  1794. milestones.update_ago = Updated %s
  1795. milestones.no_due_date = No due date
  1796. milestones.open = Open
  1797. milestones.close = Close
  1798. milestones.new_subheader = Milestones can help you organize issues and track their progress.
  1799. milestones.completeness = <strong>%d%%</strong> Completed
  1800. milestones.create = Create Milestone
  1801. milestones.title = Title
  1802. milestones.desc = Description
  1803. milestones.due_date = Due Date (optional)
  1804. milestones.clear = Clear
  1805. milestones.invalid_due_date_format = "Due date format must be 'yyyy-mm-dd'."
  1806. milestones.create_success = The milestone "%s" has been created.
  1807. milestones.edit = Edit Milestone
  1808. milestones.edit_subheader = Milestones organize issues and track progress.
  1809. milestones.cancel = Cancel
  1810. milestones.modify = Update Milestone
  1811. milestones.edit_success = Milestone "%s" has been updated.
  1812. milestones.deletion = Delete Milestone
  1813. milestones.deletion_desc = Deleting a milestone removes it from all related issues. Continue?
  1814. milestones.deletion_success = The milestone has been deleted.
  1815. milestones.filter_sort.earliest_due_data = Earliest due date
  1816. milestones.filter_sort.latest_due_date = Latest due date
  1817. milestones.filter_sort.least_complete = Least complete
  1818. milestones.filter_sort.most_complete = Most complete
  1819. milestones.filter_sort.most_issues = Most issues
  1820. milestones.filter_sort.least_issues = Least issues
  1821. signing.will_sign = This commit will be signed with key "%s".
  1822. signing.wont_sign.error = There was an error whilst checking if the commit could be signed.
  1823. signing.wont_sign.nokey = There is no key available to sign this commit.
  1824. signing.wont_sign.never = Commits are never signed.
  1825. signing.wont_sign.always = Commits are always signed.
  1826. signing.wont_sign.pubkey = The commit will not be signed because you do not have a public key associated with your account.
  1827. signing.wont_sign.twofa = You must have two factor authentication enabled to have commits signed.
  1828. signing.wont_sign.parentsigned = The commit will not be signed as the parent commit is not signed.
  1829. signing.wont_sign.basesigned = The merge will not be signed as the base commit is not signed.
  1830. signing.wont_sign.headsigned = The merge will not be signed as the head commit is not signed.
  1831. signing.wont_sign.commitssigned = The merge will not be signed as all the associated commits are not signed.
  1832. signing.wont_sign.approved = The merge will not be signed as the PR is not approved.
  1833. signing.wont_sign.not_signed_in = You are not signed in.
  1834. ext_wiki = Access to External Wiki
  1835. ext_wiki.desc = Link to an external wiki.
  1836. wiki = Wiki
  1837. wiki.welcome = Welcome to the Wiki.
  1838. wiki.welcome_desc = The wiki lets you write and share documentation with collaborators.
  1839. wiki.desc = Write and share documentation with collaborators.
  1840. wiki.create_first_page = Create the First Page
  1841. wiki.page = Page
  1842. wiki.filter_page = Filter page
  1843. wiki.new_page = Page
  1844. wiki.page_title = Page title
  1845. wiki.page_content = Page content
  1846. wiki.default_commit_message = Write a note about this page update (optional).
  1847. wiki.save_page = Save Page
  1848. wiki.last_commit_info = %s edited this page %s
  1849. wiki.edit_page_button = Edit
  1850. wiki.new_page_button = New Page
  1851. wiki.file_revision = Page Revision
  1852. wiki.wiki_page_revisions = Wiki Page Revisions
  1853. wiki.back_to_wiki = Back to wiki page
  1854. wiki.delete_page_button = Delete Page
  1855. wiki.delete_page_notice_1 = Deleting the wiki page "%s" cannot be undone. Continue?
  1856. wiki.page_already_exists = A wiki page with the same name already exists.
  1857. wiki.reserved_page = The wiki page name "%s" is reserved.
  1858. wiki.pages = Pages
  1859. wiki.last_updated = Last updated %s
  1860. wiki.page_name_desc = Enter a name for this Wiki page. Some special names are: 'Home', '_Sidebar' and '_Footer'.
  1861. wiki.original_git_entry_tooltip = View original Git file instead of using friendly link.
  1862. activity = Activity
  1863. activity.navbar.pulse = Pulse
  1864. activity.navbar.code_frequency = Code Frequency
  1865. activity.navbar.contributors = Contributors
  1866. activity.navbar.recent_commits = Recent Commits
  1867. activity.period.filter_label = Period:
  1868. activity.period.daily = 1 day
  1869. activity.period.halfweekly = 3 days
  1870. activity.period.weekly = 1 week
  1871. activity.period.monthly = 1 month
  1872. activity.period.quarterly = 3 months
  1873. activity.period.semiyearly = 6 months
  1874. activity.period.yearly = 1 year
  1875. activity.overview = Overview
  1876. activity.active_prs_count_1 = <strong>%d</strong> Active Pull Request
  1877. activity.active_prs_count_n = <strong>%d</strong> Active Pull Requests
  1878. activity.merged_prs_count_1 = Merged Pull Request
  1879. activity.merged_prs_count_n = Merged Pull Requests
  1880. activity.opened_prs_count_1 = Proposed Pull Request
  1881. activity.opened_prs_count_n = Proposed Pull Requests
  1882. activity.title.user_1 = %d user
  1883. activity.title.user_n = %d users
  1884. activity.title.prs_1 = %d Pull request
  1885. activity.title.prs_n = %d Pull requests
  1886. activity.title.prs_merged_by = %s merged by %s
  1887. activity.title.prs_opened_by = %s proposed by %s
  1888. activity.merged_prs_label = Merged
  1889. activity.opened_prs_label = Proposed
  1890. activity.active_issues_count_1 = <strong>%d</strong> Active Issue
  1891. activity.active_issues_count_n = <strong>%d</strong> Active Issues
  1892. activity.closed_issues_count_1 = Closed Issue
  1893. activity.closed_issues_count_n = Closed Issues
  1894. activity.title.issues_1 = %d Issue
  1895. activity.title.issues_n = %d Issues
  1896. activity.title.issues_closed_from = %s closed from %s
  1897. activity.title.issues_created_by = %s created by %s
  1898. activity.closed_issue_label = Closed
  1899. activity.new_issues_count_1 = New Issue
  1900. activity.new_issues_count_n = New Issues
  1901. activity.new_issue_label = Opened
  1902. activity.title.unresolved_conv_1 = %d Unresolved Conversation
  1903. activity.title.unresolved_conv_n = %d Unresolved Conversations
  1904. activity.unresolved_conv_desc = These recently changed issues and pull requests have not been resolved yet.
  1905. activity.unresolved_conv_label = Open
  1906. activity.title.releases_1 = %d Release
  1907. activity.title.releases_n = %d Releases
  1908. activity.title.releases_published_by = %s published by %s
  1909. activity.published_release_label = Published
  1910. activity.no_git_activity = There has not been any commit activity in this period.
  1911. activity.git_stats_exclude_merges = Excluding merges,
  1912. activity.git_stats_author_1 = %d author
  1913. activity.git_stats_author_n = %d authors
  1914. activity.git_stats_pushed_1 = has pushed
  1915. activity.git_stats_pushed_n = have pushed
  1916. activity.git_stats_commit_1 = %d commit
  1917. activity.git_stats_commit_n = %d commits
  1918. activity.git_stats_push_to_branch = to %s and
  1919. activity.git_stats_push_to_all_branches = to all branches.
  1920. activity.git_stats_on_default_branch = On %s,
  1921. activity.git_stats_file_1 = %d file
  1922. activity.git_stats_file_n = %d files
  1923. activity.git_stats_files_changed_1 = has changed
  1924. activity.git_stats_files_changed_n = have changed
  1925. activity.git_stats_additions = and there have been
  1926. activity.git_stats_addition_1 = %d addition
  1927. activity.git_stats_addition_n = %d additions
  1928. activity.git_stats_and_deletions = and
  1929. activity.git_stats_deletion_1 = %d deletion
  1930. activity.git_stats_deletion_n = %d deletions
  1931. contributors.contribution_type.filter_label = Contribution type:
  1932. contributors.contribution_type.commits = Commits
  1933. contributors.contribution_type.additions = Additions
  1934. contributors.contribution_type.deletions = Deletions
  1935. settings = Settings
  1936. settings.desc = Settings is where you can manage the settings for the repository
  1937. settings.options = Repository
  1938. settings.collaboration = Collaborators
  1939. settings.collaboration.admin = Administrator
  1940. settings.collaboration.write = Write
  1941. settings.collaboration.read = Read
  1942. settings.collaboration.owner = Owner
  1943. settings.collaboration.undefined = Undefined
  1944. settings.hooks = Webhooks
  1945. settings.githooks = Git Hooks
  1946. settings.basic_settings = Basic Settings
  1947. settings.mirror_settings = Mirror Settings
  1948. settings.mirror_settings.docs = Set up your repository to automatically synchronize commits, tags and branches with another repository.
  1949. settings.mirror_settings.docs.disabled_pull_mirror.instructions = Set up your project to automatically push commits, tags and branches to another repository. Pull mirrors have been disabled by your site administrator.
  1950. settings.mirror_settings.docs.disabled_push_mirror.instructions = Set up your project to automatically pull commits, tags and branches from another repository.
  1951. settings.mirror_settings.docs.disabled_push_mirror.pull_mirror_warning = Right now, this can only be done in the "New Migration" menu. For more information, please consult:
  1952. settings.mirror_settings.docs.disabled_push_mirror.info = Push mirrors have been disabled by your site administrator.
  1953. settings.mirror_settings.docs.no_new_mirrors = Your repository is mirroring changes to or from another repository. Please keep in mind that you can't create any new mirrors at this time.
  1954. settings.mirror_settings.docs.can_still_use = Although you can't modify existing mirrors or create new ones, you may still use your existing mirror.
  1955. settings.mirror_settings.docs.pull_mirror_instructions = To set up a pull mirror, please consult:
  1956. settings.mirror_settings.docs.more_information_if_disabled = You can find out more about push and pull mirrors here:
  1957. settings.mirror_settings.docs.doc_link_title = How do I mirror repositories?
  1958. settings.mirror_settings.docs.doc_link_pull_section = the "Pulling from a remote repository" section of the documentation.
  1959. settings.mirror_settings.docs.pulling_remote_title = Pulling from a remote repository
  1960. settings.mirror_settings.mirrored_repository = Mirrored repository
  1961. settings.mirror_settings.pushed_repository = Pushed repository
  1962. settings.mirror_settings.direction = Direction
  1963. settings.mirror_settings.direction.pull = Pull
  1964. settings.mirror_settings.direction.push = Push
  1965. settings.mirror_settings.last_update = Last update
  1966. settings.mirror_settings.push_mirror.none = No push mirrors configured
  1967. settings.mirror_settings.push_mirror.remote_url = Git Remote Repository URL
  1968. settings.mirror_settings.push_mirror.add = Add Push Mirror
  1969. settings.mirror_settings.push_mirror.edit_sync_time = Edit mirror sync interval
  1970. settings.sync_mirror = Synchronize Now
  1971. settings.pull_mirror_sync_in_progress = Pulling changes from the remote %s at the moment.
  1972. settings.push_mirror_sync_in_progress = Pushing changes to the remote %s at the moment.
  1973. settings.site = Website
  1974. settings.update_settings = Update Settings
  1975. settings.update_mirror_settings = Update Mirror Settings
  1976. settings.branches.switch_default_branch = Switch Default Branch
  1977. settings.branches.update_default_branch = Update Default Branch
  1978. settings.branches.add_new_rule = Add New Rule
  1979. settings.advanced_settings = Advanced Settings
  1980. settings.wiki_desc = Enable Repository Wiki
  1981. settings.use_internal_wiki = Use Built-In Wiki
  1982. settings.default_wiki_branch_name = Default Wiki Branch Name
  1983. settings.default_wiki_everyone_access = Default Access Permission for signed-in users:
  1984. settings.failed_to_change_default_wiki_branch = Failed to change the default wiki branch.
  1985. settings.use_external_wiki = Use External Wiki
  1986. settings.external_wiki_url = External Wiki URL
  1987. settings.external_wiki_url_error = The external wiki URL is not a valid URL.
  1988. settings.external_wiki_url_desc = Visitors are redirected to the external wiki URL when clicking the wiki tab.
  1989. settings.issues_desc = Enable Repository Issue Tracker
  1990. settings.use_internal_issue_tracker = Use Built-In Issue Tracker
  1991. settings.use_external_issue_tracker = Use External Issue Tracker
  1992. settings.external_tracker_url = External Issue Tracker URL
  1993. settings.external_tracker_url_error = The external issue tracker URL is not a valid URL.
  1994. settings.external_tracker_url_desc = Visitors are redirected to the external issue tracker URL when clicking on the issues tab.
  1995. settings.tracker_url_format = External Issue Tracker URL Format
  1996. settings.tracker_url_format_error = The external issue tracker URL format is not a valid URL.
  1997. settings.tracker_issue_style = External Issue Tracker Number Format
  1998. settings.tracker_issue_style.numeric = Numeric
  1999. settings.tracker_issue_style.alphanumeric = Alphanumeric
  2000. settings.tracker_issue_style.regexp = Regular Expression
  2001. settings.tracker_issue_style.regexp_pattern = Regular Expression Pattern
  2002. settings.tracker_issue_style.regexp_pattern_desc = The first captured group will be used in place of <code>{index}</code>.
  2003. settings.tracker_url_format_desc = Use the placeholders <code>{user}</code>, <code>{repo}</code> and <code>{index}</code> for the username, repository name and issue index.
  2004. settings.enable_timetracker = Enable Time Tracking
  2005. settings.allow_only_contributors_to_track_time = Let Only Contributors Track Time
  2006. settings.pulls_desc = Enable Repository Pull Requests
  2007. settings.pulls.ignore_whitespace = Ignore Whitespace for Conflicts
  2008. settings.pulls.enable_autodetect_manual_merge = Enable autodetect manual merge (Note: In some special cases, misjudgments can occur)
  2009. settings.pulls.allow_rebase_update = Enable updating pull request branch by rebase
  2010. settings.pulls.default_delete_branch_after_merge = Delete pull request branch after merge by default
  2011. settings.pulls.default_allow_edits_from_maintainers = Allow edits from maintainers by default
  2012. settings.releases_desc = Enable Repository Releases
  2013. settings.packages_desc = Enable Repository Packages Registry
  2014. settings.projects_desc = Enable Projects
  2015. settings.projects_mode_desc = Projects Mode (which kinds of projects to show)
  2016. settings.projects_mode_repo = Repo projects only
  2017. settings.projects_mode_owner = Only user or org projects
  2018. settings.projects_mode_all = All projects
  2019. settings.actions_desc = Enable Repository Actions
  2020. settings.admin_settings = Administrator Settings
  2021. settings.admin_enable_health_check = Enable Repository Health Checks (git fsck)
  2022. settings.admin_code_indexer = Code Indexer
  2023. settings.admin_stats_indexer = Code Statistics Indexer
  2024. settings.admin_indexer_commit_sha = Last Indexed SHA
  2025. settings.admin_indexer_unindexed = Unindexed
  2026. settings.reindex_button = Add to Reindex Queue
  2027. settings.reindex_requested=Reindex Requested
  2028. settings.admin_enable_close_issues_via_commit_in_any_branch = Close an issue via a commit made in a non default branch
  2029. settings.danger_zone = Danger Zone
  2030. settings.new_owner_has_same_repo = The new owner already has a repository with same name. Please choose another name.
  2031. settings.convert = Convert to Regular Repository
  2032. settings.convert_desc = You can convert this mirror into a regular repository. This cannot be undone.
  2033. settings.convert_notices_1 = This operation will convert the mirror into a regular repository and cannot be undone.
  2034. settings.convert_confirm = Convert Repository
  2035. settings.convert_succeed = The mirror has been converted into a regular repository.
  2036. settings.convert_fork = Convert to Regular Repository
  2037. settings.convert_fork_desc = You can convert this fork into a regular repository. This cannot be undone.
  2038. settings.convert_fork_notices_1 = This operation will convert the fork into a regular repository and cannot be undone.
  2039. settings.convert_fork_confirm = Convert Repository
  2040. settings.convert_fork_succeed = The fork has been converted into a regular repository.
  2041. settings.transfer = Transfer Ownership
  2042. settings.transfer.rejected = Repository transfer was rejected.
  2043. settings.transfer.success = Repository transfer was successful.
  2044. settings.transfer.blocked_user = Cannot transfer repository because you are blocked by the new owner.
  2045. settings.transfer_abort = Cancel transfer
  2046. settings.transfer_abort_invalid = You cannot cancel a non existent repository transfer.
  2047. settings.transfer_abort_success = The repository transfer to %s was successfully canceled.
  2048. settings.transfer_desc = Transfer this repository to a user or to an organization for which you have administrator rights.
  2049. settings.transfer_form_title = Enter the repository name as confirmation:
  2050. settings.transfer_in_progress = There is currently an ongoing transfer. Please cancel it if you will like to transfer this repository to another user.
  2051. settings.transfer_notices_1 = - You will lose access to the repository if you transfer it to an individual user.
  2052. settings.transfer_notices_2 = - You will keep access to the repository if you transfer it to an organization that you (co-)own.
  2053. settings.transfer_notices_3 = - If the repository is private and is transferred to an individual user, this action makes sure that the user does have at least read permission (and changes permissions if necessary).
  2054. settings.transfer_owner = New Owner
  2055. settings.transfer_perform = Perform Transfer
  2056. settings.transfer_started = This repository has been marked for transfer and awaits confirmation from "%s"
  2057. settings.transfer_succeed = The repository has been transferred.
  2058. settings.signing_settings = Signing Verification Settings
  2059. settings.trust_model = Signature Trust Model
  2060. settings.trust_model.default = Default Trust Model
  2061. settings.trust_model.default.desc= Use the default repository trust model for this installation.
  2062. settings.trust_model.collaborator = Collaborator
  2063. settings.trust_model.collaborator.long = Collaborator: Trust signatures by collaborators
  2064. settings.trust_model.collaborator.desc = Valid signatures by collaborators of this repository will be marked "trusted" - (whether they match the committer or not). Otherwise, valid signatures will be marked "untrusted" if the signature matches the committer and "unmatched" if not.
  2065. settings.trust_model.committer = Committer
  2066. settings.trust_model.committer.long = Committer: Trust signatures that match committers (This matches GitHub and will force Gitea signed commits to have Gitea as the committer)
  2067. settings.trust_model.committer.desc = Valid signatures will only be marked "trusted" if they match the committer, otherwise they will be marked "unmatched". This forces Gitea to be the committer on signed commits with the actual committer marked as Co-authored-by: and Co-committed-by: trailer in the commit. The default Gitea key must match a User in the database.
  2068. settings.trust_model.collaboratorcommitter = Collaborator+Committer
  2069. settings.trust_model.collaboratorcommitter.long = Collaborator+Committer: Trust signatures by collaborators which match the committer
  2070. settings.trust_model.collaboratorcommitter.desc = Valid signatures by collaborators of this repository will be marked "trusted" if they match the committer. Otherwise, valid signatures will be marked "untrusted" if the signature matches the committer and "unmatched" otherwise. This will force Gitea to be marked as the committer on signed commits with the actual committer marked as Co-Authored-By: and Co-Committed-By: trailer in the commit. The default Gitea key must match a User in the database.
  2071. settings.wiki_delete = Delete Wiki Data
  2072. settings.wiki_delete_desc = Deleting repository wiki data is permanent and cannot be undone.
  2073. settings.wiki_delete_notices_1 = - This will permanently delete and disable the repository wiki for %s.
  2074. settings.confirm_wiki_delete = Delete Wiki Data
  2075. settings.wiki_deletion_success = The repository wiki data has been deleted.
  2076. settings.delete = Delete This Repository
  2077. settings.delete_desc = Deleting a repository is permanent and cannot be undone.
  2078. settings.delete_notices_1 = - This operation <strong>CANNOT</strong> be undone.
  2079. settings.delete_notices_2 = - This operation will permanently delete the <strong>%s</strong> repository including code, issues, comments, wiki data and collaborator settings.
  2080. settings.delete_notices_fork_1 = - Forks of this repository will become independent after deletion.
  2081. settings.deletion_success = The repository has been deleted.
  2082. settings.update_settings_success = The repository settings have been updated.
  2083. settings.update_settings_no_unit = The repository should allow at least some sort of interaction.
  2084. settings.confirm_delete = Delete Repository
  2085. settings.add_collaborator = Add Collaborator
  2086. settings.add_collaborator_success = The collaborator has been added.
  2087. settings.add_collaborator_inactive_user = Cannot add an inactive user as a collaborator.
  2088. settings.add_collaborator_owner = Cannot add an owner as a collaborator.
  2089. settings.add_collaborator_duplicate = The collaborator is already added to this repository.
  2090. settings.add_collaborator.blocked_user = The collaborator is blocked by the repository owner or vice versa.
  2091. settings.delete_collaborator = Remove
  2092. settings.collaborator_deletion = Remove Collaborator
  2093. settings.collaborator_deletion_desc = Removing a collaborator will revoke their access to this repository. Continue?
  2094. settings.remove_collaborator_success = The collaborator has been removed.
  2095. settings.org_not_allowed_to_be_collaborator = Organizations cannot be added as a collaborator.
  2096. settings.change_team_access_not_allowed = Changing team access for repository has been restricted to organization owner
  2097. settings.team_not_in_organization = The team is not in the same organization as the repository
  2098. settings.teams = Teams
  2099. settings.add_team = Add Team
  2100. settings.add_team_duplicate = Team already has the repository
  2101. settings.add_team_success = The team now have access to the repository.
  2102. settings.change_team_permission_tip = Team's permission is set on the team setting page and can't be changed per repository
  2103. settings.delete_team_tip = This team has access to all repositories and can't be removed
  2104. settings.remove_team_success = The team's access to the repository has been removed.
  2105. settings.add_webhook = Add Webhook
  2106. settings.add_webhook.invalid_channel_name = Webhook channel name cannot be empty and cannot contain only a # character.
  2107. settings.hooks_desc = Webhooks automatically make HTTP POST requests to a server when certain Gitea events trigger. Read more in the <a target="_blank" rel="noopener noreferrer" href="%s">webhooks guide</a>.
  2108. settings.webhook_deletion = Remove Webhook
  2109. settings.webhook_deletion_desc = Removing a webhook deletes its settings and delivery history. Continue?
  2110. settings.webhook_deletion_success = The webhook has been removed.
  2111. settings.webhook.test_delivery = Test Delivery
  2112. settings.webhook.test_delivery_desc = Test this webhook with a fake event.
  2113. settings.webhook.test_delivery_desc_disabled = To test this webhook with a fake event, activate it.
  2114. settings.webhook.request = Request
  2115. settings.webhook.response = Response
  2116. settings.webhook.headers = Headers
  2117. settings.webhook.payload = Content
  2118. settings.webhook.body = Body
  2119. settings.webhook.replay.description = Replay this webhook.
  2120. settings.webhook.replay.description_disabled = To replay this webhook, activate it.
  2121. settings.webhook.delivery.success = An event has been added to the delivery queue. It may take few seconds before it shows up in the delivery history.
  2122. settings.githooks_desc = "Git Hooks are powered by Git itself. You can edit hook files below to set up custom operations."
  2123. settings.githook_edit_desc = If the hook is inactive, sample content will be presented. Leaving content to an empty value will disable this hook.
  2124. settings.githook_name = Hook Name
  2125. settings.githook_content = Hook Content
  2126. settings.update_githook = Update Hook
  2127. settings.add_webhook_desc = Gitea will send <code>POST</code> requests with a specified content type to the target URL. Read more in the <a target="_blank" rel="noopener noreferrer" href="%s">webhooks guide</a>.
  2128. settings.payload_url = Target URL
  2129. settings.http_method = HTTP Method
  2130. settings.content_type = POST Content Type
  2131. settings.secret = Secret
  2132. settings.slack_username = Username
  2133. settings.slack_icon_url = Icon URL
  2134. settings.slack_color = Color
  2135. settings.discord_username = Username
  2136. settings.discord_icon_url = Icon URL
  2137. settings.event_desc = Trigger On:
  2138. settings.event_push_only = Push Events
  2139. settings.event_send_everything = All Events
  2140. settings.event_choose = Custom Events…
  2141. settings.event_header_repository = Repository Events
  2142. settings.event_create = Create
  2143. settings.event_create_desc = Branch or tag created.
  2144. settings.event_delete = Delete
  2145. settings.event_delete_desc = Branch or tag deleted.
  2146. settings.event_fork = Fork
  2147. settings.event_fork_desc = Repository forked.
  2148. settings.event_wiki = Wiki
  2149. settings.event_wiki_desc = Wiki page created, renamed, edited or deleted.
  2150. settings.event_release = Release
  2151. settings.event_release_desc = Release published, updated or deleted in a repository.
  2152. settings.event_push = Push
  2153. settings.event_push_desc = Git push to a repository.
  2154. settings.event_repository = Repository
  2155. settings.event_repository_desc = Repository created or deleted.
  2156. settings.event_header_issue = Issue Events
  2157. settings.event_issues = Issues
  2158. settings.event_issues_desc = Issue opened, closed, reopened, or edited.
  2159. settings.event_issue_assign = Issue Assigned
  2160. settings.event_issue_assign_desc = Issue assigned or unassigned.
  2161. settings.event_issue_label = Issue Labeled
  2162. settings.event_issue_label_desc = Issue labels updated or cleared.
  2163. settings.event_issue_milestone = Issue Milestoned
  2164. settings.event_issue_milestone_desc = Issue milestoned or demilestoned.
  2165. settings.event_issue_comment = Issue Comment
  2166. settings.event_issue_comment_desc = Issue comment created, edited, or deleted.
  2167. settings.event_header_pull_request = Pull Request Events
  2168. settings.event_pull_request = Pull Request
  2169. settings.event_pull_request_desc = Pull request opened, closed, reopened, or edited.
  2170. settings.event_pull_request_assign = Pull Request Assigned
  2171. settings.event_pull_request_assign_desc = Pull request assigned or unassigned.
  2172. settings.event_pull_request_label = Pull Request Labeled
  2173. settings.event_pull_request_label_desc = Pull request labels updated or cleared.
  2174. settings.event_pull_request_milestone = Pull Request Milestoned
  2175. settings.event_pull_request_milestone_desc = Pull request milestoned or demilestoned.
  2176. settings.event_pull_request_comment = Pull Request Comment
  2177. settings.event_pull_request_comment_desc = Pull request comment created, edited, or deleted.
  2178. settings.event_pull_request_review = Pull Request Reviewed
  2179. settings.event_pull_request_review_desc = Pull request approved, rejected, or review comment.
  2180. settings.event_pull_request_sync = Pull Request Synchronized
  2181. settings.event_pull_request_sync_desc = Pull request synchronized.
  2182. settings.event_pull_request_review_request = Pull Request Review Requested
  2183. settings.event_pull_request_review_request_desc = Pull request review requested or review request removed.
  2184. settings.event_pull_request_approvals = Pull Request Approvals
  2185. settings.event_pull_request_merge = Pull Request Merge
  2186. settings.event_package = Package
  2187. settings.event_package_desc = Package created or deleted in a repository.
  2188. settings.branch_filter = Branch filter
  2189. settings.branch_filter_desc = Branch whitelist for push, branch creation and branch deletion events, specified as glob pattern. If empty or <code>*</code>, events for all branches are reported. See <a href="https://pkg.go.dev/github.com/gobwas/glob#Compile">github.com/gobwas/glob</a> documentation for syntax. Examples: <code>master</code>, <code>{master,release*}</code>.
  2190. settings.authorization_header = Authorization Header
  2191. settings.authorization_header_desc = Will be included as authorization header for requests when present. Examples: %s.
  2192. settings.active = Active
  2193. settings.active_helper = Information about triggered events will be sent to this webhook URL.
  2194. settings.add_hook_success = The webhook has been added.
  2195. settings.update_webhook = Update Webhook
  2196. settings.update_hook_success = The webhook has been updated.
  2197. settings.delete_webhook = Remove Webhook
  2198. settings.recent_deliveries = Recent Deliveries
  2199. settings.hook_type = Hook Type
  2200. settings.slack_token = Token
  2201. settings.slack_domain = Domain
  2202. settings.slack_channel = Channel
  2203. settings.add_web_hook_desc = Integrate <a target="_blank" rel="noreferrer" href="%s">%s</a> into your repository.
  2204. settings.web_hook_name_gitea = Gitea
  2205. settings.web_hook_name_gogs = Gogs
  2206. settings.web_hook_name_slack = Slack
  2207. settings.web_hook_name_discord = Discord
  2208. settings.web_hook_name_dingtalk = DingTalk
  2209. settings.web_hook_name_telegram = Telegram
  2210. settings.web_hook_name_matrix = Matrix
  2211. settings.web_hook_name_msteams = Microsoft Teams
  2212. settings.web_hook_name_feishu_or_larksuite = Feishu / Lark Suite
  2213. settings.web_hook_name_feishu = Feishu
  2214. settings.web_hook_name_larksuite = Lark Suite
  2215. settings.web_hook_name_wechatwork = WeCom (Wechat Work)
  2216. settings.web_hook_name_packagist = Packagist
  2217. settings.packagist_username = Packagist username
  2218. settings.packagist_api_token = API token
  2219. settings.packagist_package_url = Packagist package URL
  2220. settings.deploy_keys = Deploy Keys
  2221. settings.add_deploy_key = Add Deploy Key
  2222. settings.deploy_key_desc = Deploy keys have read-only pull access to the repository.
  2223. settings.is_writable = Enable Write Access
  2224. settings.is_writable_info = Allow this deploy key to <strong>push</strong> to the repository.
  2225. settings.no_deploy_keys = There are no deploy keys yet.
  2226. settings.title = Title
  2227. settings.deploy_key_content = Content
  2228. settings.key_been_used = A deploy key with identical content is already in use.
  2229. settings.key_name_used = A deploy key with the same name already exists.
  2230. settings.add_key_success = The deploy key "%s" has been added.
  2231. settings.deploy_key_deletion = Remove Deploy Key
  2232. settings.deploy_key_deletion_desc = Removing a deploy key will revoke its access to this repository. Continue?
  2233. settings.deploy_key_deletion_success = The deploy key has been removed.
  2234. settings.branches = Branches
  2235. settings.protected_branch = Branch Protection
  2236. settings.protected_branch.save_rule = Save Rule
  2237. settings.protected_branch.delete_rule = Delete Rule
  2238. settings.protected_branch_can_push = Allow push?
  2239. settings.protected_branch_can_push_yes = You can push
  2240. settings.protected_branch_can_push_no = You cannot push
  2241. settings.branch_protection = Branch Protection Rules for Branch '<b>%s</b>'
  2242. settings.protect_this_branch = Enable Branch Protection
  2243. settings.protect_this_branch_desc = Prevents deletion and restricts Git pushing and merging to the branch.
  2244. settings.protect_disable_push = Disable Push
  2245. settings.protect_disable_push_desc = No pushing will be allowed to this branch.
  2246. settings.protect_enable_push = Enable Push
  2247. settings.protect_enable_push_desc = Anyone with write access will be allowed to push to this branch (but not force push).
  2248. settings.protect_enable_merge = Enable Merge
  2249. settings.protect_enable_merge_desc = Anyone with write access will be allowed to merge the pull requests into this branch.
  2250. settings.protect_whitelist_committers = Whitelist Restricted Push
  2251. settings.protect_whitelist_committers_desc = Only whitelisted users or teams will be allowed to push to this branch (but not force push).
  2252. settings.protect_whitelist_deploy_keys = Whitelist deploy keys with write access to push.
  2253. settings.protect_whitelist_users = Whitelisted users for pushing:
  2254. settings.protect_whitelist_teams = Whitelisted teams for pushing:
  2255. settings.protect_merge_whitelist_committers = Enable Merge Whitelist
  2256. settings.protect_merge_whitelist_committers_desc = Allow only whitelisted users or teams to merge pull requests into this branch.
  2257. settings.protect_merge_whitelist_users = Whitelisted users for merging:
  2258. settings.protect_merge_whitelist_teams = Whitelisted teams for merging:
  2259. settings.protect_check_status_contexts = Enable Status Check
  2260. settings.protect_status_check_patterns = Status check patterns:
  2261. settings.protect_status_check_patterns_desc = Enter patterns to specify which status checks must pass before branches can be merged into a branch that matches this rule. Each line specifies a pattern. Patterns cannot be empty.
  2262. settings.protect_check_status_contexts_desc = Require status checks to pass before merging. When enabled, commits must first be pushed to another branch, then merged or pushed directly to a branch that matches this rule after status checks have passed. If no contexts are matched, the last commit must be successful regardless of context.
  2263. settings.protect_check_status_contexts_list = Status checks found in the last week for this repository
  2264. settings.protect_status_check_matched = Matched
  2265. settings.protect_invalid_status_check_pattern = Invalid status check pattern: "%s".
  2266. settings.protect_no_valid_status_check_patterns = No valid status check patterns.
  2267. settings.protect_required_approvals = Required approvals:
  2268. settings.protect_required_approvals_desc = Allow only to merge pull request with enough positive reviews.
  2269. settings.protect_approvals_whitelist_enabled = Restrict approvals to whitelisted users or teams
  2270. settings.protect_approvals_whitelist_enabled_desc = Only reviews from whitelisted users or teams will count to the required approvals. Without approval whitelist, reviews from anyone with write access count to the required approvals.
  2271. settings.protect_approvals_whitelist_users = Whitelisted reviewers:
  2272. settings.protect_approvals_whitelist_teams = Whitelisted teams for reviews:
  2273. settings.dismiss_stale_approvals = Dismiss stale approvals
  2274. settings.dismiss_stale_approvals_desc = When new commits that change the content of the pull request are pushed to the branch, old approvals will be dismissed.
  2275. settings.ignore_stale_approvals = Ignore stale approvals
  2276. settings.ignore_stale_approvals_desc = Do not count approvals that were made on older commits (stale reviews) towards how many approvals the PR has. Irrelevant if stale reviews are already dismissed.
  2277. settings.require_signed_commits = Require Signed Commits
  2278. settings.require_signed_commits_desc = Reject pushes to this branch if they are unsigned or unverifiable.
  2279. settings.protect_branch_name_pattern = Protected Branch Name Pattern
  2280. settings.protect_branch_name_pattern_desc = "Protected branch name patterns. See <a href="https://github.com/gobwas/glob">the documentation</a> for pattern syntax. Examples: main, release/**"
  2281. settings.protect_patterns = Patterns
  2282. settings.protect_protected_file_patterns = "Protected file patterns (separated using semicolon ';'):"
  2283. settings.protect_protected_file_patterns_desc = "Protected files are not allowed to be changed directly even if user has rights to add, edit, or delete files in this branch. Multiple patterns can be separated using semicolon (';'). See <a href='https://pkg.go.dev/github.com/gobwas/glob#Compile'>github.com/gobwas/glob</a> documentation for pattern syntax. Examples: <code>.drone.yml</code>, <code>/docs/**/*.txt</code>."
  2284. settings.protect_unprotected_file_patterns = "Unprotected file patterns (separated using semicolon ';'):"
  2285. settings.protect_unprotected_file_patterns_desc = "Unprotected files that are allowed to be changed directly if user has write access, bypassing push restriction. Multiple patterns can be separated using semicolon (';'). See <a href='https://pkg.go.dev/github.com/gobwas/glob#Compile'>github.com/gobwas/glob</a> documentation for pattern syntax. Examples: <code>.drone.yml</code>, <code>/docs/**/*.txt</code>."
  2286. settings.add_protected_branch = Enable protection
  2287. settings.delete_protected_branch = Disable protection
  2288. settings.update_protect_branch_success = Branch protection for rule "%s" has been updated.
  2289. settings.remove_protected_branch_success = Branch protection for rule "%s" has been removed.
  2290. settings.remove_protected_branch_failed = Removing branch protection rule "%s" failed.
  2291. settings.protected_branch_deletion = Delete Branch Protection
  2292. settings.protected_branch_deletion_desc = Disabling branch protection allows users with write permission to push to the branch. Continue?
  2293. settings.block_rejected_reviews = Block merge on rejected reviews
  2294. settings.block_rejected_reviews_desc = Merging will not be possible when changes are requested by official reviewers, even if there are enough approvals.
  2295. settings.block_on_official_review_requests = Block merge on official review requests
  2296. settings.block_on_official_review_requests_desc = Merging will not be possible when it has official review requests, even if there are enough approvals.
  2297. settings.block_outdated_branch = Block merge if pull request is outdated
  2298. settings.block_outdated_branch_desc = Merging will not be possible when head branch is behind base branch.
  2299. settings.default_branch_desc = Select a default repository branch for pull requests and code commits:
  2300. settings.merge_style_desc = Merge Styles
  2301. settings.default_merge_style_desc = Default Merge Style
  2302. settings.choose_branch = Choose a branch…
  2303. settings.no_protected_branch = There are no protected branches.
  2304. settings.edit_protected_branch = Edit
  2305. settings.protected_branch_required_rule_name = Required rule name
  2306. settings.protected_branch_duplicate_rule_name = Duplicate rule name
  2307. settings.protected_branch_required_approvals_min = Required approvals cannot be negative.
  2308. settings.tags = Tags
  2309. settings.tags.protection = Tag Protection
  2310. settings.tags.protection.pattern = Tag Pattern
  2311. settings.tags.protection.allowed = Allowed
  2312. settings.tags.protection.allowed.users = Allowed users
  2313. settings.tags.protection.allowed.teams = Allowed teams
  2314. settings.tags.protection.allowed.noone = No One
  2315. settings.tags.protection.create = Protect Tag
  2316. settings.tags.protection.none = There are no protected tags.
  2317. settings.tags.protection.pattern.description = You can use a single name or a glob pattern or regular expression to match multiple tags. Read more in the <a target="_blank" rel="noopener" href="https://docs.gitea.com/usage/protected-tags">protected tags guide</a>.
  2318. settings.bot_token = Bot Token
  2319. settings.chat_id = Chat ID
  2320. settings.thread_id = Thread ID
  2321. settings.matrix.homeserver_url = Homeserver URL
  2322. settings.matrix.room_id = Room ID
  2323. settings.matrix.message_type = Message Type
  2324. settings.archive.button = Archive Repo
  2325. settings.archive.header = Archive This Repo
  2326. settings.archive.text = Archiving the repo will make it entirely read-only. It will be hidden from the dashboard. Nobody (not even you!) will be able to make new commits, or open any issues or pull requests.
  2327. settings.archive.success = The repo was successfully archived.
  2328. settings.archive.error = An error occurred while trying to archive the repo. See the log for more details.
  2329. settings.archive.error_ismirror = You cannot archive a mirrored repo.
  2330. settings.archive.branchsettings_unavailable = Branch settings are not available if the repo is archived.
  2331. settings.archive.tagsettings_unavailable = Tag settings are not available if the repo is archived.
  2332. settings.archive.mirrors_unavailable = Mirrors are not available if the repo is archived.
  2333. settings.unarchive.button = Unarchive repo
  2334. settings.unarchive.header = Unarchive this repo
  2335. settings.unarchive.text = Unarchiving the repo will restore its ability to receive commits and pushes, as well as new issues and pull-requests.
  2336. settings.unarchive.success = The repo was successfully unarchived.
  2337. settings.unarchive.error = An error occurred while trying to unarchive the repo. See the log for more details.
  2338. settings.update_avatar_success = The repository avatar has been updated.
  2339. settings.lfs=LFS
  2340. settings.lfs_filelist=LFS files stored in this repository
  2341. settings.lfs_no_lfs_files=No LFS files stored in this repository
  2342. settings.lfs_findcommits=Find commits
  2343. settings.lfs_lfs_file_no_commits=No Commits found for this LFS file
  2344. settings.lfs_noattribute=This path does not have the lockable attribute in the default branch
  2345. settings.lfs_delete=Delete LFS file with OID %s
  2346. settings.lfs_delete_warning=Deleting an LFS file may cause 'object does not exist' errors on checkout. Are you sure?
  2347. settings.lfs_findpointerfiles=Find pointer files
  2348. settings.lfs_locks=Locks
  2349. settings.lfs_invalid_locking_path=Invalid path: %s
  2350. settings.lfs_invalid_lock_directory=Cannot lock directory: %s
  2351. settings.lfs_lock_already_exists=Lock already exists: %s
  2352. settings.lfs_lock=Lock
  2353. settings.lfs_lock_path=Filepath to lock...
  2354. settings.lfs_locks_no_locks=No Locks
  2355. settings.lfs_lock_file_no_exist=Locked file does not exist in default branch
  2356. settings.lfs_force_unlock=Force Unlock
  2357. settings.lfs_pointers.found=Found %d blob pointer(s) - %d associated, %d unassociated (%d missing from store)
  2358. settings.lfs_pointers.sha=Blob SHA
  2359. settings.lfs_pointers.oid=OID
  2360. settings.lfs_pointers.inRepo=In Repo
  2361. settings.lfs_pointers.exists=Exists in store
  2362. settings.lfs_pointers.accessible=Accessible to User
  2363. settings.lfs_pointers.associateAccessible=Associate accessible %d OIDs
  2364. settings.rename_branch_failed_exist=Cannot rename branch because target branch %s exists.
  2365. settings.rename_branch_failed_not_exist=Cannot rename branch %s because it does not exist.
  2366. settings.rename_branch_success =Branch %s was successfully renamed to %s.
  2367. settings.rename_branch_from=old branch name
  2368. settings.rename_branch_to=new branch name
  2369. settings.rename_branch=Rename branch
  2370. diff.browse_source = Browse Source
  2371. diff.parent = parent
  2372. diff.commit = commit
  2373. diff.git-notes = Notes
  2374. diff.data_not_available = Diff Content Not Available
  2375. diff.options_button = Diff Options
  2376. diff.show_diff_stats = Show Stats
  2377. diff.download_patch = Download Patch File
  2378. diff.download_diff = Download Diff File
  2379. diff.show_split_view = Split View
  2380. diff.show_unified_view = Unified View
  2381. diff.whitespace_button = Whitespace
  2382. diff.whitespace_show_everything = Show all changes
  2383. diff.whitespace_ignore_all_whitespace = Ignore whitespace when comparing lines
  2384. diff.whitespace_ignore_amount_changes = Ignore changes in amount of whitespace
  2385. diff.whitespace_ignore_at_eol = Ignore changes in whitespace at EOL
  2386. diff.stats_desc = <strong> %d changed files</strong> with <strong>%d additions</strong> and <strong>%d deletions</strong>
  2387. diff.stats_desc_file = %d changes: %d additions and %d deletions
  2388. diff.bin = BIN
  2389. diff.bin_not_shown = Binary file not shown.
  2390. diff.view_file = View File
  2391. diff.file_before = Before
  2392. diff.file_after = After
  2393. diff.file_image_width = Width
  2394. diff.file_image_height = Height
  2395. diff.file_byte_size = Size
  2396. diff.file_suppressed = File diff suppressed because it is too large
  2397. diff.file_suppressed_line_too_long = File diff suppressed because one or more lines are too long
  2398. diff.too_many_files = Some files were not shown because too many files have changed in this diff
  2399. diff.show_more = Show More
  2400. diff.load = Load Diff
  2401. diff.generated = generated
  2402. diff.vendored = vendored
  2403. diff.comment.add_line_comment = Add line comment
  2404. diff.comment.placeholder = Leave a comment
  2405. diff.comment.markdown_info = Styling with markdown is supported.
  2406. diff.comment.add_single_comment = Add single comment
  2407. diff.comment.add_review_comment = Add comment
  2408. diff.comment.start_review = Start review
  2409. diff.comment.reply = Reply
  2410. diff.review = Review
  2411. diff.review.header = Submit review
  2412. diff.review.placeholder = Review comment
  2413. diff.review.comment = Comment
  2414. diff.review.approve = Approve
  2415. diff.review.self_reject = Pull request authors can't request changes on their own pull request
  2416. diff.review.reject = Request changes
  2417. diff.review.self_approve = Pull request authors can't approve their own pull request
  2418. diff.committed_by = committed by
  2419. diff.protected = Protected
  2420. diff.image.side_by_side = Side by Side
  2421. diff.image.swipe = Swipe
  2422. diff.image.overlay = Overlay
  2423. diff.has_escaped = This line has hidden Unicode characters
  2424. diff.show_file_tree = Show file tree
  2425. diff.hide_file_tree = Hide file tree
  2426. releases.desc = Track project versions and downloads.
  2427. release.releases = Releases
  2428. release.detail = Release details
  2429. release.tags = Tags
  2430. release.new_release = New Release
  2431. release.draft = Draft
  2432. release.prerelease = Pre-Release
  2433. release.stable = Stable
  2434. release.compare = Compare
  2435. release.edit = edit
  2436. release.ahead.commits = <strong>%d</strong> commits
  2437. release.ahead.target = to %s since this release
  2438. tag.ahead.target = to %s since this tag
  2439. release.source_code = Source Code
  2440. release.new_subheader = Releases organize project versions.
  2441. release.edit_subheader = Releases organize project versions.
  2442. release.tag_name = Tag name
  2443. release.target = Target
  2444. release.tag_helper = Choose an existing tag or create a new tag.
  2445. release.tag_helper_new = New tag. This tag will be created from the target.
  2446. release.tag_helper_existing = Existing tag.
  2447. release.title = Release title
  2448. release.title_empty = Title cannot be empty.
  2449. release.message = Describe this release
  2450. release.prerelease_desc = Mark as Pre-Release
  2451. release.prerelease_helper = Mark this release unsuitable for production use.
  2452. release.cancel = Cancel
  2453. release.publish = Publish Release
  2454. release.save_draft = Save Draft
  2455. release.edit_release = Update Release
  2456. release.delete_release = Delete Release
  2457. release.delete_tag = Delete Tag
  2458. release.deletion = Delete Release
  2459. release.deletion_desc = Deleting a release only removes it from Gitea. It will not affect the Git tag, the contents of your repository or its history. Continue?
  2460. release.deletion_success = The release has been deleted.
  2461. release.deletion_tag_desc = Will delete this tag from repository. Repository contents and history remain unchanged. Continue?
  2462. release.deletion_tag_success = The tag has been deleted.
  2463. release.tag_name_already_exist = A release with this tag name already exists.
  2464. release.tag_name_invalid = The tag name is not valid.
  2465. release.tag_name_protected = The tag name is protected.
  2466. release.tag_already_exist = This tag name already exists.
  2467. release.downloads = Downloads
  2468. release.download_count = Downloads: %s
  2469. release.add_tag_msg = Use the title and content of release as tag message.
  2470. release.add_tag = Create Tag Only
  2471. release.releases_for = Releases for %s
  2472. release.tags_for = Tags for %s
  2473. branch.name = Branch Name
  2474. branch.already_exists = A branch named "%s" already exists.
  2475. branch.delete_head = Delete
  2476. branch.delete = Delete Branch "%s"
  2477. branch.delete_html = Delete Branch
  2478. branch.delete_desc = Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
  2479. branch.deletion_success = Branch "%s" has been deleted.
  2480. branch.deletion_failed = Failed to delete branch "%s".
  2481. branch.delete_branch_has_new_commits = Branch "%s" cannot be deleted because new commits have been added after merging.
  2482. branch.create_branch = Create branch <strong>%s</strong>
  2483. branch.create_from = from "%s"
  2484. branch.create_success = Branch "%s" has been created.
  2485. branch.branch_already_exists = Branch "%s" already exists in this repository.
  2486. branch.branch_name_conflict = Branch name "%s" conflicts with the already existing branch "%s".
  2487. branch.tag_collision = Branch "%s" cannot be created as a tag with same name already exists in the repository.
  2488. branch.deleted_by = Deleted by %s
  2489. branch.restore_success = Branch "%s" has been restored.
  2490. branch.restore_failed = Failed to restore branch "%s".
  2491. branch.protected_deletion_failed = Branch "%s" is protected. It cannot be deleted.
  2492. branch.default_deletion_failed = Branch "%s" is the default branch. It cannot be deleted.
  2493. branch.restore = Restore Branch "%s"
  2494. branch.download = Download Branch "%s"
  2495. branch.rename = Rename Branch "%s"
  2496. branch.included_desc = This branch is part of the default branch
  2497. branch.included = Included
  2498. branch.create_new_branch = Create branch from branch:
  2499. branch.confirm_create_branch = Create branch
  2500. branch.warning_rename_default_branch = You are renaming the default branch.
  2501. branch.rename_branch_to = Rename "%s" to:
  2502. branch.confirm_rename_branch = Rename branch
  2503. branch.create_branch_operation = Create branch
  2504. branch.new_branch = Create new branch
  2505. branch.new_branch_from = Create new branch from "%s"
  2506. branch.renamed = Branch %s was renamed to %s.
  2507. tag.create_tag = Create tag <strong>%s</strong>
  2508. tag.create_tag_operation = Create tag
  2509. tag.confirm_create_tag = Create tag
  2510. tag.create_tag_from = Create new tag from "%s"
  2511. tag.create_success = Tag "%s" has been created.
  2512. topic.manage_topics = Manage Topics
  2513. topic.done = Done
  2514. topic.count_prompt = You cannot select more than 25 topics
  2515. topic.format_prompt = Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
  2516. find_file.go_to_file = Go to file
  2517. find_file.no_matching = No matching file found
  2518. error.csv.too_large = Can't render this file because it is too large.
  2519. error.csv.unexpected = Can't render this file because it contains an unexpected character in line %d and column %d.
  2520. error.csv.invalid_field_count = Can't render this file because it has a wrong number of fields in line %d.
  2521. error.broken_git_hook = Git hooks of this repository seem to be broken. Please follow the <a target="_blank" rel="noreferrer" href="%s">documentation</a> to fix them, then push some commits to refresh the status.
  2522. [graphs]
  2523. component_loading = Loading %s...
  2524. component_loading_failed = Could not load %s
  2525. component_loading_info = This might take a bit…
  2526. component_failed_to_load = An unexpected error happened.
  2527. code_frequency.what = code frequency
  2528. contributors.what = contributions
  2529. recent_commits.what = recent commits
  2530. [org]
  2531. org_name_holder = Organization Name
  2532. org_full_name_holder = Organization Full Name
  2533. org_name_helper = Organization names should be short and memorable.
  2534. create_org = Create Organization
  2535. repo_updated = Updated
  2536. members = Members
  2537. teams = Teams
  2538. code = Code
  2539. lower_members = members
  2540. lower_repositories = repositories
  2541. create_new_team = New Team
  2542. create_team = Create Team
  2543. org_desc = Description
  2544. team_name = Team Name
  2545. team_desc = Description
  2546. team_name_helper = Team names should be short and memorable.
  2547. team_desc_helper = Describe the purpose or role of the team.
  2548. team_access_desc = Repository access
  2549. team_permission_desc = Permission
  2550. team_unit_desc = Allow Access to Repository Sections
  2551. team_unit_disabled = (Disabled)
  2552. form.name_reserved = The organization name "%s" is reserved.
  2553. form.name_pattern_not_allowed = The pattern "%s" is not allowed in an organization name.
  2554. form.create_org_not_allowed = You are not allowed to create an organization.
  2555. settings = Settings
  2556. settings.options = Organization
  2557. settings.full_name = Full Name
  2558. settings.email = Contact Email
  2559. settings.website = Website
  2560. settings.location = Location
  2561. settings.permission = Permissions
  2562. settings.repoadminchangeteam = Repository admin can add and remove access for teams
  2563. settings.visibility = Visibility
  2564. settings.visibility.public = Public
  2565. settings.visibility.limited = Limited (Visible to authenticated users only)
  2566. settings.visibility.limited_shortname = Limited
  2567. settings.visibility.private = Private (Visible only to organization members)
  2568. settings.visibility.private_shortname = Private
  2569. settings.update_settings = Update Settings
  2570. settings.update_setting_success = Organization settings have been updated.
  2571. settings.change_orgname_prompt = Note: Changing the organization name will also change your organization's URL and free the old name.
  2572. settings.change_orgname_redirect_prompt = The old name will redirect until it is claimed.
  2573. settings.update_avatar_success = The organization's avatar has been updated.
  2574. settings.delete = Delete Organization
  2575. settings.delete_account = Delete This Organization
  2576. settings.delete_prompt = The organization will be permanently removed. This <strong>CANNOT</strong> be undone!
  2577. settings.confirm_delete_account = Confirm Deletion
  2578. settings.delete_org_title = Delete Organization
  2579. settings.delete_org_desc = This organization will be deleted permanently. Continue?
  2580. settings.hooks_desc = Add webhooks which will be triggered for <strong>all repositories</strong> under this organization.
  2581. settings.labels_desc = Add labels which can be used on issues for <strong>all repositories</strong> under this organization.
  2582. members.membership_visibility = Membership Visibility:
  2583. members.public = Visible
  2584. members.public_helper = make hidden
  2585. members.private = Hidden
  2586. members.private_helper = make visible
  2587. members.member_role = Member Role:
  2588. members.owner = Owner
  2589. members.member = Member
  2590. members.remove = Remove
  2591. members.remove.detail = Remove %[1]s from %[2]s?
  2592. members.leave = Leave
  2593. members.leave.detail = Leave %s?
  2594. members.invite_desc = Add a new member to %s:
  2595. members.invite_now = Invite Now
  2596. teams.join = Join
  2597. teams.leave = Leave
  2598. teams.leave.detail = Leave %s?
  2599. teams.can_create_org_repo = Create repositories
  2600. teams.can_create_org_repo_helper = Members can create new repositories in organization. Creator will get administrator access to the new repository.
  2601. teams.none_access = No Access
  2602. teams.none_access_helper = Members cannot view or do any other action on this unit. It has no effect for public repositories.
  2603. teams.general_access = General Access
  2604. teams.general_access_helper = Members permissions will be decided by below permission table.
  2605. teams.read_access = Read
  2606. teams.read_access_helper = Members can view and clone team repositories.
  2607. teams.write_access = Write
  2608. teams.write_access_helper = Members can read and push to team repositories.
  2609. teams.admin_access = Administrator Access
  2610. teams.admin_access_helper = Members can pull and push to team repositories and add collaborators to them.
  2611. teams.no_desc = This team has no description
  2612. teams.settings = Settings
  2613. teams.owners_permission_desc = Owners have full access to <strong>all repositories</strong> and have <strong>administrator access</strong> to the organization.
  2614. teams.members = Team Members
  2615. teams.update_settings = Update Settings
  2616. teams.delete_team = Delete Team
  2617. teams.add_team_member = Add Team Member
  2618. teams.invite_team_member = Invite to %s
  2619. teams.invite_team_member.list = Pending Invitations
  2620. teams.delete_team_title = Delete Team
  2621. teams.delete_team_desc = Deleting a team revokes repository access from its members. Continue?
  2622. teams.delete_team_success = The team has been deleted.
  2623. teams.read_permission_desc = This team grants <strong>Read</strong> access: members can view and clone team repositories.
  2624. teams.write_permission_desc = This team grants <strong>Write</strong> access: members can read from and push to team repositories.
  2625. teams.admin_permission_desc = This team grants <strong>Admin</strong> access: members can read from, push to and add collaborators to team repositories.
  2626. teams.create_repo_permission_desc = Additionally, this team grants <strong>Create repository</strong> permission: members can create new repositories in organization.
  2627. teams.repositories = Team Repositories
  2628. teams.remove_all_repos_title = Remove all team repositories
  2629. teams.remove_all_repos_desc = This will remove all repositories from the team.
  2630. teams.add_all_repos_title = Add all repositories
  2631. teams.add_all_repos_desc = This will add all the organization's repositories to the team.
  2632. teams.add_nonexistent_repo = "The repository you're trying to add doesn't exist, please create it first."
  2633. teams.add_duplicate_users = User is already a team member.
  2634. teams.repos.none = No repositories could be accessed by this team.
  2635. teams.members.none = No members on this team.
  2636. teams.members.blocked_user = Cannot add the user because it is blocked by the organization.
  2637. teams.specific_repositories = Specific repositories
  2638. teams.specific_repositories_helper = Members will only have access to repositories explicitly added to the team. Selecting this <strong>will not</strong> automatically remove repositories already added with <i>All repositories</i>.
  2639. teams.all_repositories = All repositories
  2640. teams.all_repositories_helper = Team has access to all repositories. Selecting this will <strong>add all existing</strong> repositories to the team.
  2641. teams.all_repositories_read_permission_desc = This team grants <strong>Read</strong> access to <strong>all repositories</strong>: members can view and clone repositories.
  2642. teams.all_repositories_write_permission_desc = This team grants <strong>Write</strong> access to <strong>all repositories</strong>: members can read from and push to repositories.
  2643. teams.all_repositories_admin_permission_desc = This team grants <strong>Admin</strong> access to <strong>all repositories</strong>: members can read from, push to and add collaborators to repositories.
  2644. teams.invite.title = You have been invited to join team <strong>%s</strong> in organization <strong>%s</strong>.
  2645. teams.invite.by = Invited by %s
  2646. teams.invite.description = Please click the button below to join the team.
  2647. [admin]
  2648. maintenance = Maintenance
  2649. dashboard = Dashboard
  2650. self_check = Self Check
  2651. identity_access = Identity & Access
  2652. users = User Accounts
  2653. organizations = Organizations
  2654. assets = Code Assets
  2655. repositories = Repositories
  2656. hooks = Webhooks
  2657. integrations = Integrations
  2658. authentication = Authentication Sources
  2659. emails = User Emails
  2660. config = Configuration
  2661. config_summary = Summary
  2662. config_settings = Settings
  2663. notices = System Notices
  2664. monitor = Monitoring
  2665. first_page = First
  2666. last_page = Last
  2667. total = Total: %d
  2668. settings = Admin Settings
  2669. dashboard.new_version_hint = Gitea %s is now available, you are running %s. Check <a target="_blank" rel="noreferrer" href="https://blog.gitea.io">the blog</a> for more details.
  2670. dashboard.statistic = Summary
  2671. dashboard.maintenance_operations = Maintenance Operations
  2672. dashboard.system_status = System Status
  2673. dashboard.operation_name = Operation Name
  2674. dashboard.operation_switch = Switch
  2675. dashboard.operation_run = Run
  2676. dashboard.clean_unbind_oauth = Clean unbound OAuth connections
  2677. dashboard.clean_unbind_oauth_success = All unbound OAuth connections have been deleted.
  2678. dashboard.task.started=Started Task: %[1]s
  2679. dashboard.task.process=Task: %[1]s
  2680. dashboard.task.cancelled=Task: %[1]s canceled: %[3]s
  2681. dashboard.task.error=Error in Task: %[1]s: %[3]s
  2682. dashboard.task.finished=Task: %[1]s started by %[2]s has finished
  2683. dashboard.task.unknown=Unknown task: %[1]s
  2684. dashboard.cron.started=Started Cron: %[1]s
  2685. dashboard.cron.process=Cron: %[1]s
  2686. dashboard.cron.cancelled=Cron: %[1]s canceled: %[3]s
  2687. dashboard.cron.error=Error in Cron: %s: %[3]s
  2688. dashboard.cron.finished=Cron: %[1]s has finished
  2689. dashboard.delete_inactive_accounts = Delete all unactivated accounts
  2690. dashboard.delete_inactive_accounts.started = Delete all unactivated accounts task started.
  2691. dashboard.delete_repo_archives = "Delete all repositories' archives (ZIP, TAR.GZ, etc..)"
  2692. dashboard.delete_repo_archives.started = Delete all repository archives task started.
  2693. dashboard.delete_missing_repos = Delete all repositories missing their Git files
  2694. dashboard.delete_missing_repos.started = Delete all repositories missing their Git files task started.
  2695. dashboard.delete_generated_repository_avatars = Delete generated repository avatars
  2696. dashboard.sync_repo_branches = Sync missed branches from git data to databases
  2697. dashboard.sync_repo_tags = Sync tags from git data to database
  2698. dashboard.update_mirrors = Update Mirrors
  2699. dashboard.repo_health_check = Health check all repositories
  2700. dashboard.check_repo_stats = Check all repository statistics
  2701. dashboard.archive_cleanup = Delete old repository archives
  2702. dashboard.deleted_branches_cleanup = Clean-up deleted branches
  2703. dashboard.update_migration_poster_id = Update migration poster IDs
  2704. dashboard.git_gc_repos = Garbage collect all repositories
  2705. dashboard.resync_all_sshkeys = Update the '.ssh/authorized_keys' file with Gitea SSH keys.
  2706. dashboard.resync_all_sshprincipals = Update the '.ssh/authorized_principals' file with Gitea SSH principals.
  2707. dashboard.resync_all_hooks = Resynchronize pre-receive, update and post-receive hooks of all repositories.
  2708. dashboard.reinit_missing_repos = Reinitialize all missing Git repositories for which records exist
  2709. dashboard.sync_external_users = Synchronize external user data
  2710. dashboard.cleanup_hook_task_table = Cleanup hook_task table
  2711. dashboard.cleanup_packages = Cleanup expired packages
  2712. dashboard.cleanup_actions = Cleanup actions expired logs and artifacts
  2713. dashboard.server_uptime = Server Uptime
  2714. dashboard.current_goroutine = Current Goroutines
  2715. dashboard.current_memory_usage = Current Memory Usage
  2716. dashboard.total_memory_allocated = Total Memory Allocated
  2717. dashboard.memory_obtained = Memory Obtained
  2718. dashboard.pointer_lookup_times = Pointer Lookup Times
  2719. dashboard.memory_allocate_times = Memory Allocations
  2720. dashboard.memory_free_times = Memory Frees
  2721. dashboard.current_heap_usage = Current Heap Usage
  2722. dashboard.heap_memory_obtained = Heap Memory Obtained
  2723. dashboard.heap_memory_idle = Heap Memory Idle
  2724. dashboard.heap_memory_in_use = Heap Memory In Use
  2725. dashboard.heap_memory_released = Heap Memory Released
  2726. dashboard.heap_objects = Heap Objects
  2727. dashboard.bootstrap_stack_usage = Bootstrap Stack Usage
  2728. dashboard.stack_memory_obtained = Stack Memory Obtained
  2729. dashboard.mspan_structures_usage = MSpan Structures Usage
  2730. dashboard.mspan_structures_obtained = MSpan Structures Obtained
  2731. dashboard.mcache_structures_usage = MCache Structures Usage
  2732. dashboard.mcache_structures_obtained = MCache Structures Obtained
  2733. dashboard.profiling_bucket_hash_table_obtained = Profiling Bucket Hash Table Obtained
  2734. dashboard.gc_metadata_obtained = GC Metadata Obtained
  2735. dashboard.other_system_allocation_obtained = Other System Allocation Obtained
  2736. dashboard.next_gc_recycle = Next GC Recycle
  2737. dashboard.last_gc_time = Since Last GC Time
  2738. dashboard.total_gc_time = Total GC Pause
  2739. dashboard.total_gc_pause = Total GC Pause
  2740. dashboard.last_gc_pause = Last GC Pause
  2741. dashboard.gc_times = GC Times
  2742. dashboard.delete_old_actions = Delete all old actions from database
  2743. dashboard.delete_old_actions.started = Delete all old actions from database started.
  2744. dashboard.update_checker = Update checker
  2745. dashboard.delete_old_system_notices = Delete all old system notices from database
  2746. dashboard.gc_lfs = Garbage collect LFS meta objects
  2747. dashboard.stop_zombie_tasks = Stop zombie tasks
  2748. dashboard.stop_endless_tasks = Stop endless tasks
  2749. dashboard.cancel_abandoned_jobs = Cancel abandoned jobs
  2750. dashboard.start_schedule_tasks = Start schedule tasks
  2751. dashboard.sync_branch.started = Branches Sync started
  2752. dashboard.sync_tag.started = Tags Sync started
  2753. dashboard.rebuild_issue_indexer = Rebuild issue indexer
  2754. users.user_manage_panel = User Account Management
  2755. users.new_account = Create User Account
  2756. users.name = Username
  2757. users.full_name = Full Name
  2758. users.activated = Activated
  2759. users.admin = Admin
  2760. users.restricted = Restricted
  2761. users.reserved = Reserved
  2762. users.bot = Bot
  2763. users.remote = Remote
  2764. users.2fa = 2FA
  2765. users.repos = Repos
  2766. users.created = Created
  2767. users.last_login = Last Sign-In
  2768. users.never_login = Never Signed-In
  2769. users.send_register_notify = Send User Registration Notification
  2770. users.new_success = The user account "%s" has been created.
  2771. users.edit = Edit
  2772. users.auth_source = Authentication Source
  2773. users.local = Local
  2774. users.auth_login_name = Authentication Sign-In Name
  2775. users.password_helper = Leave the password empty to keep it unchanged.
  2776. users.update_profile_success = The user account has been updated.
  2777. users.edit_account = Edit User Account
  2778. users.max_repo_creation = Maximum Number of Repositories
  2779. users.max_repo_creation_desc = (Enter -1 to use the global default limit.)
  2780. users.is_activated = User Account Is Activated
  2781. users.prohibit_login = Disable Sign-In
  2782. users.is_admin = Is Administrator
  2783. users.is_restricted = Is Restricted
  2784. users.allow_git_hook = May Create Git Hooks
  2785. users.allow_git_hook_tooltip = Git Hooks are executed as the OS user running Gitea and will have the same level of host access. As a result, users with this special Git Hook privilege can access and modify all Gitea repositories as well as the database used by Gitea. Consequently they are also able to gain Gitea administrator privileges.
  2786. users.allow_import_local = May Import Local Repositories
  2787. users.allow_create_organization = May Create Organizations
  2788. users.update_profile = Update User Account
  2789. users.delete_account = Delete User Account
  2790. users.cannot_delete_self = "You cannot delete yourself"
  2791. users.still_own_repo = This user still owns one or more repositories. Delete or transfer these repositories first.
  2792. users.still_has_org = This user is a member of an organization. Remove the user from any organizations first.
  2793. users.purge = Purge User
  2794. users.purge_help = Forcibly delete user and any repositories, organizations, and packages owned by the user. All comments will be deleted too.
  2795. users.still_own_packages = This user still owns one or more packages, delete these packages first.
  2796. users.deletion_success = The user account has been deleted.
  2797. users.reset_2fa = Reset 2FA
  2798. users.list_status_filter.menu_text = Filter
  2799. users.list_status_filter.reset = Reset
  2800. users.list_status_filter.is_active = Active
  2801. users.list_status_filter.not_active = Inactive
  2802. users.list_status_filter.is_admin = Admin
  2803. users.list_status_filter.not_admin = Not Admin
  2804. users.list_status_filter.is_restricted = Restricted
  2805. users.list_status_filter.not_restricted = Not Restricted
  2806. users.list_status_filter.is_prohibit_login = Prohibit Login
  2807. users.list_status_filter.not_prohibit_login = Allow Login
  2808. users.list_status_filter.is_2fa_enabled = 2FA Enabled
  2809. users.list_status_filter.not_2fa_enabled = 2FA Disabled
  2810. users.details = User Details
  2811. emails.email_manage_panel = User Email Management
  2812. emails.primary = Primary
  2813. emails.activated = Activated
  2814. emails.filter_sort.email = Email
  2815. emails.filter_sort.email_reverse = Email (reverse)
  2816. emails.filter_sort.name = User Name
  2817. emails.filter_sort.name_reverse = User Name (reverse)
  2818. emails.updated = Email updated
  2819. emails.not_updated = Failed to update the requested email address: %v
  2820. emails.duplicate_active = This email address is already active for a different user.
  2821. emails.change_email_header = Update Email Properties
  2822. emails.change_email_text = Are you sure you want to update this email address?
  2823. orgs.org_manage_panel = Organization Management
  2824. orgs.name = Name
  2825. orgs.teams = Teams
  2826. orgs.members = Members
  2827. orgs.new_orga = New Organization
  2828. repos.repo_manage_panel = Repository Management
  2829. repos.unadopted = Unadopted Repositories
  2830. repos.unadopted.no_more = No more unadopted repositories found
  2831. repos.owner = Owner
  2832. repos.name = Name
  2833. repos.private = Private
  2834. repos.issues = Issues
  2835. repos.size = Size
  2836. repos.lfs_size = LFS Size
  2837. packages.package_manage_panel = Package Management
  2838. packages.total_size = Total Size: %s
  2839. packages.unreferenced_size = Unreferenced Size: %s
  2840. packages.cleanup = Clean up expired data
  2841. packages.cleanup.success = Cleaned up expired data successfully
  2842. packages.owner = Owner
  2843. packages.creator = Creator
  2844. packages.name = Name
  2845. packages.version = Version
  2846. packages.type = Type
  2847. packages.repository = Repository
  2848. packages.size = Size
  2849. packages.published = Published
  2850. defaulthooks = Default Webhooks
  2851. defaulthooks.desc = Webhooks automatically make HTTP POST requests to a server when certain Gitea events trigger. Webhooks defined here are defaults and will be copied into all new repositories. Read more in the <a target="_blank" rel="noopener" href="https://docs.gitea.com/usage/webhooks">webhooks guide</a>.
  2852. defaulthooks.add_webhook = Add Default Webhook
  2853. defaulthooks.update_webhook = Update Default Webhook
  2854. systemhooks = System Webhooks
  2855. systemhooks.desc = Webhooks automatically make HTTP POST requests to a server when certain Gitea events trigger. Webhooks defined here will act on all repositories on the system, so please consider any performance implications this may have. Read more in the <a target="_blank" rel="noopener" href="https://docs.gitea.com/usage/webhooks">webhooks guide</a>.
  2856. systemhooks.add_webhook = Add System Webhook
  2857. systemhooks.update_webhook = Update System Webhook
  2858. auths.auth_manage_panel = Authentication Source Management
  2859. auths.new = Add Authentication Source
  2860. auths.name = Name
  2861. auths.type = Type
  2862. auths.enabled = Enabled
  2863. auths.syncenabled = Enable User Synchronization
  2864. auths.updated = Updated
  2865. auths.auth_type = Authentication Type
  2866. auths.auth_name = Authentication Name
  2867. auths.security_protocol = Security Protocol
  2868. auths.domain = Domain
  2869. auths.host = Host
  2870. auths.port = Port
  2871. auths.bind_dn = Bind DN
  2872. auths.bind_password = Bind Password
  2873. auths.user_base = User Search Base
  2874. auths.user_dn = User DN
  2875. auths.attribute_username = Username Attribute
  2876. auths.attribute_username_placeholder = Leave empty to use the username entered in Gitea.
  2877. auths.attribute_name = First Name Attribute
  2878. auths.attribute_surname = Surname Attribute
  2879. auths.attribute_mail = Email Attribute
  2880. auths.attribute_ssh_public_key = Public SSH Key Attribute
  2881. auths.attribute_avatar = Avatar Attribute
  2882. auths.attributes_in_bind = Fetch Attributes in Bind DN Context
  2883. auths.allow_deactivate_all = Allow an empty search result to deactivate all users
  2884. auths.use_paged_search = Use Paged Search
  2885. auths.search_page_size = Page Size
  2886. auths.filter = User Filter
  2887. auths.admin_filter = Admin Filter
  2888. auths.restricted_filter = Restricted Filter
  2889. auths.restricted_filter_helper = Leave empty to not set any users as restricted. Use an asterisk ('*') to set all users that do not match Admin Filter as restricted.
  2890. auths.verify_group_membership = Verify group membership in LDAP (leave the filter empty to skip)
  2891. auths.group_search_base = Group Search Base DN
  2892. auths.group_attribute_list_users = Group Attribute Containing List Of Users
  2893. auths.user_attribute_in_group = User Attribute Listed In Group
  2894. auths.map_group_to_team = Map LDAP groups to Organization teams (leave the field empty to skip)
  2895. auths.map_group_to_team_removal = Remove users from synchronized teams if user does not belong to corresponding LDAP group
  2896. auths.enable_ldap_groups = Enable LDAP groups
  2897. auths.ms_ad_sa = MS AD Search Attributes
  2898. auths.smtp_auth = SMTP Authentication Type
  2899. auths.smtphost = SMTP Host
  2900. auths.smtpport = SMTP Port
  2901. auths.allowed_domains = Allowed Domains
  2902. auths.allowed_domains_helper = Leave empty to allow all domains. Separate multiple domains with a comma (',').
  2903. auths.skip_tls_verify = Skip TLS Verify
  2904. auths.force_smtps = Force SMTPS
  2905. auths.force_smtps_helper = SMTPS is always used on port 465. Set this to force SMTPS on other ports. (Otherwise STARTTLS will be used on other ports if it is supported by the host.)
  2906. auths.helo_hostname = HELO Hostname
  2907. auths.helo_hostname_helper = Hostname sent with HELO. Leave blank to send current hostname.
  2908. auths.disable_helo = Disable HELO
  2909. auths.pam_service_name = PAM Service Name
  2910. auths.pam_email_domain = PAM Email Domain (optional)
  2911. auths.oauth2_provider = OAuth2 Provider
  2912. auths.oauth2_icon_url = Icon URL
  2913. auths.oauth2_clientID = Client ID (Key)
  2914. auths.oauth2_clientSecret = Client Secret
  2915. auths.openIdConnectAutoDiscoveryURL = OpenID Connect Auto Discovery URL
  2916. auths.oauth2_use_custom_url = Use Custom URLs Instead of Default URLs
  2917. auths.oauth2_tokenURL = Token URL
  2918. auths.oauth2_authURL = Authorize URL
  2919. auths.oauth2_profileURL = Profile URL
  2920. auths.oauth2_emailURL = Email URL
  2921. auths.skip_local_two_fa = Skip local 2FA
  2922. auths.skip_local_two_fa_helper = Leaving unset means local users with 2FA set will still have to pass 2FA to log on
  2923. auths.oauth2_tenant = Tenant
  2924. auths.oauth2_scopes = Additional Scopes
  2925. auths.oauth2_required_claim_name = Required Claim Name
  2926. auths.oauth2_required_claim_name_helper = Set this name to restrict login from this source to users with a claim with this name
  2927. auths.oauth2_required_claim_value = Required Claim Value
  2928. auths.oauth2_required_claim_value_helper = Set this value to restrict login from this source to users with a claim with this name and value
  2929. auths.oauth2_group_claim_name = Claim name providing group names for this source. (Optional)
  2930. auths.oauth2_admin_group = Group Claim value for administrator users. (Optional - requires claim name above)
  2931. auths.oauth2_restricted_group = Group Claim value for restricted users. (Optional - requires claim name above)
  2932. auths.oauth2_map_group_to_team = Map claimed groups to Organization teams. (Optional - requires claim name above)
  2933. auths.oauth2_map_group_to_team_removal = Remove users from synchronized teams if user does not belong to corresponding group.
  2934. auths.enable_auto_register = Enable Auto Registration
  2935. auths.sspi_auto_create_users = Automatically create users
  2936. auths.sspi_auto_create_users_helper = Allow SSPI auth method to automatically create new accounts for users that login for the first time
  2937. auths.sspi_auto_activate_users = Automatically activate users
  2938. auths.sspi_auto_activate_users_helper = Allow SSPI auth method to automatically activate new users
  2939. auths.sspi_strip_domain_names = Remove domain names from usernames
  2940. auths.sspi_strip_domain_names_helper = If checked, domain names will be removed from logon names (eg. "DOMAIN\user" and "user@example.org" both will become just "user").
  2941. auths.sspi_separator_replacement = Separator to use instead of \, / and @
  2942. auths.sspi_separator_replacement_helper = The character to use to replace the separators of down-level logon names (eg. the \ in "DOMAIN\user") and user principal names (eg. the @ in "user@example.org").
  2943. auths.sspi_default_language = Default user language
  2944. auths.sspi_default_language_helper = Default language for users automatically created by SSPI auth method. Leave empty if you prefer language to be automatically detected.
  2945. auths.tips = Tips
  2946. auths.tips.oauth2.general = OAuth2 Authentication
  2947. auths.tips.oauth2.general.tip = When registering a new OAuth2 authentication, the callback/redirect URL should be:
  2948. auths.tip.oauth2_provider = OAuth2 Provider
  2949. auths.tip.bitbucket = Register a new OAuth consumer on https://bitbucket.org/account/user/{your-username}/oauth-consumers/new and add the permission 'Account' - 'Read'
  2950. auths.tip.nextcloud = Register a new OAuth consumer on your instance using the following menu "Settings -> Security -> OAuth 2.0 client"
  2951. auths.tip.dropbox = Create a new application at https://www.dropbox.com/developers/apps
  2952. auths.tip.facebook = Register a new application at https://developers.facebook.com/apps and add the product "Facebook Login"
  2953. auths.tip.github = Register a new OAuth application on https://github.com/settings/applications/new
  2954. auths.tip.gitlab_new = Register a new application on https://gitlab.com/-/profile/applications
  2955. auths.tip.google_plus = Obtain OAuth2 client credentials from the Google API console at https://console.developers.google.com/
  2956. auths.tip.openid_connect = Use the OpenID Connect Discovery URL "https://{server}/.well-known/openid-configuration" to specify the endpoints
  2957. auths.tip.twitter = Go to https://dev.twitter.com/apps, create an application and ensure that the “Allow this application to be used to Sign in with Twitter” option is enabled
  2958. auths.tip.discord = Register a new application on https://discordapp.com/developers/applications/me
  2959. auths.tip.gitea = Register a new OAuth2 application. Guide can be found at https://docs.gitea.com/development/oauth2-provider
  2960. auths.tip.yandex = Create a new application at https://oauth.yandex.com/client/new. Select following permissions from the "Yandex.Passport API" section: "Access to email address", "Access to user avatar" and "Access to username, first name and surname, gender"
  2961. auths.tip.mastodon = Input a custom instance URL for the mastodon instance you want to authenticate with (or use the default one)
  2962. auths.edit = Edit Authentication Source
  2963. auths.activated = This Authentication Source is Activated
  2964. auths.new_success = The authentication "%s" has been added.
  2965. auths.update_success = The authentication source has been updated.
  2966. auths.update = Update Authentication Source
  2967. auths.delete = Delete Authentication Source
  2968. auths.delete_auth_title = Delete Authentication Source
  2969. auths.delete_auth_desc = Deleting an authentication source prevents users from using it to sign in. Continue?
  2970. auths.still_in_used = The authentication source is still in use. Convert or delete any users using this authentication source first.
  2971. auths.deletion_success = The authentication source has been deleted.
  2972. auths.login_source_exist = The authentication source "%s" already exists.
  2973. auths.login_source_of_type_exist = An authentication source of this type already exists.
  2974. auths.unable_to_initialize_openid = Unable to initialize OpenID Connect Provider: %s
  2975. auths.invalid_openIdConnectAutoDiscoveryURL = Invalid Auto Discovery URL (this must be a valid URL starting with http:// or https://)
  2976. config.server_config = Server Configuration
  2977. config.app_name = Site Title
  2978. config.app_ver = Gitea Version
  2979. config.app_url = Gitea Base URL
  2980. config.custom_conf = Configuration File Path
  2981. config.custom_file_root_path = "Custom File Root Path"
  2982. config.domain = Server Domain
  2983. config.offline_mode = Local Mode
  2984. config.disable_router_log = Disable Router Log
  2985. config.run_user = Run As Username
  2986. config.run_mode = Run Mode
  2987. config.git_version = Git Version
  2988. config.app_data_path = App Data Path
  2989. config.repo_root_path = Repository Root Path
  2990. config.lfs_root_path = LFS Root Path
  2991. config.log_file_root_path = Log Path
  2992. config.script_type = Script Type
  2993. config.reverse_auth_user = Reverse Authentication User
  2994. config.ssh_config = SSH Configuration
  2995. config.ssh_enabled = Enabled
  2996. config.ssh_start_builtin_server = Use Built-In Server
  2997. config.ssh_domain = SSH Server Domain
  2998. config.ssh_port = Port
  2999. config.ssh_listen_port = Listen Port
  3000. config.ssh_root_path = Root Path
  3001. config.ssh_key_test_path = Key Test Path
  3002. config.ssh_keygen_path = Keygen ('ssh-keygen') Path
  3003. config.ssh_minimum_key_size_check = Minimum Key Size Check
  3004. config.ssh_minimum_key_sizes = Minimum Key Sizes
  3005. config.lfs_config = LFS Configuration
  3006. config.lfs_enabled = Enabled
  3007. config.lfs_content_path = LFS Content Path
  3008. config.lfs_http_auth_expiry = LFS HTTP Auth Expiry
  3009. config.db_config = Database Configuration
  3010. config.db_type = Type
  3011. config.db_host = Host
  3012. config.db_name = Name
  3013. config.db_user = Username
  3014. config.db_schema = Schema
  3015. config.db_ssl_mode = SSL
  3016. config.db_path = Path
  3017. config.service_config = Service Configuration
  3018. config.register_email_confirm = Require Email Confirmation to Register
  3019. config.disable_register = Disable Self-Registration
  3020. config.allow_only_internal_registration = Allow Registration Only Through Gitea itself
  3021. config.allow_only_external_registration = Allow Registration Only Through External Services
  3022. config.enable_openid_signup = Enable OpenID Self-Registration
  3023. config.enable_openid_signin = Enable OpenID Sign-In
  3024. config.show_registration_button = Show Register Button
  3025. config.require_sign_in_view = Require Sign-In to View Pages
  3026. config.mail_notify = Enable Email Notifications
  3027. config.enable_captcha = Enable CAPTCHA
  3028. config.active_code_lives = Active Code Lives
  3029. config.reset_password_code_lives = Recover Account Code Expiry Time
  3030. config.default_keep_email_private = Hide Email Addresses by Default
  3031. config.default_allow_create_organization = Allow Creation of Organizations by Default
  3032. config.enable_timetracking = Enable Time Tracking
  3033. config.default_enable_timetracking = Enable Time Tracking by Default
  3034. config.default_allow_only_contributors_to_track_time = Let Only Contributors Track Time
  3035. config.no_reply_address = Hidden Email Domain
  3036. config.default_visibility_organization = Default visibility for new Organizations
  3037. config.default_enable_dependencies = Enable Issue Dependencies by Default
  3038. config.webhook_config = Webhook Configuration
  3039. config.queue_length = Queue Length
  3040. config.deliver_timeout = Deliver Timeout
  3041. config.skip_tls_verify = Skip TLS Verification
  3042. config.mailer_config = Mailer Configuration
  3043. config.mailer_enabled = Enabled
  3044. config.mailer_enable_helo = Enable HELO
  3045. config.mailer_name = Name
  3046. config.mailer_protocol = Protocol
  3047. config.mailer_smtp_addr = SMTP Addr
  3048. config.mailer_smtp_port = SMTP Port
  3049. config.mailer_user = User
  3050. config.mailer_use_sendmail = Use Sendmail
  3051. config.mailer_sendmail_path = Sendmail Path
  3052. config.mailer_sendmail_args = Extra Arguments to Sendmail
  3053. config.mailer_sendmail_timeout = Sendmail Timeout
  3054. config.mailer_use_dummy = Dummy
  3055. config.test_email_placeholder = Email (e.g. test@example.com)
  3056. config.send_test_mail = Send Testing Email
  3057. config.send_test_mail_submit = Send
  3058. config.test_mail_failed = Failed to send a testing email to "%s": %v
  3059. config.test_mail_sent = A testing email has been sent to "%s".
  3060. config.oauth_config = OAuth Configuration
  3061. config.oauth_enabled = Enabled
  3062. config.cache_config = Cache Configuration
  3063. config.cache_adapter = Cache Adapter
  3064. config.cache_interval = Cache Interval
  3065. config.cache_conn = Cache Connection
  3066. config.cache_item_ttl = Cache Item TTL
  3067. config.session_config = Session Configuration
  3068. config.session_provider = Session Provider
  3069. config.provider_config = Provider Config
  3070. config.cookie_name = Cookie Name
  3071. config.gc_interval_time = GC Interval Time
  3072. config.session_life_time = Session Life Time
  3073. config.https_only = HTTPS Only
  3074. config.cookie_life_time = Cookie Life Time
  3075. config.picture_config = Picture and Avatar Configuration
  3076. config.picture_service = Picture Service
  3077. config.disable_gravatar = Disable Gravatar
  3078. config.enable_federated_avatar = Enable Federated Avatars
  3079. config.open_with_editor_app_help = The "Open with" editors for the clone menu. If left empty, the default will be used. Expand to see the default.
  3080. config.git_config = Git Configuration
  3081. config.git_disable_diff_highlight = Disable Diff Syntax Highlight
  3082. config.git_max_diff_lines = Max Diff Lines (for a single file)
  3083. config.git_max_diff_line_characters = Max Diff Characters (for a single line)
  3084. config.git_max_diff_files = Max Diff Files (to be shown)
  3085. config.git_gc_args = GC Arguments
  3086. config.git_migrate_timeout = Migration Timeout
  3087. config.git_mirror_timeout = Mirror Update Timeout
  3088. config.git_clone_timeout = Clone Operation Timeout
  3089. config.git_pull_timeout = Pull Operation Timeout
  3090. config.git_gc_timeout = GC Operation Timeout
  3091. config.log_config = Log Configuration
  3092. config.logger_name_fmt = Logger: %s
  3093. config.disabled_logger = Disabled
  3094. config.access_log_mode = Access Log Mode
  3095. config.access_log_template = Access Log Template
  3096. config.xorm_log_sql = Log SQL
  3097. config.set_setting_failed = Set setting %s failed
  3098. monitor.stats = Stats
  3099. monitor.cron = Cron Tasks
  3100. monitor.name = Name
  3101. monitor.schedule = Schedule
  3102. monitor.next = Next Time
  3103. monitor.previous = Previous Time
  3104. monitor.execute_times = Executions
  3105. monitor.process = Running Processes
  3106. monitor.stacktrace = Stacktrace
  3107. monitor.processes_count = %d Processes
  3108. monitor.download_diagnosis_report = Download diagnosis report
  3109. monitor.desc = Description
  3110. monitor.start = Start Time
  3111. monitor.execute_time = Execution Time
  3112. monitor.last_execution_result = Result
  3113. monitor.process.cancel = Cancel process
  3114. monitor.process.cancel_desc = Cancelling a process may cause data loss
  3115. monitor.process.cancel_notices = Cancel: <strong>%s</strong>?
  3116. monitor.process.children = Children
  3117. monitor.queues = Queues
  3118. monitor.queue = Queue: %s
  3119. monitor.queue.name = Name
  3120. monitor.queue.type = Type
  3121. monitor.queue.exemplar = Exemplar Type
  3122. monitor.queue.numberworkers = Number of Workers
  3123. monitor.queue.activeworkers = Active Workers
  3124. monitor.queue.maxnumberworkers = Max Number of Workers
  3125. monitor.queue.numberinqueue = Number in Queue
  3126. monitor.queue.review_add = Review / Add Workers
  3127. monitor.queue.settings.title = Pool Settings
  3128. monitor.queue.settings.desc = Pools dynamically grow in response to their worker queue blocking.
  3129. monitor.queue.settings.maxnumberworkers = Max Number of workers
  3130. monitor.queue.settings.maxnumberworkers.placeholder = Currently %[1]d
  3131. monitor.queue.settings.maxnumberworkers.error = Max number of workers must be a number
  3132. monitor.queue.settings.submit = Update Settings
  3133. monitor.queue.settings.changed = Settings Updated
  3134. monitor.queue.settings.remove_all_items = Remove all
  3135. monitor.queue.settings.remove_all_items_done = All items in the queue have been removed.
  3136. notices.system_notice_list = System Notices
  3137. notices.view_detail_header = View Notice Details
  3138. notices.operations = Operations
  3139. notices.select_all = Select All
  3140. notices.deselect_all = Deselect All
  3141. notices.inverse_selection = Inverse Selection
  3142. notices.delete_selected = Delete Selected
  3143. notices.delete_all = Delete All Notices
  3144. notices.type = Type
  3145. notices.type_1 = Repository
  3146. notices.type_2 = Task
  3147. notices.desc = Description
  3148. notices.op = Op.
  3149. notices.delete_success = The system notices have been deleted.
  3150. self_check.no_problem_found = No problem found yet.
  3151. self_check.startup_warnings = Startup warnings:
  3152. self_check.database_collation_mismatch = Expect database to use collation: %s
  3153. self_check.database_collation_case_insensitive = Database is using a collation %s, which is an insensitive collation. Although Gitea could work with it, there might be some rare cases which don't work as expected.
  3154. self_check.database_inconsistent_collation_columns = Database is using collation %s, but these columns are using mismatched collations. It might cause some unexpected problems.
  3155. self_check.database_fix_mysql = For MySQL/MariaDB users, you could use the "gitea doctor convert" command to fix the collation problems, or you could also fix the problem by "ALTER ... COLLATE ..." SQLs manually.
  3156. self_check.database_fix_mssql = For MSSQL users, you could only fix the problem by "ALTER ... COLLATE ..." SQLs manually at the moment.
  3157. [action]
  3158. create_repo = created repository <a href="%s">%s</a>
  3159. rename_repo = renamed repository from <code>%[1]s</code> to <a href="%[2]s">%[3]s</a>
  3160. commit_repo = pushed to <a href="%[2]s">%[3]s</a> at <a href="%[1]s">%[4]s</a>
  3161. create_issue = `opened issue <a href="%[1]s">%[3]s#%[2]s</a>`
  3162. close_issue = `closed issue <a href="%[1]s">%[3]s#%[2]s</a>`
  3163. reopen_issue = `reopened issue <a href="%[1]s">%[3]s#%[2]s</a>`
  3164. create_pull_request = `created pull request <a href="%[1]s">%[3]s#%[2]s</a>`
  3165. close_pull_request = `closed pull request <a href="%[1]s">%[3]s#%[2]s</a>`
  3166. reopen_pull_request = `reopened pull request <a href="%[1]s">%[3]s#%[2]s</a>`
  3167. comment_issue = `commented on issue <a href="%[1]s">%[3]s#%[2]s</a>`
  3168. comment_pull = `commented on pull request <a href="%[1]s">%[3]s#%[2]s</a>`
  3169. merge_pull_request = `merged pull request <a href="%[1]s">%[3]s#%[2]s</a>`
  3170. auto_merge_pull_request = `automatically merged pull request <a href="%[1]s">%[3]s#%[2]s</a>`
  3171. transfer_repo = transferred repository <code>%s</code> to <a href="%s">%s</a>
  3172. push_tag = pushed tag <a href="%[2]s">%[3]s</a> to <a href="%[1]s">%[4]s</a>
  3173. delete_tag = deleted tag %[2]s from <a href="%[1]s">%[3]s</a>
  3174. delete_branch = deleted branch %[2]s from <a href="%[1]s">%[3]s</a>
  3175. compare_branch = Compare
  3176. compare_commits = Compare %d commits
  3177. compare_commits_general = Compare commits
  3178. mirror_sync_push = synced commits to <a href="%[2]s">%[3]s</a> at <a href="%[1]s">%[4]s</a> from mirror
  3179. mirror_sync_create = synced new reference <a href="%[2]s">%[3]s</a> to <a href="%[1]s">%[4]s</a> from mirror
  3180. mirror_sync_delete = synced and deleted reference <code>%[2]s</code> at <a href="%[1]s">%[3]s</a> from mirror
  3181. approve_pull_request = `approved <a href="%[1]s">%[3]s#%[2]s</a>`
  3182. reject_pull_request = `suggested changes for <a href="%[1]s">%[3]s#%[2]s</a>`
  3183. publish_release = `released <a href="%[2]s"> "%[4]s" </a> at <a href="%[1]s">%[3]s</a>`
  3184. review_dismissed = `dismissed review from <b>%[4]s</b> for <a href="%[1]s">%[3]s#%[2]s</a>`
  3185. review_dismissed_reason = Reason:
  3186. create_branch = created branch <a href="%[2]s">%[3]s</a> in <a href="%[1]s">%[4]s</a>
  3187. starred_repo = starred <a href="%[1]s">%[2]s</a>
  3188. watched_repo = started watching <a href="%[1]s">%[2]s</a>
  3189. [tool]
  3190. now = now
  3191. future = future
  3192. 1s = 1 second
  3193. 1m = 1 minute
  3194. 1h = 1 hour
  3195. 1d = 1 day
  3196. 1w = 1 week
  3197. 1mon = 1 month
  3198. 1y = 1 year
  3199. seconds = %d seconds
  3200. minutes = %d minutes
  3201. hours = %d hours
  3202. days = %d days
  3203. weeks = %d weeks
  3204. months = %d months
  3205. years = %d years
  3206. raw_seconds = seconds
  3207. raw_minutes = minutes
  3208. [dropzone]
  3209. default_message = Drop files or click here to upload.
  3210. invalid_input_type = You cannot upload files of this type.
  3211. file_too_big = File size ({{filesize}} MB) exceeds the maximum size of ({{maxFilesize}} MB).
  3212. remove_file = Remove file
  3213. [notification]
  3214. notifications = Notifications
  3215. unread = Unread
  3216. read = Read
  3217. no_unread = No unread notifications.
  3218. no_read = No read notifications.
  3219. pin = Pin notification
  3220. mark_as_read = Mark as read
  3221. mark_as_unread = Mark as unread
  3222. mark_all_as_read = Mark all as read
  3223. subscriptions = Subscriptions
  3224. watching = Watching
  3225. no_subscriptions = No subscriptions
  3226. [gpg]
  3227. default_key=Signed with default key
  3228. error.extract_sign = Failed to extract signature
  3229. error.generate_hash = Failed to generate hash of commit
  3230. error.no_committer_account = No account linked to committer's email address
  3231. error.no_gpg_keys_found = "No known key found for this signature in database"
  3232. error.not_signed_commit = "Not a signed commit"
  3233. error.failed_retrieval_gpg_keys = "Failed to retrieve any key attached to the committer's account"
  3234. error.probable_bad_signature = "WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS."
  3235. error.probable_bad_default_signature = "WARNING! Although the default key has this ID it does not verify this commit! This commit is SUSPICIOUS."
  3236. [units]
  3237. unit = Unit
  3238. error.no_unit_allowed_repo = You are not allowed to access any section of this repository.
  3239. error.unit_not_allowed = You are not allowed to access this repository section.
  3240. [packages]
  3241. title = Packages
  3242. desc = Manage repository packages.
  3243. empty = There are no packages yet.
  3244. empty.documentation = For more information on the package registry, see <a target="_blank" rel="noopener noreferrer" href="%s">the documentation</a>.
  3245. empty.repo = Did you upload a package, but it's not shown here? Go to <a href="%[1]s">package settings</a> and link it to this repo.
  3246. registry.documentation = For more information on the %s registry, see <a target="_blank" rel="noopener noreferrer" href="%s">the documentation</a>.
  3247. filter.type = Type
  3248. filter.type.all = All
  3249. filter.no_result = Your filter produced no results.
  3250. filter.container.tagged = Tagged
  3251. filter.container.untagged = Untagged
  3252. published_by = Published %[1]s by <a href="%[2]s">%[3]s</a>
  3253. published_by_in = Published %[1]s by <a href="%[2]s">%[3]s</a> in <a href="%[4]s"><strong>%[5]s</strong></a>
  3254. installation = Installation
  3255. about = About this package
  3256. requirements = Requirements
  3257. dependencies = Dependencies
  3258. keywords = Keywords
  3259. details = Details
  3260. details.author = Author
  3261. details.project_site = Project Site
  3262. details.repository_site = Repository Site
  3263. details.documentation_site = Documentation Site
  3264. details.license = License
  3265. assets = Assets
  3266. versions = Versions
  3267. versions.view_all = View all
  3268. dependency.id = ID
  3269. dependency.version = Version
  3270. alpine.registry = Setup this registry by adding the url in your <code>/etc/apk/repositories</code> file:
  3271. alpine.registry.key = Download the registry public RSA key into the <code>/etc/apk/keys/</code> folder to verify the index signature:
  3272. alpine.registry.info = Choose $branch and $repository from the list below.
  3273. alpine.install = To install the package, run the following command:
  3274. alpine.repository = Repository Info
  3275. alpine.repository.branches = Branches
  3276. alpine.repository.repositories = Repositories
  3277. alpine.repository.architectures = Architectures
  3278. cargo.registry = Setup this registry in the Cargo configuration file (for example <code>~/.cargo/config.toml</code>):
  3279. cargo.install = To install the package using Cargo, run the following command:
  3280. chef.registry = Setup this registry in your <code>~/.chef/config.rb</code> file:
  3281. chef.install = To install the package, run the following command:
  3282. composer.registry = Setup this registry in your <code>~/.composer/config.json</code> file:
  3283. composer.install = To install the package using Composer, run the following command:
  3284. composer.dependencies = Dependencies
  3285. composer.dependencies.development = Development Dependencies
  3286. conan.details.repository = Repository
  3287. conan.registry = Setup this registry from the command line:
  3288. conan.install = To install the package using Conan, run the following command:
  3289. conda.registry = Setup this registry as a Conda repository in your <code>.condarc</code> file:
  3290. conda.install = To install the package using Conda, run the following command:
  3291. container.details.type = Image Type
  3292. container.details.platform = Platform
  3293. container.pull = Pull the image from the command line:
  3294. container.digest = Digest:
  3295. container.multi_arch = OS / Arch
  3296. container.layers = Image Layers
  3297. container.labels = Labels
  3298. container.labels.key = Key
  3299. container.labels.value = Value
  3300. cran.registry = Setup this registry in your <code>Rprofile.site</code> file:
  3301. cran.install = To install the package, run the following command:
  3302. debian.registry = Setup this registry from the command line:
  3303. debian.registry.info = Choose $distribution and $component from the list below.
  3304. debian.install = To install the package, run the following command:
  3305. debian.repository = Repository Info
  3306. debian.repository.distributions = Distributions
  3307. debian.repository.components = Components
  3308. debian.repository.architectures = Architectures
  3309. generic.download = Download package from the command line:
  3310. go.install = Install the package from the command line:
  3311. helm.registry = Setup this registry from the command line:
  3312. helm.install = To install the package, run the following command:
  3313. maven.registry = Setup this registry in your project <code>pom.xml</code> file:
  3314. maven.install = To use the package include the following in the <code>dependencies</code> block in the <code>pom.xml</code> file:
  3315. maven.install2 = Run via command line:
  3316. maven.download = To download the dependency, run via command line:
  3317. nuget.registry = Setup this registry from the command line:
  3318. nuget.install = To install the package using NuGet, run the following command:
  3319. nuget.dependency.framework = Target Framework
  3320. npm.registry = Setup this registry in your project <code>.npmrc</code> file:
  3321. npm.install = To install the package using npm, run the following command:
  3322. npm.install2 = or add it to the package.json file:
  3323. npm.dependencies = Dependencies
  3324. npm.dependencies.development = Development Dependencies
  3325. npm.dependencies.peer = Peer Dependencies
  3326. npm.dependencies.optional = Optional Dependencies
  3327. npm.details.tag = Tag
  3328. pub.install = To install the package using Dart, run the following command:
  3329. pypi.requires = Requires Python
  3330. pypi.install = To install the package using pip, run the following command:
  3331. rpm.registry = Setup this registry from the command line:
  3332. rpm.distros.redhat = on RedHat based distributions
  3333. rpm.distros.suse = on SUSE based distributions
  3334. rpm.install = To install the package, run the following command:
  3335. rpm.repository = Repository Info
  3336. rpm.repository.architectures = Architectures
  3337. rpm.repository.multiple_groups = This package is available in multiple groups.
  3338. rubygems.install = To install the package using gem, run the following command:
  3339. rubygems.install2 = or add it to the Gemfile:
  3340. rubygems.dependencies.runtime = Runtime Dependencies
  3341. rubygems.dependencies.development = Development Dependencies
  3342. rubygems.required.ruby = Requires Ruby version
  3343. rubygems.required.rubygems = Requires RubyGem version
  3344. swift.registry = Setup this registry from the command line:
  3345. swift.install = Add the package in your <code>Package.swift</code> file:
  3346. swift.install2 = and run the following command:
  3347. vagrant.install = To add a Vagrant box, run the following command:
  3348. settings.link = Link this package to a repository
  3349. settings.link.description = If you link a package with a repository, the package is listed in the repository's package list.
  3350. settings.link.select = Select Repository
  3351. settings.link.button = Update Repository Link
  3352. settings.link.success = Repository link was successfully updated.
  3353. settings.link.error = Failed to update repository link.
  3354. settings.delete = Delete package
  3355. settings.delete.description = Deleting a package is permanent and cannot be undone.
  3356. settings.delete.notice = You are about to delete %s (%s). This operation is irreversible, are you sure?
  3357. settings.delete.success = The package has been deleted.
  3358. settings.delete.error = Failed to delete the package.
  3359. owner.settings.cargo.title = Cargo Registry Index
  3360. owner.settings.cargo.initialize = Initialize Index
  3361. owner.settings.cargo.initialize.description = A special index Git repository is needed to use the Cargo registry. Using this option will (re-)create the repository and configure it automatically.
  3362. owner.settings.cargo.initialize.error = Failed to initialize Cargo index: %v
  3363. owner.settings.cargo.initialize.success = The Cargo index was successfully created.
  3364. owner.settings.cargo.rebuild = Rebuild Index
  3365. owner.settings.cargo.rebuild.description = Rebuilding can be useful if the index is not synchronized with the stored Cargo packages.
  3366. owner.settings.cargo.rebuild.error = Failed to rebuild Cargo index: %v
  3367. owner.settings.cargo.rebuild.success = The Cargo index was successfully rebuild.
  3368. owner.settings.cleanuprules.title = Manage Cleanup Rules
  3369. owner.settings.cleanuprules.add = Add Cleanup Rule
  3370. owner.settings.cleanuprules.edit = Edit Cleanup Rule
  3371. owner.settings.cleanuprules.none = No cleanup rules available. Please consult the documentation.
  3372. owner.settings.cleanuprules.preview = Cleanup Rule Preview
  3373. owner.settings.cleanuprules.preview.overview = %d packages are scheduled to be removed.
  3374. owner.settings.cleanuprules.preview.none = Cleanup rule does not match any packages.
  3375. owner.settings.cleanuprules.enabled = Enabled
  3376. owner.settings.cleanuprules.pattern_full_match = Apply pattern to full package name
  3377. owner.settings.cleanuprules.keep.title = Versions that match these rules are kept, even if they match a removal rule below.
  3378. owner.settings.cleanuprules.keep.count = Keep the most recent
  3379. owner.settings.cleanuprules.keep.count.1 = 1 version per package
  3380. owner.settings.cleanuprules.keep.count.n = %d versions per package
  3381. owner.settings.cleanuprules.keep.pattern = Keep versions matching
  3382. owner.settings.cleanuprules.keep.pattern.container = The <code>latest</code> version is always kept for Container packages.
  3383. owner.settings.cleanuprules.remove.title = Versions that match these rules are removed, unless a rule above says to keep them.
  3384. owner.settings.cleanuprules.remove.days = Remove versions older than
  3385. owner.settings.cleanuprules.remove.pattern = Remove versions matching
  3386. owner.settings.cleanuprules.success.update = Cleanup rule has been updated.
  3387. owner.settings.cleanuprules.success.delete = Cleanup rule has been deleted.
  3388. owner.settings.chef.title = Chef Registry
  3389. owner.settings.chef.keypair = Generate key pair
  3390. owner.settings.chef.keypair.description = A key pair is necessary to authenticate to the Chef registry. If you have generated a key pair before, generating a new key pair will discard the old key pair.
  3391. [secrets]
  3392. secrets = Secrets
  3393. description = Secrets will be passed to certain actions and cannot be read otherwise.
  3394. none = There are no secrets yet.
  3395. creation = Add Secret
  3396. creation.name_placeholder = case-insensitive, alphanumeric characters or underscores only, cannot start with GITEA_ or GITHUB_
  3397. creation.value_placeholder = Input any content. Whitespace at the start and end will be omitted.
  3398. creation.success = The secret "%s" has been added.
  3399. creation.failed = Failed to add secret.
  3400. deletion = Remove secret
  3401. deletion.description = Removing a secret is permanent and cannot be undone. Continue?
  3402. deletion.success = The secret has been removed.
  3403. deletion.failed = Failed to remove secret.
  3404. management = Secrets Management
  3405. [actions]
  3406. actions = Actions
  3407. unit.desc = Manage actions
  3408. status.unknown = "Unknown"
  3409. status.waiting = "Waiting"
  3410. status.running = "Running"
  3411. status.success = "Success"
  3412. status.failure = "Failure"
  3413. status.cancelled = "Canceled"
  3414. status.skipped = "Skipped"
  3415. status.blocked = "Blocked"
  3416. runners = Runners
  3417. runners.runner_manage_panel = Runners Management
  3418. runners.new = Create new Runner
  3419. runners.new_notice = How to start a runner
  3420. runners.status = Status
  3421. runners.id = ID
  3422. runners.name = Name
  3423. runners.owner_type = Type
  3424. runners.description = Description
  3425. runners.labels = Labels
  3426. runners.last_online = Last Online Time
  3427. runners.runner_title = Runner
  3428. runners.task_list = Recent tasks on this runner
  3429. runners.task_list.no_tasks = There is no task yet.
  3430. runners.task_list.run = Run
  3431. runners.task_list.status = Status
  3432. runners.task_list.repository = Repository
  3433. runners.task_list.commit = Commit
  3434. runners.task_list.done_at = Done At
  3435. runners.edit_runner = Edit Runner
  3436. runners.update_runner = Update Changes
  3437. runners.update_runner_success = Runner updated successfully
  3438. runners.update_runner_failed = Failed to update runner
  3439. runners.delete_runner = Delete this runner
  3440. runners.delete_runner_success = Runner deleted successfully
  3441. runners.delete_runner_failed = Failed to delete runner
  3442. runners.delete_runner_header = Confirm to delete this runner
  3443. runners.delete_runner_notice = If a task is running on this runner, it will be terminated and mark as failed. It may break building workflow.
  3444. runners.none = No runners available
  3445. runners.status.unspecified = Unknown
  3446. runners.status.idle = Idle
  3447. runners.status.active = Active
  3448. runners.status.offline = Offline
  3449. runners.version = Version
  3450. runners.reset_registration_token = Reset registration token
  3451. runners.reset_registration_token_success = Runner registration token reset successfully
  3452. runs.all_workflows = All Workflows
  3453. runs.commit = Commit
  3454. runs.scheduled = Scheduled
  3455. runs.pushed_by = pushed by
  3456. runs.invalid_workflow_helper = Workflow config file is invalid. Please check your config file: %s
  3457. runs.no_matching_online_runner_helper = No matching online runner with label: %s
  3458. runs.no_job_without_needs = The workflow must contain at least one job without dependencies.
  3459. runs.actor = Actor
  3460. runs.status = Status
  3461. runs.actors_no_select = All actors
  3462. runs.status_no_select = All status
  3463. runs.no_results = No results matched.
  3464. runs.no_workflows = There are no workflows yet.
  3465. runs.no_workflows.quick_start = Don't know how to start with Gitea Actions? See <a target="_blank" rel="noopener noreferrer" href="%s">the quick start guide</a>.
  3466. runs.no_workflows.documentation = For more information on Gitea Actions, see <a target="_blank" rel="noopener noreferrer" href="%s">the documentation</a>.
  3467. runs.no_runs = The workflow has no runs yet.
  3468. runs.empty_commit_message = (empty commit message)
  3469. workflow.disable = Disable Workflow
  3470. workflow.disable_success = Workflow '%s' disabled successfully.
  3471. workflow.enable = Enable Workflow
  3472. workflow.enable_success = Workflow '%s' enabled successfully.
  3473. workflow.disabled = Workflow is disabled.
  3474. need_approval_desc = Need approval to run workflows for fork pull request.
  3475. variables = Variables
  3476. variables.management = Variables Management
  3477. variables.creation = Add Variable
  3478. variables.none = There are no variables yet.
  3479. variables.deletion = Remove variable
  3480. variables.deletion.description = Removing a variable is permanent and cannot be undone. Continue?
  3481. variables.description = Variables will be passed to certain actions and cannot be read otherwise.
  3482. variables.id_not_exist = Variable with ID %d does not exist.
  3483. variables.edit = Edit Variable
  3484. variables.deletion.failed = Failed to remove variable.
  3485. variables.deletion.success = The variable has been removed.
  3486. variables.creation.failed = Failed to add variable.
  3487. variables.creation.success = The variable "%s" has been added.
  3488. variables.update.failed = Failed to edit variable.
  3489. variables.update.success = The variable has been edited.
  3490. [projects]
  3491. type-1.display_name = Individual Project
  3492. type-2.display_name = Repository Project
  3493. type-3.display_name = Organization Project
  3494. [git.filemode]
  3495. changed_filemode = %[1]s → %[2]s
  3496. ; Ordered by git filemode value, ascending. E.g. directory has "040000", normal file has "100644", …
  3497. directory = Directory
  3498. normal_file = Normal file
  3499. executable_file = Executable file
  3500. symbolic_link = Symbolic link
  3501. submodule = Submodule