-
-
Notifications
You must be signed in to change notification settings - Fork 567
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add script to update all language resources
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |