PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Classifieds Installation & Upgrades (http://www.photopost.com/forum/classifieds-installation-upgrades/)
-   -   is there any changes in lang file 2.42 and 2.5 (http://www.photopost.com/forum/classifieds-installation-upgrades/123019-there-any-changes-lang-file-2-42-2-5-a.html)

Ghanem February 12th, 2006 08:44 PM

is there any changes in lang file 2.42 and 2.5
 
Hi,

I upgraded to ver 2.5..
Since I have translated most of the eng lang file of ver 2.42, I am woundering, is there any changes, additions between them..
If there is, can we have a list of it in order not go through the process again..

Kind regards

snoopy5 February 13th, 2006 07:43 AM

.. I need this info too...

zews February 13th, 2006 08:45 AM

I think this is a list of new words: (at least these are the new words I found compared to my 2.42 install)
Code:

Content visible to verified customers only.

Chuck S February 13th, 2006 08:59 AM

Lots of language changes. Your best bet is to use a file compare utility like Beyond Compare by scooter software

http://www.scootersoftware.com

There is more changes than just in english.php check your other language files for changes also. As far as a detailed list this is not necessary from a support perspective since Classifieds is only bundled with english just use the compare tool meantioned if your trying to create your own language files.

snoopy5 February 13th, 2006 12:39 PM

Thanks Cguck, this is a great software. I just compared with my language fikes and only 2 files seems to have changed

1. the english.php and
2. with in the folder english the file emails.php

in english.php add and translate this:

---------------------

// Set the meta tag/doctype for this language
$contentmeta = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\" />";
$doctype = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt\">";


$Globals['pp_lang']['editcat'] = "Edit";
$Globals['pp_lang']['euro'] = "Euro";
$Globals['pp_lang']['gbp'] = "Pounds";
$Globals['pp_lang']['makeindex'] = "Make Index Thumb";
$Globals['pp_lang']['noexpire'] = "No Expiration";
$Globals['pp_lang']['searchzip'] = "Sort by Distance";
$Globals['pp_lang']['untagged'] = "You have untagged this image";
$Globals['pp_lang']['yes'] = "Yes";


$Globals['pp_lang']['100'] = "100.00";
$Globals['pp_lang']['1000'] = "1000.00";
$Globals['pp_lang']['25'] = "25.00";
$Globals['pp_lang']['250'] = "250.00";
$Globals['pp_lang']['50'] = "50.00";
$Globals['pp_lang']['500'] = "500.00";
$Globals['pp_lang']['5000'] = "5000.00";
$Globals['pp_lang']['buycost'] = "The payment for this ad is";
$Globals['pp_lang']['buynotice'] = "Allow Users to Buy your Ad via Paypal Immediately? Please note your email on the system here must match your paypal email account for you to enable this feature.";
$Globals['pp_lang']['buynow'] = "Buy It Now";
$Globals['pp_lang']['buypage'] = "Ad Purchase Page";
$Globals['pp_lang']['buysuccess'] = "Thank you for your purchase! Please contact the seller if you have any questions.";
$Globals['pp_lang']['buytrans'] = "To complete your transaction and purchase this ad, you need to provide payment. Please click on the link below to process your PayPal payment.";
$Globals['pp_lang']['currency'] = "Currency";
$Globals['pp_lang']['dailyuplimit'] = " exceeds your limit of ads allowed";
$Globals['pp_lang']['default'] = "Use Default Currency";
$Globals['pp_lang']['day1'] = "So";
$Globals['pp_lang']['day2'] = "Mo";
$Globals['pp_lang']['day3'] = "Di";
$Globals['pp_lang']['day4'] = "Mi";
$Globals['pp_lang']['day5'] = "Do";
$Globals['pp_lang']['day6'] = "Fr";
$Globals['pp_lang']['day7'] = "Sa";
$Globals['pp_lang']['delete2'] = "You have successfully deleted your ad.";
$Globals['pp_lang']['endauction'] = "Close Auction";
$Globals['pp_lang']['exphplimit'] = "exceeds your PHP maximum upload value.";
$Globals['pp_lang']['good'] = "Good";
$Globals['pp_lang']['high'] = "High Price";
$Globals['pp_lang']['low'] = "Low Price";
$Globals['pp_lang']['moderators'] = "Moderators";
$Globals['pp_lang']['no'] = "No";
$Globals['pp_lang']['nozipfound'] = "Sorry Your Zip Code was found in our Database. Please check to ensure you have entered it correctly!";
$Globals['pp_lang']['overload'] = "Server busy, try again shortly.";
$Globals['pp_lang']['pricerange'] = "Specify a price range";
$Globals['pp_lang']['removeindex'] = "Remove Index Thumb";
$Globals['pp_lang']['rotateccw1'] = "Image has been rotated counter-clockwise!";
$Globals['pp_lang']['rotatecw1'] = "Image has been rotated clockwise!";
$Globals['pp_lang']['sortdist'] = "Enter your zipcode";
$Globals['pp_lang']['suberror'] = "Subscriptions not allowed.";
$Globals['pp_lang']['submsg'] = "You have been subscribed to this category. You will receive email notifications for any uploads.";
$Globals['pp_lang']['submitreg'] = "Submit Registration Form";
$Globals['pp_lang']['unsubgallery'] = "Unsubscribe to Category";
$Globals['pp_lang']['unsubmsg'] = "You have been unsubscribed from this category. You will not receive any further email notifications.";
$Globals['pp_lang']['uplimit'] = "You have exceeded your maximum allowed limit of %pics% ads.";
$Globals['pp_lang']['userlimit'] = "Upload Limit";
$Globals['pp_lang']['uplimit2'] = " %pictures% ads allowed.";
$Globals['pp_lang']['usd'] = "US Dollar";

---------------

in emails.php add this at the buttom before the ?> sign:

---------------

$Globals['pp_lang']['subnotify'] = "{$tusername} has uploaded one or more ads to a category you subscribe to.

Image name: {$realname}
Title: {$title}
Description: {$desc}

Link to ad: {$Globals['maindir']}/showproduct.php?product=$lastproductid

To turn off subscriptions for this category, click on the following link:

{$Globals['maindir']}/misc.php?action=subscribe&sub={$thecat}

The {$Globals['webname']} Team
{$Globals['domain']}";

$Globals['pp_lang']['emsubscr'] = "{$Globals['webname']} Ad upload notification";
----------------------

Chuck S February 13th, 2006 02:04 PM

Yep like stated lots of changes look at all those new language strings ;) Beyond Compare is a great program

snoopy5 February 14th, 2006 04:09 AM

Hi Chuck,

do you have a recommendation for a good FTP program? I use a very old one (WSFTP Pro version 6) and have the feeling it is not very reliable in overwriting old files.

It can be simple (I am a fan of "keep it simple"). So before I buy the newest version of mine, I would like to hear other's experiences...

Chuck S February 14th, 2006 08:28 AM

I use LeapFTP but most any should work just make sure you have the settings set to overwrite files.


All times are GMT -5. The time now is 04:30 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97