Skip to content

Commit f44caf1

Browse files
authored
Merge pull request #399 from getmaxun/develop
chore: release v0.0.9
2 parents 0dd5f62 + 71b45ca commit f44caf1

32 files changed

+1383
-646
lines changed

maxun-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "maxun-core",
3-
"version": "0.0.10",
3+
"version": "0.0.11",
44
"description": "Core package for Maxun, responsible for data extraction",
55
"main": "build/index.js",
66
"typings": "build/index.d.ts",

maxun-core/src/interpret.ts

Lines changed: 258 additions & 178 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "maxun",
3-
"version": "0.0.8",
3+
"version": "0.0.9",
44
"author": "Maxun",
55
"license": "AGPL-3.0-or-later",
66
"dependencies": {
@@ -47,7 +47,7 @@
4747
"lodash": "^4.17.21",
4848
"loglevel": "^1.8.0",
4949
"loglevel-plugin-remote": "^0.6.8",
50-
"maxun-core": "^0.0.10",
50+
"maxun-core": "^0.0.11",
5151
"minio": "^8.0.1",
5252
"moment-timezone": "^0.5.45",
5353
"node-cron": "^3.0.3",

public/locales/de.json

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,16 @@
88
"register_prompt": "Noch keinen Account?",
99
"register_link": "Registrieren",
1010
"welcome_notification": "Willkommen bei Maxun!",
11-
"error_notification": "Anmeldung fehlgeschlagen. Bitte versuchen Sie es erneut."
11+
"validation": {
12+
"required_fields": "E-Mail und Passwort sind erforderlich",
13+
"password_length": "Das Passwort muss mindestens 6 Zeichen lang sein"
14+
},
15+
"error": {
16+
"user_not_found": "Benutzer existiert nicht",
17+
"invalid_credentials": "Ungültige E-Mail oder Passwort",
18+
"server_error": "Anmeldung fehlgeschlagen. Bitte versuchen Sie es später erneut",
19+
"generic": "Ein Fehler ist aufgetreten. Bitte versuchen Sie es erneut"
20+
}
1221
},
1322
"register": {
1423
"title": "Konto registrieren",
@@ -19,7 +28,16 @@
1928
"register_prompt": "Bereits ein Konto?",
2029
"login_link": "Einloggen",
2130
"welcome_notification": "Willkommen bei Maxun!",
22-
"error_notification": "Registrierung fehlgeschlagen. Bitte versuchen Sie es erneut."
31+
"validation": {
32+
"email_required": "E-Mail-Adresse ist erforderlich",
33+
"password_requirements": "Das Passwort muss mindestens 6 Zeichen lang sein"
34+
},
35+
"error": {
36+
"user_exists": "Ein Benutzer mit dieser E-Mail existiert bereits",
37+
"creation_failed": "Konto konnte nicht erstellt werden",
38+
"server_error": "Serverfehler aufgetreten",
39+
"generic": "Registrierung fehlgeschlagen. Bitte versuchen Sie es erneut"
40+
}
2341
},
2442
"recordingtable": {
2543
"run": "Ausführen",
@@ -40,7 +58,7 @@
4058
"delete": "Löschen",
4159
"duplicate": "Duplizieren",
4260
"notifications": {
43-
"delete_warning": "Roboter kann nicht gelöscht werden, da zugehörige Ausführungen vorhanden sind",
61+
"delete_warning": "Der Roboter hat zugehörige Ausführungen. Löschen Sie zuerst die Ausführungen, um den Roboter zu löschen",
4462
"delete_success": "Roboter erfolgreich gelöscht",
4563
"auth_success": "Roboter erfolgreich authentifiziert"
4664
}
@@ -62,6 +80,7 @@
6280
"delete": "Löschen",
6381
"settings": "Einstellungen",
6482
"search": "Ausführungen suchen...",
83+
"sort_tooltip": "Zum Sortieren klicken",
6584
"notifications": {
6685
"no_runs": "Keine Ausführungen gefunden. Bitte versuchen Sie es erneut.",
6786
"delete_success": "Ausführung erfolgreich gelöscht"
@@ -451,6 +470,7 @@
451470
"log": "Protokoll"
452471
},
453472
"empty_output": "Die Ausgabe ist leer.",
473+
"loading": "Ausführung läuft. Extrahierte Daten werden nach Abschluss des Durchlaufs hier angezeigt.",
454474
"captured_data": {
455475
"title": "Erfasste Daten",
456476
"download_json": "Als JSON herunterladen",

public/locales/en.json

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,16 @@
88
"register_prompt": "Don't have an account?",
99
"register_link": "Register",
1010
"welcome_notification": "Welcome to Maxun!",
11-
"error_notification": "Login Failed. Please try again."
11+
"validation": {
12+
"required_fields": "Email and password are required",
13+
"password_length": "Password must be at least 6 characters"
14+
},
15+
"error": {
16+
"user_not_found": "User does not exist",
17+
"invalid_credentials": "Invalid email or password",
18+
"server_error": "Login failed. Please try again later",
19+
"generic": "An error occurred. Please try again"
20+
}
1221
},
1322
"register": {
1423
"title": "Register Account",
@@ -19,7 +28,16 @@
1928
"register_prompt": "Already have an account?",
2029
"login_link": "Login",
2130
"welcome_notification": "Welcome to Maxun!",
22-
"error_notification": "Registeration Failed. Please try again."
31+
"validation": {
32+
"email_required": "Email is required",
33+
"password_requirements": "Password must be at least 6 characters"
34+
},
35+
"error": {
36+
"user_exists": "User with this email already exists",
37+
"creation_failed": "Could not create account",
38+
"server_error": "Server error occurred",
39+
"generic": "Registration failed. Please try again"
40+
}
2341
},
2442
"recordingtable":{
2543
"run": "Run",
@@ -41,7 +59,7 @@
4159
"duplicate":"Duplicate",
4260
"search":"Search Robots...",
4361
"notifications": {
44-
"delete_warning": "Cannot delete robot as it has associated runs",
62+
"delete_warning": "The robot has associated runs. First delete runs to delete the robot",
4563
"delete_success": "Robot deleted successfully",
4664
"auth_success": "Robot successfully authenticated"
4765
}
@@ -63,6 +81,7 @@
6381
"delete":"Delete",
6482
"settings":"Settings",
6583
"search":"Search Runs...",
84+
"sort_tooltip": "Click to sort",
6685
"notifications": {
6786
"no_runs": "No runs found. Please try again.",
6887
"delete_success": "Run deleted successfully"
@@ -462,6 +481,7 @@
462481
"log": "Log"
463482
},
464483
"empty_output": "The output is empty.",
484+
"loading": "Run in progress. Extracted data will appear here once run completes.",
465485
"captured_data": {
466486
"title": "Captured Data",
467487
"download_json": "Download as JSON",

public/locales/es.json

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,16 @@
88
"register_prompt": "¿No tienes una cuenta?",
99
"register_link": "Registrarse",
1010
"welcome_notification": "¡Bienvenido a Maxun!",
11-
"error_notification": "Error al iniciar sesión. Por favor, inténtalo de nuevo."
11+
"validation": {
12+
"required_fields": "El correo electrónico y la contraseña son obligatorios",
13+
"password_length": "La contraseña debe tener al menos 6 caracteres"
14+
},
15+
"error": {
16+
"user_not_found": "El usuario no existe",
17+
"invalid_credentials": "Correo electrónico o contraseña inválidos",
18+
"server_error": "Error al iniciar sesión. Por favor, inténtelo de nuevo más tarde",
19+
"generic": "Se produjo un error. Por favor, inténtelo de nuevo"
20+
}
1221
},
1322
"register": {
1423
"title": "Crear cuenta",
@@ -19,7 +28,16 @@
1928
"register_prompt": "¿Ya tienes una cuenta?",
2029
"login_link": "Iniciar sesión",
2130
"welcome_notification": "¡Bienvenido a Maxun!",
22-
"error_notification": "Error en el registro. Por favor, inténtalo de nuevo."
31+
"validation": {
32+
"email_required": "El correo electrónico es obligatorio",
33+
"password_requirements": "La contraseña debe tener al menos 6 caracteres"
34+
},
35+
"error": {
36+
"user_exists": "Ya existe un usuario con este correo electrónico",
37+
"creation_failed": "No se pudo crear la cuenta",
38+
"server_error": "Ocurrió un error en el servidor",
39+
"generic": "Error en el registro. Por favor, inténtelo de nuevo"
40+
}
2341
},
2442
"recordingtable": {
2543
"run": "Ejecutar",
@@ -41,7 +59,7 @@
4159
"duplicate": "Duplicar",
4260
"search": "Buscar robots...",
4361
"notifications": {
44-
"delete_warning": "No se puede eliminar el robot ya que tiene ejecuciones asociadas",
62+
"delete_warning": "El robot tiene ejecuciones asociadas. Primero elimine las ejecuciones para eliminar el robot",
4563
"delete_success": "Robot eliminado exitosamente",
4664
"auth_success": "Robot autenticado exitosamente"
4765
}
@@ -63,6 +81,7 @@
6381
"delete": "Eliminar",
6482
"settings": "Ajustes",
6583
"search": "Buscar ejecuciones...",
84+
"sort_tooltip": "Haga clic para ordenar",
6685
"notifications": {
6786
"no_runs": "No se encontraron ejecuciones. Por favor, inténtelo de nuevo.",
6887
"delete_success": "Ejecución eliminada con éxito"
@@ -452,6 +471,7 @@
452471
"log": "Registro"
453472
},
454473
"empty_output": "La salida está vacía.",
474+
"loading": "Ejecución en curso. Los datos extraídos aparecerán aquí una vez que se complete la ejecución.",
455475
"captured_data": {
456476
"title": "Datos Capturados",
457477
"download_json": "Descargar como JSON",

public/locales/ja.json

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,16 @@
88
"register_prompt": "アカウントをお持ちでないですか?",
99
"register_link": "登録する",
1010
"welcome_notification": "Maxunへようこそ!",
11-
"error_notification": "ログインに失敗しました。もう一度お試しください。"
11+
"validation": {
12+
"required_fields": "メールアドレスとパスワードは必須です",
13+
"password_length": "パスワードは6文字以上である必要があります"
14+
},
15+
"error": {
16+
"user_not_found": "ユーザーが存在しません",
17+
"invalid_credentials": "メールアドレスまたはパスワードが無効です",
18+
"server_error": "ログインに失敗しました。後でもう一度お試しください",
19+
"generic": "エラーが発生しました。もう一度お試しください"
20+
}
1221
},
1322
"register": {
1423
"title": "アカウントを登録する",
@@ -19,7 +28,16 @@
1928
"register_prompt": "既にアカウントをお持ちですか?",
2029
"login_link": "ログイン",
2130
"welcome_notification": "Maxunへようこそ!",
22-
"error_notification": "登録に失敗しました。もう一度お試しください。"
31+
"validation": {
32+
"email_required": "メールアドレスは必須です",
33+
"password_requirements": "パスワードは6文字以上である必要があります"
34+
},
35+
"error": {
36+
"user_exists": "このメールアドレスは既に登録されています",
37+
"creation_failed": "アカウントを作成できませんでした",
38+
"server_error": "サーバーエラーが発生しました",
39+
"generic": "登録に失敗しました。もう一度お試しください"
40+
}
2341
},
2442
"recordingtable": {
2543
"run": "実行",
@@ -41,7 +59,7 @@
4159
"duplicate": "複製",
4260
"search": "ロボットを検索...",
4361
"notifications": {
44-
"delete_warning": "関連する実行があるため、ロボットを削除できません",
62+
"delete_warning": "ロボットには関連する実行があります。ロボットを削除するには、まず実行を削除してください",
4563
"delete_success": "ロボットが正常に削除されました",
4664
"auth_success": "ロボットの認証に成功しました"
4765
}
@@ -63,6 +81,7 @@
6381
"delete": "削除",
6482
"settings": "設定",
6583
"search": "実行を検索...",
84+
"sort_tooltip": "クリックして並べ替え",
6685
"notifications": {
6786
"no_runs": "実行が見つかりません。もう一度お試しください。",
6887
"delete_success": "実行が正常に削除されました"
@@ -452,6 +471,7 @@
452471
"log": "ログ"
453472
},
454473
"empty_output": "出力は空です。",
474+
"loading": "実行中です。実行が完了すると、抽出されたデータがここに表示されます。",
455475
"captured_data": {
456476
"title": "キャプチャされたデータ",
457477
"download_json": "JSONとしてダウンロード",

public/locales/zh.json

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,16 @@
88
"register_prompt": "还没有账号?",
99
"register_link": "注册",
1010
"welcome_notification": "欢迎使用 Maxun!",
11-
"error_notification": "登录失败。请重试。"
11+
"validation": {
12+
"required_fields": "邮箱和密码为必填项",
13+
"password_length": "密码必须至少6个字符"
14+
},
15+
"error": {
16+
"user_not_found": "用户不存在",
17+
"invalid_credentials": "邮箱或密码无效",
18+
"server_error": "登录失败,请稍后重试",
19+
"generic": "发生错误,请重试"
20+
}
1221
},
1322
"register": {
1423
"title": "注册账号",
@@ -19,7 +28,16 @@
1928
"register_prompt": "已有账号?",
2029
"login_link": "登录",
2130
"welcome_notification": "欢迎使用 Maxun!",
22-
"error_notification": "注册失败。请重试。"
31+
"validation": {
32+
"email_required": "邮箱是必填项",
33+
"password_requirements": "密码必须至少6个字符"
34+
},
35+
"error": {
36+
"user_exists": "该邮箱已被注册",
37+
"creation_failed": "无法创建账户",
38+
"server_error": "服务器错误",
39+
"generic": "注册失败,请重试"
40+
}
2341
},
2442
"recordingtable": {
2543
"run": "运行",
@@ -41,7 +59,7 @@
4159
"duplicate": "复制",
4260
"search": "搜索机器人...",
4361
"notifications": {
44-
"delete_warning": "无法删除机器人,因为它有关联的运行记录",
62+
"delete_warning": "该机器人有关联的运行记录。请先删除运行记录才能删除机器人",
4563
"delete_success": "机器人删除成功",
4664
"auth_success": "机器人认证成功"
4765
}
@@ -63,6 +81,7 @@
6381
"delete": "删除",
6482
"settings": "设置",
6583
"search": "搜索运行记录...",
84+
"sort_tooltip": "点击排序",
6685
"notifications": {
6786
"no_runs": "未找到运行记录。请重试。",
6887
"delete_success": "运行记录删除成功"
@@ -452,6 +471,7 @@
452471
"log": "日志"
453472
},
454473
"empty_output": "输出为空。",
474+
"loading": "运行中。运行完成后,提取的数据将显示在此处。",
455475
"captured_data": {
456476
"title": "捕获的数据",
457477
"download_json": "下载为JSON",

0 commit comments

Comments
 (0)