mirror of
https://github.com/k4yt3x/video2x.git
synced 2025-11-03 06:01:02 +01:00
15 lines
436 B
PowerShell
15 lines
436 B
PowerShell
<#
|
|
Name: Video2X Generate POT Script
|
|
Creator: K4YT3X
|
|
Date Created: September 12, 2020
|
|
Last Modified: September 12, 2020
|
|
|
|
Description: A PowerShell script that uses Python's pygettext
|
|
script to generate the POT file for translations.
|
|
|
|
To start a PowerShell session with execution policy bypass
|
|
powershell -ExecutionPolicy Bypass
|
|
#>
|
|
|
|
python $env:LOCALAPPDATA\Programs\Python\Python38\Tools\i18n\pygettext.py -d video2x *.py wrappers\*.py
|