From 4686036ed88e886f1888262b328e780518bdb7ff Mon Sep 17 00:00:00 2001 From: Git'Fellow <12234510+solracsf@users.noreply.github.com> Date: Tue, 9 Jul 2024 18:41:34 +0200 Subject: [PATCH] fix: Rename Circle to Team Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> fix: to lowercase Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> fix: lowercase Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> Fix: revert Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> fix: circles to teams Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> fix: circle to team Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> --- lib/Command/Group.php | 2 +- src/settings/App.tsx | 2 +- src/settings/FolderGroups.tsx | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) 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 */