mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
[se] changenames s1
This commit is contained in:
@ -0,0 +1,23 @@
|
||||
$Lcids = ([System.Globalization.CultureInfo]::GetCultures( [System.Globalization.CultureTypes]::AllCultures ) | Select-Object -ExpandProperty Name)
|
||||
|
||||
foreach($i in $Lcids) {
|
||||
|
||||
echo Set-Culture $i
|
||||
Set-Culture $i
|
||||
Start-Sleep -Seconds 1
|
||||
|
||||
$pathMacro = $(pwd).Path + "\macros-locale-data.xlsm"
|
||||
$pathOutput = $(pwd).Path + "\" + $i + ".txt"
|
||||
echo .\run-macros-data.vbs $i
|
||||
|
||||
.\run-macros-data.vbs $i
|
||||
Start-Sleep -Seconds 7
|
||||
|
||||
}
|
||||
|
||||
Set-Culture ru-Ru
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -0,0 +1,6 @@
|
||||
Set objExcel = CreateObject("Excel.Application")
|
||||
objExcel.Application.Run "'" & WScript.Arguments(0) & "'!Module1.numformatlocale", WScript.Arguments(1)
|
||||
objExcel.DisplayAlerts = False
|
||||
|
||||
objExcel.Application.Quit
|
||||
Set objExcel = Nothing
|
||||
Reference in New Issue
Block a user