mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
I18n fix. Dock/Workspace/Taskbar menus had old values.
This commit is contained in:
@@ -82,7 +82,7 @@ PopupWindow {
|
||||
// Focus item
|
||||
next.push({
|
||||
"icon": "eye",
|
||||
"text": I18n.tr("dock.menu.focus"),
|
||||
"text": I18n.tr("common.focus"),
|
||||
"action": function () {
|
||||
handleFocus();
|
||||
}
|
||||
@@ -92,7 +92,7 @@ PopupWindow {
|
||||
// Pin/Unpin item
|
||||
next.push({
|
||||
"icon": !isPinned ? "pin" : "unpin",
|
||||
"text": !isPinned ? I18n.tr("dock.menu.pin") : I18n.tr("dock.menu.unpin"),
|
||||
"text": !isPinned ? I18n.tr("common.pin") : I18n.tr("common.unpin"),
|
||||
"action": function () {
|
||||
handlePin();
|
||||
}
|
||||
@@ -102,7 +102,7 @@ PopupWindow {
|
||||
// Close item
|
||||
next.push({
|
||||
"icon": "close",
|
||||
"text": I18n.tr("dock.menu.close"),
|
||||
"text": I18n.tr("common.close"),
|
||||
"action": function () {
|
||||
handleClose();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user