Skip to content

Commit 2a14c0e

Browse files
authored
remove 'notranslate' (1) (#2497)
1 parent e49e8c7 commit 2a14c0e

1,001 files changed

Lines changed: 4797 additions & 4797 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

files/en-us/web/css/--_star_/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<h2 id="Syntax">Syntax</h2>
1919

20-
<pre class="brush: css notranslate">--somekeyword: left;
20+
<pre class="brush: css">--somekeyword: left;
2121
--somecolor: #0000ff;
2222
--somecomplexvalue: 3px 6px rgb(20, 32, 54);
2323
</pre>
@@ -33,21 +33,21 @@ <h2 id="Syntax">Syntax</h2>
3333

3434
<h3 id="Formal_syntax">Formal syntax</h3>
3535

36-
<pre class="brush: css notranslate">{{CSSSyntax}}</pre>
36+
<pre class="brush: css">{{CSSSyntax}}</pre>
3737

3838
<h2 id="Example">Example</h2>
3939

4040
<h3 id="HTML">HTML</h3>
4141

42-
<pre class="brush: html notranslate">&lt;p id="firstParagraph"&gt;This paragraph should have a blue background and yellow text.&lt;/p&gt;
42+
<pre class="brush: html">&lt;p id="firstParagraph"&gt;This paragraph should have a blue background and yellow text.&lt;/p&gt;
4343
&lt;p id="secondParagraph"&gt;This paragraph should have a yellow background and blue text.&lt;/p&gt;
4444
&lt;div id="container"&gt;
4545
&lt;p id="thirdParagraph"&gt;This paragraph should have a green background and yellow text.&lt;/p&gt;
4646
&lt;/div&gt;</pre>
4747

4848
<h3 id="CSS">CSS</h3>
4949

50-
<pre class="brush: css notranslate">:root {
50+
<pre class="brush: css">:root {
5151
--first-color: #16f;
5252
--second-color: #ff7;
5353
}

files/en-us/web/css/-moz-context-properties/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<h2 id="Syntax">Syntax</h2>
2222

23-
<pre class="brush:css notranslate">/* Keyword values */
23+
<pre class="brush:css">/* Keyword values */
2424
-moz-context-properties: fill;
2525
-moz-context-properties: fill, stroke;
2626

@@ -49,7 +49,7 @@ <h2 id="Formal_definition">Formal definition</h2>
4949

5050
<h2 id="Formal_syntax">Formal syntax</h2>
5151

52-
<pre class="brush: css notranslate">{{csssyntax}}</pre>
52+
<pre class="brush: css">{{csssyntax}}</pre>
5353

5454
<h2 id="Examples">Examples</h2>
5555

@@ -59,7 +59,7 @@ <h3 id="Exposing_fill_and_stroke_to_an_SVG_image">Exposing fill and stroke to an
5959

6060
<p>You first need to specify on the embedding element the properties whose values you wish to expose to the embedded SVG, using the <code>-moz-context-properties</code> property. For example:</p>
6161

62-
<pre class="brush: css notranslate">.img1 {
62+
<pre class="brush: css">.img1 {
6363
width: 100px;
6464
height: 100px;
6565
-moz-context-properties: fill, stroke;
@@ -69,7 +69,7 @@ <h3 id="Exposing_fill_and_stroke_to_an_SVG_image">Exposing fill and stroke to an
6969

7070
<p>Now that you've done this, the SVG image can use the values of the {{cssxref("fill")}} and {{cssxref("stroke")}} properties, for example:</p>
7171

72-
<pre class="brush: html notranslate">&lt;img class="img1" src="data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;
72+
<pre class="brush: html">&lt;img class="img1" src="data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;
7373
&lt;rect width='100%' height='100%' stroke-width='30px'
7474
fill='context-fill red' stroke='context-stroke' fill-opacity='0.5'/&gt;&lt;/svg&gt;"&gt;</pre>
7575

files/en-us/web/css/-moz-float-edge/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<p>The non-standard <strong><code>-moz-float-edge</code></strong> <a href="/en-US/docs/Web/CSS">CSS</a> property specifies whether the height and width properties of the element include the margin, border, or padding thickness.</p>
1616

17-
<pre class="brush:css no-line-numbers notranslate">/* Keyword values */
17+
<pre class="brush:css no-line-numbers">/* Keyword values */
1818
-moz-float-edge: border-box;
1919
-moz-float-edge: content-box;
2020
-moz-float-edge: margin-box;
@@ -47,19 +47,19 @@ <h2 id="Formal_definition">Formal definition</h2>
4747

4848
<h2 id="Formal_syntax">Formal syntax</h2>
4949

50-
<pre class="brush: css notranslate">{{csssyntax}}</pre>
50+
<pre class="brush: css">{{csssyntax}}</pre>
5151

5252
<h2 id="Examples">Examples</h2>
5353

5454
<h3 id="HTML">HTML</h3>
5555

56-
<pre class="brush: html notranslate">&lt;div class="box"&gt;
56+
<pre class="brush: html">&lt;div class="box"&gt;
5757
&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit.&lt;/p&gt;
5858
&lt;/div&gt;</pre>
5959

6060
<h3 id="CSS">CSS</h3>
6161

62-
<pre class="brush: css notranslate">.box {
62+
<pre class="brush: css">.box {
6363
display: <span class="highVAL">block</span>;
6464
height: 5px;
6565
margin: 0.5em auto 0.5em auto;

files/en-us/web/css/-moz-force-broken-image-icon/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ <h2 id="Formal_definition">Formal definition</h2>
2929

3030
<h2 id="Formal_syntax">Formal syntax</h2>
3131

32-
<pre class="brush: css notranslate">{{csssyntax}}</pre>
32+
<pre class="brush: css">{{csssyntax}}</pre>
3333

3434
<h2 id="Examples">Examples</h2>
3535

3636
<h3 id="HTML">HTML</h3>
3737

38-
<pre class="brush:html; notranslate">&lt;img src='/broken/image/link.png' alt='Broken image link'&gt;</pre>
38+
<pre class="brush:html;">&lt;img src='/broken/image/link.png' alt='Broken image link'&gt;</pre>
3939

4040
<h3 id="CSS">CSS</h3>
4141

42-
<pre class="brush:css; notranslate">img {
42+
<pre class="brush:css;">img {
4343
-moz-force-broken-image-icon: 1;
4444
height: 100px;
4545
width: 100px;

files/en-us/web/css/-moz-image-rect/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<h2 id="Syntax">Syntax</h2>
1818

19-
<pre class="brush: css notranslate">-moz-image-rect({{CSSxRef("&lt;uri&gt;")}}, <em>top</em>, <em>right</em>, <em>bottom</em>, <em>left</em>);</pre>
19+
<pre class="brush: css">-moz-image-rect({{CSSxRef("&lt;uri&gt;")}}, <em>top</em>, <em>right</em>, <em>bottom</em>, <em>left</em>);</pre>
2020

2121
<h3 id="Values">Values</h3>
2222

@@ -51,7 +51,7 @@ <h3 id="CSS">CSS</h3>
5151

5252
<p>The container looks like this:</p>
5353

54-
<pre class="brush: css notranslate">#container {
54+
<pre class="brush: css">#container {
5555
width:267px;
5656
height:272px;
5757
top:100px;
@@ -64,7 +64,7 @@ <h3 id="CSS">CSS</h3>
6464

6565
<p>Then the four boxes defining the segments of the image are defined. Let's look at them one at a time.</p>
6666

67-
<pre class="brush: css notranslate">#box1 {
67+
<pre class="brush: css">#box1 {
6868
background-image: -moz-image-rect(url(https://mdn.mozillademos.org/files/12053/firefox.png), 0%, 50%, 50%, 0%);
6969
width:133px;
7070
height:136px;
@@ -74,7 +74,7 @@ <h3 id="CSS">CSS</h3>
7474

7575
<p>This is the top-left corner of the image. It defines a rectangle containing the top-left quarter of the image in the file <code>firefox.jpg</code>.</p>
7676

77-
<pre class="brush: css notranslate">#box2 {
77+
<pre class="brush: css">#box2 {
7878
background-image: -moz-image-rect(url(https://mdn.mozillademos.org/files/12053/firefox.png), 0%, 100%, 50%, 50%);
7979
width:133px;
8080
height:136px;
@@ -86,7 +86,7 @@ <h3 id="CSS">CSS</h3>
8686

8787
<p>The other corners follow a similar pattern:</p>
8888

89-
<pre class="brush: css notranslate">#box3 {
89+
<pre class="brush: css">#box3 {
9090
background-image: -moz-image-rect(url(https://mdn.mozillademos.org/files/12053/firefox.png), 50%, 50%, 100%, 0%);
9191
width:133px;
9292
height:136px;
@@ -104,7 +104,7 @@ <h3 id="HTML">HTML</h3>
104104

105105
<p>The HTML is quite simple:</p>
106106

107-
<pre class="brush: html notranslate">&lt;div id="container" onclick="rotate()"&gt;
107+
<pre class="brush: html">&lt;div id="container" onclick="rotate()"&gt;
108108
&lt;div id="box1" style="left:0px;top:0px;"&gt;Top left&lt;/div&gt;
109109
&lt;div id="box2" style="left:133px;top:0px;"&gt;Top right&lt;/div&gt;
110110
&lt;div id="box3" style="left:0px;top:136px;"&gt;Bottom left&lt;/div&gt;
@@ -118,7 +118,7 @@ <h3 id="The_JavaScript_code">The JavaScript code</h3>
118118

119119
<p>This code handles the click event when the container receives a mouse click.</p>
120120

121-
<pre class="brush:js notranslate">function rotate() {
121+
<pre class="brush:js">function rotate() {
122122
var prevStyle = window.getComputedStyle(document.getElementById("box4"), null).getPropertyValue("background-image");
123123

124124
// Now that we've saved the last one, start rotating

files/en-us/web/css/-moz-image-region/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<p>For certain XUL elements and pseudo-elements that use an image from the {{CSSxRef("list-style-image")}} property, this property specifies a region of the image that is used in place of the whole image. This allows elements to use different pieces of the same image to improve performance.</p>
1515

16-
<pre class="brush: css no-line-numbers notranslate">/* Keyword value */
16+
<pre class="brush: css no-line-numbers">/* Keyword value */
1717
-moz-image-region: auto;
1818

1919
/* &lt;shape&gt; value */
@@ -47,13 +47,13 @@ <h2 id="Formal_definition">Formal definition</h2>
4747

4848
<h2 id="Formal_syntax">Formal syntax</h2>
4949

50-
<pre class="brush: css notranslate">{{CSSSyntax}}</pre>
50+
<pre class="brush: css">{{CSSSyntax}}</pre>
5151

5252
<h2 id="Examples">Examples</h2>
5353

5454
<h3 id="Clipping_an_image">Clipping an image</h3>
5555

56-
<pre class="brush:css notranslate">#example-button {
56+
<pre class="brush:css">#example-button {
5757
/* display only the 4x4 area from the top left of this image */
5858
list-style-image: url("chrome://example/skin/example.png");
5959
-moz-image-region: rect(0px, 4px, 4px, 0px);

files/en-us/web/css/-moz-orient/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ <h2 id="Formal_definition">Formal definition</h2>
3535

3636
<h2 id="Formal_syntax">Formal syntax</h2>
3737

38-
<pre class="brush: css notranslate">{{csssyntax}}</pre>
38+
<pre class="brush: css">{{csssyntax}}</pre>
3939

4040
<h2 id="Examples">Examples</h2>
4141

4242
<h3 id="HTML">HTML</h3>
4343

44-
<pre class="brush: html notranslate">&lt;p&gt;
44+
<pre class="brush: html">&lt;p&gt;
4545
The following progress meter
4646
is horizontal (the default):
4747
&lt;/p&gt;
@@ -55,7 +55,7 @@ <h3 id="HTML">HTML</h3>
5555

5656
<h3 id="CSS">CSS</h3>
5757

58-
<pre class="brush: css notranslate">.vert {
58+
<pre class="brush: css">.vert {
5959
-moz-orient: vertical;
6060
width: 16px;
6161
height: 150px;

files/en-us/web/css/-moz-outline-radius-bottomleft/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h2 id="Formal_definition">Formal definition</h2>
3333

3434
<h2 id="Formal_syntax">Formal syntax</h2>
3535

36-
<pre class="brush: css notranslate">{{csssyntax}}</pre>
36+
<pre class="brush: css">{{csssyntax}}</pre>
3737

3838
<h2 id="Examples">Examples</h2>
3939

@@ -43,11 +43,11 @@ <h3 id="Rounding_a_outline">Rounding a outline</h3>
4343

4444
<h4 id="HTML">HTML</h4>
4545

46-
<pre class="brush: html notranslate">&lt;p&gt;Look at this paragraph's bottom-left corner.&lt;/p&gt;</pre>
46+
<pre class="brush: html">&lt;p&gt;Look at this paragraph's bottom-left corner.&lt;/p&gt;</pre>
4747

4848
<h4 id="CSS">CSS</h4>
4949

50-
<pre class="brush: css notranslate">p {
50+
<pre class="brush: css">p {
5151
margin: 10px;
5252
border: solid cyan;
5353
outline: dotted green;

files/en-us/web/css/-moz-outline-radius-bottomright/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ <h2 id="Formal_definition">Formal definition</h2>
3333

3434
<h2 id="Formal_syntax">Formal syntax</h2>
3535

36-
<pre class="brush: css notranslate">{{CSSSyntax}}</pre>
36+
<pre class="brush: css">{{CSSSyntax}}</pre>
3737

3838
<h2 id="Examples">Examples</h2>
3939

4040
<h3 id="HTML">HTML</h3>
4141

42-
<pre class="brush: html notranslate">&lt;p&gt;Look at this paragraph's bottom-right corner.&lt;/p&gt;</pre>
42+
<pre class="brush: html">&lt;p&gt;Look at this paragraph's bottom-right corner.&lt;/p&gt;</pre>
4343

4444
<h3 id="CSS">CSS</h3>
4545

46-
<pre class="brush: css notranslate">p {
46+
<pre class="brush: css">p {
4747
margin: 5px;
4848
border: solid cyan;
4949
outline: dotted red;

files/en-us/web/css/-moz-outline-radius-topleft/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ <h2 id="Formal_definition">Formal definition</h2>
3333

3434
<h2 id="Formal_syntax">Formal syntax</h2>
3535

36-
<pre class="brush: css notranslate">{{CSSSyntax}}</pre>
36+
<pre class="brush: css">{{CSSSyntax}}</pre>
3737

3838
<h2 id="Examples">Examples</h2>
3939

4040
<p>The example below will not display the desired effect if you are viewing this in a browser other than Firefox.</p>
4141

4242
<h3 id="HTML">HTML</h3>
4343

44-
<pre class="brush: html notranslate">&lt;p&gt;Look at this paragraph's top-left corner.&lt;/p&gt;</pre>
44+
<pre class="brush: html">&lt;p&gt;Look at this paragraph's top-left corner.&lt;/p&gt;</pre>
4545

4646
<h3 id="CSS">CSS</h3>
4747

48-
<pre class="brush: css notranslate">p {
48+
<pre class="brush: css">p {
4949
margin: 5px;
5050
border: solid cyan;
5151
outline: dotted red;

0 commit comments

Comments
 (0)