Welcome to mirror list, hosted at ThFree Co, Russian Federation.

patch.bat « mpcresources « mplayerc « apps « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a987893231c7d3f80bc86fad447be059a23b757 (plain)
1
2
3
4
5
6
7
8
9
@echo off

rem A simple script which demonstrates how to apply translated text to locale rc file.
rem This is only an example.

for %%i in (*.rc) do echo Patching file %%i & perl patch.pl -i text\%%i.txt %%i & echo ----------------------
echo ----------------------

pause