73 lines
3.1 KiB
PHP
73 lines
3.1 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.
|
||
************************************************************************************/
|
||
/**
|
||
* Russian tranlsation by Mihail Alasheyev [mihail.alasheyev@gmail.com] 2009.11.27
|
||
* IMPORTANT: save file with UTF-8 without BOM!
|
||
**/
|
||
$mod_strings = Array(
|
||
|
||
'LBL_MODULE_NAME'=>'Проекты',
|
||
'LBL_MODULE_TITLE'=>'Проекты',
|
||
'LBL_NEW_PROJECT'=>'Новый проект',
|
||
'LBL_PROJECTS'=>'Проекты',
|
||
'LBL_PROJECT'=>'Проект',
|
||
'projectname' => 'Наименование проекта',
|
||
'projects' => 'Проекты',
|
||
'project' => 'Проект',
|
||
//added this to translate the module name in the main app menu
|
||
'Project'=>'Проекты',
|
||
//
|
||
'SINGLE_Project' => 'Общая',
|
||
'LBL_CUSTOM_INFORMATION' => 'Пользовательская информация',
|
||
'LBL_PROJECT_INFORMATION' => 'Информация о проекте',
|
||
'LBL_DESCRIPTION_INFORMATION' => 'Описание проекта',
|
||
|
||
'projectid' => 'Идентификатор проекта',
|
||
'Project ID'=>'Идентификатор проекта',
|
||
'Assigned To' => 'Кому поручено',
|
||
'startdate' => 'Дата начала',
|
||
'targetenddate' => 'Планируемая дата окончания',
|
||
'actualenddate' => 'Реальная дата окончания',
|
||
'projectstatus'=>'Статус',
|
||
'projecttype'=>'Тип',
|
||
'linktoaccountscontacts'=>'Связан с',
|
||
'targetbudget'=>'Планируемый бюджет',
|
||
'projecturl'=>'URL проекта',
|
||
'projectpriority'=>'Приоритет проекта',
|
||
'progress'=>'Ход выполнения',
|
||
'linktopotentials'=>'Связан с',
|
||
'Related To' => 'Относится к',
|
||
'administrative' => 'административный',
|
||
'operative' => 'оперативный',
|
||
'other' => 'другой',
|
||
'low' => 'низкий',
|
||
'normal' => 'нормальный',
|
||
'high' => 'высокий',
|
||
'in progress' => 'выполняется',
|
||
'in planning' => 'планируется',
|
||
'on hold' => 'в ожидании',
|
||
'archived' => 'в архиве',
|
||
'complete' => 'выполнен',
|
||
'Created Time' => 'Проект создан',
|
||
'Modified Time' => 'Проект изменен',
|
||
'Description' => 'Описание',
|
||
'description' => 'Описание',
|
||
'--none--' => '--ничего--',
|
||
'Deadline' => 'Критический срок',
|
||
'Operation' => 'Операция',
|
||
'Project Name' => 'Наименование проекта',
|
||
'LBL_RELATED_OPERATIONS' => 'Операции проекта',
|
||
'LBL_RELATED_DEADLINES' => 'Критические сроки проекта',
|
||
|
||
|
||
);
|
||
|
||
?>
|