diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-03-18 02:37:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 02:37:24 +0300 |
commit | 57e0abae4196d5e89486fa87171e12dd14f78584 (patch) | |
tree | 2180ef5a575f698475f078e4a05b746a09399b0d /files/ru/web/javascript/reference/global_objects/intl | |
parent | 242f0b78b42992e2e1c961fa81172f364d2be6ca (diff) | |
download | translated-content-57e0abae4196d5e89486fa87171e12dd14f78584.tar.gz translated-content-57e0abae4196d5e89486fa87171e12dd14f78584.tar.bz2 translated-content-57e0abae4196d5e89486fa87171e12dd14f78584.zip |
Fix various typos (#203)
* Fix various typos
* Auto fixes
* Apply suggestions from code review
Co-authored-by: Artem Shibakov <shibakow@gmail.com>
* Apply suggestions from code review
Co-authored-by: Artem Shibakov <shibakow@gmail.com>
Co-authored-by: Artem Shibakov <shibakow@gmail.com>
Diffstat (limited to 'files/ru/web/javascript/reference/global_objects/intl')
-rw-r--r-- | files/ru/web/javascript/reference/global_objects/intl/datetimeformat/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ru/web/javascript/reference/global_objects/intl/datetimeformat/index.html b/files/ru/web/javascript/reference/global_objects/intl/datetimeformat/index.html index a9f3287a7c..140c98fdea 100644 --- a/files/ru/web/javascript/reference/global_objects/intl/datetimeformat/index.html +++ b/files/ru/web/javascript/reference/global_objects/intl/datetimeformat/index.html @@ -139,7 +139,7 @@ console.log(new Intl.DateTimeFormat().format(date)); // Форматирование ниже предполагает, что местный часовой пояс равен // America/Los_Angeles для локали США -// В америкаском английском используется порядок месяц-день-год +// В американском английском используется порядок месяц-день-год console.log(new Intl.DateTimeFormat('en-US').format(date)); // → "12/19/2012" @@ -156,7 +156,7 @@ console.log(new Intl.DateTimeFormat('ar-EG').format(date)); // → "<span dir="rtl">٢٠/١٢/٢٠١٢</span>" // В Японии приложения могут захотеть использовать японский календарь, -// в котором 2012 год являеся 24-м годом эры Хейсей +// в котором 2012 год является 24-м годом эры Хейсей console.log(new Intl.DateTimeFormat('ja-JP-u-ca-japanese').format(date)); // → "24/12/20" |