mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
Merge branch 'app-favorites' into 'main'
appFavorites: Better align messages with the HIG See merge request GNOME/gnome-shell!3255
This commit is contained in:
commit
253f066913
1 changed files with 2 additions and 2 deletions
|
|
@ -163,7 +163,7 @@ class AppFavorites extends Signals.EventEmitter {
|
|||
|
||||
let app = Shell.AppSystem.get_default().lookup_app(appId);
|
||||
|
||||
let msg = _('%s has been pinned to the dash.').format(app.get_name());
|
||||
let msg = _('%s Pinned to Dash').format(app.get_name());
|
||||
Main.overview.setMessage(msg, {
|
||||
forFeedback: true,
|
||||
undoCallback: () => this._removeFavorite(appId),
|
||||
|
|
@ -196,7 +196,7 @@ class AppFavorites extends Signals.EventEmitter {
|
|||
if (!this._removeFavorite(appId))
|
||||
return;
|
||||
|
||||
let msg = _('%s has been unpinned from the dash.').format(app.get_name());
|
||||
let msg = _('%s Unpinned From Dash').format(app.get_name());
|
||||
Main.overview.setMessage(msg, {
|
||||
forFeedback: true,
|
||||
undoCallback: () => this._addFavorite(appId, pos),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue