This commit is contained in:
2024-04-27 09:23:34 +02:00
commit 11e713ca6f
11884 changed files with 3263371 additions and 0 deletions

View File

@@ -0,0 +1,119 @@
<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
/*********************************************************************************
* SugarCRM is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* 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 Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
* technical reasons, the Appropriate Legal Notices must display the words
* "Powered by SugarCRM".
********************************************************************************/
$mod_strings = array (
'LBL_MODULE_NAME' => 'Project Tasks',
'LBL_MODULE_TITLE' => 'Project Task: Home',
'LBL_SEARCH_FORM_TITLE' => 'Project Task Search',
'LBL_LIST_FORM_TITLE'=> 'Project Task List',
'LBL_EDIT_TASK_IN_GRID_TITLE'=> 'Edit Task In Grid',
'LBL_ID' => 'Id:',
'LBL_PROJECT_TASK_ID' => 'Project Task Id:',
'LBL_PROJECT_ID' => 'Project Id:',
'LBL_DATE_ENTERED' => 'Date Created:',
'LBL_DATE_MODIFIED' => 'Date Modified:',
'LBL_ASSIGNED_USER_ID' => 'Assigned To:',
'LBL_MODIFIED_USER_ID' => 'Modified User Id:',
'LBL_CREATED_BY' => 'Created By:',
'LBL_TEAM_ID' => 'Team:',
'LBL_NAME' => 'Name:',
'LBL_STATUS' => 'Status:',
'LBL_DATE_DUE' => 'Due Date:',
'LBL_TIME_DUE' => 'Due Time:',
'LBL_RESOURCE' => 'Resource:',
'LBL_PREDECESSORS' => 'Predecessors:',
'LBL_DATE_START' => 'Start Date:',
'LBL_DATE_FINISH' => 'Finish Date:',
'LBL_TIME_START' => 'Start Time:',
'LBL_TIME_FINISH' => 'Finish Time:',
'LBL_DURATION' => 'Duration:',
'LBL_DURATION_UNIT' => 'Duration Unit:',
'LBL_ACTUAL_DURATION' => 'Actual Duration:',
'LBL_PARENT_ID' => 'Project:',
'LBL_PARENT_TASK_ID' => 'Parent Task Id:',
'LBL_PERCENT_COMPLETE' => '% Complete:',
'LBL_PRIORITY' => 'Priority:',
'LBL_DESCRIPTION' => 'Description:',
'LBL_ORDER_NUMBER' => 'Order:',
'LBL_TASK_NUMBER' => 'Task Number:',
'LBL_TASK_ID' => 'Task ID:',
'LBL_DEPENDS_ON_ID' => 'Depends On:',
'LBL_MILESTONE_FLAG' => 'Milestone:',
'LBL_ESTIMATED_EFFORT' => 'Estimated Effort (hrs):',
'LBL_ACTUAL_EFFORT' => 'Actual Effort (hrs):',
'LBL_UTILIZATION' => 'Utilization (%):',
'LBL_DELETED' => 'Deleted:',
'LBL_LIST_ORDER_NUMBER' => 'Order',
'LBL_LIST_NAME' => 'Name',
'LBL_LIST_DAYS' => 'days',
'LBL_LIST_PARENT_NAME' => 'Project',
'LBL_LIST_PERCENT_COMPLETE' => '% Complete',
'LBL_LIST_STATUS' => 'Status',
'LBL_LIST_DURATION' => 'Duration',
'LBL_LIST_ACTUAL_DURATION' => 'Actual Duration',
'LBL_LIST_ASSIGNED_USER_ID' => 'Assigned To',
'LBL_LIST_DATE_DUE' => 'Date Due',
'LBL_LIST_DATE_START' => 'Start Date',
'LBL_LIST_DATE_FINISH' => 'Finish Date',
'LBL_LIST_PRIORITY' => 'Priority',
'LBL_LIST_CLOSE' => 'Close',
'LBL_PROJECT_NAME' => 'Project Name',
'LNK_NEW_PROJECT' => 'Create Project',
'LNK_PROJECT_LIST' => 'Project List',
'LNK_NEW_PROJECT_TASK' => 'Create Project Task',
'LNK_PROJECT_TASK_LIST' => 'Project Tasks',
'LBL_LIST_MY_PROJECT_TASKS' => 'My Project Tasks',
'LBL_DEFAULT_SUBPANEL_TITLE' => 'Project Tasks',
'LBL_NEW_FORM_TITLE' => 'New Project Task',
'LBL_ACTIVITIES_TITLE'=>'Activities',
'LBL_HISTORY_TITLE'=>'History',
'LBL_ACTIVITIES_SUBPANEL_TITLE'=>'Activities',
'LBL_HISTORY_SUBPANEL_TITLE'=>'History',
'DATE_JS_ERROR' => 'Please enter a date corresponding to the time entered',
'LBL_ASSIGNED_USER_NAME' => 'Assigned To',
'LBL_PARENT_NAME' => 'Project Name',
'LBL_LIST_PROJECT_NAME' => 'Projects',
);
?>

View File

@@ -0,0 +1,54 @@
<!--
/*********************************************************************************
* LICENSE: The contents of this file are subject to the SugarCRM Professional
* End User License Agreement ("License") which can be viewed at
* http://www.sugarcrm.com/EULA. By installing or using this file, You have
* unconditionally agreed to the terms and conditions of the License, and You
* may not use this file except in compliance with the License. Under the
* terms of the license, You shall not, among other things: 1) sublicense,
* resell, rent, lease, redistribute, assign or otherwise transfer Your
* rights to the Software, and 2) use the Software for timesharing or service
* bureau purposes such as hosting the Software for commercial gain and/or for
* the benefit of a third party. Use of the Software may be subject to
* applicable fees and any use of the Software without first paying applicable
* fees is strictly prohibited. You do not have the right to remove SugarCRM
* copyrights from the source code or user interface.
*
* All copies of the Covered Code must include on each user interface screen:
* (i) the "Powered by SugarCRM" logo and
* (ii) the SugarCRM copyright notice
* in the same form as they appear in the distribution. See full license for
* requirements.
*
* Your Warranty, Limitations of liability and Indemnity are expressly stated
* in the License. Please refer to the License for the specific language
* governing these rights and limitations under the License. Portions created
* by SugarCRM are Copyright (C) 2006 SugarCRM, Inc.; All Rights Reserved.
********************************************************************************/
/*********************************************************************************
********************************************************************************/
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<h1>Elementy Realizacji</h1>
<p> Użyj tej strony aby zobaczyć i edytować szczegóły Elementów Realizacji. </p>
<ul>
<li>Aby edytować szczegóły, kliknij <span class="helpButton">Edytuj</span>, dokonaj niezbędnych zmian i kliknij <span class="helpButton">Zapisz</span>.
<li>To edit the task in grid view, click <span class="helpButton">Edit Task in Grid</span>.
<li>To schedule a meeting, a call, or compose email, click the appropriate button in the Activities sub-panel.
</ul>
<p>The History sub-panel lists existing notes and files attached to the project task.
<ul>
<li>To attach a note or a file, click <span class="helpButton">Create Note or Attachment</span>.
<li>To create an archived email, click Archive Email, copy the email contents in the Body field and save it.
<li>To view a summary of the history, click <span class="helpButton">View Summary</span>.
</ul>

View File

@@ -0,0 +1,65 @@
<!--
/*********************************************************************************
* LICENSE: The contents of this file are subject to the SugarCRM Professional
* End User License Agreement ("License") which can be viewed at
* http://www.sugarcrm.com/EULA. By installing or using this file, You have
* unconditionally agreed to the terms and conditions of the License, and You
* may not use this file except in compliance with the License. Under the
* terms of the license, You shall not, among other things: 1) sublicense,
* resell, rent, lease, redistribute, assign or otherwise transfer Your
* rights to the Software, and 2) use the Software for timesharing or service
* bureau purposes such as hosting the Software for commercial gain and/or for
* the benefit of a third party. Use of the Software may be subject to
* applicable fees and any use of the Software without first paying applicable
* fees is strictly prohibited. You do not have the right to remove SugarCRM
* copyrights from the source code or user interface.
*
* All copies of the Covered Code must include on each user interface screen:
* (i) the "Powered by SugarCRM" logo and
* (ii) the SugarCRM copyright notice
* in the same form as they appear in the distribution. See full license for
* requirements.
*
* Your Warranty, Limitations of liability and Indemnity are expressly stated
* in the License. Please refer to the License for the specific language
* governing these rights and limitations under the License. Portions created
* by SugarCRM are Copyright (C) 2006 SugarCRM, Inc.; All Rights Reserved.
********************************************************************************/
/*********************************************************************************
********************************************************************************/
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<h1>Project Tasks</h1>
<p>After you create a project, you can create tasks associated with it. </p>
<p>To create a project task, enter the following information:</p>
<ul>
<li><span class="helpButton">Name</span>. Enter a name for the task.
<li><span class="helpButton">Assigned to</span>. Enter the name of the user who has ownership of the task. By default it is assigned to you.
<li><span class="helpButton">Team</span>. Enter the name of the team that is allowed to view the task; to select one from the Team list, click <span class="helpButton">Select</span> and click the team name.
<li><span class="helpButton">Status</span>. From the drop-down list, select the current status of the task.
<li><span class="helpButton">Task Number</span>. Enter a number for the task. A task number uniquely identifies the task. You can refer to a task by its number instead of its name.
<li><span class="helpButton">Depends on</span>. From the drop-down list, select another task that will need to be completed before proceeding with this task.
<li><span class="helpButton">Priority</span>. From the drop-down list, select a priority level that reflects the importance of completing this task.
<li><span class="helpButton">Milestone</span>. Check this box if the completion on this task is considered a milestone for project completion.
<li><span class="helpButton">Order</span>. Enter a number to specify the sequence of the task in the list of project tasks. Specifying the order is useful when a task does not have any dependencies assigned to it.
<li><span class="helpButton">Project</span>. From the drop-down list, select the project associated with the task.
<li><span class="helpButton">Progress</span>. Enter the percentage of the task that has been completed.
<li><span class="helpButton">Utilization</span>. From the drop-down list, select the number of work hours that a user should dedicate their work hours towards the assigned task. Only one person can be assigned to a given project task.
<li><span class="helpButton">Start Date</span>. Click the Calender icon and select a start date for the task; enter the start time in the adjoining field.
<li><span class="helpButton">Estimated Efforts</span>. Enter the sum of estimated efforts for all project tasks.
<li><span class="helpButton">Due Date</span>. Click the Calender icon and select the due date for task completion; enter the end time in the adjoining field.
<li><span class="helpButton">Actual Efforts</span>. Enter the sum of actual efforts for all project tasks.
<li><span class="helpButton">Description</span>. Enter a brief description of the task.
</ul>
<p>Click <span class="helpButton">Save<span> to create the task; click <span class="helpButton">Cancel</span> to return to the project detail page without creating the task.

View File

@@ -0,0 +1,59 @@
<!--
/*********************************************************************************
* LICENSE: The contents of this file are subject to the SugarCRM Professional
* End User License Agreement ("License") which can be viewed at
* http://www.sugarcrm.com/EULA. By installing or using this file, You have
* unconditionally agreed to the terms and conditions of the License, and You
* may not use this file except in compliance with the License. Under the
* terms of the license, You shall not, among other things: 1) sublicense,
* resell, rent, lease, redistribute, assign or otherwise transfer Your
* rights to the Software, and 2) use the Software for timesharing or service
* bureau purposes such as hosting the Software for commercial gain and/or for
* the benefit of a third party. Use of the Software may be subject to
* applicable fees and any use of the Software without first paying applicable
* fees is strictly prohibited. You do not have the right to remove SugarCRM
* copyrights from the source code or user interface.
*
* All copies of the Covered Code must include on each user interface screen:
* (i) the "Powered by SugarCRM" logo and
* (ii) the SugarCRM copyright notice
* in the same form as they appear in the distribution. See full license for
* requirements.
*
* Your Warranty, Limitations of liability and Indemnity are expressly stated
* in the License. Please refer to the License for the specific language
* governing these rights and limitations under the License. Portions created
* by SugarCRM are Copyright (C) 2006 SugarCRM, Inc.; All Rights Reserved.
********************************************************************************/
/*********************************************************************************
********************************************************************************/
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<h1>Project Task Home</h1>
<p>A project can consist of multiple tasks. After you create a project, you can create tasks associated with it.</p>
<p>This page displays the following information:</p>
<ul>
<li>A Search sub-panel where you can enter the task name and project name to search for project tasks. To find only project tasks assigned to you, select the <span class="helpButton">Only my items</span> box.
To perform an advanced search using additional fields, click the <span class="helpButton">Advanced Search</span> tab. To customize and save the search layout and results, click the <span class="helpButton">Saved Search & Layout</span> tab.
<li>A list of existing project tasks along with related information such as project name and status.
<ul>
<li>To view the details of a task, click the name in the Project Task list.
<li>To update or delete multiple projects, select the tasks from the list and use the Mass Update sub-panel.
</ul>
<li>A Shortcuts section that displays the following options:
<ul>
<li><span class="helpShortcut">Create Project</span>. Click this option to create a new project. Alternatively, you can use the New Project quick form to create the project and add enter additional information after you save it.
<li><span class="helpShortcut">Project List</span>. Click this option to navigate back to the Projects Home page from a project's detail page.
<li><span class="helpShortcut">Project Tasks</span>. Click this option to view a list of tasks for all your projects.
</ul>
<p>A New Project Task quick form that you can use to create a task with only the required fields. You can enter additional information after you save the project task.

View File

@@ -0,0 +1,124 @@
<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
/**
* Default English language strings
*
* LICENSE: The contents of this file are subject to the SugarCRM Professional
* End User License Agreement ("License") which can be viewed at
* http://www.sugarcrm.com/EULA. By installing or using this file, You have
* unconditionally agreed to the terms and conditions of the License, and You
* may not use this file except in compliance with the License. Under the
* terms of the license, You shall not, among other things: 1) sublicense,
* resell, rent, lease, redistribute, assign or otherwise transfer Your
* rights to the Software, and 2) use the Software for timesharing or service
* bureau purposes such as hosting the Software for commercial gain and/or for
* the benefit of a third party. Use of the Software may be subject to
* applicable fees and any use of the Software without first paying applicable
* fees is strictly prohibited. You do not have the right to remove SugarCRM
* copyrights from the source code or user interface.
*
* All copies of the Covered Code must include on each user interface screen:
* (i) the "Powered by SugarCRM" logo and
* (ii) the SugarCRM copyright notice
* in the same form as they appear in the distribution. See full license for
* requirements.
*
* Your Warranty, Limitations of liability and Indemnity are expressly stated
* in the License. Please refer to the License for the specific language
* governing these rights and limitations under the License. Portions created
* by SugarCRM are Copyright (C) 2005 SugarCRM, Inc.; All Rights Reserved.
*/
/*********************************************************************************
* pl_pl.lang.php,v for SugarCRM 4.5.1-->>
* Translator: Krzysztof Morawski
* All Rights Reserved.
* Any bugs report welcome: krzysiek<at>kmmgroup<dot>pl
* Contributor(s): ______________________________________..
********************************************************************************/
$mod_strings = array (
'LBL_MODULE_NAME' => 'Elementy Projektu',
'LBL_MODULE_TITLE' => 'Elementy Projektu: Strona główna',
'LBL_SEARCH_FORM_TITLE' => 'Szukaj elementu Projektu',
'LBL_LIST_FORM_TITLE'=> 'Lista elementów Projektu',
'LBL_EDIT_TASK_IN_GRID_TITLE'=> 'Edytuj elementy w siatce',
'LBL_ID' => 'ID:',
'LBL_PROJECT_TASK_ID' => 'ID elementu Projektu:',
'LBL_PROJECT_ID' => 'ID Projektu:',
'LBL_DATE_ENTERED' => 'Data rozpoczęcia:',
'LBL_DATE_MODIFIED' => 'Data modyfikacji:',
'LBL_ASSIGNED_USER_ID' => 'Przydzielony do:',
'LBL_MODIFIED_USER_ID' => 'ID użytkownika modyfikującego:',
'LBL_CREATED_BY' => 'Stworzony przez:',
'LBL_TEAM_ID' => 'Zespół:',
'LBL_NAME' => 'Nazwa:',
'LBL_STATUS' => 'Status:',
'LBL_DATE_DUE' => 'Data zakończenia:',
'LBL_TIME_DUE' => 'Czas trwania:',
'LBL_RESOURCE' => 'Źródło:',
'LBL_PREDECESSORS' => 'Poprzednik:',
'LBL_DATE_START' => 'Data rozpoczęcia:',
'LBL_DATE_FINISH' => 'Data zakończenia:',
'LBL_TIME_START' => 'Czas rozpoczęcia:',
'LBL_TIME_FINISH' => 'Czas zakończenia:',
'LBL_DURATION' => 'Czas Trwania:',
'LBL_DURATION_UNIT' => 'Jednostka czasu trwania:',
'LBL_ACTUAL_DURATION' => 'Stan zaawansowania:',
'LBL_PARENT_ID' => 'Realizacja:',
'LBL_PARENT_TASK_ID' => 'ID nadrzędnego elementu:',
'LBL_PERCENT_COMPLETE' => 'Procent zaawansowania (%):',
'LBL_PRIORITY' => 'Priorytet:',
'LBL_DESCRIPTION' => 'Opis:',
'LBL_ORDER_NUMBER' => 'Kolejność:',
'LBL_TASK_NUMBER' => 'Numer Projektu:',
'LBL_TASK_ID' => 'ID elementu:',
'LBL_DEPENDS_ON_ID' => 'Zależy od:',
'LBL_MILESTONE_FLAG' => 'Kamień milowy:',
'LBL_ESTIMATED_EFFORT' => 'Spodziewana liczba roboczogodzin:',
'LBL_ACTUAL_EFFORT' => 'Aktualna liczba roboczogodzin:',
'LBL_UTILIZATION' => 'Użycie (%):',
'LBL_DELETED' => 'Usunięty:',
'LBL_LIST_ORDER_NUMBER' => 'Kolejność',
'LBL_LIST_NAME' => 'Nazwa',
'LBL_LIST_DAYS' => 'dni',
'LBL_LIST_PARENT_NAME' => 'Projekt',
'LBL_LIST_PERCENT_COMPLETE' => 'Zaawansowanie (%)',
'LBL_LIST_STATUS' => 'Status',
'LBL_LIST_DURATION' => 'Czas trwania',
'LBL_LIST_ACTUAL_DURATION' => 'Aktualny stan zaawansowania',
'LBL_LIST_ASSIGNED_USER_ID' => 'Przydzielony do',
'LBL_LIST_DATE_DUE' => 'Okres trwania',
'LBL_LIST_DATE_START' => 'Data rozpoczęcia',
'LBL_LIST_DATE_FINISH' => 'Data zakończenia',
'LBL_LIST_PRIORITY' => 'Priorytet',
'LBL_LIST_CLOSE' => 'Zamknij',
'LBL_PROJECT_NAME' => 'Nazwa Projektu',
'LNK_NEW_PROJECT' => 'Utwórz Projekt',
'LNK_PROJECT_LIST' => 'Lista Projektu',
'LNK_NEW_PROJECT_TASK' => 'Utwórz element Projektu',
'LNK_PROJECT_TASK_LIST' => 'Elementy Projektu',
'LBL_LIST_MY_PROJECT_TASKS' => 'Moje otwarte elementy Projektu',
'LBL_DEFAULT_SUBPANEL_TITLE' => 'elementy Projektu',
'LBL_NEW_FORM_TITLE' => 'Nowy element Projektu',
'LBL_ACTIVITIES_TITLE'=>'Działania',
'LBL_HISTORY_TITLE'=>'Historia',
'LBL_ACTIVITIES_SUBPANEL_TITLE'=>'Działania',
'LBL_HISTORY_SUBPANEL_TITLE'=>'Historia',
'DATE_JS_ERROR' => 'Wprowadź datę odpowiednią dla wprowadzonej godziny',
'LBL_ASSIGNED_USER_NAME' => 'Przydzielone do',
'LBL_PARENT_NAME' => 'Nazwa Projektu',
'LBL_LIST_PROJECT_NAME' => 'Projekty',
// 'LBL_MODIFIED_NAME'=>'Nazwa modyfikującego',
// 'LBL_CREATED' => 'Utworzone przez',
// 'LBL_LIST_TEAM' => 'Zespół',
// 'LBL_TEAM' => 'Zespół:',
);
?>