4
Well, this is a very strange bug. I've been able to successfully modify all of the names/labels from the following lines of code, except for "Category". When I modify "Category", the change does not show up (even though the changes show up for anything else I modify below).
define("_MD_DESCRIPTIONC","Description: ");
define("_MD_EMAILC","Email: ");
define("_MD_CATEGORYC","Category: ");
define("_MD_LASTUPDATEC","Last Update: ");
define("_MD_HITSC","Hits: ");
define("_MD_RATINGC","Rating: ");
define("_MD_ONEVOTE","1 vote");
define("_MD_NUMVOTES","%s votes");
define("_MD_RATETHISSITE","Rate this Site");
define("_MD_MODIFY","Modify");
define("_MD_REPORTBROKEN","Report Broken Link");
define("_MD_TELLAFRIEND","Tell a Friend");
Any changes I make to the word/label Category:, in define("_MD_CATEGORYC","Category: "), has no effect. Obviously, the main links index page (what the users see) is pulling the word "Category" from somewhere else, and there is no colon in it. Unfortunately, I can't add the colon, because I have no idea where it is pulling the name/label "Category" from.
I've also tried adding a colon to "Category" in the following block of code, but it has no effect either.
define("_MD_RANK","Rank");
define("_MD_CATEGORY","Category");
define("_MD_HITS","Hits");
define("_MD_RATING","Rating");
define("_MD_VOTE","Vote");
define("_MD_TOP10","%s Top 10"); // %s is a link category title
* All of this code originates in the main.php file located in the language/english directory.
Anyone have any ideas what is going on with this?