diff options
author | Benny Baumann <BenBE@geshi.org> | 2012-10-31 18:48:24 +0100 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2012-10-31 18:48:24 +0100 |
commit | fde104258845f71b6ca36fe899340f9f97ff910e (patch) | |
tree | 6dd990d2f3e8adf0be30d77b33aba8f0f5eaaa23 /pages | |
parent | 06b1d82f7de4f515f1ca9985bd7201f3658022a8 (diff) | |
parent | 304b385fb87e0b4b9be33c95f487f5680b708d1e (diff) | |
download | cacert-devel-fde104258845f71b6ca36fe899340f9f97ff910e.tar.gz cacert-devel-fde104258845f71b6ca36fe899340f9f97ff910e.tar.xz cacert-devel-fde104258845f71b6ca36fe899340f9f97ff910e.zip |
Merge branch 'bug-1080' into release
Diffstat (limited to 'pages')
-rw-r--r-- | pages/account/24.php | 6 | ||||
-rw-r--r-- | pages/account/27.php | 6 |
2 files changed, 10 insertions, 2 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> |