- Fork 主仓库的代码
- 翻译完成后自己 Review 两遍
- 然后提交 PR
- 我们严格遵循中文文案排版指北
- 尽量参考 CodeIgniter 3 的翻译:https://github.com/CodeIgniter-Chinese/codeigniter-user-guide
这是必须的。所有参与翻译者都必须进行这一步的操作。
设置您的提交信息的用户名和电子邮件地址。如:
$ git config --global user.name "John Doe"
$ git config --global user.email "[email protected]"
一旦完成,你只需要在您的分支的提交上使用 --signoff。
$ git commit --signoff
或简写
$ git commit -s
这个命令会根据你 git 的配置信息在你的提交中添加签名,例如:
Signed-off-by: John Doe [email protected]
更多的说明参考
http://codeigniter.org.cn/user_guide/contributing/index.html
https://bcit-ci.github.io/CodeIgniter4/contributing/signing.html
- 使用
你
,而不使用您
。 - 使用
如果
,而不使用譬如
、假如
等。 Helper
原则上不翻译,或者翻译成辅助方法
。- PHP 语法相关的英文,比如类名,一律不翻译,例如
Request 类
,不要翻译成请求类
。
(未完待续,欢迎补充)