mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-03 13:06:06 +01:00
Merge pull request #318624 from microsoft/copilot/change-inline-suggestions-sentence
Change "Inline suggestions quota reached" to "Inline suggestions limit reached"
This commit is contained in:
@@ -189,7 +189,7 @@ export class ChatStatusBarEntry extends Disposable implements IWorkbenchContribu
|
||||
if (chatQuotaExceeded && !completionsQuotaExceeded) {
|
||||
quotaWarning = localize('chatQuotaExceededStatus', "Chat quota reached");
|
||||
} else if (completionsQuotaExceeded && !chatQuotaExceeded) {
|
||||
quotaWarning = localize('completionsQuotaExceededStatus', "Inline suggestions quota reached");
|
||||
quotaWarning = localize('completionsQuotaExceededStatus', "Inline suggestions limit reached");
|
||||
} else {
|
||||
quotaWarning = localize('chatAndCompletionsQuotaExceededStatus', "Quota reached");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user