Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions lib/Controller/ChattyLLMController.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,27 +123,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' => [
Expand Down
10 changes: 5 additions & 5 deletions lib/Service/AssistantService.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand All @@ -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'),
Expand All @@ -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'),
Expand Down