37 lines
1.5 KiB
PHP
37 lines
1.5 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' => 'RSS',
|
||
|
'LBL_MODULE_TITLE' => 'RSS: Home',
|
||
|
'LBL_NEW_RSS_ENTRY' => 'New RSS Feed URL:',
|
||
|
'LBL_SEARCH_RSS' => 'Search Title:',
|
||
|
'LBL_NEW_RSS_BUTTON' => 'Add',
|
||
|
'LBL_STARRED_RSS' => 'Starred Feeds',
|
||
|
'LBL_POP_CRM_RSS' => 'Popular CRM related feeds',
|
||
|
'LBL_ALL_RSS_FEEDS' => 'All RSS Feeds',
|
||
|
'LBL_VTIGER_RSS_READER' => 'vtiger RSS Reader',
|
||
|
'LBL_MORE' => 'More...',
|
||
|
'LBL_SUBJECT' => 'Subject',
|
||
|
'LBL_SENDER' => 'Sender',
|
||
|
'LBL_CATEGORY' => 'Category: ',
|
||
|
'LBL_FEED' => 'Feed: ',
|
||
|
'LBL_FEED_SOURCES' => 'Feed Sources',
|
||
|
'LBL_ADD_RSS_FEED' => 'Add RSS Feed',
|
||
|
'LBL_DELETE_BUTTON' => 'Delete',
|
||
|
'LBL_SET_DEFAULT_BUTTON' => 'Set as default',
|
||
|
'LBL_FEEDS_LIST' => 'Feeds list from: ',
|
||
|
'LBL_ERROR_MSG' => 'No RSS Feeds are selected or your proxy settings are not correct',
|
||
|
'LBL_REGRET_MSG' => 'Sorry, it is not possible to reach the RSS URL',
|
||
|
'UNABLE_TO_SAVE' => 'Unable to save the URL',
|
||
|
'NOT_A_VALID' => 'Not a valid RSS Feed or your proxy settings are not correct',
|
||
|
'INVALID_RSS_URL' => 'Not a valid RSS URL'
|
||
|
);
|
||
|
?>
|