mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-19 10:26:17 +00:00
change invite user text (#6883)
* change invite user text * change text
This commit is contained in:
@@ -23,6 +23,7 @@
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
color: #666;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
|
@@ -182,7 +182,7 @@ class Content extends Component {
|
||||
return (
|
||||
<EmptyTip
|
||||
title={gettext('No guest invitations')}
|
||||
text={gettext('You have not invited any guests yet. A guest can access shared libraries through the web interface allowing more efficient ways to collaborate than through links. You can invite a guest by clicking the "Invite Guest" button in the menu bar.')}
|
||||
text={gettext('You have not invited any guests yet. A guest can access shared libraries through the web interface allowing more efficient ways to collaborate than through links. You can invite a guest by clicking the "Invite Guest" item in the menu.')}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
@@ -307,10 +307,15 @@ class Wikis extends Component {
|
||||
}
|
||||
{(!this.state.loading && this.state.wikis.length === 0 && this.state.groupWikis.length === 0) &&
|
||||
<div className="cur-view-content">
|
||||
<EmptyTip title={gettext('No Wikis')}>
|
||||
<p className="empty-tip-text">{gettext('You do not have any wikis yet.')}</p>
|
||||
<p className="empty-tip-text">{gettext('You can add a wiki by clicking the "Add Wiki" button in the menu.')}</p>
|
||||
</EmptyTip>
|
||||
<EmptyTip
|
||||
title={gettext('No Wikis')}
|
||||
text={
|
||||
<>
|
||||
<p>{gettext('You do not have any Wikis yet.')}</p>
|
||||
<p>{gettext('You can add a Wiki by clicking the "Add Wiki" item in the menu.')}</p>
|
||||
</>
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user