mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 22:01:36 +00:00
Improved tooltips
This commit is contained in:
parent
f769bef2ba
commit
4eaf40b147
@ -1495,6 +1495,9 @@ UI_TEXT_CONTENT["AISTUDIO::CHAT::CONTENTBLOCKCOMPONENT::T861873672"] = "Export C
|
|||||||
-- Open Settings
|
-- Open Settings
|
||||||
UI_TEXT_CONTENT["AISTUDIO::COMPONENTS::ASSISTANTBLOCK::T1172211894"] = "Open Settings"
|
UI_TEXT_CONTENT["AISTUDIO::COMPONENTS::ASSISTANTBLOCK::T1172211894"] = "Open Settings"
|
||||||
|
|
||||||
|
-- Click the paperclip to attach files, or click the number to see your attached files
|
||||||
|
UI_TEXT_CONTENT["AISTUDIO::COMPONENTS::ATTACHDOCUMENTS::T1637046680"] = "Click the paperclip to attach files, or click the number to see your attached files"
|
||||||
|
|
||||||
-- Drag and drop files into the marked area or click here to attach documents:
|
-- Drag and drop files into the marked area or click here to attach documents:
|
||||||
UI_TEXT_CONTENT["AISTUDIO::COMPONENTS::ATTACHDOCUMENTS::T230755331"] = "Drag and drop files into the marked area or click here to attach documents:"
|
UI_TEXT_CONTENT["AISTUDIO::COMPONENTS::ATTACHDOCUMENTS::T230755331"] = "Drag and drop files into the marked area or click here to attach documents:"
|
||||||
|
|
||||||
@ -1522,9 +1525,6 @@ UI_TEXT_CONTENT["AISTUDIO::COMPONENTS::ATTACHDOCUMENTS::T4167762413"] = "Executa
|
|||||||
-- Select a file to attach
|
-- Select a file to attach
|
||||||
UI_TEXT_CONTENT["AISTUDIO::COMPONENTS::ATTACHDOCUMENTS::T595772870"] = "Select a file to attach"
|
UI_TEXT_CONTENT["AISTUDIO::COMPONENTS::ATTACHDOCUMENTS::T595772870"] = "Select a file to attach"
|
||||||
|
|
||||||
-- Click to see your attached files
|
|
||||||
UI_TEXT_CONTENT["AISTUDIO::COMPONENTS::ATTACHDOCUMENTS::T743568733"] = "Click to see your attached files"
|
|
||||||
|
|
||||||
-- Changelog
|
-- Changelog
|
||||||
UI_TEXT_CONTENT["AISTUDIO::COMPONENTS::CHANGELOG::T3017574265"] = "Changelog"
|
UI_TEXT_CONTENT["AISTUDIO::COMPONENTS::CHANGELOG::T3017574265"] = "Changelog"
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
<div @onmouseenter="@this.OnMouseEnter" @onmouseleave="@this.OnMouseLeave">
|
<div @onmouseenter="@this.OnMouseEnter" @onmouseleave="@this.OnMouseLeave">
|
||||||
@if (this.DocumentPaths.Any())
|
@if (this.DocumentPaths.Any())
|
||||||
{
|
{
|
||||||
<MudTooltip Text="@T("Click to see your attached files")" Placement="@TOOLBAR_TOOLTIP_PLACEMENT">
|
<MudTooltip Text="@T("Click the paperclip to attach files, or click the number to see your attached files")" Placement="@TOOLBAR_TOOLTIP_PLACEMENT">
|
||||||
<MudBadge
|
<MudBadge
|
||||||
Content="@this.DocumentPaths.Count"
|
Content="@this.DocumentPaths.Count"
|
||||||
Color="Color.Primary"
|
Color="Color.Primary"
|
||||||
@ -21,7 +21,7 @@
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
<MudTooltip Text="@T("Click to attach files")" Placement="@TOOLBAR_TOOLTIP_PLACEMENT">
|
<MudTooltip Text="@T("Click here to attach files")" Placement="@TOOLBAR_TOOLTIP_PLACEMENT">
|
||||||
<MudIconButton
|
<MudIconButton
|
||||||
Icon="@Icons.Material.Filled.AttachFile"
|
Icon="@Icons.Material.Filled.AttachFile"
|
||||||
Color="Color.Default"
|
Color="Color.Default"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user