Ignore:
Timestamp:
10/23/07 14:49:17 (5 years ago)
Author:
hverton
Message:

Made the locales unique for this module

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/common/advertising/php-files/modules/advertising/locale/English.php

    r997 r999  
    11<?php 
    22// panel titles 
    3 $locale['400'] = "Add an advertisement"; 
    4 $locale['401'] = "Edit an advertisement"; 
    5 $locale['402'] = "Advertisements"; 
    6 $locale['403'] = "Expired advertisements"; 
    7 $locale['404'] = "Advertising client"; 
    8 $locale['405'] = "Upload an advertisement image"; 
    9 $locale['406'] = "Advertisement image management"; 
    10 $locale['407'] = "Advertisement image preview"; 
    11 $locale['408'] = " for client "; 
    12 $locale['409'] = "Please visit our sponsor"; 
     3$locale['ads400'] = "Add an advertisement"; 
     4$locale['ads401'] = "Edit an advertisement"; 
     5$locale['ads402'] = "Advertisements"; 
     6$locale['ads403'] = "Expired advertisements"; 
     7$locale['ads404'] = "Advertising client"; 
     8$locale['ads405'] = "Upload an advertisement image"; 
     9$locale['ads406'] = "Advertisement image management"; 
     10$locale['ads407'] = "Advertisement image preview"; 
     11$locale['ads408'] = " for client "; 
     12$locale['ads409'] = "Please visit our sponsor"; 
    1313 
    1414// add - edit advertisement 
    15 $locale['410'] = "Client name"; 
    16 $locale['411'] = "Contract based on"; 
    17 $locale['412'] = "Contract start date"; 
    18 $locale['413'] = "Contract end date"; 
    19 $locale['414'] = "Ads currently purchased"; 
    20 $locale['415'] = "Modify purchased amount"; 
    21 $locale['416'] = "Ad location"; 
    22 $locale['417'] = "Ad image"; 
    23 $locale['418'] = "Advert click URL"; 
    24 $locale['419'] = "Enable this advert"; 
    25 $locale['420'] = "Increase by"; 
    26 $locale['421'] = "Decrease by"; 
    27 $locale['422'] = "No"; 
    28 $locale['423'] = "Yes"; 
    29 $locale['424'] = "Advert priority"; 
    30 $locale['425'] = "Move to a new client"; 
     15$locale['ads410'] = "Client name"; 
     16$locale['ads411'] = "Contract based on"; 
     17$locale['ads412'] = "Contract start date"; 
     18$locale['ads413'] = "Contract end date"; 
     19$locale['ads414'] = "Ads currently purchased"; 
     20$locale['ads415'] = "Modify purchased amount"; 
     21$locale['ads416'] = "Ad location"; 
     22$locale['ads417'] = "Ad image"; 
     23$locale['ads418'] = "Advert click URL"; 
     24$locale['ads419'] = "Enable this advert"; 
     25$locale['ads420'] = "Increase by"; 
     26$locale['ads421'] = "Decrease by"; 
     27$locale['ads422'] = "No"; 
     28$locale['ads423'] = "Yes"; 
     29$locale['ads424'] = "Advert priority"; 
     30$locale['ads425'] = "Move to a new client"; 
    3131 
    3232// contract information 
    33 $locale['430'] = "Open ended period"; 
    34 $locale['431'] = "Fixed time period"; 
    35 $locale['432'] = "Number of displays"; 
    36 $contract_types = array(0 => $locale['430'], 1 => $locale['431'], 2 => $locale['432']); 
     33$locale['ads430'] = "Open ended period"; 
     34$locale['ads431'] = "Fixed time period"; 
     35$locale['ads432'] = "Number of displays"; 
     36$contract_types = array(0 => $locale['ads430'], 1 => $locale['ads431'], 2 => $locale['ads432']); 
    3737 
    3838// buttons 
    39 $locale['440'] = "Save"; 
    40 $locale['441'] = "Back"; 
    41 $locale['442'] = "Expire"; 
    42 $locale['443'] = "Activate"; 
    43 $locale['444'] = "Change URL"; 
    44 $locale['445'] = "Email statistics"; 
    45 $locale['446'] = "Email All statistics"; 
    46 $locale['447'] = "Add a new client"; 
    47 $locale['448'] = "Advert image management"; 
    48 $locale['449'] = "Upload image"; 
     39$locale['ads440'] = "Save"; 
     40$locale['ads441'] = "Back"; 
     41$locale['ads442'] = "Expire"; 
     42$locale['ads443'] = "Activate"; 
     43$locale['ads444'] = "Change URL"; 
     44$locale['ads445'] = "Email statistics"; 
     45$locale['ads446'] = "Email All statistics"; 
     46$locale['ads447'] = "Add a new client"; 
     47$locale['ads448'] = "Advert image management"; 
     48$locale['ads449'] = "Upload image"; 
    4949 
    5050// advertisement location and type.  
    5151// Don't forget to add new ones to the array! And don't change the order!!! 
    52 $locale['450'] = "Logo - left side panel";          // location = 0 
    53 $locale['451'] = "Banner - Discussion Forum";       // location = 1 
    54 $locale['452'] = "Banner - Forum index only";       // location = 2 
    55 $locale['453'] = "Banner - Thread index only";      // location = 3 
    56 $ad_locations = array(0 => $locale['450'], 1 => $locale['451'], 2 => $locale['452'], 3 => $locale['453']); 
     52$locale['ads450'] = "Logo - left side panel";           // location = 0 
     53$locale['ads451'] = "Banner - Discussion Forum";        // location = 1 
     54$locale['ads452'] = "Banner - Forum index only";        // location = 2 
     55$locale['ads453'] = "Banner - Thread index only";       // location = 3 
     56$ad_locations = array(0 => $locale['ads450'], 1 => $locale['ads451'], 2 => $locale['ads452'], 3 => $locale['ads453']); 
    5757asort($ad_locations);   // sort the locations alphabetically 
    5858 
     
    6262 
    6363// current - finished advertisement 
    64 $locale['460'] = "ID"; 
    65 $locale['461'] = "Client name"; 
    66 $locale['462'] = "Advertisment type"; 
    67 $locale['463'] = "Contract information"; 
    68 $locale['464'] = "Clicks"; 
    69 $locale['465'] = "Clicks %"; 
    70 $locale['466'] = "Options"; 
    71 $locale['467'] = "Enable"; 
    72 $locale['468'] = "Disable"; 
    73 $locale['469'] = "Edit"; 
    74 $locale['470'] = "Delete"; 
    75 $locale['471'] = "ends"; 
    76 $locale['472'] = "starts"; 
    77 $locale['473'] = "ended"; 
    78 $locale['474'] = "Advertisements"; 
    79 $locale['475'] = "Contact email"; 
    80 $locale['476'] = "Remove this client"; 
    81 $locale['477'] = "left"; 
    82 $locale['478'] = ""; 
    83 $locale['479'] = "Displayed"; 
     64$locale['ads460'] = "ID"; 
     65$locale['ads461'] = "Client name"; 
     66$locale['ads462'] = "Advertisment type"; 
     67$locale['ads463'] = "Contract information"; 
     68$locale['ads464'] = "Clicks"; 
     69$locale['ads465'] = "Clicks %"; 
     70$locale['ads466'] = "Options"; 
     71$locale['ads467'] = "Enable"; 
     72$locale['ads468'] = "Disable"; 
     73$locale['ads469'] = "Edit"; 
     74$locale['ads470'] = "Delete"; 
     75$locale['ads471'] = "ends"; 
     76$locale['ads472'] = "starts"; 
     77$locale['ads473'] = "ended"; 
     78$locale['ads474'] = "Advertisements"; 
     79$locale['ads475'] = "Contact email"; 
     80$locale['ads476'] = "Remove this client"; 
     81$locale['ads477'] = "left"; 
     82$locale['ads478'] = ""; 
     83$locale['ads479'] = "Displayed"; 
    8484 
    8585// advertising statistics 
    86 $locale['500'] = "Advertising Statistics"; 
    87 $locale['501'] = "Prio"; 
    88 $locale['502'] = "Guest"; 
     86$locale['ads500'] = "Advertising Statistics"; 
     87$locale['ads501'] = "Prio"; 
     88$locale['ads502'] = "Guest"; 
    8989 
    9090// client information - email messages 
    91 $locale['510'] = "Following are the complete stats for all your advertising investments at ".$settings['sitename'].":"; 
    92 $locale['511'] = "Following are the complete stats for your advertising investment with ID %s at ".$settings['sitename'].":"; 
    93 $locale['512'] = "Statistics report generated on %s\r\n\r\n"; 
    94 $locale['513'] = "Ads still available"; 
     91$locale['ads510'] = "Following are the complete stats for all your advertising investments at ".$settings['sitename'].":"; 
     92$locale['ads511'] = "Following are the complete stats for your advertising investment with ID %s at ".$settings['sitename'].":"; 
     93$locale['ads512'] = "Statistics report generated on %s\r\n\r\n"; 
     94$locale['ads513'] = "Ads still available"; 
    9595 
    9696// advertisement - image upload 
    97 $locale['530'] = "Image filename"; 
     97$locale['ads530'] = "Image filename"; 
    9898 
    9999// advertisement - image management 
    100 $locale['540'] = "View"; 
    101 $locale['541'] = "Delete"; 
    102 $locale['542'] = "Dimensions"; 
    103 $locale['543'] = "Options"; 
    104 $locale['544'] = "Used"; 
     100$locale['ads540'] = "View"; 
     101$locale['ads541'] = "Delete"; 
     102$locale['ads542'] = "Dimensions"; 
     103$locale['ads543'] = "Options"; 
     104$locale['ads544'] = "Used"; 
    105105 
    106106// messages 
    107 $locale['900'] = "The following errors are detected while validating your input:"; 
    108 $locale['901'] = "The requested advertisement can not be found in the database."; 
    109 $locale['902'] = "The advertisement has been deleted."; 
    110 $locale['903'] = "The amount purchased must be numeric."; 
    111 $locale['904'] = "The total amount sold to this client can not be negative."; 
    112 $locale['905'] = "Are you sure you want to delete this?"; 
    113 $locale['906'] = "The advertisement is succesfully added."; 
    114 $locale['907'] = "The advertisement is succesfully updated."; 
    115 $locale['908'] = "This client doesn't have any active advertisements."; 
    116 $locale['909'] = "You are about to remove '%s' as an advertising client.<br />This also removes all advertisements, and any images that belong to his client!<br /><br />Are you sure?"; 
    117 $locale['910'] = "This client and all the clients advertisements have been removed."; 
    118 $locale['911'] = "This client doesn't have any expired advertisements."; 
    119 $locale['912'] = "The selected image is to big for the selected location.<br />The maximum size for this location is %s, the image selected is %s."; 
    120 $locale['913'] = "Advertisement with ID %s has been enabled."; 
    121 $locale['914'] = "Advertisement with ID %s has been disabled."; 
     107$locale['ads900'] = "The following errors are detected while validating your input:"; 
     108$locale['ads901'] = "The requested advertisement can not be found in the database."; 
     109$locale['ads902'] = "The advertisement has been deleted."; 
     110$locale['ads903'] = "The amount purchased must be numeric."; 
     111$locale['ads904'] = "The total amount sold to this client can not be negative."; 
     112$locale['ads905'] = "Are you sure you want to delete this?"; 
     113$locale['ads906'] = "The advertisement is succesfully added."; 
     114$locale['ads907'] = "The advertisement is succesfully updated."; 
     115$locale['ads908'] = "This client doesn't have any active advertisements."; 
     116$locale['ads909'] = "You are about to remove '%s' as an advertising client.<br />This also removes all advertisements, and any images that belong to his client!<br /><br />Are you sure?"; 
     117$locale['ads910'] = "This client and all the clients advertisements have been removed."; 
     118$locale['ads911'] = "This client doesn't have any expired advertisements."; 
     119$locale['ads912'] = "The selected image is to big for the selected location.<br />The maximum size for this location is %s, the image selected is %s."; 
     120$locale['ads913'] = "Advertisement with ID %s has been enabled."; 
     121$locale['ads914'] = "Advertisement with ID %s has been disabled."; 
    122122 
    123123// messages - moving an advert to a new client 
    124 $locale['920'] = "Advertisement succesfully moved from %s to %s."; 
    125 $locale['921'] = "The selected Advertisement can not be found."; 
    126 $locale['922'] = "Invalid Advertisement ID passed. Is this a hacking attempt?"; 
    127 $locale['923'] = "The selected new Client record can not be found."; 
    128 $locale['924'] = "Invalid client ID passed. Is this a hacking attempt?"; 
     124$locale['ads920'] = "Advertisement succesfully moved from %s to %s."; 
     125$locale['ads921'] = "The selected Advertisement can not be found."; 
     126$locale['ads922'] = "Invalid Advertisement ID passed. Is this a hacking attempt?"; 
     127$locale['ads923'] = "The selected new Client record can not be found."; 
     128$locale['ads924'] = "Invalid client ID passed. Is this a hacking attempt?"; 
    129129 
    130130// messages - advertising statistics 
    131 $locale['950'] = "%s, You do not appear to be an advertising client.<br /><br />Please <a href='/contact.php'>contact us</a> for more information on becoming a client."; 
    132 $locale['951'] = "The URL for the advertisement with ID %s has been updated."; 
    133 $locale['952'] = "Detailed statistics for the advertisement with ID %s have been emailed to you."; 
    134 $locale['953'] = "Detailed statistics for all your advertisements have been emailed to you."; 
    135 $locale['954'] = "%s, There are no advertisements defined for you in this category."; 
    136 $locale['955'] = "Please <a href='/contact.php'>contact us</a> if you feel this is not correct."; 
     131$locale['ads950'] = "%s, You do not appear to be an advertising client.<br /><br />Please <a href='/contact.php'>contact us</a> for more information on becoming a client."; 
     132$locale['ads951'] = "The URL for the advertisement with ID %s has been updated."; 
     133$locale['ads952'] = "Detailed statistics for the advertisement with ID %s have been emailed to you."; 
     134$locale['ads953'] = "Detailed statistics for all your advertisements have been emailed to you."; 
     135$locale['ads954'] = "%s, There are no advertisements defined for you in this category."; 
     136$locale['ads955'] = "Please <a href='/contact.php'>contact us</a> if you feel this is not correct."; 
    137137 
    138138// messages - image uploading 
    139 $locale['960'] = "Upload file does not have an approved file extension (.jpg, .gif or .png)!"; 
    140 $locale['961'] = "Upload file is not a valid image!"; 
    141 $locale['962'] = "Hacking attempt! This is not an uploaded file!"; 
     139$locale['ads960'] = "Upload file does not have an approved file extension (.jpg, .gif or .png)!"; 
     140$locale['ads961'] = "Upload file is not a valid image!"; 
     141$locale['ads962'] = "Hacking attempt! This is not an uploaded file!"; 
    142142 
    143143// messages - image management 
    144 $locale['970'] = "There are no uploaded advertisement images"; 
    145 $locale['971'] = "The advertisement image has been deleted."; 
     144$locale['ads970'] = "There are no uploaded advertisement images"; 
     145$locale['ads971'] = "The advertisement image has been deleted."; 
    146146?> 
Note: See TracChangeset for help on using the changeset viewer.