LoginSignup
1
1

More than 5 years have passed since last update.

Photoshopの言語モードを切り替える

Posted at

バッチファイル

Switch-Photoshop-language-mode.bat
@echo off
set PHOTOSHOP_DIR=%ProgramFiles%\Adobe\Adobe Photoshop CC 2015.5
if not exist "%PHOTOSHOP_DIR%\" (
  echo %PHOTOSHOP_DIR% is not found.
  pause
  exit /b -1
)

if exist "%PHOTOSHOP_DIR%\Locales\ja_JP\Support Files\tw10428.dat" (
  set CURRENT_LANG=Japanese
  set SWITCHED_LANG=English
) else if exist "%PHOTOSHOP_DIR%\Locales\ja_JP\Support Files\tw10428.dat.bak" (
  set CURRENT_LANG=English
  set SWITCHED_LANG=Japanese
) else (
  echo Cannot understand currently Photoshop language mode.
  pause
  exit /b -1
)

echo Currently Photoshop language mode is %CURRENT_LANG%.
echo.
echo Press any key to switch to %SWITCHED_LANG%.
pause

if exist "%PHOTOSHOP_DIR%\Locales\ja_JP\Support Files\tw10428.dat" (
  rename "%PHOTOSHOP_DIR%\Locales\ja_JP\Support Files\tw10428.dat" tw10428.dat.bak
) else if exist "%PHOTOSHOP_DIR%\Locales\ja_JP\Support Files\tw10428.dat.bak" (
  rename "%PHOTOSHOP_DIR%\Locales\ja_JP\Support Files\tw10428.dat.bak" tw10428.dat
) else (
  echo Failure to switch Photoshop language mode.
  pause
  exit /b -1
)

exit /b 0

実行するとこんな感じ

Currently Photoshop language mode is Japanese.

Press any key to switch to English.
続行するには何かキーを押してください . . .

実行するたび、日本語と英語感を相互に切り替えます。

動作確認

  • Windows 10.0.10586
  • Adobe Photoshop 2015.5リリース 日本語版
    • PHOTOSHOP_DIRのフォルダ名を置き換えれば、次が出ても使えるかも?

参考

大変重宝しております、有り難うございます!

以上

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1