소스 검색

Add make command update-translations for update translations from crodwin (#2097)

* add make command update-translations for update translations from crowdin to options/locale

* use curl & resolve double quote on make file
tags/v1.2.0-rc1
Lunny Xiao 7 년 전
부모
커밋
dde9a8648e
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10
    0
      Makefile

+ 10
- 0
Makefile 파일 보기

@@ -278,3 +278,13 @@ swagger-ui:

.PHONY: assets
assets: javascripts stylesheets

.PHONY: update-translations
update-translations:
mkdir -p ./translations
cd ./translations && curl -L https://crowdin.com/download/project/gitea.zip > gitea.zip && unzip gitea.zip
rm ./translations/gitea.zip
$(SED_INPLACE) -e 's/="/=/g' -e 's/"$$//g' ./translations/*.ini
$(SED_INPLACE) -e 's/\\"/"/g' ./translations/*.ini
mv ./translations/*.ini ./options/locale/
rmdir ./translations

Loading…
취소
저장