From a9239e82bf3590f7eedb855622cd19b8ec496584 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Mon, 27 Apr 2026 11:24:50 +0200 Subject: [PATCH] fix(l10n): Use "teams" instead of the old "circles" Signed-off-by: Marcel Klehr --- lib/Controller/ChattyLLMController.php | 12 ++++++------ lib/Service/AssistantService.php | 16 ++++++++-------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/Controller/ChattyLLMController.php b/lib/Controller/ChattyLLMController.php index b8ae934f..8758e4dc 100644 --- a/lib/Controller/ChattyLLMController.php +++ b/lib/Controller/ChattyLLMController.php @@ -125,27 +125,27 @@ public function __construct( 'icon' => 'FolderPlus', ], 'create_circle' => [ - 'title' => $this->l10n->t('Create circle'), + 'title' => $this->l10n->t('Create team'), 'icon' => 'AccountGroupPlus', ], 'add_member_to_circle' => [ - 'title' => $this->l10n->t('Add member to circle'), + 'title' => $this->l10n->t('Add member to team'), 'icon' => 'AccountPlus', ], 'remove_member_from_circle' => [ - 'title' => $this->l10n->t('Remove member from circle'), + 'title' => $this->l10n->t('Remove member from team'), 'icon' => 'AccountRemove', ], 'update_circle' => [ - 'title' => $this->l10n->t('Update circle'), + 'title' => $this->l10n->t('Update team'), 'icon' => 'AccountGroupEdit', ], 'delete_circle' => [ - 'title' => $this->l10n->t('Delete circle'), + 'title' => $this->l10n->t('Delete team'), 'icon' => 'AccountGroupRemove', ], 'share_with_circle' => [ - 'title' => $this->l10n->t('Share with circle'), + 'title' => $this->l10n->t('Share with team'), 'icon' => 'ShareVariant', ], 'create_form' => [ diff --git a/lib/Service/AssistantService.php b/lib/Service/AssistantService.php index 72cd3a5e..9c18c763 100644 --- a/lib/Service/AssistantService.php +++ b/lib/Service/AssistantService.php @@ -94,21 +94,21 @@ public function __construct( ) { $this->informationSources = [ 'add_card' => $this->l10n->t('Nextcloud Deck'), - 'add_member_to_circle' => $this->l10n->t('Add member to circle'), + 'add_member_to_circle' => $this->l10n->t('Nextcloud Teams'), 'add_task' => $this->l10n->t('Nextcloud Tasks'), 'ask_context_chat' => $this->l10n->t('Context Chat'), 'complete_task' => $this->l10n->t('Complete calendar task'), 'copy_file' => $this->l10n->t('Copy file'), 'create_bookmark' => $this->l10n->t('Create bookmark'), 'create_bookmark_folder' => $this->l10n->t('Create bookmark folder'), - 'create_circle' => $this->l10n->t('Create circle'), + 'create_circle' => $this->l10n->t('Nextcloud Teams'), 'create_folder' => $this->l10n->t('Create folder'), 'create_form' => $this->l10n->t('Create form'), 'create_public_conversation' => $this->l10n->t('Nextcloud Talk'), 'create_public_sharing_link' => $this->l10n->t('Nextcloud Files'), 'create_work_package' => $this->l10n->t('OpenProject'), 'delete_bookmark' => $this->l10n->t('Delete bookmark'), - 'delete_circle' => $this->l10n->t('Delete circle'), + 'delete_circle' => $this->l10n->t('Nextcloud Teams'), 'delete_file' => $this->l10n->t('Delete file'), 'delete_form' => $this->l10n->t('Delete form'), 'delete_share' => $this->l10n->t('Delete share'), @@ -119,7 +119,7 @@ public function __construct( 'find_person_in_contacts' => $this->l10n->t('Nextcloud Contacts'), 'generate_document' => $this->l10n->t('Assistant document generation'), 'generate_image' => $this->l10n->t('Assistant image generation'), - 'get_circle_details' => $this->l10n->t('Get circle details'), + 'get_circle_details' => $this->l10n->t('Nextcloud Teams'), 'get_coordinates_for_address' => $this->l10n->t('OpenStreetMap'), 'get_current_weather_for_coordinates' => $this->l10n->t('Norwegian Meteorological Institute weather forecast'), 'get_file_content' => $this->l10n->t('Nextcloud Files'), @@ -137,7 +137,7 @@ public function __construct( 'list_bookmark_tags' => $this->l10n->t('List bookmark tags'), 'list_bookmarks' => $this->l10n->t('List bookmarks'), 'list_calendars' => $this->l10n->t('Nextcloud Calendar'), - 'list_circles' => $this->l10n->t('List circles'), + 'list_circles' => $this->l10n->t('Nextcloud Teams'), 'list_decks' => $this->l10n->t('Nextcloud Deck'), 'list_forms' => $this->l10n->t('List forms'), 'list_messages_in_conversation' => $this->l10n->t('Nextcloud Talk'), @@ -147,17 +147,17 @@ public function __construct( 'list_tasks' => $this->l10n->t('List calendar tasks'), 'list_user_groups' => $this->l10n->t('List user groups'), 'move_file' => $this->l10n->t('Move file'), - 'remove_member_from_circle' => $this->l10n->t('Remove member from circle'), + 'remove_member_from_circle' => $this->l10n->t('Nextcloud Teams'), 'schedule_event' => $this->l10n->t('Nextcloud Calendar'), 'search_bookmarks' => $this->l10n->t('Search bookmarks'), 'send_email' => $this->l10n->t('Nextcloud Mail'), 'send_message_to_conversation' => $this->l10n->t('Nextcloud Talk'), - 'share_with_circle' => $this->l10n->t('Share with circle'), + 'share_with_circle' => $this->l10n->t('Nextcloud Teams'), 'share_with_group' => $this->l10n->t('Share with group'), 'share_with_user' => $this->l10n->t('Share with user'), 'transcribe_file' => $this->l10n->t('Assistant audio transcription'), 'update_bookmark' => $this->l10n->t('Update bookmark'), - 'update_circle' => $this->l10n->t('Update circle'), + 'update_circle' => $this->l10n->t('Nextcloud Teams'), 'update_form_settings' => $this->l10n->t('Update form settings'), 'update_share_permissions' => $this->l10n->t('Update share permissions'), 'update_task' => $this->l10n->t('Update calendar task'),