resourcesBefore.ps1
<#
This file loads the strings documents from the respective language folders. This allows localizing messages and errors. Load psd1 language files for each language you wish to support. Partial translations are acceptable - when missing a current language message, it will fallback to English or another available language. #> Import-PSFLocalizedString -Path "$($ModuleRoot)\en-us\*.psd1" -Module 'fscps.tools' -Language 'en-US' enum EnvironmentType { Unknown LocalHostedTier1 AzureHostedTier1 MSHostedTier1 MSHostedTier2 } enum ServerRole { Unknown Development Demo Build AOS BI } enum LcsAssetFileType { Model = 1 ProcessDataPackage = 4 SoftwareDeployablePackage = 10 GERConfiguration = 12 DataPackage = 15 PowerBIReportModel = 19 ECommercePackage = 26 NuGetPackage = 27 RetailSelfServicePackage = 28 CommerceCloudScaleUnitExtension = 29 } enum NuGetType { ApplicationSuiteDevALM ApplicationDevALM PlatformDevALM PlatformCompilerPackage } enum FSCPSType { FSCM Commerce ECommerce } |