Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/groupfolders.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBaptiste Fotia <fotia.baptiste@hotmail.com>2022-07-27 11:33:28 +0300
committerBaptiste Fotia <fotia.baptiste@hotmail.com>2022-09-19 17:18:23 +0300
commit322fa9851a4c9af73b7e4e241f3dc91e68ef5e92 (patch)
tree51c92f1a4bdab7aa7adfa69678e795552d973ed5 /src
parent61f7bbc82d24c3e0ec809003bfdf4446fd7d86e6 (diff)
chore(l10n, TS): Move 2 sentences
Signed-off-by: Baptiste Fotia <fotia.baptiste@hotmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/settings/App.tsx8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/settings/App.tsx b/src/settings/App.tsx
index 690cc5c5..e957a859 100644
--- a/src/settings/App.tsx
+++ b/src/settings/App.tsx
@@ -277,13 +277,17 @@ export class App extends Component<{}, AppState> implements OC.Plugin<OC.Search.
<em>{ t('groupfolders', 'Nextcloud allows you to delegate the administration of groupfolders to non-admin users.') }</em>
<br/>
<br/>
- <em>{ t('groupfolders', 'Specify below the groups that will be allowed to manage groupfolders and use its API/REST. They will have access to all Groupfolders.') }</em>
+ <em>{ t('groupfolders', 'Specify below the groups that will be allowed to manage groupfolders and use its API/REST.') }</em>
+ <br/>
+ <em>{ t('groupfolders', 'They will have access to all Groupfolders.') }</em>
<AdminGroupSelect
groups={this.state.groups}
allGroups={this.state.groups}
delegatedAdminGroups={this.state.delegatedAdminGroups} />
<br/>
- <em>{ t('groupfolders', 'Specify below the groups that will be allowed to manage groupfolders and use its API/REST only. They will only have access to Groupfolders for which the have advanced permissions.') }</em>
+ <em>{ t('groupfolders', 'Specify below the groups that will be allowed to manage groupfolders and use its API/REST only.') }</em>
+ <br/>
+ <em>{ t('groupfolders', 'They will only have access to Groupfolders for which the have advanced permissions.') }</em>
<SubAdminGroupSelect
groups={this.state.groups}
allGroups={this.state.groups}