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,141 @@
<?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".
********************************************************************************/
/*********************************************************************************
* Description: Defines the English language pack for the base application.
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
* All Rights Reserved.
* Contributor(s): ______________________________________..
********************************************************************************/
$mod_strings = array (
'LBL_LIST_ALL_DAY' => 'All day job\'s',
'LBL_MODULE_NAME'=>'Calendar',
'LBL_MODULE_TITLE'=>'Calendar',
'LNK_NEW_CALL' => 'Log Call',
'LNK_NEW_MEETING' => 'Schedule Meeting',
'LNK_NEW_APPOINTMENT' => 'Create Appointment',
'LNK_NEW_TASK' => 'Create Task',
'LNK_CALL_LIST' => 'Calls',
'LNK_MEETING_LIST' => 'Meetings',
'LNK_TASK_LIST' => 'Tasks',
'LNK_VIEW_CALENDAR' => 'Today',
'LNK_IMPORT_CALLS'=>'Import Calls',
'LNK_IMPORT_MEETINGS'=>'Import Meetings',
'LNK_IMPORT_TASKS'=>'Import Tasks',
'LBL_MONTH' => 'Month',
'LBL_DAY' => 'Day',
'LBL_YEAR' => 'Year',
'LBL_WEEK' => 'Week',
'LBL_PREVIOUS_MONTH' => 'Previous Month',
'LBL_PREVIOUS_DAY' => 'Previous Day',
'LBL_PREVIOUS_YEAR' => 'Previous Year',
'LBL_PREVIOUS_WEEK' => 'Previous Week',
'LBL_NEXT_MONTH' => 'Next Month',
'LBL_NEXT_DAY' => 'Next Day',
'LBL_NEXT_YEAR' => 'Next Year',
'LBL_NEXT_WEEK' => 'Next Week',
'LBL_AM' => 'AM',
'LBL_PM' => 'PM',
'LBL_SCHEDULED' => 'Scheduled',
'LBL_BUSY' => 'Busy',
'LBL_CONFLICT' => 'Conflict',
'LBL_USER_CALENDARS' => 'User Calendars',
'LBL_SHARED' => 'Shared',
'LBL_PREVIOUS_SHARED' => 'Previous',
'LBL_NEXT_SHARED' => 'Next',
'LBL_SHARED_CAL_TITLE' => 'Shared Calendar',
'LBL_USERS' => 'User',
'LBL_REFRESH' => 'Refresh',
'LBL_EDIT' => 'Edit',
'LBL_SELECT_USERS' => 'Select users for calendar display',
'LBL_FILTER_BY_TEAM' => 'Filter user list by team:',
'LBL_ASSIGNED_TO_NAME' => 'Assigned to',
'LBL_DATE' => 'Start Date & Time'
);
$mod_list_strings = array(
'dom_cal_weekdays'=>array(
"Sun",
"Mon",
"Tue",
"Wed",
"Thu",
"Fri",
"Sat",
),
'dom_cal_weekdays_long'=>array(
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
),
'dom_cal_month'=>array(
"",
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec",
),
'dom_cal_month_long'=>array(
"",
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December",
)
);
?>

View File

@@ -0,0 +1,130 @@
<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
/*********************************************************************************
* The contents of this file are subject to the SugarCRM Public License Version
* 1.1.3 ("License"); You may not use this file except in compliance with the
* License. You may obtain a copy of the License at http://www.sugarcrm.com/SPL
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* 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.
*
* The Original Code is: SugarCRM Open Source
* The Initial Developer of the Original Code is SugarCRM, Inc.
* Portions created by SugarCRM are Copyright (C) 2004-2005 SugarCRM, Inc.;
* All Rights Reserved.
* Contributor(s): ______________________________________.
********************************************************************************/
/*********************************************************************************
* pl_pl.lang.ext.php,v for SugarCRM 4.5-->>
* Translator: Krzysztof Morawski
* All Rights Reserved.
* Any bugs report welcome: krzysiek<at>mojsklepik<dot>net
* Contributor(s): ______________________________________..
********************************************************************************/
$mod_strings = array (
'LBL_LIST_ALL_DAY' => 'Lista zadań całodniowych',
'LBL_MODULE_NAME'=>'Kalendarz',
'LBL_MODULE_TITLE'=>'Kalendarz',
'LNK_NEW_CALL' => 'Dodaj rozmowę tel.',
'LNK_NEW_MEETING' => 'Dodaj spotkanie',
'LNK_NEW_APPOINTMENT' => 'Dodaj termin spotkania',
'LNK_NEW_TASK' => 'Dodaj Zadanie',
'LNK_CALL_LIST' => 'Rozmowy Tel.',
'LNK_MEETING_LIST' => 'Spotkania',
'LNK_TASK_LIST' => 'Zadania',
'LNK_VIEW_CALENDAR' => 'Dziś',
'LNK_IMPORT_CALLS'=>'Importuj rozmowy tel.',
'LNK_IMPORT_MEETINGS'=>'Importuj spotkania',
'LNK_IMPORT_TASKS'=>'Importuj zadania',
'LBL_MONTH' => 'Miesiąc',
'LBL_DAY' => 'Dzień',
'LBL_YEAR' => 'Rok',
'LBL_WEEK' => 'Tydzień',
'LBL_PREVIOUS_MONTH' => 'Poprzedni miesiąc',
'LBL_PREVIOUS_DAY' => 'Poprzedni dzień',
'LBL_PREVIOUS_YEAR' => 'Poprzedni rok',
'LBL_PREVIOUS_WEEK' => 'Poprzedni tydzień',
'LBL_NEXT_MONTH' => 'Następny miesiąc',
'LBL_NEXT_DAY' => 'Następny dzień',
'LBL_NEXT_YEAR' => 'Następny rok',
'LBL_NEXT_WEEK' => 'Następny tydzień',
'LBL_AM' => 'AM',
'LBL_PM' => 'PM',
'LBL_SCHEDULED' => 'Zaplanowany',
'LBL_BUSY' => 'Zajęty',
'LBL_CONFLICT' => 'Konflikt',
'LBL_USER_CALENDARS' => 'Kalendarz użytkownika',
'LBL_SHARED' => 'Współdzielone',
'LBL_PREVIOUS_SHARED' => 'Poprzedni',
'LBL_NEXT_SHARED' => 'Następny',
'LBL_SHARED_CAL_TITLE' => 'Współdzielony kalendarz',
'LBL_USERS' => 'Użytkownik',
'LBL_REFRESH' => 'Odśwież',
'LBL_EDIT' => 'Edytuj',
'LBL_SELECT_USERS' => 'Wybierz użytkowników, którym system wyświetli kalendarz',
'LBL_FILTER_BY_TEAM' => 'Filtruj listę użytkowników przez Zespoły:',
'LBL_ASSIGNED_TO_NAME' => 'Przydzielone do',
'LBL_START_DATE' => 'Data i czas rozpoczęcia',
);
$mod_list_strings = array (
'dom_cal_weekdays' => array (
'Nie' ,
'Pn' ,
'Wt' ,
'Śr' ,
'Czw' ,
'Pt' ,
'So',
),
'dom_cal_weekdays_long' => array (
'Niedziela' ,
'Poniedziałek' ,
'Wtorek' ,
'Środa' ,
'Czwartek' ,
'Piątek' ,
'Sobota',
),
'dom_cal_month' => array (
'' ,
'Styczeń' ,
'Luty' ,
'Marzec' ,
'Kwiecień' ,
'Maj' ,
'Czerwiec' ,
'Lipiec' ,
'Sierpień' ,
'Wrzesień' ,
'Październik' ,
'Listopad' ,
'Grudzień',
),
'dom_cal_month_long' => array (
'' ,
'Styczeń' ,
'Luty' ,
'Marzec' ,
'Kwiecień' ,
'Maj' ,
'Czerwiec' ,
'Lipiec' ,
'Sierpień' ,
'Wrzesień' ,
'Pażdziernik' ,
'Listopad' ,
'Grudzień',
)
);
?>