-
Notifications
You must be signed in to change notification settings - Fork 714
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
i18n(zh-cn): Add permission configuration related documents #3222
base: v2
Are you sure you want to change the base?
Conversation
- 新增权限配置文档,详细介绍了权限的定义、配置和使用方法 - 文档中包含了多个权限配置示例,帮助开发者更好地理解和应用权限设置- 对权限标识符的命名规则和配置文件结构进行了详细说明
✅ Deploy Preview for tauri-v2 ready!Built without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site configuration. |
```toml title="plugins/fs/permissions/autogenerated/commands/mkdir.toml" | ||
[[permission]] | ||
identifier = "allow-mkdir" | ||
description = "This enables the mkdir command." |
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.
description = "This enables the mkdir command." | |
description = "将允许使用 mkdir 命令" |
|
||
插件标识符在编译时将自动添加 `tauri-plugin-` 前缀,无需手动指定。 | ||
|
||
标识符仅限于ASCII小写字母字符 `[a-z]`,且当前最大长度限制为 `116` 字符(由以下常量决定): |
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.
标识符仅限于ASCII小写字母字符 `[a-z]`,且当前最大长度限制为 `116` 字符(由以下常量决定): | |
标识符仅限于 ASCII 小写字母字符 `[a-z]`,且当前最大长度限制为 `116` 字符(由以下常量决定): |
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.
fix some ignore space between letter and Chinese character
supplement Co-authored-by: xubeiyan <[email protected]>
supplement Co-authored-by: xubeiyan <[email protected]>
supplement Co-authored-by: xubeiyan <[email protected]>
supplement Co-authored-by: xubeiyan <[email protected]>
Description