Skip to content

Commit 0766451

Browse files
Changes after review
1 parent 23064ea commit 0766451

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

README.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,9 @@ Nextcloud app to sign PDF documents.
1717
## Setup
1818

1919
### Standalone
20-
Help to usage in configure cfssl command:
21-
```
22-
yourCN: CommonName
23-
yourOU: OrganizationalUnit
24-
yourO: Organization
25-
yourCountry: CountryName
26-
```
27-
After install LibreSign, will be necessary to run these follows commands
20+
After installing LibreSign, is necessary to run the following commands
2821

29-
Install commands:
22+
Install commands, replace all between < and > by your data. For more information you could run the commands with `--help`:
3023
```bash
3124
occ libresign:install --all
3225
occ libresign:configure:cfssl --cn=<yourCN> --ou=<yourOU> --o=<yourO> --c=<yourCountry>

lib/Service/ConfigureCheckService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ public function canPreview(): array {
3535
} catch (ImagickException $ie) {
3636
if ($ie->getCode() === 499) {
3737
return [
38-
'errors' => ['Necessary configure the security policy of ImageMagick to work with PDF. More informations: https://github.com/LibreSign/libresign/issues/829'],
38+
'errors' => ['Is necessary to configure the ImageMagick security policy to work with PDF. More information on: https://github.com/LibreSign/libresign/issues/829'],
3939
];
4040
}
4141
}
4242
return [
43-
'success' => ['Can generate preview'],
43+
'success' => ['Can generate the preview'],
4444
];
4545
}
4646

0 commit comments

Comments
 (0)