diff options
author | devianl2 <devianleong@gmail.com> | 2022-02-13 21:07:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-13 21:07:28 +0800 |
commit | 4a71aee0ab56a8450f5791554d06f544f6be1157 (patch) | |
tree | f899aaab754cf6708a823e33179b7167b3a6b079 /resources/lang | |
parent | 88d7940d4db9519c046f8c5375ef092da1daab35 (diff) | |
parent | 4a36318e1ba5b5d50afe0a7991168df26945f52d (diff) |
Merge pull request #11 from KhaledLela/handle_publish_translations3.0.2
Handle publish translations for scorm runtime exceptions handler
Diffstat (limited to 'resources/lang')
-rw-r--r-- | resources/lang/en-US/scorm.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/resources/lang/en-US/scorm.php b/resources/lang/en-US/scorm.php new file mode 100644 index 0000000..07a2c93 --- /dev/null +++ b/resources/lang/en-US/scorm.php @@ -0,0 +1,18 @@ +<?php +return [ + // SCORM archive messages + 'invalid_scorm_archive_message' => 'Invalid SCORM archive.', + 'invalid_scorm_version_message' => 'Invalid SCORM version.', + 'no_sco_in_scorm_archive_message' => 'No items in SCORM archive.', + 'invalid_scorm_data' => 'Invalid SCORM data.', + 'cannot_load_imsmanifest_message' => 'Can not load SCORM manifest.', + 'invalid_scorm_manifest_identifier' => 'Invalid SCORM manifest identifier.', + 'scorm_disk_not_define' => 'SCORM disk not define', + + // SCORM Items/Children messages + 'default_organization_not_found_message' => 'SCORM item default organization not found.', + 'no_organization_found_message' => 'No organization found.', + 'sco_with_no_identifier_message' => 'SCORM item without identifier.', + 'sco_resource_without_href_message' => 'SCORM item resource without entry link.', + 'sco_without_resource_message' => 'SCORM item without resource.' +]; |