fix(ja): use && instead of & in selectFolder label#2219
Open
yuhunarumi wants to merge 1 commit intomicrosoft:mainfrom
Open
fix(ja): use && instead of & in selectFolder label#2219yuhunarumi wants to merge 1 commit intomicrosoft:mainfrom
yuhunarumi wants to merge 1 commit intomicrosoft:mainfrom
Conversation
## Summary Fix a typo in the Japanese translation where `selectFolder` used a single `&` instead of `&&`, causing the button label to render as literal text `フォルダーの選択(&S)` and preventing `Alt+S` from working. ## Changes - `i18n/jpn/src/vs/platform/dialogs/electron-main/dialogMainService.i18n.json` - `"selectFolder"`: `"フォルダーの選択(&S)"` → `"フォルダーの選択(&&S)"` ## Motivation The `openWorkspace` key in the same namespace already uses `&&O` correctly. This PR aligns `selectFolder` with the same convention. ## 概要 日本語翻訳ファイルの `selectFolder` で `&` が1つになっていたため、ボタンラベルに `フォルダーの選択(&S)` がそのまま表示され、`Alt+S` が機能しない問題を修正しました。 ## 変更内容 - `i18n/jpn/src/vs/platform/dialogs/electron-main/dialogMainService.i18n.json` - `"selectFolder"`: `"フォルダーの選択(&S)"` → `"フォルダーの選択(&&S)"` ## 背景 同じ名前空間の `openWorkspace` はすでに `&&O` が正しく使われています。今回の修正はそれと同じ記法に統一するものです。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix a typo in the Japanese translation where
selectFolderused a single&instead of&&, causing the button label to render as literal textフォルダーの選択(&S)and preventingAlt+Sfrom working.Changes
i18n/jpn/src/vs/platform/dialogs/electron-main/dialogMainService.i18n.json"selectFolder":"フォルダーの選択(&S)"→"フォルダーの選択(&&S)"Motivation
The
openWorkspacekey in the same namespace already uses&&Ocorrectly. This PR alignsselectFolderwith the same convention.概要
日本語翻訳ファイルの
selectFolderで&が1つになっていたため、ボタンラベルにフォルダーの選択(&S)がそのまま表示され、Alt+Sが機能しない問題を修正しました。変更内容
i18n/jpn/src/vs/platform/dialogs/electron-main/dialogMainService.i18n.json"selectFolder":"フォルダーの選択(&S)"→"フォルダーの選択(&&S)"背景
同じ名前空間の
openWorkspaceはすでに&&Oが正しく使われています。今回の修正はそれと同じ記法に統一するものです。