MOBILE-3757 lang: Remove duplicated userwithid string
parent
ac8cc189f7
commit
70bc246a7f
|
@ -408,7 +408,6 @@
|
|||
"addon.mod_assign.ungroupedusersoptional": "assign",
|
||||
"addon.mod_assign.unlimitedattempts": "assign",
|
||||
"addon.mod_assign.userswhoneedtosubmit": "assign",
|
||||
"addon.mod_assign.userwithid": "local_moodlemobileapp",
|
||||
"addon.mod_assign.viewsubmission": "assign",
|
||||
"addon.mod_assign.warningsubmissiongrademodified": "local_moodlemobileapp",
|
||||
"addon.mod_assign.warningsubmissionmodified": "local_moodlemobileapp",
|
||||
|
@ -1041,7 +1040,6 @@
|
|||
"addon.notes.personalnotes": "notes",
|
||||
"addon.notes.publishstate": "notes",
|
||||
"addon.notes.sitenotes": "notes",
|
||||
"addon.notes.userwithid": "local_moodlemobileapp",
|
||||
"addon.notes.warningnotenotsent": "local_moodlemobileapp",
|
||||
"addon.notifications.errorgetnotifications": "local_moodlemobileapp",
|
||||
"addon.notifications.markallread": "moodle",
|
||||
|
@ -1481,6 +1479,7 @@
|
|||
"core.course.nocontentavailable": "local_moodlemobileapp",
|
||||
"core.course.overriddennotice": "grades",
|
||||
"core.course.refreshcourse": "local_moodlemobileapp",
|
||||
"core.course.section": "moodle",
|
||||
"core.course.sections": "moodle",
|
||||
"core.course.useactivityonbrowser": "local_moodlemobileapp",
|
||||
"core.course.warningmanualcompletionmodified": "local_moodlemobileapp",
|
||||
|
@ -2209,6 +2208,7 @@
|
|||
"core.user.sendemail": "local_moodlemobileapp",
|
||||
"core.user.student": "moodle/defaultcoursestudent",
|
||||
"core.user.teacher": "moodle/noneditingteacher",
|
||||
"core.user.userwithid": "local_moodlemobileapp",
|
||||
"core.user.webpage": "moodle",
|
||||
"core.userdeleted": "moodle",
|
||||
"core.userdetails": "moodle",
|
||||
|
|
|
@ -95,10 +95,9 @@
|
|||
"ungroupedusers": "The setting 'Require group to make submission' is enabled and some users are either not a member of any group, or are a member of more than one group, so are unable to make submissions.",
|
||||
"ungroupedusersoptional": "The setting 'Students submit in groups' is enabled and some users are either not a member of any group, or are a member of more than one group. Please be aware that these students will submit as members of the 'Default group'.",
|
||||
"unlimitedattempts": "Unlimited",
|
||||
"userwithid": "User with ID {{id}}",
|
||||
"userswhoneedtosubmit": "Users who need to submit: {{$a}}",
|
||||
"viewsubmission": "View submission",
|
||||
"warningsubmissionmodified": "The user submission was modified on the site.",
|
||||
"warningsubmissiongrademodified": "The submission grade was modified on the site.",
|
||||
"wordlimit": "Word limit"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,6 +10,5 @@
|
|||
"personalnotes": "Personal notes",
|
||||
"publishstate": "Context",
|
||||
"sitenotes": "Site notes",
|
||||
"userwithid": "User with ID {{id}}",
|
||||
"warningnotenotsent": "Couldn't add note(s) to course {{course}}. {{error}}"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -370,7 +370,7 @@ export class AddonNotesProvider {
|
|||
|
||||
return;
|
||||
}).catch(() => {
|
||||
note.userfullname = Translate.instant('addon.notes.userwithid', { id: note.userid });
|
||||
note.userfullname = Translate.instant('core.user.userwithid', { id: note.userid });
|
||||
}));
|
||||
|
||||
await Promise.all(promises);
|
||||
|
|
Loading…
Reference in New Issue