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:
Elijah King
2026-05-27 15:13:23 -05:00
committed by GitHub
@@ -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");
}