diff options
author | Ryan Johnson <rjohnson@mozilla.com> | 2021-03-20 18:32:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-20 18:32:06 -0700 |
commit | dd970ebde4659015cacb03f3cec08ba3662f76b7 (patch) | |
tree | 22fce3103c66822def150bdcd5934b143ce775cd /files/pt-br | |
parent | 42fa0779cb86e303db29e3603901b000523173cf (diff) | |
download | translated-content-dd970ebde4659015cacb03f3cec08ba3662f76b7.tar.gz translated-content-dd970ebde4659015cacb03f3cec08ba3662f76b7.tar.bz2 translated-content-dd970ebde4659015cacb03f3cec08ba3662f76b7.zip |
remove fx_minversion_inline macro calls (#258)
Diffstat (limited to 'files/pt-br')
-rw-r--r-- | files/pt-br/tools/3d_view/index.html | 6 | ||||
-rw-r--r-- | files/pt-br/web/api/document/index.html | 2 | ||||
-rw-r--r-- | files/pt-br/web/api/indexeddb_api/basic_concepts_behind_indexeddb/index.html | 2 | ||||
-rw-r--r-- | files/pt-br/web/api/node/index.html | 4 | ||||
-rw-r--r-- | files/pt-br/web/api/window/document/index.html | 2 | ||||
-rw-r--r-- | files/pt-br/web/api/window/index.html | 10 | ||||
-rw-r--r-- | files/pt-br/web/css/@keyframes/index.html | 2 | ||||
-rw-r--r-- | files/pt-br/web/guide/html/html5/index.html | 2 |
8 files changed, 15 insertions, 15 deletions
diff --git a/files/pt-br/tools/3d_view/index.html b/files/pt-br/tools/3d_view/index.html index 8114d26c7a..82040654a6 100644 --- a/files/pt-br/tools/3d_view/index.html +++ b/files/pt-br/tools/3d_view/index.html @@ -68,17 +68,17 @@ translation_of: Tools/3D_View <tr> <td>Foco no nó selecionado</td> <td>f</td> - <td>Garante que o nó selecionado atualmente está visível {{ fx_minversion_inline("13.0") }}</td> + <td>Garante que o nó selecionado atualmente está visível</td> </tr> <tr> <td>Resetar visualização</td> <td>r</td> - <td>Redefine zoom, rotação e panorâmica para o padrão {{ fx_minversion_inline("12.0") }}</td> + <td>Redefine zoom, rotação e panorâmica para o padrão</td> </tr> <tr> <td>Esconde o nó atual</td> <td>x</td> - <td>Faz com que o nó selecionado atualmente fique invisível; Isso pode ser útil se você precisa chegar a um nó que está obscuro {{ fx_minversion_inline("12.0") }}</td> + <td>Faz com que o nó selecionado atualmente fique invisível; Isso pode ser útil se você precisa chegar a um nó que está obscuro</td> </tr> </tbody> </table> diff --git a/files/pt-br/web/api/document/index.html b/files/pt-br/web/api/document/index.html index 1fc11a79ba..b1248d2078 100644 --- a/files/pt-br/web/api/document/index.html +++ b/files/pt-br/web/api/document/index.html @@ -380,7 +380,7 @@ translation_of: Web/API/Document <dd>This method never did anything and always threw an exception, so it was removed in Gecko 14.0 {{geckoRelease("14.0")}}.</dd> <dt>{{domxref("Document.getBoxObjectFor")}} {{obsolete_inline}}</dt> <dd>Use the {{domxref("Element.getBoundingClientRect()")}} method instead.</dd> - <dt>{{domxref("Document.loadOverlay")}} {{Fx_minversion_inline("1.5")}}</dt> + <dt>{{domxref("Document.loadOverlay")}}</dt> <dd>Loads a <a href="/en-US/docs/XUL_Overlays" title="XUL_Overlays">XUL overlay</a> dynamically. This only works in XUL documents.</dd> <dt>{{domxref("document.queryCommandText")}} {{obsolete_inline("14.0")}}</dt> <dd>This method never did anything but throw an exception, and was removed in Gecko 14.0 {{geckoRelease("14.0")}}.</dd> diff --git a/files/pt-br/web/api/indexeddb_api/basic_concepts_behind_indexeddb/index.html b/files/pt-br/web/api/indexeddb_api/basic_concepts_behind_indexeddb/index.html index c83b48750e..1ec04d3838 100644 --- a/files/pt-br/web/api/indexeddb_api/basic_concepts_behind_indexeddb/index.html +++ b/files/pt-br/web/api/indexeddb_api/basic_concepts_behind_indexeddb/index.html @@ -176,7 +176,7 @@ translation_of: Web/API/IndexedDB_API/Basic_Concepts_Behind_IndexedDB <p>When an object or array is stored, the properties and values in that object or array can also be anything that is a valid value.</p> - <p><a href="/en/DOM/Blob" title="en/DOM/Blob">Blobs</a> and files can be stored, cf. <a class="external" href="http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html">specification</a> {{ fx_minversion_inline("11") }}.</p> + <p><a href="/en/DOM/Blob" title="en/DOM/Blob">Blobs</a> and files can be stored, cf. <a class="external" href="http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html">specification</a>.</p> </dd> </dl> diff --git a/files/pt-br/web/api/node/index.html b/files/pt-br/web/api/node/index.html index 8b265cdbd5..0434bb9f34 100644 --- a/files/pt-br/web/api/node/index.html +++ b/files/pt-br/web/api/node/index.html @@ -20,7 +20,7 @@ translation_of: Web/API/Node <dl> <dt>{{domxref("Node.baseURI")}} {{readonlyInline}}</dt> <dd>Retorna uma {{domxref("DOMString")}} representando o URL base do nó. O conceito de URL base muda de uma linguagem para outra; no HTML, ela corresponde ao protocolo, ao nome de domínio e a estrutura de diretório; tudo isso até a última <code>'/'</code>.</dd> - <dt>{{domxref("Node.baseURIObject")}} {{Non-standard_inline()}} {{ Fx_minversion_inline("3") }}</dt> + <dt>{{domxref("Node.baseURIObject")}} {{Non-standard_inline()}}</dt> <dd>Retorna um objeto {{ Interface("nsIURI") }}, representando o URL base do nó. <em>(Indisponível para conteúdo Web)</em></dd> <dt>{{domxref("Node.childNodes")}} {{readonlyInline}}</dt> <dd>Retorna um objeto {{domxref("NodeList")}} "vivo" contendo todos os filhos deste nó. Dizer que um objeto {{domxref("NodeList")}} é vivo significa que se houver alguma mudança em um dos filhos deste nó, o objeto {{domxref("NodeList")}} é automaticamente atualizado com tais mudanças.</dd> @@ -32,7 +32,7 @@ translation_of: Web/API/Node <dd>Retorna um {{domxref("Node")}} representando o próximo elemento na árvore ou <code>null</code>, caso tal nó não exista.</dd> <dt>{{domxref("Node.nodeName")}} {{readonlyInline}}</dt> <dd>Retorna uma {{domxref("DOMString")}} contendo o nome do elemento, do <code>Node</code>. A estrutura do nome irá mudar conforme o tipo do elemento. Veja as diferenças na documentação do método {{domxref("Node.nodeName")}}. </dd> - <dt>{{domxref("Node.nodePrincipal")}} {{Non-standard_inline()}}{{ Fx_minversion_inline("3") }}</dt> + <dt>{{domxref("Node.nodePrincipal")}} {{Non-standard_inline()}}</dt> <dd>Uma interface {{ Interface("nsIPrincipal") }} representando o nó principal.</dd> <dt>{{domxref("Node.nodeType")}}{{readonlyInline}}</dt> <dd>Retorna um <code>unsigned short</code> representando o tipo do nodo. Valores possíveis são:</dd> diff --git a/files/pt-br/web/api/window/document/index.html b/files/pt-br/web/api/window/document/index.html index f7cfc4d860..e5e169968f 100644 --- a/files/pt-br/web/api/window/document/index.html +++ b/files/pt-br/web/api/window/document/index.html @@ -19,7 +19,7 @@ translation_of: Web/API/Window/document <p>Retorna a referência para o documento contido na janela.</p> -<div class="note"><strong>Nota:</strong> {{Fx_minversion_inline(3)}} Firefox 3 altera a segurança para documentos de uma janela de modo que apenas o domínio a partir do qual foi localizado possa acessar o documento. Enquanto isso pode quebrar alguns sites existentes, é um movimento feito por ambos Firefox 3 e Internet Explorer 7, e resulta na melhoria de segurança.</div> +<div class="note"><strong>Nota:</strong>Firefox 3 altera a segurança para documentos de uma janela de modo que apenas o domínio a partir do qual foi localizado possa acessar o documento. Enquanto isso pode quebrar alguns sites existentes, é um movimento feito por ambos Firefox 3 e Internet Explorer 7, e resulta na melhoria de segurança.</div> <h2 id="Syntax" name="Syntax">Sintaxe</h2> diff --git a/files/pt-br/web/api/window/index.html b/files/pt-br/web/api/window/index.html index 45b7ce7759..228e5dd64b 100644 --- a/files/pt-br/web/api/window/index.html +++ b/files/pt-br/web/api/window/index.html @@ -36,7 +36,7 @@ translation_of: Web/API/Window <dd>Obtém/define o texto da barra de status para determinada janela.</dd> <dt>{{domxref("Window.devicePixelRatio")}} {{non-standard_inline}}{{ReadOnlyInline}}</dt> <dd>Returns the ratio between physical pixels and device independent pixels in the current display.</dd> - <dt>{{domxref("Window.dialogArguments")}} {{Fx_minversion_inline(3)}} {{ReadOnlyInline}}</dt> + <dt>{{domxref("Window.dialogArguments")}} {{ReadOnlyInline}}</dt> <dd>Gets the arguments passed to the window (if it's a dialog box) at the time {{domxref("window.showModalDialog()")}} was called. This is an {{Interface("nsIArray")}}.</dd> <dt>{{domxref("Window.directories")}} {{obsolete_inline}}</dt> <dd>Synonym of {{domxref("window.personalbar")}}</dd> @@ -103,7 +103,7 @@ translation_of: Web/API/Window <dd>Returns the personalbar object, whose visibility can be toggled in the window.</dd> <dt>{{domxref("Window.pkcs11")}} {{obsolete_inline(29)}}</dt> <dd>Formerly provided access to install and remove PKCS11 modules.</dd> - <dt>{{domxref("Window.returnValue")}} {{Fx_minversion_inline(3)}}</dt> + <dt>{{domxref("Window.returnValue")}}</dt> <dd>The return value to be returned to the function that called {{domxref("window.showModalDialog()")}} to display the window as a modal dialog.</dd> <dt>{{domxref("Window.screen")}} {{readOnlyInline}}</dt> <dd>Returns a reference to the screen object associated with the window.</dd> @@ -123,7 +123,7 @@ translation_of: Web/API/Window <dd>Returns the number of pixels that the document has already been scrolled vertically.</dd> <dt>{{domxref("Window.self")}} {{ReadOnlyInline}}</dt> <dd>Returns an object reference to the window object itself.</dd> - <dt>{{domxref("Window.sessionStorage")}} {{Fx_minversion_inline("2.0")}}</dt> + <dt>{{domxref("Window.sessionStorage")}}</dt> <dd>A storage object for storing data within a single page session.</dd> <dt>{{domxref("Window.sidebar")}} {{non-standard_inline}}{{ReadOnlyInline}}</dt> <dd>Returns a reference to the window object of the sidebar.</dd> @@ -212,7 +212,7 @@ translation_of: Web/API/Window <dd>Opens a new window.</dd> <dt>{{domxref("Window.openDialog()")}}</dt> <dd>Opens a new dialog window.</dd> - <dt>{{domxref("Window.postMessage()")}} {{Fx_minversion_inline(3)}}</dt> + <dt>{{domxref("Window.postMessage()")}}</dt> <dd>Provides a secure means for one window to send a string of data to another window, which need not be within the same domain as the first, in a secure manner.</dd> <dt>{{domxref("Window.print()")}}</dt> <dd>Opens the Print Dialog to print the current document.</dd> @@ -250,7 +250,7 @@ translation_of: Web/API/Window <dd>{{todo("NeedsContents")}}</dd> <dt>{{domxref("WindowTimers.setTimeout()")}}</dt> <dd>Sets a delay for executing a function.</dd> - <dt>{{domxref("Window.showModalDialog()")}} {{Fx_minversion_inline(3)}}</dt> + <dt>{{domxref("Window.showModalDialog()")}}</dt> <dd>Displays a modal dialog.</dd> <dt>{{domxref("Window.sizeToContent()")}}</dt> <dd>Sizes the window according to its content.</dd> diff --git a/files/pt-br/web/css/@keyframes/index.html b/files/pt-br/web/css/@keyframes/index.html index eba938bac2..a1db61ea1b 100644 --- a/files/pt-br/web/css/@keyframes/index.html +++ b/files/pt-br/web/css/@keyframes/index.html @@ -65,7 +65,7 @@ translation_of: Web/CSS/@keyframes <p>In this example, at the <code>50%</code> keyframe, the value used is <code>top: 10px</code> and all other values at this keyframe are ignored.</p> -<p>{{ non-standard_inline }} {{ fx_minversion_inline("14") }} Cascading keyframes are supported starting in Firefox 14. For the example above, it means that at the <code>50%</code> keyframe, the value <code>left: 20px</code> will be considered. This is not defined in the specification yet, but it is being discussed.</p> +<p>{{ non-standard_inline }} Cascading keyframes are supported starting in Firefox 14. For the example above, it means that at the <code>50%</code> keyframe, the value <code>left: 20px</code> will be considered. This is not defined in the specification yet, but it is being discussed.</p> <h3 id="!important_in_a_keyframe"><code>!important</code> in a keyframe</h3> diff --git a/files/pt-br/web/guide/html/html5/index.html b/files/pt-br/web/guide/html/html5/index.html index 203e4363b9..6369bb37e5 100644 --- a/files/pt-br/web/guide/html/html5/index.html +++ b/files/pt-br/web/guide/html/html5/index.html @@ -244,7 +244,7 @@ original_slug: Web/HTML/HTML5 <h2 id="HTML_parser">HTML parser</h2> -<p>O Gecko é <a href="/en/HTML/HTML5/HTML5_Parser" title="en/HTML/HTML5/HTML5 parser">compatível com HTML5 parser</a>—que transforma os bytes de documento HTML em um DOM—foi ativado por padrão a partir de maio de 2010. (Note que a versão do HTML5 parser que foi incluída no Gecko 1.9.2 / Firefox 3.6 tem bastante erros e não é recomendado para uso real.) {{ fx_minversion_inline(4.0) }}</p> +<p>O Gecko é <a href="/en/HTML/HTML5/HTML5_Parser" title="en/HTML/HTML5/HTML5 parser">compatível com HTML5 parser</a>—que transforma os bytes de documento HTML em um DOM—foi ativado por padrão a partir de maio de 2010. (Note que a versão do HTML5 parser que foi incluída no Gecko 1.9.2 / Firefox 3.6 tem bastante erros e não é recomendado para uso real.)</p> <h2 id="Alterações_adicionais">Alterações adicionais</h2> |