Skip to content

Commit 803c0d7

Browse files
authored
Coding Agent: Wording of changes tooltip (#7196)
Fixes #7170
1 parent 2290ec2 commit 803c0d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/view/prsTreeDataProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export class PullRequestsTreeDataProvider extends Disposable implements vscode.T
104104
this._register(this._copilotManager.onDidChangeStates(() => {
105105
if (this._copilotManager.notifications.size > 0) {
106106
this._view.badge = {
107-
tooltip: this._copilotManager.notifications.size === 1 ? vscode.l10n.t('Coding agent has 1 change to view') : vscode.l10n.t('Coding agent has {0} changes to view', this._copilotManager.notifications.size),
107+
tooltip: this._copilotManager.notifications.size === 1 ? vscode.l10n.t('Coding agent has 1 pull request to view') : vscode.l10n.t('Coding agent has {0} pull requests to view', this._copilotManager.notifications.size),
108108
value: this._copilotManager.notifications.size
109109
};
110110
this.refresh();

0 commit comments

Comments
 (0)