| ... | ... |
@@ -431,7 +431,7 @@ define ("_LOG_ADMIN_DEL", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> deleted <a
|
| 431 | 431 |
define ("_LOG_ADMIN_EDIT", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> edited <a href='viewstory.php?sid=%4\$d'>%3\$s</a> by <a href='viewuser.php?uid=%6\$d'>%5\$s</a>.");
|
| 432 | 432 |
define ("_LOG_ADMIN_DEL_CHAPTER", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> deleted <a href='viewstory.php?sid=%4\$d'>%3\$s</a> by <a href='viewuser.php?uid=%6\$d'>%5\$s</a>, chapter %7\$d");
|
| 433 | 433 |
define ("_LOG_ADMIN_EDIT_CHAPTER", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> edited <a href='viewstory.php?sid=%4\$d'>%3\$s</a> by <a href='viewuser.php?uid=%6\$d'>%5\$s</a>, chapter %7\$d");
|
| 434 |
-define ("_LOG_ADMIN_EDIT_AUTHOR", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> changed the author of <a href='viewstory.php?sid=%4\$d'>%3\$s</a> by <a href='viewuser.php?uid=%8\$7'>%5\$s</a> to <a href='viewuser.php?uid=%6\$d'>%5\$s</a>.");
|
|
| 434 |
+define ("_LOG_ADMIN_EDIT_AUTHOR", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> changed the author of <a href='viewstory.php?sid=%4\$d'>%3\$s</a> by <a href='viewuser.php?uid=%8\$d'>%7\$s</a> to <a href='viewuser.php?uid=%6\$d'>%5\$s</a>.");
|
|
| 435 | 435 |
define ("_LOG_ADMIN_DEL_SERIES", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> deleted the series '%3\$s'.");
|
| 436 | 436 |
define ("_LOG_ADMIN_EDIT_SERIES", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> edited the series '<a href='viewseries.php?seriesid=%4\$d'>%3\$s</a>'.");
|
| 437 | 437 |
define ("_LOG_ADMIN_DEL_FROM_SERIES", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> deleted <a href='viewstory.php?sid=%4\$d'>%3\$s</a> by <a href='viewuser.php?uid=%6\$d'>%5\$s</a> from '<a href='viewseries.php?seriesid=%8\$d'>%7\$s</a>.'");
|
| ... | ... |
@@ -294,6 +294,7 @@ define ("_BIO", "Bio");
|
| 294 | 294 |
define ("_EDITPERSONAL", "Edit Personal Information");
|
| 295 | 295 |
define ("_EMAILINUSE", "This email address has already been used to sign up for an account. If you've lost your password, please generate a new one by using the <a href=\"user.php?action=lostpassword\">lost password</a> feature.");
|
| 296 | 296 |
define ("_ICQ", "ICQ");
|
| 297 |
+define ("_INSECUREPWD", "Your password is hashed using unsalted MD5, a known insecure hashing algorithm. Please update your password so it can be converted to the more secure bcrypt.");
|
|
| 297 | 298 |
define ("_INVALIDEMAIL", "The e-mail address you supplied is an invalid format.");
|
| 298 | 299 |
define ("_LOGINAGAIN", "However, if you have changed your password, you will have to <a href=\"login.php\">login again</a>.");
|
| 299 | 300 |
define ("_NEWACCOUNT", "New Account");
|
| ... | ... |
@@ -68,7 +68,6 @@ define ("_JAVASCRIPTOFF", "You must have javascript enabled for this form to wor
|
| 68 | 68 |
define ("_LIKE", "like");
|
| 69 | 69 |
define ("_LIKES_NUMBER", "Number of Likes");
|
| 70 | 70 |
define ("_LOGIN", "Log In");
|
| 71 |
-define ("_LOGINAGAIN", "<br>However, if you have changed your password, you will have to <a href=\"login.php\">login again</a>.");
|
|
| 72 | 71 |
define ("_PLEASELOGIN", "Please login to access this feature.");
|
| 73 | 72 |
define ("_MEMBER", "Member");
|
| 74 | 73 |
define ("_MEMBERS", "Members");
|
| ... | ... |
@@ -296,6 +295,7 @@ define ("_EDITPERSONAL", "Edit Personal Information");
|
| 296 | 295 |
define ("_EMAILINUSE", "This email address has already been used to sign up for an account. If you've lost your password, please generate a new one by using the <a href=\"user.php?action=lostpassword\">lost password</a> feature.");
|
| 297 | 296 |
define ("_ICQ", "ICQ");
|
| 298 | 297 |
define ("_INVALIDEMAIL", "The e-mail address you supplied is an invalid format.");
|
| 298 |
+define ("_LOGINAGAIN", "However, if you have changed your password, you will have to <a href=\"login.php\">login again</a>.");
|
|
| 299 | 299 |
define ("_NEWACCOUNT", "New Account");
|
| 300 | 300 |
define ("_NEWPEN", "%1\$s ( %2\$d ) changed penname %3\$s ( %4\$d ) to %5\$s.");
|
| 301 | 301 |
define ("_MSN", "MSN IM");
|
| ... | ... |
@@ -1,9 +1,6 @@ |
| 1 | 1 |
<?php |
| 2 |
-// temp error message suppression - for stories.php when adding a new story or editing an existing one |
|
| 3 |
-// main purpose is to stop web server error log spam with stories.php - this has very unintended effects |
|
| 4 |
-// should properly fix this before PHP 9.0 |
|
| 5 |
-// Reference: https://wiki.php.net/rfc/undefined_variable_error_promotion |
|
| 6 |
-error_reporting(0); |
|
| 2 |
+// fix - needed for PHP 8 |
|
| 3 |
+include(""._BASEDIR."/includes/load-bearing.php");
|
|
| 7 | 4 |
|
| 8 | 5 |
// Defines the character set for your language/location |
| 9 | 6 |
|
| ... | ... |
@@ -1,5 +1,8 @@ |
| 1 | 1 |
<?php |
| 2 |
- |
|
| 2 |
+// temp error message suppression - for stories.php when adding a new story or editing an existing one |
|
| 3 |
+// main purpose is to stop web server error log spam with stories.php - this has very unintended effects |
|
| 4 |
+// should properly fix this before PHP 9.0 |
|
| 5 |
+// Reference: https://wiki.php.net/rfc/undefined_variable_error_promotion |
|
| 3 | 6 |
error_reporting(0); |
| 4 | 7 |
|
| 5 | 8 |
// Defines the character set for your language/location |
| ... | ... |
@@ -303,6 +303,7 @@ define ("_PWDREQUIRED", "A password is required to access this function.");
|
| 303 | 303 |
define ("_PENEMAILREQUIRED", "You must fill out the penname and email fields. Please <a href=\"user.php?action=newaccount\">try again</a>.");
|
| 304 | 304 |
define ("_PENNAMEINUSE", "This penname is already in use.");
|
| 305 | 305 |
define ("_REALNAME", "Real name");
|
| 306 |
+define ("_REGDISABLED", "The administrator has disabled new user registrations to this website.");
|
|
| 306 | 307 |
define ("_REGISTER", "Register");
|
| 307 | 308 |
define ("_REGLOG", "%1\$s (%2\$d) registered from IP address %3\$s.");
|
| 308 | 309 |
define ("_SIGNUPSUBJECT", "Welcome to $sitename");
|
| ... | ... |
@@ -65,6 +65,7 @@ define ("_JAVASCRIPTOFF", "You must have javascript enabled for this form to wor
|
| 65 | 65 |
define ("_LIKE", "like");
|
| 66 | 66 |
define ("_LIKES_NUMBER", "Number of Likes");
|
| 67 | 67 |
define ("_LOGIN", "Log In");
|
| 68 |
+define ("_LOGINAGAIN", "<br>However, if you have changed your password, you will have to <a href=\"login.php\">login again</a>.");
|
|
| 68 | 69 |
define ("_PLEASELOGIN", "Please login to access this feature.");
|
| 69 | 70 |
define ("_MEMBER", "Member");
|
| 70 | 71 |
define ("_MEMBERS", "Members");
|
| ... | ... |
@@ -63,6 +63,7 @@ define ("_GO", "Go");
|
| 63 | 63 |
define ("_HALFSTAR", "half-star");
|
| 64 | 64 |
define ("_JAVASCRIPTOFF", "You must have javascript enabled for this form to work properly."); // Modified for version 3.0
|
| 65 | 65 |
define ("_LIKE", "like");
|
| 66 |
+define ("_LIKES_NUMBER", "Number of Likes");
|
|
| 66 | 67 |
define ("_LOGIN", "Log In");
|
| 67 | 68 |
define ("_PLEASELOGIN", "Please login to access this feature.");
|
| 68 | 69 |
define ("_MEMBER", "Member");
|
| ... | ... |
@@ -443,4 +444,4 @@ define ("_RULESVIOLATION", "Violation of Rules");
|
| 443 | 444 |
define ("_BUGREPORT", "Bug Report");
|
| 444 | 445 |
define ("_REPORTTHIS", "Report This");
|
| 445 | 446 |
|
| 446 |
-?> |
|
| 447 | 447 |
\ No newline at end of file |
| 448 |
+?> |
| ... | ... |
@@ -1,6 +1,6 @@ |
| 1 | 1 |
<?php |
| 2 |
- |
|
| 3 |
-if(!isset($action) OR is_null($action)) $action = ""; |
|
| 2 |
+ |
|
| 3 |
+ |
|
| 4 | 4 |
|
| 5 | 5 |
|
| 6 | 6 |
// Defines the doc type. Most people will not need to change this. |
| ... | ... |
@@ -12,7 +12,6 @@ $alphabet = array( 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', ' |
| 12 | 12 |
|
| 13 | 13 |
// General...used in many pages. |
| 14 | 14 |
|
| 15 |
- |
|
| 16 | 15 |
define ("_ACTIONSUCCESSFUL", "The action was successful.");
|
| 17 | 16 |
define ("_ACTIONCANCELLED", "The requested action was cancelled.");
|
| 18 | 17 |
define ("_ACTIVE", "Active");
|
| ... | ... |
@@ -62,10 +61,8 @@ define ("_FATALERROR", "<b>A fatal MySQL error was encountered.</b><br />");
|
| 62 | 61 |
define ("_FSTORY", "Feature");
|
| 63 | 62 |
define ("_GO", "Go");
|
| 64 | 63 |
define ("_HALFSTAR", "half-star");
|
| 65 |
-define ("_HIDE", "Hide");
|
|
| 66 | 64 |
define ("_JAVASCRIPTOFF", "You must have javascript enabled for this form to work properly."); // Modified for version 3.0
|
| 67 | 65 |
define ("_LIKE", "like");
|
| 68 |
-if(!defined("_LIKES_NUMBER")) define("_LIKES_NUMBER", "Number of Likes");
|
|
| 69 | 66 |
define ("_LOGIN", "Log In");
|
| 70 | 67 |
define ("_PLEASELOGIN", "Please login to access this feature.");
|
| 71 | 68 |
define ("_MEMBER", "Member");
|
| ... | ... |
@@ -126,7 +123,6 @@ define ("_TINYMCETOGGLE", "Use tinyMCE");
|
| 126 | 123 |
define ("_TITLE", "Title");
|
| 127 | 124 |
define ("_TOC", "Table of Contents");
|
| 128 | 125 |
define ("_TOPLEVEL", "Top Level Category"); // Really only used in the admin, but needs to load with the header.
|
| 129 |
-define ("_UNHIDE", "Unhide");
|
|
| 130 | 126 |
define ("_UP", "up arrow");
|
| 131 | 127 |
define ("_WIP", "Work in Progress Only"); // Added 01/12/07
|
| 132 | 128 |
define ("_YES", "Yes");
|
| ... | ... |
@@ -447,4 +443,4 @@ define ("_RULESVIOLATION", "Violation of Rules");
|
| 447 | 443 |
define ("_BUGREPORT", "Bug Report");
|
| 448 | 444 |
define ("_REPORTTHIS", "Report This");
|
| 449 | 445 |
|
| 450 |
-?> |
|
| 446 |
+?> |
|
| 451 | 447 |
\ No newline at end of file |
| ... | ... |
@@ -62,8 +62,10 @@ define ("_FATALERROR", "<b>A fatal MySQL error was encountered.</b><br />");
|
| 62 | 62 |
define ("_FSTORY", "Feature");
|
| 63 | 63 |
define ("_GO", "Go");
|
| 64 | 64 |
define ("_HALFSTAR", "half-star");
|
| 65 |
+define ("_HIDE", "Hide");
|
|
| 65 | 66 |
define ("_JAVASCRIPTOFF", "You must have javascript enabled for this form to work properly."); // Modified for version 3.0
|
| 66 | 67 |
define ("_LIKE", "like");
|
| 68 |
+if(!defined("_LIKES_NUMBER")) define("_LIKES_NUMBER", "Number of Likes");
|
|
| 67 | 69 |
define ("_LOGIN", "Log In");
|
| 68 | 70 |
define ("_PLEASELOGIN", "Please login to access this feature.");
|
| 69 | 71 |
define ("_MEMBER", "Member");
|
| ... | ... |
@@ -124,6 +126,7 @@ define ("_TINYMCETOGGLE", "Use tinyMCE");
|
| 124 | 126 |
define ("_TITLE", "Title");
|
| 125 | 127 |
define ("_TOC", "Table of Contents");
|
| 126 | 128 |
define ("_TOPLEVEL", "Top Level Category"); // Really only used in the admin, but needs to load with the header.
|
| 129 |
+define ("_UNHIDE", "Unhide");
|
|
| 127 | 130 |
define ("_UP", "up arrow");
|
| 128 | 131 |
define ("_WIP", "Work in Progress Only"); // Added 01/12/07
|
| 129 | 132 |
define ("_YES", "Yes");
|
| ... | ... |
@@ -444,4 +447,4 @@ define ("_RULESVIOLATION", "Violation of Rules");
|
| 444 | 447 |
define ("_BUGREPORT", "Bug Report");
|
| 445 | 448 |
define ("_REPORTTHIS", "Report This");
|
| 446 | 449 |
|
| 447 |
-?> |
|
| 448 | 450 |
\ No newline at end of file |
| 451 |
+?> |
| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,447 @@ |
| 1 |
+<?php |
|
| 2 |
+ |
|
| 3 |
+if(!isset($action) OR is_null($action)) $action = ""; |
|
| 4 |
+ |
|
| 5 |
+ |
|
| 6 |
+// Defines the doc type. Most people will not need to change this. |
|
| 7 |
+define ("_DOCTYPE", "<!doctype html>");
|
|
| 8 |
+ |
|
| 9 |
+// Your alphabet list. If you need other than single characters be sure to enclose the character entity in quotes. For example: "Œ" |
|
| 10 |
+define ("_OTHER", "Other");
|
|
| 11 |
+$alphabet = array( 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', _OTHER ); |
|
| 12 |
+ |
|
| 13 |
+// General...used in many pages. |
|
| 14 |
+ |
|
| 15 |
+ |
|
| 16 |
+define ("_ACTIONSUCCESSFUL", "The action was successful.");
|
|
| 17 |
+define ("_ACTIONCANCELLED", "The requested action was cancelled.");
|
|
| 18 |
+define ("_ACTIVE", "Active");
|
|
| 19 |
+define ("_ADD", "Add");
|
|
| 20 |
+define ("_ADDAUTHOR2FAVES", "Add Author to Favorites");
|
|
| 21 |
+define ("_ADDSTORY2FAVES", "Add Story to Favorites");
|
|
| 22 |
+define ("_ADDTOFAVORITES", "Add to Favorites");
|
|
| 23 |
+define ("_ADMINOPTIONS", "Admin Options");
|
|
| 24 |
+define ("_AGECHECK", "Age Consent Required");
|
|
| 25 |
+define ("_AGECONSENT", "I am of the age of consent in my locale to view materials with adult content. I realize that by agreeing, the normal warnings for stories with adult content will be by-passed.");
|
|
| 26 |
+define ("_ALL", "All");
|
|
| 27 |
+define ("_ALLOWEDTAGS", "<span style=\"font-weight: bold; text-decoration: underline;\">Note:</span> Allowed HTML tags are: ".htmlentities(preg_replace("/></", "> <", $allowed_tags)));
|
|
| 28 |
+define ("_ALLSTORIES", "All Stories");
|
|
| 29 |
+define ("_ALPHA", "Alphabetically");
|
|
| 30 |
+define ("_ANONYMOUS", "Anonymous");
|
|
| 31 |
+define ("_AUTHORSNOTES", "Author's Notes");
|
|
| 32 |
+define ("_BACK2ACCT", "Back to <a href=\"user.php\">your account</a> area.");
|
|
| 33 |
+define ("_BACK2ADMIN", "Back to <a href=\"admin.php\">Admin</a> area.");
|
|
| 34 |
+define ("_BACK2CATS", "Back to Main Categories");
|
|
| 35 |
+define ("_BACK2PREVIOUS", "Back to Previous.");
|
|
| 36 |
+define ("_BACK2STORY", "<a href='viewstory.php?sid=%s'>Back to story.</a>");
|
|
| 37 |
+define ("_BACK2SERIES", "<a href='series.php?seriesid=%s'>Back to series.</a>");
|
|
| 38 |
+define ("_BACK2REVIEWS", "<a href='reviews.php?%s'>Back to reviews.</a>");
|
|
| 39 |
+define ("_BY", "by");
|
|
| 40 |
+define ("_CAPTCHAFAIL", "The security code you entered did not match. Please <a href=\"javascript: history.back(1)\">try again.</a>");
|
|
| 41 |
+define ("_CAPTCHANOTE", "Enter the security code shown below:");
|
|
| 42 |
+define ("_CATEGORIES", "Categories");
|
|
| 43 |
+define ("_CATEGORY", "Category");
|
|
| 44 |
+define ("_CATLOCKED", "This category is locked.");
|
|
| 45 |
+define ("_CATOPTIONS", "Category Options");
|
|
| 46 |
+define ("_CLEAR", "Clear");
|
|
| 47 |
+define ("_CHAPTER", "Chapter");
|
|
| 48 |
+define ("_CHAPTERS", "Chapters");
|
|
| 49 |
+define ("_CHARACTERS", "Characters");
|
|
| 50 |
+define ("_CHOOSECAT", "Choose a Category");
|
|
| 51 |
+define ("_CONFIRMDELETE", "Are you sure you want to delete this?");
|
|
| 52 |
+define ("_COAUTHORSEARCH", "Type in the first few letters of the person's penname. The first ten matches will appear in a list. Click on the person's name to select them as a co-author.");
|
|
| 53 |
+define ("_DELETE", "Delete");
|
|
| 54 |
+define ("_DISLIKE", "dislike");
|
|
| 55 |
+define ("_DOWN", "down arrow");
|
|
| 56 |
+define ("_EDIT", "Edit");
|
|
| 57 |
+define ("_EDITFAVORITES", "Edit Favorites");
|
|
| 58 |
+define ("_EMAIL", "E-mail");
|
|
| 59 |
+define ("_EMAILFAILED", "The email could not be sent. Please <a href='"._BASEDIR."contact.php'>contact the administrator</a> to report this problem.");
|
|
| 60 |
+define ("_ERROR", "<strong>Error!</strong>We encountered an error. Please go back and try again.");
|
|
| 61 |
+define ("_FATALERROR", "<b>A fatal MySQL error was encountered.</b><br />");
|
|
| 62 |
+define ("_FSTORY", "Feature");
|
|
| 63 |
+define ("_GO", "Go");
|
|
| 64 |
+define ("_HALFSTAR", "half-star");
|
|
| 65 |
+define ("_JAVASCRIPTOFF", "You must have javascript enabled for this form to work properly."); // Modified for version 3.0
|
|
| 66 |
+define ("_LIKE", "like");
|
|
| 67 |
+define ("_LOGIN", "Log In");
|
|
| 68 |
+define ("_PLEASELOGIN", "Please login to access this feature.");
|
|
| 69 |
+define ("_MEMBER", "Member");
|
|
| 70 |
+define ("_MEMBERS", "Members");
|
|
| 71 |
+define ("_MOSTRECENT", "Most Recent");
|
|
| 72 |
+define ("_MOVE", "Move");
|
|
| 73 |
+define ("_MOVETOP", "Move to Top"); // Really only used in the admin files, but we need it in the header.
|
|
| 74 |
+define ("_MULTIPLECATEGORIES",
|
|
| 75 |
+"<span style=\"text-decoration: underline; font-weight: bold;\">Note:</span> You may select multiple categories. |
|
| 76 |
+<u>Please be aware that when you select a category in the drop-down menu below, the options in the list will change to display that category's sub-categories.</u> |
|
| 77 |
+ Press the 'Select >' button to add it to your choices. You may clear your selections at any time using the 'Clear' button."); |
|
| 78 |
+define ("_MULTIPLESELECT", "Hold the CTRL key to make multiple selections.");
|
|
| 79 |
+define ("_NAME", "Name");
|
|
| 80 |
+define ("_NAUGHTYWORDS", "You have triggered our bad language filters. We require that all content not behind an age verification warning be suitable for all audiences. This includes titles, summaries, and names (for anonymous reviews, challenges, etc.). Please <a href=\"javascript: history.back(1)\">try again.</a>");
|
|
| 81 |
+define ("_NEXT", "Next");
|
|
| 82 |
+define ("_NEW", "New!");
|
|
| 83 |
+define ("_NO", "No");
|
|
| 84 |
+define ("_NODBFUNCTIONALITY", "It appears no applicable database functionality for PHP has not been enabled in the php configuration for this website. Please consult the PHP documentation or ask your hosting provider.");
|
|
| 85 |
+define ("_NOMAILSENT", "We encountered an error. No e-mail was sent.");
|
|
| 86 |
+define ("_NONE", "None");
|
|
| 87 |
+define ("_NOSKIN", "The skin you selected in your user profile seems to be missing. The site's default skin will be used instead. Please edit your profile to choose another skin.");
|
|
| 88 |
+define ("_NORESULTS", "No results found.");
|
|
| 89 |
+define ("_NOTAUTHORIZED", "You are not authorized to access that function.");
|
|
| 90 |
+define ("_NOTCONNECTED", "ERROR: Failed to connect to the database!");
|
|
| 91 |
+define ("_OPTIONS", "Options");
|
|
| 92 |
+define ("_OR", "or");
|
|
| 93 |
+define ("_ORPHAN", "Orphan");
|
|
| 94 |
+define ("_OTHERRESULTS", "Other Results");
|
|
| 95 |
+define ("_PENNAME", "Penname");
|
|
| 96 |
+define ("_PFSTORY", "Past Featured Story");
|
|
| 97 |
+define ("_POSSIBLEHACK", "A hacking attempt has been detected.");
|
|
| 98 |
+define ("_PREVIEW", "Preview");
|
|
| 99 |
+define ("_PREVIOUS", "Previous");
|
|
| 100 |
+define ("_PRINTER", "Printer");
|
|
| 101 |
+define ("_ORDER", "Order");
|
|
| 102 |
+define ("_RATING", "Rating");
|
|
| 103 |
+define ("_RATINGS", "Ratings");
|
|
| 104 |
+define ("_REMOVE", "Remove");
|
|
| 105 |
+define ("_REQUIREDINFO", "Some of the required information is missing. Please check your input.");
|
|
| 106 |
+define ("_REVIEW", "Review");
|
|
| 107 |
+define ("_REVIEWNOTE", "<span style=\"text-decoration: underline; font-weight: bold;\">Note:</span> You may submit either a rating or a review or both.");
|
|
| 108 |
+define ("_REVIEWRATING", _RATING);
|
|
| 109 |
+define ("_REVIEWS", "Reviews");
|
|
| 110 |
+define ("_RETIRE", "Retire");
|
|
| 111 |
+define ("_RETIRED", "Retired");
|
|
| 112 |
+define ("_RUSERSONLY", "Registered Users Only");
|
|
| 113 |
+define ("_SELECT", "Select");
|
|
| 114 |
+define ("_SELECTCATS", "Selected Categories");
|
|
| 115 |
+define ("_SERIES", "Series");
|
|
| 116 |
+define ("_SORT", "Sort");
|
|
| 117 |
+define ("_STAR", "star");
|
|
| 118 |
+define ("_STORIES", "Stories");
|
|
| 119 |
+define ("_STORY", "Story");
|
|
| 120 |
+define ("_SUBMIT", "Submit");
|
|
| 121 |
+define ("_SUMMARY", "Summary");
|
|
| 122 |
+define ("_TEXT", "Text");
|
|
| 123 |
+define ("_TINYMCETOGGLE", "Use tinyMCE");
|
|
| 124 |
+define ("_TITLE", "Title");
|
|
| 125 |
+define ("_TOC", "Table of Contents");
|
|
| 126 |
+define ("_TOPLEVEL", "Top Level Category"); // Really only used in the admin, but needs to load with the header.
|
|
| 127 |
+define ("_UP", "up arrow");
|
|
| 128 |
+define ("_WIP", "Work in Progress Only"); // Added 01/12/07
|
|
| 129 |
+define ("_YES", "Yes");
|
|
| 130 |
+ |
|
| 131 |
+// Login |
|
| 132 |
+ |
|
| 133 |
+define ("_REMEMBERME", "Remember Me");
|
|
| 134 |
+define ("_MEMBERLOGIN", "Member Login");
|
|
| 135 |
+ |
|
| 136 |
+// Browse |
|
| 137 |
+define ("_BROWSE", "Browse");
|
|
| 138 |
+define ("_RECENTSTORIES", "Stories updated in the last ".$recentdays." days.");
|
|
| 139 |
+define ("_EMAILSENT", "Your e-mail has been sent.");
|
|
| 140 |
+define ("_TITLES", "Titles");
|
|
| 141 |
+// Contact Us |
|
| 142 |
+define ("_YOUREMAIL", "Your E-mail");
|
|
| 143 |
+define ("_CONTACTUS", "Contact Us");
|
|
| 144 |
+ |
|
| 145 |
+// Members/Authors page |
|
| 146 |
+define ("_AUTHORS" , "Authors");
|
|
| 147 |
+define ("_BETAS", "Beta-readers");
|
|
| 148 |
+define ("_ALLMEMBERS", "All Members");
|
|
| 149 |
+define ("_SITEADMINS", "Site Admins");
|
|
| 150 |
+ |
|
| 151 |
+// News |
|
| 152 |
+define ("_COMMENTS", "Comments");
|
|
| 153 |
+define ("_NEWS", "News");
|
|
| 154 |
+ |
|
| 155 |
+// Reviews |
|
| 156 |
+define ("_ALREADYRESPONDED", "You have already responded to that review!");
|
|
| 157 |
+define ("_BACKTOSTORY", "Back to story.");
|
|
| 158 |
+define ("_DELETEREVIEW", "Delete Review");
|
|
| 159 |
+define ("_DISLIKED", "Disliked");
|
|
| 160 |
+define ("_LIKED", "Liked");
|
|
| 161 |
+define ("_MISSINGINFO", "You must supply either a review or rating.");
|
|
| 162 |
+define ("_MISSINGINFO2", "Rating a story without writing a review is not allowed. You must write a review.");
|
|
| 163 |
+define ("_OPINION", "Opinion");
|
|
| 164 |
+define ("_RESPECTNOTE", " Please be respectful and polite when contacting an author.");
|
|
| 165 |
+define ("_RESPOND", "Respond");
|
|
| 166 |
+define ("_REVEMAIL1", "New Review at $sitename for ");
|
|
| 167 |
+define ("_REVEMAIL2", "Hello,
|
|
| 168 |
+ You have received a new review at $sitename.\r\n You can view your new review at <a href='$url/reviews.php?%1\$s'>$url/reviews.php?%1\$s</a>. |
|
| 169 |
+If you no longer wish to receive e-mails such as this, please go to <a href='$url/user.php'>your account</a>\r\n |
|
| 170 |
+on $sitename, and edit your profile."); // Modified 11-12-05 |
|
| 171 |
+define ("_REVIEWSFOR", "Reviews For");
|
|
| 172 |
+define ("_REVTHANKYOU", "Thank you for your review!");
|
|
| 173 |
+define ("_SIGNED", "Signed");
|
|
| 174 |
+define ("_VIEWALLREVIEWS", "View All Reviews");
|
|
| 175 |
+ |
|
| 176 |
+// Search |
|
| 177 |
+ |
|
| 178 |
+define ("_10LISTS", "Top Ten Lists");
|
|
| 179 |
+define ("_10LARGESERIES", "Ten Largest Series");
|
|
| 180 |
+define ("_10SMALLSERIES", "Ten Smallest Series");
|
|
| 181 |
+define ("_10REVIEWEDSERIES", "Ten Most Reviewed Series");
|
|
| 182 |
+define ("_10FAVSERIES", "Ten Favorite Series");
|
|
| 183 |
+define ("_10SHORTSTORY", "Ten Shortest Stories");
|
|
| 184 |
+define ("_10LONGSTORY", "Ten Longest Stories");
|
|
| 185 |
+define ("_10REVIEWEDSTORY", "Ten Most Reviewed Stories");
|
|
| 186 |
+define ("_10FAVSTORY", "Ten Favorite Stories");
|
|
| 187 |
+define ("_10FAVAUTHOR", "Ten Favorite Authors");
|
|
| 188 |
+define ("_10PROLIFICAUTHOR", "Ten Most Prolific Authors");
|
|
| 189 |
+define ("_10PROLIFICREVIEWER", "Ten Most Prolific Reviewers");
|
|
| 190 |
+define ("_ADVANCED", "Advanced Search");
|
|
| 191 |
+define ("_COMPLETEONLY", "Completed Only");
|
|
| 192 |
+define ("_EXCLUDE", "to Exclude");
|
|
| 193 |
+define ("_FULLTEXT", "Full Text");
|
|
| 194 |
+define ("_INCLUDE", "to Include");
|
|
| 195 |
+define ("_RESULTS", "Search Results");
|
|
| 196 |
+define ("_SEARCHTERM", "Search term");
|
|
| 197 |
+define ("_SEARCHTERMTOOSHORT", "Your search term was too short. Your search term must be a minimum of three characters long. <a href='search.php'>Try again.</a>");
|
|
| 198 |
+define ("_SIMPLE", "Simple Search");
|
|
| 199 |
+define ("_WORDCOUNT", "Word count");
|
|
| 200 |
+define ("_SEARCH", "Search");
|
|
| 201 |
+ |
|
| 202 |
+// Series |
|
| 203 |
+define ("_ADD2SERIES", "Add to Series");
|
|
| 204 |
+define ("_ADDSERIES", "Add New Series");
|
|
| 205 |
+define ("_ADDSERIES2FAVES", "Add Series to Favorites");
|
|
| 206 |
+define ("_BACKTOSERIES", "Back to the Series"); // Added 11-06-05
|
|
| 207 |
+define ("_CHOOSEAUTHOR", "Choose another author");
|
|
| 208 |
+define ("_CLOSED", "Closed"); // Added 02-10-07
|
|
| 209 |
+define ("_CONFIRMREMOVE", "Are you sure you want to remove this from the series?"); // Added 12-22-05
|
|
| 210 |
+define ("_DELETESERIES", "Delete Series");
|
|
| 211 |
+define ("_EDITSERIES", "Edit Series");
|
|
| 212 |
+define ("_MANAGESERIES", "Manage Series");
|
|
| 213 |
+define ("_MODERATED", "Moderated"); // Added 02-10-07
|
|
| 214 |
+define ("_OPEN", "Open");
|
|
| 215 |
+define ("_OPENNOTE", "<span style=\"font-weight: bold; text-decoration: underline;\">Note:</span> An open series is a shared universe (sometimes called a sandbox) in which other authors may add to the series.
|
|
| 216 |
+By marking your series as open, <u>other authors will be able to add to the series.</u> A moderated series will allow other authors to add to the series, but those entries must be approved by the series owner. |
|
| 217 |
+Only the series owner (and the site admins) may add to a closed series."); |
|
| 218 |
+define ("_REMOVEFROM", "Remove From Series");
|
|
| 219 |
+define ("_SERIESNOTE", "<span style=\"font-weight: bold; text-decoration: underline;\">Note:</span> You will choose the stories to add to your series on the next page.");
|
|
| 220 |
+define ("_SERIESNOTE2", "<span style=\"font-weight: bold; text-decoration: underline;\">Note:</span> You will set the order of your stories and subseries on the next page.");
|
|
| 221 |
+define ("_SERIESTYPE", "Series Type"); // Added 02-10-07
|
|
| 222 |
+define ("_SERIESTITLEREQUIRED", "A title for the series is required!");
|
|
| 223 |
+define ("_NEWSERIESITEMS", "New items have been submitted to your series, %1\$s, at $sitename. To validate these additions log in to your account.");
|
|
| 224 |
+define ("_SERIESITEMSSUBS", "New items for %1\$s at $sitename");
|
|
| 225 |
+ |
|
| 226 |
+// Stories |
|
| 227 |
+ |
|
| 228 |
+define ("_ADDNEWCHAPTER", "Add New Chapter");
|
|
| 229 |
+define ("_ADDNEWSTORY", "Add New Story");
|
|
| 230 |
+define ("_ADDSTORY", "Add Story");
|
|
| 231 |
+define ("_AUTHOR", "Author");
|
|
| 232 |
+define ("_AUTHORALERTNOTE", "One of your favorite authors at $sitename has posted a new story.<br><br>%1\$s "._BY." %2\$s<br><br>%3\$s<br><br><a href=\"$url/viewstory.php?sid=%4\$d\">$url/viewstory.php?sid=%4\$d</a>If you no longer wish to receive e-mails such as this, please go to <a href='$url/user.php'>your account</a>\r\n
|
|
| 233 |
+on $sitename, and edit your profile."); // Modified 2-3-10 to add reminder for turning off alerts |
|
| 234 |
+define ("_CHAPTERNOTES", "Chapter Notes");
|
|
| 235 |
+define ("_CHAPTERTITLE", "Chapter Title");
|
|
| 236 |
+define ("_COAUTHORS", "Co-Authors");
|
|
| 237 |
+define ("_COMPLETE", "Complete");
|
|
| 238 |
+define ("_CURRENT", "Current");
|
|
| 239 |
+define ("_DELETECHAPTERTITLE", "Delete Chapter");
|
|
| 240 |
+define ("_DELETESTORY", "Are you sure you want to delete this story? All chapters beneath it will be deleted as well!");
|
|
| 241 |
+define ("_DELETESTORYTITLE", "Delete Story");
|
|
| 242 |
+define ("_EDITCHAPTER", "Edit Chapter");
|
|
| 243 |
+define ("_EDITSTORY", "Edit Story");
|
|
| 244 |
+define ("_ENDNOTES", "End Notes");
|
|
| 245 |
+define ("_FEATURED", "Featured");
|
|
| 246 |
+define ("_HIDECHAPTERS", "Hide Chapters");
|
|
| 247 |
+define ("_INVALIDUPLOAD", "Invalid Upload! File uploads must be in plain text or html format.");
|
|
| 248 |
+define ("_LOCKED", "This category is locked.");
|
|
| 249 |
+define ("_MANAGESTORIES", "Manage Stories");
|
|
| 250 |
+define ("_MISSINGFIELDS", "Some of the required information is missing. Please check your input. Required fields are title, summary, ".($multiplecats ? strtolower(_CATEGORIES.", ") : "")."rating, and story text."); // Modified 11/06/05 - If categories are turned off don't show category as required field. :)
|
|
| 251 |
+define ("_NEWSTORYAT", "New Story at ");
|
|
| 252 |
+define ("_NEWSTORYAT2", "A new story has been submitted to the validation queue at $sitename.<br><br> %1\$s by %2\$s<br><br>%3\$s\n\nIf you no longer wish to receive e-mails such as this, please go to <a href='$url/user.php'>your account</a>\r\n
|
|
| 253 |
+on $sitename, and edit your profile."); // Modified 2-3-10 to add reminder for turning off alerts |
|
| 254 |
+define ("_NOSTORYTEXT", "You must include the text of your story either as an upload or as input into the textarea.");
|
|
| 255 |
+define ("_READS", "Read Count");
|
|
| 256 |
+define ("_ROUNDROBIN", "Round robin");
|
|
| 257 |
+define ("_STORYADDED", "Your story has been added. If the admin is reviewing submissions, then it will appear to the public after they have okayed it. In the meantime, you can always edit the story in your account area.");
|
|
| 258 |
+define ("_STORYALERT", "Update to favorites at $sitename");
|
|
| 259 |
+define ("_STORYALERTNOTE", "%1\$s by %2\$s, one of your favorite stories at $sitename, has been updated.<br><br><a href=\"$url/viewstory.php?sid=%3\$d&chapter=%4\$d\">$url/viewstory.php?sid=%3\$d&chapter=%4\$d</a>\n\nIf you no longer wish to receive e-mails such as this, please go to <a href='$url/user.php'>your account</a>\r\n
|
|
| 260 |
+on $sitename, and edit your profile."); // Modified 2-3-10 to add reminder for turning off alerts |
|
| 261 |
+define ("_STORYNOTES", "Story Notes");
|
|
| 262 |
+define ("_STORYTEXTTEXT", "Story Text (text)");
|
|
| 263 |
+define ("_STORYTEXTFILE", "Story Text (file)");
|
|
| 264 |
+define ("_STORYUPDATED", "The story has been updated.");
|
|
| 265 |
+define ("_VALIDATED", "Validated");
|
|
| 266 |
+define ("_VIEWCHAPTERS", "View Chapters");
|
|
| 267 |
+define ("_WORDCOUNTFAILED", "Your story failed to meet the required minimum or maximum word count for story submission on this site. Each chapter must be".($minwords ? " no less than ".$minwords : "").($maxwords ? ($minwords ? " and" : "")." no more than $maxwords " : "")." words long.");
|
|
| 268 |
+ |
|
| 269 |
+ |
|
| 270 |
+// User |
|
| 271 |
+ |
|
| 272 |
+define ("_USERACCOUNT", "Member Account");
|
|
| 273 |
+ |
|
| 274 |
+// User -- Edit prefs |
|
| 275 |
+define ("_ALERTSON2", "Contact when favorites are updated.");
|
|
| 276 |
+define ("_BETANOTE", "I would like to volunteer to be a beta-reader for others.");
|
|
| 277 |
+define ("_CONTACTREVIEWS", "Contact for new reviews");
|
|
| 278 |
+define ("_CONTACTRESPOND", "Contact when author responds to review");
|
|
| 279 |
+define ("_DEFAULTSORT", "Default Story Sort");
|
|
| 280 |
+define ("_DISPLAYINDEX", "Display table of contents for stories.");
|
|
| 281 |
+define ("_EDITPREFS", "Edit Preferences");
|
|
| 282 |
+define ("_REQUIREDFIELDS", "Indicates required fields.");
|
|
| 283 |
+define ("_SKIN", "Skin");
|
|
| 284 |
+define ("_USETINYMCE", "Use tinyMCE WYSWYG editor");
|
|
| 285 |
+ |
|
| 286 |
+// User - Edit Bio/Registration (default) |
|
| 287 |
+define ("_AOL", "AOL IM");
|
|
| 288 |
+define ("_BADEMAIL", "That address doesn't appear to be in our database. Please <a href=\"user.php?action=lostpassword\">try again.</a>");
|
|
| 289 |
+define ("_BADUSERNAME", "Sorry! Usernames can only contain letters, numbers, underscores, hyphens, or spaces, and must be between 3 and 20 characters long.");
|
|
| 290 |
+define ("_BIO", "Bio");
|
|
| 291 |
+define ("_EDITPERSONAL", "Edit Personal Information");
|
|
| 292 |
+define ("_EMAILINUSE", "This email address has already been used to sign up for an account. If you've lost your password, please generate a new one by using the <a href=\"user.php?action=lostpassword\">lost password</a> feature.");
|
|
| 293 |
+define ("_ICQ", "ICQ");
|
|
| 294 |
+define ("_INVALIDEMAIL", "The e-mail address you supplied is an invalid format.");
|
|
| 295 |
+define ("_NEWACCOUNT", "New Account");
|
|
| 296 |
+define ("_NEWPEN", "%1\$s ( %2\$d ) changed penname %3\$s ( %4\$d ) to %5\$s.");
|
|
| 297 |
+define ("_MSN", "MSN IM");
|
|
| 298 |
+define ("_PASSWORD", "Password");
|
|
| 299 |
+define ("_PASSWORD2", "Confirm Password");
|
|
| 300 |
+define ("_PASSWORDTWICE", "You must enter your new password twice. Please <a href=\"user.php?action=".$action."\">try again</a>.");
|
|
| 301 |
+define ("_PWDREQUIRED", "A password is required to access this function.");
|
|
| 302 |
+define ("_PENEMAILREQUIRED", "You must fill out the penname and email fields. Please <a href=\"user.php?action=newaccount\">try again</a>.");
|
|
| 303 |
+define ("_PENNAMEINUSE", "This penname is already in use.");
|
|
| 304 |
+define ("_REALNAME", "Real name");
|
|
| 305 |
+define ("_REGISTER", "Register");
|
|
| 306 |
+define ("_REGLOG", "%1\$s (%2\$d) registered from IP address %3\$s.");
|
|
| 307 |
+define ("_SIGNUPSUBJECT", "Welcome to $sitename");
|
|
| 308 |
+define ("_SIGNUPMESSAGE", "Hello, you or someone using your email has signed you up at $sitename. Your login and password are below:\n\n");
|
|
| 309 |
+define ("_SIGNUPTHANKS", "Thank you for signing up! You will receive ".(!$pwdsetting ? "your temporary password" : "a confirmation")." at the e-mail address you provided.");
|
|
| 310 |
+define ("_SIGNUPWARNING", "It is recommended that you log in and change the password to something easier for you to remember.");
|
|
| 311 |
+define ("_TRYAGAIN", "Please try again.");
|
|
| 312 |
+define ("_WEBSITE", "Website");
|
|
| 313 |
+define ("_YAHOO", "Yahoo IM");
|
|
| 314 |
+ |
|
| 315 |
+// User - Image Management |
|
| 316 |
+ |
|
| 317 |
+define ("_ALLOWEDEXT","Only files with the following extensions are allowed: ");
|
|
| 318 |
+define ("_ALREADYEXISTS", "Uploading <strong>%s...Error!</strong> Sorry, a file with this name already exists.");
|
|
| 319 |
+define ("_BADFILENAMES", "You have tried to upload the following files with invalid characters inside the filename.");
|
|
| 320 |
+define ("_FILENAME", "Filename");
|
|
| 321 |
+define ("_FILENOTEXISTS", "The file <strong>%s</strong> does not exist.");
|
|
| 322 |
+define ("_IMAGE", "Image");
|
|
| 323 |
+define ("_IMAGECODE", "HTML code to use image in story");
|
|
| 324 |
+define ("_IMAGETOOBIG", "This image is too big. Images may only be $imagewidth wide by $imageheight high. Please <a href=\"user.php?action=manageimages&upload=upload\">try again</a>.");
|
|
| 325 |
+define ("_INVALIDNAME", "Sorry, the filename contains invalid characters. Use only alphanumerical chars and separate parts of the name (if needed) with an underscore. <br>A valid filename ends with one dot followed by the extension.");
|
|
| 326 |
+define ("_MANAGEIMAGES", "Manage Images");
|
|
| 327 |
+define ("_MAXFILENAME", "The filename exceeds the maximum length of %s characters.");
|
|
| 328 |
+define ("_MAXFSSERVER", "The uploaded file exceeds the max. upload filesize directive in the server configuration.");
|
|
| 329 |
+define ("_MAXFSFORM", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form.");
|
|
| 330 |
+define ("_NODIRECTORY", "Sorry, the upload directory doesn't exist!");
|
|
| 331 |
+define ("_NOFILESSELECTED", "Select at least on file.");
|
|
| 332 |
+define ("_NOFILESELECTED", "No file was uploaded.");
|
|
| 333 |
+define ("_PARTIALUPLOAD", "The uploaded file was only partially uploaded");
|
|
| 334 |
+define ("_RENAMEDTO", "The uploaded file was renamed to <b>%s</b>.");
|
|
| 335 |
+define ("_SELECTFILE", "Please select a file for upload.");
|
|
| 336 |
+define ("_UPLOADIMAGE", "Upload New Images");
|
|
| 337 |
+define ("_UPLOADSUCCESS", "<strong>%s</strong> successfully uploaded!");
|
|
| 338 |
+define ("_VIEW", "View");
|
|
| 339 |
+define ("_WRONGEXT", "You have tried to upload %1\$d files with a bad extension, the following extensions are allowed: <strong>%2\$s</strong>");
|
|
| 340 |
+ |
|
| 341 |
+// User - Lost password |
|
| 342 |
+ |
|
| 343 |
+define ("_ENTEREMAIL", "Enter your e-mail address");
|
|
| 344 |
+define ("_LOSTPASSWORD", "Lost password");
|
|
| 345 |
+define ("_NEWPWDSUB", "New Password for $sitename");
|
|
| 346 |
+define ("_NEWPWDMSG", "Hello, you appear to have requested a new password for $sitename. Your new password is:\n\nPassword: %s\n\nIt is recommended that you log in and change the password to something easier for you to remember.");
|
|
| 347 |
+define ("_PASSWORDSENT", "A new password has been sent to your e-mail address.");
|
|
| 348 |
+ |
|
| 349 |
+// User - Stats |
|
| 350 |
+ |
|
| 351 |
+define ("_AUTHOROF", "Author of:");
|
|
| 352 |
+define ("_FAVOF", "Favorite author of");
|
|
| 353 |
+define ("_FAVORITE", "Favorite");
|
|
| 354 |
+define ("_MANAGEREVIEWS", "Manage Your Reviews");
|
|
| 355 |
+define ("_STATSFOR", "Statistics for ");
|
|
| 356 |
+define ("_UNRESPONDED", "Unresponded");
|
|
| 357 |
+define ("_YOURFAVORITES", "Your Favorites");
|
|
| 358 |
+define ("_YOURSTATS", "Your Statistics");
|
|
| 359 |
+define ("_YOURREVIEWS", "Your Reviews");
|
|
| 360 |
+ |
|
| 361 |
+// User - Manage Favorites |
|
| 362 |
+ |
|
| 363 |
+define ("_MANAGEFAVORITES", "Manage Favorites");
|
|
| 364 |
+define ("_REMOVEFAV", "Remove Favorite");
|
|
| 365 |
+ |
|
| 366 |
+// User - Login |
|
| 367 |
+ |
|
| 368 |
+define ("_WRONGPASSWORD", "That password doesn't match the one in our database. Please <a href=\"user.php?action=login\">try again</a> or retrieve a <a href=\"user.php?action=lostpassword\">new password</a> if you can't remember yours.");
|
|
| 369 |
+define ("_ACCOUNTLOCKED", "This account has been locked by the adminstrators of this site. Please <a href='contact.php'>contact</a> the site adminstrators for more information.");
|
|
| 370 |
+define ("_NOSUCHACCOUNT", "There is no such account on our website."); // Added 6-18-2008
|
|
| 371 |
+ |
|
| 372 |
+// User - Review Response |
|
| 373 |
+define("_AUTHORSRESPONSE", "Author's Response");
|
|
| 374 |
+define ("_RESPONSESUBJECT", "Author Response to Your Review at $sitename");
|
|
| 375 |
+define ("_RESPONSETEXT", "{penname} has responded to your review.\r\n\r\nYou can see the response at <a href=\"".$url."/reviews.php?reviewid={review}\">".$url."/reviews.php?reviewid={review}</a>");
|
|
| 376 |
+ |
|
| 377 |
+// View story |
|
| 378 |
+ |
|
| 379 |
+define ("_ACCESSDENIED", "Access denied. This story has not been validated by the adminstrators of this site.");
|
|
| 380 |
+define ("_ARCHIVEDAT", "This story archived at");
|
|
| 381 |
+define ("_BACK2INDEX", "Back to index");
|
|
| 382 |
+define ("_CONTINUE", "Continue");
|
|
| 383 |
+define ("_CONTRIBUTE2RR", "Contribute to Round Robin");
|
|
| 384 |
+define ("_INVALIDSTORY", "That story does not exist on this archive. You may <a href='search.php'>search</a> for it or return to <a href='index.php'>the home page.</a>");
|
|
| 385 |
+define ("_LOGINTOREVIEW", "You must %1\$s (%2\$s) to review.");
|
|
| 386 |
+define ("_SUBMITREVIEW", "Submit a Review");
|
|
| 387 |
+define ("_TEXTSIZE", "Text Size");
|
|
| 388 |
+ |
|
| 389 |
+// View User |
|
| 390 |
+ |
|
| 391 |
+define ("_ADMINISTRATOR", "Administrator");
|
|
| 392 |
+define ("_CONTACT", "Contact");
|
|
| 393 |
+define ("_CONTACTAUTHOR", "Contact Author:");
|
|
| 394 |
+define ("_EDITADMIN", "Edit Admin Privileges");
|
|
| 395 |
+define ("_FAVORITEAUTHORS", "Favorite Authors"); // Added for 3.0
|
|
| 396 |
+define ("_FAVORITESERIES", "Favorite Series"); // Added for 3.0
|
|
| 397 |
+define ("_FAVORITESTORIES", "Favorite Stories"); // Added for 3.0
|
|
| 398 |
+define ("_FAVORITESOF", "Favorites of "); // Added for 3.0
|
|
| 399 |
+define ("_LOCKMEM", "Lock Account");
|
|
| 400 |
+define ("_MAKEADMIN", "Make User an Admin");
|
|
| 401 |
+define ("_REVOKEADMIN", "Revoke Admin Privileges");
|
|
| 402 |
+define ("_REVOKEVAL", "Revoke Validation");
|
|
| 403 |
+define ("_REVIEWSBY", "Reviews by ");
|
|
| 404 |
+define ("_SERIESBY", "Series by ");
|
|
| 405 |
+define ("_SITESIG", "This message was sent to you from $sitename located at <a href='$url'>$url</a>.");
|
|
| 406 |
+define ("_SITESIG2", "This message was sent to you by %s from $sitename located at <a href='$url'>$url</a>.");
|
|
| 407 |
+define ("_STORIESBY", "Stories by");
|
|
| 408 |
+define ("_SUBJECT", "Subject");
|
|
| 409 |
+define ("_UNLOCKMEM", "Unlock Account");
|
|
| 410 |
+define ("_VALIDATE", "Validate");
|
|
| 411 |
+ |
|
| 412 |
+// Tooltip help for various items. |
|
| 413 |
+define ("_HELP_NEWREV", "Check this box if you wish to receive an e-mail notice each time you get a new review.");
|
|
| 414 |
+define ("_HELP_NEWRESP", "Check this box if you wish to receive an e-mail notice each time an author resonds to your review.");
|
|
| 415 |
+define ("_HELP_FAVALERT", "Check this box if you wish to receive an e-mail notice each time one of your favorite stories is updated or when one of your favorites author's publishes a new story.");
|
|
| 416 |
+define ("_HELP_BETA", "Check this box if you are willing to have other author's contact you to read their stories before they are published and provide the feedback and help the author requests.");
|
|
| 417 |
+define ("_HELP_TOC", "Check this box if you wish to see the story index first rather than the first chapter of the story on multi-chapters.");
|
|
| 418 |
+define ("_HELP_TINYMCE", "Check this box if you wish to use the tinyMCE editor when entering content in forms. You will have the option to toggle the editor on/off if need be.");
|
|
| 419 |
+define ("_HELP_AGE", "By agreeing, you are confirming you are above the age of majority in your locality and that you wish to view the adult oriented material on this site.");
|
|
| 420 |
+define ("_HELP_DEFAULTSORT", "Select the order in which to sort stories by default. Your choices are Alphabetically or Most Recent (newest to oldest).");
|
|
| 421 |
+define ("_HELP_SKIN", "Choose the appearance of the site.");
|
|
| 422 |
+ |
|
| 423 |
+// Log strings |
|
| 424 |
+define ("_LOG_ADMIN_DEL", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> deleted <a href='viewstory.php?sid=%4\$d'>%3\$s</a> by <a href='viewuser.php?uid=%6\$d'>%5\$s</a>.");
|
|
| 425 |
+define ("_LOG_ADMIN_EDIT", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> edited <a href='viewstory.php?sid=%4\$d'>%3\$s</a> by <a href='viewuser.php?uid=%6\$d'>%5\$s</a>.");
|
|
| 426 |
+define ("_LOG_ADMIN_DEL_CHAPTER", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> deleted <a href='viewstory.php?sid=%4\$d'>%3\$s</a> by <a href='viewuser.php?uid=%6\$d'>%5\$s</a>, chapter %7\$d");
|
|
| 427 |
+define ("_LOG_ADMIN_EDIT_CHAPTER", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> edited <a href='viewstory.php?sid=%4\$d'>%3\$s</a> by <a href='viewuser.php?uid=%6\$d'>%5\$s</a>, chapter %7\$d");
|
|
| 428 |
+define ("_LOG_ADMIN_EDIT_AUTHOR", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> changed the author of <a href='viewstory.php?sid=%4\$d'>%3\$s</a> by <a href='viewuser.php?uid=%8\$7'>%5\$s</a> to <a href='viewuser.php?uid=%6\$d'>%5\$s</a>.");
|
|
| 429 |
+define ("_LOG_ADMIN_DEL_SERIES", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> deleted the series '%3\$s'.");
|
|
| 430 |
+define ("_LOG_ADMIN_EDIT_SERIES", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> edited the series '<a href='viewseries.php?seriesid=%4\$d'>%3\$s</a>'.");
|
|
| 431 |
+define ("_LOG_ADMIN_DEL_FROM_SERIES", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> deleted <a href='viewstory.php?sid=%4\$d'>%3\$s</a> by <a href='viewuser.php?uid=%6\$d'>%5\$s</a> from '<a href='viewseries.php?seriesid=%8\$d'>%7\$s</a>.'");
|
|
| 432 |
+define ("_LOG_BAD_LOGIN", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> entered a wrong password trying to log in.");
|
|
| 433 |
+define ("_LOG_LOST_PASSWORD", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> requested a new password. Password sent: %3\$s.");
|
|
| 434 |
+define ("_LOG_ADMIN_REG", "%1\$s (%2\$d) was registered by %3\$s (%4\$d) from IP address %5\$s.");
|
|
| 435 |
+define ("_LOG_REGISTER", "%1\$s (%2\$d) registered from IP address %3\$s.");
|
|
| 436 |
+define ("_LOG_REVIEW", "%1\$s wrote '%2\$s' as a review for '%3\$s'.");
|
|
| 437 |
+define ("_LOG_EDIT_REVIEW", "<a href='viewuser.php?uid=%2\$d'>%1\$s</a> edited <a href='reviews.php?reviewid=%4\$d'>a review</a> for '%3\$s'.");
|
|
| 438 |
+ |
|
| 439 |
+// Report Types |
|
| 440 |
+ |
|
| 441 |
+define ("_REPORT", "Report");
|
|
| 442 |
+define ("_MISSING", "Missing Information");
|
|
| 443 |
+define ("_RULESVIOLATION", "Violation of Rules");
|
|
| 444 |
+define ("_BUGREPORT", "Bug Report");
|
|
| 445 |
+define ("_REPORTTHIS", "Report This");
|
|
| 446 |
+ |
|
| 447 |
+?> |
|
| 0 | 448 |
\ No newline at end of file |