mirror of
https://github.com/anteo/redmine_custom_workflows.git
synced 2026-01-26 00:04:20 +00:00
82 lines
5.2 KiB
YAML
82 lines
5.2 KiB
YAML
# encoding: utf-8
|
|
#
|
|
# Redmine plugin for Custom Workflows
|
|
#
|
|
# Copyright Anton Argirov
|
|
# Copyright Karel Pičman <karel.picman@kontron.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
pt-BR:
|
|
project_module_custom_workflows_module: "Fluxo de Trabalho Personalizado"
|
|
permission_manage_project_workflow: "Gerenciar fluxos de trabalho personalizados de projeto"
|
|
|
|
label_custom_workflow: "Fluxo de Trabalho personalizado"
|
|
label_custom_workflow_plural: "Fluxos de Trabalho personalizados"
|
|
label_custom_workflow_new: "Criar um fluxo de trabalho personalizado"
|
|
label_workflow_scripts: "Scripts de fluxo de trabalho"
|
|
label_enabled_projects: "Habilitado para o(s) projeto(s)"
|
|
label_custom_workflow_export: "Exportar"
|
|
label_custom_workflow_import: "Importar fluxo de trabalho"
|
|
|
|
button_import: "Importar"
|
|
button_custom_workflow_activate: "Ativar"
|
|
button_custom_workflow_deactivate: "Desativar"
|
|
|
|
field_after_save: "Workflow script executable after saving observable object"
|
|
field_before_save: "Workflow script executable before saving observable object"
|
|
field_after_add: "Workflow script executable after adding observable object to collection"
|
|
field_before_add: "Workflow script executable before adding observable object to collection"
|
|
field_after_remove: "Workflow script executable after removing observable object from collection"
|
|
field_before_remove: "Workflow script executable before removing observable object from collection"
|
|
field_shared_code: "Shared code"
|
|
field_observable: "Observable object"
|
|
field_is_enabled: "Ativado"
|
|
field_enabled_for_all_projects: "Ativado para todos os projetos"
|
|
field_custom_workflow_author: "E-mail do autor"
|
|
field_custom_workflow_file: "Selecione o arquivo XML exportado anteriormente"
|
|
field_custom_workflow_active: "Ativo"
|
|
field_custom_workflow:
|
|
script: "Script do Fluxo de Trabalho"
|
|
|
|
notice_successful_import: "Fluxo de Trabalho Personalizado foi importado com sucesso"
|
|
notice_successful_status_change: "Situação foi alterada com sucesso"
|
|
error_failed_import: "Erro ao importar o fluxo de trabalho customizado (Formato desconhecido? Por favor verifique o log)"
|
|
|
|
activerecord:
|
|
errors:
|
|
messages:
|
|
invalid_script: "contém erro: %{error}"
|
|
custom_workflow_error: "Erro no fluxo de trabalho customizado (por favor contate o administrador)"
|
|
new_status_invalid: "Transição de '%{old_status}' para '%{new_status}' é proibida"
|
|
|
|
text_select_project_custom_workflows: Selecione o projeto para os fluxos de trabalho
|
|
text_custom_workflow_before_save_note: Você pode alterar as propriedades das tarefas aqui. Não crie ou atualize tarefas relacionadas neste script. Para terminar com o erro, utilize a exceção WorkflowError, "Mensagem para o usuário".
|
|
text_custom_workflow_after_save_note: Você pode atualizar ou criar tarefas relacionadas aqui. Note que esse script também será executado para as tarefas criadas recentemente. Então, faça as verificações adequadas para evitar que entre em recursividade infinita.
|
|
text_custom_workflow_issue_code_note: Ambos os scripts são executados no contexto da tarefa pelas chamadas before_save com retornos para a chamada after_save. Portanto, use métodos e propriedades da tarefa diretamente (ou através de "self"). Variáveis de instância (@variable) também são permitidos e podem ser utilizados, se necessário.
|
|
text_custom_workflow_shared_code_note: This code will run before any other workflow and may contain shared code, e.g. functions and classes needed by other workflows.
|
|
text_custom_workflow_user_code_note: Both scripts are executed in the context of the user object when user object changes. Use methods and properties of the user directly (or through "self")
|
|
text_custom_workflow_group_code_note: Both scripts are executed in the context of the group object when group object changes. Use methods and properties of the group directly (or through "self")
|
|
text_custom_workflow_group_users_code_note: These scripts are executed when user being added to group/removed from group. Use variables @user and @group to access appropriate objects in your scripts.
|
|
text_no_enabled_projects: Não há projeto
|
|
text_custom_workflow_author: Será incluído no XML exportado
|
|
text_custom_workflow_disabled: desabilitado por admin
|
|
text_custom_workflow_is_for_all: Ativado para todos os projetos
|
|
|
|
custom_workflow_observable_shared: "<shared code>"
|
|
custom_workflow_observable_issue: "Issue"
|
|
custom_workflow_observable_group: "Group"
|
|
custom_workflow_observable_user: "User"
|
|
custom_workflow_observable_group_users: "Group Users" |