diff --git a/README.md b/README.md
index 8e4ae94..e69de29 100644
--- a/README.md
+++ b/README.md
@@ -1,15 +0,0 @@
-# Jannex Admin Dashboard
-
-With this system you can easily run your Python scripts and visualize them in the user interface to manage them more easily. You can see who started the task and who worked on it later in the task view. When a group task is started, the backend server starts the Python script and sends the result to the web UI. The web UI can then be used to start the other tasks or to repeat or undo the current task.
-
-## Features
-
-- Dynamic Group Task System
-- Equipment Documentation System
-- Advanced log system with log viewer and log filter
-- Robot control system
-- Role System
-- Scanner integration to use mobile or pc devices as qrcode scanners
-- User login system
-- User deactivation system
-- User API key system
diff --git a/public/locales/de/translation.json b/public/locales/de/translation.json
index a23345c..ca88ee6 100644
--- a/public/locales/de/translation.json
+++ b/public/locales/de/translation.json
@@ -8,7 +8,12 @@
"confirm": "Bestätigen",
"create": "Erstellen"
},
- "contactAdmin": "Bitte kontaktieren Sie einen Administrator"
+ "action": "Aktion",
+ "contactAdmin": "Bitte kontaktieren Sie einen Administrator",
+ "username": "Anzeigename",
+ "accountName": "Benutzername",
+ "password": "Passwort",
+ "noDataFound": "Keine Daten gefunden"
},
"pageNotFound": {
"title": "Seite nicht gefunden",
@@ -28,5 +33,12 @@
"calendar": "Kalender",
"support": "Unterstützung",
"feedback": "Feedback"
+ },
+ "employees": {
+ "pageTitle": "Mitarbeiter",
+ "addEmployee": "Mitarbeiter anlegen",
+ "modalAddEmployee": {
+ "checkboxPasswordChange": "Mitarbeiter auffordern, das Passwort zu ändern (empfohlen)"
+ }
}
}
diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json
index 9c82a7f..6e35f47 100644
--- a/public/locales/en/translation.json
+++ b/public/locales/en/translation.json
@@ -8,7 +8,12 @@
"confirm": "Confirm",
"create": "Create"
},
- "contactAdmin": "Please contact an administrator"
+ "action": "Action",
+ "contactAdmin": "Please contact an administrator",
+ "username": "Username",
+ "accountName": "Account name",
+ "password": "Password",
+ "noDataFound": "No data found"
},
"pageNotFound": {
"title": "Page Not Found",
@@ -28,5 +33,12 @@
"calendar": "Calendar",
"support": "Support",
"feedback": "Feedback"
+ },
+ "employees": {
+ "pageTitle": "Employees",
+ "addEmployee": "Add employee",
+ "modalAddEmployee": {
+ "checkboxPasswordChange": "Require employee to change password (recommended)"
+ }
}
}
diff --git a/src/Components/MyTable/index.js b/src/Components/MyTable/index.js
new file mode 100644
index 0000000..1058b4d
--- /dev/null
+++ b/src/Components/MyTable/index.js
@@ -0,0 +1,27 @@
+import { Table } from "antd";
+import { useTranslation } from "react-i18next";
+
+export default function MyTable({ props }) {
+ const { t } = useTranslation();
+
+ return (
+