Skip to content

Commit

Permalink
translation issues fixed (#1707)
Browse files Browse the repository at this point in the history
  • Loading branch information
fahad-aot authored Nov 13, 2023
1 parent 7b82e55 commit ad54f3f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions forms-flow-web/src/components/Application/ApplicationTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,9 @@ const ApplicationTable = () => {
</Dropdown.Menu>
</Dropdown>
<span className="ml-2">
Showing {(limit * pageNo ) - (limit - 1)} to{" "}
{limit * pageNo > totalForms ? totalForms : limit * pageNo} of{" "}
{totalForms} Results
{t("Showing")} {(limit * pageNo ) - (limit - 1)} {t("to")}{" "}
{limit * pageNo > totalForms ? totalForms : limit * pageNo} {t("of")}{" "}
{totalForms} {t("Results")}
</span>
</div>
<div className="d-flex align-items-center">
Expand Down
6 changes: 3 additions & 3 deletions forms-flow-web/src/components/Draft/DraftTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ const DraftTable = () => {
</Dropdown.Menu>
</Dropdown>
<span className="ml-2">
Showing {(limit * pageNo ) - (limit - 1)} to{" "}
{limit * pageNo > totalForms ? totalForms : limit * pageNo} of{" "}
{totalForms} Results
{t("Showing")} {(limit * pageNo) - (limit - 1)} {t("to")}{" "}
{limit * pageNo > totalForms ? totalForms : limit * pageNo} {t("of")}{" "}
{totalForms} {t("Results")}
</span>
</div>

Expand Down

0 comments on commit ad54f3f

Please sign in to comment.