50 lines
2.0 KiB
PHP
50 lines
2.0 KiB
PHP
|
<?php
|
||
|
/*********************************************************************************
|
||
|
* The contents of this file are subject to the SugarCRM Public License Version 1.1.2
|
||
|
* ("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.
|
||
|
* The Original Code is: SugarCRM Open Source
|
||
|
* The Initial Developer of the Original Code is SugarCRM, Inc.
|
||
|
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.;
|
||
|
* All Rights Reserved.
|
||
|
********************************************************************************/
|
||
|
|
||
|
$mod_strings = Array(
|
||
|
'LBL_MODULE_NAME'=>'RSS',
|
||
|
'LBL_MODULE_TITLE'=>'RSS: Home',
|
||
|
|
||
|
'LBL_NEW_RSS_ENTRY'=>'neue RSS Nachrichten URL:',
|
||
|
'LBL_SEARCH_RSS'=>'Titelsuche:',
|
||
|
'LBL_NEW_RSS_BUTTON'=>'Hinzufügen',
|
||
|
|
||
|
'LBL_STARRED_RSS'=>'gekennzeichnete Nachrichten',
|
||
|
'LBL_POP_CRM_RSS'=>'CRM Nachrichten',
|
||
|
'LBL_ALL_RSS_FEEDS'=>'alle RSS Nachrichten',
|
||
|
'LBL_VTIGER_RSS_READER'=>'RSS Reader',
|
||
|
|
||
|
'LBL_MORE'=>'mehr...',
|
||
|
'LBL_SUBJECT'=>'Thema',
|
||
|
'LBL_SENDER'=>'Sender',
|
||
|
'LBL_CATEGORY'=>'Kategorie:',
|
||
|
'LBL_FEED'=>'Feed:',
|
||
|
'LBL_FEED_SOURCES'=> 'Feed Quellen',
|
||
|
'LBL_ADD_RSS_FEED'=>'RSS Feed hinzufügen',
|
||
|
'LBL_DELETE_BUTTON'=>'Löschen',
|
||
|
'LBL_SET_DEFAULT_BUTTON'=>'setze als Standard',
|
||
|
'LBL_FEEDS_LIST'=>'Quellenliste von :',
|
||
|
'LBL_ERROR_MSG'=>'Fehler: Es wurde kein RSS Feed ausgewählt!',
|
||
|
'LBL_REGRET_MSG'=>'Fehler: Leider kann die RSS URL nicht erreicht werden!',
|
||
|
|
||
|
'UNABLE_TO_SAVE'=>'Kann die RSS Feed URL nicht speichern.',
|
||
|
|
||
|
// Added/Updated for vtiger CRM 5.0.4
|
||
|
'NOT_A_VALID'=>'Die RSS Feed URL ist falsch.',
|
||
|
|
||
|
// Added after 5.0.4 GA
|
||
|
'INVALID_RSS_URL' => 'Die RSS Feed URL ist nicht gültig.',
|
||
|
'UNABLE_TO_SAVE'=>'Kann die RSS Feed URL nicht speichern.',
|
||
|
);
|
||
|
?>
|