i18n: Translate all Chinese to English across the codebase

Translate Chinese comments, log/error messages, validator labels and
Swagger annotations to English throughout the source code, generated
Swagger docs, config files and CI workflows.

Make the English README primary: README.md now holds the English docs
and README_EN.md holds the Chinese version, with cross-language links
updated accordingly.

Note: the generated docs/ swagger files were translated in place; run
`go generate ./...` (swag init) to regenerate them from the now-English
annotations when a Go toolchain is available.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-27 12:17:04 +02:00
co-authored by Claude Opus 4.8
parent c5687e1506
commit 16e97c8efa
103 changed files with 3088 additions and 3086 deletions
+8 -8
View File
@@ -34,24 +34,24 @@ func (s *TagService) ListByUserIdAndCollectionId(userId, cid uint) (res *model.T
}
func (s *TagService) UpdateTags(userId uint, tags map[string]uint) {
tx := DB.Begin()
//先查询所有tag
//first query alltag
var allTags []*model.Tag
tx.Where("user_id = ?", userId).Find(&allTags)
for _, t := range allTags {
if _, ok := tags[t.Name]; !ok {
//删除
//delete
tx.Delete(t)
} else {
if tags[t.Name] != t.Color {
//更新
//update
t.Color = tags[t.Name]
tx.Save(t)
}
//移除
//remove
delete(tags, t.Name)
}
}
//新增
//add
for tag, color := range tags {
t := &model.Tag{}
t.Name = tag
@@ -62,7 +62,7 @@ func (s *TagService) UpdateTags(userId uint, tags map[string]uint) {
tx.Commit()
}
// InfoById 根据用户id取用户信息
// InfoById gets the tag info by id
func (s *TagService) InfoById(id uint) *model.Tag {
u := &model.Tag{}
DB.Where("id = ?", id).First(u)
@@ -83,7 +83,7 @@ func (s *TagService) List(page, pageSize uint, where func(tx *gorm.DB)) (res *mo
return
}
// Create 创建
// Create create
func (s *TagService) Create(u *model.Tag) error {
res := DB.Create(u).Error
return res
@@ -92,7 +92,7 @@ func (s *TagService) Delete(u *model.Tag) error {
return DB.Delete(u).Error
}
// Update 更新
// Update update
func (s *TagService) Update(u *model.Tag) error {
return DB.Model(u).Select("*").Omit("created_at").Updates(u).Error
}