File tree Expand file tree Collapse file tree 16 files changed +49
-50
lines changed
fomantic/build/components Expand file tree Collapse file tree 16 files changed +49
-50
lines changed Original file line number Diff line number Diff line change 1
1
module code.gitea.io/gitea
2
2
3
- go 1.24
3
+ go 1.24.2
4
4
5
5
// rfc5280 said: "The serial number is an integer assigned by the CA to each certificate."
6
6
// But some CAs use negative serial number, just relax the check. related:
Original file line number Diff line number Diff line change @@ -450,6 +450,7 @@ use_scratch_code=Úsáid cód scratch
450
450
twofa_scratch_used=D' úsáid tú do chód scratch. Tá tú atreoraithe chuig an leathanach socruithe dhá fhachtóir ionas gur féidir leat clárú do ghléas a bhaint nó cód scratch nua a ghiniúint.
451
451
twofa_passcode_incorrect =Tá do phaschód mícheart. Má chuir tú do ghléas míchuir tú, bain úsáid as do chód scratch chun síniú isteach.
452
452
twofa_scratch_token_incorrect =Tá do chód scratch mícheart.
453
+ twofa_required =Ní mór duit Fíordheimhniú Dhá Fhachtóir a shocrú chun rochtain a fháil ar stórtha, nó iarracht a dhéanamh logáil isteach arís.
453
454
login_userpass =Sínigh isteach
454
455
login_openid =OpenID
455
456
oauth_signup_tab =Cláraigh Cuntas Nua
Original file line number Diff line number Diff line change @@ -450,6 +450,7 @@ use_scratch_code=Usar um código de recuperação
450
450
twofa_scratch_used =Você usou o seu código de recuperação. Foi reencaminhado para a página de configurações da autenticação em dois passos para poder remover o registo do seu dispositivo ou gerar um novo código de recuperação.
451
451
twofa_passcode_incorrect =A senha está errada. Se perdeu o seu dispositivo, use o código de recuperação para iniciar a sessão.
452
452
twofa_scratch_token_incorrect =O código de recuperação está errado.
453
+ twofa_required =Tem de configurar a autenticação em dois passos para obter acesso aos repositórios ou então tentar iniciar a sessão novamente.
453
454
login_userpass =Iniciar sessão
454
455
login_openid =OpenID
455
456
oauth_signup_tab =Fazer inscrição
Original file line number Diff line number Diff line change 6
6
{{if $pageMeta.Issue}}data-update-url="{{$pageMeta.RepoLink}}/issues/assignee?issue_ids={{$pageMeta.Issue.ID}}"{{end}}
7
7
>
8
8
<input class="combo-value" name="assignee_ids" type="hidden" value="{{$data.SelectedAssigneeIDs}}">
9
- <div class="ui dropdown text-flex-grow {{if not $pageMeta.CanModifyIssueOrPull}}disabled{{end}}">
10
- <a class="text muted">
9
+ <div class="ui dropdown full-width {{if not $pageMeta.CanModifyIssueOrPull}}disabled{{end}}">
10
+ <a class="fixed- text muted">
11
11
<strong>{{ctx.Locale.Tr "repo.issues.new.assignees"}}</strong> {{if $pageMeta.CanModifyIssueOrPull}}{{svg "octicon-gear"}}{{end}}
12
12
</a>
13
13
<div class="menu">
16
16
<input type="text" placeholder="{{ctx.Locale.Tr "repo.issues.filter_assignees"}}">
17
17
</div>
18
18
<div class="scrolling menu flex-items-block">
19
- <div class="item clear-selection">{{ctx.Locale.Tr "repo.issues.new.clear_assignees"}}</div>
19
+ <div class="item clear-selection" data-text="" >{{ctx.Locale.Tr "repo.issues.new.clear_assignees"}}</div>
20
20
<div class="divider"></div>
21
21
{{range $data.CandidateAssignees}}
22
22
<a class="item" href="#" data-value="{{.ID}}">
Original file line number Diff line number Diff line change 4
4
{{if $pageMeta.Issue}}data-update-url="{{$pageMeta.RepoLink}}/issues/labels?issue_ids={{$pageMeta.Issue.ID}}"{{end}}
5
5
>
6
6
<input class="combo-value" name="label_ids" type="hidden" value="{{$data.SelectedLabelIDs}}">
7
- <div class="ui dropdown text-flex-grow {{if not $pageMeta.CanModifyIssueOrPull}}disabled{{end}}">
8
- <a class="text muted">
7
+ <div class="ui dropdown full-width {{if not $pageMeta.CanModifyIssueOrPull}}disabled{{end}}">
8
+ <a class="fixed- text muted">
9
9
<strong>{{ctx.Locale.Tr "repo.issues.new.labels"}}</strong> {{if $pageMeta.CanModifyIssueOrPull}}{{svg "octicon-gear"}}{{end}}
10
10
</a>
11
11
<div class="menu">
17
17
<input type="text" placeholder="{{ctx.Locale.Tr "repo.issues.filter_labels"}}">
18
18
</div>
19
19
<div class="scrolling menu">
20
- <a class="item clear-selection" href="#">{{ctx.Locale.Tr "repo.issues.new.clear_labels"}}</a>
20
+ <a class="item clear-selection" data-text="" href="#">{{ctx.Locale.Tr "repo.issues.new.clear_labels"}}</a>
21
21
<div class="divider"></div>
22
22
{{$previousExclusiveScope := "_no_scope"}}
23
23
{{range $data.RepoLabels}}
Original file line number Diff line number Diff line change 6
6
{{if $pageMeta.Issue}}data-update-url="{{$pageMeta.RepoLink}}/issues/milestone?issue_ids={{$pageMeta.Issue.ID}}"{{end}}
7
7
>
8
8
<input class="combo-value" name="milestone_id" type="hidden" value="{{$data.SelectedMilestoneID}}">
9
- <div class="ui dropdown text-flex-grow {{if not $pageMeta.CanModifyIssueOrPull}}disabled{{end}}">
10
- <a class="text muted">
9
+ <div class="ui dropdown full-width {{if not $pageMeta.CanModifyIssueOrPull}}disabled{{end}}">
10
+ <a class="fixed- text muted">
11
11
<strong>{{ctx.Locale.Tr "repo.issues.new.milestone"}}</strong> {{if $pageMeta.CanModifyIssueOrPull}}{{svg "octicon-gear"}}{{end}}
12
12
</a>
13
13
<div class="menu">
19
19
<input type="text" placeholder="{{ctx.Locale.Tr "repo.issues.filter_milestones"}}">
20
20
</div>
21
21
<div class="scrolling menu">
22
- <div class="item clear-selection">{{ctx.Locale.Tr "repo.issues.new.clear_milestone"}}</div>
22
+ <div class="item clear-selection" data-text="" >{{ctx.Locale.Tr "repo.issues.new.clear_milestone"}}</div>
23
23
<div class="divider"></div>
24
24
{{if $data.OpenMilestones}}
25
25
<div class="header">{{ctx.Locale.Tr "repo.issues.filter_milestone_open"}}</div>
Original file line number Diff line number Diff line change 6
6
{{if $pageMeta.Issue}}data-update-url="{{$pageMeta.RepoLink}}/issues/projects?issue_ids={{$pageMeta.Issue.ID}}"{{end}}
7
7
>
8
8
<input class="combo-value" name="project_id" type="hidden" value="{{$data.SelectedProjectID}}">
9
- <div class="ui dropdown text-flex-grow {{if not $pageMeta.CanModifyIssueOrPull}}disabled{{end}}">
10
- <a class="text muted">
9
+ <div class="ui dropdown full-width {{if not $pageMeta.CanModifyIssueOrPull}}disabled{{end}}">
10
+ <a class="fixed- text muted">
11
11
<strong>{{ctx.Locale.Tr "repo.issues.new.projects"}}</strong> {{if $pageMeta.CanModifyIssueOrPull}}{{svg "octicon-gear"}}{{end}}
12
12
</a>
13
13
<div class="menu">
18
18
</div>
19
19
{{end}}
20
20
<div class="scrolling menu">
21
- <div class="item clear-selection">{{ctx.Locale.Tr "repo.issues.new.clear_projects"}}</div>
21
+ <div class="item clear-selection" data-text="" >{{ctx.Locale.Tr "repo.issues.new.clear_projects"}}</div>
22
22
<div class="divider"></div>
23
23
{{if $data.OpenProjects}}
24
24
<div class="header">{{ctx.Locale.Tr "repo.issues.new.open_projects"}}</div>
Original file line number Diff line number Diff line change 6
6
{{if $pageMeta.Issue}}data-update-url="{{$pageMeta.RepoLink}}/issues/request_review?issue_ids={{$pageMeta.Issue.ID}}"{{end}}
7
7
>
8
8
<input type="hidden" class="combo-value" name="reviewer_ids">{{/* match CreateIssueForm */}}
9
- <div class="ui dropdown text-flex-grow {{if or (not $hasCandidates) (not $data.CanChooseReviewer)}}disabled{{end}}">
10
- <a class="text muted">
9
+ <div class="ui dropdown full-width {{if or (not $hasCandidates) (not $data.CanChooseReviewer)}}disabled{{end}}">
10
+ <a class="fixed- text muted">
11
11
<strong>{{ctx.Locale.Tr "repo.issues.review.reviewers"}}</strong> {{if $data.CanChooseReviewer}}{{svg "octicon-gear"}}{{end}}
12
12
</a>
13
13
<div class="menu flex-items-menu">
Original file line number Diff line number Diff line change 2
2
{{if and .CanUseTimetracker (not .Repository.IsArchived)}}
3
3
<div class="divider"></div>
4
4
<div>
5
- <div class="ui dropdown text-flex-grow jump">
6
- <a class="text muted">
5
+ <div class="ui dropdown full-width jump">
6
+ <a class="fixed- text muted">
7
7
<div>
8
- <strong>{{ctx.Locale.Tr "repo.issues.tracker"}}</strong> {{if $.IsStopwatchRunning}}{{svg "octicon-stopwatch"}}{{end}}
8
+ <strong>{{ctx.Locale.Tr "repo.issues.tracker"}}</strong>
9
+ {{if $.IsStopwatchRunning}}{{svg "octicon-stopwatch"}}{{end}}
9
10
</div>
10
11
{{svg "octicon-gear"}}
11
12
</a>
Original file line number Diff line number Diff line change 7
7
<h2>{{ctx.Locale.Tr "repo.wiki.welcome"}}</h2>
8
8
<p>{{ctx.Locale.Tr "repo.wiki.welcome_desc"}}</p>
9
9
{{if and .CanWriteWiki (not .Repository.IsMirror)}}
10
- <a class="ui primary button" href="{{.RepoLink}}/wiki?action=_new">{{ctx.Locale.Tr "repo.wiki.create_first_page"}}</a>
10
+ <a class="ui primary button tw-mr-0 " href="{{.RepoLink}}/wiki?action=_new">{{ctx.Locale.Tr "repo.wiki.create_first_page"}}</a>
11
11
{{end}}
12
12
</div>
13
13
</div>
You can’t perform that action at this time.
0 commit comments