Mercurial > vim
diff src/po/Make_mvc.mak @ 33823:45c0a5330758 v9.0.2127
patch 9.0.2127: translation Makefiles can be improved
Commit: https://github.com/vim/vim/commit/e214692718d6a997a0540fc688e1417564416f80
Author: RestorerZ <restorer@mail2k.ru>
Date: Thu Nov 23 20:58:32 2023 +0100
patch 9.0.2127: translation Makefiles can be improved
Problem: translation Makefiles can be improved
Solution: Modified and extended po-related Makefiles and
related files
closes: #13518
Signed-off-by: RestorerZ <restorer@mail2k.ru>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 23 Nov 2023 21:15:03 +0100 |
parents | 695b50472e85 |
children | 2b222b99faec |
line wrap: on
line diff
--- a/src/po/Make_mvc.mak +++ b/src/po/Make_mvc.mak @@ -6,26 +6,55 @@ # Please read README_mvc.txt before using this file. # -!ifndef VIMRUNTIME -VIMRUNTIME = ..\..\runtime -!endif +!IF [powershell -nologo -noprofile "exit $$psversiontable.psversion.major"] == 2 +!ERROR The program "PowerShell" version 3.0 or higher is required to work +!ENDIF + +!IFNDEF LANGUAGE +!ERROR Set the environment variable %LANGUAGE%. See README_mvc.txt +!ENDIF # get LANGUAGES, MOFILES, MOCONVERTED and others -!include Make_all.mak +!INCLUDE Make_all.mak + +!IFNDEF VIMRUNTIME +VIMRUNTIME = ..\..\runtime +!ENDIF PACKAGE = vim +# Correct the following line for the where executeable file vim is installed VIM = ..\vim # Correct the following line for the directory where gettext et al is installed -GETTEXT_PATH = H:\gettext.0.14.4\bin +GETTEXT_PATH = D:\Programs\GetText\bin MSGFMT = $(GETTEXT_PATH)\msgfmt -v XGETTEXT = $(GETTEXT_PATH)\xgettext MSGMERGE = $(GETTEXT_PATH)\msgmerge -MV = move -CP = copy -RM = del +# In case some package like GnuWin32, UnixUtils, gettext +# or something similar is installed on the system. +# If the "iconv" program is installed on the system, but it is not registered +# in the %PATH% environment variable, then specify the full path to this file. +!IF EXIST ("iconv.exe") +ICONV = "iconv.exe" +!ELSEIF EXIST ("$(GETTEXT_PATH)\iconv.exe") +ICONV="$(GETTEXT_PATH)\iconv.exe" +!ENDIF + +# In case some package like GnuWin32, UnixUtils +# or something similar is installed on the system. +# If the "touch" program is installed on the system, but it is not registered +# in the %PATH% environment variable, then specify the full path to this file. +!IF EXIST ("touch.exe") +TOUCH = touch.exe $@ +!ELSE +TOUCH = @if exist $@ ( copy /b $@+,, ) else ( type nul >$@ ) +!ENDIF + +MV = move /y +CP = copy /y +RM = del /q MKD = mkdir LS = dir @@ -34,14 +63,426 @@ LSFLAGS = /b /on /l /s INSTALLDIR = $(VIMRUNTIME)\lang\$(LANGUAGE)\LC_MESSAGES .SUFFIXES: -.SUFFIXES: .po .mo .pot +.SUFFIXES: .po .mo .pot .ck + +all: $(MOFILES) $(MOCONVERTED) + +.po.ck: + $(VIM) -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq $< + $(TOUCH) + +check: $(CHECKFILES) + +checkclean: + $(RM) *.ck + +converted: $(MOCONVERTED) + +nl.po: + @( echo \# > nl.po ) + +# Norwegian/Bokmal: "nb" is an alias for "no". +nb.po: no.po + $(CP) no.po nb.po + +# Convert ja.po to create ja.sjis.po. +ja.sjis.po: ja.po + @$(MAKE) -nologo -f Make_mvc.mak sjiscorr + -$(RM) $@ +!IF EXIST ("$(GETTEXT_PATH)\msgconv.exe") + "$(GETTEXT_PATH)\msgconv.exe" -t CP932 $? | .\sjiscorr.exe > $@ +!ELSEIF DEFINED (ICONV) + $(ICONV) -f UTF-8 -t CP932 $? | .\sjiscorr.exe > $@ +!ELSE + powershell -nologo -noprofile -Command \ + [System.IO.File]::WriteAllText(\"$@\", \ + [System.IO.File]::ReadAllText(\"$?\", \ + [System.Text.Encoding]::GetEncoding(65001)), \ + [System.Text.Encoding]::GetEncoding(932)) + type $@ | .\sjiscorr.exe > tmp.$@ + @$(MV) tmp.$@ $@ +!ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(932)) \ + -replace \"`r`n\", \"`n\"; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(932)) + +sjiscorr: sjiscorr.c + $(CC) sjiscorr.c + +# Convert ja.po to create ja.euc-jp.po +ja.euc-jp.po: ja.po + -$(RM) $@ +!IF EXIST ("$(GETTEXT_PATH)\msgconv.exe") + "$(GETTEXT_PATH)\msgconv.exe" -t EUC-JP -o $@ $? +!ELSE +! IF DEFINED (ICONV) + $(ICONV) -f UTF-8 -t EUC-JP $? > $@ +! ELSE + powershell -nologo -noprofile -Command \ + [System.IO.File]::WriteAllText(\"$@\", \ + [System.IO.File]::ReadAllText(\"$?\", \ + [System.Text.Encoding]::GetEncoding(65001)), \ + [System.Text.Encoding]::GetEncoding(20932)) +! ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(20932)) -replace \ + 'charset=utf-8', 'charset=EUC-JP'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(20932)) +!ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(20932)) -replace \ + '# Original translations', \ + '# Generated from ja.po, DO NOT EDIT'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(20932)) + +# Convert cs.po to create cs.cp1250.po. +cs.cp1250.po: cs.po + -$(RM) $@ +!IF EXIST ("$(GETTEXT_PATH)\msgconv.exe") + "$(GETTEXT_PATH)\msgconv.exe" -t CP1250 -o $@ $? +!ELSE +! IF DEFINED (ICONV) + $(ICONV) -f ISO-8859-2 -t CP1250 $? > $@ +! ELSE + powershell -nologo -noprofile -Command \ + [System.IO.File]::WriteAllText(\"$@\", \ + [System.IO.File]::ReadAllText(\"$?\", \ + [System.Text.Encoding]::GetEncoding(28592)), \ + [System.Text.Encoding]::GetEncoding(1250)) +! ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(1250)) -replace \ + 'charset=iso-8859-2', 'charset=CP1250'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(1250)) +!ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(1250)) -replace \ + '# Original translations', \ + '# Generated from cs.po, DO NOT EDIT'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(1250)) + +# Convert pl.po to create pl.cp1250.po. +pl.cp1250.po: pl.po + -$(RM) $@ +!IF EXIST ("$(GETTEXT_PATH)\msgconv.exe") + "$(GETTEXT_PATH)\msgconv.exe" -t CP1250 -o $@ $? +!ELSE +! IF DEFINED (ICONV) + $(ICONV) -f ISO-8859-2 -t CP1250 $? > $@ +! ELSE + powershell -nologo -noprofile -Command \ + [System.IO.File]::WriteAllText(\"$@\", \ + [System.IO.File]::ReadAllText(\"$?\", \ + [System.Text.Encoding]::GetEncoding(28592)), \ + [System.Text.Encoding]::GetEncoding(1250)) +! ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(1250)) -replace \ + 'charset=iso-8859-2', 'charset=CP1250'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(1250)) +!ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(1250)) -replace \ + '# Original translations', \ + '# Generated from pl.po, DO NOT EDIT'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(1250)) + +# Convert pl.po to create pl.UTF-8.po. +pl.UTF-8.po: pl.po + -$(RM) $@ +!IF EXIST ("$(GETTEXT_PATH)\msgconv.exe") + "$(GETTEXT_PATH)\msgconv.exe" -t UTF-8 -o $@ $? +!ELSE +! IF DEFINED (ICONV) + $(ICONV) -f ISO-8859-2 -t UTF-8 $? > $@ +! ELSE + powershell -nologo -noprofile -Command \ + [System.IO.File]::WriteAllText(\"$@\", \ + [System.IO.File]::ReadAllText(\"$?\", \ + [System.Text.Encoding]::GetEncoding(28592))) +! ENDIF + powershell -nologo -noprofile -Command \ + (Get-Content -Raw -Encoding UTF8 $@ \ + ^| % {$$_-replace 'charset=iso-8859-2', 'charset=UTF-8'}) \ + ^| 1>nul New-Item -Force -Path . -ItemType file -Name $@ +!ENDIF + powershell -nologo -noprofile -Command \ + (Get-Content -Raw -Encoding UTF8 $@ \ + ^| % {$$_-replace '# Original translations', \ + '# Generated from pl.po, DO NOT EDIT'}) \ + ^| 1>nul New-Item -Force -Path . -ItemType file -Name $@ + +# Convert sk.po to create sk.cp1250.po. +sk.cp1250.po: sk.po + -$(RM) $@ +!IF EXIST ("$(GETTEXT_PATH)\msgconv.exe") + "$(GETTEXT_PATH)\msgconv.exe" -t CP1250 -o $@ $? +!ELSE +! IF DEFINED (ICONV) + $(ICONV) -f ISO-8859-2 -t CP1250 $? > $@ +! ELSE + powershell -nologo -noprofile -Command \ + [System.IO.File]::WriteAllText(\"$@\", \ + [System.IO.File]::ReadAllText(\"$?\", \ + [System.Text.Encoding]::GetEncoding(28592)), \ + [System.Text.Encoding]::GetEncoding(1250)) +! ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(1250)) -replace \ + 'charset=iso-8859-2', 'charset=CP1250'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(1250)) +!ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(1250)) -replace \ + '# Original translations', \ + '# Generated from sk.po, DO NOT EDIT'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(1250)) + +# Convert zh_CN.UTF-8.po to create zh_CN.po. +zh_CN.po: zh_CN.UTF-8.po + -$(RM) $@ +!IF EXIST ("$(GETTEXT_PATH)\msgconv.exe") + "$(GETTEXT_PATH)\msgconv.exe" -t GB2312 -o $@ $? +!ELSE +! IF DEFINED (ICONV) + $(ICONV) -f UTF-8 -t GB2312 $? > $@ +! ELSE + powershell -nologo -noprofile -Command \ + [System.IO.File]::WriteAllText(\"$@\", \ + [System.IO.File]::ReadAllText(\"$?\", \ + [System.Text.Encoding]::GetEncoding(65001)), \ + [System.Text.Encoding]::GetEncoding(936)) + +! ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(936)) -replace \ + 'charset=UTF-8', 'charset=GB2312'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(936)) +!ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(936)) -replace \ + '# Original translations', \ + '# Generated from zh_CN.UTF-8.po, DO NOT EDIT'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(936)) + +# Convert zh_CN.UTF-8.po to create zh_CN.cp936.po. +# Set 'charset' to gbk to avoid that msfmt generates a warning. +# This used to convert from zh_CN.po, but that results in a conversion error. +zh_CN.cp936.po: zh_CN.UTF-8.po + -$(RM) $@ +!IF DEFINED (ICONV) + $(ICONV) -f UTF-8 -t CP936 $? > $@ +!ELSE + powershell -nologo -noprofile -Command \ + [System.IO.File]::WriteAllText(\"$@\", \ + [System.IO.File]::ReadAllText(\"$?\", \ + [System.Text.Encoding]::GetEncoding(65001)), \ + [System.Text.Encoding]::GetEncoding(20936)) + +!ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(20936)) \ + -replace 'charset=UTF-8', 'charset=GBK'\ + -replace '# Original translations', \ + '# Generated from zh_CN.UTF-8.po, DO NOT EDIT'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(20936)) + +# Convert zh_TW.UTF-8.po to create zh_TW.po +zh_TW.po: zh_TW.UTF-8.po + -$(RM) $@ +!IF EXIST ("$(GETTEXT_PATH)\msgconv.exe") + "$(GETTEXT_PATH)\msgconv.exe" -t BIG5 -o $@ $? +!ELSE +! IF DEFINED (ICONV) + $(ICONV) -f UTF-8 -t BIG5 $? > $@ +! ELSE + powershell -nologo -noprofile -Command \ + [System.IO.File]::WriteAllText(\"$@\", \ + [System.IO.File]::ReadAllText(\"$?\", \ + [System.Text.Encoding]::GetEncoding(65001)), \ + [System.Text.Encoding]::GetEncoding(950)) + +! ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(950)) -replace \ + 'charset=UTF-8', 'charset=BIG5'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(950)) +!ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(950)) -replace \ + '# Original translations', \ + '# Generated from zh_TW.UTF-8.po, DO NOT EDIT'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(950)) + +# Convert zh_TW.UTF-8.po to create zh_TW.po with backslash characters +# Requires doubling backslashes in the second byte. Don't depend on big5corr, +# it should only be compiled when zh_TW.po is outdated. +# +# 06.11.23, added by Restorer: +# For more details, see: +# https://github.com/vim/vim/pull/3261 +# https://github.com/vim/vim/pull/3476 +# https://github.com/vim/vim/pull/12153 +# (read all comments) +# +# I checked the workability on the list of backslash characters +# specified in zh_TW.UTF-8.po. It works. +# But it is better to have someone native speaker check it. +# + +#zh_TW.po: zh_TW.UTF-8.po +# @$(MAKE) -nologo -f Make_mvc.mak big5corr +# -$(RM) $@ +#!IF EXIST ("$(GETTEXT_PATH)\msgconv.exe") +# "$(GETTEXT_PATH)\msgconv.exe" -t BIG5 $? | .\big5corr.exe > $@ +#!ELSEIF DEFINED (ICONV) +# $(ICONV) -f UTF-8 -t BIG5 $? | .\big5corr.exe > $@ +#!ELSE +# powershell -nologo -noprofile -Command \ +# [System.IO.File]::WriteAllText(\"$@\", \ +# [System.IO.File]::ReadAllText(\"$?\", \ +# [System.Text.Encoding]::GetEncoding(65001)), \ +# [System.Text.Encoding]::GetEncoding(950)) +# type $@ | .\big5corr.exe > tmp.$@ +# @$(MV) tmp.$@ $@ +#!ENDIF +# powershell -nologo -noprofile -Command \ +# $$out = [System.IO.File]::ReadAllText(\"$@\", \ +# [System.Text.Encoding]::GetEncoding(950)) \ +# -replace \"`r`n\", \"`n\"; \ +# [System.IO.File]::WriteAllText(\"$@\", $$out, \ +# [System.Text.Encoding]::GetEncoding(950)) + +# see above in the zh_TW.po conversion section for backslashes. +#big5corr: big5corr.c +# $(CC) big5corr.c + +# Convert ko.UTF-8.po to create ko.po. +ko.po: ko.UTF-8.po + -$(RM) $@ +!IF EXIST ("$(GETTEXT_PATH)\msgconv.exe") + "$(GETTEXT_PATH)\msgconv.exe" -t EUC-KR -o $@ $? +!ELSE +! IF DEFINED (ICONV) + $(ICONV) -f UTF-8 -t EUC-KR $? > $@ +! ELSE + powershell -nologo -noprofile -Command \ + [System.IO.File]::WriteAllText(\"$@\", \ + [System.IO.File]::ReadAllText(\"$?\", \ + [System.Text.Encoding]::GetEncoding(65001)), \ + [System.Text.Encoding]::GetEncoding(51949)) + +! ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(51949)) -replace \ + 'charset=UTF-8', 'charset=EUC-KR'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(51949)) +!ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(51949)) -replace \ + '# Original translations', \ + '# Generated from ko.UTF-8.po, DO NOT EDIT'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(51949)) + +# Convert ru.po to create ru.cp1251.po. +ru.cp1251.po: ru.po + -$(RM) $@ +!IF EXIST ("$(GETTEXT_PATH)\msgconv.exe") + "$(GETTEXT_PATH)\msgconv.exe" -t CP1251 -o $@ $? +!ELSE +! IF DEFINED (ICONV) + $(ICONV) -f UTF-8 -t CP1251 $? > $@ +! ELSE + powershell -nologo -noprofile -Command \ + [System.IO.File]::WriteAllText(\"$@\", \ + [System.IO.File]::ReadAllText(\"$?\", \ + [System.Text.Encoding]::GetEncoding(65001)), \ + [System.Text.Encoding]::GetEncoding(1251)) + +! ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(1251)) -replace \ + 'charset=UTF-8', 'charset=CP1251'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(1251)) +!ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(1251)) -replace \ + '# Original translations', \ + '# Generated from ru.po, DO NOT EDIT'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(1251)) + +# Convert uk.po to create uk.cp1251.po. +uk.cp1251.po: uk.po + -$(RM) $@ +!IF EXIST ("$(GETTEXT_PATH)\msgconv.exe") + "$(GETTEXT_PATH)\msgconv.exe" -t CP1251 -o $@ $? +!ELSE +! IF DEFINED (ICONV) + $(ICONV) -f UTF-8 -t CP1251 $? > $@ +! ELSE + powershell -nologo -noprofile -Command \ + [System.IO.File]::WriteAllText(\"$@\", \ + [System.IO.File]::ReadAllText(\"$?\", \ + [System.Text.Encoding]::GetEncoding(65001)), \ + [System.Text.Encoding]::GetEncoding(1251)) + +! ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(1251)) -replace \ + 'charset=UTF-8', 'charset=CP1251'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(1251)) +!ENDIF + powershell -nologo -noprofile -Command \ + $$out = [System.IO.File]::ReadAllText(\"$@\", \ + [System.Text.Encoding]::GetEncoding(1251)) -replace \ + '# Original translations', \ + '# Generated from uk.po, DO NOT EDIT'; \ + [System.IO.File]::WriteAllText(\"$@\", $$out, \ + [System.Text.Encoding]::GetEncoding(1251)) .po.mo: set OLD_PO_FILE_INPUT=yes $(MSGFMT) -o $@ $< -all: $(MOFILES) $(MOCONVERTED) - PO_INPUTLIST = \ ..\*.c \ ..\if_perl.xs \ @@ -57,22 +498,32 @@ files: $(PO_INPUTLIST) $(LS) $(LSFLAGS) $(PO_INPUTLIST) > .\files first_time: files - $(VIM) -u NONE --not-a-term -S tojavascript.vim $(LANGUAGE).pot $(PO_VIM_INPUTLIST) + $(VIM) -u NONE --not-a-term -S tojavascript.vim $(LANGUAGE).po \ + $(PO_VIM_INPUTLIST) set OLD_PO_FILE_INPUT=yes set OLD_PO_FILE_OUTPUT=yes - $(XGETTEXT) --default-domain=$(LANGUAGE) --add-comments $(XGETTEXT_KEYWORDS) --files-from=.\files $(PO_VIM_JSLIST) - $(VIM) -u NONE --not-a-term -S fixfilenames.vim $(LANGUAGE).pot $(PO_VIM_INPUTLIST) + $(XGETTEXT) --default-domain=$(LANGUAGE) --add-comments $(XGETTEXT_KEYWORDS) \ + --files-from=.\files $(PO_VIM_JSLIST) + $(VIM) -u NONE --not-a-term -S fixfilenames.vim $(LANGUAGE).po \ + $(PO_VIM_INPUTLIST) $(RM) *.js $(PACKAGE).pot: files - $(VIM) -u NONE --not-a-term -S tojavascript.vim $(PACKAGE).pot $(PO_VIM_INPUTLIST) + $(VIM) -u NONE --not-a-term -S tojavascript.vim $(PACKAGE).pot \ + $(PO_VIM_INPUTLIST) set OLD_PO_FILE_INPUT=yes set OLD_PO_FILE_OUTPUT=yes - $(XGETTEXT) --default-domain=$(PACKAGE) --add-comments $(XGETTEXT_KEYWORDS) --files-from=.\files $(PO_VIM_JSLIST) + $(XGETTEXT) --default-domain=$(PACKAGE) --add-comments $(XGETTEXT_KEYWORDS) \ + --files-from=.\files $(PO_VIM_JSLIST) $(MV) $(PACKAGE).po $(PACKAGE).pot - $(VIM) -u NONE --not-a-term -S fixfilenames.vim $(PACKAGE).pot $(PO_VIM_INPUTLIST) + $(VIM) -u NONE --not-a-term -S fixfilenames.vim $(PACKAGE).pot \ + $(PO_VIM_INPUTLIST) $(RM) *.js +# When updating ja.sjis.po there are a bunch of errors and a crash. +# The files that are converted to a different encoding clearly state "DO NOT EDIT". +update-po: $(MOFILES:.mo=) + # Don't add a dependency here, we only want to update the .po files manually $(LANGUAGES): @$(MAKE) -nologo -f Make_mvc.mak $(PACKAGE).pot GETTEXT_PATH=$(GETTEXT_PATH) @@ -81,15 +532,27 @@ first_time: files $(MSGMERGE) $@.po.old $(PACKAGE).pot -o $@.po $(RM) $@.po.old -install: +install: $(LANGUAGE).mo if not exist $(INSTALLDIR) $(MKD) $(INSTALLDIR) $(CP) $(LANGUAGE).mo $(INSTALLDIR)\$(PACKAGE).mo install-all: all - FOR %%l IN ($(LANGUAGES)) DO @IF NOT EXIST $(VIMRUNTIME)\lang\%%l\LC_MESSAGES $(MKD) $(VIMRUNTIME)\lang\%%l\LC_MESSAGES - FOR %%l IN ($(LANGUAGES)) DO @$(CP) %%l.mo $(VIMRUNTIME)\lang\%%l\LC_MESSAGES\$(PACKAGE).mo + for %%l in ($(LANGUAGES)) do @if not exist $(VIMRUNTIME)\lang\%%l\LC_MESSAGES \ + $(MKD) $(VIMRUNTIME)\lang\%%l\LC_MESSAGES + for %%l in ($(LANGUAGES)) do @$(CP) %%l.mo \ + $(VIMRUNTIME)\lang\%%l\LC_MESSAGES\$(PACKAGE).mo -clean: +cleanup-po: $(LANGUAGE).po + $(VIM) -u NONE -e -X -S cleanup.vim -c wq $** + +cleanup-po-all: $(POFILES) + !$(VIM) -u NONE -e -X -S cleanup.vim -c wq $** + +clean: checkclean $(RM) *.mo $(RM) *.pot $(RM) files + $(RM) sjiscorr.obj sjiscorr.exe +# $(RM) big5corr.obj big5corr.exe + +# vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0 ft=make: