Skip to content

Commit

Permalink
Update access keys and Japanese locale (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
asamuzaK authored Oct 8, 2024
1 parent c3972c3 commit 175291f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions src/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,20 +153,20 @@
}
},
"closeTabsToTheEnd_menu": {
"message": "Close Tabs &Below",
"message": "Close Tabs Below $KEY$",
"placeholders": {
"key": {
"content": "$1",
"example": "(&B)"
"example": "(&I)"
}
}
},
"closeTabsToTheStart_menu": {
"message": "Close &Tabs Above",
"message": "C&lose Tabs Above",
"placeholders": {
"key": {
"content": "$1",
"example": "(&T)"
"example": "(&L)"
}
}
},
Expand Down
4 changes: 2 additions & 2 deletions src/_locales/fa/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
"placeholders": {
"key": {
"content": "$1",
"example": "(&B)"
"example": "(&I)"
}
}
},
Expand All @@ -166,7 +166,7 @@
"placeholders": {
"key": {
"content": "$1",
"example": "(&T)"
"example": "(&L)"
}
}
},
Expand Down
10 changes: 5 additions & 5 deletions src/_locales/ja/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,20 +153,20 @@
}
},
"closeTabsToTheEnd_menu": {
"message": "下のタブをすべて閉じる$KEY$",
"message": "下側のタブをすべて閉じる$KEY$",
"placeholders": {
"key": {
"content": "$1",
"example": "(&B)"
"example": "(&I)"
}
}
},
"closeTabsToTheStart_menu": {
"message": "上のタブをすべて閉じる$KEY$",
"message": "上側のタブをすべて閉じる$KEY$",
"placeholders": {
"key": {
"content": "$1",
"example": "(&T)"
"example": "(&L)"
}
}
},
Expand Down Expand Up @@ -420,7 +420,7 @@
}
},
"newTab_menu": {
"message": "新しいタブ$KEY$",
"message": "新しいタブを下隣に開く$KEY$",
"description": "Refer to https://pontoon.mozilla.org/[lang]/firefox/browser/browser/tabContextMenu.ftl",
"placeholders": {
"key": {
Expand Down
4 changes: 2 additions & 2 deletions src/mjs/menu-items.js
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ export default {
subItems: {
[TABS_CLOSE_START]: {
id: TABS_CLOSE_START,
title: i18n.getMessage(`${TABS_CLOSE_START}_menu`, '(&T)'),
title: i18n.getMessage(`${TABS_CLOSE_START}_menu`, '(&L)'),
type: 'normal',
contexts: ['tab'],
viewTypes: ['sidebar'],
Expand All @@ -551,7 +551,7 @@ export default {
},
[TABS_CLOSE_END]: {
id: TABS_CLOSE_END,
title: i18n.getMessage(`${TABS_CLOSE_END}_menu`, '(&B)'),
title: i18n.getMessage(`${TABS_CLOSE_END}_menu`, '(&I)'),
type: 'normal',
contexts: ['tab'],
viewTypes: ['sidebar'],
Expand Down

0 comments on commit 175291f

Please sign in to comment.