aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/navigatorlanguage/language
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-07-09 00:38:08 +0000
committerMDN <actions@users.noreply.github.com>2021-07-09 00:38:08 +0000
commit235c34993c7b14f783fc8259cc237ac09f0d3e57 (patch)
tree7bee1bfcdc5216423bb76a12842eb60c169b0b04 /files/ko/web/api/navigatorlanguage/language
parent635bcdc09c53e3c497a3ff8eb958ca8eb541c7fd (diff)
downloadtranslated-content-235c34993c7b14f783fc8259cc237ac09f0d3e57.tar.gz
translated-content-235c34993c7b14f783fc8259cc237ac09f0d3e57.tar.bz2
translated-content-235c34993c7b14f783fc8259cc237ac09f0d3e57.zip
[CRON] sync translated content
Diffstat (limited to 'files/ko/web/api/navigatorlanguage/language')
-rw-r--r--files/ko/web/api/navigatorlanguage/language/index.html56
1 files changed, 0 insertions, 56 deletions
diff --git a/files/ko/web/api/navigatorlanguage/language/index.html b/files/ko/web/api/navigatorlanguage/language/index.html
deleted file mode 100644
index 9efbc98b06..0000000000
--- a/files/ko/web/api/navigatorlanguage/language/index.html
+++ /dev/null
@@ -1,56 +0,0 @@
----
-title: NavigatorLanguage.language
-slug: Web/API/NavigatorLanguage/language
-translation_of: Web/API/NavigatorLanguage/language
----
-<div>{{APIRef("HTML DOM")}}</div>
-
-<p> </p>
-
-<p>NavigatorLanguage.language 읽기 전용 속성은 사용자의 기본 언어 (일반적으로 브라우저 UI의 언어)를 나타내는 문자열을 반환합니다.</p>
-
-<h2 id="Syntax">Syntax</h2>
-
-<pre class="syntaxbox">var <em>lang</em> = navigator.language
-</pre>
-
-<h3 id="Value">Value</h3>
-
-<p>A {{domxref("DOMString")}}. <em><code>lang</code></em> stores a string representing the language version as defined in <a class="external" href="http://www.ietf.org/rfc/bcp/bcp47.txt">BCP 47</a>. Examples of valid language codes include "en", "en-US", "fr", "fr-FR", "es-ES", etc.</p>
-
-<p>Note that in Safari on macOS and iOS prior to 10.2, the country code returned is lowercase: "en-us", "fr-fr" etc.</p>
-
-<h2 id="Example">Example</h2>
-
-<pre class="brush: js">if (window.navigator.language != 'en') {
- doLangSelect(window.navigator.language);
-}
-</pre>
-
-<h2 id="Specifications">Specifications</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- <tr>
- <td>{{ SpecName('HTML5.1', '#dom-navigator-language', 'NavigatorLanguage.language') }}</td>
- <td>{{ Spec2('HTML5.1') }}</td>
- <td>Initial definition</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility">Browser compatibility</h2>
-
-<p>{{Compat("api.NavigatorLanguage.language")}}</p>
-
-<h2 id="See_also">See also</h2>
-
-<ul>
- <li>{{domxref("NavigatorLanguage.languages", "navigator.languages")}}</li>
- <li>{{domxref("navigator")}}</li>
-</ul>