aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/navigator
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 21:46:22 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 21:46:22 -0500
commita065e04d529da1d847b5062a12c46d916408bf32 (patch)
treefe0f8bcec1ff39a3c499a2708222dcf15224ff70 /files/ko/web/api/navigator
parent218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (diff)
downloadtranslated-content-a065e04d529da1d847b5062a12c46d916408bf32.tar.gz
translated-content-a065e04d529da1d847b5062a12c46d916408bf32.tar.bz2
translated-content-a065e04d529da1d847b5062a12c46d916408bf32.zip
update based on https://github.com/mdn/yari/issues/2028
Diffstat (limited to 'files/ko/web/api/navigator')
-rw-r--r--files/ko/web/api/navigator/mozmobilemessage/index.html58
-rw-r--r--files/ko/web/api/navigator/moznotification/index.html63
-rw-r--r--files/ko/web/api/navigator/mozsms/index.html67
3 files changed, 0 insertions, 188 deletions
diff --git a/files/ko/web/api/navigator/mozmobilemessage/index.html b/files/ko/web/api/navigator/mozmobilemessage/index.html
deleted file mode 100644
index 7645d8d833..0000000000
--- a/files/ko/web/api/navigator/mozmobilemessage/index.html
+++ /dev/null
@@ -1,58 +0,0 @@
----
-title: window.navigator.mozMobileMessage
-slug: Web/API/Navigator/mozMobileMessage
-tags:
- - Non-standard
- - Obsolete
-translation_of: Archive/B2G_OS/API/Navigator/mozMobileMessage
----
-<p>{{ ApiRef() }}</p>
-
-<p>{{ non-standard_header() }}</p>
-
-<p>{{ B2GOnlyHeader2('certified') }}</p>
-
-<h2 id="Summary" name="Summary">요약</h2>
-
-<p>{{ domxref("MozMobileMessageManager") }} 객체를 반환한다. 이 객체는 MMS와 SMS 메시지를 보내거나 받는데 사용된다.</p>
-
-<h2 id="명세">명세</h2>
-
-<p> </p>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('Messaging')}}</td>
- <td>{{Spec2('Messaging')}}</td>
- <td>Editor Draft (WIP).</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="설정_이용_가능한_환경">설정 &amp; 이용 가능한 환경</h2>
-
-<div id="compat-mobile"> </div>
-
-<ul>
- <li>WebSMS는 기본적으로 비활성화 되어있습니다. <code>dom.sms.enabled 설정을 true로 지정하여야 활성화됩니다.</code></li>
- <li>WebSMS API를 사용하도록 허가된 호스트명들의 화이트 리스트(콤마로 구분)는 반드시 <code>dom.sms.whitelist 설정에 명시되어야 합니다. 이 문자열은 기본적으로 빈 문자열입니다.</code></li>
- <li>WebSMS는 오직 Firefox OS (B2G) 에 인증된 앱에서만 이용 가능합니다.</li>
- <li>MMS는 Firefox OS 1.1 부터 이용 가능합니다.</li>
-</ul>
-
-<h2 id="참고_자료">참고 자료</h2>
-
-<ul>
- <li><a href="/en-US/docs/API/WebSMS" title="/en-US/docs/API/WebSMS">WebSMS API</a></li>
- <li>{{ domxref("MozMobileMessageManager") }}</li>
- <li>{{ domxref("window.navigator.mozTelephony") }} for controlling telephone calls.</li>
- <li>{{ domxref("window.navigator.mozSms") }} for handling SMS only.</li>
-</ul>
diff --git a/files/ko/web/api/navigator/moznotification/index.html b/files/ko/web/api/navigator/moznotification/index.html
deleted file mode 100644
index 9c593ec4a1..0000000000
--- a/files/ko/web/api/navigator/moznotification/index.html
+++ /dev/null
@@ -1,63 +0,0 @@
----
-title: navigator.mozNotification
-slug: Web/API/Navigator/mozNotification
-translation_of: Archive/API/Navigator/mozNotification
----
-<div class="warning">
-<p style="text-align: center;">The support for this property as been dropped in favor of the standard {{domxref("Notification")}} constructor.</p>
-</div>
-
-<p>Provides support for creating {{ domxref("notification") }} objects, which are used to display desktop notification alerts to the user. Currently, these are only supported on Firefox Mobile and Firefox OS. See <a href="/en/DOM/Displaying_notifications" title="en/DOM/Displaying notifications">Displaying notifications</a> for an example.</p>
-
-<h2 id="Method_overview" name="Method_overview">Method overview</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <td><code>notification <a href="#createNotification()">createNotification</a>(in DOMString title, in DOMString description, in DOMString iconURL {{ optional_inline() }});</code></td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Methods" name="Methods">Methods</h2>
-
-<h3 id="createNotification()" name="createNotification()">createNotification()</h3>
-
-<p>Creates and returns a notification object that can be used to display the specified message with an optional URL.</p>
-
-<pre class="eval">notification createNotification(
- in DOMString title,
- in DOMString description,
- in DOMString iconURL {{ optional_inline() }}
-);
-</pre>
-
-<h6 id="Parameters" name="Parameters">Parameters</h6>
-
-<dl>
- <dt><code>title</code></dt>
- <dd>알림 타이틀.</dd>
- <dt><code>description</code></dt>
- <dd>알림에 표시할 텍스트.</dd>
- <dt><code>iconURL</code> {{ optional_inline() }}</dt>
- <dd>A URL identifying the image to display in the notification.</dd>
-</dl>
-
-<h6 id="Return_value" name="Return_value">Return value</h6>
-
-<p>A new {{ domxref("notification") }} object.</p>
-
-<h2 id="Methods" name="Methods">Permissions</h2>
-
-<p>manifest 파일에 "desktop-notification" permission 을 추가 해야 한다.</p>
-
-<pre class="default prettyprint prettyprinted"><code><span class="str">"permissions"</span><span class="pun">:</span><span class="pln"> </span><span class="pun">{</span><span class="pln">
- </span><span class="str">"desktop-notification"</span><span class="pun">:{}</span><span class="pln">
-</span><span class="pun">}</span></code></pre>
-
-<h2 id="See_also">See also</h2>
-
-<ul>
- <li>{{ domxref("notification") }}</li>
- <li><a href="/en/DOM/Displaying_notifications" title="en/DOM/Displaying notifications">Displaying notifications</a></li>
-</ul>
diff --git a/files/ko/web/api/navigator/mozsms/index.html b/files/ko/web/api/navigator/mozsms/index.html
deleted file mode 100644
index d6c9c16983..0000000000
--- a/files/ko/web/api/navigator/mozsms/index.html
+++ /dev/null
@@ -1,67 +0,0 @@
----
-title: window.navigator.mozSms
-slug: Web/API/Navigator/mozSms
-tags:
- - API
- - Firefox OS
- - Mobile
- - Obsolete
- - Property
- - WebSMS
-translation_of: Archive/B2G_OS/API/Navigator/mozSms
----
-<p>{{APIRef("Mobile Messaging API")}}</p>
-
-<div class="blockIndicator obsolete">
-<p><strong>Obsolete since Gecko 25 (Firefox 25 / Thunderbird 25 / SeaMonkey 2.22)</strong><br>
- This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.</p>
-</div>
-
-<div class="blockIndicator warning">
-<p style="text-align: center;">This API is available on <a href="/en-US/docs/Mozilla/Firefox_OS">Firefox OS</a> for <a href="/en-US/docs/Mozilla/Firefox_OS/Security/Application_security#App_Types">internal applications</a> only.</p>
-</div>
-
-<p><code><a href="/ko/docs/Archive/B2G_OS/API/MozSmsManager">MozSmsManager</a></code> 객체를 반환한다. 이 객체는 SMS 메시지를 보내거나 받는데 사용된다.</p>
-
-<div class="blockIndicator note">
-<p>Note: <strong>Do not use anymore! </strong>This object has been removed in favor of <a href="/en-US/docs/Archive/B2G_OS/API/Navigator/mozMobileMessage" title="Returns a MozMobileMessageManager object you can use to receive and send MMS and SMS messages."><code>Navigator.mozMobileMessage</code></a>.</p>
-</div>
-
-<h2 id="명세">명세</h2>
-
-<p>이 API는 비 표준 스펙의 구현체입니다. 하지만 W3C의 <a href="http://www.w3.org/2012/sysapps/" title="http://www.w3.org/2012/sysapps/">System Application Working Group</a>에서 논의되고 있습니다.</p>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('Messaging')}}</td>
- <td>{{Spec2('Messaging')}}</td>
- <td>Editor Draft (WIP).</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="설정_이용_가능한_환경">설정 &amp; 이용 가능한 환경</h2>
-
-<div id="compat-mobile"> </div>
-
-<ul>
- <li>WebSMS는 기본적으로 비활성화 되어있습니다. <code>dom.sms.enabled</code> 설정을 true로 지정하여야 활성화됩니다.</li>
- <li>WebSMS API를 사용하도록 허가된 호스트명들의 화이트 리스트(콤마로 구분)는 반드시 <code>dom.sms.whitelist 설정에 명시되어야 합니다. 이 문자열은 기본적으로 빈 문자열입니다.</code></li>
- <li>WebSMS는 오직 Firefox OS (B2G) 에 인증된 앱에서만 이용 가능합니다.</li>
-</ul>
-
-<h2 id="참고_자료">참고 자료</h2>
-
-<ul>
- <li><a href="/en-US/docs/API/WebSMS" title="/en/docs/API/WebSMS">WebSMS API</a></li>
- <li>{{ domxref("SmsManager") }}</li>
- <li>{{ domxref("window.navigator.mozTelephony") }} for controlling telephone calls.</li>
-</ul>