diff --git a/forms-flow-admin/src/components/dashboard/dashboard.tsx b/forms-flow-admin/src/components/dashboard/dashboard.tsx
index 1db4e97f..f206a89d 100644
--- a/forms-flow-admin/src/components/dashboard/dashboard.tsx
+++ b/forms-flow-admin/src/components/dashboard/dashboard.tsx
@@ -271,7 +271,7 @@ export const InsightDashboard = React.memo((props: any) => {
value: 100,
},
{
- text: "All",
+ text: t("All"),
value: authDashBoardList.length
},
];
diff --git a/forms-flow-admin/src/components/roles/roles.tsx b/forms-flow-admin/src/components/roles/roles.tsx
index f8618d2b..88e22db2 100644
--- a/forms-flow-admin/src/components/roles/roles.tsx
+++ b/forms-flow-admin/src/components/roles/roles.tsx
@@ -283,6 +283,7 @@ const Roles = React.memo((props: any) => {
placeholder={t("Eg: Account Manager")}
required
onChange={handleChangeName}
+ title={t("Enter role name")}
/>
{t("Description")}
*
@@ -291,6 +292,7 @@ const Roles = React.memo((props: any) => {
placeholder="Eg: Lorem ipsum..."
rows={3}
onChange={handleChangeDescription}
+ title={t("Enter Description")}
/>
@@ -392,7 +394,7 @@ const Roles = React.memo((props: any) => {
value: 100,
},
{
- text: "All",
+ text: t("All"),
value: roles.length,
},
];
@@ -519,7 +521,7 @@ const Roles = React.memo((props: any) => {
className="search-role-input"
onChange={handlFilter}
value={search}
- title={t("Search here")}
+ title={t("Search...")}
/>
{search.length > 0 && (
diff --git a/forms-flow-admin/src/components/users/users.tsx b/forms-flow-admin/src/components/users/users.tsx
index ecdaec3b..6d0d8380 100644
--- a/forms-flow-admin/src/components/users/users.tsx
+++ b/forms-flow-admin/src/components/users/users.tsx
@@ -334,7 +334,7 @@ const Users = React.memo((props: any) => {
className="search-role-input"
onChange={handleSearch}
value={props.search || ""}
- title={t("Search here")}
+ title={t("Search...")}
/>
{props.search?.length > 0 && (