Skip to content

Commit

Permalink
[TASK] General improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
creativekallol committed Jul 16, 2024
1 parent ca540b9 commit dc6efc8
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## Changelog

### v1.0.0 - 15.07.2024
### v1.0.0

#### 16.07.2024

- General improvements

#### 15.07.2024

- Initial release
4 changes: 2 additions & 2 deletions Classes/Controller/FormController.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ public function signAction(): ResponseInterface
if (empty($configValue)) {
// Add an error message if a mandatory setting is missing
$this->addFlashMessage(
$this->translate('msg.text.not_loggedin') . ' ' . $configKey,
$this->translate('msg.heading.not_loggedin'),
$this->translate('msg.text.missing_config') . ' ' . $configKey,
$this->translate('msg.heading.missing_config'),
ContextualFeedbackSeverity::ERROR
);
$errorFlag++;
Expand Down
4 changes: 1 addition & 3 deletions Configuration/FlexForms/Sign.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
<sheets>
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:docuseal/Resources/Private/Language/locallang_db.xlf:flexform.head</sheetTitle>
</TCEforms>
<sheetTitle>LLL:EXT:docuseal/Resources/Private/Language/locallang_db.xlf:flexform.head.general</sheetTitle>
<type>array</type>
<el>
<settings.templateId>
Expand Down
6 changes: 3 additions & 3 deletions Resources/Private/Language/locallang.xlf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<xliff version="1.0">
<file source-language="en" datatype="plaintext" original="EXT:docuseal/Resources/Private/Language/locallang.xlf" date="2022-09-06T08:00:26Z" product-name="docuseal">
<file source-language="en" datatype="plaintext" original="EXT:docuseal/Resources/Private/Language/locallang.xlf" date="2024-07-06T08:00:26Z" product-name="docuseal">
<header/>
<body>
<trans-unit id="label.msg.heading.not_loggedin" resname="label.msg.heading.not_loggedin">
<trans-unit id="label.msg.heading.missing_config" resname="label.msg.heading.missing_config">
<source>Incomplete Setup</source>
</trans-unit>
<trans-unit id="label.msg.text.not_loggedin" resname="label.msg.text.not_loggedin">
<trans-unit id="label.msg.text.missing_config" resname="label.msg.text.missing_config">
<source>Missing configuration:</source>
</trans-unit>
</body>
Expand Down
6 changes: 3 additions & 3 deletions Resources/Private/Language/locallang_db.xlf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<xliff version="1.0">
<file source-language="en" datatype="plaintext" original="EXT:docuseal/Resources/Private/Language/locallang_db.xlf" date="2022-09-06T08:00:26Z" product-name="docuseal">
<file source-language="en" datatype="plaintext" original="EXT:docuseal/Resources/Private/Language/locallang_db.xlf" date="2024-07-06T08:00:26Z" product-name="docuseal">
<header/>
<body>
<trans-unit id="flexform.head" resname="flexform.head">
<source>Plugin Configuration</source>
<trans-unit id="flexform.head.general" resname="flexform.head.general">
<source>General</source>
</trans-unit>
<trans-unit id="flexform.templateId" resname="flexform.templateId">
<source>Template ID (Refer to the "Document Templates" section in DocuSeal)</source>
Expand Down

0 comments on commit dc6efc8

Please sign in to comment.