-
Notifications
You must be signed in to change notification settings - Fork 47
Add Initial Translation to Brazilian Portuguese #211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
dannluciano
wants to merge
1
commit into
RealOrangeOne:master
Choose a base branch
from
dannluciano:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -1,10 +1,11 @@ | ||
| from django.apps import AppConfig | ||
| from django.utils.translation import pgettext_lazy | ||
|
|
||
|
|
||
| class TasksAppConfig(AppConfig): | ||
| name = "django_tasks.backends.database" | ||
| label = "django_tasks_database" | ||
| verbose_name = "Tasks Database Backend" | ||
| verbose_name = pgettext_lazy("Database Backend", "Tasks Database Backend") | ||
|
|
||
| def ready(self) -> None: | ||
| from . import signal_handlers # noqa |
87 changes: 87 additions & 0 deletions
87
django_tasks/backends/database/locale/pt_BR/LC_MESSAGES/django.po
This file contains hidden or 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,87 @@ | ||
| # SOME DESCRIPTIVE TITLE. | ||
| # Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER | ||
| # This file is distributed under the same license as the PACKAGE package. | ||
| # Dann Luciano <[email protected]>, 2025. | ||
| # | ||
| #, fuzzy | ||
| msgid "" | ||
| msgstr "" | ||
| "Project-Id-Version: PACKAGE VERSION\n" | ||
| "Report-Msgid-Bugs-To: \n" | ||
| "POT-Creation-Date: 2025-12-14 19:48-0600\n" | ||
| "PO-Revision-Date: 2025-12-14 19:48-0600\n" | ||
| "Last-Translator: Dann Luciano <[email protected]>\n" | ||
| "Language-Team: LANGUAGE <[email protected]>\n" | ||
| "Language: \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" | ||
| #: apps.py:8 | ||
| msgctxt "Database Backend" | ||
| msgid "Tasks Database Backend" | ||
| msgstr "Tarefas no Banco de Dados" | ||
|
|
||
| #: models.py:94 | ||
| msgid "status" | ||
| msgstr "estatus" | ||
|
|
||
| #: models.py:100 | ||
| msgid "enqueued at" | ||
| msgstr "enfileirado em" | ||
|
|
||
| #: models.py:101 | ||
| msgid "started at" | ||
| msgstr "iniciou em" | ||
|
|
||
| #: models.py:102 | ||
| msgid "finished at" | ||
| msgstr "finalizou em" | ||
|
|
||
| #: models.py:104 | ||
| msgid "args kwargs" | ||
| msgstr "" | ||
|
|
||
| #: models.py:106 | ||
| msgid "priority" | ||
| msgstr "prioridade" | ||
|
|
||
| #: models.py:108 | ||
| msgid "task path" | ||
| msgstr "caminho da tarefa" | ||
|
|
||
| #: models.py:109 | ||
| msgid "worker id" | ||
| msgstr "id do trabalhador" | ||
|
|
||
| #: models.py:112 | ||
| msgid "queue name" | ||
| msgstr "nome da fila" | ||
|
|
||
| #: models.py:114 | ||
| msgid "backend name" | ||
| msgstr "nome do motor" | ||
|
|
||
| #: models.py:116 | ||
| msgid "run after" | ||
| msgstr "executar depois" | ||
|
|
||
| #: models.py:118 | ||
| msgid "return value" | ||
| msgstr "valor de retorno" | ||
|
|
||
| #: models.py:120 | ||
| msgid "exception class path" | ||
| msgstr "caminho da classe de exceção" | ||
|
|
||
| #: models.py:121 | ||
| msgid "traceback" | ||
| msgstr "" | ||
|
|
||
| #: models.py:127 | ||
| msgid "Task Result" | ||
| msgstr "Resultado da Tarefa" | ||
|
|
||
| #: models.py:128 | ||
| msgid "Task Results" | ||
| msgstr "Resultados das Tarefas" | ||
This file contains hidden or 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,108 @@ | ||
| # 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 protected]>, YEAR. | ||
| # | ||
| #, fuzzy | ||
| msgid "" | ||
| msgstr "" | ||
| "Project-Id-Version: 0.10.0\n" | ||
| "Report-Msgid-Bugs-To: \n" | ||
| "POT-Creation-Date: 2025-12-14 19:45-0600\n" | ||
| "PO-Revision-Date: 2025-12-14 22:34-0300\n" | ||
| "Last-Translator: Dann Luciano <[email protected]>\n" | ||
| "Language-Team: LANGUAGE <[email protected]>\n" | ||
| "Language: \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" | ||
|
|
||
| #: backends/database/apps.py:8 | ||
| msgctxt "Database Backend" | ||
| msgid "Tasks Database Backend" | ||
| msgstr "Motor de Tarefas no Banco de Dados" | ||
|
|
||
| #: backends/database/models.py:94 | ||
| msgid "status" | ||
| msgstr "estado" | ||
|
|
||
| #: backends/database/models.py:100 | ||
| msgid "enqueued at" | ||
| msgstr "enfileirado em" | ||
|
|
||
| #: backends/database/models.py:101 | ||
| msgid "started at" | ||
| msgstr "iniciou em" | ||
|
|
||
| #: backends/database/models.py:102 | ||
| msgid "finished at" | ||
| msgstr "finalizou em" | ||
|
|
||
| #: backends/database/models.py:104 | ||
| msgid "args kwargs" | ||
| msgstr "args kwargs" | ||
|
|
||
| #: backends/database/models.py:106 | ||
| msgid "priority" | ||
| msgstr "prioridade" | ||
|
|
||
| #: backends/database/models.py:108 | ||
| msgid "task path" | ||
| msgstr "caminho da tarefa" | ||
|
|
||
| #: backends/database/models.py:109 | ||
| msgid "worker id" | ||
| msgstr "id trabalhador" | ||
|
|
||
| #: backends/database/models.py:112 | ||
| msgid "queue name" | ||
| msgstr "nome da fila" | ||
|
|
||
| #: backends/database/models.py:114 | ||
| msgid "backend name" | ||
| msgstr "processador de tarefas" | ||
|
|
||
| #: backends/database/models.py:116 | ||
| msgid "run after" | ||
| msgstr "executar depois" | ||
|
|
||
| #: backends/database/models.py:118 | ||
| msgid "return value" | ||
| msgstr "valor retornado" | ||
|
|
||
| #: backends/database/models.py:120 | ||
| msgid "exception class path" | ||
| msgstr "Caminho da Classe de Exceção" | ||
|
|
||
| #: backends/database/models.py:121 | ||
| msgid "traceback" | ||
| msgstr "rastreamento" | ||
|
|
||
| #: backends/database/models.py:127 | ||
| msgid "Task Result" | ||
| msgstr "Resultado da Tarefa" | ||
|
|
||
| #: backends/database/models.py:128 | ||
| msgid "Task Results" | ||
| msgstr "Resultados da Tarefa" | ||
|
|
||
| #: base.py:51 | ||
| msgctxt "Task" | ||
| msgid "Ready" | ||
| msgstr "Pronta" | ||
|
|
||
| #: base.py:54 | ||
| msgctxt "Task" | ||
| msgid "Running" | ||
| msgstr "Executando" | ||
|
|
||
| #: base.py:57 | ||
| msgctxt "Task" | ||
| msgid "Failed" | ||
| msgstr "Finalizou com Falha" | ||
|
|
||
| #: base.py:60 | ||
| msgctxt "Task" | ||
| msgid "Succeeded" | ||
| msgstr "Finalizou com Sucesso" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These headers should have actual real values.