1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-21 11:27:18 +00:00

repair translate bug (#3156)

This commit is contained in:
杨顺强
2019-03-21 18:12:25 +08:00
committed by Daniel Pan
parent e793d61062
commit 4693b64888
5 changed files with 5 additions and 11 deletions

View File

@@ -97,7 +97,7 @@ class OrgLibraries extends Component {
<tr>
<th width="4%"></th>
<th width="31%">{gettext('Name')}</th>
<th width="26%">{gettext('ID')}</th>
<th width="26%">ID</th>
<th width="24%">{gettext('Owner')}</th>
<th width="15%" className="text-center">{gettext('Operations')}</th>
</tr>
@@ -197,7 +197,7 @@ class RepoItem extends React.Component {
iconTitle = gettext('Encrypted library');
} else {
href = mediaUrl + 'img/lib/48/lib.png';
iconTitle = gettext('Read-Write library');
iconTitle = gettext('Read-Write library');
}
return <img src={href} title={iconTitle} alt={iconTitle} width="24" />;
}