File tree Expand file tree Collapse file tree 4 files changed +46
-4
lines changed Expand file tree Collapse file tree 4 files changed +46
-4
lines changed Original file line number Diff line number Diff line change @@ -433,6 +433,45 @@ steps:
433
433
CROWDIN_KEY :
434
434
from_secret : crowdin_key
435
435
436
+ ---
437
+ kind : pipeline
438
+ name : update_gitignore_and_licenses
439
+
440
+ platform :
441
+ os : linux
442
+ arch : amd64
443
+
444
+ workspace :
445
+ base : /go
446
+ path : src/code.gitea.io/gitea
447
+
448
+ trigger :
449
+ branch :
450
+ - master
451
+ event :
452
+ - cron
453
+ cron :
454
+ - update_gitignore_and_licenses
455
+
456
+ steps :
457
+ - name : download
458
+ image : golang:1.15
459
+ commands :
460
+ - timeout -s ABRT 40m make generate-license generate-gitignore
461
+
462
+ - name : push
463
+ pull : always
464
+ image : appleboy/drone-git-push
465
+ settings :
466
+
467
+ author_name : GiteaBot
468
+ commit : true
469
+ commit_message : " [skip ci] Updated licenses and gitignores "
470
+ remote :
" [email protected] :go-gitea/gitea.git"
471
+ environment :
472
+ GIT_PUSH_SSH_KEY :
473
+ from_secret : git_push_ssh_key
474
+
436
475
---
437
476
kind : pipeline
438
477
name : release-latest
Original file line number Diff line number Diff line change @@ -926,7 +926,8 @@ ext_issues = Ext. Issues
926
926
ext_issues.desc = Link to an external issue tracker.
927
927
928
928
projects = Projects
929
- projects.desc = Manage issues and pulls in project boards.
929
+ projects.description = Description (optional)
930
+ projects.description_placeholder = Description
930
931
projects.create = Create Project
931
932
projects.title = Title
932
933
projects.new = New project
Original file line number Diff line number Diff line change 12
12
{{ end }}
13
13
<div class="item context clipboard" data-clipboard-text="{{$referenceUrl}}">{{.ctx.i18n.Tr "repo.issues.context.copy_link"}}</div>
14
14
<div class="item context quote-reply {{if .diff}}quote-reply-diff{{end}}" data-target="{{.item.ID}}">{{.ctx.i18n.Tr "repo.issues.context.quote_reply"}}</div>
15
- <div class="item context reference-issue" data-target="{{.item.ID}}" data-modal="#reference-issue-modal" data-poster="{{.item.Poster.GetDisplayName}}" data-reference="{{$referenceUrl}}">{{.ctx.i18n.Tr "repo.issues.context.reference_issue"}}</div>
15
+ {{if not .ctx.UnitIssuesGlobalDisabled}}
16
+ <div class="item context reference-issue" data-target="{{.item.ID}}" data-modal="#reference-issue-modal" data-poster="{{.item.Poster.GetDisplayName}}" data-reference="{{$referenceUrl}}">{{.ctx.i18n.Tr "repo.issues.context.reference_issue"}}</div>
17
+ {{end}}
16
18
{{if or .ctx.Permission.IsAdmin .IsCommentPoster .ctx.HasIssuesOrPullsWritePermission}}
17
19
<div class="divider"></div>
18
20
<div class="item context edit-content">{{.ctx.i18n.Tr "repo.issues.context.edit"}}</div>
Original file line number Diff line number Diff line change 29
29
<input name="title" placeholder="{{.i18n.Tr "repo.projects.title"}}" value="{{.title}}" autofocus required>
30
30
</div>
31
31
<div class="field">
32
- <label>{{.i18n.Tr "repo.projects.desc "}}</label>
33
- <textarea name="content">{{.content}}</textarea>
32
+ <label>{{.i18n.Tr "repo.projects.description "}}</label>
33
+ <textarea name="content" placeholder="{{.i18n.Tr "repo.projects.description_placeholder"}}" >{{.content}}</textarea>
34
34
</div>
35
35
36
36
{{if not .PageIsEditProjects}}
You can’t perform that action at this time.
0 commit comments