Skip to content

Commit

Permalink
Add script to update all language resources
Browse files Browse the repository at this point in the history
  • Loading branch information
crosire committed Jan 24, 2025
1 parent 7748784 commit 6ef240f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tools/update_all_languages.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
if ((Get-Command "xgettext.exe" -ErrorAction SilentlyContinue) -eq $null)
{
Write-Host "Unable to find xgettext.exe. Please download https://gnuwin32.sourceforge.net/packages/gettext.htm."
return
}

.\create_language_template.ps1 bg-BG
.\create_language_template.ps1 de-DE
.\create_language_template.ps1 en-US
.\create_language_template.ps1 es-ES
.\create_language_template.ps1 fr-FR
.\create_language_template.ps1 ja-JP
.\create_language_template.ps1 ko-KR
.\create_language_template.ps1 ru-RU
.\create_language_template.ps1 zh-CN

0 comments on commit 6ef240f

Please sign in to comment.