| Code:
|
Corrected both lang-english.php (NukeTube/language/ and NukeTube/admin/language/) files
Both of these were in spanish.
Added the following to NukeTube/language/lang-english.php
define("_YOU_MENU8","Title");
Added the following to NukeTube/language/lang-spanish.php
define("_YOU_MENU8","Título");
IN NukeTube/index.php changed the following
LINE 605
FROM:
echo "<tr><td><b>Título</b></td><td><input type=\"text\" name=\"titulo\" size=\"50\" value=\"$titulo\"></td>
TO:
echo "<tr><td><b>"._YOU_MENU8."</b></td><td><input type=\"text\" name=\"titulo\" size=\"50\" value=\"$titulo\"></td>
LINE 678
FROM:
echo "<tr><td><b>Título</b></td><td><input type=\"text\" name=\"titulo\" size=\"50\" value=\"$titulo\"></td>
TO:
echo "<tr><td><b>"._YOU_MENU8."</b></td><td><input type=\"text\" name=\"titulo\" size=\"50\" value=\"$titulo\"></td>
LINE 811
FROM:
echo "<tr><td><b>Título</b></td><td><input type=\"text\" name=\"titulo\" size=\"50\" value=\"$titulo\">
TO:
echo "<tr><td><b>"._YOU_MENU8."</b></td><td><input type=\"text\" name=\"titulo\" size=\"50\" value=\"$titulo\">
IN NukeTube/admin/index.php
NEAR LINE 694
CHANGED:
}
} else {
echo "Access Denied";
}
TO:
}
include("footer.php");
} else {
echo "Access Denied";
}
|