Author Topic: Changing it to say "Next Page" and "Previous Page"  (Read 3917 times)

0 Members and 1 Guest are viewing this topic.

Offline cronk005

  • Newbie
  • *
  • Posts: 44
    • View Profile
    • Travelingtheworldaround
Changing it to say "Next Page" and "Previous Page"
« on: July 03, 2007, 11:26:04 PM »
Right now when I click on a category which has more pages than the current page of photos, i get the  "» First Page" » PAGES « &labuo Last Page.. But I want to change it so that instead of being just &raquo and « it will say &raquo Previous Page and « Next Page... (See attached photo). I have searched both the categories.php and includes/paging.php and just cannot figure out where the code is to change this to be as such.

Your help is appreciated.

Regards,

DECronk

manurom

  • Guest
Re: Changing it to say "Next Page" and "Previous Page"
« Reply #1 on: July 04, 2007, 10:20:48 AM »
Hello;
you will have to edit lang/your_language/main.php
In English, for instance, find:
Code: [Select]
$lang['paging_next'] = "»";
$lang['paging_previous'] = "«";

and change to:
Code: [Select]
$lang['paging_next'] = "» Next Page";
$lang['paging_previous'] = "« Previous Page";

Offline cronk005

  • Newbie
  • *
  • Posts: 44
    • View Profile
    • Travelingtheworldaround
Re: Changing it to say "Next Page" and "Previous Page"
« Reply #2 on: July 04, 2007, 02:32:10 PM »
I feel very stupid right now. I thought for sure this was something that would need changing in the categories.php or other that i never even thought about the language pages..

thanks for the help.

DECronk