From a1b8ab96ac6a37c96af52cbfe60579e26e5ac209 Mon Sep 17 00:00:00 2001 From: Arthur Date: Thu, 3 Aug 2023 20:16:23 +0700 Subject: [PATCH] 13319 fix typo --- docs/development/internationalization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development/internationalization.md b/docs/development/internationalization.md index 2cf2ef76d..df49aaa65 100644 --- a/docs/development/internationalization.md +++ b/docs/development/internationalization.md @@ -13,7 +13,7 @@ NetBox follows the [Django translation guide](https://docs.djangoproject.com/en/ ## Models 1. Import gettext_lazy. -2. Define both verbose_name and verbose_name_plural in the model Meta and wrap them strings with the gettext_lazy shortcut. +2. Define both verbose_name and verbose_name_plural in the model Meta and wrap the strings with the gettext_lazy shortcut. 3. Make sure all model fields have a verbose_name defined. 4. Wrap all verbose_name and help_text fields with the gettext_lazy shortcut.