Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hbulens/710cd536a60e3d827e0f13df4a88417e to your computer and use it in GitHub Desktop.
Save hbulens/710cd536a60e3d827e0f13df4a88417e to your computer and use it in GitHub Desktop.
param([string]$cultureName='')
$localePath=’C:\Users\hbulens\Desktop\test\{0}.js’ -f $cultureName
$localeTemplate = "@
Ext.onReady(function() {
if (Ext.util && Ext.util.Format) {
Ext.apply(Ext.util.Format, {
thousandSeparator: '.',
decimalSeparator: ',',
currencySign: 'R',
dateFormat: 'd-m-Y'
});
}
});
;@
Set-Content -Value $localeTemplate -Path $localePath
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment