Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions assets/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@
"Glossary term saved": "Glossary term saved",
"Could not create glossary term": "Could not create glossary term",
"File type": "File type",
"Delete all terms before import": "Delete all terms before import",
"Update existing terms": "Update existing terms",
"Delete all terms before import.": "Delete all terms before import.",
"Update existing terms.": "Update existing terms.",
"Import": "Import",
"Terms imported succesfully": "Terms imported succesfully",
"Could not import terms": "Could not import terms",
Expand Down Expand Up @@ -685,5 +685,23 @@
"Failed to upload corrections": "Failed to upload corrections",
"Edit submission": "Edit submission",
"Submission updated!": "Submission updated!",
"No assignments available": "No assignments available",
"Move the file": "Move the file",
"Please select a target assignment": "Please select a target assignment",
"Submission moved successfully": "Submission moved successfully",
"Correction uploaded successfully!": "Correction uploaded successfully!",
"Invalid submission": "Invalid submission",
"Invalid resource link ID": "Invalid resource link ID",
"Can not change visibility": "Can not change visibility",
"Visibility updated successfully!": "Visibility updated successfully!",
"No download available": "No download available",
"Are you sure you want to delete this submission?": "Are you sure you want to delete this submission?",
"Submission deleted successfully!": "Submission deleted successfully!",
"Friendly URL": "Friendly URL",
"Definition": "Definition",
"Glossary exported": "Glossary exported",
"Could not export glossary": "Glossary exported",
"Column": "Column",
"Blocks Palette": "Blocks Palette",
"Error message": "Error message"
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Dialog
v-model:visible="visible"
modal
:header="t('Edit Submission')"
:header="t('Edit submission')"
:style="{ width: '500px' }"
@hide="onHide"
>
Expand Down
4 changes: 2 additions & 2 deletions assets/vue/components/assignments/TeacherSubmissionList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
icon="reply-all"
size="normal"
only-icon
:label="t('Correct & Rate')"
:label="t('Correct and rate')"
@click="correctAndRate(data)"
type="success"
/>
Expand Down Expand Up @@ -354,7 +354,7 @@ async function viewSubmission(item) {
} else if (RESOURCE_LINK_DRAFT === resourceLink.visibility) {
resourceLink.visibility = RESOURCE_LINK_PUBLISHED
} else {
notification.showErrorNotification(t("Cannot change visibility"))
notification.showErrorNotification(t("Can not change visibility"))
return
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const repeatTypeOptions = [
{ label: t("Daily"), value: "daily" },
{ label: t("Weekly"), value: "weekly" },
{ label: t("Bi-weekly"), value: "bi-weekly" },
{ label: t("Every X days"), value: "every-x-days" },
{ label: t("Every x days"), value: "every-x-days" },
{ label: t("Monthly, by date"), value: "monthly-by-date" },
]

Expand Down
2 changes: 1 addition & 1 deletion assets/vue/components/coursecategory/Filter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
>
<v-text-field
v-model="item.title"
:label="$t('name')"
:label="$t('Name')"
type="text"
/>
</v-col>
Expand Down
8 changes: 4 additions & 4 deletions assets/vue/components/coursecategory/Form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<v-text-field
v-model="item.title"
:error-messages="nameErrors"
:label="$t('name')"
:label="$t('Name')"
required
@blur="$v.item.title.$touch()"
@input="$v.item.title.$touch()"
Expand All @@ -25,7 +25,7 @@
<v-text-field
v-model="item.code"
:error-messages="codeErrors"
:label="$t('code')"
:label="$t('Code')"
required
@blur="$v.item.code.$touch()"
@input="$v.item.code.$touch()"
Expand Down Expand Up @@ -79,7 +79,7 @@ export default {

has(this.violations, "title") && errors.push(this.violations.title)

!this.$v.item.title.required && errors.push(this.$t("Field is required"))
!this.$v.item.title.required && errors.push(this.$t("Required field"))

return errors
},
Expand All @@ -90,7 +90,7 @@ export default {

has(this.violations, "code") && errors.push(this.violations.code)

!this.$v.item.code.required && errors.push(this.$t("Field is required"))
!this.$v.item.code.required && errors.push(this.$t("Required field"))

return errors
},
Expand Down
2 changes: 1 addition & 1 deletion assets/vue/components/documents/DocumentAudioRecorder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const recordAudio = () => {

const saveAudio = async () => {
if (recordName.value === "") {
recordError.value = t("It is necessary a file name before save recorded audio")
recordError.value = t("A file name is required to save the recorded audio")
return
}

Expand Down
2 changes: 1 addition & 1 deletion assets/vue/components/glossary/GlossaryImportForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<BaseCheckbox
id="terms-delete-all"
v-model="replace"
:label="t('Delete all terms before import')"
:label="t('Delete all terms before import.')"
name="terms-delete-all"
/>

Expand Down
69 changes: 69 additions & 0 deletions translations/messages.en.po
Original file line number Diff line number Diff line change
Expand Up @@ -29014,3 +29014,72 @@ msgstr "No result for keyword %s"

msgid "Results"
msgstr "Results"

msgid "No assignments available"
msgstr "No assignments available"

msgid "Please select a target assignment"
msgstr "Please select a target assignment"

msgid "Submission moved successfully"
msgstr "Submission moved successfully"

msgid "Correction uploaded successfully!"
msgstr "Correction uploaded successfully!"

msgid "Invalid submission"
msgstr "Invalid submission"

msgid "Invalid resource link ID"
msgstr "Invalid resource link ID"

msgid "Can not change visibility"
msgstr "Can not change visibility"

msgid "Visibility updated successfully!"
msgstr "Visibility updated successfully!"

msgid "No download available"
msgstr "No download available"

msgid "Are you sure you want to delete this submission?"
msgstr "Are you sure you want to delete this submission?"

msgid "Submission deleted successfully!"
msgstr "Submission deleted successfully!"

msgid "Friendly URL"
msgstr "Friendly URL"

msgid "Definition"
msgstr "Definition"

msgid "Export format"
msgstr "Export format"

msgid "Glossary exported"
msgstr "Glossary exported"

msgid "Could not export glossary"
msgstr "Could not export glossary"

msgid "Terms imported succesfully"
msgstr "Terms imported succesfully"

msgid "Could not import terms"
msgstr "Could not import terms"

msgid "Could not fetch glossary term"
msgstr "Could not fetch glossary term"

msgid "Glossary term saved"
msgstr "Glossary term saved"

msgid "Could not create glossary term"
msgstr "Could not create glossary term"

msgid "Column"
msgstr "Column"

msgid "Blocks Palette"
msgstr "Blocks Palette"
71 changes: 70 additions & 1 deletion translations/messages.pot
Original file line number Diff line number Diff line change
Expand Up @@ -28638,7 +28638,7 @@ msgstr ""
msgid "Draft"
msgstr ""

msgid "Share with User"
msgid "Share with user"
msgstr ""

msgid "Multilingual"
Expand Down Expand Up @@ -28982,3 +28982,72 @@ msgstr ""

msgid "Results"
msgstr ""

msgid "No assignments available"
msgstr ""

msgid "Please select a target assignment"
msgstr ""

msgid "Submission moved successfully"
msgstr ""

msgid "Correction uploaded successfully!"
msgstr ""

msgid "Invalid submission"
msgstr ""

msgid "Invalid resource link ID"
msgstr ""

msgid "Can not change visibility"
msgstr ""

msgid "Visibility updated successfully!"
msgstr ""

msgid "No download available"
msgstr ""

msgid "Are you sure you want to delete this submission?"
msgstr ""

msgid "Submission deleted successfully!"
msgstr ""

msgid "Friendly URL"
msgstr ""

msgid "Definition"
msgstr ""

msgid "Export format"
msgstr ""

msgid "Glossary exported"
msgstr ""

msgid "Could not export glossary"
msgstr ""

msgid "Terms imported succesfully"
msgstr ""

msgid "Could not import terms"
msgstr ""

msgid "Could not fetch glossary term"
msgstr ""

msgid "Glossary term saved"
msgstr ""

msgid "Could not create glossary term"
msgstr ""

msgid "Column"
msgstr ""

msgid "Blocks Palette"
msgstr ""
Loading