<?xml version="1.0" encoding="UTF-8"?>
<OfficeApp	xmlns="http://schemas.microsoft.com/office/appforoffice/1.1"
			xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
			xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0"
			xmlns:ov="http://schemas.microsoft.com/office/taskpaneappversionoverrides"
			xsi:type="TaskPaneApp">
	<!-- Begin Basic Settings: Add-in metadata, used for all versions of Office unless override provided. -->
	<!-- IMPORTANT! Id must be unique for your add-in, if you reuse this manifest ensure that you change this id to a new GUID. -->
	<Id>8b0fe6b9-54ac-49a8-9227-2b53938d7b9b</Id>
	<!--Version. Updates from the store only get triggered if there is a version change. -->
	<Version>2.4.9.1</Version>
	<ProviderName>SlideLizard Software GmbH</ProviderName>
	<DefaultLocale>en-US</DefaultLocale>
	<!-- The display name of your add-in. Used on the store and various places of the Office UI such as the add-ins dialog. -->
	<DisplayName DefaultValue="SlideLizard CREATOR" />
	<Description DefaultValue="Search the company wide slide library, get automatic slide updates, and publish slide changes with the SlideLizard CREATOR without leaving PowerPoint!">
		<Override Locale="de-DE" Value="Durchsuchen Sie die unternehmensweite Folienbibliothek, erhalten Sie automatische Folienaktualisierungen und veröffentlichen Sie Folienänderungen mit dem SlideLizard CREATOR, alles ohne PowerPoint zu verlassen!"/>
	</Description>
	<!-- Icon for your add-in. Used on installation screens and the add-ins dialog. -->
	<IconUrl DefaultValue="https://creator.slidelizard.at/Assets/logo-icon-32x32.png" />
	<HighResolutionIconUrl DefaultValue="https://creator.slidelizard.at/Assets/logo-icon-64x64.png" />
	<SupportUrl DefaultValue="https://help.slidelizard.com" />
	<!-- Domains that will be allowed when navigating. For example, if you use ShowTaskpane and then have an href link, navigation will only be allowed if the domain is on this list. -->
	<AppDomains>
		<AppDomain>https://auth.slidelizard.at</AppDomain>
		<AppDomain>https://creator.slidelizard.at</AppDomain>
		<AppDomain>https://login.microsoftonline.com</AppDomain>
		<AppDomain>https://device.login.microsoftonline.com</AppDomain>
		<AppDomain>https://login.microsoftonline.com:443</AppDomain>
		<AppDomain>https://tokenprovider.termsofuse.identitygovernance.azure.com</AppDomain>
		<AppDomain>https://us.azureauth.duosecurity.com</AppDomain>
		<AppDomain>https://api-d87d89a0.duosecurity.com</AppDomain>
	</AppDomains>
	<Hosts>
		<Host Name="Presentation" />
	</Hosts>
	<DefaultSettings>
		<SourceLocation DefaultValue="https://autoopensimple.azurewebsites.net/Home.html" />
	</DefaultSettings>
	<Permissions>ReadWriteDocument</Permissions>
	<VersionOverrides xmlns="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="VersionOverridesV1_0">
		<Hosts>
			<Host xsi:type="Presentation">
				<!-- Form factor. Currently only DesktopFormFactor is supported. -->
				<DesktopFormFactor>
					<FunctionFile resid="SL.Functions.Url" />
					<ExtensionPoint xsi:type="ContextMenu">
						<OfficeMenu id="ContextMenuText">
							<Control xsi:type="Button" id="ContextMenuButton">
								<Label resid="SL.Btn.QuickLayouts.Label"/>
								<Supertip>
									<!-- ToolTip title. resid must point to a ShortString resource. -->
									<Title resid="SL.Btn.QuickLayouts.Label" />
									<!-- ToolTip description. resid must point to a LongString resource. -->
									<Description resid="SL.Btn.QuickLayouts.Tooltip" />
								</Supertip>
								<Icon>
									<bt:Image size="16" resid="SL.AlignCenter" />
									<bt:Image size="32" resid="SL.AlignCenter" />
									<bt:Image size="40" resid="SL.AlignCenter" />
									<bt:Image size="80" resid="SL.AlignCenter" />
								</Icon>
								<Action xsi:type="ExecuteFunction">
									<FunctionName>quickLayouts</FunctionName>
								</Action>
							</Control>
						</OfficeMenu>
					</ExtensionPoint>
					<!--"This code enables a customizable message to be displayed when the add-in is loaded successfully upon individual install."-->
					<!-- Function file is a HTML page that includes the JavaScript where functions for ExecuteAction will be called. 
					Think of the FunctionFile as the code behind ExecuteFunction. -->
					<!--<FunctionFile resid="SL.DesktopFunctionFile.Url" />-->
					<!-- PrimaryCommandSurface is the main Office Ribbon. -->
					<ExtensionPoint xsi:type="PrimaryCommandSurface">
						<!-- Use OfficeTab to extend an existing Tab. Use CustomTab to create a new tab. -->
						<CustomTab id="SL">
							<!-- Ensure you provide a unique id for the group. Recommendation for any IDs is to namespace using your company name. -->
							<Group id="SL.Group1">
								<!-- Label for your group. resid must point to a ShortString resource. -->
								<Label resid="SL.Group1Label" />
								<!-- Icons. Required sizes 16,32,80, optional 20, 24, 40, 48, 64. Strongly recommended to provide all sizes for great UX. -->
								<!-- Use PNG icons. All URLs on the resources section must use HTTPS. -->
								<Icon>
									<bt:Image size="16" resid="SL.OpenLib_16x16" />
									<bt:Image size="32" resid="SL.OpenLib_32x32" />
									<bt:Image size="40" resid="SL.OpenLib_40x40" />
									<bt:Image size="80" resid="SL.OpenLib_80x80" />
								</Icon>
								<!-- Control. It can be of type "Button" or "Menu". -->
								<Control xsi:type="Button" id="SL.Btn.CheckLibUpdates">
									<Label resid="SL.Btn.CheckLibUpdates.Label" />
									<Supertip>
										<Title resid="SL.Btn.CheckLibUpdates.Label" />
										<Description resid="SL.Btn.CheckLibUpdates.Tooltip" />
									</Supertip>
									<Icon>
										<bt:Image size="16" resid="SL.CheckLibUpdates_16x16" />
										<bt:Image size="32" resid="SL.CheckLibUpdates_32x32" />
										<bt:Image size="40" resid="SL.CheckLibUpdates_40x40" />
										<bt:Image size="80" resid="SL.CheckLibUpdates_80x80" />
									</Icon>
									<!--<Action xsi:type="ExecuteFunction">
										<FunctionName>checkLibraryUpdates</FunctionName>
									</Action>-->
									<Action xsi:type="ShowTaskpane">
										<TaskpaneId>Office.AutoShowTaskpaneWithDocument</TaskpaneId>
										<SourceLocation resid="SL.CheckLibUpdates.Url" />
									</Action>
								</Control>
								<!-- Control. It can be of type "Button" or "Menu". -->
								<Control xsi:type="Button" id="SL.Btn.OpenLib">
									<Label resid="SL.Btn.OpenLib.Label" />
									<Supertip>
										<!-- ToolTip title. resid must point to a ShortString resource. -->
										<Title resid="SL.Btn.OpenLib.Label" />
										<!-- ToolTip description. resid must point to a LongString resource. -->
										<Description resid="SL.Btn.OpenLib.Tooltip" />
									</Supertip>
									<Icon>
										<bt:Image size="16" resid="SL.OpenLib_16x16" />
										<bt:Image size="32" resid="SL.OpenLib_32x32" />
										<bt:Image size="40" resid="SL.OpenLib_40x40" />
										<bt:Image size="80" resid="SL.OpenLib_80x80" />
									</Icon>
									<!-- This is what happens when the command is triggered (E.g. click on the Ribbon). Supported actions are ExecuteFunction or ShowTaskpane. -->
									<Action xsi:type="ShowTaskpane">
										<!--This is the key for auto-open to work, you need to set the TaskpaneId of the pane you want
										to open to the well-known value of Office.AutoShowTaskpaneWithDocument
										-->
										<TaskpaneId>Office.AutoShowTaskpaneWithDocument</TaskpaneId>
										<!-- Provide a url resource id for the location that will be displayed on the task pane. -->
										<SourceLocation resid="SL.OpenLib.Url" />
									</Action>
								</Control>
								<Control xsi:type="Button" id="SL.Btn.SaveToLib">
									<Label resid="SL.Btn.SaveToLib.Label" />
									<Supertip>
										<!-- ToolTip title. resid must point to a ShortString resource. -->
										<Title resid="SL.Btn.SaveToLib.Label" />
										<!-- ToolTip description. resid must point to a LongString resource. -->
										<Description resid="SL.Btn.SaveToLib.Tooltip" />
									</Supertip>
									<Icon>
										<bt:Image size="16" resid="SL.SaveToLib_16x16" />
										<bt:Image size="32" resid="SL.SaveToLib_32x32" />
										<bt:Image size="40" resid="SL.SaveToLib_40x40" />
										<bt:Image size="80" resid="SL.SaveToLib_80x80" />
									</Icon>
									<Action xsi:type="ShowTaskpane">
										<!--This is the key for auto-open to work, you need to set the TaskpaneId of the pane you want
										to open to the well-known value of Office.AutoShowTaskpaneWithDocument
										-->
										<TaskpaneId>Office.AutoShowTaskpaneWithDocument</TaskpaneId>
										<!-- Provide a url resource id for the location that will be displayed on the task pane. -->
										<SourceLocation resid="SL.SaveToLib.Url" />
									</Action>
								</Control>
							</Group>
							<Group id="SL.Group2">
								<!-- Label for your group. resid must point to a ShortString resource. -->
								<Label resid="SL.Group2Label" />
								<!-- Icons. Required sizes 16,32,80, optional 20, 24, 40, 48, 64. Strongly recommended to provide all sizes for great UX. -->
								<!-- Use PNG icons. All URLs on the resources section must use HTTPS. -->
								<Icon>
									<bt:Image size="16" resid="SL.OpenLib_16x16" />
									<bt:Image size="32" resid="SL.OpenLib_32x32" />
									<bt:Image size="40" resid="SL.OpenLib_40x40" />
									<bt:Image size="80" resid="SL.OpenLib_80x80" />
								</Icon>
								<!--<Control xsi:type="Button" id="SL.Btn.LizAI">
									<Label resid="SL.Btn.LizAI.Label" />
									<Supertip>
										<Title resid="SL.Btn.LizAI.Label" />
										<Description resid="SL.Btn.LizAI.Tooltip" />
									</Supertip>
									<Icon>
										<bt:Image size="16" resid="SL.LizAI_16x16" />
										<bt:Image size="32" resid="SL.LizAI_32x32" />
										<bt:Image size="40" resid="SL.LizAI_40x40" />
										<bt:Image size="80" resid="SL.LizAI_80x80" />
									</Icon>
									<Action xsi:type="ShowTaskpane">
										<TaskpaneId>Office.AutoShowTaskpaneWithDocument</TaskpaneId>
										<SourceLocation resid="SL.LizAI.Url" />
									</Action>
								</Control>-->
								<Control xsi:type="Button" id="SL.Btn.OpenCIGuide">
									<Label resid="SL.Btn.OpenCIGuide.Label" />
									<Supertip>
										<Title resid="SL.Btn.OpenCIGuide.Label" />
										<Description resid="SL.Btn.OpenCIGuide.Tooltip" />
									</Supertip>
									<Icon>
										<bt:Image size="16" resid="SL.CICheck_16x16" />
										<bt:Image size="32" resid="SL.CICheck_32x32" />
										<bt:Image size="40" resid="SL.CICheck_40x40" />
										<bt:Image size="80" resid="SL.CICheck_80x80" />
									</Icon>
									<!--<Action xsi:type="ExecuteFunction">
										<FunctionName>checkLibraryUpdates</FunctionName>
									</Action>-->
									<Action xsi:type="ShowTaskpane">
										<TaskpaneId>Office.AutoShowTaskpaneWithDocument</TaskpaneId>
										<SourceLocation resid="SL.OpenCIGuide.Url" />
									</Action>
								</Control>
								<Control xsi:type="Button" id="SL.Btn.Agenda">
									<Label resid="SL.Btn.Agenda.Label" />
									<Supertip>
										<Title resid="SL.Btn.Agenda.Label" />
										<Description resid="SL.Btn.Agenda.Tooltip" />
									</Supertip>
									<Icon>
										<bt:Image size="16" resid="SL.Agenda_16x16" />
										<bt:Image size="32" resid="SL.Agenda_32x32" />
										<bt:Image size="40" resid="SL.Agenda_40x40" />
										<bt:Image size="80" resid="SL.Agenda_80x80" />
									</Icon>
									<!--<Action xsi:type="ExecuteFunction">
										<FunctionName>checkLibraryUpdates</FunctionName>
									</Action>-->
									<Action xsi:type="ShowTaskpane">
										<TaskpaneId>Office.AutoShowTaskpaneWithDocument</TaskpaneId>
										<SourceLocation resid="SL.Agenda.Url" />
									</Action>
								</Control>
								<!-- Control. It can be of type "Button" or "Menu". -->
							</Group>
							<Group id="SL.Group5">
								<Label resid="SL.Group5" />
								<!-- Icons. Required sizes 16,32,80, optional 20, 24, 40, 48, 64. Strongly recommended to provide all sizes for great UX. -->
								<!-- Use PNG icons. All URLs on the resources section must use HTTPS. -->
								<Icon>
									<bt:Image size="16" resid="SL.AlignCenter" />
									<bt:Image size="32" resid="SL.AlignCenter" />
									<bt:Image size="40" resid="SL.AlignCenter" />
									<bt:Image size="80" resid="SL.AlignCenter" />
								</Icon>
								<Control xsi:type="Button" id="SL.Btn.QuickLayouts">
									<Label resid="SL.Btn.QuickLayouts.Label" />
									<Supertip>
										<Title resid="SL.Btn.QuickLayouts.Label" />
										<Description resid="SL.Btn.QuickLayouts.Tooltip" />
									</Supertip>
									<Icon>
										<bt:Image size="16" resid="SL.Shortcut" />
										<bt:Image size="32" resid="SL.Shortcut" />
										<bt:Image size="40" resid="SL.Shortcut" />
										<bt:Image size="80" resid="SL.Shortcut" />
									</Icon>
									<Action xsi:type="ShowTaskpane">
										<TaskpaneId>Office.AutoShowTaskpaneWithDocument</TaskpaneId>
										<SourceLocation resid="SL.QuickLayouts.Url" />
									</Action>
								</Control>
								<Control xsi:type="Button" id="SL.Btn.Map">
									<Label resid="SL.Btn.Map.Label" />
									<Supertip>
										<Title resid="SL.Btn.Map.Label" />
										<Description resid="SL.Btn.Map.Tooltip" />
									</Supertip>
									<Icon>
										<bt:Image size="16" resid="SL.Map_16x16" />
										<bt:Image size="32" resid="SL.Map_32x32" />
										<bt:Image size="40" resid="SL.Map_40x40" />
										<bt:Image size="80" resid="SL.Map_80x80" />
									</Icon>
									<Action xsi:type="ShowTaskpane">
										<TaskpaneId>Office.AutoShowTaskpaneWithDocument</TaskpaneId>
										<SourceLocation resid="SL.Map.Url" />
									</Action>
								</Control>
								<Control xsi:type="Button" id="SL.Btn.GanttEditor">
									<Label resid="SL.Btn.GanttEditor.Label" />
									<Supertip>
										<Title resid="SL.Btn.GanttEditor.Label" />
										<Description resid="SL.Btn.GanttEditor.Tooltip" />
									</Supertip>
									<Icon>
										<bt:Image size="16" resid="SL.GanttDesigner" />
										<bt:Image size="32" resid="SL.GanttDesigner" />
										<bt:Image size="40" resid="SL.GanttDesigner" />
										<bt:Image size="80" resid="SL.GanttDesigner" />
									</Icon>
									<Action xsi:type="ExecuteFunction">
										<FunctionName>openGanttChart</FunctionName>
									</Action>
								</Control>
							</Group>
							<Group id="SL.Group3">
								<!-- Label for your group. resid must point to a ShortString resource. -->
								<Label resid="SL.Group3Label" />
								<!-- Icons. Required sizes 16,32,80, optional 20, 24, 40, 48, 64. Strongly recommended to provide all sizes for great UX. -->
								<!-- Use PNG icons. All URLs on the resources section must use HTTPS. -->
								<Icon>
									<bt:Image size="16" resid="SL.GetHelp_16x16" />
									<bt:Image size="32" resid="SL.GetHelp_32x32" />
									<bt:Image size="40" resid="SL.GetHelp_40x40" />
									<bt:Image size="80" resid="SL.GetHelp_80x80" />
								</Icon>
								<Control xsi:type="Menu" id="menu_id">
									<Label resid="SL.Help.Label" />
									<Supertip>
										<Title resid="SL.Help.Label" />
										<Description resid="SL.Help.Tooltip" />
									</Supertip>
									<Icon>
										<bt:Image size="16" resid="SL.GetHelp_16x16" />
										<bt:Image size="32" resid="SL.GetHelp_32x32" />
										<bt:Image size="40" resid="SL.GetHelp_40x40" />
										<bt:Image size="80" resid="SL.GetHelp_80x80" />
									</Icon>
									<Items>
										<Item id="itemId">
											<Label resid="SL.Item1.Label"/>
											<Supertip>
												<Title resid="SL.Item1.Label" />
												<Description resid="SL.Item1.Tooltip" />
											</Supertip>
											<Icon>
												<bt:Image size="16" resid="SL.HelpPortal_16x16" />
												<bt:Image size="32" resid="SL.HelpPortal_32x32" />
												<bt:Image size="40" resid="SL.HelpPortal_40x40" />
												<bt:Image size="80" resid="SL.HelpPortal_80x80" />
											</Icon>
											<Action xsi:type="ExecuteFunction">
												<FunctionName>openHelpPortal</FunctionName>
											</Action>
										</Item>
										<Item id="item2">
											<Label resid="SL.Item2.Label"/>
											<Supertip>
												<Title resid="SL.Item2.Label" />
												<Description resid="SL.Item2.Tooltip" />
											</Supertip>
											<Icon>
												<bt:Image size="16" resid="SL.Usermanagement_16x16" />
												<bt:Image size="32" resid="SL.Usermanagement_32x32" />
												<bt:Image size="40" resid="SL.Usermanagement_40x40" />
												<bt:Image size="80" resid="SL.Usermanagement_80x80" />
											</Icon>
											<Action xsi:type="ExecuteFunction">
												<FunctionName>openAdminPortal</FunctionName>
											</Action>
										</Item>
										<Item id="item3">
											<Label resid="SL.Item3.Label"/>

											<Supertip>
												<Title resid="SL.Item3.Label" />
												<Description resid="SL.Item3.Tooltip" />
											</Supertip>
											<Icon>
												<bt:Image size="16" resid="SL.WebLibrary_16x16" />
												<bt:Image size="32" resid="SL.WebLibrary_32x32" />
												<bt:Image size="40" resid="SL.WebLibrary_40x40" />
												<bt:Image size="80" resid="SL.WebLibrary_80x80" />
											</Icon>
											<Action xsi:type="ExecuteFunction">
												<FunctionName>openWebLibrary</FunctionName>
											</Action>
										</Item>
										<Item id="item4">
											<Label resid="SL.Item4.Label"/>
											<Supertip>
												<Title resid="SL.Item4.Label" />
												<Description resid="SL.Item4.Tooltip" />
											</Supertip>
											<Icon>
												<bt:Image size="16" resid="SL.Status_16x16" />
												<bt:Image size="32" resid="SL.Status_32x32" />
												<bt:Image size="40" resid="SL.Status_40x40" />
												<bt:Image size="80" resid="SL.Status_80x80" />
											</Icon>
											<Action xsi:type="ExecuteFunction">
												<FunctionName>openStatus</FunctionName>
											</Action>
										</Item>
									</Items>
								</Control>
							</Group>
							<Label resid="SL.Customtab.Label" />
						</CustomTab>
					</ExtensionPoint>
				</DesktopFormFactor>
			</Host>
		</Hosts>
		<Resources>
			<bt:Images>
				<bt:Image id="SL.OpenLib_16x16" DefaultValue="https://creator.slidelizard.at/Assets/open-library-16x16.png" />
				<bt:Image id="SL.OpenLib_32x32" DefaultValue="https://creator.slidelizard.at/Assets/open-library-32x32.png" />
				<bt:Image id="SL.OpenLib_40x40" DefaultValue="https://creator.slidelizard.at/Assets/open-library-40x40.png" />
				<bt:Image id="SL.OpenLib_80x80" DefaultValue="https://creator.slidelizard.at/Assets/open-library-80x80.png" />
				<bt:Image id="SL.SaveToLib_16x16" DefaultValue="https://creator.slidelizard.at/Assets/save-in-library-16x16.png" />
				<bt:Image id="SL.SaveToLib_32x32" DefaultValue="https://creator.slidelizard.at/Assets/save-in-library-32x32.png" />
				<bt:Image id="SL.SaveToLib_40x40" DefaultValue="https://creator.slidelizard.at/Assets/save-in-library-40x40.png" />
				<bt:Image id="SL.SaveToLib_80x80" DefaultValue="https://creator.slidelizard.at/Assets/save-in-library-80x80.png" />
				<bt:Image id="SL.CheckLibUpdates_16x16" DefaultValue="https://creator.slidelizard.at/Assets/update-from-library-16x16.png" />
				<bt:Image id="SL.CheckLibUpdates_32x32" DefaultValue="https://creator.slidelizard.at/Assets/update-from-library-32x32.png" />
				<bt:Image id="SL.CheckLibUpdates_40x40" DefaultValue="https://creator.slidelizard.at/Assets/update-from-library-40x40.png" />
				<bt:Image id="SL.CheckLibUpdates_80x80" DefaultValue="https://creator.slidelizard.at/Assets/update-from-library-80x80.png" />
				<bt:Image id="SL.CICheck_16x16" DefaultValue="https://creator.slidelizard.at/Assets/CI-check-16x16.png" />
				<bt:Image id="SL.CICheck_32x32" DefaultValue="https://creator.slidelizard.at/Assets/CI-check-32x32.png" />
				<bt:Image id="SL.CICheck_40x40" DefaultValue="https://creator.slidelizard.at/Assets/CI-check-40x40.png" />
				<bt:Image id="SL.CICheck_80x80" DefaultValue="https://creator.slidelizard.at/Assets/CI-check-80x80.png" />

				<bt:Image id="SL.GetHelp_16x16" DefaultValue="https://creator.slidelizard.at/Assets/Help/get-help-16x16.png" />
				<bt:Image id="SL.GetHelp_32x32" DefaultValue="https://creator.slidelizard.at/Assets/Help/get-help-32x32.png" />
				<bt:Image id="SL.GetHelp_40x40" DefaultValue="https://creator.slidelizard.at/Assets/Help/get-help-40x40.png" />
				<bt:Image id="SL.GetHelp_80x80" DefaultValue="https://creator.slidelizard.at/Assets/Help/get-help-80x80.png" />

				<bt:Image id="SL.Status_16x16" DefaultValue="https://creator.slidelizard.at/Assets/Help/status-16x16.png" />
				<bt:Image id="SL.Status_32x32" DefaultValue="https://creator.slidelizard.at/Assets/Help/status-32x32.png" />
				<bt:Image id="SL.Status_40x40" DefaultValue="https://creator.slidelizard.at/Assets/Help/status-40x40.png" />
				<bt:Image id="SL.Status_80x80" DefaultValue="https://creator.slidelizard.at/Assets/Help/status-80x80.png" />
				<bt:Image id="SL.AlignCenter" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/align-center.png" />
				<bt:Image id="SL.AlignLeft" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/align-left.png" />
				<bt:Image id="SL.AlignRight" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/align-right.png" />
				<bt:Image id="SL.AlignTop" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/align-top.png" />
				<bt:Image id="SL.AlignVertical" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/align-vertical.png" />
				<bt:Image id="SL.AlignBottom" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/align-bottom.png" />
				<bt:Image id="SL.DockLeft" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/dock-left.png" />
				<bt:Image id="SL.DockRight" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/dock-right.png" />
				<bt:Image id="SL.DockTop" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/dock-top.png" />

				<bt:Image id="SL.WebLibrary_16x16" DefaultValue="https://creator.slidelizard.at/Assets/Help/web-library-16x16.png" />
				<bt:Image id="SL.WebLibrary_32x32" DefaultValue="https://creator.slidelizard.at/Assets/Help/web-library-32x32.png" />
				<bt:Image id="SL.WebLibrary_40x40" DefaultValue="https://creator.slidelizard.at/Assets/Help/web-library-40x40.png" />
				<bt:Image id="SL.WebLibrary_80x80" DefaultValue="https://creator.slidelizard.at/Assets/Help/web-library-80x80.png" />

				<bt:Image id="SL.HelpPortal_16x16" DefaultValue="https://creator.slidelizard.at/Assets/Help/help-portal-16x16.png" />
				<bt:Image id="SL.HelpPortal_32x32" DefaultValue="https://creator.slidelizard.at/Assets/Help/help-portal-32x32.png" />
				<bt:Image id="SL.HelpPortal_40x40" DefaultValue="https://creator.slidelizard.at/Assets/Help/help-portal-40x40.png" />
				<bt:Image id="SL.HelpPortal_80x80" DefaultValue="https://creator.slidelizard.at/Assets/Help/help-portal-80x80.png" />

				<bt:Image id="SL.Usermanagement_16x16" DefaultValue="https://creator.slidelizard.at/Assets/Help/usermanagement-16x16.png" />
				<bt:Image id="SL.Usermanagement_32x32" DefaultValue="https://creator.slidelizard.at/Assets/Help/usermanagement-32x32.png" />
				<bt:Image id="SL.Usermanagement_40x40" DefaultValue="https://creator.slidelizard.at/Assets/Help/usermanagement-40x40.png" />
				<bt:Image id="SL.Usermanagement_80x80" DefaultValue="https://creator.slidelizard.at/Assets/Help/usermanagement-80x80.png" />

				<bt:Image id="SL.Agenda_16x16" DefaultValue="https://creator.slidelizard.at/Assets/agenda.png" />
				<bt:Image id="SL.Agenda_32x32" DefaultValue="https://creator.slidelizard.at/Assets/agenda.png" />
				<bt:Image id="SL.Agenda_40x40" DefaultValue="https://creator.slidelizard.at/Assets/agenda.png" />
				<bt:Image id="SL.Agenda_80x80" DefaultValue="https://creator.slidelizard.at/Assets/agenda.png" />

				<bt:Image id="SL.LizAI_16x16" DefaultValue="https://creator.slidelizard.at/Assets/lizai-icon-16x16.png" />
				<bt:Image id="SL.LizAI_32x32" DefaultValue="https://creator.slidelizard.at/Assets/lizai-icon-32x32.png" />
				<bt:Image id="SL.LizAI_40x40" DefaultValue="https://creator.slidelizard.at/Assets/lizai-icon-40x40.png" />
				<bt:Image id="SL.LizAI_80x80" DefaultValue="https://creator.slidelizard.at/Assets/lizai-icon-80x80.png" />
				<bt:Image id="SL.Map_16x16" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/map.png" />
				<bt:Image id="SL.Map_32x32" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/map.png" />
				<bt:Image id="SL.Map_40x40" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/map.png" />
				<bt:Image id="SL.Map_80x80" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/map.png" />
				<bt:Image id="SL.Shortcut" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/shortcut.png" />
				<bt:Image id="SL.GanttDesigner" DefaultValue="https://creator.slidelizard.at/Assets/Icons/Layout/ganttdesigner.png" />
			</bt:Images>
			<bt:Urls>
				<bt:Url id="SL.Taskpane.Url" DefaultValue="https://creator.slidelizard.at" />
				<bt:Url id="SL.OpenLib.Url" DefaultValue="https://creator.slidelizard.at/library?openedByRibbon=true" />
				<bt:Url id="SL.OpenLib.Load" DefaultValue="https://creator.slidelizard.at" />
				<bt:Url id="SL.SaveToLib.Url" DefaultValue="https://creator.slidelizard.at/exportslides" />
				<bt:Url id="SL.CheckLibUpdates.Url" DefaultValue="https://creator.slidelizard.at/updateslides" />
				<bt:Url id="SL.OpenCIGuide.Url" DefaultValue="https://creator.slidelizard.at/library/ciguide?openedByRibbon=true" />
				<bt:Url id="SL.LizAI.Url" DefaultValue="https://creator.slidelizard.at/lizai" />
				<bt:Url id="SL.Agenda.Url" DefaultValue="https://creator.slidelizard.at/library/agenda" />
				<bt:Url id="SL.Functions.Url" DefaultValue="https://creator.slidelizard.at/Functions.html" />
				<bt:Url id="SL.CreatorHelp.Url" DefaultValue="https://help.slidelizard.com/c/creator/" />
				<bt:Url id="SL.PublicStatus.Url" DefaultValue="https://status.slidelizard.at/status/public-all" />
				<bt:Url id="SL.Admin.Url" DefaultValue="https://admin.slidelizard.at" />
				<bt:Url id="SL.QuickLayouts.Url" DefaultValue="https://creator.slidelizard.at/quicklayoutdialog.html" />
				<bt:Url id="SL.QuickLayoutsDialog.Url" DefaultValue="https://creator.slidelizard.at/quicklayoutdialog.html" />
				<bt:Url id="SL.Map.Url" DefaultValue="https://creator.slidelizard.at/map.html" />
				<bt:Url id="SL.Backend.Url" DefaultValue="https://sl-creator-server.azurewebsites.net/" />
			</bt:Urls>
			<!-- ShortStrings max characters==125. -->
			<bt:ShortStrings>
				<bt:String id="SL.Group5" DefaultValue="Quick Layouts">
					<bt:Override Locale="en-US" Value="Quick Layouts"/>
					<bt:Override Locale="de-DE" Value="Schnelllayouts"/>
				</bt:String>
				<bt:String id="SL.Btn.OpenLib.Label" DefaultValue="Show Library">
					<bt:Override Locale="en-US" Value="Show Library"/>
					<bt:Override Locale="de-DE" Value="Bibliothek anzeigen"/>
				</bt:String>
				<bt:String id="SL.Btn.LayoutCenter.Label" DefaultValue="Align to center">
					<bt:Override Locale="en-US" Value="Align to center"/>
					<bt:Override Locale="de-DE" Value="Zentrieren"/>
				</bt:String>
				<bt:String id="SL.Btn.SaveToLib.Label" DefaultValue="Save slides to Library" >
					<bt:Override Locale="en-US" Value="Save slides to Library"/>
					<bt:Override Locale="de-DE" Value="Folien speichern"/>
				</bt:String>
				<bt:String id="SL.Btn.CheckLibUpdates.Label" DefaultValue="Check for updates" >
					<bt:Override Locale="en-US" Value="Check for updates"/>
					<bt:Override Locale="de-DE" Value="Folien aktualisieren"/>
				</bt:String>
				<bt:String id="SL.Btn.OpenCIGuide.Label" DefaultValue="Show CI Guide" >
					<bt:Override Locale="en-US" Value="Show CI Guide"/>
					<bt:Override Locale="de-DE" Value="CI Guide anzeigen"/>
				</bt:String>
				<bt:String id="SL.Btn.LizAI.Label" DefaultValue="Liz AI" >
					<bt:Override Locale="en-US" Value="Liz AI"/>
					<bt:Override Locale="de-DE" Value="Liz KI"/>
				</bt:String>
				<bt:String id="SL.Btn.Agenda.Label" DefaultValue="Agenda" >
					<bt:Override Locale="en-US" Value="Agenda"/>
					<bt:Override Locale="de-DE" Value="Agenda"/>
				</bt:String>
				<bt:String id="SL.Group1Label" DefaultValue="Slide Library" >
					<bt:Override Locale="en-US" Value="Slide Library"/>
					<bt:Override Locale="de-DE" Value="Folienbibliothek"/>
				</bt:String>
				<bt:String id="SL.Group2Label" DefaultValue="Intelligent functions" >
					<bt:Override Locale="en-US" Value="Intelligent functions"/>
					<bt:Override Locale="de-DE" Value="Intelligente Funktionen"/>
				</bt:String>
				<bt:String id="SL.Customtab.Label" DefaultValue="SlideLizard CREATOR" >
					<bt:Override Locale="en-US" Value="SlideLizard CREATOR"/>
					<bt:Override Locale="de-DE" Value="SlideLizard CREATOR"/>
				</bt:String>
				<bt:String id="SL.Item1.Label" DefaultValue="Help Portal" >
					<bt:Override Locale="en-US" Value="Help Portal"/>
					<bt:Override Locale="de-DE" Value="Help-Portal"/>
				</bt:String>
				<bt:String id="SL.Item2.Label" DefaultValue="Admin Portal" >
					<bt:Override Locale="en-US" Value="Usermanagement"/>
					<bt:Override Locale="de-DE" Value="Benutzerverwaltung"/>
				</bt:String>
				<bt:String id="SL.Item3.Label" DefaultValue="Web Library" >
					<bt:Override Locale="en-US" Value="Web Library"/>
					<bt:Override Locale="de-DE" Value="Online Bibliothek"/>
				</bt:String>
				<bt:String id="SL.Item4.Label" DefaultValue="Status" >
					<bt:Override Locale="en-US" Value="Status"/>
					<bt:Override Locale="de-DE" Value="Status"/>
				</bt:String>
				<bt:String id="SL.Group3Label" DefaultValue="Help" >
					<bt:Override Locale="en-US" Value="Help"/>
					<bt:Override Locale="de-DE" Value="Hilfe"/>
				</bt:String>
				<bt:String id="SL.Help.Label" DefaultValue="Get Help" >
					<bt:Override Locale="en-US" Value="Get Help"/>
					<bt:Override Locale="de-DE" Value="Hilfe bekommen"/>
				</bt:String>
				<bt:String id="SL.Group4Label" DefaultValue="Layout">
					<bt:Override Locale="en-US" Value="Layout"/>
					<bt:Override Locale="de-DE" Value="Layout"/>
				</bt:String>
				<bt:String id="SL.Btn.AlignLeft.Label" DefaultValue="Align left">
					<bt:Override Locale="en-US" Value="Align left"/>
					<bt:Override Locale="de-DE" Value="Linksbündig"/>
				</bt:String>
				<bt:String id="SL.Btn.QuickLayouts.Label" DefaultValue="Quick Layouts">
					<bt:Override Locale="en-US" Value="Quick Layouts"/>
					<bt:Override Locale="de-DE" Value="Schnelllayouts"/>
				</bt:String>
				<bt:String id="SL.Btn.QuickLayoutsDialog.Label" DefaultValue="Quick Layouts Shortcuts">
					<bt:Override Locale="en-US" Value="Quick Layouts Shortcuts"/>
					<bt:Override Locale="de-DE" Value="Schnelllayouts Shortcuts"/>
				</bt:String>
				<bt:String id="SL.Btn.Map.Label" DefaultValue="Interactive Map">
					<bt:Override Locale="de-DE" Value="Interaktive Karte"/>
				</bt:String>
				<bt:String id="SL.Btn.GanttEditor.Label" DefaultValue="Gantt Designer">
					<bt:Override Locale="de-DE" Value="Gantt Designer"/>
				</bt:String>
				<bt:String id="SL.Btn.AlignRight.Label" DefaultValue="Align right">
					<bt:Override Locale="en-US" Value="Align right"/>
					<bt:Override Locale="de-DE" Value="Rechtsbündig"/>
				</bt:String>
				<bt:String id="SL.Btn.AlignTop.Label" DefaultValue="Align top">
					<bt:Override Locale="en-US" Value="Align top"/>
					<bt:Override Locale="de-DE" Value="Oben ausrichten"/>
				</bt:String>
				<bt:String id="SL.Btn.AlignVertical.Label" DefaultValue="Align vertically">
					<bt:Override Locale="en-US" Value="Align vertically"/>
					<bt:Override Locale="de-DE" Value="Vertikal zentrieren"/>
				</bt:String>
				<bt:String id="SL.Btn.AlignBottom.Label" DefaultValue="Align bottom">
					<bt:Override Locale="en-US" Value="Align bottom"/>
					<bt:Override Locale="de-DE" Value="Unten ausrichten"/>
				</bt:String>
				<bt:String id="SL.Btn.DockLeft.Label" DefaultValue="Dock left">
					<bt:Override Locale="en-US" Value="Dock left"/>
					<bt:Override Locale="de-DE" Value="Links andocken"/>
				</bt:String>
				<bt:String id="SL.Btn.DockRight.Label" DefaultValue="Dock right">
					<bt:Override Locale="en-US" Value="Dock right"/>
					<bt:Override Locale="de-DE" Value="Rechts andocken"/>
				</bt:String>
				<bt:String id="SL.Btn.DockTop.Label" DefaultValue="Dock top">
					<bt:Override Locale="en-US" Value="Dock top"/>
					<bt:Override Locale="de-DE" Value="Oben andocken"/>
				</bt:String>
			</bt:ShortStrings>
			<!-- LongStrings max characters==250. -->
			<bt:LongStrings>
				<bt:String id="SL.Btn.OpenLib.Tooltip" DefaultValue="Open your slide library to insert slides." >
					<bt:Override Locale="en-US" Value="Open your slide library to insert slides."/>
					<bt:Override Locale="de-DE" Value="Öffnen Sie Ihre Folienbibliothek, um Folien einzufügen."/>
				</bt:String>
				<bt:String id="SL.Btn.SaveToLib.Tooltip" DefaultValue="Upload all selected slides to your slide library. If a slide already exists in the library, a new version will be created." >
					<bt:Override Locale="en-US" Value="Upload all selected slides to your slide library. If a slide already exists in the library, a new version will be created."/>
					<bt:Override Locale="de-DE" Value="Laden Sie alle ausgewählten Folien in Ihre Folienbibliothek hoch. Wenn bereits eine Folie in der Bibliothek vorhanden ist, wird eine neue Version erstellt."/>
				</bt:String>
				<bt:String id="SL.Btn.CheckLibUpdates.Tooltip" DefaultValue="Check for updates" >
					<bt:Override Locale="en-US" Value="Check for updates"/>
					<bt:Override Locale="de-DE" Value="Nach Updates suchen"/>
				</bt:String>
				<bt:String id="SL.Btn.OpenCIGuide.Tooltip" DefaultValue="Show CI Guide" >
					<bt:Override Locale="en-US" Value="Automatically check slides for compliance with your company's corporate identity policies and fix problems with a few clicks."/>
					<bt:Override Locale="de-DE" Value="Prüfen Sie Folien automatisch auf Einhaltung der Corporate-Identity-Richtlinien Ihres Unternehmens und beheben Sie Probleme mit wenigen Klicks."/>
				</bt:String>
				<bt:String id="SL.Btn.LizAI.Tooltip" DefaultValue="Liz AI" >
					<bt:Override Locale="en-US" Value="Liz AI"/>
					<bt:Override Locale="de-DE" Value="Liz KI"/>
				</bt:String>
				<bt:String id="SL.Btn.Agenda.Tooltip" DefaultValue="Add agenda" >
					<bt:Override Locale="en-US" Value="Inserts agenda from template with customizable agenda points."/>
					<bt:Override Locale="de-DE" Value="Fügt eine Agenda aus einer Vorlage mit anpassbaren Agendapunkten ein."/>
				</bt:String>
				<bt:String id="SL.Item1.Tooltip" DefaultValue="Link to help portal." >
					<bt:Override Locale="en-US" Value="Link to help portal."/>
					<bt:Override Locale="de-DE" Value="Verlinkung zum Help Portal."/>
				</bt:String>
				<bt:String id="SL.Item2.Tooltip" DefaultValue="Link to admin panel." >
					<bt:Override Locale="en-US" Value="Link to admin panel."/>
					<bt:Override Locale="de-DE" Value="Verlinkung zum Adminpanel."/>
				</bt:String>
				<bt:String id="SL.Item3.Tooltip" DefaultValue="Link to library in web." >
					<bt:Override Locale="en-US" Value="Link to library in web."/>
					<bt:Override Locale="de-DE" Value="Verlinkung zur Onlinebibliothek."/>
				</bt:String>
				<bt:String id="SL.Item4.Tooltip" DefaultValue="Link to status." >
					<bt:Override Locale="en-US" Value="Link to status."/>
					<bt:Override Locale="de-DE" Value="Verlinkung zur Statusseite."/>
				</bt:String>
				<bt:String id="SL.Help.Tooltip" DefaultValue="Show help options." >
					<bt:Override Locale="en-US" Value="Show help options."/>
					<bt:Override Locale="de-DE" Value="Hilfsoptionen anzeigen"/>
				</bt:String>
				<bt:String id="SL.Btn.LayoutCenter.Tooltip"
           DefaultValue="Centers the selected element to the center of the master shape.">
					<bt:Override Locale="en-US"
								 Value="Centers the selected element to the center of the master shape."/>
					<bt:Override Locale="de-DE"
								 Value="Zentriert das ausgewählte Element an der Mitte der Masterform."/>
				</bt:String>
				<bt:String id="SL.Btn.AlignLeft.Tooltip"
						   DefaultValue="Aligns the selected element to the left edge of the master shape.">
					<bt:Override Locale="en-US"
								 Value="Aligns the selected element to the left edge of the master shape."/>
					<bt:Override Locale="de-DE"
								 Value="Richtet das ausgewählte Element an der linken Kante der Masterform aus."/>
				</bt:String>
				<bt:String id="SL.Btn.QuickLayouts.Tooltip"
						DefaultValue="Opens the Quick Layouts task pane to apply predefined layouts to the selected element.">
					<bt:Override Locale="en-US"
								 Value="Opens the Quick Layouts task pane to apply predefined layouts to the selected element."/>
					<bt:Override Locale="de-DE"
								 Value="Öffnet das Quick Layouts-Taskfenster, um vordefinierte Layouts auf das ausgewählte Element anzuwenden."/>
				</bt:String>
				<bt:String id="SL.Btn.Map.Tooltip" DefaultValue="Select and insert countries on a world map." />
				<bt:String id="SL.Btn.GanttEditor.Tooltip" DefaultValue="Insert or edit a Gantt chart on the current slide.">
					<bt:Override Locale="de-DE" Value="Ein Gantt-Diagramm auf der aktuellen Folie einfügen oder bearbeiten."/>
				</bt:String>
				<bt:String id="SL.Btn.AlignRight.Tooltip"
						   DefaultValue="Aligns the selected element to the right edge of the master shape.">
					<bt:Override Locale="en-US"
								 Value="Aligns the selected element to the right edge of the master shape."/>
					<bt:Override Locale="de-DE"
								 Value="Richtet das ausgewählte Element an der rechten Kante der Masterform aus."/>
				</bt:String>
				<bt:String id="SL.Btn.AlignTop.Tooltip"
           DefaultValue="Aligns the selected element to the top edge of the master shape.">
					<bt:Override Locale="en-US"
								 Value="Aligns the selected element to the top edge of the master shape."/>
					<bt:Override Locale="de-DE"
								 Value="Richtet das ausgewählte Element an der oberen Kante der Masterform aus."/>
				</bt:String>
				<bt:String id="SL.Btn.AlignVertical.Tooltip"
						   DefaultValue="Centers the selected element vertically within the master shape.">
					<bt:Override Locale="en-US"
								 Value="Centers the selected element vertically within the master shape."/>
					<bt:Override Locale="de-DE"
								 Value="Zentriert das ausgewählte Element vertikal innerhalb der Masterform."/>
				</bt:String>
				<bt:String id="SL.Btn.AlignBottom.Tooltip"
						   DefaultValue="Aligns the selected element to the bottom edge of the master shape.">
					<bt:Override Locale="en-US"
								 Value="Aligns the selected element to the bottom edge of the master shape."/>
					<bt:Override Locale="de-DE"
								 Value="Richtet das ausgewählte Element an der unteren Kante der Masterform aus."/>
				</bt:String>
				<bt:String id="SL.Btn.DockLeft.Tooltip"
           DefaultValue="Docks the selected element to the left edge of the master shape.">
					<bt:Override Locale="en-US"
								 Value="Docks the selected element to the left edge of the master shape."/>
					<bt:Override Locale="de-DE"
								 Value="Dockt das ausgewählte Element an die linke Kante der Masterform."/>
				</bt:String>
				<bt:String id="SL.Btn.DockRight.Tooltip"
						   DefaultValue="Docks the selected element to the right edge of the master shape.">
					<bt:Override Locale="en-US"
								 Value="Docks the selected element to the right edge of the master shape."/>
					<bt:Override Locale="de-DE"
								 Value="Dockt das ausgewählte Element an die rechte Kante der Masterform."/>
				</bt:String>
				<bt:String id="SL.Btn.DockTop.Tooltip"
						   DefaultValue="Docks the selected element to the top edge of the master shape.">
					<bt:Override Locale="en-US"
								 Value="Docks the selected element to the top edge of the master shape."/>
					<bt:Override Locale="de-DE"
								 Value="Dockt das ausgewählte Element an die obere Kante der Masterform."/>
				</bt:String>
			</bt:LongStrings>
		</Resources>
	</VersionOverrides>
</OfficeApp>