diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/account/24.php | 6 | ||||
-rw-r--r-- | pages/account/27.php | 6 | ||||
-rw-r--r-- | pages/account/49.php | 4 |
3 files changed, 12 insertions, 4 deletions
diff --git a/pages/account/24.php b/pages/account/24.php index 7f56023..14a47c0 100644 --- a/pages/account/24.php +++ b/pages/account/24.php @@ -48,7 +48,11 @@ </tr> <tr> <td class="DataTD"><?=_("Country")?>:</td> - <td class="DataTD"><input type="text" name="C" value="" size="5">(2 letter <a href="http://www.iso.org/iso/english_country_names_and_code_elements">ISO code</a>)</td> + <td class="DataTD"><input type="text" name="C" value="" size="5"> + <?php printf(_('(2 letter %s ISO code %s )'), + '<a href="http://www.iso.org/iso/home/standards/country_codes/iso-3166-1_decoding_table.htm">', + '</a>')?> + </td> </tr> <tr> <td class="DataTD"><?=_("Comments")?>:</td> diff --git a/pages/account/27.php b/pages/account/27.php index 9524620..a1086d4 100644 --- a/pages/account/27.php +++ b/pages/account/27.php @@ -41,7 +41,11 @@ </tr> <tr> <td class="DataTD"><?=_("Country")?>:</td> - <td class="DataTD"><input type="text" name="C" value="<?=($row['C'])?>" size="5"> (2 letter <a href="http://www.iso.org/iso/english_country_names_and_code_elements">ISO code</a>)</td> + <td class="DataTD"><input type="text" name="C" value="<?=($row['C'])?>" size="5"> + <?php printf(_('(2 letter %s ISO code %s )'), + '<a href="http://www.iso.org/iso/home/standards/country_codes/iso-3166-1_decoding_table.htm">', + '</a>')?> + </td> </tr> <tr> <td class="DataTD"><?=_("Comments")?>:</td> diff --git a/pages/account/49.php b/pages/account/49.php index 688b9a4..a5345e6 100644 --- a/pages/account/49.php +++ b/pages/account/49.php @@ -34,7 +34,7 @@ if(mysql_num_rows($res) >= 1) { ?> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> <tr> - <td colspan="5" class="title"><?=_("Select Specific Account Details")?></td> + <td colspan="5" class="title"><?=_("Select Specific User Account Details")?></td> </tr> <? while($row = mysql_fetch_assoc($res)) @@ -66,7 +66,7 @@ if(mysql_num_rows($res) >= 1) { ?> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> <tr> - <td colspan="5" class="title"><?=_("Select Specific Account Details")?></td> + <td colspan="5" class="title"><?=_("Select Specific Organisation Account Details")?></td> </tr> <? while($row = mysql_fetch_assoc($res)) |