Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support i18n #19

Merged
merged 5 commits into from
Jun 14, 2024
Merged

feat: support i18n #19

merged 5 commits into from
Jun 14, 2024

Conversation

xrz-cloud
Copy link
Contributor

@xrz-cloud xrz-cloud commented Jun 12, 2024

  • 对国际化提供了支持(en_US及zh_CN)
  • 修改了 用例 函数的逻辑
  • tasks、utils中的文本国际化
  • i18n独立模块
  • bin内置翻译
  • 各模块翻译基本完成

@peanut996
Copy link
Owner

这样的话 就要把locale 文件打到binary 里面才行吧。

@peanut996
Copy link
Owner

// 声明配置资源
//go:embed locale/*.toml
var localeFiles embed.FS


// init 函数中读取对应资源
loadMessageFile := func(file string) {
data, err := localeFiles.ReadFile(file)
if err != nil {
	fmt.Printf("Failed to read embedded file: %v\n", err)
	return
}
if _, err := bundle.ParseMessageFileBytes(data, file); err != nil {
	fmt.Printf("Failed to parse message file: %v\n", err)
}
}
loadMessageFile("locale/i18n.en.toml")
loadMessageFile("locale/i18n.zh.toml")

1. i18n独立模块;
2. bin内置翻译;
3. 各模块翻译基本完成.
@xrz-cloud xrz-cloud marked this pull request as ready for review June 13, 2024 09:33
Copy link
Owner

@peanut996 peanut996 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

函数命名还有格式化问题

btw 现在打包出来的可执行文件大小是多少

locale/embed_i18n.go Outdated Show resolved Hide resolved
locale/embed_i18n.go Outdated Show resolved Hide resolved
locale/embed_i18n.go Outdated Show resolved Hide resolved
task/warping.go Outdated Show resolved Hide resolved
@xrz-cloud
Copy link
Contributor Author

现在有~12MB了

1. 驼峰命名
2. private localeFS
3. 文件名同步包名
locale/task/warping.en.toml Outdated Show resolved Hide resolved
task/ip.go Outdated Show resolved Hide resolved
@peanut996 peanut996 changed the base branch from master to develop June 14, 2024 04:41
@peanut996
Copy link
Owner

我开了一个新分支 develop 这个pr先合并到这个分支上, 搞完再合并回master

@peanut996 peanut996 merged commit 5b98580 into peanut996:develop Jun 14, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants