Skip to content

Commit

Permalink
build(original): update original source ( 223.224 )
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 5, 2022
1 parent efd185b commit 565673b
Show file tree
Hide file tree
Showing 54 changed files with 10,675 additions and 10,641 deletions.
20,182 changes: 10,093 additions & 10,089 deletions original-plugin-raw/zh.list.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion original-plugin-raw/zh/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<idea-plugin>
<id>com.intellij.zh</id>
<version>223.218</version>
<version>223.224</version>
<idea-version since-build="223" until-build="223.*"/>
<name>Chinese (Simplified) Language Pack / 中文语言包</name>
<vendor>JetBrains</vendor>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
<html>
<body>
报告除非抛出异常否则无限调用自身的方法。
<p>
此检查报告的方法不能正常返回。
虽然此类行为可能是有意为之,但在许多情况下,可能纯属疏忽。
</p>
报告具有无限递归的方法和函数。
<p><b>示例:</b></p>
<pre><code> int baz() {
return baz();
}</code></pre>
<!-- tooltip end -->

<pre><code>
int factorial(int n) {
return n * factorial(n - 1);
}
</code></pre>
</body>
</html>
16 changes: 0 additions & 16 deletions original-plugin-raw/zh/inspectionDescriptions/RedundantCast.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,5 @@
<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,5 +1,5 @@
<html>
<body>
将一条或多条行尾注释转换为块注释
将一个或多个行尾注释替换为等效的 C 样式块注释
</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,7 +1,21 @@
<html>
<body>
遵循德摩根定律将把合取或析取运算替换为取反的对应运算。
<p>如果布尔运算在 <code>if</code><code>unless</code> 语句内部,则可以翻转语句修饰符
以简化最终结果。</p>
在布尔表达式中时,将
<table>
<tr>
<td> &nbsp;&nbsp;&nbsp;</td>
<td>
<code>a || b</code> 替换为 <code>!(!a && !b)</code>
</td>
</tr>
<tr>
<td> &nbsp;&nbsp;&nbsp;</td>
<td>
<code>a && b</code> 替换为 <code>!(!a || !b)</code>
</td>
</tr>
</table>

</body>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<body>
将使用 <code>boolean</code> 表达式的 <code>return</code> 或赋值语句替换为等效的 <code>if</code> <code>else</code> 语句。
<p>用等效的 <b>if-then-else</b> 语句替换使用布尔表达式的 <b>return</b> 语句。</p>
</body>
</html>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<body>
翻转比较表达式中的符号
交换比较表达式的操作数
</body>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<body>
翻转条件运算符的分支
交换条件表达式的分支
</body>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<body>
如果 <code>else</code> 仅包含嵌套的 if-else 语句,则合并 if-else 语句的 <code>else</code> 分支。
<p>如果 <b>if-else</b> 语句的 <b>else</b> 分支仅包含嵌套的 <b>if-else</b> 语句,则合并 <b>else</b></p>
</body>
</html>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<body>
将另一个 if-else 的 then 分支中的 if-else 语句合并到一个 if-else 中
如果第二个语句位于第一个语句的 then 分支内,则将两个 <code>if</code> 语句合并为一个
</body>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<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>
</body>
</html>
</html>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<html>
<body>
移除实现 <code>Parcelable</code> 的方法和 <code>CREATOR</code> 对象。
<p><code>警告</code>:您的自定义代码将被移除。</p>
此意图会移除实现 Parcelable 的方法。<br/>
<b>警告</b>:您的自定义代码将被移除。
</body>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<body>
将 else-if 分支拆分为等效的嵌套 if 语句。
<p>拆分 <b> if-else</b> 语句的 <b>else</b> 分支。</p>
</body>
</html>
</html>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<body>
将条件中包含合取运算的 if 语句转换为两个包含简化条件的嵌套 if 语句。
<p>将条件中包含合取运算的 <b>if</b> 语句转换为两个包含简化条件的嵌套 <b>if</b> 语句。</p>
</body>
</html>
</html>
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
3 changes: 2 additions & 1 deletion original-plugin-raw/zh/messages/DatabaseBundle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2803,4 +2803,5 @@ wrapper.query-source=查询源
wrapper.query-sources=查询源
property.Query.title=查询
action.DatabaseView.EditExternalDataAction.text=编辑外部对象文件
action.DatabaseView.EditExternalDataAction.description=编辑包含外部对象的文件
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}`)
32 changes: 16 additions & 16 deletions original-plugin-raw/zh/messages/DebuggerBundle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ evaluation.of.match.statement.needs.compilation=评估 match 语句需要编译
evaluation.of.throw.statement.needs.compilation=评估 throw 语句需要编译
evaluation.of.xml.expression.needs.compilation=评估 xml 表达式需要编译
evaluation.of.interpolated.string.needs.compilation=评估插值字符串需要编译
cannot.find.by.name.parameter.with.such.name=找不到具有此名称的传名参数: {0}
evaluation.of.expression.is.not.supported=不支持表达式评估: {0}
evaluation.of.element.is.not.supported=不支持元素评估: {0}
cannot.find.by.name.parameter.with.such.name=找不到具有此名称的传名参数\: {0}
evaluation.of.expression.is.not.supported=不支持表达式评估\: {0}
evaluation.of.element.is.not.supported=不支持元素评估\: {0}

### org/jetbrains/plugins/scala/debugger/evaluation/ScalaEvaluatorBuilderUtil.scala
cannot.evaluate.imported.reference=无法评估导入的引用
Expand All @@ -38,13 +38,13 @@ cannot.evaluate.method=无法评估方法 {0}
cannot.evaluate.local.object=无法评估局部对象 {0}
cannot.evaluate.local.variable=无法评估局部变量 {0}
wrong.number.of.arguments=方法 {0} 的实参数量错误
array.instance.is.not.found=无法评估方法 {0}: 找不到数组实例
array.instance.is.not.found=无法评估方法 {0}\: 找不到数组实例
array.method.not.supported=不支持数组方法
cannot.find.implicit.parameters=找不到要传递的隐式形参
implicit.parameters.from.dependent.objects=依赖对象中的隐式形参不受支持
implicit.conversions.from.dependent.objects=依赖对象中的隐式转换不受支持
method.with.by-name.parameters=无评估法包含传名形参的方法
wrong.number.of.expressions=无法评估实参: 匹配的表达式的数量错误
wrong.number.of.expressions=无法评估实参\: 匹配的表达式的数量错误
tupling.not.supported=不支持元组化。请使用元组表达式。
not.used.from.for.statement=无法评估 for 语句中的变量 {0},因为它没有在主体中使用
cannot.find.pattern=找不到 case 子句的模式
Expand All @@ -55,7 +55,7 @@ unapply.without.arguments=无法从没有实参的 unapply 提取值
pattern.doesnot.resolves.to.unapply=模式引用 {0} 不会解析为 unapply 或 unapplySeq
pattern.alternatives.cannot.bind.vars=模式替代项不能绑定变量
xml.patterns.not.supported=不支持 xml 模式
kind.of.pattern.not.supported=不支持此类模式: {0}
kind.of.pattern.not.supported=不支持此类模式\: {0}
anon.classes.not.supported=不支持匿名类
new.expression.without.class.reference=无法评估没有类引用的新表达式
new.expression.without.constructor.call=无法评估没有构造函数调用的表达式
Expand All @@ -67,28 +67,28 @@ while.statement.without.condition=无法评估没有条件的 while 语句
while.statement.without.body=无法评估没有主体的 while 语句
do.statement.without.condition=无法评估没有条件的 do 语句
do.statement.without.body=无法评估没有主体的 do 语句
method.call.implicitly.converted.qualifier=无法评估包含隐式转换限定符的方法调用: {0}
method.call.implicitly.converted.qualifier=无法评估包含隐式转换限定符的方法调用\: {0}
synchronized.statement.is.not.supported=不支持同步语句
cannot.evaluate.synthetic.method=无法评估合成方法: {0}
cannot.evaluate.synthetic.method=无法评估合成方法\: {0}
by.name.parameter.expected=应为传名参数
update.method.is.not.supported=不支持更新方法
variable.definition.needs.right.hand.side=变量定义需要在右侧: {0}
value.definition.needs.right.hand.side=值定义需要在右侧: {0}
variable.definition.needs.right.hand.side=变量定义需要在右侧\: {0}
value.definition.needs.right.hand.side=值定义需要在右侧\: {0}
new.synthetic.instantiation={0} ''{1}'' 为 abstract;无法实例化
missing.type.argument.synthetic.method=在没有显式类型实参的情况下调用了 {0}
constructor.param.inaccessible.outside.of.constructor=在类构造函数外部无法访问构造函数形参 ''{0}''
array.constructor.unspecified.parameters=未指定的值形参: _length: Int
array.constructor.unspecified.parameters=未指定的值形参\: _length\: Int
array.constructor.too.many.arguments=构造函数数组(Int)的实参过多

### org/jetbrains/plugins/scala/debugger/evaluation/ScalaEvaluatorCompileHelper.scala
could.not.compile=无法编译:\n{0}
could.not.compile=无法编译\:\n{0}
compilation.failed=编译失败

### org/jetbrains/plugins/scala/debugger/evaluation/evaluator/AsInstanceOfEvaluator.scala
error.cannot.cast.value.to.type=无法将类型 ''{0}'' 的值转换为类型 ''{1}''

### org/jetbrains/plugins/scala/debugger/evaluation/evaluator/ClassOfEvaluator.scala
error.literal.type.is.not.class.type=文字类型 ({0} : {1}) 不是类类型
error.literal.type.is.not.class.type=文字类型 ({0} \: {1}) 不是类类型

### org/jetbrains/plugins/scala/debugger/evaluation/evaluator/IsInstanceOfEvaluator.scala
error.type.cannot.be.used.in.isinstanceof={0} {1} 不能在运行时类型测试中使用
Expand All @@ -103,9 +103,9 @@ cannot.perform.boxing.conversion.for.result=无法为 {0} 执行装箱转换

### org/jetbrains/plugins/scala/debugger/evaluation/evaluator/ScalaCompilingEvaluator.scala
could.not.compile.generated.class=无法编译生成的类
error.during.generated.code.invocation=生成代码调用时出错:\n {0}
error.creating.evaluation.class.loader=创建评估类加载器时出错:\n {0}
error.during.classes.definition=类定义时出错:\n {0}
error.during.generated.code.invocation=生成代码调用时出错\:\n {0}
error.creating.evaluation.class.loader=创建评估类加载器时出错\:\n {0}
error.during.classes.definition=类定义时出错\:\n {0}

### org/jetbrains/plugins/scala/debugger/evaluation/evaluator/ScalaLiteralEvaluator.scala
unknown.type.of.literal=未知的文字类型
Expand Down
6 changes: 3 additions & 3 deletions original-plugin-raw/zh/messages/EduAndroidBundle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ loading=正在加载…

android.sdk.location=Android SDK 位置

package.colon=软件包:
min.sdk.colon=最小 SDK:
package.colon=软件包\:
min.sdk.colon=最小 SDK\:

# Errors
error.no.sdk=指定 Android SDK 位置。点击<a href="">此处</a>了解如何配置 Android SDK
error.no.sdk=指定 Android SDK 位置。点击<a href\="">此处</a>了解如何配置 Android SDK
error.no.package=空软件包

error.no.emulator.title=找不到 Android 模拟器
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
task.description.completion.course.schema.description=链接到课程项: 课目、任务等
task.description.completion.psi.schema.description=链接到代码元素: 类、方法等
task.description.completion.course.schema.description=链接到课程项\: 课目、任务等
task.description.completion.psi.schema.description=链接到代码元素\: 类、方法等
Loading

0 comments on commit 565673b

Please sign in to comment.