diff --git a/lib/Command/Group.php b/lib/Command/Group.php index 6951fb30a..1f0356bc1 100644 --- a/lib/Command/Group.php +++ b/lib/Command/Group.php @@ -83,7 +83,7 @@ protected function execute(InputInterface $input, OutputInterface $output) { $output->writeln('Unable to parse permissions input: ' . implode(' ', $permissionsString) . ''); return -1; } - $output->writeln('group/circle not found: ' . $groupString . ''); + $output->writeln('group/team not found: ' . $groupString . ''); return -1; } diff --git a/src/settings/App.tsx b/src/settings/App.tsx index 6d5659bf2..a4942d21f 100644 --- a/src/settings/App.tsx +++ b/src/settings/App.tsx @@ -208,7 +208,7 @@ export class App extends Component<{}, AppState> implements OC.Plugin { return { value: circle.singleId, - label: t('groupfolders', '{displayName} (circle)', {...circle}) + label: t('groupfolders', '{displayName} (team)', {...circle}) }; }); const options = [...groups, ...circles] const placeholder = isCirclesEnabled - ? t('groupfolders', 'Add group or circle') + ? t('groupfolders', 'Add group or team') : t('groupfolders', 'Add group') /* @ts-expect-error Typescript error due to async react component */