From 875813d62a4feeee6077f6d40ef318b813006ee9 Mon Sep 17 00:00:00 2001 From: liangjiancang <42267675+liangjiancang@users.noreply.github.com> Date: Sun, 3 Oct 2021 03:07:01 +0800 Subject: Fix mistranslation in Web/JavaScript/Reference/Global_Objects/globalThis, zh-CN (#2609) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix incorrect translation 1. 避免影响现存代码的兼容应为「向后兼容(Backward Combability)」(原文只有「break compatibility with existing code」,但为了汉语习惯还应说明向后)。 2. 习惯上不使用单独「前/后向兼容」说法,而多见于「向前/后兼容」「前/后向兼容性」「前/后向兼容(形容词)+${名词}」,故「前向兼容」这种说法本身就是不规范的。 * 不再提及令人疑惑的兼容方向 --- .../zh-cn/web/javascript/reference/global_objects/globalthis/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/zh-cn/web/javascript/reference/global_objects') diff --git a/files/zh-cn/web/javascript/reference/global_objects/globalthis/index.html b/files/zh-cn/web/javascript/reference/global_objects/globalthis/index.html index 7260d8cbfa..19d0fc9426 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/globalthis/index.html +++ b/files/zh-cn/web/javascript/reference/global_objects/globalthis/index.html @@ -40,7 +40,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/globalThis
并没有采用一些更常见的命名方式类似 self
和 global
是因为考虑到前向兼容,为了避免影响到现存代码的正常工作。 更多相关信息可以查看 language proposal's "naming" document 。
并没有采用一些更常见的命名方式,如 self
和 global
,这是为了避免影响现存代码的兼容性。更多相关信息可以查看 language proposal's "naming" document 。