69 lines
2.4 KiB
PHP
69 lines
2.4 KiB
PHP
|
<?php
|
||
|
/*+**********************************************************************************
|
||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||
|
* ("License"); You may not use this file except in compliance with the License
|
||
|
* The Original Code is: vtiger CRM Open Source
|
||
|
* The Initial Developer of the Original Code is vtiger.
|
||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||
|
* All Rights Reserved.
|
||
|
************************************************************************************/
|
||
|
$mod_strings = Array(
|
||
|
|
||
|
'LBL_MODULE_NAME'=>'Projetos',
|
||
|
'LBL_MODULE_TITLE'=>'Projetos',
|
||
|
'LBL_NEW_PROJECT'=>'Novo projeto',
|
||
|
'LBL_PROJECTS'=>'Projetos',
|
||
|
'LBL_PROJECT'=>'Projeto',
|
||
|
'projectname' => 'Nome do Projeto',
|
||
|
'projects' => 'Projetos',
|
||
|
'project' => 'Projetos',
|
||
|
//added this to translate the module name in the main app menu
|
||
|
'Project'=>'Projetos',
|
||
|
//
|
||
|
'SINGLE_Project' => 'Projeto',
|
||
|
'LBL_CUSTOM_INFORMATION' => 'Informações complementares',
|
||
|
'LBL_PROJECT_INFORMATION' => 'Informações sobre o Projeto',
|
||
|
'LBL_DESCRIPTION_INFORMATION' => 'Descrição',
|
||
|
|
||
|
'projectid' => 'Id do Projeto',
|
||
|
'Project ID'=>'Id do Projeto',
|
||
|
'Assigned To' => 'Responsável',
|
||
|
'startdate' => 'Data de início',
|
||
|
'targetenddate' => 'Data de conclusão prevista',
|
||
|
'actualenddate' => 'Data de conclusão real',
|
||
|
'projectstatus'=>'Status',
|
||
|
'projecttype'=>'Tipo',
|
||
|
'linktoaccountscontacts'=>'Relacionado à',
|
||
|
'targetbudget'=>'Custo previsto',
|
||
|
'projecturl'=>'URL do projeto',
|
||
|
'projectpriority'=>'Prioridade do projeto',
|
||
|
'progress'=>'Andamento',
|
||
|
'linktopotentials'=>'Relacionado à',
|
||
|
'Related To' => 'Relacionado à',
|
||
|
'administrative' => 'administrativo',
|
||
|
'operative' => 'operacional',
|
||
|
'other' => 'outro',
|
||
|
'low' => 'baixa',
|
||
|
'normal' => 'normal',
|
||
|
'high' => 'alta',
|
||
|
'in progress' => 'em andamento',
|
||
|
'in planning' => 'em planejamento',
|
||
|
'on hold' => 'aguardando',
|
||
|
'archived' => 'arquivado',
|
||
|
'complete' => 'concluído',
|
||
|
'Created Time' => 'Data Criação',
|
||
|
'Modified Time' => 'Data Modificação',
|
||
|
'Description' => 'Descrição',
|
||
|
'description' => 'Descrição',
|
||
|
'--none--' => '----',
|
||
|
'Deadline' => 'Deadline',
|
||
|
'Operation' => 'Atividade',
|
||
|
'Project Name' => 'Nome do Projeto',
|
||
|
'LBL_RELATED_OPERATIONS' => 'Tarefas do Projeto',
|
||
|
'LBL_RELATED_DEADLINES' => 'Projeto Dealines',
|
||
|
|
||
|
|
||
|
);
|
||
|
|
||
|
?>
|