-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow to translate message descriptions
- Loading branch information
1 parent
7341484
commit 0609471
Showing
9 changed files
with
134 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from typing import Mapping | ||
|
||
from django_healthy._compat import TypeAlias | ||
|
||
MessageDict: TypeAlias = Mapping[str, str] |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# SOME DESCRIPTIVE TITLE. | ||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER | ||
# This file is distributed under the same license as the PACKAGE package. | ||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. | ||
# | ||
#, fuzzy | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: \n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2024-10-11 21:44+0000\n" | ||
"PO-Revision-Date: 2024-10-11 18:58-0300\n" | ||
"Last-Translator: \n" | ||
"Language-Team: \n" | ||
"Language: en\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
"X-Generator: Poedit 3.5\n" | ||
|
||
#: health_checks/cache.py:16 | ||
msgid "Got unexpected value" | ||
msgstr "Got unexpected value" | ||
|
||
#: health_checks/db.py:42 | ||
msgid "Could not insert" | ||
msgstr "Could not insert" | ||
|
||
#: health_checks/db.py:43 | ||
msgid "Could not update" | ||
msgstr "Could not update" | ||
|
||
#: health_checks/db.py:44 | ||
msgid "Could not delete" | ||
msgstr "Could not delete" | ||
|
||
#: health_checks/storage.py:18 | ||
msgid "File missing" | ||
msgstr "File missing" | ||
|
||
#: health_checks/storage.py:19 | ||
msgid "Could not delete file" | ||
msgstr "Could not delete file" |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# SOME DESCRIPTIVE TITLE. | ||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER | ||
# This file is distributed under the same license as the PACKAGE package. | ||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. | ||
# | ||
#, fuzzy | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: \n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2024-10-11 21:53+0000\n" | ||
"PO-Revision-Date: 2024-10-11 19:01-0300\n" | ||
"Last-Translator: \n" | ||
"Language-Team: \n" | ||
"Language: pt_BR\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||
"X-Generator: Poedit 3.5\n" | ||
|
||
#: health_checks/cache.py:16 | ||
msgid "Got unexpected value" | ||
msgstr "Valor inesperado" | ||
|
||
#: health_checks/db.py:42 | ||
msgid "Could not insert" | ||
msgstr "Falha ao inserir" | ||
|
||
#: health_checks/db.py:43 | ||
msgid "Could not update" | ||
msgstr "Falha ao atualizar" | ||
|
||
#: health_checks/db.py:44 | ||
msgid "Could not delete" | ||
msgstr "Falha ao excluir" | ||
|
||
#: health_checks/storage.py:18 | ||
msgid "File missing" | ||
msgstr "Arquivo não encontrado" | ||
|
||
#: health_checks/storage.py:19 | ||
msgid "Could not delete file" | ||
msgstr "Falha ao excluir arquivo" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters