<?php
// for index.php
define("NAVIGATION", "navigation");
define("HOME", "home");
define("POST_INDEX", "post index");
define("REGISTER_ACCOUNT", "register account");
define("CATEGORY", "category");
define("CATEGORIES", "categories");
define("LINKS", "links");
define("COMMENT", "comment");
define("COMMENTS", "comments");
define("POWERED_BY", "powered by");
// for admin/index.php
define("ADMINISTRATION", "administration");
define("ADD_A_POST", "add a post");
define("MANAGE_POSTS", "manage posts");
define("MANAGE_CATEGORIES", "manage categories");
define("MANAGE_LINKS", "manage links");
define("MANAGE_USERS", "manage users");
// for admin/add_post.php
define("TITLE_OF_POST", "title of post");
define("DATE", "date");
define("BODY_OF_POST", "body of Post");
define("SHOW", "show");
define("HIDE", "hide");
define("LOCK", "lock");
define("UNLOCK", "unlock");
define("ADD_THIS_POST", "add this Post");
// for admin/manage_posts.php
define("VIEW_ALL_POSTS_FROM", "view all posts from");
// for view_by_title.php
define("POSTED_ON", "posted On");
// Use 'text-transform: capitalize;' in the stylesheet, if necessary
?>