| 1 | <?php |
|---|
| 2 | ############################################################################### |
|---|
| 3 | ## RSSFit - Extendable XML news feed generator ## |
|---|
| 4 | ## Copyright (c) 2004 NS Tai (aka tuff) ## |
|---|
| 5 | ## <http://www.brandycoke.com/> ## |
|---|
| 6 | ## Modified By 2005 CACHE RSSfitJ ## |
|---|
| 7 | ## <http://gyakubiki.kir.jp/> ## |
|---|
| 8 | ############################################################################### |
|---|
| 9 | ## XOOPS - PHP Content Management System ## |
|---|
| 10 | ## Copyright (c) 2000 XOOPS.org ## |
|---|
| 11 | ## <http://www.xoops.org/> ## |
|---|
| 12 | ############################################################################### |
|---|
| 13 | ## This program is free software; you can redistribute it and/or modify ## |
|---|
| 14 | ## it under the terms of the GNU General Public License as published by ## |
|---|
| 15 | ## the Free Software Foundation; either version 2 of the License, or ## |
|---|
| 16 | ## (at your option) any later version. ## |
|---|
| 17 | ## ## |
|---|
| 18 | ## You may not change or alter any portion of this comment or credits ## |
|---|
| 19 | ## of supporting developers from this source code or any supporting ## |
|---|
| 20 | ## source code which is considered copyrighted (c) material of the ## |
|---|
| 21 | ## original comment or credit authors. ## |
|---|
| 22 | ## ## |
|---|
| 23 | ## This program is distributed in the hope that it will be useful, ## |
|---|
| 24 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## |
|---|
| 25 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## |
|---|
| 26 | ## GNU General Public License for more details. ## |
|---|
| 27 | ## ## |
|---|
| 28 | ## You should have received a copy of the GNU General Public License ## |
|---|
| 29 | ## along with this program; if not, write to the Free Software ## |
|---|
| 30 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ## |
|---|
| 31 | ############################################################################### |
|---|
| 32 | ## Author of this file: CACHE ## |
|---|
| 33 | ## URL: http://gyakubiki.kir.jp/ ## |
|---|
| 34 | ## Project: RSSFitJ ## |
|---|
| 35 | ############################################################################### |
|---|
| 36 | // Module Info |
|---|
| 37 | |
|---|
| 38 | // The name of this module |
|---|
| 39 | define("_MI_RSSFITJ_NAME","XML (RSS feed)"); |
|---|
| 40 | |
|---|
| 41 | // A brief description of this module |
|---|
| 42 | define("_MI_RSSFITJ_DESC","Extendable XML news feed generator"); |
|---|
| 43 | |
|---|
| 44 | // admin/menu.php |
|---|
| 45 | define("_MI_RSSFITJ_ADMENU1","Edit intro"); |
|---|
| 46 | define("_MI_RSSFITJ_ADMENU2","Manage plug-ins"); |
|---|
| 47 | define("_MI_RSSFITJ_ADMENU3","Manage Parameters"); |
|---|
| 48 | |
|---|
| 49 | // Module Configs |
|---|
| 50 | define("_MI_RSSFITJ_OVERALL_ENTRIES","Total entries to show"); |
|---|
| 51 | define("_MI_RSSFITJ_OVERALL_ENTRIES_DESC","Number of entries to show in the RSS feed"); |
|---|
| 52 | define("_MI_RSSFITJ_PLUGIN_ENTRIES","Default entry number for plug-ins"); |
|---|
| 53 | define("_MI_RSSFITJ_PLUGIN_ENTRIES_DESC","Default number of entries to grab by each plug-in when installed"); |
|---|
| 54 | define("_MI_RSSFITJ_ENTRIES_SORT","Entries sort by"); |
|---|
| 55 | define("_MI_RSSFITJ_ENTRIES_SORT_DESC","Entries sort order for the RSS feed output"); |
|---|
| 56 | define("_MI_RSSFITJ_ENTRIES_SORT_DATE","Date"); |
|---|
| 57 | define("_MI_RSSFITJ_ENTRIES_SORT_CAT","Category"); |
|---|
| 58 | define("_MI_RSSFITJ_CACHE","Cache lifetime (minutes)"); |
|---|
| 59 | define("_MI_RSSFITJ_CACHE_DESC","This option will also be used for the Time-to-Live (TTL) channel element of the RSS output."); |
|---|
| 60 | define("_MI_RSSFITJ_MAXCHAR","Maximum characters of item descriptions"); |
|---|
| 61 | define("_MI_RSSFITJ_MAXCHAR_DESC","0 = show entire content"); |
|---|
| 62 | define("_MI_RSSFITJ_STRIPHTML","Strip html tags"); |
|---|
| 63 | define("_MI_RSSFITJ_STRIPHTML_DESC","Remove html tags from item description elements, including Xoopscodes and Smileys"); |
|---|
| 64 | define("_MI_RSSFITJ_ENCODE_UTF8","Encode contents to UTF-8"); |
|---|
| 65 | define("_MI_RSSFITJ_ENCODE_UTF8_DESC","Note: probably not functional and recommended to turn off."); |
|---|
| 66 | |
|---|
| 67 | // template explanations |
|---|
| 68 | define("_MI_RSSFITJ_TMPL_INTRO","Introduction in module home page"); |
|---|
| 69 | define("_MI_RSSFITJ_TMPL_RSS","RSS feed data"); |
|---|
| 70 | |
|---|
| 71 | ?> |
|---|