Skip to content

Language snippets collection for ItemText values

katao436 edited this page Nov 3, 2019 · 2 revisions

This is a collection of different language snippets, which have to be added to the “ItemText” and “ItemText2” registry values to be read and compared by DragDropConfirm.

The values have to be located in this registry key:

HKEY_LOCAL_MACHINE\SOFTWARE\DragDropConfirm

ItemText = Is used for the string to move files
ItemText2 = Is used for the string to copy files

If you want to get unknown language strings for the above operations, please follow the instructions here.

The following item value collection will make it needless to find out the specific strings with the “ShowDefaultText” registry value. They can be changed on the fly, assumed the proper language pack is active under the current account.


::en-US (English)
::ItemText = &Move here
::ItemText2 = &Copy here
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\DragDropConfirm" /v ItemText /f /d "&Move here"
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\DragDropConfirm" /v ItemText2 /f /d "&Copy here"


::ru (Russian)
::ItemText = &Переместить
::ItemText2 = &Копировать
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\DragDropConfirm" /v ItemText /f /d "&Переместить"
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\DragDropConfirm" /v ItemText2 /f /d "&Копировать"


::de-DE (German)
::ItemText = Hierher &verschieben
::ItemText2 = Hierher &kopieren
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\DragDropConfirm" /v ItemText /f /d "Hierher &verschieben"
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\DragDropConfirm" /v ItemText2 /f /d "Hierher &kopieren"

Please participate in this collection by following the instructions to register the DragDropConfirm.dll file and add the “ShowDefaultText” item to find out the specific values for your localization.


Language Packs (MUI and LIP) can be downloaded at Microsoft:
https://support.microsoft.com/en-us/help/14236/language-packs
or elsewhere: https://www.froggie.sk/

How to install Windows language packs manually?
These language packs are in the form of a "cab" file. You can either install them manually or from Windows Update.
Follow the instructions below to install the language pack manually.

Run  lpksetup

Click on Install Display Languages
Give the language pack path (CAB file) and click Next.
Then after a while, language pack will start installing.
It will take a few time to complete the installation.
-------------------
Click on "Start" menu then select "Control Panel"
Under "Clock, Language, and Region" select "Install or uninstall display languages"
Clone this wiki locally