diff --git a/src/content/reference/react-dom/components/meta.md b/src/content/reference/react-dom/components/meta.md
index 801ca2af1..4a8cb1f95 100644
--- a/src/content/reference/react-dom/components/meta.md
+++ b/src/content/reference/react-dom/components/meta.md
@@ -5,14 +5,14 @@ canary: true
-React's extensions to `` are currently only available in React's canary and experimental channels. In stable releases of React `` works only as a [built-in browser HTML component](https://react.dev/reference/react-dom/components#all-html-components). Learn more about [React's release channels here](/community/versioning-policy#all-release-channels).
+Ekstensi React pada `` saat ini hanya tersedia di saluran eksperimental dan canary. Dalam rilis stabil React `` hanya bekerja sebagai [komponen HTML bawaan](https://react.dev/reference/react-dom/components#all-html-components). Pelajari lebih lanjut tentang [saluran rilis React di sini](/community/versioning-policy#all-release-channels).
-The [built-in browser `` component](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta) lets you add metadata to the document.
+[Komponen HTML bawaan ``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta) memungkinkan Anda menambahkan metadata ke dokumen.
```js
@@ -24,43 +24,43 @@ The [built-in browser `` component](https://developer.mozilla.org/en-US/do
---
-## Reference {/*reference*/}
+## Referensi {/*reference*/}
### `` {/*meta*/}
-To add document metadata, render the [built-in browser `` component](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta). You can render `` from any component and React will always place the corresponding DOM element in the document head.
+Untuk menambahkan metadata dokumen, *render* komponen HTML bawaan ``. Anda dapat me-*render* `` dari komponen apa pun dan React akan selalu menempatkan elemen DOM yang sesuai di `` dokumen.
```js
```
-[See more examples below.](#usage)
+[Lihat contoh lebih lanjut di bawah.](#usage)
-#### Props {/*props*/}
+#### *Props* {/*props*/}
-`` supports all [common element props.](/reference/react-dom/components/common#props)
+`` mendukung semua [*props* elemen pada umumnya.](/reference/react-dom/components/common#props)
-It should have *exactly one* of the following props: `name`, `httpEquiv`, `charset`, `itemProp`. The `` component does something different depending on which of these props is specified.
+Elemen ini harus memiliki *setidaknya satu* dari *props* berikut: `name`, `httpEquiv`, `charset`, `itemProp`. Komponen `` akan menghasilkan hal yang berbeda tergantung dari *props* yang diberikan.
-* `name`: a string. Specifies the [kind of metadata](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name) to be attached to the document.
-* `charset`: a string. Specifies the character set used by the document. The only valid value is `"utf-8"`.
-* `httpEquiv`: a string. Specifies a directive for processing the document.
-* `itemProp`: a string. Specifies metadata about a particular item within the document rather than the document as a whole.
-* `content`: a string. Specifies the metadata to be attached when used with the `name` or `itemProp` props or the behavior of the directive when used with the `httpEquiv` prop.
+* `name`: sebuah string. Menentukan [jenis dari metadata](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name) yang akan dilampirkan ke dokumen.
+* `charset`: sebuah string. Menentukan setelan karakter yang akan digunakan dokumen. Nilai yang valid hanyalah `"utf-8"`.
+* `httpEquiv`: sebuah string. Menentukan direktif dalam memproses dokumen.
+* `itemProp`: sebuah string. Menentukan metadata tentang item tertentu dalam dokumen, bukan dokumen secara keseluruhan.
+* `content`: sebuah string. Menentukan metadata yang akan dilampirkan saat digunakan dengan *props* `name` atau `itemProp` atau perilaku direktif saat digunakan dengan *prop* `httpEquiv`.
-#### Special rendering behavior {/*special-rendering-behavior*/}
+#### Perilaku khusus pe-*render*-an {/*special-rendering-behavior*/}
-React will always place the DOM element corresponding to the `` component within the document’s ``, regardless of where in the React tree it is rendered. The `` is the only valid place for `` to exist within the DOM, yet it’s convenient and keeps things composable if a component representing a specific page can render `` components itself.
+React akan selalu menempatkan elemen DOM yang terkait dengan komponen `` di dalam `` dokumen, di mana pun elemen tersebut di-*render* di pohon React. Hanyalah ``tempat yang valid untuk meletakkan `` di dalam DOM, namun tetap cocok dan membuat semuanya tetap dapat disusun jika komponen yang mewakili halaman tertentu dapat me-*render* komponen `` itu sendiri.
-There is one exception to this: if `` has an [`itemProp`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/itemprop) prop, there is no special behavior, because in this case it doesn’t represent metadata about the document but rather metadata about a specific part of the page.
+Ada satu pengecualian: jika komponen `` memiliki sebuah *prop* [`itemProp`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/itemprop), maka tidak ada perilaku khusus, karena dalam hal ini komponen tersebut tidak mewakili metadata tentang dokumen, melainkan metadata tentang bagian tertentu dari halaman.
---
-## Usage {/*usage*/}
+## Penggunaan {/*usage*/}
-### Annotating the document with metadata {/*annotating-the-document-with-metadata*/}
+### Menandai dokumen dengan metadata {/*annotating-the-document-with-metadata*/}
-You can annotate the document with metadata such as keywords, a summary, or the author’s name. React will place this metadata within the document `` regardless of where in the React tree it is rendered.
+Anda dapat memberikan keterangan dokumen dengan metadata seperti kata kunci, ringkasan, atau nama pembuat. React akan menempatkan metadata ini di dalam dokumen `` terlepas dari di mana metadata tersebut di-*render* di pohon React.
```html
@@ -68,7 +68,7 @@ You can annotate the document with metadata such as keywords, a summary, or the
```
-You can render the `` component from any component. React will put a `` DOM node in the document ``.
+Anda dapat me-*render* komponen `` dari komponen mana pun. React akan meletakkan simpul DOM `` tersebut di dalam dokumen ``.
@@ -89,9 +89,9 @@ export default function SiteMapPage() {
-### Annotating specific items within the document with metadata {/*annotating-specific-items-within-the-document-with-metadata*/}
+### Menandai item tertentu di dalam dokumen dengan metadata {/*annotating-specific-items-within-the-document-with-metadata*/}
-You can use the `` component with the `itemProp` prop to annotate specific items within the document with metadata. In this case, React will *not* place these annotations within the document `` but will place them like any other React component.
+Anda dapat menggunakan komponen `` dengan *prop* `itemProp` untuk memberi anotasi pada item tertentu dalam dokumen dengan metadata. Dalam hal ini, React tidak akan menempatkan anotasi ini di dalam dokumen ``, melainkan akan menempatkannya seperti komponen React lainnya.
```js