Author Topic: 2 easy questions about 4images  (Read 3588 times)

0 Members and 1 Guest are viewing this topic.

Offline blaxo

  • Pre-Newbie
  • Posts: 1
    • View Profile
2 easy questions about 4images
« on: March 01, 2007, 12:33:58 PM »
hi every body
I am beginner in php so I have 2 questions about the 4images source
1. what does it mean in php the signal -> and when do we use it
2. in the catergory page there is a the following sentence "found: X image(s) ....." what if I want to change the word images to be products for example or I want to translate the whole sentence what should I do

thnx 4 help

Offline Jenn

  • Full Member
  • ***
  • Posts: 105
    • View Profile
Re: 2 easy questions about 4images
« Reply #1 on: March 01, 2007, 01:06:06 PM »

2. in the catergory page there is a the following sentence "found: X image(s) ....." what if I want to change the word images to be products for example or I want to translate the whole sentence what should I do

thnx 4 help

Found: # image(s) on # page(s). Displayed: image # to #.

Open: lang/ Your appropriate language/  main.php file

Find and change accordingly. Found, image(s), on, page(s), Displayed: image, to

Code: [Select]
$lang['paging_stats'] = "Found: {total_cat_images} image(s) on {total_pages} page(s). Displayed: image {first_page} to {last_page}.";
Hope that helps

Offline shan

  • Newbie
  • *
  • Posts: 12
    • View Profile
Re: 2 easy questions about 4images
« Reply #2 on: March 02, 2007, 04:42:35 PM »
Open lang/main.php --> in there you edit the variable declarations. I recently did the same thing and works fine:) hope it helps.