Skip to content

Commit

Permalink
build(original): update original source ( 223.228 )
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 12, 2022
1 parent fc11b26 commit 9e1b544
Show file tree
Hide file tree
Showing 56 changed files with 10,595 additions and 10,560 deletions.
19,987 changes: 9,994 additions & 9,993 deletions original-plugin-raw/zh.list.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions original-plugin-raw/zh/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<idea-plugin>
<id>com.intellij.zh</id>
<version>223.224</version>
<version>223.228</version>
<idea-version since-build="223" until-build="223.*"/>
<name>Chinese (Simplified) Language Pack / 中文语言包</name>
<vendor>JetBrains</vendor>
<description><![CDATA[The Chinese Language Pack localizes the UI of IntelliJ IDEA, AppCode, CLion, DataGrip, GoLand, PyCharm, PhpStorm, RubyMine, and WebStorm into Chinese.<br>Your feedback is very much appreciated. You can submit it directly from the <a target="_blank" href="https://www.jetbrains.com/help/idea/getting-started.html#report-bug">IDE</a> or via <a target="_blank" href="https://youtrack.jetbrains.com/newIssue?project=IDEA&summary=Issue%20name%20(English%20or%20Chinese)&description=Describe%20your%20problem&c=Subsystem%20Localization.%20Chinese">YouTrack</a> either in English or Chinese.<br><br>中文语言包将为您的 IntelliJ IDEA, AppCode, CLion, DataGrip, GoLand, PyCharm, PhpStorm, RubyMine, 和WebStorm 带来完全中文化的界面。<br>您的反馈至关重要。您可以直接通过 <a target="_blank" href="https://www.jetbrains.com/help/idea/getting-started.html#report-bug">IDE</a> 或者 <a target="_blank" href="https://youtrack.jetbrains.com/newIssue?project=IDEA&summary=Issue%20name%20(English%20or%20Chinese)&description=Describe%20your%20problem&c=Subsystem%20Localization.%20Chinese">YouTrack</a> 以中文或者英文的形式提交您的反馈。]]></description>
<change-notes><![CDATA[最近更新:<br><a target="_blank" href="https://blog.jetbrains.com/zh-hans/idea/2021/07/language-packs-public-release/">2021 年 7 月 21 日</a>(正式发布)<br><a target="_blank" href="https://blog.jetbrains.com/zh-hans/idea/2021/04/use-updated-language-packs-for-intellij-based-ides-with-translation-plugin/">2021 年 4 月 27 日</a>(版本更新)<br><a target="_blank" href="https://blog.jetbrains.com/zh-hans/idea/2021/01/intellij-idea-2/">2021 年 1 月 4 日</a>(版本更新)<br><a target="_blank" href="https://blog.jetbrains.com/zh-hans/idea/2020/10/intellij-idea-chinese-2/">2020年 10月 30日</a>(版本更新)<br><a target="_blank" href="https://blog.jetbrains.com/zh-hans/2020/06/10/intellij-idea-language-pack/">2020 年 6 月 10 日</a>(安装配置及反馈提交指南)<br><a target="_blank" href="https://blog.jetbrains.com/zh-hans/2020/05/11/jetbrains-chinese/">2020 年 5 月 11 日</a>(中文化插件发布)]]></change-notes>
<change-notes><![CDATA[最近更新:<br><a target="_blank" href="https://youtrack.jetbrains.com/articles/IDEA-A-2100661408">发行说明</a>]]></change-notes>
<depends>com.intellij.modules.platform</depends>
<incompatible-with>com.intellij.modules.rider</incompatible-with>
<locale>zh-CN</locale>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
<html>
<body>
报告具有无限递归的方法和函数。
报告除非抛出异常否则无限调用自身的方法。
<p>
此检查报告的方法不能正常返回。
虽然此类行为可能是有意为之,但在许多情况下,可能纯属疏忽。
</p>
<p><b>示例:</b></p>
<pre><code>
int factorial(int n) {
return n * factorial(n - 1);
}
</code></pre>
<pre><code> int baz() {
return baz();
}</code></pre>
<!-- tooltip end -->

</body>
</html>
16 changes: 16 additions & 0 deletions original-plugin-raw/zh/inspectionDescriptions/RedundantCast.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
<html>
<body>
报告不必要的转换表达式。

<p>示例:</p>
<pre><code>
static Object toObject(String s) {
return (Object) s;
}
</code></pre>
<!-- tooltip end -->
<p>
使用下面的复选框可以忽略澄清转换,例如应为 <code>Object</code> 的集合调用中的转换:
<pre><code>
static void removeFromList(List&lt;String&gt; l, Object o) {
l.remove((String)o);
}
</code></pre>

</body>
</html>
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
<html><body>
<p>将命名实参用作当前和后续的实参。</p></body></html>
<html>
<body>
向函数的所选实参添加形参名称。
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
<body>
<code>String</code> 串联的文本复制到系统剪贴板。 这可能很有用,例如,当您将代码中的多行 SQL 查询拆分为需要复制到外部应用程序的串联行时。
</body>
</html>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
<html>
<body>
在当前模板文件的注释中声明隐式 FreeMarker 变量
</body>
</html>
在当前模板文件的注释中声明隐式 Velocity 变量。
Original file line number Diff line number Diff line change
@@ -1,6 +1 @@
<html>
<body>
在外部文件中声明隐式 FreeMarker 变量。
当前模块中的每个 FreeMarker 模板都可以使用此变量。
</body>
</html>
在外部文件中声明隐式 Velocity 变量,以避免源文件与 IntelliJ IDEA 特定的注释混淆。
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
<html>
<body>
在外部文件中声明隐式 FreeMarker 变量,以避免源文件与 IntelliJ IDEA 特定的注释混淆。
</body>
</html>
在外部文件中声明隐式 Velocity 变量。 该变量将在当前模块的每个 Velocity 模板中可用。
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<body>
<p>用等效的 <b>if-then-else</b> 语句替换使用布尔表达式的 <b>return</b> 语句。</p>
将使用 <code>boolean</code> 表达式的声明、<code>return</code> 或赋值语句替换为等效的 <code>if</code> <code>else</code> 语句。
</body>
</html>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<body>
<p>使用通配符语法导入软件包或类的所有内容,并用非限定的引用替换所有出现的内容。</p>
添加所选引用的所有成员的导入,并移除该引用在文件中的显式用法。
</body>
</html>
</html>
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<html>
<body>
<p>使用内部条件倒置的 <code>if</code> 语句替换另一个 <code>if</code> 语句。
此意图对于例如简化使用多个嵌套 <code>if</code> 语句的复杂代码很有用。
</p>
反转 <code>if</code> 条件表达式。
</body>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<body>
<p>如果 <b>if-else</b> 语句的 <b>else</b> 分支仅包含嵌套的 <b>if-else</b> 语句,则合并 <b>else</b></p>
如果此 <code>else</code> 分支仅包含嵌套的 <code>if...else</code> 语句,则合并 <code>if...else</code> 语句的 <code>else</code> 分支。
</body>
</html>
</html>
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<html>
<body>
<p>将布尔比较表达式 <b>a</b> <small>op</small> <b>b</b> 转换为 !( <b>a</b> <small>negop</small> <b>b</b> )。
其中 <small>op</small><small>negop</small> 是互逆的比较运算符,如 == 和 !=。</p>
将布尔比较表达式 <code><b>a</b> op <b>b</b></code> 转换为 <code>!( <b>a</b> negop <b>b</b>)</code>

<p>在这个表达式中,<code>op</code><code>negop</code> 是互逆比较运算符,如 <code>==</code><code>!=</code></p>
</body>
</html>
</html>
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<html>
<body>
<p>从表达式中移除不必要的圆括号。
当禁用<b>不必要的圆括号</b>检查时,此功能可用。</p>
移除不必要的圆括号。
</body>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<body>
<p>拆分 <b> if-else</b> 语句的 <b>else</b> 分支。</p>
拆分 <code> if-else</code> 语句的 <code>else</code> 分支。
</body>
</html>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<body>
<p>将条件中包含合取运算的 <b>if</b> 语句转换为两个包含简化条件的嵌套 <b>if</b> 语句。</p>
将条件中包含合取运算的 if 语句转换为两个包含简化条件的嵌套 if 语句。
</body>
</html>
</html>
4 changes: 3 additions & 1 deletion original-plugin-raw/zh/messages/ApplicationBundle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -896,4 +896,6 @@ completion.option.insert.parentheses=适用时自动插入圆括号
console.enter.substring.dont.fold=输入不想折叠的控制台行的子字符串:
checkbox.mark.modified.tabs=标记已修改
advanced.setting.editor.skip.selecting.line.after.copy.empty.selection=在未选择任何内容的情况下调用“复制”操作后不选择已复制的行
checkbox.show.intention.preview=显示意图操作的预览(如果可用)
checkbox.show.intention.preview=显示意图操作的预览(如果可用)
advanced.setting.ide.similar.usages.clustering.enable=在“查找用法”视图中启用类似用法集群
group.advanced.settings.find.usages=查找用法
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ displayname.scala.compile.server=Scala 编译服务器

### org/jetbrains/plugins/scala/compiler/CompileServerLauncher.scala
cannot.start.scala.compile.server=无法启动 Scala 编译服务器
required.file.not.found.paths=找不到所需的文件\: {0}
required.file.not.found.paths=找不到所需的文件: {0}
can.t.find.default.jdk=找不到默认 jdk
cant.find.jdk=找不到 jdk\: {0}
compile.server.terminated.unexpectedly.0.port.1.pid=编译服务器意外终止<br>(端口\: {0},pid\: {1})
cant.find.jdk=找不到 jdk: {0}
compile.server.terminated.unexpectedly.0.port.1.pid=编译服务器意外终止<br>(端口: {0},pid: {1})

### org/jetbrains/plugins/scala/compiler/CompileServerManager.scala
scala.compile.server.title=Scala 编译服务器
Expand All @@ -23,18 +23,18 @@ wrong.jdk.action.use.jdk=使用 JDK {0}

### org/jetbrains/plugins/scala/compiler/EnsureModulesHaveDifferentProdAndTestOutputsTask.scala
shared.compile.output.paths.in.scala.modules=Scala 模块中的共享编译输出路径
production.and.test.output.paths.are.shared.in=生产和测试输出路径在以下位置共享\: {0}
production.and.test.output.paths.are.shared.in=生产和测试输出路径在以下位置共享: {0}
split.output.paths.automatically=自动拆分输出路径
cancel.compilation=取消编译

### org/jetbrains/plugins/scala/compiler/ScalaCompileServerForm.form
#ScalaCompileServer UI
jvm.options=VM 选项(&O)\:
jvm.maximum.heap.size.mb=最大堆大小(MB)(&H)\:
jdk=JDK(&J)\:
jvm.options=VM 选项(&O):
jvm.maximum.heap.size.mb=最大堆大小(MB)(&H):
jdk=JDK(&J):
minutes=分钟
compile.server.jvm.command.line.parameters=编译服务器 JVM 命令行形参
compile.server.shutdown.if.idle.for=闲置以下时间时停止\:
compile.server.shutdown.if.idle.for=闲置以下时间时停止:
compile.server.use.for.scala=使用编译服务器
compile.server.parallelism=线程
compile.server.parallel.compilation=并行编译独立模块,最多
Expand All @@ -61,7 +61,7 @@ compilation.charts.zoom.in.action.description=编译图表垂直放大
compilation.charts.title=图表

### org/jetbrains/plugins/scala/compiler/highlighting/CompilerEventGeneratingClient.scala
highlighting.compilation.progress=高亮显示\: {0}
highlighting.compilation.progress=高亮显示: {0}

### org/jetbrains/plugins/scala/compiler/highlighting/CompilerHighlightingService.scala
highlighting.compilation=错误/警告高亮显示
Expand All @@ -73,19 +73,19 @@ scala.project.settings.form.compiler.highlighting.tooltip=不使用内置的高

### org/jetbrains/plugins/scala/compiler/package.scala
wrong.jdk.action.open.compile.server.settings=打开编译服务器设置
unexpected.sdk.type.for.sdk=意外 sdk 类型\: sdk {1} 的 ''{0}''
unexpected.sdk.type.for.sdk=意外 sdk 类型: sdk {1} 的 ''{0}''

### org/jetbrains/plugins/scala/compiler/references/ScalaCompilerReferenceService.scala
open.compiler.index.reader=打开编译器索引读取器
index.invalidation.callback=索引作废回调

### org/jetbrains/plugins/scala/compiler/references/compilation/JpsCompilationWatcher.scala
malformed.message.from.builder=构建器中的 messageText 格式错误\: {0}
malformed.message.from.builder=构建器中的 messageText 格式错误: {0}

### org/jetbrains/plugins/scala/compiler/references/compilation/SbtCompilationWatcher.scala
failed.to.parse.offline.compilation.analysis.files=无法解析脱机编译分析文件。
sbt.module.added=sbt 模块已添加。
sbt.connection.failure=sbt 编译管理工具\: 连接失败。
sbt.connection.failure=sbt 编译管理工具: 连接失败。
failed.to.parse.compilation.info.file=无法解析编译信息文件 {0}
error.while.reading.sbt.compilation.info=尝试读取 sbt 编译信息文件时出错。

Expand All @@ -105,7 +105,7 @@ bytecode.indices.in.progress=正在编制索引
### org/jetbrains/plugins/scala/compiler/references/search/CompilerIndicesSearcher.scala
bytecode.indices.find.usages=查找用法
bytecode.indices.invalidated.title=失效的用法
bytecode.indices.invalidated.message=由于进行了外部更改,以下文件中的某些用法可能已失效\: {0}。
bytecode.indices.invalidated.message=由于进行了外部更改,以下文件中的某些用法可能已失效: {0}。

### org/jetbrains/plugins/scala/compiler/references/search/ImplicitUsagesSearchDialogs.scala
bytecode.indices.find.usages.with.title=查找用法({0})
Expand Down Expand Up @@ -136,13 +136,13 @@ scala.compiler.indices.sbt.manual=手动(&M)
#Bytecode indices settings
apply.unapply.methods=apply / unapply 方法
for.comprehension.methods=For-comprehension 方法(map、withFilter、flatMap、foreach)
add.line.to.build.sbt=向 build.sbt 中添加以下行\:
add.line.to.plugins.sbt=向 project/plugins.sbt 中添加以下行\:
add.line.to.build.sbt=向 build.sbt 中添加以下行:
add.line.to.plugins.sbt=向 project/plugins.sbt 中添加以下行:
implicit.definitions=隐式定义
port.number=端口号\:
port.number=端口号:
sam.types=SAM 类型
sbt.compilation.listener=sbt 编译侦听器配置(应用程序级)
use.indices.to.search=使用索引搜索此对象的用法\:
use.indices.to.search=使用索引搜索此对象的用法:

### org/jetbrains/plugins/scala/compiler/references/settings/CompilerIndicesSettingsForm.java
are.you.sure.you.want.to.delete.the.bytecode.indices=确定要删除字节码索引吗?
Expand Down
5 changes: 3 additions & 2 deletions original-plugin-raw/zh/messages/DatabaseBundle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ action.DatabaseView.Diagnostics.DiagnosticRefresh.text=诊断刷新(_R)
action.DatabaseView.Diagnostics.DiagnosticRefresh.description=刷新诊断信息收集(_R)
action.DatabaseView.Diagnostics.PrepareIntrospectionDiagnostic.text=准备内省器诊断(_P)
action.DatabaseView.Diagnostics.PrepareIntrospectionDiagnostic.description=准备内省诊断信息(_P)
action.DatabaseView.Diagnostics.JdbcLog.text=JDBC 日志设置(_J)
action.DatabaseView.Diagnostics.JdbcLog.text=_Show JDBC Log Settings…
action.DatabaseView.Diagnostics.JdbcLog.description=设置 JDBC 记录(_S)
action.DatabaseView.Tools.PrepareIntrospectionDiagnostic.single=应为单个数据源中的元素
action.DatabaseView.Tools.PrepareIntrospectionDiagnostic.database=应为数据库数据源
Expand Down Expand Up @@ -2804,4 +2804,5 @@ wrapper.query-sources=查询源
property.Query.title=查询
action.DatabaseView.EditExternalDataAction.text=编辑外部对象文件
action.DatabaseView.EditExternalDataAction.description=编辑包含外部对象的文件
notification.content.forced.local.port.already.occupied.by.ssh.tunnel.to.expected=Forced local port `{0}` is already occupied by SSH tunnel to `{1}` (expected`{2}`)
notification.content.forced.local.port.already.occupied.by.ssh.tunnel.to.expected=Forced local port `{0}` is already occupied by SSH tunnel to `{1}` (expected`{2}`)
action.open.folder.text=Open Folder
Loading

0 comments on commit 9e1b544

Please sign in to comment.