Skip to content

Commit

Permalink
i18n(zh-cn): Run Prettier with --write to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeemil committed Jan 14, 2025
1 parent a651767 commit 595d709
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/content/docs/zh-cn/concept/architecture.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -183,4 +183,4 @@ WRY 是一个跨平台的 WebView 渲染库,用 Rust 编写,支持所有主

Tauri 本身根据 MIT 或 Apache-2.0 许可证授权。如果您重新打包并修改任何源代码,您有责任确保遵守所有上游许可证。Tauri 以“原样”提供,没有明确的适用性声明。

在这里,您可以浏览我们的[软件材料清单](https://app.fossa.com/projects/git%2Bgithub.com%2Ftauri-apps%2Ftauri)
在这里,您可以浏览我们的[软件材料清单](https://app.fossa.com/projects/git%2Bgithub.com%2Ftauri-apps%2Ftauri)
5 changes: 2 additions & 3 deletions src/content/docs/zh-cn/concept/process-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ Core -> "事件与命令 3"{style.animated: true}

与其他类似解决方案不同,WebView 库****包含在你的最终可执行文件中,而是在运行时动态链接[^1]。这使你的应用程序*显著*更小,但也意味着你需要考虑平台差异,就像传统网页开发一样。

[^1]:
目前,Tauri 在 Windows 上使用 [Microsoft Edge WebView2],在 macOS 上使用 [WKWebView],在 Linux 上使用 [webkitgtk]
[^1]: 目前,Tauri 在 Windows 上使用 [Microsoft Edge WebView2],在 macOS 上使用 [WKWebView],在 Linux 上使用 [webkitgtk]

[最小权限原则]: https://zh.wikipedia.org/wiki/%E6%9C%80%E5%B0%8F%E6%9D%83%E9%99%90%E5%8E%9F%E5%88%99
[进程间通信]: /zh-cn/concept/inter-process-communication/
Expand All @@ -78,4 +77,4 @@ Core -> "事件与命令 3"{style.animated: true}
[WKWebView]: https://developer.apple.com/documentation/webkit/wkwebview
[webkitgtk]: https://webkitgtk.org
[Svelte]: https://svelte.dev/
[Vite]: https://vitejs.dev/
[Vite]: https://vitejs.dev/
6 changes: 3 additions & 3 deletions src/content/docs/zh-cn/concept/size.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 应用程序大小
title: 应用程序大小
sidebar:
order: 0
i18nReady: true
Expand Down Expand Up @@ -29,7 +29,7 @@ opt-level = "s" # 优先考虑小的二进制文件大小。如果您更喜欢
panic = "abort" # 通过禁用 panic 处理程序来提高性能。
strip = true # 确保移除调试符号。

````
````
</TabItem>

<TabItem label="Nightly">
Expand Down Expand Up @@ -68,4 +68,4 @@ rustflags = ["-Cdebuginfo=0", "-Zthreads=8"] # 提高编译性能。
- [trim-paths:](https://rust-lang.github.io/rfcs/3127-trim-paths.html) 从二进制文件中移除潜在的特权信息。
- [rustflags:](https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#profile-rustflags-option) 在每个配置文件的基础上设置 Rust 编译器标志。
- `-Cdebuginfo=0`: 是否应在构建中包含调试信息符号。
- `-Zthreads=8`: 增加编译期间使用的线程数。
- `-Zthreads=8`: 增加编译期间使用的线程数。

0 comments on commit 595d709

Please sign in to comment.