Author Topic: Changing the text on the Headers  (Read 2757 times)

0 Members and 1 Guest are viewing this topic.

Offline brettyork

  • Pre-Newbie
  • Posts: 1
    • View Profile
Changing the text on the Headers
« on: May 27, 2007, 02:30:58 AM »
I need to change the text of one o fthe Headers. I want to use 4images for an artist image gallery and want to change the text "Categories" to "Artist". Is this possible and where can you edit this?

manurom

  • Guest
Re: Changing the text on the Headers
« Reply #1 on: May 27, 2007, 06:11:38 PM »
Hello;
simply edit lang/your_language/main.php.
Make needed changes here:
Code: [Select]
$lang['categories'] = "Categories";
$lang['sub_categories'] = "Subcategories";

and any where you want to switch from "categories" or "category" to "artists" or "artist":
Code: [Select]
//-----------------------------------------------------
//--- Categories --------------------------------------
//-----------------------------------------------------
$lang['no_categories'] = "No categories found.";
$lang['no_images'] = "There are no images in this category.";
$lang['select_category'] = "Select category";
Code: [Select]
$lang['site_stats'] = "<b>{total_images}</b> images in <b>{total_categories}</b> categories.";