Ticket #1007: two.existing.translations.fix.patch

File two.existing.translations.fix.patch, 1.1 KB (added by Simek, 14 years ago)
  • create_profile.php

     
    2828//
    2929function show_combo_box($name, $filename, $selection=null) {
    3030    if (!file_exists($filename)) {
    31         error_page(tra("ERROR: %1 does not exist!  Cannot create combo box.<br>", htmlentities($filename)));
     31        error_page(tra("ERROR: %1 does not exist! Cannot create combo box.", htmlentities($filename))."<br />");
    3232    }
    3333    echo "<select name=\"$name\">\n";
    3434
     
    104104    $config = get_config();
    105105    $publickey = parse_config($config, "<recaptcha_public_key>");
    106106    if ($publickey) {
    107         table_row(tra("To protect the project's webpages from spam, we kindly ask you to type in the two words shown in the image:<br>\n").
     107        table_row(tra("To protect the project's webpages from spam, we kindly ask you to type in the two words shown in the image:")."<br>\n".
    108108            recaptcha_get_html($publickey));
    109109    }
    110110    table_row("<p><input type=\"submit\" value=\"".tra("Create/edit profile") ."\" name=\"submit\">");