-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0de9f5
commit 5809133
Showing
4 changed files
with
183 additions
and
161 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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 |
---|---|---|
@@ -1,66 +1,67 @@ | ||
@{ | ||
# HerrWinfried - Office Installer | ||
ScriptTitle = 'Office Installer' | ||
# odt.exe not found. Downloading from the internet... | ||
NotFoundOdt = 'odt.exe not found.' | ||
DownloadInternet = 'Downloading from the internet...' | ||
# odt.exe was downloaded successfully. | ||
OdtDownload = 'odt.exe was downloaded successfully.' | ||
# odt.exe could not be downloaded. Please check the URL and your internet connection. | ||
OdtDownloadNot = 'odt.exe could not be downloaded. Please check the URL and your internet connection.' | ||
# Extracting odt.exe | ||
OdtSetupExeExt = 'Extracting odt.exe' | ||
# setup.exe has been added successfully. | ||
OdtSetupExe = 'setup.exe has been added successfully.' | ||
# setup.exe extraction failed. | ||
OdtSetupExeNot = 'setup.exe extraction failed.' | ||
ScriptTitle = '{0} - Office Installer' | ||
# setup.exe not found. Extracting from odt.exe... | ||
TestSetupExe = 'setup.exe not found. Extracting from odt.exe...' | ||
# $Global:ConfigPath not found. Please check the existence of the file. | ||
TestConfigFileInfo = '{0} not found. Please check the existence of the file.' | ||
TestSetup = 'setup.exe not found. Extracting from odt.exe...' | ||
# <COMMAND> Not Found. | ||
NotFound = '{0} Not Found.' | ||
# Downloading from the internet... | ||
DownloadInternet = 'Downloading from the internet...' | ||
# <COMMAND.EXE> was downloaded successfully. | ||
DownloadSuccess = '{0} was downloaded successfully.' | ||
# <COMMAND.EXE> could not be downloaded. Please check the URL and your internet connection. | ||
DownloadFailed = '{0} could not be downloaded. Please check the URL and your internet connection.' | ||
# Extracting <COMMAND.EXE/FILE> | ||
Extracting = 'Extracting {0}' | ||
# <COMMAND.EXE/FILE> has been added successfully. | ||
ExtractingSuccess = '{0} has been added successfully.' | ||
# <COMMAND.EXE/FILE> extraction failed. | ||
ExtractingFailed = '{0} setup.exe extraction failed.' | ||
# <FILE PATH> not found. Please check the existence of the file. | ||
ConfigFile1 = '{0} not found. Please check the existence of the file.' | ||
# Export > Default File Format > Office Open XML Formats | ||
TestConfigFileInfoHelp = 'Export > Default File Format > Office Open XML Formats' | ||
# Not found setup.exe | ||
InvokeOfficeNotFoundSetupExe = 'Not found setup.exe' | ||
# Found $GetScriptDir\office.old. Deleting... | ||
InvokeOfficeFoundOffice_old = 'Found {0}. Deleting...' | ||
# Found $GetScriptDir\office. Renaming to $GetScriptDir\office.old | ||
InvokeOfficeFoundOffice = 'Found {0}. Renaming to {1}' | ||
# Starting $SetupPath | ||
ConfigFile2 = 'Export > Default File Format > Office Open XML Formats' | ||
# Starting <COMMAND.EXE> | ||
Starting = 'Starting {0}' | ||
# Nothing will change until the process is completed. | ||
InvokeOfficeInfo = 'Nothing will change until the process is completed.' | ||
#You can monitor the download by checking $GetScriptDir\office or your internet status in the task manager. | ||
InvokeOfficeInfo1 = 'You can monitor the download by checking {0} or your internet status in the task manager.' | ||
# Office was downloaded successfully. | ||
DownloadSuccessOffice = '{0} was downloaded successfully.' | ||
# Office could not be downloaded. Please check the URL and your internet connection. | ||
DownloadFailedOffice = '{0} could not be downloaded. Please check the URL and your internet connection.' | ||
# Office successfully downloaded. | ||
InvokeOfficeDownload = 'Office successfully downloaded.' | ||
# Office download failed. | ||
InvokeOfficeDownloadNot = 'Office download failed.' | ||
# Office folder not found. Downloading... | ||
InstallOfficeFoundOfficeNot = 'Office folder not found. Downloading...' | ||
# Office successfully downloaded. | ||
InstallOfficeDownload = 'Office successfully installed.' | ||
InstallSuccessOffice = '{0} successfully installed.' | ||
# Office download failed. | ||
InstallOfficeDownloadNot = 'Office installation failed.' | ||
InstallFailedOffice = '{0} installation failed.' | ||
# Select the Configuration XML File | ||
OpenFileDialogTitle = 'Select the Configuration XML File' | ||
# Configuration path set to $Global:ConfigPath | ||
SetConfigSuccessPath= 'Configuration path set to {0}' | ||
# Configuration path set to <FILE PATH> | ||
SetConfigSuccessPath = 'Configuration path set to {0}' | ||
# This setting will be reset when you reopen the program. | ||
SetConfigSuccessWarn= 'This setting will be reset when you reopen the program.' | ||
# File not found at $newConfigPath. Please check the path and try again. | ||
SetConfigFailedPath= 'File not found at {0}. Please check the path and try again.' | ||
# Configuration Path: | ||
ShowMenuConfigPath = 'Configuration Path:' | ||
# Office Path: | ||
ShowMenuOfficePath = 'Office Path:' | ||
# Please make a selection: | ||
ShowMenuSelection = 'Please make a selection:' | ||
SetConfigSuccessWarn = 'This setting will be reset when you reopen the program.' | ||
# File not found at <FILE PATH>. Please check the path and try again. | ||
SetConfigFailedPath = 'File not found at {0}. Please check the path and try again.' | ||
|
||
# Configuration Path: <PATH> | ||
ShowMenuConfigPath = 'Configuration Path: {0}' | ||
# Office Path: <PATH> | ||
ShowMenuOfficePath = 'Office Path: {0}' | ||
# Please make a selection: | ||
ShowMenuSelection = 'Please make a selection' | ||
# Enter your choice | ||
ShowMenuInput = 'Enter your choice' | ||
# Exit Script | ||
ShowMenuZero = 'Exit Script' | ||
ShowMenuOne = 'Download Office' | ||
ShowMenuTwo = 'Install Office' | ||
# Download and Install | ||
ShowMenuOne = 'Download Office and Install Office' | ||
# Download Office | ||
ShowMenuTwo = 'Download Office' | ||
# Install Office | ||
ShowMenuThree = 'Install Office' | ||
# Change Configuration | ||
ShowMenuFour = 'Change Configuration' | ||
# You made an invalid selection. | ||
ShowMenuInvalid = 'You made an invalid selection.' | ||
} |
Oops, something went wrong.