diff --git a/amt/locale/base.pot b/amt/locale/base.pot index c906ef46..bf83cd3f 100644 --- a/amt/locale/base.pot +++ b/amt/locale/base.pot @@ -534,8 +534,7 @@ msgid "" "The AI Act profile provides insight into, among other things, the type of" " AI system and the associated obligations from the European AI Act. If " "you already know the type of AI system you can fill in the below fields. " -"Otherwise, you can find your AI Act Profile with the AI Act Decision " -"tree." +"Otherwise, you can find your AI Act Profile with the AI Act Support Tool." msgstr "" #: amt/site/templates/algorithms/new.html.j2:76 diff --git a/amt/locale/en_US/LC_MESSAGES/messages.mo b/amt/locale/en_US/LC_MESSAGES/messages.mo index fceda237..83f4ad01 100644 Binary files a/amt/locale/en_US/LC_MESSAGES/messages.mo and b/amt/locale/en_US/LC_MESSAGES/messages.mo differ diff --git a/amt/locale/en_US/LC_MESSAGES/messages.po b/amt/locale/en_US/LC_MESSAGES/messages.po index 23a68eb6..509e10d3 100644 --- a/amt/locale/en_US/LC_MESSAGES/messages.po +++ b/amt/locale/en_US/LC_MESSAGES/messages.po @@ -535,8 +535,7 @@ msgid "" "The AI Act profile provides insight into, among other things, the type of" " AI system and the associated obligations from the European AI Act. If " "you already know the type of AI system you can fill in the below fields. " -"Otherwise, you can find your AI Act Profile with the AI Act Decision " -"tree." +"Otherwise, you can find your AI Act Profile with the AI Act Support Tool." msgstr "" #: amt/site/templates/algorithms/new.html.j2:76 diff --git a/amt/locale/nl_NL/LC_MESSAGES/messages.mo b/amt/locale/nl_NL/LC_MESSAGES/messages.mo index 267c9aab..f6be2508 100644 Binary files a/amt/locale/nl_NL/LC_MESSAGES/messages.mo and b/amt/locale/nl_NL/LC_MESSAGES/messages.mo differ diff --git a/amt/locale/nl_NL/LC_MESSAGES/messages.po b/amt/locale/nl_NL/LC_MESSAGES/messages.po index fb478d1c..c327fabc 100644 --- a/amt/locale/nl_NL/LC_MESSAGES/messages.po +++ b/amt/locale/nl_NL/LC_MESSAGES/messages.po @@ -549,8 +549,7 @@ msgid "" "The AI Act profile provides insight into, among other things, the type of" " AI system and the associated obligations from the European AI Act. If " "you already know the type of AI system you can fill in the below fields. " -"Otherwise, you can find your AI Act Profile with the AI Act Decision " -"tree." +"Otherwise, you can find your AI Act Profile with the AI Act Support Tool." msgstr "" "Het profiel van je toepassing, gebaseerd op de AI Act, geeft inzicht in " "onder andere het type AI systeem, de regelgeving die van toepassing is en" diff --git a/amt/site/static/ts/amt.ts b/amt/site/static/ts/amt.ts index 3589907c..2885ec71 100644 --- a/amt/site/static/ts/amt.ts +++ b/amt/site/static/ts/amt.ts @@ -130,12 +130,12 @@ export function closeModal(id: string) { export function closeModalSave(id: string) { closeModal(id); - // Get decision tree state from local store. - const decision_tree_state = localStorage?.getItem("labelsbycategory"); + // Get ai act support tool state from local store. + const ai_act_support_tool_state = localStorage?.getItem("labelsbycategory"); - if (decision_tree_state != null) { - // Parse decision tree state into AiActProfile object. - const aiActProfileRaw = JSON.parse(decision_tree_state); + if (ai_act_support_tool_state != null) { + // Parse ai act support tool state into AiActProfile object. + const aiActProfileRaw = JSON.parse(ai_act_support_tool_state); const aiActProfile: AiActProfile = new AiActProfile( aiActProfileRaw["Soort toepassing"], aiActProfileRaw["Publicatiecategorie"], diff --git a/amt/site/templates/algorithms/new.html.j2 b/amt/site/templates/algorithms/new.html.j2 index 93e39587..75785e67 100644 --- a/amt/site/templates/algorithms/new.html.j2 +++ b/amt/site/templates/algorithms/new.html.j2 @@ -66,12 +66,12 @@

{% trans %}AI Act Profile{% endtrans %}

- {% trans %}The AI Act profile provides insight into, among other things, the type of AI system and the associated obligations from the European AI Act. If you already know the type of AI system you can fill in the below fields. Otherwise, you can find your AI Act Profile with the AI Act Decision tree.{% endtrans %} + {% trans %}The AI Act profile provides insight into, among other things, the type of AI system and the associated obligations from the European AI Act. If you already know the type of AI system you can fill in the below fields. Otherwise, you can find your AI Act Profile with the AI Act Support Tool.{% endtrans %}

-
@@ -190,15 +190,15 @@
-