From 235c34993c7b14f783fc8259cc237ac09f0d3e57 Mon Sep 17 00:00:00 2001 From: MDN Date: Fri, 9 Jul 2021 00:38:08 +0000 Subject: [CRON] sync translated content --- files/pl/web/api/navigatorplugins/index.html | 111 --------------------- .../api/navigatorplugins/javaenabled/index.html | 40 -------- .../web/api/navigatorplugins/mimetypes/index.html | 41 -------- .../pl/web/api/navigatorplugins/plugins/index.html | 59 ----------- 4 files changed, 251 deletions(-) delete mode 100644 files/pl/web/api/navigatorplugins/index.html delete mode 100644 files/pl/web/api/navigatorplugins/javaenabled/index.html delete mode 100644 files/pl/web/api/navigatorplugins/mimetypes/index.html delete mode 100644 files/pl/web/api/navigatorplugins/plugins/index.html (limited to 'files/pl/web/api/navigatorplugins') diff --git a/files/pl/web/api/navigatorplugins/index.html b/files/pl/web/api/navigatorplugins/index.html deleted file mode 100644 index c009a19a07..0000000000 --- a/files/pl/web/api/navigatorplugins/index.html +++ /dev/null @@ -1,111 +0,0 @@ ---- -title: NavigatorPlugins -slug: Web/API/NavigatorPlugins -tags: - - API - - Experimental - - HTML-DOM - - NeedsTranslation - - TopicStub -translation_of: Web/API/NavigatorPlugins ---- -

{{APIRef("HTML DOM")}}{{SeeCompatTable}}

- -

The NavigatorPlugins interface contains methods and properties related to the plugins installed in the browser.

- -

There is no object of type NavigatorPlugins, but other interfaces, like {{domxref("Navigator")}}, implement it.

- -

Properties

- -
-
{{domxref("NavigatorPlugins.mimeTypes")}} {{readonlyInline}}{{experimental_inline}}
-
Returns an {{domxref("MimeTypeArray")}} listing the MIME types supported by the browser.
-
{{domxref("NavigatorPlugins.plugins")}} {{readonlyInline}}{{experimental_inline}}
-
Returns a {{domxref("PluginArray")}} listing the plugins installed in the browser.
-
- -

Methods

- -

The NavigatorPlugins interface doesn't inherit any method.

- -
-
{{domxref("NavigatorPlugins.javaEnabled")}} {{readonlyInline}}{{experimental_inline}}
-
Returns a {{domxref("Boolean")}} flag indicating whether the host browser is Java-enabled or not.
-
- -

Specifications

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName('HTML WHATWG', '#navigatorplugins', 'NavigatorPlugins')}}{{Spec2('HTML WHATWG')}}Initial definition.
- -

Browser compatibility

- -

{{ CompatibilityTable() }}

- -
- - - - - - - - - - - - - - - - - - - -
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}
-
- -
- - - - - - - - - - - - - - - - - - - - - -
FeatureAndroidChrome for AndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}
-
- -

See also

- - diff --git a/files/pl/web/api/navigatorplugins/javaenabled/index.html b/files/pl/web/api/navigatorplugins/javaenabled/index.html deleted file mode 100644 index b4cae7a1b5..0000000000 --- a/files/pl/web/api/navigatorplugins/javaenabled/index.html +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: NavigatorPlugins.javaEnabled -slug: Web/API/NavigatorPlugins/javaEnabled -tags: - - DOM - - Dokumentacja_Gecko_DOM - - Gecko - - Wszystkie_kategorie -translation_of: Web/API/NavigatorPlugins/javaEnabled -original_slug: Web/API/Navigator/javaEnabled ---- -

{{ ApiRef() }}

- -

Podsumowanie

- -

Ta metoda wskazuje czy w aktualnej przeglądarce została włączona obsługa Javy.

- -

Składnia

- -
result = window.navigator.javaEnabled()
-
- -

Przykład

- -
if (window.navigator.javaEnabled()) {
-   // przeglądarka posiada Javę
-}
-
- -

Uwagi

- -

Zwracana przez tę metodę wartość wskazuje czy Java jest włączona czy też nie - a nie czy przeglądarka w ogóle obsługuje Javę.

- -

Specyfikacja

- -

DOM Level 0. Nie jest częścią specyfikacji.

- -
 
- -

{{ languages( { "en": "en/DOM/window.navigator.javaEnabled", "ja": "ja/DOM/window.navigator.javaEnabled" } ) }}

diff --git a/files/pl/web/api/navigatorplugins/mimetypes/index.html b/files/pl/web/api/navigatorplugins/mimetypes/index.html deleted file mode 100644 index 0ad81a61c5..0000000000 --- a/files/pl/web/api/navigatorplugins/mimetypes/index.html +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: NavigatorPlugins.mimeTypes -slug: Web/API/NavigatorPlugins/mimeTypes -tags: - - DOM - - DOM_0 - - Dokumentacja_Gecko_DOM - - Gecko - - Wszystkie_kategorie -translation_of: Web/API/NavigatorPlugins/mimeTypes -original_slug: Web/API/Navigator/mimeTypes ---- -

{{ ApiRef() }}

- -

Podsumowanie

- -

Zwraca obiekt MimeTypeArray, który zawiera listę obiektów MimeType reprezentujących typy MIME rozpoznawane przez przeglądarkę.

- -

Składnia

- -
mimeTypes = navigator.mimeTypes;
-
- -

mimeTypes jest obiektem MimeTypeArray, który posiada zarówno własność length jak i metody item(index) oraz namedItem(name).

- -

Przykład

- -
  alert(window.navigator.mimeTypes.item(0).description); // wyświetli ostrzeżenie "Mozilla Default Plug-in"
-
- -

Uwagi

- -

Wartością własności type w zerowym elemencie (obiekt MimeType "Mozilla Default Plug-in") jest * zamiast typowego formatu MIME jak np. "image/x-macpaint"

- -

Specyfikacja

- -

{{ DOM0() }}

- -
 
- -

{{ languages( { "en": "en/DOM/window.navigator.mimeTypes", "ja": "ja/DOM/window.navigator.mimeTypes" } ) }}

diff --git a/files/pl/web/api/navigatorplugins/plugins/index.html b/files/pl/web/api/navigatorplugins/plugins/index.html deleted file mode 100644 index bb0a730981..0000000000 --- a/files/pl/web/api/navigatorplugins/plugins/index.html +++ /dev/null @@ -1,59 +0,0 @@ ---- -title: NavigatorPlugins.plugins -slug: Web/API/NavigatorPlugins/plugins -tags: - - DOM - - DOM_0 - - Dokumentacja_Gecko_DOM - - Gecko - - Wszystkie_kategorie -translation_of: Web/API/NavigatorPlugins/plugins -original_slug: Web/API/Navigator/plugins ---- -

{{ ApiRef() }}

- -

Podsumowanie

- -

Zwraca obiekt PluginArray będący listą wszystkich wtyczek zainstalowanych w aplikacji.

- -

Składnia

- -
plugins = navigator.plugins;
-
- -

plugins jest tabelą PluginArray zawierającą obiekty Plugin reprezentujące zainstalowane wtyczki.

- -

Zwrócona wartość nie jest jest tablicą JavaScript, ale posiada własność length i obsługuje dostęp do poszczególnych elementów za pomocą notacji nawiasowej (plugins{{ mediawiki.external(2) }}) jak również poprzez metody item(index ) i namedItem("name" ).

- -

Przykład

- -

Poniższy przykład wyświetla wewnątrz zaawansowanego dokumentu informacje o zainstalowanych wtyczkach. Zauważ własności dostępne w obiekcie Plugin: name, filename i description.

- -
<script type="text/javascript">
-   var L = navigator.plugins.length;
-   document.write(L.toString().bold() + " Plugin(s)".bold());
-   document.write("<br>");
-   document.write("Nazwa wtyczki | Nazwa pliku | Opis".bold());
-   document.write("<br>");
-   for(var i=0; i<L; i++) {
-     document.write(navigator.plugins[i].name);
-     document.write(" | ");
-     document.write(navigator.plugins[i].filename);
-     document.write(" | ");
-     document.write(navigator.plugins[i].description);
-     document.write("<br>");
-   }
-</script>
-
- -

Uwagi

- -

Obiekt Plugin wyświetla skromny interfejs w celu uzyskania informacji o różnych wtyczkach zainstalowanych w przeglądarce. Lista wtyczek jest również dostępna poprzez wprowadzenie about:plugins w pasku adresu.

- -

Specyfikacja

- -

{{ DOM0() }}

- -
 
- -

{{ languages( { "en": "en/DOM/window.navigator.plugins", "ja": "ja/DOM/window.navigator.plugins" } ) }}

-- cgit v1.2.3-54-g00ecf