---
title: "Terjemahan"
version: 4.0
locale: id
source: https://docs.djangoproject.com/id/4.0/topics/i18n/translation/
canonical: https://djangodocs.dev/id/4.0/topics/i18n/translation/
---
# Terjemahan

## Ikhtisar

In order to make a Django project translatable, you have to add a minimal
number of hooks to your Python code and templates. These hooks are called
[translation strings](/id/4.0/topics/i18n/#term-translation-string). They tell Django: "This text
should be translated into the end user's language, if a translation for this
text is available in that language." It's your responsibility to mark
translatable strings; the system can only translate strings it knows about.

Django then provides utilities to extract the translation strings into a
[message file](/id/4.0/topics/i18n/#term-message-file). This file is a convenient way for translators to provide
the equivalent of the translation strings in the target language. Once the
translators have filled in the message file, it must be compiled. This process
relies on the GNU gettext toolset.

Once this is done, Django takes care of translating web apps on the fly in each
available language, according to users' language preferences.

Django's internationalization hooks are on by default, and that means there's a
bit of i18n-related overhead in certain places of the framework. If you don't
use internationalization, you should take the two seconds to set
[`USE_I18N = False`](/id/4.0/ref/settings/#std-setting-USE_I18N) in your settings file. Then Django will
make some optimizations so as not to load the internationalization machinery.

> **Note**
>
> Make sure you've activated translation for your project (the fastest way is
> to check if [`MIDDLEWARE`](/id/4.0/ref/settings/#std-setting-MIDDLEWARE) includes
> [`django.middleware.locale.LocaleMiddleware`](/id/4.0/ref/middleware/#django.middleware.locale.LocaleMiddleware)). If you haven't yet,
> see [Bagaimana Django menemukan pilihan bahasa](#how-django-discovers-language-preference).

## Internasionalisasi: dalam kode Python

### Terjemahan standar

Tentukan string terjemahan dengan menggunakan fungsi [`gettext()`](/id/4.0/ref/utils/#django.utils.translation.gettext). Itu adalah kebiasaan untuk mengimpor ini sebagai nama lain pendek, `_`, untuk menyimpan pengetikan.

> **Note**
>
> Python's standard library `gettext` module installs `_()` into the
> global namespace, as an alias for `gettext()`. In Django, we have chosen
> not to follow this practice, for a couple of reasons:
>
> 1. Sometimes, you should use [`gettext_lazy()`](/id/4.0/ref/utils/#django.utils.translation.gettext_lazy)
>    as the default translation method for a particular file. Without `_()`
>    in the global namespace, the developer has to think about which is the
>    most appropriate translation function.
> 2. The underscore character (`_`) is used to represent "the previous
>    result" in Python's interactive shell and doctest tests. Installing a
>    global `_()` function causes interference. Explicitly importing
>    `gettext()` as `_()` avoids this problem.

> **Fungsi-fungsi apa mungkin dinama lainkan sebagai _?**
>
> Because of how `xgettext` (used by [`makemessages`](/id/4.0/ref/django-admin/#django-admin-makemessages)) works, only
> functions that take a single string argument can be imported as `_`:
>
> - [`gettext()`](/id/4.0/ref/utils/#django.utils.translation.gettext)
> - [`gettext_lazy()`](/id/4.0/ref/utils/#django.utils.translation.gettext_lazy)

Di contoh ini, teks `"Welcome to my site."` ditandai sebagai deretan karakter terjemahan:

```
from django.http import HttpResponse
from django.utils.translation import gettext as _

def my_view(request):
    output = _("Welcome to my site.")
    return HttpResponse(output)
```

You could code this without using the alias. This example is identical to the
previous one:

```
from django.http import HttpResponse
from django.utils.translation import gettext

def my_view(request):
    output = gettext("Welcome to my site.")
    return HttpResponse(output)
```

Terjemahan bekerja pada nilai terhitung. Contoh ini adalah mirip pada dua sebelumnya:

```
def my_view(request):
    words = ['Welcome', 'to', 'my', 'site.']
    output = _(' '.join(words))
    return HttpResponse(output)
```

Terjemahan bekerja pada variabel. Kembali, ini adalah contoh yang mirip:

```
def my_view(request):
    sentence = 'Welcome to my site.'
    output = _(sentence)
    return HttpResponse(output)
```

(The caveat with using variables or computed values, as in the previous two
examples, is that Django's translation-string-detecting utility,
[`django-admin makemessages`](/id/4.0/ref/django-admin/#django-admin-makemessages), won't be able to find
these strings. More on [`makemessages`](/id/4.0/ref/django-admin/#django-admin-makemessages) later.)

The strings you pass to `_()` or `gettext()` can take placeholders,
specified with Python's standard named-string interpolation syntax. Example:

```
def my_view(request, m, d):
    output = _('Today is %(month)s %(day)s.') % {'month': m, 'day': d}
    return HttpResponse(output)
```

This technique lets language-specific translations reorder the placeholder
text. For example, an English translation may be `"Today is November 26."`,
while a Spanish translation may be `"Hoy es 26 de noviembre."` -- with the
month and the day placeholders swapped.

For this reason, you should use named-string interpolation (e.g., `%(day)s`)
instead of positional interpolation (e.g., `%s` or `%d`) whenever you
have more than a single parameter. If you used positional interpolation,
translations wouldn't be able to reorder placeholder text.

Since string extraction is done by the `xgettext` command, only syntaxes
supported by `gettext` are supported by Django. In particular, Python
[f-strings](https://docs.python.org/3/reference/lexical_analysis.html#f-strings) are not yet supported by `xgettext`, and
JavaScript template strings need `gettext` 0.21+.

### Komentar untuk penterjemah

Jika anda ingin membeirkan petunjuk penterjemah mengenai string dapat diterjemahkan, anda dapat menambahkan awalan komentar dengan kata kunci `Translators` pada baris mendahului string, misalnya:

```
def my_view(request):
    # Translators: This message appears on the home page only
    output = gettext("Welcome to my site.")
```

The comment will then appear in the resulting `.po` file associated with the
translatable construct located below it and should also be displayed by most
translation tools.

> **Note**
>
> Hanya untuk kelengkapan, ini adalah fragmen sesuai dari menghasikan berkas `.po`:
>
> ```po
> #. Translators: This message appears on the home page only
> # path/to/python/file.py:123
> msgid "Welcome to my site."
> msgstr ""
> ```

Ini juga bekerja dalam cetakan. Lihat [Komentar untuk penterjemah dalam cetakan](#translator-comments-in-templates) untuk rincian lebih.

### Marking strings as no-op

Use the function [`django.utils.translation.gettext_noop()`](/id/4.0/ref/utils/#django.utils.translation.gettext_noop) to mark a
string as a translation string without translating it. The string is later
translated from a variable.

Use this if you have constant strings that should be stored in the source
language because they are exchanged over systems or users -- such as strings
in a database -- but should be translated at the last possible point in time,
such as when the string is presented to the user.

### Pluralisasi

Use the function [`django.utils.translation.ngettext()`](/id/4.0/ref/utils/#django.utils.translation.ngettext) to specify
pluralized messages.

`ngettext()` takes three arguments: the singular translation string, the
plural translation string and the number of objects.

This function is useful when you need your Django application to be localizable
to languages where the number and complexity of [plural forms](https://www.gnu.org/software/gettext/manual/gettext.html#Plural-forms) is
greater than the two forms used in English ('object' for the singular and
'objects' for all the cases where `count` is different from one, irrespective
of its value.)

Sebagai contoh:

```
from django.http import HttpResponse
from django.utils.translation import ngettext

def hello_world(request, count):
    page = ngettext(
        'there is %(count)d object',
        'there are %(count)d objects',
        count,
    ) % {
        'count': count,
    }
    return HttpResponse(page)
```

Dalam contoh ini sejumlah obyek dilewatkan ke bahasa terjemahan sebagai variabel `count`.

Note that pluralization is complicated and works differently in each language.
Comparing `count` to 1 isn't always the correct rule. This code looks
sophisticated, but will produce incorrect results for some languages:

```
from django.utils.translation import ngettext
from myapp.models import Report

count = Report.objects.count()
if count == 1:
    name = Report._meta.verbose_name
else:
    name = Report._meta.verbose_name_plural

text = ngettext(
    'There is %(count)d %(name)s available.',
    'There are %(count)d %(name)s available.',
    count,
) % {
    'count': count,
    'name': name
}
```

Don't try to implement your own singular-or-plural logic; it won't be correct.
In a case like this, consider something like the following:

```
text = ngettext(
    'There is %(count)d %(name)s object available.',
    'There are %(count)d %(name)s objects available.',
    count,
) % {
    'count': count,
    'name': Report._meta.verbose_name,
}
```

> **Note**
>
> When using `ngettext()`, make sure you use a single name for every
> extrapolated variable included in the literal. In the examples above, note
> how we used the `name` Python variable in both translation strings. This
> example, besides being incorrect in some languages as noted above, would
> fail:
>
> ```
> text = ngettext(
>     'There is %(count)d %(name)s available.',
>     'There are %(count)d %(plural_name)s available.',
>     count,
> ) % {
>     'count': Report.objects.count(),
>     'name': Report._meta.verbose_name,
>     'plural_name': Report._meta.verbose_name_plural,
> }
> ```
>
> Anda akan mendapatkan sebuah kesalahan ketika menjalankan `django-admin compilemessages 1`:
>
> ```
> a format specification for argument 'name', as in 'msgstr[0]', doesn't exist in 'msgid'
> ```

### Contextual markers

Sometimes words have several meanings, such as `"May"` in English, which
refers to a month name and to a verb. To enable translators to translate
these words correctly in different contexts, you can use the
[`django.utils.translation.pgettext()`](/id/4.0/ref/utils/#django.utils.translation.pgettext) function, or the
[`django.utils.translation.npgettext()`](/id/4.0/ref/utils/#django.utils.translation.npgettext) function if the string needs
pluralization. Both take a context string as the first variable.

In the resulting `.po` file, the string will then appear as often as there are
different contextual markers for the same string (the context will appear on the
`msgctxt` line), allowing the translator to give a different translation for
each of them.

Sebagai contoh:

```
from django.utils.translation import pgettext

month = pgettext("month name", "May")
```

atau:

```
from django.db import models
from django.utils.translation import pgettext_lazy

class MyThing(models.Model):
    name = models.CharField(help_text=pgettext_lazy(
        'help text for MyThing model', 'This is the help text'))
```

akan muncul di berkas  `.po` sebagai:

```po
msgctxt "month name"
msgid "May"
msgstr ""
```

Contextual markers are also supported by the [`translate`](#std-templatetag-translate) and
[`blocktranslate`](#std-templatetag-blocktranslate) template tags.

### Terjemahan lazy

Use the lazy versions of translation functions in
[`django.utils.translation`](/id/4.0/ref/utils/#module-django.utils.translation) (easily recognizable by the `lazy` suffix in
their names) to translate strings lazily -- when the value is accessed rather
than when they're called.

These functions store a lazy reference to the string -- not the actual
translation. The translation itself will be done when the string is used in a
string context, such as in template rendering.

This is essential when calls to these functions are located in code paths that
are executed at module load time.

This is something that can easily happen when defining models, forms and
model forms, because Django implements these such that their fields are
actually class-level attributes. For that reason, make sure to use lazy
translations in the following cases:

#### Bidang-bidang model dan hubungan nilai pilihan `verbose_name` dan `help_text`

Seabgai contoh, untuk menterjemahkan teks bantuan dari bidang *name* dalam model berikut, lakukan berikut:

```
from django.db import models
from django.utils.translation import gettext_lazy as _

class MyThing(models.Model):
    name = models.CharField(help_text=_('This is the help text'))
```

You can mark names of [`ForeignKey`](/id/4.0/ref/models/fields/#django.db.models.ForeignKey),
[`ManyToManyField`](/id/4.0/ref/models/fields/#django.db.models.ManyToManyField) or
[`OneToOneField`](/id/4.0/ref/models/fields/#django.db.models.OneToOneField) relationship as translatable by using
their [`verbose_name`](/id/4.0/ref/models/options/#django.db.models.Options.verbose_name) options:

```
class MyThing(models.Model):
    kind = models.ForeignKey(
        ThingKind,
        on_delete=models.CASCADE,
        related_name='kinds',
        verbose_name=_('kind'),
    )
```

Just like you would do in [`verbose_name`](/id/4.0/ref/models/options/#django.db.models.Options.verbose_name) you
should provide a lowercase verbose name text for the relation as Django will
automatically titlecase it when required.

#### Model verbose names values

It is recommended to always provide explicit
[`verbose_name`](/id/4.0/ref/models/options/#django.db.models.Options.verbose_name) and
[`verbose_name_plural`](/id/4.0/ref/models/options/#django.db.models.Options.verbose_name_plural) options rather than
relying on the fallback English-centric and somewhat naïve determination of
verbose names Django performs by looking at the model's class name:

```
from django.db import models
from django.utils.translation import gettext_lazy as _

class MyThing(models.Model):
    name = models.CharField(_('name'), help_text=_('This is the help text'))

    class Meta:
        verbose_name = _('my thing')
        verbose_name_plural = _('my things')
```

#### Model methods `description` argument to the `@display` decorator

For model methods, you can provide translations to Django and the admin site
with the `description` argument to the [`display()`](/id/4.0/ref/contrib/admin/#django.contrib.admin.display)
decorator:

```
from django.contrib import admin
from django.db import models
from django.utils.translation import gettext_lazy as _

class MyThing(models.Model):
    kind = models.ForeignKey(
        ThingKind,
        on_delete=models.CASCADE,
        related_name='kinds',
        verbose_name=_('kind'),
    )

    @admin.display(description=_('Is it a mouse?'))
    def is_mouse(self):
        return self.kind.type == MOUSE_TYPE
```

### Bekerja dengan obyek-obyek terjemahan lazy

The result of a `gettext_lazy()` call can be used wherever you would use a
string (a [`str`](https://docs.python.org/3/library/stdtypes.html#str) object) in other Django code, but it may not work with
arbitrary Python code. For example, the following won't work because the
[requests](https://pypi.org/project/requests/) library doesn't handle
`gettext_lazy` objects:

```
body = gettext_lazy("I \u2764 Django")  # (Unicode :heart:)
requests.post('https://example.com/send', data={'body': body})
```

You can avoid such problems by casting `gettext_lazy()` objects to text
strings before passing them to non-Django code:

```
requests.post('https://example.com/send', data={'body': str(body)})
```

If you don't like the long `gettext_lazy` name, you can alias it as `_`
(underscore), like so:

```
from django.db import models
from django.utils.translation import gettext_lazy as _

class MyThing(models.Model):
    name = models.CharField(help_text=_('This is the help text'))
```

Using `gettext_lazy()` and `ngettext_lazy()` to mark strings in models
and utility functions is a common operation. When you're working with these
objects elsewhere in your code, you should ensure that you don't accidentally
convert them to strings, because they should be converted as late as possible
(so that the correct locale is in effect). This necessitates the use of the
helper function described next.

#### Lazy translations and plural

When using lazy translation for a plural string (`n[p]gettext_lazy`), you
generally don't know the `number` argument at the time of the string
definition. Therefore, you are authorized to pass a key name instead of an
integer as the `number` argument. Then `number` will be looked up in the
dictionary under that key during string interpolation. Here's example:

```
from django import forms
from django.core.exceptions import ValidationError
from django.utils.translation import ngettext_lazy

class MyForm(forms.Form):
    error_message = ngettext_lazy("You only provided %(num)d argument",
        "You only provided %(num)d arguments", 'num')

    def clean(self):
        # ...
        if error:
            raise ValidationError(self.error_message % {'num': number})
```

If the string contains exactly one unnamed placeholder, you can interpolate
directly with the `number` argument:

```
class MyForm(forms.Form):
    error_message = ngettext_lazy(
        "You provided %d argument",
        "You provided %d arguments",
    )

    def clean(self):
        # ...
        if error:
            raise ValidationError(self.error_message % number)
```

#### Membentuk string: `format_lazy()`

Python's [`str.format()`](https://docs.python.org/3/library/stdtypes.html#str.format) method will not work when either the
`format_string` or any of the arguments to [`str.format()`](https://docs.python.org/3/library/stdtypes.html#str.format)
contains lazy translation objects. Instead, you can use
[`django.utils.text.format_lazy()`](/id/4.0/ref/utils/#django.utils.text.format_lazy), which creates a lazy object
that runs the `str.format()` method only when the result is included
in a string. For example:

```
from django.utils.text import format_lazy
from django.utils.translation import gettext_lazy
...
name = gettext_lazy('John Lennon')
instrument = gettext_lazy('guitar')
result = format_lazy('{name}: {instrument}', name=name, instrument=instrument)
```

In this case, the lazy translations in `result` will only be converted to
strings when `result` itself is used in a string (usually at template
rendering time).

#### Lainnya menggunakan lazy dalam terjemahan tertunda

For any other case where you would like to delay the translation, but have to
pass the translatable string as argument to another function, you can wrap
this function inside a lazy call yourself. For example:

```
from django.utils.functional import lazy
from django.utils.safestring import mark_safe
from django.utils.translation import gettext_lazy as _

mark_safe_lazy = lazy(mark_safe, str)
```

Dan lalu kemudian:

```
lazy_string = mark_safe_lazy(_("<p>My <strong>string!</strong></p>"))
```

### Lokalisasi nama-nama dari bahasa

#### `get_language_info(lang_code)`

Fungsi `get_language_info()` menyediakan informasi rinci tentang bahasa:

```
>>> from django.utils.translation import activate, get_language_info
>>> activate('fr')
>>> li = get_language_info('de')
>>> print(li['name'], li['name_local'], li['name_translated'], li['bidi'])
German Deutsch Allemand False
```

The `name`, `name_local`, and `name_translated` attributes of the
dictionary contain the name of the language in English, in the language
itself, and in your current active language respectively.  The `bidi`
attribute is True only for bi-directional languages.

Sumber dari informasi bahasa adalah modul django.conf.locale\`. Akses mirip pada informasi ini tersedia untuk kode cetakan. Lihat dibawah.

## Internasionalisasi: dalam kode cetakan

Translations in [Django templates](/id/4.0/ref/templates/language/) uses two template
tags and a slightly different syntax than in Python code. To give your template
access to these tags, put `{% load i18n %}` toward the top of your template.
As with all template tags, this tag needs to be loaded in all templates which
use translations, even those templates that extend from other templates which
have already loaded the `i18n` tag.

> **Warning**
>
> Translated strings will not be escaped when rendered in a template.
> This allows you to include HTML in translations, for example for emphasis,
> but potentially dangerous characters (e.g. `"`) will also be rendered
> unchanged.

### Etiket cetakan `translate`

The `{% translate %}` template tag translates either a constant string
(enclosed in single or double quotes) or variable content:

```html+django
<title>{% translate "This is the title." %}</title>
<title>{% translate myvar %}</title>
```

If the `noop` option is present, variable lookup still takes place but the
translation is skipped. This is useful when "stubbing out" content that will
require translation in the future:

```html+django
<title>{% translate "myvar" noop %}</title>
```

Secara internal, terjemahan dibarisan menggunakan panggilan [`gettext()`](/id/4.0/ref/utils/#django.utils.translation.gettext).

In case a template var (`myvar` above) is passed to the tag, the tag will
first resolve such variable to a string at run-time and then look up that
string in the message catalogs.

It's not possible to mix a template variable inside a string within
`{% translate %}`. If your translations require strings with variables
(placeholders), use [`{% blocktranslate %}`](#std-templatetag-blocktranslate) instead.

If you'd like to retrieve a translated string without displaying it, you can
use the following syntax:

```html+django
{% translate "This is the title" as the_title %}

<title>{{ the_title }}</title>
<meta name="description" content="{{ the_title }}">
```

In practice you'll use this to get a string you can use in multiple places in a
template or so you can use the output as an argument for other template tags or
filters:

```html+django
{% translate "starting point" as start %}
{% translate "end point" as end %}
{% translate "La Grande Boucle" as race %}

<h1>
  <a href="/" title="{% blocktranslate %}Back to '{{ race }}' homepage{% endblocktranslate %}">{{ race }}</a>
</h1>
<p>
{% for stage in tour_stages %}
    {% cycle start end %}: {{ stage }}{% if forloop.counter|divisibleby:2 %}<br>{% else %}, {% endif %}
{% endfor %}
</p>
```

`{% translate %}` also supports [contextual markers](#contextual-markers)
using the `context` keyword:

```html+django
{% translate "May" context "month name" %}
```

### Etiket cetakan `blocktranslate`

Contrarily to the [`translate`](#std-templatetag-translate) tag, the `blocktranslate` tag allows you
to mark complex sentences consisting of literals and variable content for
translation by making use of placeholders:

```html+django
{% blocktranslate %}This string will have {{ value }} inside.{% endblocktranslate %}
```

To translate a template expression -- say, accessing object attributes or
using template filters -- you need to bind the expression to a local variable
for use within the translation block. Examples:

```html+django
{% blocktranslate with amount=article.price %}
That will cost $ {{ amount }}.
{% endblocktranslate %}

{% blocktranslate with myvar=value|filter %}
This will have {{ myvar }} inside.
{% endblocktranslate %}
```

You can use multiple expressions inside a single `blocktranslate` tag:

```html+django
{% blocktranslate with book_t=book|title author_t=author|title %}
This is {{ book_t }} by {{ author_t }}
{% endblocktranslate %}
```

> **Note**
>
> The previous more verbose format is still supported:
> `{% blocktranslate with book|title as book_t and author|title as author_t %}`

Other block tags (for example `{% for %}` or `{% if %}`) are not allowed
inside a `blocktranslate` tag.

If resolving one of the block arguments fails, `blocktranslate` will fall
back to the default language by deactivating the currently active language
temporarily with the [`deactivate_all()`](/id/4.0/ref/utils/#django.utils.translation.deactivate_all)
function.

This tag also provides for pluralization. To use it:

- Designate and bind a counter value with the name `count`. This value will
  be the one used to select the right plural form.
- Specify both the singular and plural forms separating them with the
  `{% plural %}` tag within the `{% blocktranslate %}` and
  `{% endblocktranslate %}` tags.

Sebuah contoh:

```html+django
{% blocktranslate count counter=list|length %}
There is only one {{ name }} object.
{% plural %}
There are {{ counter }} {{ name }} objects.
{% endblocktranslate %}
```

Sebuah contoh lebih rumit:

```html+django
{% blocktranslate with amount=article.price count years=i.length %}
That will cost $ {{ amount }} per year.
{% plural %}
That will cost $ {{ amount }} per {{ years }} years.
{% endblocktranslate %}
```

When you use both the pluralization feature and bind values to local variables
in addition to the counter value, keep in mind that the `blocktranslate`
construct is internally converted to an `ngettext` call. This means the
same [notes regarding ngettext variables](#pluralization-var-notes)
apply.

Reverse URL lookups cannot be carried out within the `blocktranslate` and
should be retrieved (and stored) beforehand:

```html+django
{% url 'path.to.view' arg arg2 as the_url %}
{% blocktranslate %}
This is a URL: {{ the_url }}
{% endblocktranslate %}
```

If you'd like to retrieve a translated string without displaying it, you can
use the following syntax:

```html+django
{% blocktranslate asvar the_title %}The title is {{ title }}.{% endblocktranslate %}
<title>{{ the_title }}</title>
<meta name="description" content="{{ the_title }}">
```

In practice you'll use this to get a string you can use in multiple places in a
template or so you can use the output as an argument for other template tags or
filters.

`{% blocktranslate %}` also supports [contextual
markers](#contextual-markers) using the `context` keyword:

```html+django
{% blocktranslate with name=user.username context "greeting" %}Hi {{ name }}{% endblocktranslate %}
```

Another feature `{% blocktranslate %}` supports is the `trimmed` option.
This option will remove newline characters from the beginning and the end of
the content of the `{% blocktranslate %}` tag, replace any whitespace at the
beginning and end of a line and merge all lines into one using a space
character to separate them. This is quite useful for indenting the content of a
`{% blocktranslate %}` tag without having the indentation characters end up
in the corresponding entry in the PO file, which makes the translation process
easier.

For instance, the following `{% blocktranslate %}` tag:

```html+django
{% blocktranslate trimmed %}
  First sentence.
  Second paragraph.
{% endblocktranslate %}
```

will result in the entry `"First sentence. Second paragraph."` in the PO file,
compared to `"\n  First sentence.\n  Second paragraph.\n"`, if the
`trimmed` option had not been specified.

### String literals passed to tags and filters

You can translate string literals passed as arguments to tags and filters
by using the familiar `_()` syntax:

```html+django
{% some_tag _("Page not found") value|yesno:_("yes,no") %}
```

In this case, both the tag and the filter will see the translated string,
so they don't need to be aware of translations.

> **Note**
>
> In this example, the translation infrastructure will be passed the string
> `"yes,no"`, not the individual strings `"yes"` and `"no"`. The
> translated string will need to contain the comma so that the filter
> parsing code knows how to split up the arguments. For example, a German
> translator might translate the string `"yes,no"` as `"ja,nein"`
> (keeping the comma intact).

### Komentar untuk penterjemah dalam cetakan

Just like with [Python code](#translator-comments), these notes for
translators can be specified using comments, either with the [`comment`](/id/4.0/ref/templates/builtins/#std-templatetag-comment)
tag:

```html+django
{% comment %}Translators: View verb{% endcomment %}
{% translate "View" %}

{% comment %}Translators: Short intro blurb{% endcomment %}
<p>{% blocktranslate %}A multiline translatable
literal.{% endblocktranslate %}</p>
```

atau dengan `{#` ... `#}` [one-line comment constructs](/id/4.0/ref/templates/language/#template-comments):

```html+django
{# Translators: Label of a button that triggers search #}
<button type="submit">{% translate "Go" %}</button>

{# Translators: This is a text of the base template #}
{% blocktranslate %}Ambiguous translatable block of text{% endblocktranslate %}
```

> **Note**
>
> Hanya untuk kelengkapan, ini semua adalah fragmen sesuai dari menghasikan berkas `.po`:
>
> ```po
> #. Translators: View verb
> # path/to/template/file.html:10
> msgid "View"
> msgstr ""
>
> #. Translators: Short intro blurb
> # path/to/template/file.html:13
> msgid ""
> "A multiline translatable"
> "literal."
> msgstr ""
>
> # ...
>
> #. Translators: Label of a button that triggers search
> # path/to/template/file.html:100
> msgid "Go"
> msgstr ""
>
> #. Translators: This is a text of the base template
> # path/to/template/file.html:103
> msgid "Ambiguous translatable block of text"
> msgstr ""
> ```

### Mengganti bahasa dalam cetakan

Jika anda ingin memilih sebuah bahasa dalam sebuah cetakan, anda dapat menggunakan etiket cetakan `language`:

```html+django
{% load i18n %}

{% get_current_language as LANGUAGE_CODE %}
<!-- Current language: {{ LANGUAGE_CODE }} -->
<p>{% translate "Welcome to our page" %}</p>

{% language 'en' %}
    {% get_current_language as LANGUAGE_CODE %}
    <!-- Current language: {{ LANGUAGE_CODE }} -->
    <p>{% translate "Welcome to our page" %}</p>
{% endlanguage %}
```

While the first occurrence of "Welcome to our page" uses the current language,
the second will always be in English.

### Etiket lain

Etiket ini juga membutuhkan sebuah `{% memuat i18n %}`.

#### `get_available_languages`

`{% get_available_languages as LANGUAGES %}` returns a list of tuples in
which the first element is the [language code](/id/4.0/topics/i18n/#term-language-code) and the second is the
language name (translated into the currently active locale).

#### `get_current_language`

`{% get_current_language as LANGUAGE_CODE %}` returns the current user's
preferred language as a string. Example: `en-us`. See
[Bagaimana Django menemukan pilihan bahasa](#how-django-discovers-language-preference).

#### `get_current_language_bidi`

`{% get_current_language_bidi as LANGUAGE_BIDI %}` returns the current
locale's direction. If `True`, it's a right-to-left language, e.g. Hebrew,
Arabic. If `False` it's a left-to-right language, e.g. English, French,
German, etc.

#### `i18n` context processor

If you enable the [`django.template.context_processors.i18n`](/id/4.0/ref/templates/api/#django.template.context_processors.i18n) context
processor, then each `RequestContext` will have access to `LANGUAGES`,
`LANGUAGE_CODE`, and `LANGUAGE_BIDI` as defined above.

#### `get_language_info`

You can also retrieve information about any of the available languages using
provided template tags and filters. To get information about a single language,
use the `{% get_language_info %}` tag:

```html+django
{% get_language_info for LANGUAGE_CODE as lang %}
{% get_language_info for "pl" as lang %}
```

Anda dapat kemudian mengakses informasi:

```html+django
Language code: {{ lang.code }}<br>
Name of language: {{ lang.name_local }}<br>
Name in English: {{ lang.name }}<br>
Bi-directional: {{ lang.bidi }}
Name in the active language: {{ lang.name_translated }}
```

#### `get_language_info_list`

You can also use the `{% get_language_info_list %}` template tag to retrieve
information for a list of languages (e.g. active languages as specified in
[`LANGUAGES`](/id/4.0/ref/settings/#std-setting-LANGUAGES)). See [the section about the set\_language redirect
view](#set-language-redirect-view) for an example of how to display a language
selector using `{% get_language_info_list %}`.

In addition to [`LANGUAGES`](/id/4.0/ref/settings/#std-setting-LANGUAGES) style list of tuples,
`{% get_language_info_list %}` supports lists of language codes.
If you do this in your view:

```python
context = {'available_languages': ['en', 'es', 'fr']}
return render(request, 'mytemplate.html', context)
```

anda dapat mengulangi terhadap bahasa-bahasa tersebut dalam cetakan:

```html+django
{% get_language_info_list for available_languages as langs %}
{% for lang in langs %} ... {% endfor %}
```

#### Filter templat

There are also some filters available for convenience:

- `{{ LANGUAGE_CODE|language_name }}` ("German")
- `{{ LANGUAGE_CODE|language_name_local }}` ("Deutsch")
- `{{ LANGUAGE_CODE|language_bidi }}` (False)
- `{{ LANGUAGE_CODE|language_name_translated }}` ("německy", ketika bahasa aktif adalah Ceko)

## Internasionalisasi: dalam kode JavaScript

Menambahkan terjemahan ke JavaScript menimbulkan beberapa masalah:

- Kode JavaScript  tidak mempunyai akses ke penerapan `gettext`.
- Kode JavaScript tidak mempunyai akses ke berkas `.po` or `.mo`; mereka butuh untuk dikirimkan oleh peladen.
- Katalog terjemahan untuk JavaScript harus disimpan sekecil mungkin.

Django provides an integrated solution for these problems: It passes the
translations into JavaScript, so you can call `gettext`, etc., from within
JavaScript.

The main solution to these problems is the following `JavaScriptCatalog` view,
which generates a JavaScript code library with functions that mimic the
`gettext` interface, plus an array of translation strings.

### Tampilan `JavaScriptCatalog`

#### `class JavaScriptCatalog`

A view that produces a JavaScript code library with functions that mimic
the `gettext` interface, plus an array of translation strings.

**Atribut**

#### `domain`

Translation domain containing strings to add in the view output.
Defaults to `'djangojs'`.

#### `packages`

A list of [`application names`](/id/4.0/ref/applications/#django.apps.AppConfig.name) among
installed applications. Those apps should contain a `locale`
directory. All those catalogs plus all catalogs found in
[`LOCALE_PATHS`](/id/4.0/ref/settings/#std-setting-LOCALE_PATHS) (which are always included) are merged into one
catalog. Defaults to `None`, which means that all available
translations from all [`INSTALLED_APPS`](/id/4.0/ref/settings/#std-setting-INSTALLED_APPS) are provided in the
JavaScript output.

**Contoh dengan nilai awalan**:

```python
from django.views.i18n import JavaScriptCatalog

urlpatterns = [
    path('jsi18n/', JavaScriptCatalog.as_view(), name='javascript-catalog'),
]
```

**Contoh dengan paket penyesuaian**:

```python
urlpatterns = [
    path('jsi18n/myapp/',
         JavaScriptCatalog.as_view(packages=['your.app.label']),
         name='javascript-catalog'),
]
```

If your root URLconf uses [`i18n_patterns()`](#django.conf.urls.i18n.i18n_patterns),
`JavaScriptCatalog` must also be wrapped by `i18n_patterns()` for the
catalog to be correctly generated.

**Contoh dengan** `i18n_patterns()`:

```python
from django.conf.urls.i18n import i18n_patterns

urlpatterns = i18n_patterns(
    path('jsi18n/', JavaScriptCatalog.as_view(), name='javascript-catalog'),
)
```

The precedence of translations is such that the packages appearing later in the
`packages` argument have higher precedence than the ones appearing at the
beginning. This is important in the case of clashing translations for the same
literal.

If you use more than one `JavaScriptCatalog` view on a site and some of them
define the same strings, the strings in the catalog that was loaded last take
precedence.

### Menggunakan katalog terjemahan JavaScript

To use the catalog, pull in the dynamically generated script like this:

```html+django
<script src="{% url 'javascript-catalog' %}"></script>
```

This uses reverse URL lookup to find the URL of the JavaScript catalog view.
When the catalog is loaded, your JavaScript code can use the following methods:

- `gettext`
- `ngettext`
- `interpolate`
- `get_format`
- `gettext_noop`
- `pgettext`
- `npgettext`
- `pluralidx`

#### `gettext`

The `gettext` function behaves similarly to the standard `gettext`
interface within your Python code:

```javascript
document.write(gettext('this is to be translated'));
```

#### `ngettext`

The `ngettext` function provides an interface to pluralize words and
phrases:

```javascript
const objectCount = 1 // or 0, or 2, or 3, ...
const string = ngettext(
    'literal for the singular case',
    'literal for the plural case',
    objectCount
);
```

#### `interpolate`

The `interpolate` function supports dynamically populating a format string.
The interpolation syntax is borrowed from Python, so the `interpolate`
function supports both positional and named interpolation:

- Penempatan penambahan: `obj` mengandung obyek Senarai JavaScript yang unsur-unsurnya kemudian berurutan ditambahkan dalam palceholder `fmt` mereka yang sesuai dalam urutan sama mereka muncul. Sebagai contoh:

  ```javascript
  const formats = ngettext(
    'There is %s object. Remaining: %s',
    'There are %s objects. Remaining: %s',
    11
  );
  const string = interpolate(formats, [11, 20]);
  // string is 'There are 11 objects. Remaining: 20'
  ```
- Named interpolation: This mode is selected by passing the optional
  boolean `named` parameter as `true`. `obj` contains a JavaScript
  object or associative array. For example:

  ```javascript
  const data = {
    count: 10,
    total: 50
  };

  const formats = ngettext(
      'Total: %(total)s, there is %(count)s object',
      'there are %(count)s of a total of %(total)s objects',
      data.count
  );
  const string = interpolate(formats, data, true);
  ```

You shouldn't go over the top with string interpolation, though: this is still
JavaScript, so the code has to make repeated regular-expression substitutions.
This isn't as fast as string interpolation in Python, so keep it to those
cases where you really need it (for example, in conjunction with `ngettext`
to produce proper pluralizations).

#### `get_format`

Fungsi `get_format` mempunyai akses ke pengaturan pembentukan i18n terkonfigurasi dan dapat mengambil bentuk string untuk nama pengaturan yang diberikan:

```javascript
document.write(get_format('DATE_FORMAT'));
// 'N j, Y'
```

Itu mempunyai akses pada pengaturan berikut:

- [`DATE_FORMAT`](/id/4.0/ref/settings/#std-setting-DATE_FORMAT)
- [`DATE_INPUT_FORMATS`](/id/4.0/ref/settings/#std-setting-DATE_INPUT_FORMATS)
- [`DATETIME_FORMAT`](/id/4.0/ref/settings/#std-setting-DATETIME_FORMAT)
- [`DATETIME_INPUT_FORMATS`](/id/4.0/ref/settings/#std-setting-DATETIME_INPUT_FORMATS)
- [`DECIMAL_SEPARATOR`](/id/4.0/ref/settings/#std-setting-DECIMAL_SEPARATOR)
- [`FIRST_DAY_OF_WEEK`](/id/4.0/ref/settings/#std-setting-FIRST_DAY_OF_WEEK)
- [`MONTH_DAY_FORMAT`](/id/4.0/ref/settings/#std-setting-MONTH_DAY_FORMAT)
- [`NUMBER_GROUPING`](/id/4.0/ref/settings/#std-setting-NUMBER_GROUPING)
- [`SHORT_DATE_FORMAT`](/id/4.0/ref/settings/#std-setting-SHORT_DATE_FORMAT)
- [`SHORT_DATETIME_FORMAT`](/id/4.0/ref/settings/#std-setting-SHORT_DATETIME_FORMAT)
- [`THOUSAND_SEPARATOR`](/id/4.0/ref/settings/#std-setting-THOUSAND_SEPARATOR)
- [`TIME_FORMAT`](/id/4.0/ref/settings/#std-setting-TIME_FORMAT)
- [`TIME_INPUT_FORMATS`](/id/4.0/ref/settings/#std-setting-TIME_INPUT_FORMATS)
- [`YEAR_MONTH_FORMAT`](/id/4.0/ref/settings/#std-setting-YEAR_MONTH_FORMAT)

Ini berguna untuk merawat ketetapan pembentukan dengan nilai-nilai dibangun-Python.

#### `gettext_noop`

Ini menandingin fungsi `gettext` tetapi tidak melakukan apapun, mengembalikan apapun dilewatkan ke itu:

```javascript
document.write(gettext_noop('this will not be translated'));
```

Ini adalah berguna untuk memberhentikan bagian-bagian dari kode akan butuh diterjemahkan di masa akan datang.

#### `pgettext`

Fungsi `pgettext` berperilaku seperti ragam Python ([`pgettext()`](/id/4.0/ref/utils/#django.utils.translation.pgettext)), menyediakan kata terjemahan kontekstual:

```javascript
document.write(pgettext('month name', 'May'));
```

#### `npgettext`

Fungsi `npgettext` juga berperilaku seperti ragam Python ([`npgettext()`](/id/4.0/ref/utils/#django.utils.translation.npgettext)), menyediakan **menjamakkan** kata terjemahan kontekstual:

```javascript
document.write(npgettext('group', 'party', 1));
// party
document.write(npgettext('group', 'party', 2));
// parties
```

#### `pluralidx`

Fungsi `pluralidx` bekerja dalam cara sama pada penyaring cetakan [`pluralize`](/id/4.0/ref/templates/builtins/#std-templatefilter-pluralize), menentukan jika `count` diberikan harus menggunakan bentuk jamak dari sebuah kata atau tidak:

```javascript
document.write(pluralidx(0));
// true
document.write(pluralidx(1));
// false
document.write(pluralidx(2));
// true
```

Dalam kasis paling sederhana, jika tidak ada penyesuaian penjamakan dibutuhkan, ini mengembalikan `false` untuk integer `1` dan `true` untuk semua angka-angka lain.

Bagaimanapun, penjamakan tidak sesederhana ini dalam semua bahasa. Jika bahasa tidak mendukung penjamakan, sebuah nilai kosong disediakan.

Tambahannya, jika ada aturan-aturan rumit sekitar penjamakan, tampilan katalog akan membangun sebuah penyataan bersyarat. Ini akan menilai salah satu nilai `True` (harus jamak) atau `false` (harus **tidak** jamak).

### Tampilan `JSONCatalog`

#### `class JSONCatalog`

Untuk menggunakan pustaka sisi-klien lain untuk menangani terjemahan, anda mungkin ingin mengambil keuntungan dari tampilan `JSONCatalog`. Itu mirip pada [`JavaScriptCatalog`](#django.views.i18n.JavaScriptCatalog) tetapi mengembalikan sebuah tanggapan JSON.

Lihat dokumentasi untuk [`JavaScriptCatalog`](#django.views.i18n.JavaScriptCatalog) untuk belajar tentang kemungkinan nilai-nilai dan penggunaan dari atribut-atribut `domain` dan `packages`.

Bentuk tanggapan sebagai berikut:

```text
{
    "catalog": {
        # Translations catalog
    },
    "formats": {
        # Language formats for date, time, etc.
    },
    "plural": "..."  # Expression for plural forms, or null.
}
```

### Catatan pada penampilan

Tampilan beragam i18n JavaScript/JSON membangkitkan katalog dari berkas-berkas `.mo` pada setiap permintaan. Sejak itu mengeluarkan sebuah ketetapan, setidaknya untuk versi diberikan dari sebuah situs, itu adalah calon bagus untuk caching.

Caching sisi-peladen akan mengurangi beban CPU. Itu sangat mudah diterapkan dengan penghias [`cache_page()`](/id/4.0/topics/cache/#django.views.decorators.cache.cache_page). Untuk memicu ketidakabsahan cache ketika terjemahan anda berubah, sediakan awalan kunci versi-berdiri-sendiri, seperti ditunjukkan dalam contoh dibawah atau tampilan peta pada URL versi-berdiri-sendiri:

```python
from django.views.decorators.cache import cache_page
from django.views.i18n import JavaScriptCatalog

# The value returned by get_version() must change when translations change.
urlpatterns = [
    path('jsi18n/',
         cache_page(86400, key_prefix='jsi18n-%s' % get_version())(JavaScriptCatalog.as_view()),
         name='javascript-catalog'),
]
```

Caching sisi-klien akan menyimpan lebar pita dan membuat situs anda dimuat lebih cepat. Jika anda sedang menggunakan ETag ([`ConditionalGetMiddleware`](/id/4.0/ref/middleware/#django.middleware.http.ConditionalGetMiddleware)), anda siap dicakupi. Sebaliknya, anda dapat memberlakukan conditional decorators 1. Dalam contoh berikut, cache tidak berlaku ketika anda memulai kembali peladen aplikasi anda:

```python
from django.utils import timezone
from django.views.decorators.http import last_modified
from django.views.i18n import JavaScriptCatalog

last_modified_date = timezone.now()

urlpatterns = [
    path('jsi18n/',
         last_modified(lambda req, **kw: last_modified_date)(JavaScriptCatalog.as_view()),
         name='javascript-catalog'),
]
```

Anda dapat bahkan pra-membangkitkan katalog JavaScript sebagai bagian dari prosedur pegembangan anda dan melayani itu sebagai berkas tetap. Teknik radikal ini adalah diterapkan dalam [django-statici18n](https://django-statici18n.readthedocs.io/).

## Internasionalisasi: dalam pola URL

Django menyediakan dua mekanisme pada pola URL internasionalisasi:

- Menambahkan awalan bahasa pada akar dari pola URL untuk membuat itu memungkinkan untuk [`LocaleMiddleware`](/id/4.0/ref/middleware/#django.middleware.locale.LocaleMiddleware) untuk mengenali bahasa untuk diaktifkan dari URL diminta.
- Membuat pola URL mereka sendiri dapat diterjemahkan melalui fungsi [`django.utils.translation.gettext_lazy()`](/id/4.0/ref/utils/#django.utils.translation.gettext_lazy).

> **Warning**
>
> Menggunakan salah satu dari fitur-fitur ini membutuhkan itu sebuah bahasa aktif untuk disetel untuk setiap permintaan; dengan kata lain, anda butuh harus [`django.middleware.locale.LocaleMiddleware`](/id/4.0/ref/middleware/#django.middleware.locale.LocaleMiddleware) dalam pengaturan [`MIDDLEWARE`](/id/4.0/ref/settings/#std-setting-MIDDLEWARE) setting anda.

### Awalan bahasa dalam pola URL

#### `i18n_patterns(*urls, prefix_default_language=True)`

Fungsi ini dapat digunakan dalam URLconf akar dan Django akan otomatis menambahkan kode bahasa aktif saat ini pada semua pola URL ditentukan dalam [`i18n_patterns()`](#django.conf.urls.i18n.i18n_patterns).

Mengatur `prefix_default_language` menjadi `False` memindahkan awalan dari bahasa awalan ([`LANGUAGE_CODE`](/id/4.0/ref/settings/#std-setting-LANGUAGE_CODE)). Ini dapat berguna ketika menambahkan terjemahan pada situs yang ada sehingga URL saat ini tidak akan berubah.

Contoh pola URL:

```python
from django.conf.urls.i18n import i18n_patterns
from django.urls import include, path

from about import views as about_views
from news import views as news_views
from sitemap.views import sitemap

urlpatterns = [
    path('sitemap.xml', sitemap, name='sitemap-xml'),
]

news_patterns = ([
    path('', news_views.index, name='index'),
    path('category/<slug:slug>/', news_views.category, name='category'),
    path('<slug:slug>/', news_views.details, name='detail'),
], 'news')

urlpatterns += i18n_patterns(
    path('about/', about_views.main, name='about'),
    path('news/', include(news_patterns, namespace='news')),
)
```

Setelah menentukan pola URL ini, Django akan otomatis menambahkan awalan bahasa ke pola URL yang telah ditambahkan oleh fungsi `i18n_patterns`. Contoh:

```python
>>> from django.urls import reverse
>>> from django.utils.translation import activate

>>> activate('en')
>>> reverse('sitemap-xml')
'/sitemap.xml'
>>> reverse('news:index')
'/en/news/'

>>> activate('nl')
>>> reverse('news:detail', kwargs={'slug': 'news-slug'})
'/nl/news/news-slug/'
```

Dengan `prefix_default_language=False` dan `LANGUAGE_CODE='en'`, URL akan menjadi:

```python
>>> activate('en')
>>> reverse('news:index')
'/news/'

>>> activate('nl')
>>> reverse('news:index')
'/nl/news/'
```

> **Warning**
>
> [`i18n_patterns()`](#django.conf.urls.i18n.i18n_patterns) hanya diizinkan dalam akar URLconf. Menggunakan itu dalam sebuah URLconf disertakan akan melempar pengecualian [`ImproperlyConfigured`](/id/4.0/ref/exceptions/#django.core.exceptions.ImproperlyConfigured).

> **Warning**
>
> Memastikan bahwa anda tidak mempunyai pola URL bukan-awalan yang mungkin bertabrakan dengan awalan bahasa otomatis-ditambahkan.

### Menterjemahkan pola URL

Pola URL dapat juga ditandai dapat diterjemahkan menggunakan fungsi [`gettext_lazy()`](/id/4.0/ref/utils/#django.utils.translation.gettext_lazy). Contoh:

```python
from django.conf.urls.i18n import i18n_patterns
from django.urls import include, path
from django.utils.translation import gettext_lazy as _

from about import views as about_views
from news import views as news_views
from sitemaps.views import sitemap

urlpatterns = [
    path('sitemap.xml', sitemap, name='sitemap-xml'),
]

news_patterns = ([
    path('', news_views.index, name='index'),
    path(_('category/<slug:slug>/'), news_views.category, name='category'),
    path('<slug:slug>/', news_views.details, name='detail'),
], 'news')

urlpatterns += i18n_patterns(
    path(_('about/'), about_views.main, name='about'),
    path(_('news/'), include(news_patterns, namespace='news')),
)
```

Setelah anda telah membuat terjemahan, fungsi [`reverse()`](/id/4.0/ref/urlresolvers/#django.urls.reverse) akan mengembalikan URL dalam bahasa aktif. Contoh:

```python
>>> from django.urls import reverse
>>> from django.utils.translation import activate

>>> activate('en')
>>> reverse('news:category', kwargs={'slug': 'recent'})
'/en/news/category/recent/'

>>> activate('nl')
>>> reverse('news:category', kwargs={'slug': 'recent'})
'/nl/nieuws/categorie/recent/'
```

> **Warning**
>
> In most cases, it's best to use translated URLs only within a language code
> prefixed block of patterns (using
> [`i18n_patterns()`](#django.conf.urls.i18n.i18n_patterns)), to avoid the possibility
> that a carelessly translated URL causes a collision with a non-translated
> URL pattern.

### Membalikkan dalam cetakan-cetakan

Jika URL lokal mendapatkan terbalik dalam cetakan mereka selalu menggunakan bahasa saat ini. Untuk menautkan ke sebuah URL dalam bahasa lain gunakan etiket cetakan [`language`](#std-templatetag-language). Itu mengadakan bahasa yang diberikan dalam bagian cetakan tertutup:

```html+django
{% load i18n %}

{% get_available_languages as languages %}

{% translate "View this category in:" %}
{% for lang_code, lang_name in languages %}
    {% language lang_code %}
    <a href="{% url 'category' slug=category.slug %}">{{ lang_name }}</a>
    {% endlanguage %}
{% endfor %}
```

Etiket [`language`](#std-templatetag-language) mengharapkan kode bahasa sebagai hanya argumen.

## Lokalisasi: bagaimana membuat berkas-berkas bahasa

Setelah harfiah string dari sebuah aplikasi telah dietiketkan untuk terjemahan akhir, terjemahan itu sendiri butuh ditulis (atau diambil). Ini adalah bagaimana itu bekerja.

### Berkas pesan

langkah pertama adalah membuat sebuah [message file](/id/4.0/topics/i18n/#term-message-file) untuk bahasa baru. Sebuah berkas pesan adalah sebuah berkas teks-polos, mewakili bahasa tunggal, yang mengandung semua string terjemahan tersedia dan bagaimana mereka harus dibawakan dalam bahasa diberikan. Berkas-berkas pesan mempunyai ekstensi berkas `.po`.

Django datang dengan sebuah alat, `django-admin makemessages 1`, yang mengotomatiskan pembuatan dan perawatan dari berkas-berkas ini.

> **Utilitas gettext**
>
> Perintah `makemessages` (dan `compilemessages` diobrolkan kemudian) menggunakan perintah dari kumpulan alat gettext GNU: `xgettext`, `msgfmt`, `msgmerge` dan `msguniq`.
>
> Versi minimal dari utilitas `gettext` didukung adalah 0.15.

Untuk membuat atau memperbaharui sebuah berkas pesan, jalankan perintah ini:

```python
django-admin makemessages -l de
```

...dimana `de` adalah [locale name](/id/4.0/topics/i18n/#term-locale-name) untuk berkas pesan anda ingin buat. Sebagai contoh, `pt_BR` untuk Brasil Portugis, `de_AT` untuk Austria Jerman atau `id` untuk Indonesia.

Tulisan ini harus berjalan dari satu atau dua tempat:

- Direktori akar untuk proyek Django anda (satu yang mengandung `manage.py`).
- Direktori akar dari satu dari aplikasi Django anda.

Tulisan berjalan terhadap pohon sumber proyek anda atau pohon sumber aplikasi anda dan menarik semua string ditandai untuk terjemahan (lihat [Bagaimana Django menemukan terjemahan](#how-django-discovers-translations) dan pastikan [`LOCALE_PATHS`](/id/4.0/ref/settings/#std-setting-LOCALE_PATHS) dikonfigurasi dengan benar). Itu membuat (atau memperbaharui) sebuah berkas pesan dalam direktori `locale/LANG/LC_MESSAGES`. Dalam contoh `de`, berkas akan berupa `locale/de/LC_MESSAGES/django.po`.

Ketika anda menjalankan `makemessages` dari direktori akar dari proyek anda, string dikeluarkan akan secara otomatis disebarkan pada berkas-berkas pesan yang sesuai. Yaitu, string dikeluarkan dari sebuah berkas dari sebuah aplikasi mengandung direktori `locale` akan masuk dalam berkas pesan dibawah direktori itu. Sebuah string dikeluarkan dari sebuah berkas dari sebuah aplikasi tanpa direktori `locale` akan salah satu masuk dalam berkas pesan dibawah direktori didaftar pertama dalam [`LOCALE_PATHS`](/id/4.0/ref/settings/#std-setting-LOCALE_PATHS) atau akan membangkitkan sebuah kesalahan jika [`LOCALE_PATHS`](/id/4.0/ref/settings/#std-setting-LOCALE_PATHS) adalah kosong.

Secara awalan `django-admin makemessages 1` menguji setiap berkas yang mempunyai ekstensi berkas `.html`, `.txt` atau `.py`. Jika anda ingin menimpa awalan itu, gunakan pilihan `--extension 2` atau `-e` untuk menentukan ekstensi berkas untuk diuji:

```python
django-admin makemessages -l de -e txt
```

Mmeisahkan banyak ekstensi dengan koma dan/atau menggunakan `-e` atau `--extension` berkali-kali:

```python
django-admin makemessages -l de -e html,txt -e xml
```

> **Warning**
>
> Ketika [creating message files from JavaScript source code](#creating-message-files-from-js-code) anda butuh menggunakan ranah khusus `djangojs`, **bukan** `-e js`.

> **Menggunakan cetakan Jinja2?**
>
> [`makemessages`](/id/4.0/ref/django-admin/#django-admin-makemessages) tidak memahami sintaksis dari cetakan-cetakan Jinja2. Untuk mengeluarkan string dari sebuah proyek mengandung cetakan-cetakan Jinja2, gunakan [Message Extracting](https://babel.pocoo.org/en/latest/messages.html#message-extraction) dari [Babel](https://babel.pocoo.org/en/latest/) sebagai gantinya.
>
> Ini adalah contoh berkas konfigurasi `babel.cfg`:
>
> ```python
> # Extraction from Python source files
> [python: **.py]
>
> # Extraction from Jinja2 templates
> [jinja2: **.jinja]
> extensions = jinja2.ext.with_
> ```
>
> Pastikan anda mendaftarkan semua ekstensi anda sedang gunakan! Sebaliknya Babel tidak akan mengenali etiket-etiket ditentukan oleh ekstensi-ekstensi ini dan akan mengabaikan cetakan-cetakan Jinja2 mengandung mereka sepenuhnya.
>
> Babel menyediakan fitur-fitur mirip pada [`makemessages`](/id/4.0/ref/django-admin/#django-admin-makemessages), dapat mengganti itu secara umum, dan tidak bergantung pada `gettext`. Untuk informasi lebih, baca dokumentasinya tentang [working with message catalogs](https://babel.pocoo.org/en/latest/messages.html).

> **Tidak ada gettext?**
>
> If you don't have the `gettext` utilities installed,
> [`makemessages`](/id/4.0/ref/django-admin/#django-admin-makemessages) will create empty files. If that's the case, either
> install the `gettext` utilities or copy the English message file
> (`locale/en/LC_MESSAGES/django.po`) if available and use it as a starting
> point, which is an empty translation file.

> **Bekerja pada WIndows?**
>
> Jika anda sedang menggunakan Windows dan butuh memasang utilitas gettext GNU sehingga [`makemessages`](/id/4.0/ref/django-admin/#django-admin-makemessages) bekerja, lihat [gettext pada Windows](#gettext-on-windows) untuk informasi lebih.

Each `.po` file contains a small bit of metadata, such as the translation
maintainer's contact information, but the bulk of the file is a list of
**messages** -- mappings between translation strings and the actual translated
text for the particular language.

Sebagai contoh, jika aplikasi Django anda mengandung string terjemahan untuk teks `"Welcome to my site."`, seperti itu:

```python
_("Welcome to my site.")
```

...kemudian `django-admin makemessages 1` akan membuat sebuah berkas `.po` mengandung potongan berikut -- sebuah pesan:

```po
#: path/to/python/module.py:23
msgid "Welcome to my site."
msgstr ""
```

Penjelasan cepat:

- `msgid` adalah string terjemahan, yang muncul dalam sumber. Jangan rubah itu.
- `msgstr` adalah dimana anda menaruh terjemahan bahasa-khusus. Itu mulai kosong, jadi itu adalah tanggungjawab anda merubah itu. pastikan anda menjaga kutipan disekitar terjemahan anda.
- Sebagai sebuah kenyamanan, setiap pesan termasuk, dalam bentuk dari baris komentar diawali dengan `#` dan bertempat diatas baris `msgid`, nama berkas dan nomor baris dari mana string terjemahan telah dikumpulkan sedikit demi sedikit.

Pesan-pesan panjang adalah kasus khusus. Ada, string pertama secara langsung setelah `msgstr` (atau `msgid`) adalah string kosong. Kemudian isi itu sendiri akan ditulis terhadap sedikit baris selanjutnya sebagai satu string per baris. String-string tersebut secara langsung disatukan. Jangan lupa buntutan ruang kosong dalam string; jika tidak, mereka akan dilekatkan bersama-sama tanpa ruang kosong!

> **Pikirkan charset anda**
>
> Due to the way the `gettext` tools work internally and because we want to
> allow non-ASCII source strings in Django's core and your applications, you
> **must** use UTF-8 as the encoding for your PO files (the default when PO
> files are created).  This means that everybody will be using the same
> encoding, which is important when Django processes the PO files.

> **Fuzzy entries**
>
> [`makemessages`](/id/4.0/ref/django-admin/#django-admin-makemessages) sometimes generates translation entries marked as
> fuzzy, e.g. when translations are inferred from previously translated
> strings. By default, fuzzy entries are **not** processed by
> [`compilemessages`](/id/4.0/ref/django-admin/#django-admin-compilemessages).

Untuk menguji kembali semua kode sumber da cetakan untuk string terjemahan baru dan memperbaharui semua berkas pesan untuk *semua* bahasa, jalankan ini:

```python
django-admin makemessages -a
```

### Menyusun berkas-berkas pesan

Setelah anda membuat berkas pesan anda -- dan setiap kali anda membuat perubahan ke itu -- anda akan butuh menyusun itu menjadi bentuk lebih efesien, untuk digunakan oleh `gettext`. Lakukan ini dengan alat `django-admin compilemessages 1`.

Alat ini berjalan terhadap semua berkas `.po` tersedia dan membuat berkas `.mo`, yang adalah berkas biner dioptimalkan untu digunakan oleh `gettext`. Dalam direktori sama dari mana anda menjalankan `django-admin makemessages 1`, jalankan `django-admin compilemessages 2` seperti ini:

```python
django-admin compilemessages
```

Itu dia, terjemahan anda siap digunakan.

> **Bekerja pada WIndows?**
>
> Jika anda sedang menggunakan Windows dan butuh memasang alat gettext GNU sehingga `django-admin compilemessages 1` bekerja lihat [gettext pada Windows](#gettext-on-windows) untuk informasi lebih.

> **berkas-berkas .po: Penggunaan penyandian dan BOM.**
>
> Django only supports `.po` files encoded in UTF-8 and without any BOM
> (Byte Order Mark) so if your text editor adds such marks to the beginning of
> files by default then you will need to reconfigure it.

### Pemecahan masalah: `gettext()` tidak benar mengenali `python-format` dalam string-string dengan tanda persen

In some cases, such as strings with a percent sign followed by a space and a
[string conversion type](https://docs.python.org/3/library/stdtypes.html#old-string-formatting) (e.g.
`_("10% interest")`), [`gettext()`](/id/4.0/ref/utils/#django.utils.translation.gettext) incorrectly
flags strings with `python-format`.

If you try to compile message files with incorrectly flagged strings, you'll
get an error message like `number of format specifications in 'msgid' and
'msgstr' does not match` or `'msgstr' is not a valid Python format string,
unlike 'msgid'`.

Untuk memecahkan ini, anda dapat meloloskan tanda persen dengan menambahkan tanda persen kedua:

```python
from django.utils.translation import gettext as _
output = _("10%% interest")
```

Atau anda dapat menggunakan `no-python-format` sehingga semua tanda persen diperlakukan sebagai harfiah.

```python
# xgettext:no-python-format
output = _("10% interest")
```

### Membuat berkas pesan dari kode sumber JavaScript

You create and update the message files the same way as the other Django message
files -- with the [`django-admin makemessages`](/id/4.0/ref/django-admin/#django-admin-makemessages) tool.
The only difference is you need to explicitly specify what in gettext parlance
is known as a domain in this case the `djangojs` domain, by providing a `-d
djangojs` parameter, like this:

```python
django-admin makemessages -d djangojs -l de
```

This would create or update the message file for JavaScript for German. After
updating message files, run [`django-admin compilemessages`](/id/4.0/ref/django-admin/#django-admin-compilemessages) the same way as you do with normal Django message files.

### `gettext` pada Windows

This is only needed for people who either want to extract message IDs or compile
message files (`.po`). Translation work itself involves editing existing
files of this type, but if you want to create your own message files, or want
to test or compile a changed message file, download [a precompiled binary
installer](https://mlocati.github.io/articles/gettext-iconv-windows.html).

You may also use `gettext` binaries you have obtained elsewhere, so long as
the `xgettext --version` command works properly. Do not attempt to use Django
translation utilities with a `gettext` package if the command `xgettext
--version` entered at a Windows command prompt causes a popup window saying
"xgettext.exe has generated errors and will be closed by Windows".

### Menyesuaikan perintah `makemessages`

Jika anda ingin melewatkan parameter tambahan pada `xgettext`, anda butuh membuat perintah [`makemessages`](/id/4.0/ref/django-admin/#django-admin-makemessages) penyesuaian dan menimpa atribut `xgettext_options` nya:

```python
from django.core.management.commands import makemessages

class Command(makemessages.Command):
    xgettext_options = makemessages.Command.xgettext_options + ['--keyword=mytrans']
```

Jika anda butuh lebih keluwesan, anda dapat juga menambahkan argumen baru ke perintah perintah [`makemessages`](/id/4.0/ref/django-admin/#django-admin-makemessages)  anda:

```python
from django.core.management.commands import makemessages

class Command(makemessages.Command):

    def add_arguments(self, parser):
        super().add_arguments(parser)
        parser.add_argument(
            '--extra-keyword',
            dest='xgettext_keywords',
            action='append',
        )

    def handle(self, *args, **options):
        xgettext_keywords = options.pop('xgettext_keywords')
        if xgettext_keywords:
            self.xgettext_options = (
                makemessages.Command.xgettext_options[:] +
                ['--keyword=%s' % kwd for kwd in xgettext_keywords]
            )
        super().handle(*args, **options)
```

## Bermacam-macam

### Tampilan mengalihkan `set_language`

#### `set_language(request)`

As a convenience, Django comes with a view, [`django.views.i18n.set_language()`](#django.views.i18n.set_language),
that sets a user's language preference and redirects to a given URL or, by default,
back to the previous page.

Aktifkan tampilan ini dengan menambahkan baris berikut ke URLconf anda:

```python
path('i18n/', include('django.conf.urls.i18n')),
```

(Catat bahwa contoh ini membuat tampilan tersedia pada `/i18n/setlang/`.)

> **Warning**
>
> pastikan bahwa anda tidak menyertakan URL diatas dalam [`i18n_patterns()`](#django.conf.urls.i18n.i18n_patterns) \- itu butuh menjadi bahasa-berdiri-sendiri untuk bekerja dengan benar.

The view expects to be called via the `POST` method, with a `language`
parameter set in request. If session support is enabled, the view saves the
language choice in the user's session. It also saves the language choice in a
cookie that is named `django_language` by default. (The name can be changed
through the [`LANGUAGE_COOKIE_NAME`](/id/4.0/ref/settings/#std-setting-LANGUAGE_COOKIE_NAME) setting.)

After setting the language choice, Django looks for a `next` parameter in the
`POST` or `GET` data. If that is found and Django considers it to be a safe
URL (i.e. it doesn't point to a different host and uses a safe scheme), a
redirect to that URL will be performed. Otherwise, Django may fall back to
redirecting the user to the URL from the `Referer` header or, if it is not
set, to `/`, depending on the nature of the request:

- If the request accepts HTML content (based on its `Accept` HTTP header),
  the fallback will always be performed.
- If the request doesn't accept HTML, the fallback will be performed only if
  the `next` parameter was set. Otherwise a 204 status code (No Content) will
  be returned.

Ini adalah contoh kode cetakan HTML:

```html+django
{% load i18n %}

<form action="{% url 'set_language' %}" method="post">{% csrf_token %}
    <input name="next" type="hidden" value="{{ redirect_to }}">
    <select name="language">
        {% get_current_language as LANGUAGE_CODE %}
        {% get_available_languages as LANGUAGES %}
        {% get_language_info_list for LANGUAGES as languages %}
        {% for language in languages %}
            <option value="{{ language.code }}"{% if language.code == LANGUAGE_CODE %} selected{% endif %}>
                {{ language.name_local }} ({{ language.code }})
            </option>
        {% endfor %}
    </select>
    <input type="submit" value="Go">
</form>
```

Dalam contoh ini, Django mencari URL dari halaman pada dimana pengguna akan dialihkan dalam variabel konteks `redirect_to`.

### Secara jelas mengatur bahasa aktif

You may want to set the active language for the current session explicitly. Perhaps
a user's language preference is retrieved from another system, for example.
You've already been introduced to [`django.utils.translation.activate()`](/id/4.0/ref/utils/#django.utils.translation.activate). That
applies to the current thread only. To persist the language for the entire
session in a cookie, set the [`LANGUAGE_COOKIE_NAME`](/id/4.0/ref/settings/#std-setting-LANGUAGE_COOKIE_NAME) cookie on the
response:

```python
from django.conf import settings
from django.http import HttpResponse
from django.utils import translation
user_language = 'fr'
translation.activate(user_language)
response = HttpResponse(...)
response.set_cookie(settings.LANGUAGE_COOKIE_NAME, user_language)
```

You would typically want to use both: [`django.utils.translation.activate()`](/id/4.0/ref/utils/#django.utils.translation.activate)
changes the language for this thread, and setting the cookie makes this
preference persist in future requests.

### Menggunakan terjemahan diluar tampilan dan cetakan

While Django provides a rich set of i18n tools for use in views and templates,
it does not restrict the usage to Django-specific code. The Django translation
mechanisms can be used to translate arbitrary texts to any language that is
supported by Django (as long as an appropriate translation catalog exists, of
course). You can load a translation catalog, activate it and translate text to
language of your choice, but remember to switch back to original language, as
activating a translation catalog is done on per-thread basis and such change
will affect code running in the same thread.

Sebagai contoh:

```python
from django.utils import translation

def welcome_translated(language):
    cur_language = translation.get_language()
    try:
        translation.activate(language)
        text = translation.gettext('welcome')
    finally:
        translation.activate(cur_language)
    return text
```

Calling this function with the value `'de'` will give you `"Willkommen"`,
regardless of [`LANGUAGE_CODE`](/id/4.0/ref/settings/#std-setting-LANGUAGE_CODE) and language set by middleware.

Fungsi-fungsi untuk minat tertentu adalah [`django.utils.translation.get_language()`](/id/4.0/ref/utils/#django.utils.translation.get_language) yang mengembalikan bahasa digunakan dalam thread saat ini, [`django.utils.translation.activate()`](/id/4.0/ref/utils/#django.utils.translation.activate) yang mengaktifkan sebuah katalog terjemahan untuk thread saat ini, dan [`django.utils.translation.check_for_language()`](/id/4.0/ref/utils/#django.utils.translation.check_for_language) yang akan memeriksa jika bahasa diberikan adalah didukung oleh Django.

Untuk membantu menulis lebih kode ringkas, ada juga sebuah pengelola konteks [`django.utils.translation.override()`](/id/4.0/ref/utils/#django.utils.translation.override) yang menyimpan bahasa sat ini pada saat masuk dan menyimpan kembali itu pada saat keluar. Dengan itu, contoh diatas menjadi:

```python
from django.utils import translation

def welcome_translated(language):
    with translation.override(language):
        return translation.gettext('welcome')
```

### Cookie bahasa

Sejumlah pengatuan dapat digunakan untuk menyesuaikan pilihan cookie bahasa:

- [`LANGUAGE_COOKIE_NAME`](/id/4.0/ref/settings/#std-setting-LANGUAGE_COOKIE_NAME)
- [`LANGUAGE_COOKIE_AGE`](/id/4.0/ref/settings/#std-setting-LANGUAGE_COOKIE_AGE)
- [`LANGUAGE_COOKIE_DOMAIN`](/id/4.0/ref/settings/#std-setting-LANGUAGE_COOKIE_DOMAIN)
- [`LANGUAGE_COOKIE_HTTPONLY`](/id/4.0/ref/settings/#std-setting-LANGUAGE_COOKIE_HTTPONLY)
- [`LANGUAGE_COOKIE_PATH`](/id/4.0/ref/settings/#std-setting-LANGUAGE_COOKIE_PATH)
- [`LANGUAGE_COOKIE_SAMESITE`](/id/4.0/ref/settings/#std-setting-LANGUAGE_COOKIE_SAMESITE)
- [`LANGUAGE_COOKIE_SECURE`](/id/4.0/ref/settings/#std-setting-LANGUAGE_COOKIE_SECURE)

## Catatan penerapan

### Keahlian khusus dari terjemahan Django

Django's translation machinery uses the standard `gettext` module that comes
with Python. If you know `gettext`, you might note these specialties in the
way Django does translation:

- The string domain is `django` or `djangojs`. This string domain is
  used to differentiate between different programs that store their data
  in a common message-file library (usually `/usr/share/locale/`). The
  `django` domain is used for Python and template translation strings
  and is loaded into the global translation catalogs. The `djangojs`
  domain is only used for JavaScript translation catalogs to make sure
  that those are as small as possible.
- Django tidak menggunakan `xgettext` sendiri. Itu menggunakan Python dibungkus disekitar `xgettext` dan `msgfmt`. Ini kebanyakan untuk kenyamanan.

### Bagaimana Django menemukan pilihan bahasa

Once you've prepared your translations -- or, if you want to use the
translations that come with Django -- you'll need to activate translation for
your app.

Dbelakang layar, Django mempunyai model yang sagat elastis dari memutuskan bahasa mana harus digunakan -- pemasangan-lebar, untuk pengguna tertentu, atau keduanya.

Untuk menyetel sebuah pilihan bahasa pemasangan-luas, setel [`LANGUAGE_CODE`](/id/4.0/ref/settings/#std-setting-LANGUAGE_CODE). Django menggunakan bahasa ini sebagai terjemahan awalan -- usaha akhir jika tidak ada terjemahan yang cocok ditemukan melalui satu dari metode-metode dengan middleware lokal (lihat dibawah).

Jika yang anda inginkan adalah menjalankan Django dengan bahasa asli anda semua anda butuhkan untuk lakukan adalah menyetel [`LANGUAGE_CODE`](/id/4.0/ref/settings/#std-setting-LANGUAGE_CODE) dan memastikan message files 1 sesuai dan versi tersusun mereka (`.mo`) ada.

Jika anda ingin membiarkan setiap pengguna perorangan  menentukan bahasa mana mereka pilih, kemudian anda juga butuh menggunakan `LocaleMiddleware`. `LocaleMiddleware` mengadakan pilihan bahasa berdasarkan pada data dari permintaan. Itu menyesuaikan isi untuk setiap pengguna.

Untuk menggunakan `LocaleMiddleware`, tambah `'django.middleware.locale.LocaleMiddleware'`  ke pengaturan [`MIDDLEWARE`](/id/4.0/ref/settings/#std-setting-MIDDLEWARE) anda. Karena  urutan middleware penting, ikuti panduan berikut:

- Pastikan itu adalah satu dari middleware pertama dipasang.
- It should come after `SessionMiddleware`, because `LocaleMiddleware`
  makes use of session data. And it should come before `CommonMiddleware`
  because `CommonMiddleware` needs an activated language in order
  to resolve the requested URL.
- Jika anda menggunakan `CacheMiddleware`, taruh `LocaleMiddleware` setelah itu.

Sebagai contoh, [`MIDDLEWARE`](/id/4.0/ref/settings/#std-setting-MIDDLEWARE) anda mungkin terlihat seperti ini:

```python
MIDDLEWARE = [
   'django.contrib.sessions.middleware.SessionMiddleware',
   'django.middleware.locale.LocaleMiddleware',
   'django.middleware.common.CommonMiddleware',
]
```

(Untuk lebih pada middleware, lihat middleware documentation 1.)

`LocaleMiddleware` mencoba menentukan pilihan bahasa pengguna dengan mengikuti algoritma ini:

- First, it looks for the language prefix in the requested URL.  This is
  only performed when you are using the `i18n_patterns` function in your
  root URLconf. See [Internasionalisasi: dalam pola URL](#url-internationalization) for more information
  about the language prefix and how to internationalize URL patterns.
- Failing that, it looks for a cookie.

  Nama dari cookie digunakan adalah disetel oleh pengaturan [`LANGUAGE_COOKIE_NAME`](/id/4.0/ref/settings/#std-setting-LANGUAGE_COOKIE_NAME). (Nama awalan adalah `django_language`.)
- Failing that, it looks at the `Accept-Language` HTTP header. This
  header is sent by your browser and tells the server which language(s) you
  prefer, in order by priority. Django tries each language in the header
  until it finds one with available translations.
- Failing that, it uses the global [`LANGUAGE_CODE`](/id/4.0/ref/settings/#std-setting-LANGUAGE_CODE) setting.

Catatan:

- In each of these places, the language preference is expected to be in the
  standard [language format](/id/4.0/topics/i18n/#term-language-code), as a string. For example,
  Brazilian Portuguese is `pt-br`.
- If a base language is available but the sublanguage specified is not,
  Django uses the base language. For example, if a user specifies `de-at`
  (Austrian German) but Django only has `de` available, Django uses
  `de`.
- Only languages listed in the [`LANGUAGES`](/id/4.0/ref/settings/#std-setting-LANGUAGES) setting can be selected.
  If you want to restrict the language selection to a subset of provided
  languages (because your application doesn't provide all those languages),
  set [`LANGUAGES`](/id/4.0/ref/settings/#std-setting-LANGUAGES) to a list of languages. For example:

  ```python
  LANGUAGES = [
      ('de', _('German')),
      ('en', _('English')),
  ]
  ```

  This example restricts languages that are available for automatic
  selection to German and English (and any sublanguage, like `de-ch` or
  `en-us`).
- If you define a custom [`LANGUAGES`](/id/4.0/ref/settings/#std-setting-LANGUAGES) setting, as explained in the
  previous bullet, you can mark the language names as translation strings
  -- but use [`gettext_lazy()`](/id/4.0/ref/utils/#django.utils.translation.gettext_lazy) instead of
  [`gettext()`](/id/4.0/ref/utils/#django.utils.translation.gettext) to avoid a circular import.

  Ini adalah contoh sebuah berkas pengaturan:

  ```python
  from django.utils.translation import gettext_lazy as _

  LANGUAGES = [
      ('de', _('German')),
      ('en', _('English')),
  ]
  ```

Once `LocaleMiddleware` determines the user's preference, it makes this
preference available as `request.LANGUAGE_CODE` for each
[`HttpRequest`](/id/4.0/ref/request-response/#django.http.HttpRequest). Feel free to read this value in your view
code. Here's an example:

```python
from django.http import HttpResponse

def hello_world(request, count):
    if request.LANGUAGE_CODE == 'de-at':
        return HttpResponse("You prefer to read Austrian German.")
    else:
        return HttpResponse("You prefer to read another language.")
```

Catat bahwa, dengan terjemahan tetap (tanpa-middleware), bahasa di `settings.LANGUAGE_CODE`, selagi dengan terjemahan dinamis (middleware), itu di `request.LANGUAGE_CODE`.

### Bagaimana Django menemukan terjemahan

At runtime, Django builds an in-memory unified catalog of literals-translations.
To achieve this it looks for translations by following this algorithm regarding
the order in which it examines the different file paths to load the compiled
[message files](/id/4.0/topics/i18n/#term-message-file) (`.mo`) and the precedence of multiple
translations for the same literal:

1. The directories listed in [`LOCALE_PATHS`](/id/4.0/ref/settings/#std-setting-LOCALE_PATHS) have the highest
   precedence, with the ones appearing first having higher precedence than
   the ones appearing later.
2. Then, it looks for and uses if it exists a `locale` directory in each
   of the installed apps listed in [`INSTALLED_APPS`](/id/4.0/ref/settings/#std-setting-INSTALLED_APPS).  The ones
   appearing first have higher precedence than the ones appearing later.
3. Akhirnya, terjemahan dasar disediakan-Django dalam `django/conf/locale` digunakan sebagai sebuah fallback.

> **See also**
>
> The translations for literals included in JavaScript assets are looked up
> following a similar but not identical algorithm. See
> [`JavaScriptCatalog`](#django.views.i18n.JavaScriptCatalog) for more details.
>
> You can also put [custom format files](/id/4.0/topics/i18n/formatting/#custom-format-files) in the
> [`LOCALE_PATHS`](/id/4.0/ref/settings/#std-setting-LOCALE_PATHS) directories if you also set
> [`FORMAT_MODULE_PATH`](/id/4.0/ref/settings/#std-setting-FORMAT_MODULE_PATH).

In all cases the name of the directory containing the translation is expected to
be named using [locale name](/id/4.0/topics/i18n/#term-locale-name) notation. E.g. `de`, `pt_BR`, `es_AR`,
etc. Untranslated strings for territorial language variants use the translations
of the generic language. For example, untranslated `pt_BR` strings use `pt`
translations.

This way, you can write applications that include their own translations, and
you can override base translations in your project. Or, you can build a big
project out of several apps and put all translations into one big common
message file specific to the project you are composing. The choice is yours.

Semua gudang berkas pesan tersusun cara sama. Mereka adalah:

- Semua jalur-jalur terdaftar dalam [`LOCALE_PATHS`](/id/4.0/ref/settings/#std-setting-LOCALE_PATHS) di berkas pengaturan anda adalah dicari untuk `1/LC_MESSAGES/django.(po|mo)`
- $APPPATH/locale/\<language\>/LC\_MESSAGES/django.(po|mo)\`\`
- `$PYTHONPATH/django/conf/locale/<language>/LC_MESSAGES/django.(po|mo)`

Untuk membuat berkas pesan, anda menggunakan , anda menggunakan alat [`django-admin makemessages`](/id/4.0/ref/django-admin/#django-admin-makemessages) . Dan anda menggunakan [`django-admin compilemessages`](/id/4.0/ref/django-admin/#django-admin-compilemessages) untuk menghasilkan berkas-berkas biner `.mo` yang digunakan oleh `gettext`.

Anda dapat juga menjalankan `django-admin compilemessages --settings=path.to.settings 1` untuk membuat penyusun mengolah semua direktori dalam pengaturan [`LOCALE_PATHS`](/id/4.0/ref/settings/#std-setting-LOCALE_PATHS) anda.

### Menggunakan bahasa dasar bukan-Inggris

Django membuat anggapan umum bahwa string asli dalam proyek terjemahan ditulis dalam Inggris. Anda dapat memilih bahasa lain, tetapi harus waspada dari batasan tertentu:

- `gettext` only provides two plural forms for the original messages, so you
  will also need to provide a translation for the base language to include all
  plural forms if the plural rules for the base language are different from
  English.
- When an English variant is activated and English strings are missing, the
  fallback language will not be the [`LANGUAGE_CODE`](/id/4.0/ref/settings/#std-setting-LANGUAGE_CODE) of the project,
  but the original strings. For example, an English user visiting a site with
  [`LANGUAGE_CODE`](/id/4.0/ref/settings/#std-setting-LANGUAGE_CODE) set to Spanish and original strings written in
  Russian will see Russian text rather than Spanish.
