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: c641735a26e4c05d2b37238f3b69296a8126bb30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@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