@windward/integrations 0.21.0 → 0.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/components/Content/Blocks/ActionPanel/TransformActivity.vue +386 -0
- package/components/Content/Blocks/ActionPanel/TransformBlock.vue +402 -59
- package/components/Content/Blocks/ExternalIntegration/LtiConsumer.vue +22 -2
- package/components/ExternalIntegration/Driver/Lti1p1/ManageConsumer.vue +8 -2
- package/components/ExternalIntegration/Driver/Lti1p1/ManageProvider.vue +4 -0
- package/components/ExternalIntegration/Driver/Lti1p3/ManageConsumer.vue +2 -2
- package/components/Integration/JobTable.vue +35 -3
- package/components/Integration/TranslateCourse.vue +574 -0
- package/components/Settings/ExternalIntegration/LtiConsumerSettings.vue +27 -0
- package/i18n/ar-SA/components/ai_agent/chat.ts +20 -0
- package/i18n/ar-SA/components/ai_agent/index.ts +5 -0
- package/i18n/ar-SA/components/content/blocks/action_panel/index.ts +5 -0
- package/i18n/ar-SA/components/content/blocks/action_panel/transform_block.ts +9 -0
- package/i18n/ar-SA/components/content/blocks/external_integration/index.ts +5 -0
- package/i18n/ar-SA/components/content/blocks/external_integration/lti_consumer.ts +17 -0
- package/i18n/ar-SA/components/content/blocks/index.ts +7 -0
- package/i18n/ar-SA/components/content/index.ts +5 -0
- package/i18n/ar-SA/components/external_integration/driver/lti1p1.ts +17 -0
- package/i18n/ar-SA/components/external_integration/driver/lti1p3.ts +25 -0
- package/i18n/ar-SA/components/external_integration/driver/scorm.ts +14 -0
- package/i18n/ar-SA/components/external_integration/index.ts +36 -0
- package/i18n/ar-SA/components/external_integration/provider_target.ts +9 -0
- package/i18n/ar-SA/components/file_import/index.ts +5 -0
- package/i18n/ar-SA/components/file_import/resourcespace.ts +4 -0
- package/i18n/ar-SA/components/index.ts +19 -0
- package/i18n/ar-SA/components/integration/driver.ts +67 -0
- package/i18n/ar-SA/components/integration/index.ts +9 -0
- package/i18n/ar-SA/components/integration/job.ts +25 -0
- package/i18n/ar-SA/components/integration/job_log.ts +24 -0
- package/i18n/ar-SA/components/llm/blooms.ts +15 -0
- package/i18n/ar-SA/components/llm/content_selector.ts +3 -0
- package/i18n/ar-SA/components/llm/generate_content/fake_text_stream.ts +62 -0
- package/i18n/ar-SA/components/llm/generate_content/generate_questions.ts +92 -0
- package/i18n/ar-SA/components/llm/generate_content/index.ts +8 -0
- package/i18n/ar-SA/components/llm/index.ts +10 -0
- package/i18n/ar-SA/components/navigation/index.ts +5 -0
- package/i18n/ar-SA/components/navigation/integrations.ts +9 -0
- package/i18n/ar-SA/components/settings/external_integration/index.ts +5 -0
- package/i18n/ar-SA/components/settings/external_integration/lti_consumer.ts +10 -0
- package/i18n/ar-SA/components/settings/index.ts +5 -0
- package/i18n/ar-SA/index.ts +16 -0
- package/i18n/ar-SA/modules/index.ts +5 -0
- package/i18n/ar-SA/pages/admin/index.ts +5 -0
- package/i18n/ar-SA/pages/admin/translateCourse.ts +68 -0
- package/i18n/ar-SA/pages/course/external_integration/index.ts +6 -0
- package/i18n/ar-SA/pages/course/index.ts +5 -0
- package/i18n/ar-SA/pages/importContent.ts +3 -0
- package/i18n/ar-SA/pages/importCourse.ts +13 -0
- package/i18n/ar-SA/pages/index.ts +15 -0
- package/i18n/ar-SA/pages/login/index.ts +9 -0
- package/i18n/ar-SA/pages/login/lti.ts +23 -0
- package/i18n/ar-SA/pages/login/saml.ts +7 -0
- package/i18n/ar-SA/pages/login/scorm.ts +28 -0
- package/i18n/ar-SA/pages/vendor.ts +11 -0
- package/i18n/ar-SA/shared/content_blocks.ts +9 -0
- package/i18n/ar-SA/shared/error.ts +9 -0
- package/i18n/ar-SA/shared/file.ts +5 -0
- package/i18n/ar-SA/shared/index.ts +17 -0
- package/i18n/ar-SA/shared/menu.ts +3 -0
- package/i18n/ar-SA/shared/notification.ts +14 -0
- package/i18n/ar-SA/shared/permission.ts +52 -0
- package/i18n/ar-SA/shared/settings.ts +9 -0
- package/i18n/en-US/components/content/blocks/action_panel/index.ts +2 -0
- package/i18n/en-US/components/content/blocks/action_panel/transform_activity.ts +8 -0
- package/i18n/en-US/components/content/blocks/action_panel/transform_block.ts +1 -1
- package/i18n/en-US/components/content/blocks/external_integration/lti_consumer.ts +1 -0
- package/i18n/en-US/components/integration/job.ts +2 -0
- package/i18n/en-US/components/navigation/integrations.ts +1 -0
- package/i18n/en-US/components/settings/external_integration/lti_consumer.ts +2 -0
- package/i18n/en-US/pages/admin/index.ts +5 -0
- package/i18n/en-US/pages/admin/translateCourse.ts +68 -0
- package/i18n/en-US/pages/index.ts +2 -0
- package/i18n/es-ES/components/content/blocks/action_panel/index.ts +2 -0
- package/i18n/es-ES/components/content/blocks/action_panel/transform_activity.ts +8 -0
- package/i18n/es-ES/components/content/blocks/action_panel/transform_block.ts +1 -1
- package/i18n/es-ES/components/content/blocks/external_integration/lti_consumer.ts +8 -7
- package/i18n/es-ES/components/integration/job.ts +2 -0
- package/i18n/es-ES/components/navigation/integrations.ts +1 -0
- package/i18n/es-ES/components/settings/external_integration/lti_consumer.ts +3 -0
- package/i18n/es-ES/pages/admin/index.ts +5 -0
- package/i18n/es-ES/pages/admin/translateCourse.ts +68 -0
- package/i18n/es-ES/pages/index.ts +2 -0
- package/i18n/fr-FR/components/ai_agent/chat.ts +20 -0
- package/i18n/fr-FR/components/ai_agent/index.ts +5 -0
- package/i18n/fr-FR/components/content/blocks/action_panel/index.ts +5 -0
- package/i18n/fr-FR/components/content/blocks/action_panel/transform_block.ts +9 -0
- package/i18n/fr-FR/components/content/blocks/external_integration/index.ts +5 -0
- package/i18n/fr-FR/components/content/blocks/external_integration/lti_consumer.ts +17 -0
- package/i18n/fr-FR/components/content/blocks/index.ts +7 -0
- package/i18n/fr-FR/components/content/index.ts +5 -0
- package/i18n/fr-FR/components/external_integration/driver/lti1p1.ts +17 -0
- package/i18n/fr-FR/components/external_integration/driver/lti1p3.ts +25 -0
- package/i18n/fr-FR/components/external_integration/driver/scorm.ts +14 -0
- package/i18n/fr-FR/components/external_integration/index.ts +36 -0
- package/i18n/fr-FR/components/external_integration/provider_target.ts +9 -0
- package/i18n/fr-FR/components/file_import/index.ts +5 -0
- package/i18n/fr-FR/components/file_import/resourcespace.ts +4 -0
- package/i18n/fr-FR/components/index.ts +19 -0
- package/i18n/fr-FR/components/integration/driver.ts +67 -0
- package/i18n/fr-FR/components/integration/index.ts +9 -0
- package/i18n/fr-FR/components/integration/job.ts +25 -0
- package/i18n/fr-FR/components/integration/job_log.ts +24 -0
- package/i18n/fr-FR/components/llm/blooms.ts +15 -0
- package/i18n/fr-FR/components/llm/content_selector.ts +3 -0
- package/i18n/fr-FR/components/llm/generate_content/fake_text_stream.ts +62 -0
- package/i18n/fr-FR/components/llm/generate_content/generate_questions.ts +92 -0
- package/i18n/fr-FR/components/llm/generate_content/index.ts +8 -0
- package/i18n/fr-FR/components/llm/index.ts +10 -0
- package/i18n/fr-FR/components/navigation/index.ts +5 -0
- package/i18n/fr-FR/components/navigation/integrations.ts +9 -0
- package/i18n/fr-FR/components/settings/external_integration/index.ts +5 -0
- package/i18n/fr-FR/components/settings/external_integration/lti_consumer.ts +10 -0
- package/i18n/fr-FR/components/settings/index.ts +5 -0
- package/i18n/fr-FR/index.ts +16 -0
- package/i18n/fr-FR/modules/index.ts +5 -0
- package/i18n/fr-FR/pages/admin/index.ts +5 -0
- package/i18n/fr-FR/pages/admin/translateCourse.ts +68 -0
- package/i18n/fr-FR/pages/course/external_integration/index.ts +6 -0
- package/i18n/fr-FR/pages/course/index.ts +5 -0
- package/i18n/fr-FR/pages/importContent.ts +3 -0
- package/i18n/fr-FR/pages/importCourse.ts +13 -0
- package/i18n/fr-FR/pages/index.ts +15 -0
- package/i18n/fr-FR/pages/login/index.ts +9 -0
- package/i18n/fr-FR/pages/login/lti.ts +23 -0
- package/i18n/fr-FR/pages/login/saml.ts +7 -0
- package/i18n/fr-FR/pages/login/scorm.ts +28 -0
- package/i18n/fr-FR/pages/vendor.ts +11 -0
- package/i18n/fr-FR/shared/content_blocks.ts +9 -0
- package/i18n/fr-FR/shared/error.ts +9 -0
- package/i18n/fr-FR/shared/file.ts +5 -0
- package/i18n/fr-FR/shared/index.ts +17 -0
- package/i18n/fr-FR/shared/menu.ts +3 -0
- package/i18n/fr-FR/shared/notification.ts +14 -0
- package/i18n/fr-FR/shared/permission.ts +52 -0
- package/i18n/fr-FR/shared/settings.ts +9 -0
- package/i18n/index.ts +4 -0
- package/i18n/sv-SE/components/content/blocks/action_panel/index.ts +2 -0
- package/i18n/sv-SE/components/content/blocks/action_panel/transform_activity.ts +8 -0
- package/i18n/sv-SE/components/content/blocks/action_panel/transform_block.ts +1 -1
- package/i18n/sv-SE/components/content/blocks/external_integration/lti_consumer.ts +9 -8
- package/i18n/sv-SE/components/integration/job.ts +6 -4
- package/i18n/sv-SE/components/navigation/integrations.ts +1 -0
- package/i18n/sv-SE/components/settings/external_integration/lti_consumer.ts +3 -0
- package/i18n/sv-SE/pages/admin/index.ts +5 -0
- package/i18n/sv-SE/pages/admin/translateCourse.ts +68 -0
- package/i18n/sv-SE/pages/index.ts +2 -0
- package/package.json +1 -1
- package/pages/admin/translateCourse.vue +81 -0
- package/plugin.js +32 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
title: 'LTI Link',
|
|
3
|
+
instructions:
|
|
4
|
+
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam fringilla ipsum eget ante tempus blandit. Maecenas vel massa\n' +
|
|
5
|
+
'nec tellus vestibulum porttitor non a enim.',
|
|
6
|
+
launch: 'Launch',
|
|
7
|
+
goodbye: 'goodbye',
|
|
8
|
+
launch_in_new_window: 'launch {0} in new tab',
|
|
9
|
+
launch_in_modal: 'launch {0} in modal',
|
|
10
|
+
configure_warning:
|
|
11
|
+
'Select an available LTI link to get started. Then, configure the desired launch type.',
|
|
12
|
+
no_access:
|
|
13
|
+
'You do not have permissions to launch this link. Please contact your system administrator.',
|
|
14
|
+
missing_tool: 'The tool id {0} is missing',
|
|
15
|
+
unknown_error: 'Something went wrong! Could not launch this link!',
|
|
16
|
+
link_disabled: 'Link disabled',
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
key: 'Key',
|
|
3
|
+
secret: 'Secret',
|
|
4
|
+
key_auto: 'Key (Autogenerated)',
|
|
5
|
+
secret_auto: 'Secret (Autogenerated)',
|
|
6
|
+
parameter_name: 'Custom Parameter Name',
|
|
7
|
+
value: 'Value',
|
|
8
|
+
auto_key: 'Leave empty for autogenerated key',
|
|
9
|
+
auto_secret: 'Leave empty for autogenerated secret',
|
|
10
|
+
change_key: 'Change Key',
|
|
11
|
+
change_secret: 'Change Secret',
|
|
12
|
+
new_key: 'New Key',
|
|
13
|
+
new_secret: 'New Secret',
|
|
14
|
+
new: 'New LTI Link',
|
|
15
|
+
edit: 'Edit LTI Link',
|
|
16
|
+
edit_display: 'Edit',
|
|
17
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
key: 'Key',
|
|
3
|
+
issuer: 'Issuer',
|
|
4
|
+
tool_public_keyset_url: 'Tool Keyset Url',
|
|
5
|
+
tool_oidc_auth_endpoint: 'Tool OpenID Connect Login Endpoint',
|
|
6
|
+
launch_url: 'Launch / Redirect Url',
|
|
7
|
+
login_hint: 'login hint',
|
|
8
|
+
platform_id: 'Platform Identifier',
|
|
9
|
+
platform_name: 'Platform Name',
|
|
10
|
+
platform_public_keyset_url: 'Platform Keyset Url',
|
|
11
|
+
platform_oidc_auth_endpoint: 'Platform OpenID Connect Endpoint',
|
|
12
|
+
platform_oauth2_access_token_url: 'Platform OAuth2 Access Token URL',
|
|
13
|
+
platform_oauth2_audience: 'Platform Oauth2 audience',
|
|
14
|
+
tool_client_id: 'Tool Client ID',
|
|
15
|
+
platform_deployment_id: 'Deployment ID',
|
|
16
|
+
disabled_fields_in_new_tool:
|
|
17
|
+
'The below information will be provided by the host LMS after this link is initially created.',
|
|
18
|
+
enable_button_feedback:
|
|
19
|
+
'Link can only be enabled once platform client identifier and and keyset urls are set !',
|
|
20
|
+
parameter_name: 'Custom Parameter Name',
|
|
21
|
+
value: 'Value',
|
|
22
|
+
new: 'New LTI Link',
|
|
23
|
+
edit: 'Edit LTI Link',
|
|
24
|
+
view: 'View LTI link details',
|
|
25
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
download_package: 'Download Package',
|
|
3
|
+
new: 'New Scorm Package',
|
|
4
|
+
edit: 'Edit Scorm Package',
|
|
5
|
+
edit_display: 'Edit',
|
|
6
|
+
version: 'SCORM Version',
|
|
7
|
+
has_mastery_score: 'Apply SCORM mastery score',
|
|
8
|
+
mastery_score: 'SCORM mastery score',
|
|
9
|
+
anonymize_users: 'Anonymize SCORM users',
|
|
10
|
+
email_prompt: 'Prompt for real email address on initial access',
|
|
11
|
+
incomplete_until_passed:
|
|
12
|
+
'Set SCO status=incomplete until the student passes?',
|
|
13
|
+
compress_cmi_suspend_data: 'Compress cmi.suspend_data in the partner LMS',
|
|
14
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import lti1p1 from './driver/lti1p1'
|
|
2
|
+
import lti1p3 from './driver/lti1p3'
|
|
3
|
+
import scorm from './driver/scorm'
|
|
4
|
+
import providerTarget from './provider_target'
|
|
5
|
+
export default {
|
|
6
|
+
driver: { lti1p1, lti1p3, scorm },
|
|
7
|
+
provider_target: providerTarget,
|
|
8
|
+
|
|
9
|
+
provider_panel_title:
|
|
10
|
+
'Provider (users incoming to LearningEdge from another system)',
|
|
11
|
+
consumer_panel_title:
|
|
12
|
+
'Consumer (users outgoing from LearningEdge to another system)',
|
|
13
|
+
|
|
14
|
+
target: 'Target',
|
|
15
|
+
target_url: 'Target Url',
|
|
16
|
+
launch_url: 'Launch Url',
|
|
17
|
+
security_level: 'Security Level',
|
|
18
|
+
version: 'Version',
|
|
19
|
+
|
|
20
|
+
send_grades: 'Send grades to host LMS',
|
|
21
|
+
grade_sync: 'Grade Sync',
|
|
22
|
+
provider: 'Provider',
|
|
23
|
+
consumer: 'Consumer',
|
|
24
|
+
|
|
25
|
+
role_map_panel: 'Role map',
|
|
26
|
+
role_in_host: 'Role in Host LMS',
|
|
27
|
+
role_in_local: 'Role in Windward',
|
|
28
|
+
remote_role: 'Remote Role name',
|
|
29
|
+
map_to_role: 'Map to Windward Role',
|
|
30
|
+
delete_role_map_item: 'Delete role map item',
|
|
31
|
+
add_role_map_item: 'Add role map item',
|
|
32
|
+
role_map_instructions:
|
|
33
|
+
'Only add roles to the below map if the host LMS uses different role names that you want to elevated permissions. Eg "Mentor" that you want to elevate to "External Instructor"',
|
|
34
|
+
role_map_warning:
|
|
35
|
+
'Only add roles to the below map if the host LMS uses different role names that you want to elevated permissions. Eg "Mentor" that you want to elevate to "External Instructor"',
|
|
36
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
name: 'Target Name',
|
|
3
|
+
link_to: 'Link To',
|
|
4
|
+
included: 'Included',
|
|
5
|
+
whole_course: 'Whole Course',
|
|
6
|
+
whole_course_page: 'Whole Course Choose Landing Page',
|
|
7
|
+
content_with_children: 'Content with Child Pages',
|
|
8
|
+
content_no_children: 'Single Content Page',
|
|
9
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import content from './content'
|
|
2
|
+
import settings from './settings'
|
|
3
|
+
import navigation from './navigation'
|
|
4
|
+
import integration from './integration'
|
|
5
|
+
import externalIntegration from './external_integration'
|
|
6
|
+
import fileImport from './file_import'
|
|
7
|
+
import aiAgent from './ai_agent'
|
|
8
|
+
import llm from './llm'
|
|
9
|
+
|
|
10
|
+
export default {
|
|
11
|
+
content,
|
|
12
|
+
settings,
|
|
13
|
+
navigation,
|
|
14
|
+
integration,
|
|
15
|
+
llm,
|
|
16
|
+
external_integration: externalIntegration,
|
|
17
|
+
file_import: fileImport,
|
|
18
|
+
ai_agent: aiAgent,
|
|
19
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
atutor: {
|
|
3
|
+
manage_dialog_title: 'Manage ATutor Integration',
|
|
4
|
+
url: 'ATutor API Url',
|
|
5
|
+
url_hint: 'Eg: https://courses.mindedgeonline.com',
|
|
6
|
+
username: 'Username',
|
|
7
|
+
password: 'Password',
|
|
8
|
+
aws_secure_url: 'AWS CDN Url',
|
|
9
|
+
aws_secure_url_hint: 'Eg: https://cdn-d.mindedgeonline.com',
|
|
10
|
+
},
|
|
11
|
+
remove_slash: 'Remove / at end of url',
|
|
12
|
+
atutor_wgu: {
|
|
13
|
+
manage_dialog_title: 'Manage ATutor WGU Integration',
|
|
14
|
+
},
|
|
15
|
+
canvas: {
|
|
16
|
+
manage_dialog_title: 'Manage Canvas Integration',
|
|
17
|
+
},
|
|
18
|
+
blackboard_ultra: {
|
|
19
|
+
manage_dialog_title: 'Manage Blackboard Ultra Integration',
|
|
20
|
+
},
|
|
21
|
+
desire2learn: {
|
|
22
|
+
manage_dialog_title: 'Manage Desire2Learn Integration',
|
|
23
|
+
},
|
|
24
|
+
moodle: {
|
|
25
|
+
manage_dialog_title: 'Manage Moodle Integration',
|
|
26
|
+
},
|
|
27
|
+
google_classroom: {
|
|
28
|
+
manage_dialog_title: 'Manage Google Classroom Integration',
|
|
29
|
+
},
|
|
30
|
+
resourcespace: {
|
|
31
|
+
manage_dialog_title: 'Manage Resourcespace Integration',
|
|
32
|
+
url: 'Resourcespace Url',
|
|
33
|
+
url_hint: 'Eg: https://resourcespace.mindedgeuniversity.com',
|
|
34
|
+
username: 'Username',
|
|
35
|
+
key: 'API Key',
|
|
36
|
+
},
|
|
37
|
+
saml_sso: {
|
|
38
|
+
manage_dialog_title: 'Manage SAML SSO Integration',
|
|
39
|
+
idp_entity_id: 'Identity Provider Entity ID',
|
|
40
|
+
idp_entity_id_hint: 'The unique identifier for your IdP (e.g., http://www.okta.com/exk1fxphPNZPCOB3v0g3)',
|
|
41
|
+
idp_sso_url: 'Single Sign-On URL',
|
|
42
|
+
idp_sso_url_hint: 'The URL where users will be redirected for authentication',
|
|
43
|
+
idp_slo_url: 'Single Logout URL (Optional)',
|
|
44
|
+
idp_slo_url_hint: 'The URL for logging out from the IdP',
|
|
45
|
+
idp_x509_cert: 'X.509 Certificate',
|
|
46
|
+
idp_x509_cert_hint: 'Paste the certificate content from your IdP metadata (without BEGIN/END lines)',
|
|
47
|
+
sp_details: 'Service Provider Details',
|
|
48
|
+
sp_details_description: 'Provide these details to your Identity Provider administrator:',
|
|
49
|
+
cert_stored: 'Certificate securely stored',
|
|
50
|
+
button_settings: 'Login Button Settings',
|
|
51
|
+
button_label: 'Button Label',
|
|
52
|
+
button_label_hint: 'Text to display on the SSO login button',
|
|
53
|
+
button_label_default: 'Sign in with SSO',
|
|
54
|
+
button_icon: 'Button Icon',
|
|
55
|
+
button_icon_hint: 'Material Design Icon name (e.g., mdi-login, mdi-account-key)',
|
|
56
|
+
sp_entity_id_label: 'SP Entity ID',
|
|
57
|
+
acs_url_label: 'ACS URL',
|
|
58
|
+
slo_url_label: 'SLO URL',
|
|
59
|
+
},
|
|
60
|
+
enabled: 'Integration Enabled',
|
|
61
|
+
disabled: 'Integration Disabled',
|
|
62
|
+
ssl_enabled: 'SSL Enabled (Should be enabled for production)',
|
|
63
|
+
connection_error: 'Connection Error',
|
|
64
|
+
test_connection: 'Test Connection',
|
|
65
|
+
id: 'Id',
|
|
66
|
+
base_url: 'Base Url',
|
|
67
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
recent_jobs_title: 'Recent Import Jobs',
|
|
3
|
+
job_completed: 'Job Completed',
|
|
4
|
+
no_recent_jobs: 'No recent jobs',
|
|
5
|
+
job_id: 'Job Id',
|
|
6
|
+
vendor_name: 'Vendor Name',
|
|
7
|
+
vendor_name_translation: 'Translation',
|
|
8
|
+
status: 'Status',
|
|
9
|
+
progress: 'Progress',
|
|
10
|
+
created: 'Created',
|
|
11
|
+
details: 'Details',
|
|
12
|
+
started: 'Date started',
|
|
13
|
+
job_details: {
|
|
14
|
+
none: 'No details available',
|
|
15
|
+
import_course: "Importing Course Id {0} '{1}'",
|
|
16
|
+
translate_course: 'Translating course {0} to locale {1}',
|
|
17
|
+
},
|
|
18
|
+
job_status: {
|
|
19
|
+
not_started: 'Not Started',
|
|
20
|
+
started: 'Started',
|
|
21
|
+
in_progress: 'In Progress',
|
|
22
|
+
failed: 'Failed',
|
|
23
|
+
completed: 'Completed',
|
|
24
|
+
},
|
|
25
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
view_log: 'View Log',
|
|
3
|
+
view_course_import_log: 'View Course Import Log',
|
|
4
|
+
no_results: 'No results found',
|
|
5
|
+
remote_course_id: 'Remote Course Id',
|
|
6
|
+
remote_content_id: 'Remtote Content Id',
|
|
7
|
+
remote_content_name: 'Remote Content Name',
|
|
8
|
+
remote_url: 'Remote Url',
|
|
9
|
+
remote_code: 'Remote Code',
|
|
10
|
+
remote_sso: 'Remote SSO',
|
|
11
|
+
log_level: 'Log Level',
|
|
12
|
+
level_prefix: 'level',
|
|
13
|
+
search: {
|
|
14
|
+
level_info: 'Info Messages',
|
|
15
|
+
level_warning: 'Warning Messages',
|
|
16
|
+
level_error: 'Error Messages',
|
|
17
|
+
file_missing_error: 'File Missing',
|
|
18
|
+
data_error: 'Unexpected Data Error',
|
|
19
|
+
converted_file: 'File Converted',
|
|
20
|
+
converted_file_error: 'File Conversion Error',
|
|
21
|
+
parse_error: 'Content Block Parsing Error',
|
|
22
|
+
linking_error: 'Content Linking Error',
|
|
23
|
+
},
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
blooms_taxonomy: "Bloom's Taxonomy Level",
|
|
3
|
+
none: 'None selected',
|
|
4
|
+
remember: 'Remember',
|
|
5
|
+
understand: 'Understand',
|
|
6
|
+
apply: 'Apply',
|
|
7
|
+
analyze: 'Analyze',
|
|
8
|
+
evaluate: 'Evaluate',
|
|
9
|
+
errors: {
|
|
10
|
+
insufficient_content_blooms:
|
|
11
|
+
'Insufficient content to generate quality questions at the {bloomsLevel} level.',
|
|
12
|
+
insufficient_content_blooms_support:
|
|
13
|
+
'Please add more detailed text, examples, or explanations to this section. We recommend at least {minimumRequired} words of relevant content to generate appropriate questions at this level.',
|
|
14
|
+
},
|
|
15
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
options: [
|
|
3
|
+
'Navigating neural network',
|
|
4
|
+
'Consulting the Oracle',
|
|
5
|
+
'Consulting the hivemind',
|
|
6
|
+
'Thinking...',
|
|
7
|
+
'Generating Reponse',
|
|
8
|
+
'Traversing AI Mindscape',
|
|
9
|
+
'Synthesizing response',
|
|
10
|
+
'Compiling best-fit solution',
|
|
11
|
+
'Evaluating probabilities',
|
|
12
|
+
'Reticulating splines',
|
|
13
|
+
'Silicon thoughts in progress...',
|
|
14
|
+
'Arranging zeros and ones',
|
|
15
|
+
'Accessing the cumulus',
|
|
16
|
+
'Artificially looking smart',
|
|
17
|
+
'Contemplating the infinite',
|
|
18
|
+
'Translating bytes',
|
|
19
|
+
'Convincing the data',
|
|
20
|
+
'Initiating artificual logic',
|
|
21
|
+
'Thoughts Buffering...',
|
|
22
|
+
'Checking well of artificial wisdom',
|
|
23
|
+
'Circling back on recursive notes.',
|
|
24
|
+
'Wrestling GPU Market',
|
|
25
|
+
'Setting power to 1.21 Gigawatts',
|
|
26
|
+
'Fishing data from the stream',
|
|
27
|
+
'Consulting stars',
|
|
28
|
+
"Checking Schrödinger's cat",
|
|
29
|
+
'Negotiating with coffee machine',
|
|
30
|
+
'Orbiting the question. Landing soon',
|
|
31
|
+
'Dusting off ancient scrolls',
|
|
32
|
+
'Talking to the ethernet ports',
|
|
33
|
+
'Spinning up hamster wheels',
|
|
34
|
+
"The hamster's getting tired",
|
|
35
|
+
'Decoding cosmic typo',
|
|
36
|
+
'Syncing vibes',
|
|
37
|
+
'Herding electrons',
|
|
38
|
+
'Searching under couch for answers',
|
|
39
|
+
'Interrogating data',
|
|
40
|
+
'Recalibrating electron flux',
|
|
41
|
+
'Arguing with autocorrect',
|
|
42
|
+
'Asking Clippy for answers',
|
|
43
|
+
'Calculating dramatic pause...',
|
|
44
|
+
'Shaking magic 8 ball',
|
|
45
|
+
'Patching plot holes',
|
|
46
|
+
'Rebooting the router...',
|
|
47
|
+
'Turning it off and on again',
|
|
48
|
+
'Almost there. Probably. Maybe.',
|
|
49
|
+
'Flipping digital coin',
|
|
50
|
+
'Thinking outside simulated box',
|
|
51
|
+
'Adding sauce to spaghetti code',
|
|
52
|
+
'Herding digital cats',
|
|
53
|
+
'Defragmenting decisions',
|
|
54
|
+
'Listening to dial-up noises',
|
|
55
|
+
'Encrypting awkward silence',
|
|
56
|
+
'Asking toaster for advice',
|
|
57
|
+
'Charging joke generator',
|
|
58
|
+
'Polishing ones and zeroes',
|
|
59
|
+
'Stretching virtual legs',
|
|
60
|
+
'Consulting mood ring logs',
|
|
61
|
+
],
|
|
62
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
errors: {
|
|
3
|
+
default: 'Could not generate question from provided content.',
|
|
4
|
+
default_support:
|
|
5
|
+
'Please try again or contact support if the issue persists.',
|
|
6
|
+
|
|
7
|
+
insufficient_content: 'More content needed to generate questions.',
|
|
8
|
+
insufficient_content_support:
|
|
9
|
+
'Please add more text, examples, or explanations to this section. We recommend at least 50 words of relevant content to generate appropriate questions.',
|
|
10
|
+
|
|
11
|
+
insufficient_content_dynamic:
|
|
12
|
+
'Insufficient content to generate quality questions.',
|
|
13
|
+
insufficient_content_dynamic_support:
|
|
14
|
+
'Please add more detailed text, examples, or explanations to this section. We recommend at least {minimumRequired} words of relevant content to generate appropriate questions.',
|
|
15
|
+
|
|
16
|
+
content_mismatch: "Content doesn't match question type.",
|
|
17
|
+
content_mismatch_support:
|
|
18
|
+
"The current content isn't suitable for this type of question. Consider adding more specific examples, numerical data, or comparable items depending on your desired question type.",
|
|
19
|
+
|
|
20
|
+
content_mismatch_bucket_game: 'Content not suitable for bucket games.',
|
|
21
|
+
content_mismatch_bucket_game_support:
|
|
22
|
+
'Consider adding content with clear categories and multiple sortable items that can be grouped into 2-4 distinct buckets.',
|
|
23
|
+
|
|
24
|
+
content_mismatch_matching_game:
|
|
25
|
+
'Content not suitable for matching games.',
|
|
26
|
+
content_mismatch_matching_game_support:
|
|
27
|
+
'Consider adding content that explicitly defines relationships between terms, concepts, or categories that students can match.',
|
|
28
|
+
|
|
29
|
+
content_mismatch_sorting_game:
|
|
30
|
+
'Content not suitable for sorting games.',
|
|
31
|
+
content_mismatch_sorting_game_support:
|
|
32
|
+
'Consider adding content with sequential steps, chronological events, or items that have a clear logical order for students to arrange.',
|
|
33
|
+
|
|
34
|
+
content_mismatch_scenario_game:
|
|
35
|
+
'Content not suitable for scenario games.',
|
|
36
|
+
content_mismatch_scenario_game_support:
|
|
37
|
+
'Consider adding content that describes concepts, processes, or principles that can be applied in real-world scenarios.',
|
|
38
|
+
|
|
39
|
+
content_mismatch_word_jumble:
|
|
40
|
+
'Content not suitable for word jumble games.',
|
|
41
|
+
content_mismatch_word_jumble_support:
|
|
42
|
+
'Consider adding content with clear vocabulary terms, glossary words, or key concepts that can be unscrambled.',
|
|
43
|
+
|
|
44
|
+
content_mismatch_crossword:
|
|
45
|
+
'Content not suitable for crossword games.',
|
|
46
|
+
content_mismatch_crossword_support:
|
|
47
|
+
'Consider adding content with glossary terms or concise key vocabulary that can be turned into crossword words with short clues.',
|
|
48
|
+
|
|
49
|
+
content_mismatch_multiple_choice:
|
|
50
|
+
'Content not suitable for multiple-choice questions.',
|
|
51
|
+
content_mismatch_multiple_choice_support:
|
|
52
|
+
'Consider adding clear expository text with distinct concepts, definitions, or examples that support question and distractor creation.',
|
|
53
|
+
|
|
54
|
+
inputs_unrelated: 'Your question or correct answer is unrelated to this page\'s content.',
|
|
55
|
+
inputs_unrelated_support:
|
|
56
|
+
'Provide a question and/or correct answer that clearly relates to the selected page. Use terms, facts, or examples present on the page so the assistant can complete the remaining inputs.',
|
|
57
|
+
|
|
58
|
+
character_limit:
|
|
59
|
+
'An error occurred while generating content. Try generating again.',
|
|
60
|
+
character_limit_detailed:
|
|
61
|
+
'The {field} exceeds the {limit} character limit (currently {actual} characters). Try generating again with shorter content.',
|
|
62
|
+
|
|
63
|
+
llm_unavailable: 'Question generation temporarily unavailable.',
|
|
64
|
+
llm_unavailable_support:
|
|
65
|
+
"We're unable to connect to our AI service at the moment. Please try again in a few minutes or contact support if the issue persists.",
|
|
66
|
+
|
|
67
|
+
technical: 'Unable to process request.',
|
|
68
|
+
technical_support:
|
|
69
|
+
'Something went wrong on our end. Please try again or contact support if this continues. Reference code: [ERROR_CODE]',
|
|
70
|
+
},
|
|
71
|
+
button_label: 'Generate Question',
|
|
72
|
+
button_label_flashcard: 'Generate Flashcards',
|
|
73
|
+
button_label_bucket_game: 'Generate Buckets',
|
|
74
|
+
button_label_matching_game: 'Generate Matches',
|
|
75
|
+
button_label_sorting_game: 'Generate Items',
|
|
76
|
+
button_label_scenario_game: 'Generate Scenarios',
|
|
77
|
+
button_label_word_jumble: 'Generate Items',
|
|
78
|
+
button_label_seven_strikes: 'Generate Items',
|
|
79
|
+
button_label_multiple_choice: 'Generate Questions',
|
|
80
|
+
button_label_crossword: 'Generate Items',
|
|
81
|
+
|
|
82
|
+
replace_existing_flashcard: 'Replace existing flashcards',
|
|
83
|
+
replace_existing_bucket_game: 'Replace existing buckets',
|
|
84
|
+
replace_existing_matching_game: 'Replace Existing Matches',
|
|
85
|
+
replace_existing_sorting_game: 'Replace existing items',
|
|
86
|
+
replace_existing_word_jumble: 'Replace existing words',
|
|
87
|
+
replace_existing_multiple_choice: 'Replace existing questions',
|
|
88
|
+
replace_existing_crossword: 'Replace existing crossword items',
|
|
89
|
+
replace_existing: 'Replace Existing',
|
|
90
|
+
|
|
91
|
+
replaces_content: 'Replaces current block content.',
|
|
92
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import generateContent from './generate_content'
|
|
2
|
+
import blooms from './blooms'
|
|
3
|
+
import contentSelector from './content_selector'
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
ai_assistance: 'AI Assistance',
|
|
7
|
+
generate_content: generateContent,
|
|
8
|
+
blooms,
|
|
9
|
+
content_selector: contentSelector,
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
title: 'Integrations',
|
|
3
|
+
manage_integrations: 'Manage Integration Vendors',
|
|
4
|
+
import_course: 'Import Courses',
|
|
5
|
+
translate_course: 'Translate Course',
|
|
6
|
+
import_content: 'Import Content & Files',
|
|
7
|
+
manage_lti: 'Manage LTI Connections',
|
|
8
|
+
manage_lti_links: 'Manage LTI Links',
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
title: 'Title',
|
|
3
|
+
instructions: 'Instructions',
|
|
4
|
+
launch_type: 'Launch Type',
|
|
5
|
+
launch_type_new_window: 'New Window',
|
|
6
|
+
launch_type_inline_frame: 'Inline Frame',
|
|
7
|
+
launch_type_modal: 'Modal',
|
|
8
|
+
link_select: 'Select a Link:',
|
|
9
|
+
link_disabled: 'Link Disabled',
|
|
10
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import pages from './pages/index'
|
|
2
|
+
import components from './components/index'
|
|
3
|
+
import shared from './shared/index'
|
|
4
|
+
import modules from './modules/index'
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
windward: {
|
|
8
|
+
integrations: {
|
|
9
|
+
name: 'Windward Plugin Integrations',
|
|
10
|
+
pages,
|
|
11
|
+
components,
|
|
12
|
+
shared,
|
|
13
|
+
modules,
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
tab_title: 'Translate Course',
|
|
3
|
+
recent_jobs_tab_title: 'Recent Translation Jobs',
|
|
4
|
+
title: 'Translate Course',
|
|
5
|
+
subtitle: 'Select a source language, course, and target language to create a translated version',
|
|
6
|
+
source_language: 'Source Language',
|
|
7
|
+
course: 'Course',
|
|
8
|
+
target_language: 'Target Language',
|
|
9
|
+
send_email_notification: 'Send email notification on completion',
|
|
10
|
+
summary_title: 'Translation Summary',
|
|
11
|
+
source_course: 'Source Course:',
|
|
12
|
+
source_language_label: 'Source Language:',
|
|
13
|
+
target_language_label: 'Target Language:',
|
|
14
|
+
reset_button: 'Reset',
|
|
15
|
+
start_translation_button: 'Start Translation',
|
|
16
|
+
no_courses_found: 'No courses found in {0}',
|
|
17
|
+
no_owner: 'No owner',
|
|
18
|
+
|
|
19
|
+
// Success/Error messages
|
|
20
|
+
translation_queued: 'Translation job queued! Check Recent Translations for progress.',
|
|
21
|
+
translation_failed: 'Failed to start translation. Please try again.',
|
|
22
|
+
locale_load_failed: 'Failed to load available languages',
|
|
23
|
+
courses_load_failed: 'Failed to load courses for selected language',
|
|
24
|
+
|
|
25
|
+
// Retranslation Mode Dialog
|
|
26
|
+
retranslation_dialog: {
|
|
27
|
+
title: 'Translation Already Exists',
|
|
28
|
+
existing_translation_info: 'A translation for <strong>{0}</strong> already exists.',
|
|
29
|
+
choose_how_to_proceed: 'Choose how to proceed:',
|
|
30
|
+
|
|
31
|
+
// Incremental mode
|
|
32
|
+
incremental_title: '✓ Update Changed Blocks Only',
|
|
33
|
+
incremental_subtitle: '(Recommended)',
|
|
34
|
+
incremental_description: 'Only retranslate blocks that have been modified since the last translation.',
|
|
35
|
+
incremental_safe_note: 'Safe: Preserves existing course and translations.',
|
|
36
|
+
|
|
37
|
+
// Full mode
|
|
38
|
+
full_title: '⚠️ Delete & Retranslate Everything',
|
|
39
|
+
full_warning: 'Warning:',
|
|
40
|
+
full_description: 'This will permanently delete the existing translated course. Use only if you have made major restructuring changes.',
|
|
41
|
+
|
|
42
|
+
cancel_button: 'Cancel',
|
|
43
|
+
continue_button: 'Continue',
|
|
44
|
+
},
|
|
45
|
+
|
|
46
|
+
// Delete Confirmation Dialog
|
|
47
|
+
delete_confirm_dialog: {
|
|
48
|
+
title: 'Confirm Course Deletion',
|
|
49
|
+
cannot_undo: 'This action cannot be undone!',
|
|
50
|
+
about_to_delete: 'You are about to permanently delete the following course:',
|
|
51
|
+
course_id: 'Course ID:',
|
|
52
|
+
will_delete_title: 'This will delete:',
|
|
53
|
+
will_delete_content: 'All course content and blocks',
|
|
54
|
+
will_delete_assessments: 'All assessments and questions',
|
|
55
|
+
will_delete_files: 'File assets and media',
|
|
56
|
+
will_delete_progress: 'User progress and state data',
|
|
57
|
+
are_you_sure: 'Are you absolutely sure you want to proceed?',
|
|
58
|
+
type_delete_to_confirm: "Type 'DELETE' to confirm",
|
|
59
|
+
type_exactly_delete: 'Type exactly: DELETE',
|
|
60
|
+
cancel_button: 'Cancel',
|
|
61
|
+
confirm_button: 'Yes, Delete & Retranslate',
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
// Success messages for retranslation
|
|
65
|
+
full_retranslation_queued: 'Full retranslation queued! Existing translation will be deleted and recreated. Check Recent Translations for progress.',
|
|
66
|
+
incremental_retranslation_queued: 'Incremental retranslation queued! Only changed blocks will be updated. Check Recent Translations for progress.',
|
|
67
|
+
retranslation_failed: 'Failed to start retranslation. Please try again.',
|
|
68
|
+
}
|