From 9638336b5b6b142ce25b8e3899929cec1e9ca7cb Mon Sep 17 00:00:00 2001 From: Crowdin Bot Date: Mon, 12 Aug 2024 01:27:12 +0000 Subject: [PATCH] New Crowdin translations by GitHub Action --- .../en-US/docusaurus-plugin-content-docs/current/faq/index.md | 2 +- .../ja-JP/docusaurus-plugin-content-docs/current/faq/index.md | 2 +- .../current/template/004-development-specification.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/i18n/en-US/docusaurus-plugin-content-docs/current/faq/index.md b/src/i18n/en-US/docusaurus-plugin-content-docs/current/faq/index.md index 67dba3e..19fef95 100644 --- a/src/i18n/en-US/docusaurus-plugin-content-docs/current/faq/index.md +++ b/src/i18n/en-US/docusaurus-plugin-content-docs/current/faq/index.md @@ -67,7 +67,7 @@ A: The dynamic construction ability of Natasha is very powerful. It can be used ### I don't want to compile every time, can I cache the result of the script? -A: No, caching the result needs to be done by you. Natasha follows the lightweight route. `AssemblyCSharpBuilder` is the smallest and most basic compilation unit. If you want to cache, you can implement a `ConcurrentDictionary` to cache the result.Natasha is not responsible for anything other than the compilation responsibility. +A: No, you cannot. Caching the result requires your action. Natasha follows a lightweight approach, where `AssemblyCSharpBuilder` is the smallest and most basic compilation unit. If you want to cache, you can implement your own `ConcurrentDictionary` to cache the result.Natasha is not responsible for anything other than the compilation responsibility. ### I only want to use the using statement, but I don't want to add so many references. diff --git a/src/i18n/ja-JP/docusaurus-plugin-content-docs/current/faq/index.md b/src/i18n/ja-JP/docusaurus-plugin-content-docs/current/faq/index.md index 349946b..5d6294b 100644 --- a/src/i18n/ja-JP/docusaurus-plugin-content-docs/current/faq/index.md +++ b/src/i18n/ja-JP/docusaurus-plugin-content-docs/current/faq/index.md @@ -67,7 +67,7 @@ var simpleFunc = "return Math.Floor(arg1/0.3);" ### スクリプトの結果をキャッシュしたくありません。毎回コンパイルするのは嫌ですか? -答え:できません。結果をキャッシュするには、自分で`ConcurrentDictionary`を実装する必要があります。Natashaは軽量化路線を歩んでおり、`AssemblyCSharpBuilder`が最小限の基本的なコンパイルユニットです。Natasha 不负责编译职责之外的事情。 +答:不可以,缓存結果需要您來完成,Natasha 走的是輕量化路線,`AssemblyCSharpBuilder` 為最小最基礎的編譯單元,如果你想緩存,可以自己實現一個 `ConcurrentDictionary` 來緩存結果。Natasha 不负责编译职责之外的事情。 ### 我只想使用 using 全集,但不想添加那么多的引用。 diff --git a/src/i18n/ja-JP/docusaurus-plugin-content-docs/current/template/004-development-specification.md b/src/i18n/ja-JP/docusaurus-plugin-content-docs/current/template/004-development-specification.md index a2f140b..ccd023a 100644 --- a/src/i18n/ja-JP/docusaurus-plugin-content-docs/current/template/004-development-specification.md +++ b/src/i18n/ja-JP/docusaurus-plugin-content-docs/current/template/004-development-specification.md @@ -43,7 +43,7 @@ Package(Builder) + API + Extension => Operator
-直接使用Natasha内置的Builder可以快速实现定制,例如:`OopBuilder`,`MethodBuilder`泛型方法。 +直接使用Natasha内置的Builder可以快速实现定制,例如:OopBuilder,MethodBuilder泛型方法。 前者为其提供对象构造模板,后者专注构建方法。