Translations: don't regenerate LazReport editor sample translations from localize scripts anymore, they are handled by IDE just fine.

git-svn-id: trunk@52538 -
This commit is contained in:
maxim 2016-06-20 22:40:31 +00:00
parent 2c10ed8937
commit b3f20e3b16
2 changed files with 2 additions and 15 deletions

View File

@ -83,18 +83,6 @@ echo on
:SkipLazDoc
@echo.
@echo Updating LazReport editor sample
@set LREditor_RSJ=components\lazreport\samples\editor\maincalleditor.rsj
@if exist %LREditor_RSJ% goto LREditor_update
@echo RSJ file NOT found. Searching for RST.
@set LREditor_RSJ=components\lazreport\samples\editor\maincalleditor.rst
@if not exist %LREditor_RSJ% goto SkipLREditor
:LREditor_update
@tools\updatepofiles %LREditor_RSJ% components\lazreport\samples\editor\languages\calleditorwithpkg.po
@echo Translation file %LREditor_RSJ% found.
:SkipLREditor
@echo.
@goto Exit
:Exit_Error

View File

@ -36,7 +36,6 @@ fi
RSTFILES=(
". lazarusidestrconsts lazaruside"
". debuggerstrconst"
"components/lazreport/samples/editor maincalleditor calleditorwithpkg"
"doceditor lazdemsg lazde"
"tools/lazdatadesktop lazdatadeskstr lazdatadesktop"
)
@ -45,8 +44,8 @@ set -x
for idx in ${!RSTFILES[@]}; do
LINE=(${RSTFILES[idx]})
RSTDIR=${LINE[0]}
RSTFILE=${LINE[1]}
RSTDIR=${LINE[0]}
RSTFILE=${LINE[1]}
POFILE=${LINE[2]:-$RSTFILE}
RST=$(find $RSTDIR -name $RSTFILE.$RSEXT)