chore(editor): Improve agent builder prompt field tooltips (#22045)

This commit is contained in:
Tuukka Kantola 2025-11-20 10:20:01 +01:00 committed by GitHub
parent 3b74155780
commit a22226f5cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -423,6 +423,7 @@ defineExpose({
<N8nTooltip
:content="creditsTooltipContent"
:popper-class="$style.infoPopper"
:show-after="300"
placement="top"
>
<N8nIcon icon="info" size="small" />
@ -432,6 +433,8 @@ defineExpose({
:disabled="!showAskOwnerTooltip"
:content="t('promptInput.askAdminToUpgrade')"
placement="top"
:show-after="300"
:enterable="false"
>
<N8nLink size="small" theme="text" @click="() => emit('upgrade-click')">
{{ t('promptInput.getMore') }}

View File

@ -86,7 +86,7 @@ export default {
'promptInput.askAdminToUpgrade': 'Ask your admin to upgrade the instance to get more credits',
'promptInput.characterLimitReached': "You've reached the {limit} character limit",
'promptInput.remainingCredits': 'Remaining builder AI credits: <b>{count}</b>',
'promptInput.monthlyCredits': 'Monthly credits: <b>{count}</b>',
'promptInput.monthlyCredits': 'Monthly credits: <b>{count}</b> (1 credit = 1 message)',
'promptInput.creditsRenew': 'Credits renew on: <b>{date}</b>',
'promptInput.creditsExpire': 'Unused credits expire {date}',
} as N8nLocale;