-
Notifications
You must be signed in to change notification settings - Fork 93
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
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Contributor
xrz-cloud
commented
Jun 12, 2024
•
edited
Loading
edited
- 对国际化提供了支持(en_US及zh_CN)
- 修改了 用例 函数的逻辑
- tasks、utils中的文本国际化
- i18n独立模块
- bin内置翻译
- 各模块翻译基本完成
这样的话 就要把locale 文件打到binary 里面才行吧。 |
// 声明配置资源
//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. 各模块翻译基本完成.
peanut996
requested changes
Jun 13, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
函数命名还有格式化问题
btw 现在打包出来的可执行文件大小是多少
现在有~12MB了 |
peanut996
requested changes
Jun 13, 2024
我开了一个新分支 develop 这个pr先合并到这个分支上, 搞完再合并回master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.