]> WPIA git - gigi.git/commitdiff
fix: bad/incomplete descriptions
authorFelix Dörre <felix@dogcraft.de>
Thu, 21 Jul 2016 08:27:30 +0000 (10:27 +0200)
committerFelix Dörre <felix@dogcraft.de>
Sat, 23 Jul 2016 10:16:34 +0000 (12:16 +0200)
Change-Id: Ic9fcfa6a1b0f8f21dd89054feb098c265da4ee6b

src/org/cacert/gigi/pages/account/domain/PingConfigForm.templ
src/org/cacert/gigi/pages/orga/AffiliationForm.java

index 89ba9e0bd848eab44725c45c680da15d602f35f9..3df9bd2823c0f3cb14e64d2404f643e1583660df 100644 (file)
@@ -49,7 +49,7 @@
     <td></td>
     <td>
         <?=_Please list up to four services using your certificate. You need to have one of them up and using a valid SomeCA certificate or a specific self-signed certificate in order to pass this test?>:
-        <?=_The self-signed certificate needs to contain your domain as CN and ${tokenValue} as organization unit, with -subj "/CN=<domain>/OU=${tokenValue}"?>:
+        <?=_The self-signed certificate needs to contain your domain as CN and ${tokenValue} as organization unit. With -subj "/CN=<domain>/OU=${tokenValue}" OpenSSL command line utilities can generate such a certificate.?>:
         <table>
         <? foreach($ssl-services){ ?>
         <tr><td><select name='ssl-type-<?=$i?>'>
index 6ffc8822d142ace91992f4b171ede427bb72e338..cef4dc912e2c8d340483213227dd54caf3d1b0ad 100644 (file)
@@ -64,7 +64,7 @@ public class AffiliationForm extends Form {
                 }
                 Affiliation aff = iter.next();
                 vars.put("name", aff.getTarget().getPreferredName());
-                vars.put("master", aff.isMaster() ? l.getTranslation("master") : "");
+                vars.put("master", aff.isMaster() ? l.getTranslation("Master") : "");
                 vars.put("e-mail", aff.getTarget().getEmail());
                 return true;
             }