source: temp/test-xoops.ec-cube.net/html/modules/tinyd0/language/english/admin.php @ 405

Revision 405, 4.3 KB checked in by root, 20 years ago (diff)
Line 
1<?php
2
3if( defined( 'FOR_XOOPS_LANG_CHECKER' ) || ! defined( 'TINYCONTENT_AM_LOADED' ) ) {
4
5define( 'TINYCONTENT_AM_LOADED' , 1 ) ;
6
7//Admin Page Titles
8define("_TC_ADMINTITLE","Tiny Content");
9
10// SPAW
11define('_TC_SPAWLANG','en') ;
12
13//Table Titles
14define("_TC_ADDCONTENT","Add new Content");
15define("_TC_EDITCONTENT","Edit Content");
16define("_TC_ADDLINK","Add PageWrap");
17define("_TC_EDITLINK","Modify PageWrap");
18define("_TC_ULFILE","Upload File");
19define("_TC_SFILE","Search");
20define("_TC_DELFILE","Delete File");
21define("_TC_UPDATE_WRAP_CONTENTS","Update wrapped contents for searching");
22
23//Table Data
24define("_TC_HOMEPAGE","Home");
25define("_TC_LINKNAME","Link Title");
26define("_TC_STORYID","ID");
27define("_TC_VISIBLE","Visible");
28define("_TC_TH_VISIBLE","Vis");
29define("_TC_ENABLECOM","Comments enabled");
30define("_TC_TH_ENABLECOM","Com");
31define("_TC_HTML_HEADER","HTML header");
32define("_TC_CONTENT","Content");
33define("_TC_YES","Yes");
34define("_TC_NO","No");
35define("_TC_URL","Select File");
36define("_TC_UPLOAD","Upload");
37define("_TC_DISABLEBREAKS","Disable Linebreak Conversion (Activate when using HTML)");
38define("_TC_SUBMENU","Display in Submenu");
39define("_TC_TH_SUBMENU","Sub");
40define("_TC_DISP_YES","Display");
41define("_TC_DISP_NO","Do Not Display");
42
43define("_TC_CONTENT_TYPE","Page Type");
44define("_TC_TYPE_HTML","HTML Content (bb code enabled)"); // nohtml=0
45define("_TC_TYPE_HTMLNOBB","HTML Content (bb code disabled)"); // nohtml=2
46define("_TC_TYPE_TEXTWITHBB","Text Content (bb code enabled)"); // nohtml=1
47define("_TC_TYPE_TEXTNOBB","Text Content (bb code disabled)"); // nohtml=3
48define("_TC_TYPE_PHPHTML","PHP codes (bb code disabled)"); // nohtml=8
49define("_TC_TYPE_PHPWITHBB","PHP codes (bb code enabled)"); // nohtml=10
50define("_TC_TYPE_PEARWIKI","PEAR Wiki (bb code disabled)"); // nohtml=16
51define("_TC_TYPE_PEARWIKIWITHBB","PEAR Wiki (bb code enabled)"); // nohtml=18
52define("_TC_TYPE_PUKIWIKI","PukiWiki (bb code disabled)"); // nohtml=32 (resv)
53define("_TC_TYPE_PUKIWIKIWITHBB","PukiWiki (bb code enabled)"); // nohtml=34 (resv)
54
55define("_TC_CHECKED_ITEMS_ARE","Checked records are:");
56define("_TC_BUTTON_MOVETO","Export(Move)");
57
58define("_TC_LASTMODIFIED","Last Modified");
59define("_TC_DONTUPDATELASTMODIFIED","Do not update it automatically");
60define("_TC_CREATED","Created");
61define("_TC_SAVEAS","Save as");
62
63define("_TC_LINKID","Priority");
64define("_TC_CONTENTTYPE","Type");
65define("_TC_ACTION","Action");
66define("_TC_EDIT","Edit");
67define("_TC_DELETE","Delete");
68define("_TC_ELINK","Modify");
69define("_TC_DELLINK","Cut");
70
71define("_TC_WRAPROOT","PageWrap's Base");
72define("_TC_FMT_WRAPROOTTC","Same as TinyContent module<br /> (%s) <br />");
73define("_TC_FMT_WRAPROOTPAGE","Same as wrapped page.<br /> (%s) <br />use mod_rewrite if you can.<br />");
74define("_TC_FMT_WRAPBYREWRITE","use mod_rewrite (experimental)<br /> upload HTMLs and others into %s<br />Do not forget turning mod_rewrite on<br />");
75define("_TC_FMT_WRAPCHANGESRCHREF","rewrite attributes of html (experimental)<br /> this option rewrites relative links to absolute links.<br />This probably mis-recognizes sentences looks like HTML source<br />");
76
77define("_TC_DISABLECOM","Disable comments");
78define("_TC_DBUPDATED","Database Updated Successfully!");
79define("_TC_ERRORINSERT","Error while updating database!");
80define("_TC_RUSUREDEL","Are you sure you want to delete this content? <br />All comments linked to the content will be removed");
81define("_TC_RUSUREDELF","Are you sure you want to delete this file?");
82define("_TC_UPLOADED","File Uploaded Successfully!");
83define("_TC_FDELETED","File Deleted Successfully!");
84define("_TC_ERROREXIST","Error. The same filename exists");
85define("_TC_ERRORUPL","Error while uploading file!");
86define("_TC_FMT_WRAPPATHPERMOFF","<span style='font-size:xx-small;'>The directory for wrapping (%s) is not allowed to be written to by httpd. <br />If you'd like to upload or delete files via HTTP, turn the writing permission on.<br />I recommend to upload or delete files only via ftp for security reasons, thus the writing permission of the directory should still be off.</span>");
87define("_TC_FMT_WRAPPATHPERMON","<span style='font-size:xx-small;'>I don't recommend you upload via HTTP. Try to upload the files for wrapping via ftp, if you can.</span>" ) ;
88
89define("_TC_ALTER_TABLE","Alter Table");
90
91define("_TC_JS_CONFIRMDISCARD","Changes will be discarded. OK?");
92
93}
94
95?>
Note: See TracBrowser for help on using the repository browser.