├── CHANGES.txt ├── Databases └── PSADT.sqlite ├── DeploymentEditor.exe ├── DeploymentEditor.pb ├── DeploymentEditor.pbp ├── Examples └── CPU-Z.db ├── Forms ├── AboutWindow.pbf ├── MainWindow.pbf ├── NewProjectWindow.pbf ├── PluginWindow.pbf ├── ProjectSettingsWindow.pbf └── RunRemoteWindow.pbf ├── Icon.ico ├── LICENSE ├── LICENSE_PSADT.txt ├── LICENSE_ThirdParty.txt ├── Plugins ├── Enabled-CompanyBranding │ ├── Assets │ │ ├── AppIcon.png │ │ └── Banner.Classic.png │ ├── CompanyBranding.ps1 │ └── Plugin.ini ├── Enabled-HelloWorld │ ├── HelloWorld.ps1 │ └── Plugin.ini └── Enabled-Install_PSAppDeployToolkit │ ├── Install-PSAppDeployToolkit.ps1 │ └── Plugin.ini ├── README.md ├── Ressources ├── Animation_Loading.gif ├── Icon_ArrowDown.png ├── Icon_ArrowUp.png ├── Icon_Check.png ├── Icon_Check_24px.png ├── Icon_Database.png ├── Icon_Disabled_24px.png ├── Icon_Dot.png ├── Icon_EXE.png ├── Icon_EXE_32px.png ├── Icon_Exclamation.png ├── Icon_Exclamation_24px.png ├── Icon_Executable.png ├── Icon_Go.png ├── Icon_Go_48px.png ├── Icon_Help.png ├── Icon_If_24px.png ├── Icon_Info.png ├── Icon_Information.png ├── Icon_Installer.png ├── Icon_MSI.png ├── Icon_Package.png ├── Icon_Package_128px.png ├── Icon_Package_512px.png ├── Icon_Package_512px_White.png ├── Icon_Package_80px.png ├── Icon_Plugin.png ├── Icon_PowerShell.png ├── Icon_PowerShell_24px.png ├── Icon_Repair.png ├── Icon_Rocket.png ├── Icon_Uninstall.png └── PSADT Branding.free ├── Screenshot.png ├── Scripts ├── PSADT.sqlite ├── PSADT4-ExportCommandsAndParameters.ps1 ├── PSADT4-GenerateDatabase.pb ├── PSADT4-HelpConsole.ps1 ├── PSADT4_Commands.csv └── PSADT4_Parameters.csv ├── Snippets └── PowerShell │ └── Dummy.ps1 ├── Templates ├── Invoke-AppDeployToolkit.db ├── Invoke-AppDeployToolkit.ps1 └── Windows Sandbox.wsb ├── Test ├── Assets │ ├── AppIcon.png │ └── Banner.Classic.png ├── COPYING.Lesser ├── Config │ └── config.psd1 ├── Files │ ├── 7-Zip.exe │ ├── 7-Zip.msi │ └── Add Setup Files Here.txt ├── Invoke-AppDeployToolkit.db ├── Invoke-AppDeployToolkit.exe ├── Invoke-AppDeployToolkit.ps1 ├── Invoke-AppDeployToolkit.ps1.template ├── PSAppDeployToolkit.Extensions │ ├── COPYING.Lesser │ ├── PSAppDeployToolkit.Extensions.psd1 │ └── PSAppDeployToolkit.Extensions.psm1 ├── PSAppDeployToolkit │ ├── Assets │ │ ├── AppIcon.png │ │ └── Banner.Classic.png │ ├── COPYING.Lesser │ ├── Config │ │ └── config.psd1 │ ├── Frontend │ │ ├── v3 │ │ │ ├── AppDeployToolkit │ │ │ │ ├── AppDeployToolkitExtensions.ps1 │ │ │ │ ├── AppDeployToolkitMain.ps1 │ │ │ │ └── COPYING.Lesser │ │ │ ├── COPYING.Lesser │ │ │ └── Deploy-Application.exe │ │ └── v4 │ │ │ ├── COPYING.Lesser │ │ │ ├── Invoke-AppDeployToolkit.exe │ │ │ ├── Invoke-AppDeployToolkit.ps1 │ │ │ └── PSAppDeployToolkit.Extensions │ │ │ ├── COPYING.Lesser │ │ │ ├── PSAppDeployToolkit.Extensions.psd1 │ │ │ └── PSAppDeployToolkit.Extensions.psm1 │ ├── PSAppDeployToolkit.cer │ ├── PSAppDeployToolkit.psd1 │ ├── PSAppDeployToolkit.psm1 │ ├── Strings │ │ ├── ar │ │ │ └── strings.psd1 │ │ ├── cz │ │ │ └── strings.psd1 │ │ ├── da │ │ │ └── strings.psd1 │ │ ├── de │ │ │ └── strings.psd1 │ │ ├── el │ │ │ └── strings.psd1 │ │ ├── es │ │ │ └── strings.psd1 │ │ ├── fi │ │ │ └── strings.psd1 │ │ ├── fr │ │ │ └── strings.psd1 │ │ ├── he │ │ │ └── strings.psd1 │ │ ├── hu │ │ │ └── strings.psd1 │ │ ├── it │ │ │ └── strings.psd1 │ │ ├── ja │ │ │ └── strings.psd1 │ │ ├── ko │ │ │ └── strings.psd1 │ │ ├── nb │ │ │ └── strings.psd1 │ │ ├── nl │ │ │ └── strings.psd1 │ │ ├── pl │ │ │ └── strings.psd1 │ │ ├── pt-br │ │ │ └── strings.psd1 │ │ ├── pt │ │ │ └── strings.psd1 │ │ ├── ru │ │ │ └── strings.psd1 │ │ ├── sk │ │ │ └── strings.psd1 │ │ ├── strings.psd1 │ │ ├── sv │ │ │ └── strings.psd1 │ │ ├── tr │ │ │ └── strings.psd1 │ │ ├── zh-hans │ │ │ └── strings.psd1 │ │ └── zh-hant │ │ │ └── strings.psd1 │ ├── Templates │ │ └── New-ADTFunction.ps1 │ ├── bin │ │ ├── AMD64 │ │ │ └── handle │ │ │ │ ├── Eula.txt │ │ │ │ └── handle.exe │ │ ├── ARM64 │ │ │ └── handle │ │ │ │ ├── Eula.txt │ │ │ │ └── handle.exe │ │ └── i386 │ │ │ └── handle │ │ │ ├── Eula.txt │ │ │ └── handle.exe │ └── lib │ │ ├── PSADT.UserInterface.dll │ │ ├── PSADT.dll │ │ ├── System.ValueTuple.dll │ │ ├── Wpf.Ui.Abstractions.dll │ │ ├── Wpf.Ui.Abstractions.xml │ │ ├── Wpf.Ui.Tray.dll │ │ ├── Wpf.Ui.Tray.xml │ │ ├── Wpf.Ui.dll │ │ └── Wpf.Ui.xml ├── Strings │ ├── ar │ │ └── strings.psd1 │ ├── cz │ │ └── strings.psd1 │ ├── da │ │ └── strings.psd1 │ ├── de │ │ └── strings.psd1 │ ├── el │ │ └── strings.psd1 │ ├── es │ │ └── strings.psd1 │ ├── fi │ │ └── strings.psd1 │ ├── fr │ │ └── strings.psd1 │ ├── he │ │ └── strings.psd1 │ ├── hu │ │ └── strings.psd1 │ ├── it │ │ └── strings.psd1 │ ├── ja │ │ └── strings.psd1 │ ├── ko │ │ └── strings.psd1 │ ├── nb │ │ └── strings.psd1 │ ├── nl │ │ └── strings.psd1 │ ├── pl │ │ └── strings.psd1 │ ├── pt-br │ │ └── strings.psd1 │ ├── pt │ │ └── strings.psd1 │ ├── ru │ │ └── strings.psd1 │ ├── sk │ │ └── strings.psd1 │ ├── strings.psd1 │ ├── sv │ │ └── strings.psd1 │ ├── tr │ │ └── strings.psd1 │ ├── zh-hans │ │ └── strings.psd1 │ └── zh-hant │ │ └── strings.psd1 ├── SupportFiles │ └── Add Supporting Files Here.txt └── Windows Sandbox.wsb └── ThirdParty └── PSAppDeployToolkit ├── Assets ├── AppIcon.png └── Banner.Classic.png ├── COPYING.Lesser ├── Config └── config.psd1 ├── Files └── Add Setup Files Here.txt ├── Invoke-AppDeployToolkit.exe ├── Invoke-AppDeployToolkit.ps1 ├── PSAppDeployToolkit.Extensions ├── COPYING.Lesser ├── PSAppDeployToolkit.Extensions.psd1 └── PSAppDeployToolkit.Extensions.psm1 ├── PSAppDeployToolkit ├── Assets │ ├── AppIcon.png │ └── Banner.Classic.png ├── COPYING.Lesser ├── Config │ └── config.psd1 ├── Frontend │ ├── v3 │ │ ├── AppDeployToolkit │ │ │ ├── AppDeployToolkitExtensions.ps1 │ │ │ ├── AppDeployToolkitMain.ps1 │ │ │ └── COPYING.Lesser │ │ ├── COPYING.Lesser │ │ └── Deploy-Application.exe │ └── v4 │ │ ├── COPYING.Lesser │ │ ├── Invoke-AppDeployToolkit.exe │ │ ├── Invoke-AppDeployToolkit.ps1 │ │ └── PSAppDeployToolkit.Extensions │ │ ├── COPYING.Lesser │ │ ├── PSAppDeployToolkit.Extensions.psd1 │ │ └── PSAppDeployToolkit.Extensions.psm1 ├── PSAppDeployToolkit.cer ├── PSAppDeployToolkit.psd1 ├── PSAppDeployToolkit.psm1 ├── Strings │ ├── ar │ │ └── strings.psd1 │ ├── cz │ │ └── strings.psd1 │ ├── da │ │ └── strings.psd1 │ ├── de │ │ └── strings.psd1 │ ├── el │ │ └── strings.psd1 │ ├── es │ │ └── strings.psd1 │ ├── fi │ │ └── strings.psd1 │ ├── fr │ │ └── strings.psd1 │ ├── he │ │ └── strings.psd1 │ ├── hu │ │ └── strings.psd1 │ ├── it │ │ └── strings.psd1 │ ├── ja │ │ └── strings.psd1 │ ├── ko │ │ └── strings.psd1 │ ├── nb │ │ └── strings.psd1 │ ├── nl │ │ └── strings.psd1 │ ├── pl │ │ └── strings.psd1 │ ├── pt-br │ │ └── strings.psd1 │ ├── pt │ │ └── strings.psd1 │ ├── ru │ │ └── strings.psd1 │ ├── sk │ │ └── strings.psd1 │ ├── strings.psd1 │ ├── sv │ │ └── strings.psd1 │ ├── tr │ │ └── strings.psd1 │ ├── zh-hans │ │ └── strings.psd1 │ └── zh-hant │ │ └── strings.psd1 ├── Templates │ └── New-ADTFunction.ps1 ├── bin │ ├── AMD64 │ │ └── handle │ │ │ ├── Eula.txt │ │ │ └── handle.exe │ ├── ARM64 │ │ └── handle │ │ │ ├── Eula.txt │ │ │ └── handle.exe │ └── i386 │ │ └── handle │ │ ├── Eula.txt │ │ └── handle.exe └── lib │ ├── PSADT.UserInterface.dll │ ├── PSADT.dll │ ├── System.ValueTuple.dll │ ├── Wpf.Ui.Abstractions.dll │ ├── Wpf.Ui.Abstractions.xml │ ├── Wpf.Ui.Tray.dll │ ├── Wpf.Ui.Tray.xml │ ├── Wpf.Ui.dll │ └── Wpf.Ui.xml ├── Strings ├── ar │ └── strings.psd1 ├── cz │ └── strings.psd1 ├── da │ └── strings.psd1 ├── de │ └── strings.psd1 ├── el │ └── strings.psd1 ├── es │ └── strings.psd1 ├── fi │ └── strings.psd1 ├── fr │ └── strings.psd1 ├── he │ └── strings.psd1 ├── hu │ └── strings.psd1 ├── it │ └── strings.psd1 ├── ja │ └── strings.psd1 ├── ko │ └── strings.psd1 ├── nb │ └── strings.psd1 ├── nl │ └── strings.psd1 ├── pl │ └── strings.psd1 ├── pt-br │ └── strings.psd1 ├── pt │ └── strings.psd1 ├── ru │ └── strings.psd1 ├── sk │ └── strings.psd1 ├── strings.psd1 ├── sv │ └── strings.psd1 ├── tr │ └── strings.psd1 ├── zh-hans │ └── strings.psd1 └── zh-hant │ └── strings.psd1 └── SupportFiles └── Add Supporting Files Here.txt /CHANGES.txt: -------------------------------------------------------------------------------- 1 | Version 1.0.7 (Preview 7, Development): 2 | * Updated PSADT and templates to v4.0.6 (#4) 3 | * Added condition for each action/command (#6) 4 | * Added project based template file (#5) 5 | * Added action parameter to command: Start-ADTMsiProcess (#2) 6 | * Added test project with MSI example (#2) 7 | * Added word wrap in description editor 8 | 9 | Version 1.0.6 (Preview 6): 10 | * Added new feature: Run Installation in Windows Sandbox 11 | * Added PowerShell & PureBasic script to build PSADT.sqlite 12 | * Added basic plugin support (PowerShell only) 13 | * Added scrollbar area for action editor/command values (support for lower screen resolutions) 14 | * Updated Script Builder: -ContinueOnError 1" replaced with "-ErrorAction SilentlyContinue" 15 | * Updated links to new PSADTv4 documentation 16 | * Updated PSADT templates for PSADTv4 17 | * Updated PSADT template: Added install/uninstall/repair registry entry to HKEY_LOCAL_MACHINE\SOFTWARE\Company\Deployments 18 | * Updated PSADT.sqlite to PSADTv4 19 | * Fixed PowerShell Start button - added set location to project path 20 | 21 | Version 1.0.5 (Preview 5): 22 | * News: Project released as open source on GitHub - https://github.com/tugich/DeploymentEditor 23 | * Updated demo project 24 | 25 | Version 1.0.4 (Preview 4): 26 | * Added Action Editor: Prompts for saving steps/actions if changes are detected in the action tab 27 | * Added Project > Open Files and SupportFiles folder 28 | * Added Tools > Generate Executables List by folder path 29 | * Added Export > Create Intune Package for creating *.intunewin files 30 | * Added IntuneWinAppUtil download to the user temp folder at startup 31 | * Added new projects support 32 | * Added new template: Deploy-Application.db (empty database for new projects) 33 | * Added Project Settings window 34 | * Added New Project window (Welcome dialog) 35 | 36 | Version 1.0.3 (Preview 3): 37 | * Added a new editor feature: variable assignment for command results 38 | * Updated the database: Added over 80 new PowerShell commands 39 | * Fixed the script builder for parameters of type SwitchParameter 40 | * Fixed logic handling for command parameters of type SwitchParameter 41 | 42 | Version 1.0.2 (Preview 2): 43 | * Added support for all deployment types (Installation, Uninstall, and Repair) 44 | * Added support for inline custom commands (custom PowerShell scripts) 45 | * Added script builder for additional deployment types: [Uninstall] and [Repair] 46 | * Added save dialog before closing the app 47 | * Added confirmation dialog for action/step removal 48 | * Added disable button above the sequence view (better reachable for testing) 49 | * Added a new button for command help access (PSADT Online Documentation) 50 | * Added a new menu (Project) - Open deployment file in PS ISE or Notepad++ 51 | * Added quick access for Project > Open Project Folder 52 | * Added a new menu (Tools) for special tools 53 | * Added quick access for Tools > Windows Software Logs (C:\Windows\Logs\Software) 54 | * Added a new menu (Run) with all deployment types 55 | * Added a new menu (Help) for quick help access 56 | * Added parameter type as an affix to the parameter title (in action/step editor) 57 | * Improved: "Continue on Error" and "Disable this Action" will now trigger a save operation automatically 58 | * Fixed wrong parameter types in PSADT command examples 59 | * Fixed save operation before refreshing the sequence view 60 | * Fixed toggle continue on error in PowerShell Script Builder (there was repeatedly "ContinueOnError" in the same command) 61 | 62 | Version 1.0.0/1.0.1 (Preview 1): 63 | (First release) 64 | -------------------------------------------------------------------------------- /Databases/PSADT.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Databases/PSADT.sqlite -------------------------------------------------------------------------------- /DeploymentEditor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/DeploymentEditor.exe -------------------------------------------------------------------------------- /DeploymentEditor.pbp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |
7 |
8 | 9 | 10 | 11 |
12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 |
62 |
63 | 64 | 65 | 66 | 67 | 68 | Icon.ico 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 |
80 |
81 | -------------------------------------------------------------------------------- /Examples/CPU-Z.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Examples/CPU-Z.db -------------------------------------------------------------------------------- /Forms/AboutWindow.pbf: -------------------------------------------------------------------------------- 1 | ; Form Designer for PureBasic - 6.20 2 | ; Warning: this file uses a strict syntax, if you edit it, make sure to respect the Form Designer limitation or it won't be opened again. 3 | 4 | ; 5 | ; This code is automatically generated by the Form Designer. 6 | ; Manual modification is possible to adjust existing commands, but anything else will be dropped when the code is compiled. 7 | ; Event procedures need to be put in another source file. 8 | ; 9 | 10 | Global AboutWindow 11 | 12 | Global Image_ApplicationIcon, Text_Title, Text_AboutThisApp, Text_Version, Text_Copyright, Text_Description1, Text_Description2, Container_AboutFooter, Hyperlink_IconsBy, Button_ShowLicensing, Button_CloseAbout, Text_Description_Risk 13 | 14 | Global Img_AboutWindow_0 15 | 16 | UsePNGImageDecoder() 17 | 18 | Img_AboutWindow_0 = CatchImage(#PB_Any,?Img_AboutWindow_0) 19 | 20 | Enumeration FormFont 21 | #Font_AboutWindow_0 22 | #Font_AboutWindow_1 23 | EndEnumeration 24 | 25 | LoadFont(#Font_AboutWindow_0,"Segoe UI", 22, #PB_Font_Bold) 26 | LoadFont(#Font_AboutWindow_1,"Segoe UI", 10, #PB_Font_Bold) 27 | 28 | Declare CloseAboutWindow(EventType) 29 | Declare ShowLicensing(EventType) 30 | 31 | Procedure OpenAboutWindow(x = 0, y = 0, width = 600, height = 360) 32 | AboutWindow = OpenWindow(#PB_Any, x, y, width, height, "About Deployment Editor by TUGI.CH", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) 33 | Image_ApplicationIcon = ImageGadget(#PB_Any, 30, 30, 128, 128, ImageID(Img_AboutWindow_0)) 34 | Text_Title = TextGadget(#PB_Any, 200, 60, 350, 50, "Deployment Editor") 35 | SetGadgetColor(Text_Title, #PB_Gadget_FrontColor,RGB(39,39,39)) 36 | SetGadgetFont(Text_Title, FontID(#Font_AboutWindow_0)) 37 | Text_AboutThisApp = TextGadget(#PB_Any, 200, 40, 100, 25, "About this app") 38 | SetGadgetFont(Text_AboutThisApp, FontID(#Font_AboutWindow_1)) 39 | Text_Version = TextGadget(#PB_Any, 200, 110, 350, 25, "Version 1.0.7 (Preview 7)") 40 | SetGadgetFont(Text_Version, FontID(#Font_AboutWindow_1)) 41 | Text_Copyright = TextGadget(#PB_Any, 200, 140, 350, 25, "Copyright (c) 2025 Tugay Taskin - https://www.tugi.ch") 42 | Text_Description1 = TextGadget(#PB_Any, 200, 190, 350, 20, "Deployment Editor simplifies software packaging with") 43 | SetGadgetColor(Text_Description1, #PB_Gadget_FrontColor,RGB(128,128,128)) 44 | Text_Description2 = TextGadget(#PB_Any, 200, 210, 350, 20, "PSAppDeployToolkit (www.psappdeploytoolkit.com).") 45 | SetGadgetColor(Text_Description2, #PB_Gadget_FrontColor,RGB(128,128,128)) 46 | Container_AboutFooter = ContainerGadget(#PB_Any, 0, 290, 600, 70) 47 | SetGadgetColor(Container_AboutFooter, #PB_Gadget_BackColor,RGB(255,255,255)) 48 | Hyperlink_IconsBy = HyperLinkGadget(#PB_Any, 50, 30, 170, 25, "Icons by Iconfinder and Icons8", 0) 49 | SetGadgetColor(Hyperlink_IconsBy, #PB_Gadget_FrontColor,RGB(39,39,39)) 50 | SetGadgetColor(Hyperlink_IconsBy, #PB_Gadget_BackColor,RGB(255,255,255)) 51 | Button_ShowLicensing = ButtonGadget(#PB_Any, 350, 20, 110, 35, "Licensing") 52 | Button_CloseAbout = ButtonGadget(#PB_Any, 470, 20, 110, 35, "OK") 53 | CloseGadgetList() 54 | Text_Description_Risk = TextGadget(#PB_Any, 200, 250, 350, 20, "The use of the application is at your own risk.") 55 | SetGadgetColor(Text_Description_Risk, #PB_Gadget_FrontColor,RGB(128,128,128)) 56 | EndProcedure 57 | 58 | Procedure AboutWindow_Events(event) 59 | Select event 60 | Case #PB_Event_CloseWindow 61 | ProcedureReturn #False 62 | 63 | Case #PB_Event_Menu 64 | Select EventMenu() 65 | EndSelect 66 | 67 | Case #PB_Event_Gadget 68 | Select EventGadget() 69 | Case Button_ShowLicensing 70 | ShowLicensing(EventType()) 71 | Case Button_CloseAbout 72 | CloseAboutWindow(EventType()) 73 | EndSelect 74 | EndSelect 75 | ProcedureReturn #True 76 | EndProcedure 77 | 78 | 79 | 80 | DataSection 81 | Img_AboutWindow_0: : IncludeBinary "..\Ressources\Icon_Package_128px.png" 82 | EndDataSection 83 | -------------------------------------------------------------------------------- /Forms/PluginWindow.pbf: -------------------------------------------------------------------------------- 1 | ; Form Designer for PureBasic - 6.20 2 | ; Warning: this file uses a strict syntax, if you edit it, make sure to respect the Form Designer limitation or it won't be opened again. 3 | 4 | ; 5 | ; This code is automatically generated by the Form Designer. 6 | ; Manual modification is possible to adjust existing commands, but anything else will be dropped when the code is compiled. 7 | ; Event procedures need to be put in another source file. 8 | ; 9 | 10 | Global PluginWindow 11 | 12 | Global ListView_Plugins, Button_ClosePlugin, Button_RunPlugin, Frame_AboutPlugin, Text_PluginDetails 13 | 14 | Declare ClosePluginWindow(EventType) 15 | Declare RunPlugin(EventType) 16 | 17 | Procedure OpenPluginWindow(x = 0, y = 0, width = 600, height = 400) 18 | PluginWindow = OpenWindow(#PB_Any, x, y, width, height, "Plugins", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) 19 | ListView_Plugins = ListViewGadget(#PB_Any, 10, 10, 250, 380) 20 | Button_ClosePlugin = ButtonGadget(#PB_Any, 270, 356, 100, 35, "Close") 21 | Button_RunPlugin = ButtonGadget(#PB_Any, 380, 356, 210, 35, "Run Plugin") 22 | DisableGadget(Button_RunPlugin, 1) 23 | Frame_AboutPlugin = FrameGadget(#PB_Any, 270, 10, 320, 330, "Details") 24 | Text_PluginDetails = TextGadget(#PB_Any, 290, 40, 290, 290, "") 25 | EndProcedure 26 | 27 | Procedure PluginWindow_Events(event) 28 | Select event 29 | Case #PB_Event_CloseWindow 30 | ProcedureReturn #False 31 | 32 | Case #PB_Event_Menu 33 | Select EventMenu() 34 | EndSelect 35 | 36 | Case #PB_Event_Gadget 37 | Select EventGadget() 38 | Case Button_ClosePlugin 39 | ClosePluginWindow(EventType()) 40 | Case Button_RunPlugin 41 | RunPlugin(EventType()) 42 | EndSelect 43 | EndSelect 44 | ProcedureReturn #True 45 | EndProcedure 46 | 47 | -------------------------------------------------------------------------------- /Forms/RunRemoteWindow.pbf: -------------------------------------------------------------------------------- 1 | ; Form Designer for PureBasic - 6.20 2 | ; Warning: this file uses a strict syntax, if you edit it, make sure to respect the Form Designer limitation or it won't be opened again. 3 | 4 | ; 5 | ; This code is automatically generated by the Form Designer. 6 | ; Manual modification is possible to adjust existing commands, but anything else will be dropped when the code is compiled. 7 | ; Event procedures need to be put in another source file. 8 | ; 9 | 10 | Global RunRemoteWindow 11 | 12 | 13 | Procedure OpenRunRemoteWindow(x = 0, y = 0, width = 600, height = 400) 14 | RunRemoteWindow = OpenWindow(#PB_Any, x, y, width, height, "Run on Remote Machine", #PB_Window_SystemMenu) 15 | EndProcedure 16 | 17 | Procedure RunRemoteWindow_Events(event) 18 | Select event 19 | Case #PB_Event_CloseWindow 20 | ProcedureReturn #False 21 | 22 | Case #PB_Event_Menu 23 | Select EventMenu() 24 | EndSelect 25 | 26 | Case #PB_Event_Gadget 27 | Select EventGadget() 28 | EndSelect 29 | EndSelect 30 | ProcedureReturn #True 31 | EndProcedure 32 | 33 | -------------------------------------------------------------------------------- /Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Icon.ico -------------------------------------------------------------------------------- /Plugins/Enabled-CompanyBranding/Assets/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Plugins/Enabled-CompanyBranding/Assets/AppIcon.png -------------------------------------------------------------------------------- /Plugins/Enabled-CompanyBranding/Assets/Banner.Classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Plugins/Enabled-CompanyBranding/Assets/Banner.Classic.png -------------------------------------------------------------------------------- /Plugins/Enabled-CompanyBranding/CompanyBranding.ps1: -------------------------------------------------------------------------------- 1 | <# 2 | Company Branding Plugin 3 | #> 4 | 5 | param( 6 | [Parameter(Mandatory = $true)] 7 | [string]$ProjectPath 8 | ) 9 | 10 | try { 11 | Copy-Item -Path "$PSScriptRoot\Assets" -Destination "$ProjectPath" -Recurse -Force 12 | Write-Host "Successfully copied branded corporate assets into the PSADT project!" 13 | Pause 14 | } 15 | catch { 16 | throw 17 | } 18 | finally { 19 | } 20 | -------------------------------------------------------------------------------- /Plugins/Enabled-CompanyBranding/Plugin.ini: -------------------------------------------------------------------------------- 1 | ; Plugin for Deployment Editor 2 | 3 | [Details] 4 | Name = Company Branding 5 | Version = 1.0 6 | Date = 2025/01/15 7 | Description = This plugin replaces the default PSADT assets with your own. 8 | Author = TUGI 9 | Website = https://www.tugi.ch 10 | 11 | [Script] 12 | File = CompanyBranding.ps1 13 | -------------------------------------------------------------------------------- /Plugins/Enabled-HelloWorld/HelloWorld.ps1: -------------------------------------------------------------------------------- 1 | <# 2 | Hello World Plugin 3 | #> 4 | 5 | param( 6 | [Parameter(Mandatory = $true)] 7 | [string]$ProjectPath 8 | ) 9 | 10 | try { 11 | Write-Host "Hello world!" 12 | Write-Host "The project path is: $ProjectPath" 13 | Pause 14 | } 15 | catch { 16 | throw 17 | } 18 | finally { 19 | } 20 | -------------------------------------------------------------------------------- /Plugins/Enabled-HelloWorld/Plugin.ini: -------------------------------------------------------------------------------- 1 | ; Plugin for Deployment Editor 2 | 3 | [Details] 4 | Name = Hello World! 5 | Version = 1.0 6 | Date = 2025/01/15 7 | Description = This plugin provides simple hello world. 8 | Author = TUGI 9 | Website = https://www.tugi.ch 10 | 11 | [Script] 12 | File = HelloWorld.ps1 13 | -------------------------------------------------------------------------------- /Plugins/Enabled-Install_PSAppDeployToolkit/Install-PSAppDeployToolkit.ps1: -------------------------------------------------------------------------------- 1 | <# 2 | Install PSAppDeployToolkit Plugin 3 | #> 4 | 5 | param( 6 | [Parameter(Mandatory = $true)] 7 | [string]$ProjectPath 8 | ) 9 | 10 | try { 11 | Install-Module -Name PSAppDeployToolkit 12 | Write-Host "Successfully installed PSAppDeployToolkit module!" 13 | Pause 14 | } 15 | catch { 16 | throw 17 | } 18 | finally { 19 | } 20 | -------------------------------------------------------------------------------- /Plugins/Enabled-Install_PSAppDeployToolkit/Plugin.ini: -------------------------------------------------------------------------------- 1 | ; Plugin for Deployment Editor 2 | 3 | [Details] 4 | Name = Install PSAppDeployToolkit Module 5 | Version = 1.0 6 | Date = 2025/01/15 7 | Description = This plugin helps you install the PSAppDeployToolkit module from the PowerShell Gallery. 8 | Author = TUGI 9 | Website = https://www.tugi.ch 10 | 11 | [Script] 12 | File = Install-PSAppDeployToolkit.ps1 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DeploymentEditor 2 | Visual Software Packaging Editor by TUGI.CH 3 | 4 | 5 | ## 🧑‍💻 About The Project 6 | **Welcome to the Deployment Editor for PSADT (PSAppDeployToolkit).** This application simplifies the packaging process for all Windows engineers. You can click your sequence for PSADT through the GUI and with just one simple click you get the fully automated coded PowerShell script for the deployment. The best part: It’s free & open-source.

7 | ![App Screenshot](Screenshot.png) 8 | 9 | 10 | ## ✅ Getting Started 11 | 12 | ### Requirements 13 | Windows 10/11 64-bit (It also runs well on ARM-based Windows via the translation layer.)
14 | PureBasic IDE (to compile the source code if needed, binary is included in each release). 15 | 16 | ### Prerequisites 17 | There are no prerequisites for this tool. All required files are included in this GitHub repository. 18 | 19 | ### Installation 20 | You can download the latest release from GitHub or use the MSI installer from the releases.
21 | The editor runs in user context and doesn't require administrator rights. For packaging, you need administrator rights to run a packaging project (in system context). 22 | 23 | 24 | ## ✅ (v1.0.7) Project-based templates 25 | There are several templates for each part of the editor. You can customize them and the compiler will take them for each time in the deployment file generation process. 26 | In the latest version (v1.0.7), each project/PSADT package contains its own template (Invoke-AppDeployToolkit.ps1.template) for the final resulting file (Invoke-AppDeployToolkit.ps1). 27 | 28 | 29 | ## 📄 Folders and files 30 | - ***Databases [Folder]:*** PSADT.sql database for defining all commands and parameters. 31 | - ***Examples [Folder]:*** Some basic examples with other software than 7-Zip 32 | - ***Forms [Folder]:*** All forms created with the PureBasic IDE 33 | - ***Plugins [Folder]:*** Built-in editor plugins written in PowerShell 34 | - ***Resources [Folder]:*** Images, icons and more 35 | - ***Scripts [Folder]:*** Some scripts for the development part of the editor 36 | - ***Snippets [Folder]:*** (Not used yet) 37 | - ***Templates [Folder]:*** All templates used by the editor to build any script or file for the final package 38 | - ***Test [Folder]:*** Basic example with 7-Zip installer - ThirdParty: Some third party libraries like PSADT and more 39 | - ***DeploymentEditor.pb [File]:*** The main source file 40 | - ***DeploymentEditor.pbp [File]:*** The project file for the PureBasic IDE 41 | 42 | 43 | ## 📋 Usage 44 | 45 | **Video Tutorial on YouTube:**
46 | [Deployment Editor - Package Softwares with PSAppDeployToolkit (PSADT)](https://www.youtube.com/watch?v=1Ct5B27BGP4)
47 | There is also an example that shows a simple sequence for installing and uninstalling 7-Zip. Give it a try and if you have any questions just contact me via email or LinkedIn. 48 | 49 | 50 | ## ⚙️ Compile for Windows 51 | You need the PureBasic IDE in the latest version to compile the source code for Windows: https://www.purebasic.com. 52 | Just open the DeploymentEditor.pbp file and run the compiler with [F5] - the rest is magic. 53 | 54 | 55 | ## 📄 License 56 | See `LICENSE.txt` for more information. 57 | 58 | 59 | ## 📄 Credits 60 | [PSAppDeployToolkit/PSAppDeployToolkit](https://github.com/PSAppDeployToolkit/PSAppDeployToolkit)
61 | See also LICENSE_ThirdParty.txt 62 | 63 | 64 | ## 📧 Contact 65 | TUGI - [contact@tugi.ch](mailto:contact@tugi.ch)
66 | Project Link: [https://blog.tugi.ch/deployment-editor-preview](https://blog.tugi.ch/deployment-editor-preview) 67 | -------------------------------------------------------------------------------- /Ressources/Animation_Loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Animation_Loading.gif -------------------------------------------------------------------------------- /Ressources/Icon_ArrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_ArrowDown.png -------------------------------------------------------------------------------- /Ressources/Icon_ArrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_ArrowUp.png -------------------------------------------------------------------------------- /Ressources/Icon_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Check.png -------------------------------------------------------------------------------- /Ressources/Icon_Check_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Check_24px.png -------------------------------------------------------------------------------- /Ressources/Icon_Database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Database.png -------------------------------------------------------------------------------- /Ressources/Icon_Disabled_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Disabled_24px.png -------------------------------------------------------------------------------- /Ressources/Icon_Dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Dot.png -------------------------------------------------------------------------------- /Ressources/Icon_EXE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_EXE.png -------------------------------------------------------------------------------- /Ressources/Icon_EXE_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_EXE_32px.png -------------------------------------------------------------------------------- /Ressources/Icon_Exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Exclamation.png -------------------------------------------------------------------------------- /Ressources/Icon_Exclamation_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Exclamation_24px.png -------------------------------------------------------------------------------- /Ressources/Icon_Executable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Executable.png -------------------------------------------------------------------------------- /Ressources/Icon_Go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Go.png -------------------------------------------------------------------------------- /Ressources/Icon_Go_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Go_48px.png -------------------------------------------------------------------------------- /Ressources/Icon_Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Help.png -------------------------------------------------------------------------------- /Ressources/Icon_If_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_If_24px.png -------------------------------------------------------------------------------- /Ressources/Icon_Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Info.png -------------------------------------------------------------------------------- /Ressources/Icon_Information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Information.png -------------------------------------------------------------------------------- /Ressources/Icon_Installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Installer.png -------------------------------------------------------------------------------- /Ressources/Icon_MSI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_MSI.png -------------------------------------------------------------------------------- /Ressources/Icon_Package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Package.png -------------------------------------------------------------------------------- /Ressources/Icon_Package_128px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Package_128px.png -------------------------------------------------------------------------------- /Ressources/Icon_Package_512px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Package_512px.png -------------------------------------------------------------------------------- /Ressources/Icon_Package_512px_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Package_512px_White.png -------------------------------------------------------------------------------- /Ressources/Icon_Package_80px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Package_80px.png -------------------------------------------------------------------------------- /Ressources/Icon_Plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Plugin.png -------------------------------------------------------------------------------- /Ressources/Icon_PowerShell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_PowerShell.png -------------------------------------------------------------------------------- /Ressources/Icon_PowerShell_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_PowerShell_24px.png -------------------------------------------------------------------------------- /Ressources/Icon_Repair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Repair.png -------------------------------------------------------------------------------- /Ressources/Icon_Rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Rocket.png -------------------------------------------------------------------------------- /Ressources/Icon_Uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/Icon_Uninstall.png -------------------------------------------------------------------------------- /Ressources/PSADT Branding.free: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Ressources/PSADT Branding.free -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Screenshot.png -------------------------------------------------------------------------------- /Scripts/PSADT.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Scripts/PSADT.sqlite -------------------------------------------------------------------------------- /Scripts/PSADT4-ExportCommandsAndParameters.ps1: -------------------------------------------------------------------------------- 1 | # Specify the module name 2 | $ModuleName = "PSAppDeployToolkit" 3 | 4 | # Import the module (optional if it's already loaded) 5 | Import-Module $ModuleName -ErrorAction Stop 6 | 7 | # Get all commands from the module 8 | $Commands = Get-Command -Module $ModuleName 9 | 10 | # Prepare lists to store command and parameter details 11 | $CommandList = @() 12 | $ParameterList = @() 13 | $CommandId = 1 14 | 15 | foreach ($CommandItem in $Commands) { 16 | # Get the command description and flatten it to a single line 17 | $Description = ((Get-Help $CommandItem.Name -ErrorAction SilentlyContinue).Description | Out-String).Trim() -replace '\s+', ' ' 18 | 19 | # Add command to the CommandList with an ID and description 20 | $CommandList += [PSCustomObject]@{ 21 | ID = $CommandId 22 | CommandName = $CommandItem.Name 23 | Description = $Description.Trim() 24 | } 25 | 26 | # Get the parameters of the command 27 | $CommandParameters = (Get-Command $CommandItem.Name).Parameters 28 | foreach ($ParamName in $CommandParameters.Keys) { 29 | $Parameter = $CommandParameters[$ParamName] 30 | 31 | # Extract the simplified ParameterType 32 | $ParameterType = $Parameter.ParameterType.Name 33 | 34 | # Determine if the parameter is required (1 for required, 0 for not required) 35 | $IsRequired = if ($Parameter.Attributes | Where-Object { $_ -is [System.Management.Automation.ParameterAttribute] -and $_.Mandatory }) { 1 } else { 0 } 36 | 37 | # Get parameter description from Get-Help if available 38 | $ParameterHelp = (Get-Help $CommandItem.Name -ErrorAction SilentlyContinue).Parameters.Parameter | Where-Object { $_.Name -eq $ParamName } 39 | $ParameterDescription = ($ParameterHelp.Description | Out-String).replace("`n"," ").replace("`r"," ") 40 | 41 | # Fallback if no description is available 42 | if (-not $ParameterDescription) { 43 | $ParameterDescription = "No description available." 44 | } 45 | 46 | # Add each parameter to the ParameterList with the associated CommandId 47 | $ParameterList += [PSCustomObject]@{ 48 | CommandID = $CommandId 49 | ParameterName = $Parameter.Name 50 | ParameterType = $ParameterType 51 | IsRequired = $IsRequired 52 | Description = $ParameterDescription.Trim() 53 | } 54 | } 55 | 56 | # Increment CommandId for the next command 57 | $CommandId++ 58 | } 59 | 60 | # Export the lists to CSV files 61 | $CommandsCsvPath = "PSADT4_Commands.csv" 62 | $ParametersCsvPath = "PSADT4_Parameters.csv" 63 | 64 | $CommandList | Export-Csv -Path $CommandsCsvPath -NoTypeInformation 65 | $ParameterList | Export-Csv -Path $ParametersCsvPath -NoTypeInformation 66 | 67 | Write-Host "Commands exported to $CommandsCsvPath" 68 | Write-Host "Parameters exported to $ParametersCsvPath" 69 | -------------------------------------------------------------------------------- /Scripts/PSADT4-HelpConsole.ps1: -------------------------------------------------------------------------------- 1 | if (Get-Module -ListAvailable -Name PSAppDeployToolkit) { 2 | Import-Module "PSAppDeployToolkit" 3 | 4 | try { 5 | Show-ADTHelpConsole 6 | } 7 | catch { 8 | throw 9 | } 10 | finally { 11 | } 12 | } 13 | else { 14 | Write-Host "The PSAppDeployToolkit is not installed. Please install it from the PowerShell Gallery first: https://www.powershellgallery.com/packages/PSAppDeployToolkit" 15 | Pause 16 | } 17 | -------------------------------------------------------------------------------- /Snippets/PowerShell/Dummy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Snippets/PowerShell/Dummy.ps1 -------------------------------------------------------------------------------- /Templates/Invoke-AppDeployToolkit.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Templates/Invoke-AppDeployToolkit.db -------------------------------------------------------------------------------- /Templates/Windows Sandbox.wsb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(ProjectPath) 5 | C:\Packaging 6 | true 7 | 8 | 9 | 10 | C:\Packaging\Invoke-AppDeployToolkit.exe 11 | 12 | -------------------------------------------------------------------------------- /Test/Assets/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/Assets/AppIcon.png -------------------------------------------------------------------------------- /Test/Assets/Banner.Classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/Assets/Banner.Classic.png -------------------------------------------------------------------------------- /Test/Files/7-Zip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/Files/7-Zip.exe -------------------------------------------------------------------------------- /Test/Files/7-Zip.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/Files/7-Zip.msi -------------------------------------------------------------------------------- /Test/Files/Add Setup Files Here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/Files/Add Setup Files Here.txt -------------------------------------------------------------------------------- /Test/Invoke-AppDeployToolkit.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/Invoke-AppDeployToolkit.db -------------------------------------------------------------------------------- /Test/Invoke-AppDeployToolkit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/Invoke-AppDeployToolkit.exe -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit.Extensions/PSAppDeployToolkit.Extensions.psm1: -------------------------------------------------------------------------------- 1 | <# 2 | 3 | .SYNOPSIS 4 | PSAppDeployToolkit.Extensions - Provides the ability to extend and customize the toolkit by adding your own functions that can be re-used. 5 | 6 | .DESCRIPTION 7 | This module is a template that allows you to extend the toolkit with your own custom functions. 8 | 9 | This module is imported by the Invoke-AppDeployToolkit.ps1 script which is used when installing or uninstalling an application. 10 | 11 | PSAppDeployToolkit is licensed under the GNU LGPLv3 License - (C) 2025 PSAppDeployToolkit Team (Sean Lillis, Dan Cunningham, Muhammad Mashwani, Mitch Richters, Dan Gough). 12 | 13 | This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the 14 | Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but 15 | WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16 | for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . 17 | 18 | .LINK 19 | https://psappdeploytoolkit.com 20 | 21 | #> 22 | 23 | ##*=============================================== 24 | ##* MARK: MODULE GLOBAL SETUP 25 | ##*=============================================== 26 | 27 | # Set strict error handling across entire module. 28 | $ErrorActionPreference = [System.Management.Automation.ActionPreference]::Stop 29 | $ProgressPreference = [System.Management.Automation.ActionPreference]::SilentlyContinue 30 | Set-StrictMode -Version 1 31 | 32 | 33 | ##*=============================================== 34 | ##* MARK: FUNCTION LISTINGS 35 | ##*=============================================== 36 | 37 | function New-ADTExampleFunction 38 | { 39 | <# 40 | .SYNOPSIS 41 | Basis for a new PSAppDeployToolkit extension function. 42 | 43 | .DESCRIPTION 44 | This function serves as the basis for a new PSAppDeployToolkit extension function. 45 | 46 | .INPUTS 47 | None 48 | 49 | You cannot pipe objects to this function. 50 | 51 | .OUTPUTS 52 | None 53 | 54 | This function does not return any output. 55 | 56 | .EXAMPLE 57 | New-ADTExampleFunction 58 | 59 | Invokes the New-ADTExampleFunction function and returns any output. 60 | #> 61 | 62 | [CmdletBinding()] 63 | param 64 | ( 65 | ) 66 | 67 | begin 68 | { 69 | # Initialize function. 70 | Initialize-ADTFunction -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState 71 | } 72 | 73 | process 74 | { 75 | try 76 | { 77 | try 78 | { 79 | } 80 | catch 81 | { 82 | # Re-writing the ErrorRecord with Write-Error ensures the correct PositionMessage is used. 83 | Write-Error -ErrorRecord $_ 84 | } 85 | } 86 | catch 87 | { 88 | # Process the caught error, log it and throw depending on the specified ErrorAction. 89 | Invoke-ADTFunctionErrorHandler -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState -ErrorRecord $_ 90 | } 91 | } 92 | 93 | end 94 | { 95 | # Finalize function. 96 | Complete-ADTFunction -Cmdlet $PSCmdlet 97 | } 98 | } 99 | 100 | 101 | ##*=============================================== 102 | ##* MARK: SCRIPT BODY 103 | ##*=============================================== 104 | 105 | # Announce successful importation of module. 106 | Write-ADTLogEntry -Message "Module [$($MyInvocation.MyCommand.ScriptBlock.Module.Name)] imported successfully." -ScriptSection Initialization 107 | -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/Assets/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/PSAppDeployToolkit/Assets/AppIcon.png -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/Assets/Banner.Classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/PSAppDeployToolkit/Assets/Banner.Classic.png -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/Frontend/v3/Deploy-Application.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/PSAppDeployToolkit/Frontend/v3/Deploy-Application.exe -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/Frontend/v4/Invoke-AppDeployToolkit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/PSAppDeployToolkit/Frontend/v4/Invoke-AppDeployToolkit.exe -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/PSAppDeployToolkit.cer: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE----- 2 | MIIHSTCCBTGgAwIBAgIQCvlbtr6iDIUOmMb7jqwI+TANBgkqhkiG9w0BAQsFADBp 3 | MQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xQTA/BgNVBAMT 4 | OERpZ2lDZXJ0IFRydXN0ZWQgRzQgQ29kZSBTaWduaW5nIFJTQTQwOTYgU0hBMzg0 5 | IDIwMjEgQ0ExMB4XDTI0MDkwNTAwMDAwMFoXDTI3MDkwNzIzNTk1OVowgdExEzAR 6 | BgsrBgEEAYI3PAIBAxMCVVMxGTAXBgsrBgEEAYI3PAIBAhMIQ29sb3JhZG8xHTAb 7 | BgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRQwEgYDVQQFEwsyMDEzMTYzODMy 8 | NzELMAkGA1UEBhMCVVMxETAPBgNVBAgTCENvbG9yYWRvMRQwEgYDVQQHEwtDYXN0 9 | bGUgUm9jazEZMBcGA1UEChMQUGF0Y2ggTXkgUEMsIExMQzEZMBcGA1UEAxMQUGF0 10 | Y2ggTXkgUEMsIExMQzCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoCggGBALsn 11 | cZKNh65erADSVI33cqSj+tKgR+RJIX2kUAJ5/nt74NnlXG4hFiI5azGM7ytrIDjA 12 | W8Bnm6gFEZBZlAig3RsXMSnrl3Wlzx1jysHNlo2AhWo61+h6H4osDczgnS+lRODw 13 | 0IT0Ue0iHTTRUq8eQuGQzdU+jh/snV+xEBfPjQVDR0WxFXZfofR+QHscet2n2vM7 14 | t4Pxl5bslym2/iR7YDSWlIBbhTkU8cNUzuqh/kuh66aX/UHABZruMRrZHNhUoYL9 15 | DYFjDRg2aia/6PbKidrXWmRw8q+h/D72PHoKFLIRe3HIBGLRBHQfUkUfJlUIpNcO 16 | aBk4w1ox4/vI4E6c5XrUcsKbZP5vD3oVQTfJ7aqEnbyy3LkFc5rjy8zf4rioebGX 17 | lr6jzjQKXBJ2XDjaV3m8olD5xHj6+a2QFO4TIzMNmT50JTHGxr7YD9qou5tn95lx 18 | WMVo5SgsWgKWB3qkhXlgvMzOzmC9h5WfhriuFxvIylROrFklvVpP3ZtLyW2rLwID 19 | AQABo4ICAjCCAf4wHwYDVR0jBBgwFoAUaDfg67Y7+F8Rhvv+YXsIiGX0TkIwHQYD 20 | VR0OBBYEFORglN0hKniG4YWPXslNC3EyO+V/MD0GA1UdIAQ2MDQwMgYFZ4EMAQMw 21 | KTAnBggrBgEFBQcCARYbaHR0cDovL3d3dy5kaWdpY2VydC5jb20vQ1BTMA4GA1Ud 22 | DwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDAzCBtQYDVR0fBIGtMIGqMFOg 23 | UaBPhk1odHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRUcnVzdGVkRzRD 24 | b2RlU2lnbmluZ1JTQTQwOTZTSEEzODQyMDIxQ0ExLmNybDBToFGgT4ZNaHR0cDov 25 | L2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0VHJ1c3RlZEc0Q29kZVNpZ25pbmdS 26 | U0E0MDk2U0hBMzg0MjAyMUNBMS5jcmwwgZQGCCsGAQUFBwEBBIGHMIGEMCQGCCsG 27 | AQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wXAYIKwYBBQUHMAKGUGh0 28 | dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRHNENvZGVT 29 | aWduaW5nUlNBNDA5NlNIQTM4NDIwMjFDQTEuY3J0MAkGA1UdEwQCMAAwDQYJKoZI 30 | hvcNAQELBQADggIBAKgNLm/4pTIHSLzIgXlgaIjMXuTiG5TmxiO5XpnD9lhKmhAE 31 | ltdf8FcCVOt2cIbZEGjVOK143+n6suaTlM6UF4GI0mjuA/wDjCSh5cqcbJRamf3W 32 | KXLntsRNx+5ZjuCj3/FcV7hSFKoy3rVPpJIe6P0OdkWm1QLjqzxSpzm4sctRyMdP 33 | +Rfkbj/cYapg23zO5ec1AHLjggpGO27riJxLIqfQWV1IlW/CuWz0fUZOw6GreBUJ 34 | je9sY2pHBGTjFP74NGYFWvJ8ZAV7VbI8W7K/mzg59HHXRytUB1opfz5qQDZMTex/ 35 | LXQgGfG08yL77ncUi57e7LG20A5AMjcNG7Qx/jCr/5flXGMkB+dWecU/Q7xwphHe 36 | ++G6GZD9hn0xb5+/4CEhI03TrlBrLXa4EsINcyT6oCu81sSuPMQu2sKWt4MDrPaZ 37 | 8oqhxt68fOP0h1IgC9pZJY7A93qZkcbFnmYWTWPd8RKUB3vSwb6P7eFUY2c6lM/q 38 | XxDD6nl/4OfpqW+GqemZjSbgGCRZlNCyJAi0DfZil4tSJfVlOon5972LrRjEi/wX 39 | Xlj/u3zOzGS4jvtQSLAXUpleqWVUty0QQMt8CJW1i+vZr8iwjyEO8+HbX7s8At+h 40 | PZNr4c3og0PpNXRSQ0ncUw3rbHJNBbg9aL4YrtnGi+AXRbAlrFzyzMr7ujpW 41 | -----END CERTIFICATE----- 42 | -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/bin/AMD64/handle/handle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/PSAppDeployToolkit/bin/AMD64/handle/handle.exe -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/bin/ARM64/handle/handle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/PSAppDeployToolkit/bin/ARM64/handle/handle.exe -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/bin/i386/handle/handle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/PSAppDeployToolkit/bin/i386/handle/handle.exe -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/PSADT.UserInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/PSAppDeployToolkit/lib/PSADT.UserInterface.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/PSADT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/PSAppDeployToolkit/lib/PSADT.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/PSAppDeployToolkit/lib/System.ValueTuple.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/Wpf.Ui.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/PSAppDeployToolkit/lib/Wpf.Ui.Abstractions.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/Wpf.Ui.Tray.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/PSAppDeployToolkit/lib/Wpf.Ui.Tray.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/Wpf.Ui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/PSAppDeployToolkit/lib/Wpf.Ui.dll -------------------------------------------------------------------------------- /Test/Strings/ar/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "تم." 4 | Error = "فشل." 5 | FastRetry = "غير مكتمل." 6 | RestartRequired = "تم. يجب إعادة تشغيل النظام." 7 | Start = "بدأ." 8 | } 9 | BlockExecution = @{ 10 | Message = "تم تعطيل تشغيل هذا التطبيق مؤقتًا بحيث يمكن إكمال عملية التثبيت." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "إغلاق البرامج" 14 | ButtonContinue = "متابعة" 15 | ButtonContinueTooltip = "قم باختيار `"متابعة`" فقط بعد إغلاق التطبيق/التطبيقات المدرجة أعلاه." 16 | ButtonDefer = "تأجيل" 17 | CountdownMessage = "ملاحظة: سيتم إغلاق البرنامج/البرامج بشكل تلقائي خلال:" 18 | Message = "يجب إغلاق البرامج التالية قبل التمكن من متابعة عملية التثبيت.`n`nيرجى حفظ عملك، وإغلاق البرامج، ومن ثم المتابعة. يمكنك بدلا من ذلك، حفظ عملك والنقر فوق `"إغلاق البرامج`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "الموعد النهائي:" 22 | ExpiryMessage = "بإمكانك اختيار تأجيل التثبيت إلى حين انتهاء صلاحية التأجيل:" 23 | RemainingDeferrals = "التأجيلات المتبقية:" 24 | WarningMessage = "بمجرد انتهاء صلاحية التأجيل، لن يكون لديك خيار التأجيل بعد الآن." 25 | WelcomeMessage = "التطبيق التالي على وشك التثبيت:" 26 | } 27 | DeploymentType = @{ 28 | Install = "تثبيت" 29 | Repair = "إصلاح" 30 | Uninstall = "إزالة التثبيت" 31 | } 32 | DiskSpace = @{ 33 | Message = "ليس لديك مساحة كافية في القرص لإتمام عملية تثبيت:`n{0}`n`nالمساحة اللازمة: {1} م ب`nالمساحة المتاحة: {2} م ب`n`nيرجى تحرير مساحة قرص كافية كي تتم متابعة عملية التثبيت." 34 | } 35 | Progress = @{ 36 | MessageInstall = "جاري التثبيت. يرجى الانتظار..." 37 | MessageInstallDetail = "سيتم إغلاق هذه النافذة تلقائياً عند اكتمال التثبيت." 38 | MessageRepair = "جارٍ إصلاح. يرجى الانتظار..." 39 | MessageRepairDetail = "سيتم إغلاق هذه النافذة تلقائياً عند اكتمال الإصلاح." 40 | MessageUninstall = "جارٍ إزالة التثبيت. يرجى الانتظار..." 41 | MessageUninstallDetail = "سيتم إغلاق هذه النافذة تلقائياً عند اكتمال إلغاء التثبيت." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "تقليل" 45 | ButtonRestartNow = "إعادة التشغيل الآن" 46 | Message = "كي تكتمل عملية التثبيت، يجب عليك إعادة تشغيل حاسوبك." 47 | MessageRestart = "ستتم إعادة تشغيل حاسوبك بشكل تلقائي عند نهاية العد التنازلي." 48 | MessageTime = "يرجى حفظ عملك وإعادة التشغيل خلال الوقت المخصص." 49 | TimeRemaining = "الزمن المتبقي:" 50 | Title = "مطلوب إعادة التشغيل" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "سيستمر {0} تلقائيا في:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployDeployToolkit - التطبيق {0}' 59 | DialogMessage = 'يرجى حفظ عملك قبل المتابعة حيث سيتم إغلاق التطبيقات التالية تلقائيًا.' 60 | DialogMessageNoProcesses = 'الرجاء تحديد تثبيت لمتابعة التثبيت. إذا كان لديك أي تأجيلات متبقية، يمكنك أيضاً اختيار تأخير التثبيت.' 61 | ButtonDeferRemaining = 'تبقى' 62 | ButtonLeftText = 'التأجيل' 63 | ButtonRightText = 'إغلاق التطبيقات وتثبيتها' 64 | ButtonRightTextNoProcesses = 'التثبيت' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/cz/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "dokončena." 4 | Error = "se nepodařila." 5 | FastRetry = "nedokončena." 6 | RestartRequired = "dokončena. Je nutné restartovat počítač." 7 | Start = "zahájena." 8 | } 9 | BlockExecution = @{ 10 | Message = "Spuštění této aplikace bylo dočasně zakázáno, aby mohla proběhnout instalace." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Ukončit programy" 14 | ButtonContinue = "Pokračovat" 15 | ButtonContinueTooltip = "Klikněte na `"Pokračovat`", až budete mít výše uvedené aplikace zavřené." 16 | ButtonDefer = "Odložit" 17 | CountdownMessage = "Upozornění: Programy budou automaticky zavřené za:" 18 | Message = "Následující programy musí být zavřené, aby instalace mohla pokračovat. Prosím, uložte svou práci, zavřete program a potom klikněte na `"Pokračovat`". Případně můžete svou práci uložit a kliknout na tlačítko `"Ukončit programy`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Termín:" 22 | ExpiryMessage = "Instalaci můžete několikrát odložit:" 23 | RemainingDeferrals = "Zbývající počet odložení:" 24 | WarningMessage = "Jakmile vyčerpáte všechna odložení, už nebudete mít šanci odložit instalaci." 25 | WelcomeMessage = "Nasledující aplikace bude nainstalována:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Instalace" 29 | Repair = "Oprava" 30 | Uninstall = "Odinstalace" 31 | } 32 | DiskSpace = @{ 33 | Message = "Nemáte dostatek volného místa na instalaci aplikace:`n{0}`n`nPotřebné místo na disku: {1}MB`nDostupné místo na disku: {2}MB`n`nUvolněte prosím dostatek místa k pokračovaní instalace." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Instalace právě probíhá. Prosím čekejte..." 37 | MessageInstallDetail = "Toto okno se po dokončení instalace automaticky zavře." 38 | MessageRepair = "Oprava právě probíhá. Prosím čekejte..." 39 | MessageRepairDetail = "Toto okno se po dokončení opravy automaticky zavře." 40 | MessageUninstall = "Probíhá odinstalace. Prosím čekejte..." 41 | MessageUninstallDetail = "Po dokončení odinstalace se toto okno automaticky zavře." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimalizovat" 45 | ButtonRestartNow = "Restartovat nyní" 46 | Message = "Pro dokončení instalace musíte váš počítač restartovat." 47 | MessageRestart = "Na konci odpočítávání, bude váš počítač automaticky restartovaný." 48 | MessageTime = "Prosím, uložte si práci a restartujte počítač ve stanoveném čase." 49 | TimeRemaining = "Zbývající čas:" 50 | Title = "Je nutné restartovat počítač." 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} bude automaticky pokračovat za:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Aplikace {0}' 59 | DialogMessage = 'Před pokračováním v práci ji uložte, protože následující aplikace budou automaticky uzavřeny.' 60 | DialogMessageNoProcesses = 'Chcete-li pokračovat v instalaci, vyberte možnost Instalovat. Pokud vám zbývají nějaké odklady, můžete také zvolit odložení instalace.' 61 | ButtonDeferRemaining = 'zůstat' 62 | ButtonLeftText = 'Odložení' 63 | ButtonRightText = 'Zavření aplikací a instalace' 64 | ButtonRightTextNoProcesses = 'Instalace' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/da/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "færdig." 4 | Error = "fejlet." 5 | FastRetry = "ikke færdig." 6 | RestartRequired = "færdig. En genstart er nødvendig." 7 | Start = "startet." 8 | } 9 | BlockExecution = @{ 10 | Message = "Opstart af denne applikation er midlertidigt blokeret da en installationsproces er under afvikling." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Luk Programmer" 14 | ButtonContinue = "Fortsæt" 15 | ButtonContinueTooltip = "Vælg kun `"Fortsæt`" efter at du har afsluttet de ovenfor nævnte programmer." 16 | ButtonDefer = "Udsæt" 17 | CountdownMessage = "BEMÆRK: Programmet/Programmerne vil automatisk blive lukket om:" 18 | Message = "Følgende programmer skal lukkes før installationen kan fortsætte.`n`nGem dit arbejde, luk programmerne og fortsæt. Alternativt kan du gemme dit arbejde og trykke på `"Luk Programmer`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Deadline:" 22 | ExpiryMessage = "Du kan vælge at udsætte installationen indtil udsættelsesperioden udløber:" 23 | RemainingDeferrals = "Udsættelser tilbage:" 24 | WarningMessage = "Når udsættelsesperioden udløber kan du ikke længere udsætte installationen." 25 | WelcomeMessage = "Følgende applikation vil nu blive installeret:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Installation" 29 | Repair = "Reparere" 30 | Uninstall = "Afinstallation" 31 | } 32 | DiskSpace = @{ 33 | Message = "Du har ikke plads nok til at færdiggøre installationen af:`n{0}`n`nPlads krævet: {1}MB`nPlads tilgængelig: {2}MB`n`nVær venlig at frigøre nok diskplads før du fortsætter installationen." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Installation i gang. Vent venligst..." 37 | MessageInstallDetail = "Dette vindue lukker automatisk, når installationen er færdig." 38 | MessageRepair = "Reparere i gang. Vent venligst..." 39 | MessageRepairDetail = "Dette vindue lukkes automatisk, når reparationen er færdig." 40 | MessageUninstall = "Afinstallation i gang. Vent venligst..." 41 | MessageUninstallDetail = "Dette vindue lukkes automatisk, når afinstallationen er færdig." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimere" 45 | ButtonRestartNow = "Genstart Nu" 46 | Message = "For at færdiggøre installationen skal du genstarte din computer." 47 | MessageRestart = "Din computer vil automatisk blive genstartet når nedtællingen er færdig." 48 | MessageTime = "Du bør venligst gemme dit arbejde og genstarte indenfor det givne tidsrum." 49 | TimeRemaining = "Tid tilbage:" 50 | Title = "Genstart Nødvendig" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} vil automatisk fortsætte i:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - App {0}' 59 | DialogMessage = 'Gem venligst dit arbejde, før du fortsætter, da de følgende applikationer lukkes automatisk.' 60 | DialogMessageNoProcesses = 'Vælg Installer for at fortsætte med installationen. Hvis du har udsættelser tilbage, kan du også vælge at udskyde installationen.' 61 | ButtonDeferRemaining = 'forblive' 62 | ButtonLeftText = 'Udskyde' 63 | ButtonRightText = 'Luk apps og installer' 64 | ButtonRightTextNoProcesses = 'Installer' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/de/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "abgeschlossen." 4 | Error = "ist fehlgeschlagen." 5 | FastRetry = "nicht abgeschlossen werden." 6 | RestartRequired = "abgeschlossen. Ein Neustart ist erforderlich." 7 | Start = "gestartet." 8 | } 9 | BlockExecution = @{ 10 | Message = "Das Starten dieser Anwendung(en) wurde vorübergehend blockiert, damit der Installationsvorgang erfolgreich durchgeführt werden kann." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Programme &schließen" 14 | ButtonContinue = "&Weiter" 15 | ButtonContinueTooltip = "Klicken Sie erst auf `"Weiter`", nachdem Sie die obigen Anwendung(en) geschlossen haben." 16 | ButtonDefer = "&Aufschieben" 17 | CountdownMessage = "HINWEIS: Diese Programme werden automatisch geschlossen:" 18 | Message = "Die folgenden Programme müssen geschlossen werden, bevor die Installation fortgesetzt werden kann.`n`nBitte speichern Sie Ihre Arbeit, schließen Sie die Programme und fahren Sie dann fort. Alternativ können Sie Ihre Arbeit speichern und dann auf `"Programme Schließen`" klicken." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Termin:" 22 | ExpiryMessage = "Sie können die Installation verzögern, bis die Rückstellung abläuft:" 23 | RemainingDeferrals = "Verbleibende Rückstellungen:" 24 | WarningMessage = "Sobald die Rückstellung abgelaufen ist, werden Sie keine Möglichkeit mehr haben die Installation zu verschieben." 25 | WelcomeMessage = "Die folgende Anwendung soll installiert werden:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Installation" 29 | Repair = "Reparatur" 30 | Uninstall = "Deinstallation" 31 | } 32 | DiskSpace = @{ 33 | Message = "Sie haben nicht genug freien Speicherplatz um die Installation abzuschließen: {0}`n`nPlatzbedarf: {1}MB`nFreier Speicherplatz: {2}MB`n`nBitte geben Sie ausreichend Speicherplatz frei, um mit der Installation fortzufahren." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Installation wird durchgeführt. Bitte warten..." 37 | MessageInstallDetail = "Dieses Fenster wird automatisch geschlossen, wenn die Installation abgeschlossen ist." 38 | MessageRepair = "Reparatur wird durchgeführt. Bitte warten..." 39 | MessageRepairDetail = "Dieses Fenster wird automatisch geschlossen, wenn die Reparatur abgeschlossen ist." 40 | MessageUninstall = "Deinstallation wird durchgeführt. Bitte warten..." 41 | MessageUninstallDetail = "Dieses Fenster wird automatisch geschlossen, wenn die Deinstallation abgeschlossen ist." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimieren" 45 | ButtonRestartNow = "Jetzt Neustarten" 46 | Message = "Zum Abschluss der Installation müssen Sie Ihren Computer neu starten." 47 | MessageRestart = "Am Ende des Countdowns wird Ihr Computer automatisch neu gestartet." 48 | MessageTime = "Bitte speichern Sie Ihre Arbeit und starten Sie den Computer innerhalb der vorgegebenen Zeit neu." 49 | TimeRemaining = "Verbleibende Zeit:" 50 | Title = "Neustart Erforderlich" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "Die {0} wird automatisch fortgesetzt in:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Anwendung {0}' 59 | DialogMessage = 'Bitte speichern Sie Ihre Arbeit, bevor Sie fortfahren, da die folgenden Anwendungen automatisch geschlossen werden.' 60 | DialogMessageNoProcesses = 'Bitte wählen Sie Installieren, um mit der Installation fortzufahren. Wenn Sie noch Aufschübe haben, können Sie die Installation auch aufschieben.' 61 | ButtonDeferRemaining = 'bleiben' 62 | ButtonLeftText = 'Aufschieben' 63 | ButtonRightText = 'Apps schließen & installieren' 64 | ButtonRightTextNoProcesses = 'Installieren Sie' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/el/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "ολοκληρώθηκε με επιτυχία." 4 | Error = "απέτυχε." 5 | FastRetry = "δεν ολοκληρώθηκε." 6 | RestartRequired = "ολοκληρώθηκε με επιτυχία. Απαιτείται επανεκκίνηση." 7 | Start = "ξεκίνησε." 8 | } 9 | BlockExecution = @{ 10 | Message = "Η εκκίνηση αυτής της εφαρμογής έχει αποκλειστεί προσωρινά, ώστε να ολοκληρωθεί η διαδικασία εγκατάστασης." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Κλείσιμο Προγραμμάτων" 14 | ButtonContinue = "Συνέχεια" 15 | ButtonContinueTooltip = "Επιλέξτε `"Συνέχεια`" μόνο αφού κλείσετε τις παραπάνω εφαρμογές." 16 | ButtonDefer = "Αναβολή" 17 | CountdownMessage = "ΣΗΜΕΙΩΣΗ: Τα προγράμματα θα κλείσουν αυτόματα σε:" 18 | Message = "Τα παρακάτω προγράμματα πρέπει να κλείσουν πριν προχωρήσει η εγκατάσταση.`n`nΠαρακαλούμε αποθηκεύστε την εργασία σας, κλείστε τα προγράμματα και επιλέξτε `"Συνέχεια`". Εναλλακτικά, αποθηκεύστε την εργασία σας και επιλέξτε `"Κλείσιμο Προγραμμάτων`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Προθεσμία:" 22 | ExpiryMessage = "Μπορείτε να επιλέξετε να αναβάλλετε την εγκατάσταση μέχρι να λήξει η αναβολή:" 23 | RemainingDeferrals = "Εναπομένουσες Αναβολές:" 24 | WarningMessage = "Μετά τη λήξη της αναβολής, δεν θα έχετε πλέον την επιλογή να αναβάλετε." 25 | WelcomeMessage = "Η παρακάτω εφαρμογή θα εγκατασταθεί:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Η εγκατάσταση" 29 | Repair = "Η επιδιόρθωση" 30 | Uninstall = "Η απεγκατάσταση" 31 | } 32 | DiskSpace = @{ 33 | Message = "Δεν υπάρχει επαρκής χώρος στο δίσκο για να ολοκληρωθεί η εγκατάσταση του:`n{0}`n`nΑπαιτούμενος χώρος: {1}MB`nΔιαθέσιμος χώρος: {2}MB`n`nΠαρακαλώ απελευθερώστε επαρκή χώρο για να προχωρήσει η εγκατάσταση." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Εγκατάσταση σε εξέλιξη. Παρακαλούμε περιμένετε..." 37 | MessageInstallDetail = "Αυτό το παράθυρο θα κλείσει αυτόματα όταν ολοκληρωθεί η εγκατάσταση." 38 | MessageRepair = "Επιδιόρθωση σε εξέλιξη. Παρακαλούμε περιμένετε..." 39 | MessageRepairDetail = "Αυτό το παράθυρο θα κλείσει αυτόματα όταν ολοκληρωθεί η επισκευή." 40 | MessageUninstall = "Απεγκατάσταση σε εξέλιξη. Παρακαλούμε περιμένετε..." 41 | MessageUninstallDetail = "Αυτό το παράθυρο θα κλείσει αυτόματα όταν ολοκληρωθεί η απεγκατάσταση." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Ελαχιστοποίηση" 45 | ButtonRestartNow = "Επανεκκίνηση τώρα" 46 | Message = "Για να ολοκληρωθεί η εγκατάσταση, πρέπει να επανεκκινήσετε τον υπολογιστή σας." 47 | MessageRestart = "Ο υπολογιστής σας θα επανεκκινηθεί αυτόματα στο τέλος της αντίστροφης μέτρησης." 48 | MessageTime = "Παρακαλούμε αποθηκεύστε την εργασία σας, και πραγματοποιήστε επανεκκίνηση εντός του καθορισμένου χρόνου." 49 | TimeRemaining = "Εναπομείναντας χρόνος:" 50 | Title = "Απαιτείται επανεκκίνηση" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} θα συνεχίσει αυτόματα σε:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Εφαρμογή {0}' 59 | DialogMessage = 'Αποθηκεύστε την εργασία σας πριν συνεχίσετε, καθώς οι ακόλουθες εφαρμογές θα κλείσουν αυτόματα.' 60 | DialogMessageNoProcesses = 'Επιλέξτε Εγκατάσταση για να συνεχίσετε την εγκατάσταση. Εάν σας έχουν απομείνει αναβολές, μπορείτε επίσης να επιλέξετε να καθυστερήσετε την εγκατάσταση.' 61 | ButtonDeferRemaining = 'παραμένουν' 62 | ButtonLeftText = 'Αναβολή' 63 | ButtonRightText = 'Κλείσιμο εφαρμογών & εγκατάσταση' 64 | ButtonRightTextNoProcesses = 'Εγκαταστήστε το' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/es/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "completada." 4 | Error = "fallida." 5 | FastRetry = "incompleta." 6 | RestartRequired = "completada. Se requiere un reinicio." 7 | Start = "iniciada." 8 | } 9 | BlockExecution = @{ 10 | Message = "La ejecución de esta aplicación se ha bloqueado temporalmente para que se pueda completar una operación de instalación." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Cerrar Programas" 14 | ButtonContinue = "Continuar" 15 | ButtonContinueTooltip = "Solo seleccione `"Continuar`" después de cerrar la(s) aplicacion(es) de la lista." 16 | ButtonDefer = "Aplazar" 17 | CountdownMessage = "NOTA: El/los programa(s) se cerrará(n) automáticamente en:" 18 | Message = "Los siguientes programas deben estar cerrados antes de que la instalación pueda continuar.`n`nGuarde su trabajo, cierre los programas y luego continúe.`nAlternativamente, guarde su trabajo y haga clic en `"Cerrar programas`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Fecha tope:" 22 | ExpiryMessage = "Puede optar por aplazar la instalación hasta que expire el aplazamiento:" 23 | RemainingDeferrals = "Aplazamientos restantes:" 24 | WarningMessage = "Una vez vencido el aplazamiento, ya no tendrá la opción de aplazar." 25 | WelcomeMessage = "La siguiente aplicación está a punto de instalarse:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Instalación" 29 | Repair = "Reparación" 30 | Uninstall = "Desinstalación" 31 | } 32 | DiskSpace = @{ 33 | Message = "El espacio en disco es insuficiente para completar la instalación de:`n{0}`n`nEspacio requerido: {1}MB`nEspacio disponible: {2}MB`n`nPor favor, libere suficiente espacio en disco para continuar con la instalación." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Instalación en curso. Por favor, espere..." 37 | MessageInstallDetail = "Esta ventana se cerrará automáticamente cuando finalice la instalación." 38 | MessageRepair = "Reparación en curso. Por favor, espere..." 39 | MessageRepairDetail = "Esta ventana se cerrará automáticamente cuando finalice la reparación." 40 | MessageUninstall = "Desinstalación en curso. Por favor, espere..." 41 | MessageUninstallDetail = "Esta ventana se cerrará automáticamente cuando finalice la desinstalación." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimizar" 45 | ButtonRestartNow = "Reiniciar Ahora" 46 | Message = "Para que la instalación se complete, debe reiniciar su equipo." 47 | MessageRestart = "El equipo se reiniciará automáticamente al final de la cuenta regresiva." 48 | MessageTime = "Por favor guarde su trabajo y reinicie dentro del tiempo asignado." 49 | TimeRemaining = "Tiempo restante:" 50 | Title = "Reinicio Requerido" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "La {0} continuará automáticamente en:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Aplicación {0}' 59 | DialogMessage = 'Guarde su trabajo antes de continuar, ya que las siguientes aplicaciones se cerrarán automáticamente.' 60 | DialogMessageNoProcesses = 'Seleccione Instalar para continuar con la instalación. Si le queda algún aplazamiento, también puede optar por retrasar la instalación.' 61 | ButtonDeferRemaining = 'permanezca en' 62 | ButtonLeftText = 'Aplazar' 63 | ButtonRightText = 'Cerrar aplicaciones e instalar' 64 | ButtonRightTextNoProcesses = 'Instale' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/fi/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "valmis." 4 | Error = "epäonnistui." 5 | FastRetry = "ei ole valmis." 6 | RestartRequired = "valmis. Tietokone on käynnistettävä uudelleen." 7 | Start = "alkoi." 8 | } 9 | BlockExecution = @{ 10 | Message = "Ohjelmiston käynnistäminen on tilapäisesti estetty, jotta ohjelmisto voi onnistuneesti asentua." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Sulje ohjelmat" 14 | ButtonContinue = "Jatka" 15 | ButtonContinueTooltip = "Valitse jatka, kun olet sulkenut ohjelmat." 16 | ButtonDefer = "Myöhemmin" 17 | CountdownMessage = "HUOMIO: Ohjelma(t) suljetaan automaattisesti:" 18 | Message = "Seuraavat ohjelmat on suljettava ennen asennusta`n`nTallenna työsi ja jatka. Vaihtoehtoisesti voit tallentaa työsi ja valita `"Sulje ohjelmat`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Määräaika:" 22 | ExpiryMessage = "Voit siirtää asennusta myöhemmäksi:" 23 | RemainingDeferrals = "Jäljellä olevia siirtoja myöhempään ajankohtaan:" 24 | WarningMessage = "Tietyn ajan kuluessa et voi enää siirtää asennusta myöhemmäksi." 25 | WelcomeMessage = "Ohjelma joka asennetaan seuraavaksi:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Asennus" 29 | Repair = "Korjaus" 30 | Uninstall = "Ohjelmiston poisto" 31 | } 32 | DiskSpace = @{ 33 | Message = "Kiintolevyllä ei ole riittävästi tilaa asennusta varten:`n{0}`n`nVaadittu levytila: {1}MB`nLevytilaa käytettävissä: {2}MB`n`nVapauta levytilaa, jotta asennus voi jatkua." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Asentaa. Odota..." 37 | MessageInstallDetail = "Tämä ikkuna sulkeutuu automaattisesti, kun asennus on valmis." 38 | MessageRepair = "Korjaus käynnissä. Odota..." 39 | MessageRepairDetail = "Tämä ikkuna sulkeutuu automaattisesti, kun korjaus on valmis." 40 | MessageUninstall = "Ohjelmistoa poistetaan. Odota..." 41 | MessageUninstallDetail = "Tämä ikkuna sulkeutuu automaattisesti, kun asennuksen poisto on valmis." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Käynnistä uudelleen myöhemmin" 45 | ButtonRestartNow = "Käynnistä uudelleen heti" 46 | Message = "Tietokone on käynnistettävä uudelleen, ennen kuin ohjelmiston asennus on valmis." 47 | MessageRestart = "Tietokone käynnistyy uudelleen, kun laskuri on saavuttanut nollan." 48 | MessageTime = "Tallenna työsi ja käynnistä tietokone uudelleen aikarajan sisällä." 49 | TimeRemaining = "Aikaa jäljellä:" 50 | Title = "Tietokone on käynnistettävä uudelleen" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} jatkaa automaattisesti:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Sovellus {0}' 59 | DialogMessage = 'Tallenna työsi ennen kuin jatkat, sillä seuraavat sovellukset suljetaan automaattisesti.' 60 | DialogMessageNoProcesses = 'Jatka asennusta valitsemalla Asenna. Jos sinulla on vielä lykkäyksiä jäljellä, voit myös lykätä asennusta.' 61 | ButtonDeferRemaining = 'pysyä' 62 | ButtonLeftText = 'Siirrä' 63 | ButtonRightText = 'Sulje sovellukset & asenna' 64 | ButtonRightTextNoProcesses = 'Asenna' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/fr/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "réussie." 4 | Error = "en échec." 5 | FastRetry = "incomplète." 6 | RestartRequired = "réussie. Un redémarrage est requis." 7 | Start = "en cours." 8 | } 9 | BlockExecution = @{ 10 | Message = "Le lancement de cette application a été temporairement bloqué afin qu'une autre installation puisse se terminer." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Fermer Programmes" 14 | ButtonContinue = "Poursuivre" 15 | ButtonContinueTooltip = "Veuillez cliquer sur « Poursuivre » uniquement après avoir fermé la ou les application(s) ci-dessus." 16 | ButtonDefer = "Reporter l'installation" 17 | CountdownMessage = "REMARQUE: Les programmes seront automatiquement fermés dans:" 18 | Message = "Les programmes suivants doivent être fermés afin que l'installation s'initialise.`n`nMerci de sauvegarder votre travail, fermer tous les programmes, et continuer. Vous pouvez aussi sauvegarder votre travail puis cliquez sur « Fermer Programmes »." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Temps limite:" 22 | ExpiryMessage = "Vous pouvez choisir de reporter l'installation:" 23 | RemainingDeferrals = "Nombre(s) de report restant(s):" 24 | WarningMessage = "Quand le temps aura expiré, vous n'aurez plus la possibilité de reporter." 25 | WelcomeMessage = "L'application suivante est sur le point d'être installée:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Installation" 29 | Repair = "Réparation" 30 | Uninstall = "Désinstallation" 31 | } 32 | DiskSpace = @{ 33 | Message = "Vous n'avez pas assez d'espace sur le disque pour compléter l'installation de:`n{0}`n`nEspace requis: {1}MB`nEspace disponible: {2}MB`n`nMerci de vous assurez d'avoir assez d'espace libre pour pouvoir continuer l'installation." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Installation en cours, merci de patienter..." 37 | MessageInstallDetail = "Cette fenêtre se fermera automatiquement lorsque l'installation sera terminée." 38 | MessageRepair = "Réparation en cours, merci de patienter..." 39 | MessageRepairDetail = "Cette fenêtre se fermera automatiquement lorsque la réparation sera terminée." 40 | MessageUninstall = "Désinstallation en cours, merci de patienter..." 41 | MessageUninstallDetail = "Cette fenêtre se fermera automatiquement lorsque la désinstallation sera terminée." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimiser" 45 | ButtonRestartNow = "Redémarrer Maintenant" 46 | Message = "Pour que l'installation soit compléte, vous devez redémarrer votre ordinateur." 47 | MessageRestart = "Votre ordinateur sera automatiquement redémarré à la fin du décompte." 48 | MessageTime = "Merci de sauvegarder votre travail et de redémarrer avant que le temps spécifié ne soit écoulé." 49 | TimeRemaining = "Temps restant:" 50 | Title = "Redémarrage Requis" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "L'{0} va continuer automatiquement:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - App {0}' 59 | DialogMessage = 'Veuillez sauvegarder votre travail avant de continuer, car les applications suivantes seront automatiquement fermées.' 60 | DialogMessageNoProcesses = "Veuillez sélectionner Installer pour poursuivre l'installation. S'il vous reste des reports, vous pouvez également choisir de retarder l'installation." 61 | ButtonDeferRemaining = 'rester' 62 | ButtonLeftText = 'Report' 63 | ButtonRightText = 'Fermer les applications et installer' 64 | ButtonRightTextNoProcesses = 'Installer' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/he/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "הושלמה." 4 | Error = "נכשלה." 5 | FastRetry = "לא הושלמה." 6 | RestartRequired = "הושלמה. נדרש אתחול המחשב." 7 | Start = "התחילה." 8 | } 9 | BlockExecution = @{ 10 | Message = "הרצת היישום הזה נחסמה זמנית כדי שפעולת התקנה תוכל להסתיים." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "סגור תכניות" 14 | ButtonContinue = "המשך" 15 | ButtonContinueTooltip = "בחר `"המשך`" רק לאחר שסגרת את היישום(ים) הרשומים לעיל." 16 | ButtonDefer = "דחה" 17 | CountdownMessage = "שים לב: התכנית(ות) תסגרנה באופן אוטומטי תוך:" 18 | Message = "יש לסגור את התכנות הבאות בטרם ההתקנה תוכל להתחיל.`n`nאנא שמור על העבודה שלך, סגור את התכניות, ואז המשך. לחילופין, שמור על העבודה שלך והקלק על `"סגור תכניות`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "תאריך יעד:" 22 | ExpiryMessage = "אתה יכול לבחור לדחות את ההתקנה עד שמשך זמן הדחיה יפוג." 23 | RemainingDeferrals = "מספר הדחיות שנותרו:" 24 | WarningMessage = "לאחר שמשך זמן הדחיה יפוג, לא תהיה לך עוד אפשרות לדחות." 25 | WelcomeMessage = "היישום הבא עומד להיות מותקן:" 26 | } 27 | DeploymentType = @{ 28 | Install = "התקנה" 29 | Repair = "תיקון" 30 | Uninstall = "הסרה" 31 | } 32 | DiskSpace = @{ 33 | Message = ":אין לך מספיק מקום בכונן כדי להשלים את ההתקנה של:`n{0}`n`nמקום נדרש: {1}מ`"ב`nמקום זמין: {2}מ`"ב`n`nאנא שחרר מספיק מקום בכונן כדי להתחיל בהתקנה." 34 | } 35 | Progress = @{ 36 | MessageInstall = "מבצע התקנה. נא להמתין." 37 | MessageInstallDetail = "חלון זה ייסגר אוטומטית עם השלמת ההתקנה." 38 | MessageRepair = "מבצע תיקון. נא להמתין." 39 | MessageRepairDetail = "חלון זה ייסגר אוטומטית עם השלמת התיקון." 40 | MessageUninstall = "מבצע הסרה. נא להמתין." 41 | MessageUninstallDetail = "חלון זה ייסגר אוטומטית עם השלמת הסרת ההתקנה." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "מזער את" 45 | ButtonRestartNow = "אתחל עכשיו" 46 | Message = "כדי להשלים את ההתקנה, עליך לאתחל את המחשב שלך מחדש." 47 | MessageRestart = "המחשב שלך יאותחל באופן אוטומטי בסיום הספירה לאחור." 48 | MessageTime = "אנא שמור על העבודה שלך ואתחל במסגרת הזמן המוקצב." 49 | TimeRemaining = "הזמן הנותר:" 50 | Title = "נדרש אתחול המחשב" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "ה {0} ימשיך באופן אוטומטי:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - אפליקציה {0}' 59 | DialogMessage = 'אנא שמור את עבודתך לפני שתמשיך שכן היישומים הבאים ייסגרו אוטומטית.' 60 | DialogMessageNoProcesses = 'אנא בחר התקן כדי להמשיך בהתקנה. אם נותרו לך דחיות, תוכל גם לבחור לדחות את ההתקנה.' 61 | ButtonDeferRemaining = 'לְהִשָׁאֵר' 62 | ButtonLeftText = 'לִדחוֹת' 63 | ButtonRightText = 'סגור אפליקציות והתקן' 64 | ButtonRightTextNoProcesses = 'לְהַתְקִין' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/hu/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "elkészült." 4 | Error = "sikertelen." 5 | FastRetry = "nem lehet befejezni." 6 | RestartRequired = "elkészült.Újraindítás szükséges." 7 | Start = "elindult." 8 | } 9 | BlockExecution = @{ 10 | Message = "A következő alkalmazások blokkolva lesznek, annak érdekében hogy a telepítés problémamentesen végrehajtódjon." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Alkalmazások bezárása" 14 | ButtonContinue = "Tovább" 15 | ButtonContinueTooltip = "Csak azután kattintson a `"Tovább`"-ra, ha a fentebb látható alkalmazás(oka)t bezárta." 16 | ButtonDefer = "Elhalaszt" 17 | CountdownMessage = "Megjegyzés: a programok automatikusan bezárásra kerülnek,:" 18 | Message = "Az alábbi programokat szíveskedjen bezárni, mielőtt a telepítés elkezdődik.`n`nKérjük mentse munkáját és a folytatáshoz zárja be a futó alkalmazásokat. Vagy Kérjük mentse munkáját és kattintson a `"Programok bezárása`"-ra." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Időpont:" 22 | ExpiryMessage = "A telepítést elhalaszthatja amíg a rendelkezésre álló idő lejár:" 23 | RemainingDeferrals = "Fennmaradó halasztás:" 24 | WarningMessage = "Amennyiben a rendelkezésre álló idő letelik, nem lesz lehetősége a telepítés elhalasztására." 25 | WelcomeMessage = "A következő alkalmazások telepítésre kerülnek:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Telepítés" 29 | Repair = "Javítás" 30 | Uninstall = "Eltávolítás" 31 | } 32 | DiskSpace = @{ 33 | Message = "Nincs elég lemezterület a telepítés végrehajtásához:`n{0}`n`nSzükséges lemezterület: {1}MB`nSzabad lemezterület: {2}MB`nKérem szabadítson fel elegendő lemezterületet a telepítés végrehajtásához." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Telepítés folyamatban. Kérem várjon..." 37 | MessageInstallDetail = "Ez az ablak automatikusan bezáródik, amikor a telepítés befejeződik." 38 | MessageRepair = "Javítás folyamatban. Kérem várjon..." 39 | MessageRepairDetail = "Ez az ablak automatikusan bezáródik, ha a javítás befejeződött." 40 | MessageUninstall = "Eltávolítás folyamatban. Kérem várjon..." 41 | MessageUninstallDetail = "Ez az ablak automatikusan bezáródik, amikor az eltávolítás befejeződik." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimalizál" 45 | ButtonRestartNow = "Újraindítás most" 46 | Message = "A telepítés befejezéséhez a számítógépet újraindítása szükséges." 47 | MessageRestart = "A hátralévő idő leteltével a számítógép újraindul." 48 | MessageTime = "Kérem mentse munkáját, és a megadott időn belül indítsa újra.." 49 | TimeRemaining = "Hátralévő idő:" 50 | Title = "Újraindítás szükséges" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "A(z) {0} automatikusan folytatódik:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Alkalmazás {0}' 59 | DialogMessage = 'Kérjük, mentse el a munkáját, mielőtt folytatná, mivel a következő alkalmazások automatikusan lezárulnak.' 60 | DialogMessageNoProcesses = 'Please select Install to continue with the installation. If you have any deferrals remaining, you may also choose to delay the installation.' 61 | ButtonDeferRemaining = 'maradjon' 62 | ButtonLeftText = 'Elhalasztás' 63 | ButtonRightText = 'Alkalmazások bezárása és telepítése' 64 | ButtonRightTextNoProcesses = 'Telepítse a' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/it/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "Completata." 4 | Error = "Fallita." 5 | FastRetry = "Non completata." 6 | RestartRequired = "Completata. È necessario riavviare il computer." 7 | Start = "Iniziata." 8 | } 9 | BlockExecution = @{ 10 | Message = "L'esecuzione di questa applicazione è stata temporaneamente bloccata in modo che l'operazione di installazione possa essere completata." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Chiudi Programmi" 14 | ButtonContinue = "Continua" 15 | ButtonContinueTooltip = "Seleziona `"Continua`" solo dopo la chiusura della(e) applicazione(i) elencate sopra." 16 | ButtonDefer = "Rimanda" 17 | CountdownMessage = "NOTA: il programma(s) sarà chiuso automaticamente in:" 18 | Message = "I seguenti programmi devono essere chiusi prima che l'installazione possa procedere.`n`nSalvare il lavoro , chiudere i programmi, e poi continuare. In alternativa, salvare il lavoro e fare clic su `"Chiudi Programmi`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Scadenza:" 22 | ExpiryMessage = "Si può decidere di posticipare l'installazione fino alla prossima richiesta automatica:" 23 | RemainingDeferrals = "Posticipi rimanenti:" 24 | WarningMessage = "Una volta che le richieste rimanenti saranno scadute, non sarà più possibile posticipare l'installazione." 25 | WelcomeMessage = "La seguente applicazione sta per essere installata:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Installazione" 29 | Repair = "Riparazione" 30 | Uninstall = "Disinstallazione" 31 | } 32 | DiskSpace = @{ 33 | Message = "Non si dispone di spazio su disco sufficiente per completare l'installazione di:`n{0}`n`nSpazio necessario: {1}MB`nSpazio disponibile: {2}MB`n`nSi prega di spazio libero su disco sufficiente per procedere con l'installazione." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Installazione in corso. Attendere prego..." 37 | MessageInstallDetail = "Questa finestra si chiude automaticamente al termine dell'installazione." 38 | MessageRepair = "Riparazione in corso. Attendere prego..." 39 | MessageRepairDetail = "Questa finestra si chiuderà automaticamente al termine della riparazione." 40 | MessageUninstall = "Disinstallazione in corso. Attendere prego..." 41 | MessageUninstallDetail = "Questa finestra si chiuderà automaticamente al termine della disinstallazione." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimizzare" 45 | ButtonRestartNow = "Riavvia Ora" 46 | Message = "Per completare l'installazione, è necessario riavviare il computer." 47 | MessageRestart = "Il computer verrà riavviato automaticamente al termine del conto alla rovescia." 48 | MessageTime = "Salvare il lavoro e riavviare entro il tempo assegnato." 49 | TimeRemaining = "Tempo rimanente:" 50 | Title = "Riavvio Richiesto" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "Il {0} continuerà automaticamente in:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - App {0}' 59 | DialogMessage = 'Salvate il vostro lavoro prima di continuare, perché le applicazioni seguenti verranno chiuse automaticamente.' 60 | DialogMessageNoProcesses = "Selezionare Installa per continuare l'installazione. Se sono rimasti dei rinvii, si può anche scegliere di ritardare l'installazione." 61 | ButtonDeferRemaining = 'rimanere' 62 | ButtonLeftText = 'Rinviare' 63 | ButtonRightText = 'Chiudere le applicazioni e installare' 64 | ButtonRightTextNoProcesses = 'Installare' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/ja/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "完了です" 4 | Error = "失敗。" 5 | FastRetry = "未完了。" 6 | RestartRequired = "完了。再起動が必要です。" 7 | Start = "開始" 8 | } 9 | BlockExecution = @{ 10 | Message = "アプリケーションインストールが完了するまで、このアプリケーションの起動を一時的にブロックしています。" 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "プログラムを強制終了" 14 | ButtonContinue = "続行" 15 | ButtonContinueTooltip = "上記に記載されているアプリケーションを終了してから「続ける」を選択してください。" 16 | ButtonDefer = "後で" 17 | CountdownMessage = "注意: これらのプログラムは自動的に閉じられます:" 18 | Message = "インストールを実行するために、下記のプログラムを閉じる必要があります。`n`n実行中のアプリケーションを保存し、閉じてから続行してください。 または、実行中のアプリケーションを保存し、プログラムを強制終了ボタンをクリックしてくだい" 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "デッドライン:" 22 | ExpiryMessage = "再試行可能回数が0になるまでは、都合の良い時にインストール可能です。" 23 | RemainingDeferrals = "再試行可能回数:" 24 | WarningMessage = "再試行可能回数が0になった場合、システムで強制インストールをします。" 25 | WelcomeMessage = "このアプリケーションはこれからインストールされます。" 26 | } 27 | DeploymentType = @{ 28 | Install = "インストール" 29 | Repair = "修復" 30 | Uninstall = "アンインストール" 31 | } 32 | DiskSpace = @{ 33 | Message = "ディスクの空き容量が不足しているため、インストールを完了できません:`n{0}`n`n必要な容量: {1}MB`n現在の空き容量: {2}MB`n`nインストールを実行するために、容量を確保してください" 34 | } 35 | Progress = @{ 36 | MessageInstall = "インストール中です。 少々お待ちください。" 37 | MessageInstallDetail = "インストールが完了すると、このウィンドウは自動的に閉じます。" 38 | MessageRepair = "修復中です。 少々お待ちください。" 39 | MessageRepairDetail = "修復が完了すると、このウィンドウは自動的に閉じます。" 40 | MessageUninstall = "アンインストール中です。 少々お待ちください。" 41 | MessageUninstallDetail = "アンインストールが完了すると、このウィンドウは自動的に閉じます。" 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "最小 化" 45 | ButtonRestartNow = "今すぐ再起動" 46 | Message = "インストールを完了するために、再起動が必要です。" 47 | MessageRestart = "カウントダウン後にコンピュータが再起動します。" 48 | MessageTime = "実行中のアプリケーションを保存し、再起動してください。" 49 | TimeRemaining = "残時間:" 50 | Title = "再起動が必要です" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} は自動的に続きます:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - アプリ {0}' 59 | DialogMessage = '次のアプリケーションは自動的に終了しますので、作業を続ける前に保存してください。' 60 | DialogMessageNoProcesses = 'インストールを選択してインストールを続行してください。延期分が残っている場合は、インストールを延期することもできます。' 61 | ButtonDeferRemaining = '残る' 62 | ButtonLeftText = '延期' 63 | ButtonRightText = 'アプリを閉じる&インストール' 64 | ButtonRightTextNoProcesses = 'インストール' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/ko/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "완료되었습니다." 4 | Error = "실패했습니다." 5 | FastRetry = "완료되지 않았습니다." 6 | RestartRequired = "완료되었습니다. 재부팅이 필요합니다." 7 | Start = "시작되었습니다." 8 | } 9 | BlockExecution = @{ 10 | Message = "설치 작업을 완료할 수 있도록 응용 프로그램의 시작을 잠시 차단했습니다." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "프로그램 종료" 14 | ButtonContinue = "계속" 15 | ButtonContinueTooltip = "위에 표시된 응용 프로그램을 종료한 후에만 `"계속`"을 선택하세요." 16 | ButtonDefer = "연기" 17 | CountdownMessage = "참고: 프로그램이 자동으로 종료되는 경우:" 18 | Message = "설치를 계속하려면 다음의 프로그램을 종료해야 합니다.`n`n사용자 작업을 저장하고 프로그램을 종료한 후 계속하세요. 다른 방법으로는 사용자 작업을 저장하고 `"프로그램 종료`"를 클릭하세요." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "마감:" 22 | ExpiryMessage = "지연 기간이 만료될 때까지 설치를 연기할 수 있습니다:" 23 | RemainingDeferrals = "남은 지연 기간:" 24 | WarningMessage = "일단 지연 기간이 만료되면 더 이상 연기할 수 있는 옵션은 없습니다." 25 | WelcomeMessage = "다음의 응용 프로그램을 설치합니다:" 26 | } 27 | DeploymentType = @{ 28 | Install = "설치" 29 | Repair = "수리" 30 | Uninstall = "제거" 31 | } 32 | DiskSpace = @{ 33 | Message = "다음의 설치 완료를 위해 필요한 디스크 공간이 충분하지 않습니다:`n{0}`n`n필요한 공간: {1}MB`n사용 가능한 공간: {2}MB`n`n설치를 계속하려면 디스크 공간을 충분하게 확보하세요." 34 | } 35 | Progress = @{ 36 | MessageInstall = "설치 중입니다. 기다리세요..." 37 | MessageInstallDetail = "이 창은 설치가 완료되면 자동으로 닫힙니다." 38 | MessageRepair = "수리 중입니다. 기다리세요..." 39 | MessageRepairDetail = "이 창은 수리가 완료되면 자동으로 닫힙니다." 40 | MessageUninstall = "제거 중입니다. 기다리세요..." 41 | MessageUninstallDetail = "이 창은 제거가 완료되면 자동으로 닫힙니다." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "최소화" 45 | ButtonRestartNow = "지금 다시 시작" 46 | Message = "설치를 완료하려면 컴퓨터를 다시 시작해야 합니다." 47 | MessageRestart = "카운트다운이 종료되면 컴퓨터는 자동으로 다시 시작합니다." 48 | MessageTime = "사용자 작업을 저장하고 지정된 시간 이내에 다시 시작하세요." 49 | TimeRemaining = "남은 시간:" 50 | Title = "다시 시작해야 합니다" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0}는 자동으로 계속됩니다:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - 앱 {0}' 59 | DialogMessage = '다음 애플리케이션은 자동으로 종료되므로 계속하기 전에 작업을 저장해 주세요.' 60 | DialogMessageNoProcesses = '설치를 계속하려면 설치를 선택하세요. 연기할 항목이 남아 있는 경우 설치를 연기하도록 선택할 수도 있습니다.' 61 | ButtonDeferRemaining = '남아있음' 62 | ButtonLeftText = '연기하다' 63 | ButtonRightText = '앱 닫기 및 설치' 64 | ButtonRightTextNoProcesses = '설치' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/nb/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "fullført." 4 | Error = "mislyktes." 5 | FastRetry = "ikke fullført." 6 | RestartRequired = "ferdig. En omstart er nødvendig." 7 | Start = "startet." 8 | } 9 | BlockExecution = @{ 10 | Message = "Start av dette programmet er midlertidig blokkert inntil pågående programvareinstallasjon er fullført." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Lukk programmer" 14 | ButtonContinue = "Fortsett" 15 | ButtonContinueTooltip = "Velg kun `"Fortsett`" etter du har lukket applikasjonen(e) i listen over." 16 | ButtonDefer = "Utsett" 17 | CountdownMessage = "OBS: Programmet vil automatisk lukkes om:" 18 | Message = "Følgende programmer må lukkes før installasjonen kan fortsette.`n`nLagre arbeidet, lukk programmene og velg `"Fortsett`", eller velg `"Lukk programmer`" uten å lagre arbeidet." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Frist:" 22 | ExpiryMessage = "Du kan velge å utsette installasjonen et begrenset antall ganger inntil fristen utløper:" 23 | RemainingDeferrals = "Gjenstående utsettelser:" 24 | WarningMessage = "Når fristen har utløpt kan du ikke lenger utsette installasjonen." 25 | WelcomeMessage = "Følgende program vil bli installert:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Installasjon" 29 | Repair = "Reparasjon" 30 | Uninstall = "Avinstallasjon" 31 | } 32 | DiskSpace = @{ 33 | Message = "Du har ikke nok diskplass for å fullføre installasjonen av:`n{0}`n`nLedig plass påkrevd: {1}MB`nLedig plass tilgjengelig: {2}MB`n`nFrigjør diskplass for å fortsette installasjonen." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Installasjon av programvare pågår. Vennligst vent.." 37 | MessageInstallDetail = "Dette vinduet lukkes automatisk når installasjonen er fullført." 38 | MessageRepair = "Reparasjon av programvare pågår. Vennligst vent.." 39 | MessageRepairDetail = "Dette vinduet lukkes automatisk når reparasjonen er fullført." 40 | MessageUninstall = "Avinstallasjon av programvare pågår. Vennligst vent.." 41 | MessageUninstallDetail = "Dette vinduet lukkes automatisk når avinstallasjonen er fullført." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimere" 45 | ButtonRestartNow = "Omstart nå" 46 | Message = "En omstart av maskinen er nødvendig for å fullføre installasjonen." 47 | MessageRestart = "Maskinen vil automatisk starte på nytt, når nedtellingen er omme." 48 | MessageTime = "Lagre arbeidet ditt og ta en omstart av maskinen innen fristen." 49 | TimeRemaining = "Tid som gjenstår:" 50 | Title = "Omstart kreves" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} vil automatisk fortsette om:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - App {0}' 59 | DialogMessage = 'Lagre arbeidet ditt før du fortsetter, fordi de følgende programmene blir lukket automatisk.' 60 | DialogMessageNoProcesses = 'Velg Installere for å fortsette med installasjonen. Hvis du har noen utsettelser igjen, kan du også velge å utsette installasjonen.' 61 | ButtonDeferRemaining = 'gjenstår' 62 | ButtonLeftText = 'Utsette' 63 | ButtonRightText = 'Lukk apper og installer' 64 | ButtonRightTextNoProcesses = 'Installere' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/nl/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "voltooid" 4 | Error = "gefaald" 5 | FastRetry = "onvolledig" 6 | RestartRequired = "voltooid. Een herstart is nodig" 7 | Start = "gestart" 8 | } 9 | BlockExecution = @{ 10 | Message = "Het opstarten van deze applicatie werd tijdelijk geblokkeerd om een installatie uit te voeren." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Sluit Applicaties" 14 | ButtonContinue = "Doorgaan" 15 | ButtonContinueTooltip = "Selecteer alleen 'Doorgaan' na het sluiten van de bovenstaande toepassing(en)." 16 | ButtonDefer = "Uitstel" 17 | CountdownMessage = "LET OP: De applicatie(s) worden afgesloten over:" 18 | Message = "De volgende applicaties moeten afgesloten worden om de installatie te voltooien.`n`nSla je werk op, sluit de applicaties, en ga verder.`nOf, sla je werk op en klik op 'Sluit Applicaties'." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Deadline:" 22 | ExpiryMessage = "Je kan de installatie uitstellen tot de maximale uitsteltermijn is verstreken:" 23 | RemainingDeferrals = "Aantal keer uitstellen:" 24 | WarningMessage = "Na verstrijken van de uitsteltermijn is deze optie niet langer beschikbaar." 25 | WelcomeMessage = "De volgende applicatie wordt zometeen geïnstalleerd:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Installatie" 29 | Repair = "Reparatie" 30 | Uninstall = "Verwijderen" 31 | } 32 | DiskSpace = @{ 33 | Message = "Er is onvoldoende schijfruimte voor de installatie van:`n{0}`n`nRuimte nodig: {1}MB`nRuimte beschikbaar: {2}MB`n`nGelieve voldoende schijfruimte vrij te maken om de installatie te starten." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Installatie bezig. Even geduld..." 37 | MessageInstallDetail = "Dit venster wordt automatisch gesloten wanneer de installatie voltooid is." 38 | MessageRepair = "Reparatie bezig. Even geduld..." 39 | MessageRepairDetail = "Dit venster sluit automatisch wanneer de reparatie is voltooid." 40 | MessageUninstall = "Verwijderen bezig. Even geduld..." 41 | MessageUninstallDetail = "Dit venster wordt automatisch gesloten als de de-installatie voltooid is." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimaliseren" 45 | ButtonRestartNow = "Herstart Nu" 46 | Message = "Om de installatie te voltooien is een herstart nodig." 47 | MessageRestart = "De computer zal herstarten als de teller op nul staat" 48 | MessageTime = "Gelieve je werk op te slaan en binnen de toegestane termijn de computer herstarten" 49 | TimeRemaining = "Resterende tijd:" 50 | Title = "Herstart nodig" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "De {0} gaat automatisch door over:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - App {0}' 59 | DialogMessage = "Sla je werk op voordat je verdergaat, want de volgende programma's worden automatisch afgesloten." 60 | DialogMessageNoProcesses = 'Selecteer Installeren om door te gaan met de installatie. Als je nog uitstel hebt, kun je er ook voor kiezen om de installatie uit te stellen.' 61 | ButtonDeferRemaining = 'resterend' 62 | ButtonLeftText = 'Uitstellen' 63 | ButtonRightText = 'Apps sluiten en installeren' 64 | ButtonRightTextNoProcesses = 'Installeren' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/pl/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "zakończona." 4 | Error = "nie powiodła się." 5 | FastRetry = "nieukończona." 6 | RestartRequired = "zakończona. Wymagany jest restart komputera." 7 | Start = "rozpoczęta." 8 | } 9 | BlockExecution = @{ 10 | Message = "Uruchomienie tej aplikacji zostało zablokowane na okres instalacji." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Zamknij Programy" 14 | ButtonContinue = "Kontynuuj" 15 | ButtonContinueTooltip = "Tylko wybrać `"Kontynuuj`" po zamknięciu wyżej wymienione aplikacje." 16 | ButtonDefer = "Odłóż" 17 | CountdownMessage = "UWAGA: Programy zostaną automatycznie zamknięte za:" 18 | Message = "Następujące programy muszą zostać zamknięte przed rozpoczęciem instalacji.`n`nProszę zapisać wszystkie dokumenty i zamknąć programy, a następnie kliknąć przycisk `"Kontynuuj`". Alternatywnie zapisz wszystkie dokumenty i kliknij przycisk `"Zamknij Programy`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Ostateczny termin instalacji:" 22 | ExpiryMessage = "Instalacja może zostać przełożona na późniejszy termin." 23 | RemainingDeferrals = "Pozostała ilość przełożeń instalacji:" 24 | WarningMessage = "Jeżeli zostanie przekroczona możliwa ilość przełożeń, opcja `"Odłóż`" będzie niedostępna." 25 | WelcomeMessage = "Zostanie zainstalowana następująca aplikacja:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Instalacja" 29 | Repair = "Naprawa" 30 | Uninstall = "Deinstalacja" 31 | } 32 | DiskSpace = @{ 33 | Message = "Brak miejsca na dysku:`n{0}`n`nPotrzeba: {1}MB`nObecnie wolnego miejsca: {2}MB`n`nProszę zwiększyć ilość miejsca usuwając zbędne pliki." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Trwa instalacja. Proszę czekać..." 37 | MessageInstallDetail = "Okno to zamknie się automatycznie po zakończeniu instalacji." 38 | MessageRepair = "Trwa naprawa. Proszę czekać..." 39 | MessageRepairDetail = "Okno to zamknie się automatycznie po zakończeniu naprawy." 40 | MessageUninstall = "Trwa deinstalacja. Proszę czekać..." 41 | MessageUninstallDetail = "Okno to zamknie się automatycznie po zakończeniu dezinstalacji." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Zminimalizować" 45 | ButtonRestartNow = "Restartuj Teraz" 46 | Message = "Aby instalacja została poprawnie ukończona wymagany jest restart komputera." 47 | MessageRestart = "Komputer zostanie automatycznie zrestartowany po upływie wyznaczonego czasu." 48 | MessageTime = "Proszę zapisać wszystkie dokumenty i zrestartować komputer w wyznaczonym czasie." 49 | TimeRemaining = "Pozostały czas do restartu automatycznego:" 50 | Title = "Wymagany Restart" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} będzie automatycznie kontynuować w:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - aplikacja {0}' 59 | DialogMessage = 'Zapisz swoją pracę przed kontynuowaniem, ponieważ następujące aplikacje zostaną automatycznie zamknięte.' 60 | DialogMessageNoProcesses = 'Wybierz opcję Zainstaluj, aby kontynuować instalację. Jeśli pozostały jakieś odroczenia, możesz również opóźnić instalację.' 61 | ButtonDeferRemaining = 'pozostać' 62 | ButtonLeftText = 'Odroczenie' 63 | ButtonRightText = 'Zamknij aplikacje i zainstaluj' 64 | ButtonRightTextNoProcesses = 'Instalacja' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/pt-br/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "concluída." 4 | Error = "falhou." 5 | FastRetry = "não concluída." 6 | RestartRequired = "concluída. É necessário reiniciar." 7 | Start = "iniciada." 8 | } 9 | BlockExecution = @{ 10 | Message = "A execução deste aplicativo foi temporariamente bloqueada para que uma operação de instalação seja concluída." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Fechar Programas" 14 | ButtonContinue = "Continuar" 15 | ButtonContinueTooltip = "Apenas selecione `"Continuar`" depois de fechar aplicativo(s) acima." 16 | ButtonDefer = "Adiar" 17 | CountdownMessage = "OBSERVAÇÃO: O(s) programa(s) será(ão) automaticamente fechado(s) em:" 18 | Message = "Os seguintes programas precisam ser fechados antes que a instalação possa prosseguir.`nSalve seu trabalho, feche os programas e depois continue. Como alternativa, salve seu trabalho e clique em `"Fechar Programas`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Prazo:" 22 | ExpiryMessage = "Você pode optar por adiar a instalação até que o adiamento expire:" 23 | RemainingDeferrals = "Adiamentos Restantes:" 24 | WarningMessage = "Depois que o adiamento expirar, você não terá mais a opção de adiar." 25 | WelcomeMessage = "O seguinte aplicativo está prestes a ser instalado:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Instalação" 29 | Repair = "Reparação" 30 | Uninstall = "Desinstalação" 31 | } 32 | DiskSpace = @{ 33 | Message = "Você não tem espaço em disco suficiente para concluir a instalação de:`n{0}`n`nEspaço necessário: {1}MB`nEspaço disponível: {2}MB`n`nLibere espaço em disco suficiente para prosseguir com a instalação." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Instalação em andamento. Aguarde..." 37 | MessageInstallDetail = "Essa janela será fechada automaticamente quando a instalação for concluída." 38 | MessageRepair = "Reparação em andamento. Aguarde..." 39 | MessageRepairDetail = "Essa janela será fechada automaticamente quando o reparo for concluído." 40 | MessageUninstall = "Desinstalação em andamento. Aguarde..." 41 | MessageUninstallDetail = "Essa janela será fechada automaticamente quando a desinstalação for concluída." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimizar" 45 | ButtonRestartNow = "Reiniciar Agora" 46 | Message = "Para que a instalação seja concluída, é necessário reiniciar o computador." 47 | MessageRestart = "Seu computador será reiniciado automaticamente no final da contagem regressiva." 48 | MessageTime = "Salve seu trabalho e reinicie dentro do prazo estipulado." 49 | TimeRemaining = "Tempo restante:" 50 | Title = "Reinicialização Necessária" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "O {0} continuará automaticamente em:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Aplicativo {0}' 59 | DialogMessage = 'Salve seu trabalho antes de continuar, pois os aplicativos a seguir serão fechados automaticamente.' 60 | DialogMessageNoProcesses = 'Selecione Install para continuar com a instalação. Se houver algum adiamento restante, você também poderá optar por adiar a instalação.' 61 | ButtonDeferRemaining = 'permanecer' 62 | ButtonLeftText = 'Adiar' 63 | ButtonRightText = 'Fechar aplicativos e instalar' 64 | ButtonRightTextNoProcesses = 'Instalar' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/pt/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "completo." 4 | Error = "falhou." 5 | FastRetry = "não completar." 6 | RestartRequired = "completa. Uma reinicialização é necessária." 7 | Start = "começou a." 8 | } 9 | BlockExecution = @{ 10 | Message = "Lançar este aplicativo está temporariamente bloqueado para que possa concluir uma operação de instalação." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Fechar Programas" 14 | ButtonContinue = "Continuar" 15 | ButtonContinueTooltip = "Selecione `"Continuar`" somente após fechar a(s) aplicação(ões) listada(s) abaixo." 16 | ButtonDefer = "Adiar" 17 | CountdownMessage = "NOTA: O programa será fechado automaticamente em:" 18 | Message = "Programas de seguir devem ser fechados antes que a instalação possa prosseguir.`n`nPor favor, guarde o seu trabalho, feche os programas e em seguida continuar. Como alternativa, salve seu trabalho e clique em `"Fechar Programas`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Prazo:" 22 | ExpiryMessage = "Você pode optar por adiar a instalação até que expire o diferimento:" 23 | RemainingDeferrals = "Restantes diferimentos:" 24 | WarningMessage = "Uma vez que o diferimento expirou, você já não terá a opção de adiar a." 25 | WelcomeMessage = "O seguinte aplicativo está prestes a ser instalado:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Instalação" 29 | Repair = "Reparação" 30 | Uninstall = "Desinstalação" 31 | } 32 | DiskSpace = @{ 33 | Message = "Você não tem espaço em disco suficiente para concluir a instalação de:`n{0}`n`nEspaço necessário: {1}MB`nEspaço disponível: {2}MB`n`nPor favor, espaço livre em disco suficiente, a fim de prosseguir com a instalação." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Instalação em andamento. Por favor aguarde..." 37 | MessageInstallDetail = "Esta janela fechar-se-á automaticamente quando a instalação estiver concluída." 38 | MessageRepair = "Reparação em andamento. Por favor aguarde..." 39 | MessageRepairDetail = "Esta janela fechar-se-á automaticamente quando a reparação estiver concluída." 40 | MessageUninstall = "Desinstalação em andamento. Por favor aguarde..." 41 | MessageUninstallDetail = "Esta janela fechar-se-á automaticamente quando a desinstalação estiver concluída." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimizar" 45 | ButtonRestartNow = "Reinicie Agora" 46 | Message = "Em ordem para completar a instalação, você deve reiniciar seu computador." 47 | MessageRestart = "Seu computador será reiniciado automaticamente no final da contagem regressiva." 48 | MessageTime = "Por favor, salve o trabalho e reiniciar no tempo alocado." 49 | TimeRemaining = "Tempo restante:" 50 | Title = "Reinicialização Necessária" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "O {0} continuará automaticamente em:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Aplicação {0}' 59 | DialogMessage = 'Guarde o seu trabalho antes de continuar, pois as aplicações seguintes serão encerradas automaticamente.' 60 | DialogMessageNoProcesses = 'Selecione Instalar para continuar com a instalação. Se ainda tiver algum adiamento, também pode optar por adiar a instalação.' 61 | ButtonDeferRemaining = 'permanecer' 62 | ButtonLeftText = 'Adiar' 63 | ButtonRightText = 'Fechar aplicações e instalar' 64 | ButtonRightTextNoProcesses = 'Instalar' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/ru/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "выполнена(о)." 4 | Error = "не выполнена(о)." 5 | FastRetry = "не завершена(о)." 6 | RestartRequired = "выполнена(о). Требуется перезагрузка." 7 | Start = "начата(о)." 8 | } 9 | BlockExecution = @{ 10 | Message = "Запуск этого приложения временно заблокирован для завершения процесса установки." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Закрыть программы" 14 | ButtonContinue = "Продолжить" 15 | ButtonContinueTooltip = "Выберите `"Продолжить`" только после закрытия вышеперечисленных приложений." 16 | ButtonDefer = "Отложить" 17 | CountdownMessage = "ПРИМЕЧАНИЕ: Эти программы будут автоматически закрыты через:" 18 | Message = "Перед продолжением установки необходимо закрыть следующие программы.`nПожалуйста, сохраните вашу работу и закройте программы, а затем продолжите установку. Также вы можете сохранить вашу работу и нажать `"Закрыть программы`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Дата истечения:" 22 | ExpiryMessage = "Вы можете отложить установку приложения до тех пор, пока не истечет срок действия этой отсрочки:" 23 | RemainingDeferrals = "Оставшиеся отсрочки:" 24 | WarningMessage = "После истечения срока действия отсрочки вы больше не сможете отложить установку." 25 | WelcomeMessage = "Планируется установка следующего приложения:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Установка" 29 | Repair = "Исправление" 30 | Uninstall = "Удаление" 31 | } 32 | DiskSpace = @{ 33 | Message = "У вас недостаточно пространства на диске для выполнения установки:`n{0}`n`nНеобходимое пространство на диске: {1}МБ`nДоступное пространство на диске: {2}МБ`n`nДля продолжения установки, пожалуйста, освободите достаточно пространства на диске." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Идет установка. Пожалуйста, подождите..." 37 | MessageInstallDetail = "Это окно закроется автоматически после завершения установки." 38 | MessageRepair = "Идет исправление. Пожалуйста, подождите..." 39 | MessageRepairDetail = "Это окно автоматически закроется по завершении ремонта." 40 | MessageUninstall = "Идет удаление. Пожалуйста, подождите..." 41 | MessageUninstallDetail = "Это окно закроется автоматически после завершения удаления." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Минимизировать" 45 | ButtonRestartNow = "Перезагрузить сейчас" 46 | Message = "Для завершения установки необходимо перезагрузить ваш компьютер." 47 | MessageRestart = "Ваш компьютер будет автоматически перезагружен по завершению обратного отсчета." 48 | MessageTime = "Пожалуйста, сохраните вашу работу и выполните перезагрузку в отведенное время." 49 | TimeRemaining = "Оставшееся время:" 50 | Title = "Требуется перезагрузка" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} автоматически продолжится через:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - приложение {0}' 59 | DialogMessage = 'Пожалуйста, сохраните свою работу, прежде чем продолжить, так как следующие приложения будут закрыты автоматически.' 60 | DialogMessageNoProcesses = 'Чтобы продолжить установку, выберите Install (Установить). Если у вас остались отсрочки, вы также можете отложить установку.' 61 | ButtonDeferRemaining = 'оставаться' 62 | ButtonLeftText = 'Отложить' 63 | ButtonRightText = 'Закрыть приложения и установить' 64 | ButtonRightTextNoProcesses = 'Установите' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/sk/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "ukončená." 4 | Error = "sa nepodarila." 5 | FastRetry = "nedokončená." 6 | RestartRequired = "ukončená. Je nutný reštart." 7 | Start = "spustená." 8 | } 9 | BlockExecution = @{ 10 | Message = "Spustenie tejto aplikácie bolo dočasne zablokované, aby mohla byť inštalácia dokončená úspešne." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Ukončiť programy" 14 | ButtonContinue = "Pokračovať" 15 | ButtonContinueTooltip = "Kliknite na `"Pokračovať`", keď zavriete vyššie uvedené aplikácie." 16 | ButtonDefer = "Oddialiť" 17 | CountdownMessage = "Poznámka: Programy budú automaticky ukončené za:" 18 | Message = "Nasledujúce programy musia byť zatvorené, než bude inštalácia pokračovať.`n`nProsím, uložte svoju prácu, zatvorte dané programy a potom kliknite na pokračovať. Prípadne môžete uložiť svoju prácu a potom kliknite na tlačidlo `"Ukončiť programy`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Termín:" 22 | ExpiryMessage = "Inštaláciu môžete niekoľkokrát odložiť:" 23 | RemainingDeferrals = "Zostávajúce odklady:" 24 | WarningMessage = "Akonáhle odklady uplynú, už nebudete mať možnosť odložiť inštaláciu." 25 | WelcomeMessage = "Nasledujúca aplikácia bude nainštalovaná:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Inštalácia" 29 | Repair = "Oprava" 30 | Uninstall = "Odinštalácia" 31 | } 32 | DiskSpace = @{ 33 | Message = "Nemáte dostatok voľného miesta na dokončenie inštalácie:`n{0}`n`nPotrebné miesto: {1}MB`nVoľné miesto: {2}MB`n`nProsím, uvoľnite dostatok miesta pre pokračovanie inštalácie." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Inštalácia sa vykonáva. Prosím čakajte..." 37 | MessageInstallDetail = "Toto okno sa po dokončení inštalácie automaticky zatvorí." 38 | MessageRepair = "Vykonáva sa oprava. Prosím čakajte..." 39 | MessageRepairDetail = "Toto okno sa po dokončení opravy automaticky zatvorí." 40 | MessageUninstall = "Prebieha odinštalácia. Prosím čakajte..." 41 | MessageUninstallDetail = "Toto okno sa po dokončení odinštalovania automaticky zatvorí." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimalizovať" 45 | ButtonRestartNow = "Reštartovať Teraz" 46 | Message = "Na dokončenie inštalácie musíte váš počítač reštartovať." 47 | MessageRestart = "Na konci odpočítavania, bude váš počítač automaticky reštartovaný." 48 | MessageTime = "Prosím, uložte si prácu a reštartujte počítač v stanovenej lehote." 49 | TimeRemaining = "Zostávajúci čas:" 50 | Title = "Je nutný reštart." 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} bude automaticky pokračovať za:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Aplikácia {0}' 59 | DialogMessage = 'Pred pokračovaním uložte svoju prácu, pretože nasledujúce aplikácie sa automaticky zatvoria.' 60 | DialogMessageNoProcesses = 'Ak chcete pokračovať v inštalácii, vyberte možnosť Inštalovať. Ak máte ešte nejaké odklady, môžete tiež zvoliť odloženie inštalácie.' 61 | ButtonDeferRemaining = 'zostať' 62 | ButtonLeftText = 'Odloženie' 63 | ButtonRightText = 'Zatvoriť aplikácie a nainštalovať' 64 | ButtonRightTextNoProcesses = 'Inštalácia stránky' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/sv/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "slutförd." 4 | Error = "misslyckades." 5 | FastRetry = "ej slutförd." 6 | RestartRequired = "slutförd. En omstart av datorn är nödvändig." 7 | Start = "startad." 8 | } 9 | BlockExecution = @{ 10 | Message = "Den här applikationen har temporärt blockerats så att installationen kan slutföras." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Stäng Program" 14 | ButtonContinue = "Fortsätt" 15 | ButtonContinueTooltip = "Välj `"Fortsätt`" endast efter att ha stängt applikation(er) i ovanstående lista." 16 | ButtonDefer = "Skjut upp" 17 | CountdownMessage = "OBS: Programmen kommer automatiskt att avslutas om:" 18 | Message = "Följande program måste stängas innan installationen kan fortsätta.`n`nSe till att spara ditt arbete, stäng de öppna programmen och klicka sen på `"Fortsätt`".`nAlternativt, spara ditt arbete och klicka på `"Stäng Program`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Deadline:" 22 | ExpiryMessage = "Du kan välja att fördröja installationen ett begränsat antal gånger under en begränsad tid:" 23 | RemainingDeferrals = "Antal återstående fördröjningar:" 24 | WarningMessage = "När antalet fördröjningar är slut eller deadlinen inträffar är detta alternativ inte längre tillgängligt." 25 | WelcomeMessage = "Följande applikation kommer att installeras:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Installation" 29 | Repair = "Reparation" 30 | Uninstall = "Avinstallation" 31 | } 32 | DiskSpace = @{ 33 | Message = "Du har inte tillräckligt med ledigt diskutrymme för att kunna installera:`n{0}`n`nDiskutrymme som krävs: {1}MB`nLedigt diskutrymme: {2}MB`n`nFrigör utrymme på hårddisken och försök igen." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Installation pågår. Var god vänta..." 37 | MessageInstallDetail = "Detta fönster stängs automatiskt när installationen är klar." 38 | MessageRepair = "Reparation pågår. Var god vänta..." 39 | MessageRepairDetail = "Detta fönster stängs automatiskt när reparationen är klar." 40 | MessageUninstall = "Avinstallation pågår. Var god vänta..." 41 | MessageUninstallDetail = "Detta fönster stängs automatiskt när avinstallationen är klar." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimera" 45 | ButtonRestartNow = "Starta Om Nu" 46 | Message = "För att installationen ska kunna slutföras måste din dator startas om." 47 | MessageRestart = "Din dator kommer automatiskt att starta om när nedräkningen är slut." 48 | MessageTime = "Se till att spara ditt arbete innan tiden går ut och en automatisk omstart sker." 49 | TimeRemaining = "Återstående tid:" 50 | Title = "Omstart Krävs" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} kommer att fortsätta automatiskt i:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - App {0}' 59 | DialogMessage = 'Spara ditt arbete innan du fortsätter eftersom följande applikationer kommer att stängas automatiskt.' 60 | DialogMessageNoProcesses = "Välj Installera för att fortsätta med installationen eller välj `"Skjut upp`" för att installationen skall utföras vid ett senare tillfälle." 61 | ButtonDeferRemaining = 'kvarstår' 62 | ButtonLeftText = 'Skjut upp' 63 | ButtonRightText = 'Stäng appar och installera' 64 | ButtonRightTextNoProcesses = 'Installera' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/tr/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "tamamlandı." 4 | Error = "hata oluştu." 5 | FastRetry = "tamamlanamadı." 6 | RestartRequired = "tamamlandı. Yeniden başlatma gereklidir." 7 | Start = "başladı." 8 | } 9 | BlockExecution = @{ 10 | Message = "Yükleme işleminin tamamlanabilmesi için bu uygulamanın başlatılması geçici olarak engellenmiştir." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Uygulamaları kapat" 14 | ButtonContinue = "Devam et" 15 | ButtonContinueTooltip = "Aşağıdaki listedeki uygulamaları kapatıp `"Devam et`"i seçiniz." 16 | ButtonDefer = "Ertele" 17 | CountdownMessage = "NOT: Program(lar) otomatik olarak kapanacaktır:" 18 | Message = "Kurulumun devam edebilmesi için aşağıdaki programlar kapatılmalıdır.`n`nLütfen çalışmanızı kaydedin, programları kapatın ve ardından devam edin.`nAlternatif olarak, çalışmanızı kaydedin ve `"Programları Kapat `"a tıklayın." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Son tarih:" 22 | ExpiryMessage = "Erteleme süresi dolana kadar kurulumu ertelemeyi seçebilirsiniz:" 23 | RemainingDeferrals = "Kalan Ertelemeler:" 24 | WarningMessage = "Erteleme süresi sona erdiğinde, artık erteleme seçeneğiniz olmayacaktır." 25 | WelcomeMessage = "Aşağıdaki uygulama yüklenmek üzeredir:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Kurulum işlemi" 29 | Repair = "Onarım" 30 | Uninstall = "Kaldırma işlemi" 31 | } 32 | DiskSpace = @{ 33 | Message = "Kurulumu tamamlamak için yeterli disk alanınız yok:`n{0}`n`nGerekli alan: {1}MB`nMevcut alan: {2}MB`n`nKuruluma devam etmek için lütfen yeterli disk alanı boşaltın." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Kurulum devam ediyor. Lütfen bekleyiniz..." 37 | MessageInstallDetail = "Kurulum tamamlandığında bu pencere otomatik olarak kapanacaktır." 38 | MessageRepair = "Onarım devam ediyor. Lütfen bekleyiniz..." 39 | MessageRepairDetail = "Onarım tamamlandığında bu pencere otomatik olarak kapanacaktır." 40 | MessageUninstall = "Kaldırma işlemi devam ediyor. Lütfen bekleyiniz..." 41 | MessageUninstallDetail = "Kaldırma işlemi tamamlandığında bu pencere otomatik olarak kapanacaktır." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Simge durumuna küçült" 45 | ButtonRestartNow = "Bilgisayarı yeniden başlat" 46 | Message = "Yüklemenin tamamlanması için bilgisayarınızı yeniden başlatmanız gerekir." 47 | MessageRestart = "Geri sayımın sonunda bilgisayarınız otomatik olarak yeniden başlatılacaktır." 48 | MessageTime = "Lütfen çalışmanızı kaydedin ve belirtilen süre içinde yeniden başlatın." 49 | TimeRemaining = "Kalan süre:" 50 | Title = "Yeniden başlatma gerekmektedir" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} otomatik olarak devam edecektir:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Uygulama {0}' 59 | DialogMessage = 'Aşağıdaki uygulamalar otomatik olarak kapatılacağından devam etmeden önce lütfen çalışmanızı kaydedin.' 60 | DialogMessageNoProcesses = "Kuruluma devam etmek için lütfen Yükle'yi seçin. Kalan ertelemeleriniz varsa, kurulumu ertelemeyi de seçebilirsiniz." 61 | ButtonDeferRemaining = 'kalır' 62 | ButtonLeftText = 'Erteleme' 63 | ButtonRightText = 'Uygulamaları Kapat ve Yükle' 64 | ButtonRightTextNoProcesses = 'Kurulum' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/zh-hans/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "完成。" 4 | Error = "失败。" 5 | FastRetry = "未完成。" 6 | RestartRequired = "完成。必须重新启动。" 7 | Start = "已启动。" 8 | } 9 | BlockExecution = @{ 10 | Message = "为完成安装过程,暂时禁止启动这款应用程式。" 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "关闭程序" 14 | ButtonContinue = "继续" 15 | ButtonContinueTooltip = "在关闭上列应用程式后才选择`"继续`"。" 16 | ButtonDefer = "延迟" 17 | CountdownMessage = "注:下列程序将自动关闭:" 18 | Message = "为继续安装,必须关闭下列程序。`n`n请保存您的工作,关闭程序,然后继续。 或者保存您的工作,点击`"关闭程序`"。" 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "最后期限:" 22 | ExpiryMessage = "在延期失效前,可选择延迟安装:" 23 | RemainingDeferrals = "所剩延期:" 24 | WarningMessage = "延期失效后,再也无法延迟安装。" 25 | WelcomeMessage = "即将安装下列应用程式:" 26 | } 27 | DeploymentType = @{ 28 | Install = "安装" 29 | Repair = "修复" 30 | Uninstall = "卸载" 31 | } 32 | DiskSpace = @{ 33 | Message = "没有足够的磁盘空间来完成下列安装:`n{0}`n`n所需空间:{1}MB`n可用空间:{2}MB`n`n请释放足够的磁盘空间以继续安装。" 34 | } 35 | Progress = @{ 36 | MessageInstall = "安装中。请稍等。。。" 37 | MessageInstallDetail = "安装完成后,该窗口将自动关闭。。。" 38 | MessageRepair = "修复中。请稍等。。。" 39 | MessageRepairDetail = "修复完成后,该窗口将自动关闭。。。" 40 | MessageUninstall = "卸载中。请稍等。。。" 41 | MessageUninstallDetail = "卸载完成后,该窗口将自动关闭。。。" 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "最小化" 45 | ButtonRestartNow = "现在重启" 46 | Message = "为完成安装过程,需重启计算机。" 47 | MessageRestart = "倒计时结束后,计算机将自动重启。" 48 | MessageTime = "请保存您的工作,并在容许时间重启计算机。" 49 | TimeRemaining = "剩余时间:" 50 | Title = "需重启" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0}会自动继续:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - 应用程序 {0}' 59 | DialogMessage = '请保存您的工作后再继续,因为以下应用程序将自动关闭。' 60 | DialogMessageNoProcesses = '请选择 “安装 ”继续安装。如果您还有任何延迟,也可以选择延迟安装。' 61 | ButtonDeferRemaining = '残留' 62 | ButtonLeftText = '推迟' 63 | ButtonRightText = '关闭应用程序并安装' 64 | ButtonRightTextNoProcesses = '安装' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/Strings/zh-hant/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "完成。" 4 | Error = "失敗。" 5 | FastRetry = "未完成。" 6 | RestartRequired = "完成。需重啟。" 7 | Start = "已啟動。" 8 | } 9 | BlockExecution = @{ 10 | Message = "為完成安裝過程,暫時禁止啟動本款應用程式。" 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "關閉程序" 14 | ButtonContinue = "繼續" 15 | ButtonContinueTooltip = "關閉上列應用程式後才選擇`"繼續`"。" 16 | ButtonDefer = "延遲" 17 | CountdownMessage = "注:下列程序將自動關閉:" 18 | Message = "在繼續安裝前必須關閉下列程序。`n`n請保存您的工作,關閉程序,然後繼續。 或者保存您的工作,然後點擊`"關閉程序`"。" 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "最後期限:" 22 | ExpiryMessage = "在延期失效前,可選擇延遲安裝:" 23 | RemainingDeferrals = "所剩延期:" 24 | WarningMessage = "延期失效後,再也無法延遲安裝。" 25 | WelcomeMessage = "即將安裝下列應用程式:" 26 | } 27 | DeploymentType = @{ 28 | Install = "安裝" 29 | Repair = "修復" 30 | Uninstall = "卸載" 31 | } 32 | DiskSpace = @{ 33 | Message = "沒有足夠的磁盤空間來完成下列安裝:`n{0}`n`n所需空間: {1}MB`n可用空間: {2}MB`n`n請釋放足夠的磁盤空間以繼續安裝。" 34 | } 35 | Progress = @{ 36 | MessageInstall = "安裝中。請稍等。。。" 37 | MessageInstallDetail = "安裝完成後,此視窗會自動關閉。。。" 38 | MessageRepair = "修復中。請稍等。。。" 39 | MessageRepairDetail = "修復完成後,此視窗會自動關閉。。。" 40 | MessageUninstall = "卸載中。請稍等。。。" 41 | MessageUninstallDetail = "卸載完成後,此視窗將自動關閉。。。" 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "最小化" 45 | ButtonRestartNow = "現在重啟" 46 | Message = "未完成安裝過程,需重啟計算機。" 47 | MessageRestart = "倒計時結束後,計算機將自動重啟。" 48 | MessageTime = "請保存您的工作,然後在容許時間重啟計算機。" 49 | TimeRemaining = "剩餘時間:" 50 | Title = "需重啟" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0}會自動繼續:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - 應用程式 {0}' 59 | DialogMessage = '由於下列應用程式將自動關閉,請先保存您的工作再繼續。' 60 | DialogMessageNoProcesses = '請選擇「安裝」繼續安裝。如果您有任何延遲安裝的剩餘時間,您也可以選擇延遲安裝。' 61 | ButtonDeferRemaining = '留下' 62 | ButtonLeftText = '延遲' 63 | ButtonRightText = '關閉應用程式並安裝' 64 | ButtonRightTextNoProcesses = '安裝' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /Test/SupportFiles/Add Supporting Files Here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/Test/SupportFiles/Add Supporting Files Here.txt -------------------------------------------------------------------------------- /Test/Windows Sandbox.wsb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | C:\Users\taski\OneDrive\Projekte\Tool - Deployment Editor\Version 1.0.0_Preview\Test\ 5 | C:\Packaging 6 | true 7 | 8 | 9 | 10 | C:\Packaging\Invoke-AppDeployToolkit.exe 11 | 12 | 13 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Assets/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/Assets/AppIcon.png -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Assets/Banner.Classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/Assets/Banner.Classic.png -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Files/Add Setup Files Here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/Files/Add Setup Files Here.txt -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Invoke-AppDeployToolkit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/Invoke-AppDeployToolkit.exe -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit.Extensions/PSAppDeployToolkit.Extensions.psm1: -------------------------------------------------------------------------------- 1 | <# 2 | 3 | .SYNOPSIS 4 | PSAppDeployToolkit.Extensions - Provides the ability to extend and customize the toolkit by adding your own functions that can be re-used. 5 | 6 | .DESCRIPTION 7 | This module is a template that allows you to extend the toolkit with your own custom functions. 8 | 9 | This module is imported by the Invoke-AppDeployToolkit.ps1 script which is used when installing or uninstalling an application. 10 | 11 | PSAppDeployToolkit is licensed under the GNU LGPLv3 License - (C) 2025 PSAppDeployToolkit Team (Sean Lillis, Dan Cunningham, Muhammad Mashwani, Mitch Richters, Dan Gough). 12 | 13 | This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the 14 | Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but 15 | WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 16 | for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . 17 | 18 | .LINK 19 | https://psappdeploytoolkit.com 20 | 21 | #> 22 | 23 | ##*=============================================== 24 | ##* MARK: MODULE GLOBAL SETUP 25 | ##*=============================================== 26 | 27 | # Set strict error handling across entire module. 28 | $ErrorActionPreference = [System.Management.Automation.ActionPreference]::Stop 29 | $ProgressPreference = [System.Management.Automation.ActionPreference]::SilentlyContinue 30 | Set-StrictMode -Version 1 31 | 32 | 33 | ##*=============================================== 34 | ##* MARK: FUNCTION LISTINGS 35 | ##*=============================================== 36 | 37 | function New-ADTExampleFunction 38 | { 39 | <# 40 | .SYNOPSIS 41 | Basis for a new PSAppDeployToolkit extension function. 42 | 43 | .DESCRIPTION 44 | This function serves as the basis for a new PSAppDeployToolkit extension function. 45 | 46 | .INPUTS 47 | None 48 | 49 | You cannot pipe objects to this function. 50 | 51 | .OUTPUTS 52 | None 53 | 54 | This function does not return any output. 55 | 56 | .EXAMPLE 57 | New-ADTExampleFunction 58 | 59 | Invokes the New-ADTExampleFunction function and returns any output. 60 | #> 61 | 62 | [CmdletBinding()] 63 | param 64 | ( 65 | ) 66 | 67 | begin 68 | { 69 | # Initialize function. 70 | Initialize-ADTFunction -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState 71 | } 72 | 73 | process 74 | { 75 | try 76 | { 77 | try 78 | { 79 | } 80 | catch 81 | { 82 | # Re-writing the ErrorRecord with Write-Error ensures the correct PositionMessage is used. 83 | Write-Error -ErrorRecord $_ 84 | } 85 | } 86 | catch 87 | { 88 | # Process the caught error, log it and throw depending on the specified ErrorAction. 89 | Invoke-ADTFunctionErrorHandler -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState -ErrorRecord $_ 90 | } 91 | } 92 | 93 | end 94 | { 95 | # Finalize function. 96 | Complete-ADTFunction -Cmdlet $PSCmdlet 97 | } 98 | } 99 | 100 | 101 | ##*=============================================== 102 | ##* MARK: SCRIPT BODY 103 | ##*=============================================== 104 | 105 | # Announce successful importation of module. 106 | Write-ADTLogEntry -Message "Module [$($MyInvocation.MyCommand.ScriptBlock.Module.Name)] imported successfully." -ScriptSection Initialization 107 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Assets/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Assets/AppIcon.png -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Assets/Banner.Classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Assets/Banner.Classic.png -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Frontend/v3/Deploy-Application.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Frontend/v3/Deploy-Application.exe -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Frontend/v4/Invoke-AppDeployToolkit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Frontend/v4/Invoke-AppDeployToolkit.exe -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/PSAppDeployToolkit.cer: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE----- 2 | MIIHSTCCBTGgAwIBAgIQCvlbtr6iDIUOmMb7jqwI+TANBgkqhkiG9w0BAQsFADBp 3 | MQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xQTA/BgNVBAMT 4 | OERpZ2lDZXJ0IFRydXN0ZWQgRzQgQ29kZSBTaWduaW5nIFJTQTQwOTYgU0hBMzg0 5 | IDIwMjEgQ0ExMB4XDTI0MDkwNTAwMDAwMFoXDTI3MDkwNzIzNTk1OVowgdExEzAR 6 | BgsrBgEEAYI3PAIBAxMCVVMxGTAXBgsrBgEEAYI3PAIBAhMIQ29sb3JhZG8xHTAb 7 | BgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRQwEgYDVQQFEwsyMDEzMTYzODMy 8 | NzELMAkGA1UEBhMCVVMxETAPBgNVBAgTCENvbG9yYWRvMRQwEgYDVQQHEwtDYXN0 9 | bGUgUm9jazEZMBcGA1UEChMQUGF0Y2ggTXkgUEMsIExMQzEZMBcGA1UEAxMQUGF0 10 | Y2ggTXkgUEMsIExMQzCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoCggGBALsn 11 | cZKNh65erADSVI33cqSj+tKgR+RJIX2kUAJ5/nt74NnlXG4hFiI5azGM7ytrIDjA 12 | W8Bnm6gFEZBZlAig3RsXMSnrl3Wlzx1jysHNlo2AhWo61+h6H4osDczgnS+lRODw 13 | 0IT0Ue0iHTTRUq8eQuGQzdU+jh/snV+xEBfPjQVDR0WxFXZfofR+QHscet2n2vM7 14 | t4Pxl5bslym2/iR7YDSWlIBbhTkU8cNUzuqh/kuh66aX/UHABZruMRrZHNhUoYL9 15 | DYFjDRg2aia/6PbKidrXWmRw8q+h/D72PHoKFLIRe3HIBGLRBHQfUkUfJlUIpNcO 16 | aBk4w1ox4/vI4E6c5XrUcsKbZP5vD3oVQTfJ7aqEnbyy3LkFc5rjy8zf4rioebGX 17 | lr6jzjQKXBJ2XDjaV3m8olD5xHj6+a2QFO4TIzMNmT50JTHGxr7YD9qou5tn95lx 18 | WMVo5SgsWgKWB3qkhXlgvMzOzmC9h5WfhriuFxvIylROrFklvVpP3ZtLyW2rLwID 19 | AQABo4ICAjCCAf4wHwYDVR0jBBgwFoAUaDfg67Y7+F8Rhvv+YXsIiGX0TkIwHQYD 20 | VR0OBBYEFORglN0hKniG4YWPXslNC3EyO+V/MD0GA1UdIAQ2MDQwMgYFZ4EMAQMw 21 | KTAnBggrBgEFBQcCARYbaHR0cDovL3d3dy5kaWdpY2VydC5jb20vQ1BTMA4GA1Ud 22 | DwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDAzCBtQYDVR0fBIGtMIGqMFOg 23 | UaBPhk1odHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRUcnVzdGVkRzRD 24 | b2RlU2lnbmluZ1JTQTQwOTZTSEEzODQyMDIxQ0ExLmNybDBToFGgT4ZNaHR0cDov 25 | L2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0VHJ1c3RlZEc0Q29kZVNpZ25pbmdS 26 | U0E0MDk2U0hBMzg0MjAyMUNBMS5jcmwwgZQGCCsGAQUFBwEBBIGHMIGEMCQGCCsG 27 | AQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wXAYIKwYBBQUHMAKGUGh0 28 | dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRHNENvZGVT 29 | aWduaW5nUlNBNDA5NlNIQTM4NDIwMjFDQTEuY3J0MAkGA1UdEwQCMAAwDQYJKoZI 30 | hvcNAQELBQADggIBAKgNLm/4pTIHSLzIgXlgaIjMXuTiG5TmxiO5XpnD9lhKmhAE 31 | ltdf8FcCVOt2cIbZEGjVOK143+n6suaTlM6UF4GI0mjuA/wDjCSh5cqcbJRamf3W 32 | KXLntsRNx+5ZjuCj3/FcV7hSFKoy3rVPpJIe6P0OdkWm1QLjqzxSpzm4sctRyMdP 33 | +Rfkbj/cYapg23zO5ec1AHLjggpGO27riJxLIqfQWV1IlW/CuWz0fUZOw6GreBUJ 34 | je9sY2pHBGTjFP74NGYFWvJ8ZAV7VbI8W7K/mzg59HHXRytUB1opfz5qQDZMTex/ 35 | LXQgGfG08yL77ncUi57e7LG20A5AMjcNG7Qx/jCr/5flXGMkB+dWecU/Q7xwphHe 36 | ++G6GZD9hn0xb5+/4CEhI03TrlBrLXa4EsINcyT6oCu81sSuPMQu2sKWt4MDrPaZ 37 | 8oqhxt68fOP0h1IgC9pZJY7A93qZkcbFnmYWTWPd8RKUB3vSwb6P7eFUY2c6lM/q 38 | XxDD6nl/4OfpqW+GqemZjSbgGCRZlNCyJAi0DfZil4tSJfVlOon5972LrRjEi/wX 39 | Xlj/u3zOzGS4jvtQSLAXUpleqWVUty0QQMt8CJW1i+vZr8iwjyEO8+HbX7s8At+h 40 | PZNr4c3og0PpNXRSQ0ncUw3rbHJNBbg9aL4YrtnGi+AXRbAlrFzyzMr7ujpW 41 | -----END CERTIFICATE----- 42 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/bin/AMD64/handle/handle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/bin/AMD64/handle/handle.exe -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/bin/ARM64/handle/handle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/bin/ARM64/handle/handle.exe -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/bin/i386/handle/handle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/bin/i386/handle/handle.exe -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.UserInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.UserInterface.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.ValueTuple.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/Wpf.Ui.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/Wpf.Ui.Abstractions.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/Wpf.Ui.Tray.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/Wpf.Ui.Tray.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/Wpf.Ui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/Wpf.Ui.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/ar/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "تم." 4 | Error = "فشل." 5 | FastRetry = "غير مكتمل." 6 | RestartRequired = "تم. يجب إعادة تشغيل النظام." 7 | Start = "بدأ." 8 | } 9 | BlockExecution = @{ 10 | Message = "تم تعطيل تشغيل هذا التطبيق مؤقتًا بحيث يمكن إكمال عملية التثبيت." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "إغلاق البرامج" 14 | ButtonContinue = "متابعة" 15 | ButtonContinueTooltip = "قم باختيار `"متابعة`" فقط بعد إغلاق التطبيق/التطبيقات المدرجة أعلاه." 16 | ButtonDefer = "تأجيل" 17 | CountdownMessage = "ملاحظة: سيتم إغلاق البرنامج/البرامج بشكل تلقائي خلال:" 18 | Message = "يجب إغلاق البرامج التالية قبل التمكن من متابعة عملية التثبيت.`n`nيرجى حفظ عملك، وإغلاق البرامج، ومن ثم المتابعة. يمكنك بدلا من ذلك، حفظ عملك والنقر فوق `"إغلاق البرامج`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "الموعد النهائي:" 22 | ExpiryMessage = "بإمكانك اختيار تأجيل التثبيت إلى حين انتهاء صلاحية التأجيل:" 23 | RemainingDeferrals = "التأجيلات المتبقية:" 24 | WarningMessage = "بمجرد انتهاء صلاحية التأجيل، لن يكون لديك خيار التأجيل بعد الآن." 25 | WelcomeMessage = "التطبيق التالي على وشك التثبيت:" 26 | } 27 | DeploymentType = @{ 28 | Install = "تثبيت" 29 | Repair = "إصلاح" 30 | Uninstall = "إزالة التثبيت" 31 | } 32 | DiskSpace = @{ 33 | Message = "ليس لديك مساحة كافية في القرص لإتمام عملية تثبيت:`n{0}`n`nالمساحة اللازمة: {1} م ب`nالمساحة المتاحة: {2} م ب`n`nيرجى تحرير مساحة قرص كافية كي تتم متابعة عملية التثبيت." 34 | } 35 | Progress = @{ 36 | MessageInstall = "جاري التثبيت. يرجى الانتظار..." 37 | MessageInstallDetail = "سيتم إغلاق هذه النافذة تلقائياً عند اكتمال التثبيت." 38 | MessageRepair = "جارٍ إصلاح. يرجى الانتظار..." 39 | MessageRepairDetail = "سيتم إغلاق هذه النافذة تلقائياً عند اكتمال الإصلاح." 40 | MessageUninstall = "جارٍ إزالة التثبيت. يرجى الانتظار..." 41 | MessageUninstallDetail = "سيتم إغلاق هذه النافذة تلقائياً عند اكتمال إلغاء التثبيت." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "تقليل" 45 | ButtonRestartNow = "إعادة التشغيل الآن" 46 | Message = "كي تكتمل عملية التثبيت، يجب عليك إعادة تشغيل حاسوبك." 47 | MessageRestart = "ستتم إعادة تشغيل حاسوبك بشكل تلقائي عند نهاية العد التنازلي." 48 | MessageTime = "يرجى حفظ عملك وإعادة التشغيل خلال الوقت المخصص." 49 | TimeRemaining = "الزمن المتبقي:" 50 | Title = "مطلوب إعادة التشغيل" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "سيستمر {0} تلقائيا في:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployDeployToolkit - التطبيق {0}' 59 | DialogMessage = 'يرجى حفظ عملك قبل المتابعة حيث سيتم إغلاق التطبيقات التالية تلقائيًا.' 60 | DialogMessageNoProcesses = 'الرجاء تحديد تثبيت لمتابعة التثبيت. إذا كان لديك أي تأجيلات متبقية، يمكنك أيضاً اختيار تأخير التثبيت.' 61 | ButtonDeferRemaining = 'تبقى' 62 | ButtonLeftText = 'التأجيل' 63 | ButtonRightText = 'إغلاق التطبيقات وتثبيتها' 64 | ButtonRightTextNoProcesses = 'التثبيت' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/cz/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "dokončena." 4 | Error = "se nepodařila." 5 | FastRetry = "nedokončena." 6 | RestartRequired = "dokončena. Je nutné restartovat počítač." 7 | Start = "zahájena." 8 | } 9 | BlockExecution = @{ 10 | Message = "Spuštění této aplikace bylo dočasně zakázáno, aby mohla proběhnout instalace." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Ukončit programy" 14 | ButtonContinue = "Pokračovat" 15 | ButtonContinueTooltip = "Klikněte na `"Pokračovat`", až budete mít výše uvedené aplikace zavřené." 16 | ButtonDefer = "Odložit" 17 | CountdownMessage = "Upozornění: Programy budou automaticky zavřené za:" 18 | Message = "Následující programy musí být zavřené, aby instalace mohla pokračovat. Prosím, uložte svou práci, zavřete program a potom klikněte na `"Pokračovat`". Případně můžete svou práci uložit a kliknout na tlačítko `"Ukončit programy`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Termín:" 22 | ExpiryMessage = "Instalaci můžete několikrát odložit:" 23 | RemainingDeferrals = "Zbývající počet odložení:" 24 | WarningMessage = "Jakmile vyčerpáte všechna odložení, už nebudete mít šanci odložit instalaci." 25 | WelcomeMessage = "Nasledující aplikace bude nainstalována:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Instalace" 29 | Repair = "Oprava" 30 | Uninstall = "Odinstalace" 31 | } 32 | DiskSpace = @{ 33 | Message = "Nemáte dostatek volného místa na instalaci aplikace:`n{0}`n`nPotřebné místo na disku: {1}MB`nDostupné místo na disku: {2}MB`n`nUvolněte prosím dostatek místa k pokračovaní instalace." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Instalace právě probíhá. Prosím čekejte..." 37 | MessageInstallDetail = "Toto okno se po dokončení instalace automaticky zavře." 38 | MessageRepair = "Oprava právě probíhá. Prosím čekejte..." 39 | MessageRepairDetail = "Toto okno se po dokončení opravy automaticky zavře." 40 | MessageUninstall = "Probíhá odinstalace. Prosím čekejte..." 41 | MessageUninstallDetail = "Po dokončení odinstalace se toto okno automaticky zavře." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimalizovat" 45 | ButtonRestartNow = "Restartovat nyní" 46 | Message = "Pro dokončení instalace musíte váš počítač restartovat." 47 | MessageRestart = "Na konci odpočítávání, bude váš počítač automaticky restartovaný." 48 | MessageTime = "Prosím, uložte si práci a restartujte počítač ve stanoveném čase." 49 | TimeRemaining = "Zbývající čas:" 50 | Title = "Je nutné restartovat počítač." 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} bude automaticky pokračovat za:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Aplikace {0}' 59 | DialogMessage = 'Před pokračováním v práci ji uložte, protože následující aplikace budou automaticky uzavřeny.' 60 | DialogMessageNoProcesses = 'Chcete-li pokračovat v instalaci, vyberte možnost Instalovat. Pokud vám zbývají nějaké odklady, můžete také zvolit odložení instalace.' 61 | ButtonDeferRemaining = 'zůstat' 62 | ButtonLeftText = 'Odložení' 63 | ButtonRightText = 'Zavření aplikací a instalace' 64 | ButtonRightTextNoProcesses = 'Instalace' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/da/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "færdig." 4 | Error = "fejlet." 5 | FastRetry = "ikke færdig." 6 | RestartRequired = "færdig. En genstart er nødvendig." 7 | Start = "startet." 8 | } 9 | BlockExecution = @{ 10 | Message = "Opstart af denne applikation er midlertidigt blokeret da en installationsproces er under afvikling." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Luk Programmer" 14 | ButtonContinue = "Fortsæt" 15 | ButtonContinueTooltip = "Vælg kun `"Fortsæt`" efter at du har afsluttet de ovenfor nævnte programmer." 16 | ButtonDefer = "Udsæt" 17 | CountdownMessage = "BEMÆRK: Programmet/Programmerne vil automatisk blive lukket om:" 18 | Message = "Følgende programmer skal lukkes før installationen kan fortsætte.`n`nGem dit arbejde, luk programmerne og fortsæt. Alternativt kan du gemme dit arbejde og trykke på `"Luk Programmer`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Deadline:" 22 | ExpiryMessage = "Du kan vælge at udsætte installationen indtil udsættelsesperioden udløber:" 23 | RemainingDeferrals = "Udsættelser tilbage:" 24 | WarningMessage = "Når udsættelsesperioden udløber kan du ikke længere udsætte installationen." 25 | WelcomeMessage = "Følgende applikation vil nu blive installeret:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Installation" 29 | Repair = "Reparere" 30 | Uninstall = "Afinstallation" 31 | } 32 | DiskSpace = @{ 33 | Message = "Du har ikke plads nok til at færdiggøre installationen af:`n{0}`n`nPlads krævet: {1}MB`nPlads tilgængelig: {2}MB`n`nVær venlig at frigøre nok diskplads før du fortsætter installationen." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Installation i gang. Vent venligst..." 37 | MessageInstallDetail = "Dette vindue lukker automatisk, når installationen er færdig." 38 | MessageRepair = "Reparere i gang. Vent venligst..." 39 | MessageRepairDetail = "Dette vindue lukkes automatisk, når reparationen er færdig." 40 | MessageUninstall = "Afinstallation i gang. Vent venligst..." 41 | MessageUninstallDetail = "Dette vindue lukkes automatisk, når afinstallationen er færdig." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimere" 45 | ButtonRestartNow = "Genstart Nu" 46 | Message = "For at færdiggøre installationen skal du genstarte din computer." 47 | MessageRestart = "Din computer vil automatisk blive genstartet når nedtællingen er færdig." 48 | MessageTime = "Du bør venligst gemme dit arbejde og genstarte indenfor det givne tidsrum." 49 | TimeRemaining = "Tid tilbage:" 50 | Title = "Genstart Nødvendig" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} vil automatisk fortsætte i:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - App {0}' 59 | DialogMessage = 'Gem venligst dit arbejde, før du fortsætter, da de følgende applikationer lukkes automatisk.' 60 | DialogMessageNoProcesses = 'Vælg Installer for at fortsætte med installationen. Hvis du har udsættelser tilbage, kan du også vælge at udskyde installationen.' 61 | ButtonDeferRemaining = 'forblive' 62 | ButtonLeftText = 'Udskyde' 63 | ButtonRightText = 'Luk apps og installer' 64 | ButtonRightTextNoProcesses = 'Installer' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/el/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "ολοκληρώθηκε με επιτυχία." 4 | Error = "απέτυχε." 5 | FastRetry = "δεν ολοκληρώθηκε." 6 | RestartRequired = "ολοκληρώθηκε με επιτυχία. Απαιτείται επανεκκίνηση." 7 | Start = "ξεκίνησε." 8 | } 9 | BlockExecution = @{ 10 | Message = "Η εκκίνηση αυτής της εφαρμογής έχει αποκλειστεί προσωρινά, ώστε να ολοκληρωθεί η διαδικασία εγκατάστασης." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Κλείσιμο Προγραμμάτων" 14 | ButtonContinue = "Συνέχεια" 15 | ButtonContinueTooltip = "Επιλέξτε `"Συνέχεια`" μόνο αφού κλείσετε τις παραπάνω εφαρμογές." 16 | ButtonDefer = "Αναβολή" 17 | CountdownMessage = "ΣΗΜΕΙΩΣΗ: Τα προγράμματα θα κλείσουν αυτόματα σε:" 18 | Message = "Τα παρακάτω προγράμματα πρέπει να κλείσουν πριν προχωρήσει η εγκατάσταση.`n`nΠαρακαλούμε αποθηκεύστε την εργασία σας, κλείστε τα προγράμματα και επιλέξτε `"Συνέχεια`". Εναλλακτικά, αποθηκεύστε την εργασία σας και επιλέξτε `"Κλείσιμο Προγραμμάτων`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Προθεσμία:" 22 | ExpiryMessage = "Μπορείτε να επιλέξετε να αναβάλλετε την εγκατάσταση μέχρι να λήξει η αναβολή:" 23 | RemainingDeferrals = "Εναπομένουσες Αναβολές:" 24 | WarningMessage = "Μετά τη λήξη της αναβολής, δεν θα έχετε πλέον την επιλογή να αναβάλετε." 25 | WelcomeMessage = "Η παρακάτω εφαρμογή θα εγκατασταθεί:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Η εγκατάσταση" 29 | Repair = "Η επιδιόρθωση" 30 | Uninstall = "Η απεγκατάσταση" 31 | } 32 | DiskSpace = @{ 33 | Message = "Δεν υπάρχει επαρκής χώρος στο δίσκο για να ολοκληρωθεί η εγκατάσταση του:`n{0}`n`nΑπαιτούμενος χώρος: {1}MB`nΔιαθέσιμος χώρος: {2}MB`n`nΠαρακαλώ απελευθερώστε επαρκή χώρο για να προχωρήσει η εγκατάσταση." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Εγκατάσταση σε εξέλιξη. Παρακαλούμε περιμένετε..." 37 | MessageInstallDetail = "Αυτό το παράθυρο θα κλείσει αυτόματα όταν ολοκληρωθεί η εγκατάσταση." 38 | MessageRepair = "Επιδιόρθωση σε εξέλιξη. Παρακαλούμε περιμένετε..." 39 | MessageRepairDetail = "Αυτό το παράθυρο θα κλείσει αυτόματα όταν ολοκληρωθεί η επισκευή." 40 | MessageUninstall = "Απεγκατάσταση σε εξέλιξη. Παρακαλούμε περιμένετε..." 41 | MessageUninstallDetail = "Αυτό το παράθυρο θα κλείσει αυτόματα όταν ολοκληρωθεί η απεγκατάσταση." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Ελαχιστοποίηση" 45 | ButtonRestartNow = "Επανεκκίνηση τώρα" 46 | Message = "Για να ολοκληρωθεί η εγκατάσταση, πρέπει να επανεκκινήσετε τον υπολογιστή σας." 47 | MessageRestart = "Ο υπολογιστής σας θα επανεκκινηθεί αυτόματα στο τέλος της αντίστροφης μέτρησης." 48 | MessageTime = "Παρακαλούμε αποθηκεύστε την εργασία σας, και πραγματοποιήστε επανεκκίνηση εντός του καθορισμένου χρόνου." 49 | TimeRemaining = "Εναπομείναντας χρόνος:" 50 | Title = "Απαιτείται επανεκκίνηση" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} θα συνεχίσει αυτόματα σε:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Εφαρμογή {0}' 59 | DialogMessage = 'Αποθηκεύστε την εργασία σας πριν συνεχίσετε, καθώς οι ακόλουθες εφαρμογές θα κλείσουν αυτόματα.' 60 | DialogMessageNoProcesses = 'Επιλέξτε Εγκατάσταση για να συνεχίσετε την εγκατάσταση. Εάν σας έχουν απομείνει αναβολές, μπορείτε επίσης να επιλέξετε να καθυστερήσετε την εγκατάσταση.' 61 | ButtonDeferRemaining = 'παραμένουν' 62 | ButtonLeftText = 'Αναβολή' 63 | ButtonRightText = 'Κλείσιμο εφαρμογών & εγκατάσταση' 64 | ButtonRightTextNoProcesses = 'Εγκαταστήστε το' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/es/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "completada." 4 | Error = "fallida." 5 | FastRetry = "incompleta." 6 | RestartRequired = "completada. Se requiere un reinicio." 7 | Start = "iniciada." 8 | } 9 | BlockExecution = @{ 10 | Message = "La ejecución de esta aplicación se ha bloqueado temporalmente para que se pueda completar una operación de instalación." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Cerrar Programas" 14 | ButtonContinue = "Continuar" 15 | ButtonContinueTooltip = "Solo seleccione `"Continuar`" después de cerrar la(s) aplicacion(es) de la lista." 16 | ButtonDefer = "Aplazar" 17 | CountdownMessage = "NOTA: El/los programa(s) se cerrará(n) automáticamente en:" 18 | Message = "Los siguientes programas deben estar cerrados antes de que la instalación pueda continuar.`n`nGuarde su trabajo, cierre los programas y luego continúe.`nAlternativamente, guarde su trabajo y haga clic en `"Cerrar programas`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Fecha tope:" 22 | ExpiryMessage = "Puede optar por aplazar la instalación hasta que expire el aplazamiento:" 23 | RemainingDeferrals = "Aplazamientos restantes:" 24 | WarningMessage = "Una vez vencido el aplazamiento, ya no tendrá la opción de aplazar." 25 | WelcomeMessage = "La siguiente aplicación está a punto de instalarse:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Instalación" 29 | Repair = "Reparación" 30 | Uninstall = "Desinstalación" 31 | } 32 | DiskSpace = @{ 33 | Message = "El espacio en disco es insuficiente para completar la instalación de:`n{0}`n`nEspacio requerido: {1}MB`nEspacio disponible: {2}MB`n`nPor favor, libere suficiente espacio en disco para continuar con la instalación." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Instalación en curso. Por favor, espere..." 37 | MessageInstallDetail = "Esta ventana se cerrará automáticamente cuando finalice la instalación." 38 | MessageRepair = "Reparación en curso. Por favor, espere..." 39 | MessageRepairDetail = "Esta ventana se cerrará automáticamente cuando finalice la reparación." 40 | MessageUninstall = "Desinstalación en curso. Por favor, espere..." 41 | MessageUninstallDetail = "Esta ventana se cerrará automáticamente cuando finalice la desinstalación." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimizar" 45 | ButtonRestartNow = "Reiniciar Ahora" 46 | Message = "Para que la instalación se complete, debe reiniciar su equipo." 47 | MessageRestart = "El equipo se reiniciará automáticamente al final de la cuenta regresiva." 48 | MessageTime = "Por favor guarde su trabajo y reinicie dentro del tiempo asignado." 49 | TimeRemaining = "Tiempo restante:" 50 | Title = "Reinicio Requerido" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "La {0} continuará automáticamente en:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Aplicación {0}' 59 | DialogMessage = 'Guarde su trabajo antes de continuar, ya que las siguientes aplicaciones se cerrarán automáticamente.' 60 | DialogMessageNoProcesses = 'Seleccione Instalar para continuar con la instalación. Si le queda algún aplazamiento, también puede optar por retrasar la instalación.' 61 | ButtonDeferRemaining = 'permanezca en' 62 | ButtonLeftText = 'Aplazar' 63 | ButtonRightText = 'Cerrar aplicaciones e instalar' 64 | ButtonRightTextNoProcesses = 'Instale' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/fi/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "valmis." 4 | Error = "epäonnistui." 5 | FastRetry = "ei ole valmis." 6 | RestartRequired = "valmis. Tietokone on käynnistettävä uudelleen." 7 | Start = "alkoi." 8 | } 9 | BlockExecution = @{ 10 | Message = "Ohjelmiston käynnistäminen on tilapäisesti estetty, jotta ohjelmisto voi onnistuneesti asentua." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Sulje ohjelmat" 14 | ButtonContinue = "Jatka" 15 | ButtonContinueTooltip = "Valitse jatka, kun olet sulkenut ohjelmat." 16 | ButtonDefer = "Myöhemmin" 17 | CountdownMessage = "HUOMIO: Ohjelma(t) suljetaan automaattisesti:" 18 | Message = "Seuraavat ohjelmat on suljettava ennen asennusta`n`nTallenna työsi ja jatka. Vaihtoehtoisesti voit tallentaa työsi ja valita `"Sulje ohjelmat`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Määräaika:" 22 | ExpiryMessage = "Voit siirtää asennusta myöhemmäksi:" 23 | RemainingDeferrals = "Jäljellä olevia siirtoja myöhempään ajankohtaan:" 24 | WarningMessage = "Tietyn ajan kuluessa et voi enää siirtää asennusta myöhemmäksi." 25 | WelcomeMessage = "Ohjelma joka asennetaan seuraavaksi:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Asennus" 29 | Repair = "Korjaus" 30 | Uninstall = "Ohjelmiston poisto" 31 | } 32 | DiskSpace = @{ 33 | Message = "Kiintolevyllä ei ole riittävästi tilaa asennusta varten:`n{0}`n`nVaadittu levytila: {1}MB`nLevytilaa käytettävissä: {2}MB`n`nVapauta levytilaa, jotta asennus voi jatkua." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Asentaa. Odota..." 37 | MessageInstallDetail = "Tämä ikkuna sulkeutuu automaattisesti, kun asennus on valmis." 38 | MessageRepair = "Korjaus käynnissä. Odota..." 39 | MessageRepairDetail = "Tämä ikkuna sulkeutuu automaattisesti, kun korjaus on valmis." 40 | MessageUninstall = "Ohjelmistoa poistetaan. Odota..." 41 | MessageUninstallDetail = "Tämä ikkuna sulkeutuu automaattisesti, kun asennuksen poisto on valmis." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Käynnistä uudelleen myöhemmin" 45 | ButtonRestartNow = "Käynnistä uudelleen heti" 46 | Message = "Tietokone on käynnistettävä uudelleen, ennen kuin ohjelmiston asennus on valmis." 47 | MessageRestart = "Tietokone käynnistyy uudelleen, kun laskuri on saavuttanut nollan." 48 | MessageTime = "Tallenna työsi ja käynnistä tietokone uudelleen aikarajan sisällä." 49 | TimeRemaining = "Aikaa jäljellä:" 50 | Title = "Tietokone on käynnistettävä uudelleen" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} jatkaa automaattisesti:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Sovellus {0}' 59 | DialogMessage = 'Tallenna työsi ennen kuin jatkat, sillä seuraavat sovellukset suljetaan automaattisesti.' 60 | DialogMessageNoProcesses = 'Jatka asennusta valitsemalla Asenna. Jos sinulla on vielä lykkäyksiä jäljellä, voit myös lykätä asennusta.' 61 | ButtonDeferRemaining = 'pysyä' 62 | ButtonLeftText = 'Siirrä' 63 | ButtonRightText = 'Sulje sovellukset & asenna' 64 | ButtonRightTextNoProcesses = 'Asenna' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/fr/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "réussie." 4 | Error = "en échec." 5 | FastRetry = "incomplète." 6 | RestartRequired = "réussie. Un redémarrage est requis." 7 | Start = "en cours." 8 | } 9 | BlockExecution = @{ 10 | Message = "Le lancement de cette application a été temporairement bloqué afin qu'une autre installation puisse se terminer." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Fermer Programmes" 14 | ButtonContinue = "Poursuivre" 15 | ButtonContinueTooltip = "Veuillez cliquer sur « Poursuivre » uniquement après avoir fermé la ou les application(s) ci-dessus." 16 | ButtonDefer = "Reporter l'installation" 17 | CountdownMessage = "REMARQUE: Les programmes seront automatiquement fermés dans:" 18 | Message = "Les programmes suivants doivent être fermés afin que l'installation s'initialise.`n`nMerci de sauvegarder votre travail, fermer tous les programmes, et continuer. Vous pouvez aussi sauvegarder votre travail puis cliquez sur « Fermer Programmes »." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Temps limite:" 22 | ExpiryMessage = "Vous pouvez choisir de reporter l'installation:" 23 | RemainingDeferrals = "Nombre(s) de report restant(s):" 24 | WarningMessage = "Quand le temps aura expiré, vous n'aurez plus la possibilité de reporter." 25 | WelcomeMessage = "L'application suivante est sur le point d'être installée:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Installation" 29 | Repair = "Réparation" 30 | Uninstall = "Désinstallation" 31 | } 32 | DiskSpace = @{ 33 | Message = "Vous n'avez pas assez d'espace sur le disque pour compléter l'installation de:`n{0}`n`nEspace requis: {1}MB`nEspace disponible: {2}MB`n`nMerci de vous assurez d'avoir assez d'espace libre pour pouvoir continuer l'installation." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Installation en cours, merci de patienter..." 37 | MessageInstallDetail = "Cette fenêtre se fermera automatiquement lorsque l'installation sera terminée." 38 | MessageRepair = "Réparation en cours, merci de patienter..." 39 | MessageRepairDetail = "Cette fenêtre se fermera automatiquement lorsque la réparation sera terminée." 40 | MessageUninstall = "Désinstallation en cours, merci de patienter..." 41 | MessageUninstallDetail = "Cette fenêtre se fermera automatiquement lorsque la désinstallation sera terminée." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimiser" 45 | ButtonRestartNow = "Redémarrer Maintenant" 46 | Message = "Pour que l'installation soit compléte, vous devez redémarrer votre ordinateur." 47 | MessageRestart = "Votre ordinateur sera automatiquement redémarré à la fin du décompte." 48 | MessageTime = "Merci de sauvegarder votre travail et de redémarrer avant que le temps spécifié ne soit écoulé." 49 | TimeRemaining = "Temps restant:" 50 | Title = "Redémarrage Requis" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "L'{0} va continuer automatiquement:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - App {0}' 59 | DialogMessage = 'Veuillez sauvegarder votre travail avant de continuer, car les applications suivantes seront automatiquement fermées.' 60 | DialogMessageNoProcesses = "Veuillez sélectionner Installer pour poursuivre l'installation. S'il vous reste des reports, vous pouvez également choisir de retarder l'installation." 61 | ButtonDeferRemaining = 'rester' 62 | ButtonLeftText = 'Report' 63 | ButtonRightText = 'Fermer les applications et installer' 64 | ButtonRightTextNoProcesses = 'Installer' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/he/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "הושלמה." 4 | Error = "נכשלה." 5 | FastRetry = "לא הושלמה." 6 | RestartRequired = "הושלמה. נדרש אתחול המחשב." 7 | Start = "התחילה." 8 | } 9 | BlockExecution = @{ 10 | Message = "הרצת היישום הזה נחסמה זמנית כדי שפעולת התקנה תוכל להסתיים." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "סגור תכניות" 14 | ButtonContinue = "המשך" 15 | ButtonContinueTooltip = "בחר `"המשך`" רק לאחר שסגרת את היישום(ים) הרשומים לעיל." 16 | ButtonDefer = "דחה" 17 | CountdownMessage = "שים לב: התכנית(ות) תסגרנה באופן אוטומטי תוך:" 18 | Message = "יש לסגור את התכנות הבאות בטרם ההתקנה תוכל להתחיל.`n`nאנא שמור על העבודה שלך, סגור את התכניות, ואז המשך. לחילופין, שמור על העבודה שלך והקלק על `"סגור תכניות`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "תאריך יעד:" 22 | ExpiryMessage = "אתה יכול לבחור לדחות את ההתקנה עד שמשך זמן הדחיה יפוג." 23 | RemainingDeferrals = "מספר הדחיות שנותרו:" 24 | WarningMessage = "לאחר שמשך זמן הדחיה יפוג, לא תהיה לך עוד אפשרות לדחות." 25 | WelcomeMessage = "היישום הבא עומד להיות מותקן:" 26 | } 27 | DeploymentType = @{ 28 | Install = "התקנה" 29 | Repair = "תיקון" 30 | Uninstall = "הסרה" 31 | } 32 | DiskSpace = @{ 33 | Message = ":אין לך מספיק מקום בכונן כדי להשלים את ההתקנה של:`n{0}`n`nמקום נדרש: {1}מ`"ב`nמקום זמין: {2}מ`"ב`n`nאנא שחרר מספיק מקום בכונן כדי להתחיל בהתקנה." 34 | } 35 | Progress = @{ 36 | MessageInstall = "מבצע התקנה. נא להמתין." 37 | MessageInstallDetail = "חלון זה ייסגר אוטומטית עם השלמת ההתקנה." 38 | MessageRepair = "מבצע תיקון. נא להמתין." 39 | MessageRepairDetail = "חלון זה ייסגר אוטומטית עם השלמת התיקון." 40 | MessageUninstall = "מבצע הסרה. נא להמתין." 41 | MessageUninstallDetail = "חלון זה ייסגר אוטומטית עם השלמת הסרת ההתקנה." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "מזער את" 45 | ButtonRestartNow = "אתחל עכשיו" 46 | Message = "כדי להשלים את ההתקנה, עליך לאתחל את המחשב שלך מחדש." 47 | MessageRestart = "המחשב שלך יאותחל באופן אוטומטי בסיום הספירה לאחור." 48 | MessageTime = "אנא שמור על העבודה שלך ואתחל במסגרת הזמן המוקצב." 49 | TimeRemaining = "הזמן הנותר:" 50 | Title = "נדרש אתחול המחשב" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "ה {0} ימשיך באופן אוטומטי:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - אפליקציה {0}' 59 | DialogMessage = 'אנא שמור את עבודתך לפני שתמשיך שכן היישומים הבאים ייסגרו אוטומטית.' 60 | DialogMessageNoProcesses = 'אנא בחר התקן כדי להמשיך בהתקנה. אם נותרו לך דחיות, תוכל גם לבחור לדחות את ההתקנה.' 61 | ButtonDeferRemaining = 'לְהִשָׁאֵר' 62 | ButtonLeftText = 'לִדחוֹת' 63 | ButtonRightText = 'סגור אפליקציות והתקן' 64 | ButtonRightTextNoProcesses = 'לְהַתְקִין' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/hu/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "elkészült." 4 | Error = "sikertelen." 5 | FastRetry = "nem lehet befejezni." 6 | RestartRequired = "elkészült.Újraindítás szükséges." 7 | Start = "elindult." 8 | } 9 | BlockExecution = @{ 10 | Message = "A következő alkalmazások blokkolva lesznek, annak érdekében hogy a telepítés problémamentesen végrehajtódjon." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Alkalmazások bezárása" 14 | ButtonContinue = "Tovább" 15 | ButtonContinueTooltip = "Csak azután kattintson a `"Tovább`"-ra, ha a fentebb látható alkalmazás(oka)t bezárta." 16 | ButtonDefer = "Elhalaszt" 17 | CountdownMessage = "Megjegyzés: a programok automatikusan bezárásra kerülnek,:" 18 | Message = "Az alábbi programokat szíveskedjen bezárni, mielőtt a telepítés elkezdődik.`n`nKérjük mentse munkáját és a folytatáshoz zárja be a futó alkalmazásokat. Vagy Kérjük mentse munkáját és kattintson a `"Programok bezárása`"-ra." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Időpont:" 22 | ExpiryMessage = "A telepítést elhalaszthatja amíg a rendelkezésre álló idő lejár:" 23 | RemainingDeferrals = "Fennmaradó halasztás:" 24 | WarningMessage = "Amennyiben a rendelkezésre álló idő letelik, nem lesz lehetősége a telepítés elhalasztására." 25 | WelcomeMessage = "A következő alkalmazások telepítésre kerülnek:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Telepítés" 29 | Repair = "Javítás" 30 | Uninstall = "Eltávolítás" 31 | } 32 | DiskSpace = @{ 33 | Message = "Nincs elég lemezterület a telepítés végrehajtásához:`n{0}`n`nSzükséges lemezterület: {1}MB`nSzabad lemezterület: {2}MB`nKérem szabadítson fel elegendő lemezterületet a telepítés végrehajtásához." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Telepítés folyamatban. Kérem várjon..." 37 | MessageInstallDetail = "Ez az ablak automatikusan bezáródik, amikor a telepítés befejeződik." 38 | MessageRepair = "Javítás folyamatban. Kérem várjon..." 39 | MessageRepairDetail = "Ez az ablak automatikusan bezáródik, ha a javítás befejeződött." 40 | MessageUninstall = "Eltávolítás folyamatban. Kérem várjon..." 41 | MessageUninstallDetail = "Ez az ablak automatikusan bezáródik, amikor az eltávolítás befejeződik." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimalizál" 45 | ButtonRestartNow = "Újraindítás most" 46 | Message = "A telepítés befejezéséhez a számítógépet újraindítása szükséges." 47 | MessageRestart = "A hátralévő idő leteltével a számítógép újraindul." 48 | MessageTime = "Kérem mentse munkáját, és a megadott időn belül indítsa újra.." 49 | TimeRemaining = "Hátralévő idő:" 50 | Title = "Újraindítás szükséges" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "A(z) {0} automatikusan folytatódik:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Alkalmazás {0}' 59 | DialogMessage = 'Kérjük, mentse el a munkáját, mielőtt folytatná, mivel a következő alkalmazások automatikusan lezárulnak.' 60 | DialogMessageNoProcesses = 'Please select Install to continue with the installation. If you have any deferrals remaining, you may also choose to delay the installation.' 61 | ButtonDeferRemaining = 'maradjon' 62 | ButtonLeftText = 'Elhalasztás' 63 | ButtonRightText = 'Alkalmazások bezárása és telepítése' 64 | ButtonRightTextNoProcesses = 'Telepítse a' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/it/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "Completata." 4 | Error = "Fallita." 5 | FastRetry = "Non completata." 6 | RestartRequired = "Completata. È necessario riavviare il computer." 7 | Start = "Iniziata." 8 | } 9 | BlockExecution = @{ 10 | Message = "L'esecuzione di questa applicazione è stata temporaneamente bloccata in modo che l'operazione di installazione possa essere completata." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Chiudi Programmi" 14 | ButtonContinue = "Continua" 15 | ButtonContinueTooltip = "Seleziona `"Continua`" solo dopo la chiusura della(e) applicazione(i) elencate sopra." 16 | ButtonDefer = "Rimanda" 17 | CountdownMessage = "NOTA: il programma(s) sarà chiuso automaticamente in:" 18 | Message = "I seguenti programmi devono essere chiusi prima che l'installazione possa procedere.`n`nSalvare il lavoro , chiudere i programmi, e poi continuare. In alternativa, salvare il lavoro e fare clic su `"Chiudi Programmi`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Scadenza:" 22 | ExpiryMessage = "Si può decidere di posticipare l'installazione fino alla prossima richiesta automatica:" 23 | RemainingDeferrals = "Posticipi rimanenti:" 24 | WarningMessage = "Una volta che le richieste rimanenti saranno scadute, non sarà più possibile posticipare l'installazione." 25 | WelcomeMessage = "La seguente applicazione sta per essere installata:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Installazione" 29 | Repair = "Riparazione" 30 | Uninstall = "Disinstallazione" 31 | } 32 | DiskSpace = @{ 33 | Message = "Non si dispone di spazio su disco sufficiente per completare l'installazione di:`n{0}`n`nSpazio necessario: {1}MB`nSpazio disponibile: {2}MB`n`nSi prega di spazio libero su disco sufficiente per procedere con l'installazione." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Installazione in corso. Attendere prego..." 37 | MessageInstallDetail = "Questa finestra si chiude automaticamente al termine dell'installazione." 38 | MessageRepair = "Riparazione in corso. Attendere prego..." 39 | MessageRepairDetail = "Questa finestra si chiuderà automaticamente al termine della riparazione." 40 | MessageUninstall = "Disinstallazione in corso. Attendere prego..." 41 | MessageUninstallDetail = "Questa finestra si chiuderà automaticamente al termine della disinstallazione." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimizzare" 45 | ButtonRestartNow = "Riavvia Ora" 46 | Message = "Per completare l'installazione, è necessario riavviare il computer." 47 | MessageRestart = "Il computer verrà riavviato automaticamente al termine del conto alla rovescia." 48 | MessageTime = "Salvare il lavoro e riavviare entro il tempo assegnato." 49 | TimeRemaining = "Tempo rimanente:" 50 | Title = "Riavvio Richiesto" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "Il {0} continuerà automaticamente in:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - App {0}' 59 | DialogMessage = 'Salvate il vostro lavoro prima di continuare, perché le applicazioni seguenti verranno chiuse automaticamente.' 60 | DialogMessageNoProcesses = "Selezionare Installa per continuare l'installazione. Se sono rimasti dei rinvii, si può anche scegliere di ritardare l'installazione." 61 | ButtonDeferRemaining = 'rimanere' 62 | ButtonLeftText = 'Rinviare' 63 | ButtonRightText = 'Chiudere le applicazioni e installare' 64 | ButtonRightTextNoProcesses = 'Installare' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/ja/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "完了です" 4 | Error = "失敗。" 5 | FastRetry = "未完了。" 6 | RestartRequired = "完了。再起動が必要です。" 7 | Start = "開始" 8 | } 9 | BlockExecution = @{ 10 | Message = "アプリケーションインストールが完了するまで、このアプリケーションの起動を一時的にブロックしています。" 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "プログラムを強制終了" 14 | ButtonContinue = "続行" 15 | ButtonContinueTooltip = "上記に記載されているアプリケーションを終了してから「続ける」を選択してください。" 16 | ButtonDefer = "後で" 17 | CountdownMessage = "注意: これらのプログラムは自動的に閉じられます:" 18 | Message = "インストールを実行するために、下記のプログラムを閉じる必要があります。`n`n実行中のアプリケーションを保存し、閉じてから続行してください。 または、実行中のアプリケーションを保存し、プログラムを強制終了ボタンをクリックしてくだい" 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "デッドライン:" 22 | ExpiryMessage = "再試行可能回数が0になるまでは、都合の良い時にインストール可能です。" 23 | RemainingDeferrals = "再試行可能回数:" 24 | WarningMessage = "再試行可能回数が0になった場合、システムで強制インストールをします。" 25 | WelcomeMessage = "このアプリケーションはこれからインストールされます。" 26 | } 27 | DeploymentType = @{ 28 | Install = "インストール" 29 | Repair = "修復" 30 | Uninstall = "アンインストール" 31 | } 32 | DiskSpace = @{ 33 | Message = "ディスクの空き容量が不足しているため、インストールを完了できません:`n{0}`n`n必要な容量: {1}MB`n現在の空き容量: {2}MB`n`nインストールを実行するために、容量を確保してください" 34 | } 35 | Progress = @{ 36 | MessageInstall = "インストール中です。 少々お待ちください。" 37 | MessageInstallDetail = "インストールが完了すると、このウィンドウは自動的に閉じます。" 38 | MessageRepair = "修復中です。 少々お待ちください。" 39 | MessageRepairDetail = "修復が完了すると、このウィンドウは自動的に閉じます。" 40 | MessageUninstall = "アンインストール中です。 少々お待ちください。" 41 | MessageUninstallDetail = "アンインストールが完了すると、このウィンドウは自動的に閉じます。" 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "最小 化" 45 | ButtonRestartNow = "今すぐ再起動" 46 | Message = "インストールを完了するために、再起動が必要です。" 47 | MessageRestart = "カウントダウン後にコンピュータが再起動します。" 48 | MessageTime = "実行中のアプリケーションを保存し、再起動してください。" 49 | TimeRemaining = "残時間:" 50 | Title = "再起動が必要です" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} は自動的に続きます:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - アプリ {0}' 59 | DialogMessage = '次のアプリケーションは自動的に終了しますので、作業を続ける前に保存してください。' 60 | DialogMessageNoProcesses = 'インストールを選択してインストールを続行してください。延期分が残っている場合は、インストールを延期することもできます。' 61 | ButtonDeferRemaining = '残る' 62 | ButtonLeftText = '延期' 63 | ButtonRightText = 'アプリを閉じる&インストール' 64 | ButtonRightTextNoProcesses = 'インストール' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/ko/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "완료되었습니다." 4 | Error = "실패했습니다." 5 | FastRetry = "완료되지 않았습니다." 6 | RestartRequired = "완료되었습니다. 재부팅이 필요합니다." 7 | Start = "시작되었습니다." 8 | } 9 | BlockExecution = @{ 10 | Message = "설치 작업을 완료할 수 있도록 응용 프로그램의 시작을 잠시 차단했습니다." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "프로그램 종료" 14 | ButtonContinue = "계속" 15 | ButtonContinueTooltip = "위에 표시된 응용 프로그램을 종료한 후에만 `"계속`"을 선택하세요." 16 | ButtonDefer = "연기" 17 | CountdownMessage = "참고: 프로그램이 자동으로 종료되는 경우:" 18 | Message = "설치를 계속하려면 다음의 프로그램을 종료해야 합니다.`n`n사용자 작업을 저장하고 프로그램을 종료한 후 계속하세요. 다른 방법으로는 사용자 작업을 저장하고 `"프로그램 종료`"를 클릭하세요." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "마감:" 22 | ExpiryMessage = "지연 기간이 만료될 때까지 설치를 연기할 수 있습니다:" 23 | RemainingDeferrals = "남은 지연 기간:" 24 | WarningMessage = "일단 지연 기간이 만료되면 더 이상 연기할 수 있는 옵션은 없습니다." 25 | WelcomeMessage = "다음의 응용 프로그램을 설치합니다:" 26 | } 27 | DeploymentType = @{ 28 | Install = "설치" 29 | Repair = "수리" 30 | Uninstall = "제거" 31 | } 32 | DiskSpace = @{ 33 | Message = "다음의 설치 완료를 위해 필요한 디스크 공간이 충분하지 않습니다:`n{0}`n`n필요한 공간: {1}MB`n사용 가능한 공간: {2}MB`n`n설치를 계속하려면 디스크 공간을 충분하게 확보하세요." 34 | } 35 | Progress = @{ 36 | MessageInstall = "설치 중입니다. 기다리세요..." 37 | MessageInstallDetail = "이 창은 설치가 완료되면 자동으로 닫힙니다." 38 | MessageRepair = "수리 중입니다. 기다리세요..." 39 | MessageRepairDetail = "이 창은 수리가 완료되면 자동으로 닫힙니다." 40 | MessageUninstall = "제거 중입니다. 기다리세요..." 41 | MessageUninstallDetail = "이 창은 제거가 완료되면 자동으로 닫힙니다." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "최소화" 45 | ButtonRestartNow = "지금 다시 시작" 46 | Message = "설치를 완료하려면 컴퓨터를 다시 시작해야 합니다." 47 | MessageRestart = "카운트다운이 종료되면 컴퓨터는 자동으로 다시 시작합니다." 48 | MessageTime = "사용자 작업을 저장하고 지정된 시간 이내에 다시 시작하세요." 49 | TimeRemaining = "남은 시간:" 50 | Title = "다시 시작해야 합니다" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0}는 자동으로 계속됩니다:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - 앱 {0}' 59 | DialogMessage = '다음 애플리케이션은 자동으로 종료되므로 계속하기 전에 작업을 저장해 주세요.' 60 | DialogMessageNoProcesses = '설치를 계속하려면 설치를 선택하세요. 연기할 항목이 남아 있는 경우 설치를 연기하도록 선택할 수도 있습니다.' 61 | ButtonDeferRemaining = '남아있음' 62 | ButtonLeftText = '연기하다' 63 | ButtonRightText = '앱 닫기 및 설치' 64 | ButtonRightTextNoProcesses = '설치' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/nb/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "fullført." 4 | Error = "mislyktes." 5 | FastRetry = "ikke fullført." 6 | RestartRequired = "ferdig. En omstart er nødvendig." 7 | Start = "startet." 8 | } 9 | BlockExecution = @{ 10 | Message = "Start av dette programmet er midlertidig blokkert inntil pågående programvareinstallasjon er fullført." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Lukk programmer" 14 | ButtonContinue = "Fortsett" 15 | ButtonContinueTooltip = "Velg kun `"Fortsett`" etter du har lukket applikasjonen(e) i listen over." 16 | ButtonDefer = "Utsett" 17 | CountdownMessage = "OBS: Programmet vil automatisk lukkes om:" 18 | Message = "Følgende programmer må lukkes før installasjonen kan fortsette.`n`nLagre arbeidet, lukk programmene og velg `"Fortsett`", eller velg `"Lukk programmer`" uten å lagre arbeidet." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Frist:" 22 | ExpiryMessage = "Du kan velge å utsette installasjonen et begrenset antall ganger inntil fristen utløper:" 23 | RemainingDeferrals = "Gjenstående utsettelser:" 24 | WarningMessage = "Når fristen har utløpt kan du ikke lenger utsette installasjonen." 25 | WelcomeMessage = "Følgende program vil bli installert:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Installasjon" 29 | Repair = "Reparasjon" 30 | Uninstall = "Avinstallasjon" 31 | } 32 | DiskSpace = @{ 33 | Message = "Du har ikke nok diskplass for å fullføre installasjonen av:`n{0}`n`nLedig plass påkrevd: {1}MB`nLedig plass tilgjengelig: {2}MB`n`nFrigjør diskplass for å fortsette installasjonen." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Installasjon av programvare pågår. Vennligst vent.." 37 | MessageInstallDetail = "Dette vinduet lukkes automatisk når installasjonen er fullført." 38 | MessageRepair = "Reparasjon av programvare pågår. Vennligst vent.." 39 | MessageRepairDetail = "Dette vinduet lukkes automatisk når reparasjonen er fullført." 40 | MessageUninstall = "Avinstallasjon av programvare pågår. Vennligst vent.." 41 | MessageUninstallDetail = "Dette vinduet lukkes automatisk når avinstallasjonen er fullført." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimere" 45 | ButtonRestartNow = "Omstart nå" 46 | Message = "En omstart av maskinen er nødvendig for å fullføre installasjonen." 47 | MessageRestart = "Maskinen vil automatisk starte på nytt, når nedtellingen er omme." 48 | MessageTime = "Lagre arbeidet ditt og ta en omstart av maskinen innen fristen." 49 | TimeRemaining = "Tid som gjenstår:" 50 | Title = "Omstart kreves" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} vil automatisk fortsette om:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - App {0}' 59 | DialogMessage = 'Lagre arbeidet ditt før du fortsetter, fordi de følgende programmene blir lukket automatisk.' 60 | DialogMessageNoProcesses = 'Velg Installere for å fortsette med installasjonen. Hvis du har noen utsettelser igjen, kan du også velge å utsette installasjonen.' 61 | ButtonDeferRemaining = 'gjenstår' 62 | ButtonLeftText = 'Utsette' 63 | ButtonRightText = 'Lukk apper og installer' 64 | ButtonRightTextNoProcesses = 'Installere' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/nl/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "voltooid" 4 | Error = "gefaald" 5 | FastRetry = "onvolledig" 6 | RestartRequired = "voltooid. Een herstart is nodig" 7 | Start = "gestart" 8 | } 9 | BlockExecution = @{ 10 | Message = "Het opstarten van deze applicatie werd tijdelijk geblokkeerd om een installatie uit te voeren." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Sluit Applicaties" 14 | ButtonContinue = "Doorgaan" 15 | ButtonContinueTooltip = "Selecteer alleen 'Doorgaan' na het sluiten van de bovenstaande toepassing(en)." 16 | ButtonDefer = "Uitstel" 17 | CountdownMessage = "LET OP: De applicatie(s) worden afgesloten over:" 18 | Message = "De volgende applicaties moeten afgesloten worden om de installatie te voltooien.`n`nSla je werk op, sluit de applicaties, en ga verder.`nOf, sla je werk op en klik op 'Sluit Applicaties'." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Deadline:" 22 | ExpiryMessage = "Je kan de installatie uitstellen tot de maximale uitsteltermijn is verstreken:" 23 | RemainingDeferrals = "Aantal keer uitstellen:" 24 | WarningMessage = "Na verstrijken van de uitsteltermijn is deze optie niet langer beschikbaar." 25 | WelcomeMessage = "De volgende applicatie wordt zometeen geïnstalleerd:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Installatie" 29 | Repair = "Reparatie" 30 | Uninstall = "Verwijderen" 31 | } 32 | DiskSpace = @{ 33 | Message = "Er is onvoldoende schijfruimte voor de installatie van:`n{0}`n`nRuimte nodig: {1}MB`nRuimte beschikbaar: {2}MB`n`nGelieve voldoende schijfruimte vrij te maken om de installatie te starten." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Installatie bezig. Even geduld..." 37 | MessageInstallDetail = "Dit venster wordt automatisch gesloten wanneer de installatie voltooid is." 38 | MessageRepair = "Reparatie bezig. Even geduld..." 39 | MessageRepairDetail = "Dit venster sluit automatisch wanneer de reparatie is voltooid." 40 | MessageUninstall = "Verwijderen bezig. Even geduld..." 41 | MessageUninstallDetail = "Dit venster wordt automatisch gesloten als de de-installatie voltooid is." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimaliseren" 45 | ButtonRestartNow = "Herstart Nu" 46 | Message = "Om de installatie te voltooien is een herstart nodig." 47 | MessageRestart = "De computer zal herstarten als de teller op nul staat" 48 | MessageTime = "Gelieve je werk op te slaan en binnen de toegestane termijn de computer herstarten" 49 | TimeRemaining = "Resterende tijd:" 50 | Title = "Herstart nodig" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "De {0} gaat automatisch door over:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - App {0}' 59 | DialogMessage = "Sla je werk op voordat je verdergaat, want de volgende programma's worden automatisch afgesloten." 60 | DialogMessageNoProcesses = 'Selecteer Installeren om door te gaan met de installatie. Als je nog uitstel hebt, kun je er ook voor kiezen om de installatie uit te stellen.' 61 | ButtonDeferRemaining = 'resterend' 62 | ButtonLeftText = 'Uitstellen' 63 | ButtonRightText = 'Apps sluiten en installeren' 64 | ButtonRightTextNoProcesses = 'Installeren' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/pl/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "zakończona." 4 | Error = "nie powiodła się." 5 | FastRetry = "nieukończona." 6 | RestartRequired = "zakończona. Wymagany jest restart komputera." 7 | Start = "rozpoczęta." 8 | } 9 | BlockExecution = @{ 10 | Message = "Uruchomienie tej aplikacji zostało zablokowane na okres instalacji." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Zamknij Programy" 14 | ButtonContinue = "Kontynuuj" 15 | ButtonContinueTooltip = "Tylko wybrać `"Kontynuuj`" po zamknięciu wyżej wymienione aplikacje." 16 | ButtonDefer = "Odłóż" 17 | CountdownMessage = "UWAGA: Programy zostaną automatycznie zamknięte za:" 18 | Message = "Następujące programy muszą zostać zamknięte przed rozpoczęciem instalacji.`n`nProszę zapisać wszystkie dokumenty i zamknąć programy, a następnie kliknąć przycisk `"Kontynuuj`". Alternatywnie zapisz wszystkie dokumenty i kliknij przycisk `"Zamknij Programy`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Ostateczny termin instalacji:" 22 | ExpiryMessage = "Instalacja może zostać przełożona na późniejszy termin." 23 | RemainingDeferrals = "Pozostała ilość przełożeń instalacji:" 24 | WarningMessage = "Jeżeli zostanie przekroczona możliwa ilość przełożeń, opcja `"Odłóż`" będzie niedostępna." 25 | WelcomeMessage = "Zostanie zainstalowana następująca aplikacja:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Instalacja" 29 | Repair = "Naprawa" 30 | Uninstall = "Deinstalacja" 31 | } 32 | DiskSpace = @{ 33 | Message = "Brak miejsca na dysku:`n{0}`n`nPotrzeba: {1}MB`nObecnie wolnego miejsca: {2}MB`n`nProszę zwiększyć ilość miejsca usuwając zbędne pliki." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Trwa instalacja. Proszę czekać..." 37 | MessageInstallDetail = "Okno to zamknie się automatycznie po zakończeniu instalacji." 38 | MessageRepair = "Trwa naprawa. Proszę czekać..." 39 | MessageRepairDetail = "Okno to zamknie się automatycznie po zakończeniu naprawy." 40 | MessageUninstall = "Trwa deinstalacja. Proszę czekać..." 41 | MessageUninstallDetail = "Okno to zamknie się automatycznie po zakończeniu dezinstalacji." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Zminimalizować" 45 | ButtonRestartNow = "Restartuj Teraz" 46 | Message = "Aby instalacja została poprawnie ukończona wymagany jest restart komputera." 47 | MessageRestart = "Komputer zostanie automatycznie zrestartowany po upływie wyznaczonego czasu." 48 | MessageTime = "Proszę zapisać wszystkie dokumenty i zrestartować komputer w wyznaczonym czasie." 49 | TimeRemaining = "Pozostały czas do restartu automatycznego:" 50 | Title = "Wymagany Restart" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} będzie automatycznie kontynuować w:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - aplikacja {0}' 59 | DialogMessage = 'Zapisz swoją pracę przed kontynuowaniem, ponieważ następujące aplikacje zostaną automatycznie zamknięte.' 60 | DialogMessageNoProcesses = 'Wybierz opcję Zainstaluj, aby kontynuować instalację. Jeśli pozostały jakieś odroczenia, możesz również opóźnić instalację.' 61 | ButtonDeferRemaining = 'pozostać' 62 | ButtonLeftText = 'Odroczenie' 63 | ButtonRightText = 'Zamknij aplikacje i zainstaluj' 64 | ButtonRightTextNoProcesses = 'Instalacja' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/pt-br/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "concluída." 4 | Error = "falhou." 5 | FastRetry = "não concluída." 6 | RestartRequired = "concluída. É necessário reiniciar." 7 | Start = "iniciada." 8 | } 9 | BlockExecution = @{ 10 | Message = "A execução deste aplicativo foi temporariamente bloqueada para que uma operação de instalação seja concluída." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Fechar Programas" 14 | ButtonContinue = "Continuar" 15 | ButtonContinueTooltip = "Apenas selecione `"Continuar`" depois de fechar aplicativo(s) acima." 16 | ButtonDefer = "Adiar" 17 | CountdownMessage = "OBSERVAÇÃO: O(s) programa(s) será(ão) automaticamente fechado(s) em:" 18 | Message = "Os seguintes programas precisam ser fechados antes que a instalação possa prosseguir.`nSalve seu trabalho, feche os programas e depois continue. Como alternativa, salve seu trabalho e clique em `"Fechar Programas`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Prazo:" 22 | ExpiryMessage = "Você pode optar por adiar a instalação até que o adiamento expire:" 23 | RemainingDeferrals = "Adiamentos Restantes:" 24 | WarningMessage = "Depois que o adiamento expirar, você não terá mais a opção de adiar." 25 | WelcomeMessage = "O seguinte aplicativo está prestes a ser instalado:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Instalação" 29 | Repair = "Reparação" 30 | Uninstall = "Desinstalação" 31 | } 32 | DiskSpace = @{ 33 | Message = "Você não tem espaço em disco suficiente para concluir a instalação de:`n{0}`n`nEspaço necessário: {1}MB`nEspaço disponível: {2}MB`n`nLibere espaço em disco suficiente para prosseguir com a instalação." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Instalação em andamento. Aguarde..." 37 | MessageInstallDetail = "Essa janela será fechada automaticamente quando a instalação for concluída." 38 | MessageRepair = "Reparação em andamento. Aguarde..." 39 | MessageRepairDetail = "Essa janela será fechada automaticamente quando o reparo for concluído." 40 | MessageUninstall = "Desinstalação em andamento. Aguarde..." 41 | MessageUninstallDetail = "Essa janela será fechada automaticamente quando a desinstalação for concluída." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimizar" 45 | ButtonRestartNow = "Reiniciar Agora" 46 | Message = "Para que a instalação seja concluída, é necessário reiniciar o computador." 47 | MessageRestart = "Seu computador será reiniciado automaticamente no final da contagem regressiva." 48 | MessageTime = "Salve seu trabalho e reinicie dentro do prazo estipulado." 49 | TimeRemaining = "Tempo restante:" 50 | Title = "Reinicialização Necessária" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "O {0} continuará automaticamente em:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Aplicativo {0}' 59 | DialogMessage = 'Salve seu trabalho antes de continuar, pois os aplicativos a seguir serão fechados automaticamente.' 60 | DialogMessageNoProcesses = 'Selecione Install para continuar com a instalação. Se houver algum adiamento restante, você também poderá optar por adiar a instalação.' 61 | ButtonDeferRemaining = 'permanecer' 62 | ButtonLeftText = 'Adiar' 63 | ButtonRightText = 'Fechar aplicativos e instalar' 64 | ButtonRightTextNoProcesses = 'Instalar' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/pt/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "completo." 4 | Error = "falhou." 5 | FastRetry = "não completar." 6 | RestartRequired = "completa. Uma reinicialização é necessária." 7 | Start = "começou a." 8 | } 9 | BlockExecution = @{ 10 | Message = "Lançar este aplicativo está temporariamente bloqueado para que possa concluir uma operação de instalação." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Fechar Programas" 14 | ButtonContinue = "Continuar" 15 | ButtonContinueTooltip = "Selecione `"Continuar`" somente após fechar a(s) aplicação(ões) listada(s) abaixo." 16 | ButtonDefer = "Adiar" 17 | CountdownMessage = "NOTA: O programa será fechado automaticamente em:" 18 | Message = "Programas de seguir devem ser fechados antes que a instalação possa prosseguir.`n`nPor favor, guarde o seu trabalho, feche os programas e em seguida continuar. Como alternativa, salve seu trabalho e clique em `"Fechar Programas`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Prazo:" 22 | ExpiryMessage = "Você pode optar por adiar a instalação até que expire o diferimento:" 23 | RemainingDeferrals = "Restantes diferimentos:" 24 | WarningMessage = "Uma vez que o diferimento expirou, você já não terá a opção de adiar a." 25 | WelcomeMessage = "O seguinte aplicativo está prestes a ser instalado:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Instalação" 29 | Repair = "Reparação" 30 | Uninstall = "Desinstalação" 31 | } 32 | DiskSpace = @{ 33 | Message = "Você não tem espaço em disco suficiente para concluir a instalação de:`n{0}`n`nEspaço necessário: {1}MB`nEspaço disponível: {2}MB`n`nPor favor, espaço livre em disco suficiente, a fim de prosseguir com a instalação." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Instalação em andamento. Por favor aguarde..." 37 | MessageInstallDetail = "Esta janela fechar-se-á automaticamente quando a instalação estiver concluída." 38 | MessageRepair = "Reparação em andamento. Por favor aguarde..." 39 | MessageRepairDetail = "Esta janela fechar-se-á automaticamente quando a reparação estiver concluída." 40 | MessageUninstall = "Desinstalação em andamento. Por favor aguarde..." 41 | MessageUninstallDetail = "Esta janela fechar-se-á automaticamente quando a desinstalação estiver concluída." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimizar" 45 | ButtonRestartNow = "Reinicie Agora" 46 | Message = "Em ordem para completar a instalação, você deve reiniciar seu computador." 47 | MessageRestart = "Seu computador será reiniciado automaticamente no final da contagem regressiva." 48 | MessageTime = "Por favor, salve o trabalho e reiniciar no tempo alocado." 49 | TimeRemaining = "Tempo restante:" 50 | Title = "Reinicialização Necessária" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "O {0} continuará automaticamente em:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Aplicação {0}' 59 | DialogMessage = 'Guarde o seu trabalho antes de continuar, pois as aplicações seguintes serão encerradas automaticamente.' 60 | DialogMessageNoProcesses = 'Selecione Instalar para continuar com a instalação. Se ainda tiver algum adiamento, também pode optar por adiar a instalação.' 61 | ButtonDeferRemaining = 'permanecer' 62 | ButtonLeftText = 'Adiar' 63 | ButtonRightText = 'Fechar aplicações e instalar' 64 | ButtonRightTextNoProcesses = 'Instalar' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/ru/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "выполнена(о)." 4 | Error = "не выполнена(о)." 5 | FastRetry = "не завершена(о)." 6 | RestartRequired = "выполнена(о). Требуется перезагрузка." 7 | Start = "начата(о)." 8 | } 9 | BlockExecution = @{ 10 | Message = "Запуск этого приложения временно заблокирован для завершения процесса установки." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Закрыть программы" 14 | ButtonContinue = "Продолжить" 15 | ButtonContinueTooltip = "Выберите `"Продолжить`" только после закрытия вышеперечисленных приложений." 16 | ButtonDefer = "Отложить" 17 | CountdownMessage = "ПРИМЕЧАНИЕ: Эти программы будут автоматически закрыты через:" 18 | Message = "Перед продолжением установки необходимо закрыть следующие программы.`nПожалуйста, сохраните вашу работу и закройте программы, а затем продолжите установку. Также вы можете сохранить вашу работу и нажать `"Закрыть программы`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Дата истечения:" 22 | ExpiryMessage = "Вы можете отложить установку приложения до тех пор, пока не истечет срок действия этой отсрочки:" 23 | RemainingDeferrals = "Оставшиеся отсрочки:" 24 | WarningMessage = "После истечения срока действия отсрочки вы больше не сможете отложить установку." 25 | WelcomeMessage = "Планируется установка следующего приложения:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Установка" 29 | Repair = "Исправление" 30 | Uninstall = "Удаление" 31 | } 32 | DiskSpace = @{ 33 | Message = "У вас недостаточно пространства на диске для выполнения установки:`n{0}`n`nНеобходимое пространство на диске: {1}МБ`nДоступное пространство на диске: {2}МБ`n`nДля продолжения установки, пожалуйста, освободите достаточно пространства на диске." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Идет установка. Пожалуйста, подождите..." 37 | MessageInstallDetail = "Это окно закроется автоматически после завершения установки." 38 | MessageRepair = "Идет исправление. Пожалуйста, подождите..." 39 | MessageRepairDetail = "Это окно автоматически закроется по завершении ремонта." 40 | MessageUninstall = "Идет удаление. Пожалуйста, подождите..." 41 | MessageUninstallDetail = "Это окно закроется автоматически после завершения удаления." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Минимизировать" 45 | ButtonRestartNow = "Перезагрузить сейчас" 46 | Message = "Для завершения установки необходимо перезагрузить ваш компьютер." 47 | MessageRestart = "Ваш компьютер будет автоматически перезагружен по завершению обратного отсчета." 48 | MessageTime = "Пожалуйста, сохраните вашу работу и выполните перезагрузку в отведенное время." 49 | TimeRemaining = "Оставшееся время:" 50 | Title = "Требуется перезагрузка" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} автоматически продолжится через:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - приложение {0}' 59 | DialogMessage = 'Пожалуйста, сохраните свою работу, прежде чем продолжить, так как следующие приложения будут закрыты автоматически.' 60 | DialogMessageNoProcesses = 'Чтобы продолжить установку, выберите Install (Установить). Если у вас остались отсрочки, вы также можете отложить установку.' 61 | ButtonDeferRemaining = 'оставаться' 62 | ButtonLeftText = 'Отложить' 63 | ButtonRightText = 'Закрыть приложения и установить' 64 | ButtonRightTextNoProcesses = 'Установите' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/sk/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "ukončená." 4 | Error = "sa nepodarila." 5 | FastRetry = "nedokončená." 6 | RestartRequired = "ukončená. Je nutný reštart." 7 | Start = "spustená." 8 | } 9 | BlockExecution = @{ 10 | Message = "Spustenie tejto aplikácie bolo dočasne zablokované, aby mohla byť inštalácia dokončená úspešne." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Ukončiť programy" 14 | ButtonContinue = "Pokračovať" 15 | ButtonContinueTooltip = "Kliknite na `"Pokračovať`", keď zavriete vyššie uvedené aplikácie." 16 | ButtonDefer = "Oddialiť" 17 | CountdownMessage = "Poznámka: Programy budú automaticky ukončené za:" 18 | Message = "Nasledujúce programy musia byť zatvorené, než bude inštalácia pokračovať.`n`nProsím, uložte svoju prácu, zatvorte dané programy a potom kliknite na pokračovať. Prípadne môžete uložiť svoju prácu a potom kliknite na tlačidlo `"Ukončiť programy`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Termín:" 22 | ExpiryMessage = "Inštaláciu môžete niekoľkokrát odložiť:" 23 | RemainingDeferrals = "Zostávajúce odklady:" 24 | WarningMessage = "Akonáhle odklady uplynú, už nebudete mať možnosť odložiť inštaláciu." 25 | WelcomeMessage = "Nasledujúca aplikácia bude nainštalovaná:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Inštalácia" 29 | Repair = "Oprava" 30 | Uninstall = "Odinštalácia" 31 | } 32 | DiskSpace = @{ 33 | Message = "Nemáte dostatok voľného miesta na dokončenie inštalácie:`n{0}`n`nPotrebné miesto: {1}MB`nVoľné miesto: {2}MB`n`nProsím, uvoľnite dostatok miesta pre pokračovanie inštalácie." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Inštalácia sa vykonáva. Prosím čakajte..." 37 | MessageInstallDetail = "Toto okno sa po dokončení inštalácie automaticky zatvorí." 38 | MessageRepair = "Vykonáva sa oprava. Prosím čakajte..." 39 | MessageRepairDetail = "Toto okno sa po dokončení opravy automaticky zatvorí." 40 | MessageUninstall = "Prebieha odinštalácia. Prosím čakajte..." 41 | MessageUninstallDetail = "Toto okno sa po dokončení odinštalovania automaticky zatvorí." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimalizovať" 45 | ButtonRestartNow = "Reštartovať Teraz" 46 | Message = "Na dokončenie inštalácie musíte váš počítač reštartovať." 47 | MessageRestart = "Na konci odpočítavania, bude váš počítač automaticky reštartovaný." 48 | MessageTime = "Prosím, uložte si prácu a reštartujte počítač v stanovenej lehote." 49 | TimeRemaining = "Zostávajúci čas:" 50 | Title = "Je nutný reštart." 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} bude automaticky pokračovať za:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Aplikácia {0}' 59 | DialogMessage = 'Pred pokračovaním uložte svoju prácu, pretože nasledujúce aplikácie sa automaticky zatvoria.' 60 | DialogMessageNoProcesses = 'Ak chcete pokračovať v inštalácii, vyberte možnosť Inštalovať. Ak máte ešte nejaké odklady, môžete tiež zvoliť odloženie inštalácie.' 61 | ButtonDeferRemaining = 'zostať' 62 | ButtonLeftText = 'Odloženie' 63 | ButtonRightText = 'Zatvoriť aplikácie a nainštalovať' 64 | ButtonRightTextNoProcesses = 'Inštalácia stránky' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/sv/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "slutförd." 4 | Error = "misslyckades." 5 | FastRetry = "ej slutförd." 6 | RestartRequired = "slutförd. En omstart av datorn är nödvändig." 7 | Start = "startad." 8 | } 9 | BlockExecution = @{ 10 | Message = "Den här applikationen har temporärt blockerats så att installationen kan slutföras." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Stäng Program" 14 | ButtonContinue = "Fortsätt" 15 | ButtonContinueTooltip = "Välj `"Fortsätt`" endast efter att ha stängt applikation(er) i ovanstående lista." 16 | ButtonDefer = "Skjut upp" 17 | CountdownMessage = "OBS: Programmen kommer automatiskt att avslutas om:" 18 | Message = "Följande program måste stängas innan installationen kan fortsätta.`n`nSe till att spara ditt arbete, stäng de öppna programmen och klicka sen på `"Fortsätt`".`nAlternativt, spara ditt arbete och klicka på `"Stäng Program`"." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Deadline:" 22 | ExpiryMessage = "Du kan välja att fördröja installationen ett begränsat antal gånger under en begränsad tid:" 23 | RemainingDeferrals = "Antal återstående fördröjningar:" 24 | WarningMessage = "När antalet fördröjningar är slut eller deadlinen inträffar är detta alternativ inte längre tillgängligt." 25 | WelcomeMessage = "Följande applikation kommer att installeras:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Installation" 29 | Repair = "Reparation" 30 | Uninstall = "Avinstallation" 31 | } 32 | DiskSpace = @{ 33 | Message = "Du har inte tillräckligt med ledigt diskutrymme för att kunna installera:`n{0}`n`nDiskutrymme som krävs: {1}MB`nLedigt diskutrymme: {2}MB`n`nFrigör utrymme på hårddisken och försök igen." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Installation pågår. Var god vänta..." 37 | MessageInstallDetail = "Detta fönster stängs automatiskt när installationen är klar." 38 | MessageRepair = "Reparation pågår. Var god vänta..." 39 | MessageRepairDetail = "Detta fönster stängs automatiskt när reparationen är klar." 40 | MessageUninstall = "Avinstallation pågår. Var god vänta..." 41 | MessageUninstallDetail = "Detta fönster stängs automatiskt när avinstallationen är klar." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Minimera" 45 | ButtonRestartNow = "Starta Om Nu" 46 | Message = "För att installationen ska kunna slutföras måste din dator startas om." 47 | MessageRestart = "Din dator kommer automatiskt att starta om när nedräkningen är slut." 48 | MessageTime = "Se till att spara ditt arbete innan tiden går ut och en automatisk omstart sker." 49 | TimeRemaining = "Återstående tid:" 50 | Title = "Omstart Krävs" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} kommer att fortsätta automatiskt i:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - App {0}' 59 | DialogMessage = 'Spara ditt arbete innan du fortsätter eftersom följande applikationer kommer att stängas automatiskt.' 60 | DialogMessageNoProcesses = "Välj Installera för att fortsätta med installationen eller välj `"Skjut upp`" för att installationen skall utföras vid ett senare tillfälle." 61 | ButtonDeferRemaining = 'kvarstår' 62 | ButtonLeftText = 'Skjut upp' 63 | ButtonRightText = 'Stäng appar och installera' 64 | ButtonRightTextNoProcesses = 'Installera' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/tr/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "tamamlandı." 4 | Error = "hata oluştu." 5 | FastRetry = "tamamlanamadı." 6 | RestartRequired = "tamamlandı. Yeniden başlatma gereklidir." 7 | Start = "başladı." 8 | } 9 | BlockExecution = @{ 10 | Message = "Yükleme işleminin tamamlanabilmesi için bu uygulamanın başlatılması geçici olarak engellenmiştir." 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "Uygulamaları kapat" 14 | ButtonContinue = "Devam et" 15 | ButtonContinueTooltip = "Aşağıdaki listedeki uygulamaları kapatıp `"Devam et`"i seçiniz." 16 | ButtonDefer = "Ertele" 17 | CountdownMessage = "NOT: Program(lar) otomatik olarak kapanacaktır:" 18 | Message = "Kurulumun devam edebilmesi için aşağıdaki programlar kapatılmalıdır.`n`nLütfen çalışmanızı kaydedin, programları kapatın ve ardından devam edin.`nAlternatif olarak, çalışmanızı kaydedin ve `"Programları Kapat `"a tıklayın." 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "Son tarih:" 22 | ExpiryMessage = "Erteleme süresi dolana kadar kurulumu ertelemeyi seçebilirsiniz:" 23 | RemainingDeferrals = "Kalan Ertelemeler:" 24 | WarningMessage = "Erteleme süresi sona erdiğinde, artık erteleme seçeneğiniz olmayacaktır." 25 | WelcomeMessage = "Aşağıdaki uygulama yüklenmek üzeredir:" 26 | } 27 | DeploymentType = @{ 28 | Install = "Kurulum işlemi" 29 | Repair = "Onarım" 30 | Uninstall = "Kaldırma işlemi" 31 | } 32 | DiskSpace = @{ 33 | Message = "Kurulumu tamamlamak için yeterli disk alanınız yok:`n{0}`n`nGerekli alan: {1}MB`nMevcut alan: {2}MB`n`nKuruluma devam etmek için lütfen yeterli disk alanı boşaltın." 34 | } 35 | Progress = @{ 36 | MessageInstall = "Kurulum devam ediyor. Lütfen bekleyiniz..." 37 | MessageInstallDetail = "Kurulum tamamlandığında bu pencere otomatik olarak kapanacaktır." 38 | MessageRepair = "Onarım devam ediyor. Lütfen bekleyiniz..." 39 | MessageRepairDetail = "Onarım tamamlandığında bu pencere otomatik olarak kapanacaktır." 40 | MessageUninstall = "Kaldırma işlemi devam ediyor. Lütfen bekleyiniz..." 41 | MessageUninstallDetail = "Kaldırma işlemi tamamlandığında bu pencere otomatik olarak kapanacaktır." 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "Simge durumuna küçült" 45 | ButtonRestartNow = "Bilgisayarı yeniden başlat" 46 | Message = "Yüklemenin tamamlanması için bilgisayarınızı yeniden başlatmanız gerekir." 47 | MessageRestart = "Geri sayımın sonunda bilgisayarınız otomatik olarak yeniden başlatılacaktır." 48 | MessageTime = "Lütfen çalışmanızı kaydedin ve belirtilen süre içinde yeniden başlatın." 49 | TimeRemaining = "Kalan süre:" 50 | Title = "Yeniden başlatma gerekmektedir" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0} otomatik olarak devam edecektir:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - Uygulama {0}' 59 | DialogMessage = 'Aşağıdaki uygulamalar otomatik olarak kapatılacağından devam etmeden önce lütfen çalışmanızı kaydedin.' 60 | DialogMessageNoProcesses = "Kuruluma devam etmek için lütfen Yükle'yi seçin. Kalan ertelemeleriniz varsa, kurulumu ertelemeyi de seçebilirsiniz." 61 | ButtonDeferRemaining = 'kalır' 62 | ButtonLeftText = 'Erteleme' 63 | ButtonRightText = 'Uygulamaları Kapat ve Yükle' 64 | ButtonRightTextNoProcesses = 'Kurulum' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/zh-hans/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "完成。" 4 | Error = "失败。" 5 | FastRetry = "未完成。" 6 | RestartRequired = "完成。必须重新启动。" 7 | Start = "已启动。" 8 | } 9 | BlockExecution = @{ 10 | Message = "为完成安装过程,暂时禁止启动这款应用程式。" 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "关闭程序" 14 | ButtonContinue = "继续" 15 | ButtonContinueTooltip = "在关闭上列应用程式后才选择`"继续`"。" 16 | ButtonDefer = "延迟" 17 | CountdownMessage = "注:下列程序将自动关闭:" 18 | Message = "为继续安装,必须关闭下列程序。`n`n请保存您的工作,关闭程序,然后继续。 或者保存您的工作,点击`"关闭程序`"。" 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "最后期限:" 22 | ExpiryMessage = "在延期失效前,可选择延迟安装:" 23 | RemainingDeferrals = "所剩延期:" 24 | WarningMessage = "延期失效后,再也无法延迟安装。" 25 | WelcomeMessage = "即将安装下列应用程式:" 26 | } 27 | DeploymentType = @{ 28 | Install = "安装" 29 | Repair = "修复" 30 | Uninstall = "卸载" 31 | } 32 | DiskSpace = @{ 33 | Message = "没有足够的磁盘空间来完成下列安装:`n{0}`n`n所需空间:{1}MB`n可用空间:{2}MB`n`n请释放足够的磁盘空间以继续安装。" 34 | } 35 | Progress = @{ 36 | MessageInstall = "安装中。请稍等。。。" 37 | MessageInstallDetail = "安装完成后,该窗口将自动关闭。。。" 38 | MessageRepair = "修复中。请稍等。。。" 39 | MessageRepairDetail = "修复完成后,该窗口将自动关闭。。。" 40 | MessageUninstall = "卸载中。请稍等。。。" 41 | MessageUninstallDetail = "卸载完成后,该窗口将自动关闭。。。" 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "最小化" 45 | ButtonRestartNow = "现在重启" 46 | Message = "为完成安装过程,需重启计算机。" 47 | MessageRestart = "倒计时结束后,计算机将自动重启。" 48 | MessageTime = "请保存您的工作,并在容许时间重启计算机。" 49 | TimeRemaining = "剩余时间:" 50 | Title = "需重启" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0}会自动继续:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - 应用程序 {0}' 59 | DialogMessage = '请保存您的工作后再继续,因为以下应用程序将自动关闭。' 60 | DialogMessageNoProcesses = '请选择 “安装 ”继续安装。如果您还有任何延迟,也可以选择延迟安装。' 61 | ButtonDeferRemaining = '残留' 62 | ButtonLeftText = '推迟' 63 | ButtonRightText = '关闭应用程序并安装' 64 | ButtonRightTextNoProcesses = '安装' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Strings/zh-hant/strings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | BalloonText = @{ 3 | Complete = "完成。" 4 | Error = "失敗。" 5 | FastRetry = "未完成。" 6 | RestartRequired = "完成。需重啟。" 7 | Start = "已啟動。" 8 | } 9 | BlockExecution = @{ 10 | Message = "為完成安裝過程,暫時禁止啟動本款應用程式。" 11 | } 12 | ClosePrompt = @{ 13 | ButtonClose = "關閉程序" 14 | ButtonContinue = "繼續" 15 | ButtonContinueTooltip = "關閉上列應用程式後才選擇`"繼續`"。" 16 | ButtonDefer = "延遲" 17 | CountdownMessage = "注:下列程序將自動關閉:" 18 | Message = "在繼續安裝前必須關閉下列程序。`n`n請保存您的工作,關閉程序,然後繼續。 或者保存您的工作,然後點擊`"關閉程序`"。" 19 | } 20 | DeferPrompt = @{ 21 | Deadline = "最後期限:" 22 | ExpiryMessage = "在延期失效前,可選擇延遲安裝:" 23 | RemainingDeferrals = "所剩延期:" 24 | WarningMessage = "延期失效後,再也無法延遲安裝。" 25 | WelcomeMessage = "即將安裝下列應用程式:" 26 | } 27 | DeploymentType = @{ 28 | Install = "安裝" 29 | Repair = "修復" 30 | Uninstall = "卸載" 31 | } 32 | DiskSpace = @{ 33 | Message = "沒有足夠的磁盤空間來完成下列安裝:`n{0}`n`n所需空間: {1}MB`n可用空間: {2}MB`n`n請釋放足夠的磁盤空間以繼續安裝。" 34 | } 35 | Progress = @{ 36 | MessageInstall = "安裝中。請稍等。。。" 37 | MessageInstallDetail = "安裝完成後,此視窗會自動關閉。。。" 38 | MessageRepair = "修復中。請稍等。。。" 39 | MessageRepairDetail = "修復完成後,此視窗會自動關閉。。。" 40 | MessageUninstall = "卸載中。請稍等。。。" 41 | MessageUninstallDetail = "卸載完成後,此視窗將自動關閉。。。" 42 | } 43 | RestartPrompt = @{ 44 | ButtonRestartLater = "最小化" 45 | ButtonRestartNow = "現在重啟" 46 | Message = "未完成安裝過程,需重啟計算機。" 47 | MessageRestart = "倒計時結束後,計算機將自動重啟。" 48 | MessageTime = "請保存您的工作,然後在容許時間重啟計算機。" 49 | TimeRemaining = "剩餘時間:" 50 | Title = "需重啟" 51 | } 52 | WelcomePrompt = @{ 53 | Classic = @{ 54 | CountdownMessage = "{0}會自動繼續:" 55 | CustomMessage = "" 56 | } 57 | Fluent = @{ 58 | Subtitle = 'PSAppDeployToolkit - 應用程式 {0}' 59 | DialogMessage = '由於下列應用程式將自動關閉,請先保存您的工作再繼續。' 60 | DialogMessageNoProcesses = '請選擇「安裝」繼續安裝。如果您有任何延遲安裝的剩餘時間,您也可以選擇延遲安裝。' 61 | ButtonDeferRemaining = '留下' 62 | ButtonLeftText = '延遲' 63 | ButtonRightText = '關閉應用程式並安裝' 64 | ButtonRightTextNoProcesses = '安裝' 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/SupportFiles/Add Supporting Files Here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/fea0085b091f39b36644412f6f733e78ea0171eb/ThirdParty/PSAppDeployToolkit/SupportFiles/Add Supporting Files Here.txt --------------------------------------------------------------------------------