1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-05 08:53:14 +00:00

fix translation

This commit is contained in:
Michael An
2019-04-03 18:01:23 +08:00
parent 1b673b5cd5
commit 523435ca6c
5 changed files with 12 additions and 12 deletions

View File

@@ -128,9 +128,9 @@ class NoticeItem extends React.Component {
notice = notice.replace('{upload_file_link}', uploadFileLink);
notice = notice.replace('{uploaded_link}', uploadedLink);
} else {
notice = gettext('A file name {file_name} is uploaded to {dest}.');
notice = notice.replace('{file_name}', fileName);
notice = notice.replace('{dest}', '<strong>Deleted Library</strong>')
notice = gettext('A file name {upload_file_link} is uploaded to {uploaded_link}.');
notice = notice.replace('{upload_file_link}', fileName);
notice = notice.replace('{file_name}', '<strong>Deleted Library</strong>')
}
return {avatar_url, notice};
}