mirror of
https://github.com/microsoft/terminal.git
synced 2026-07-09 01:56:07 +00:00
reduce loc burden + fix navigator handling
This commit is contained in:
@@ -72,8 +72,7 @@
|
||||
<TextBlock x:Uid="Profile_TextHeader"
|
||||
Margin="0,0,0,4"
|
||||
Style="{StaticResource TextBlockSubHeaderStyle}" />
|
||||
<StackPanel Spacing="2"
|
||||
Style="{StaticResource PivotStackStyle}">
|
||||
<StackPanel Style="{StaticResource SettingsStackStyle}">
|
||||
<!-- Color Scheme -->
|
||||
<!-- This currently only display the Dark color scheme, even if the user has a pair of schemes set. -->
|
||||
<local:SettingsExpander x:Name="ColorScheme"
|
||||
@@ -267,50 +266,58 @@
|
||||
</local:SettingsExpander.ItemsHeader>
|
||||
</local:SettingsExpander>
|
||||
<!-- Font Face -->
|
||||
<local:SettingsCard x:Name="FontFaceContainer"
|
||||
x:Uid="Profile_FontFace"
|
||||
Visibility="{x:Bind Appearance.IsDefault, Mode=OneWay}">
|
||||
<!--
|
||||
Grouped with its diagnostic cards so collapsed warnings don't add phantom spacing.
|
||||
Manually adding Margin to work around WinUI 2 adding spacing for hidden elements.
|
||||
-->
|
||||
<StackPanel>
|
||||
<local:SettingsCard x:Name="FontFaceContainer"
|
||||
x:Uid="Profile_FontFace"
|
||||
Visibility="{x:Bind Appearance.IsDefault, Mode=OneWay}">
|
||||
|
||||
<StackPanel Margin="0,8,0,0">
|
||||
<AutoSuggestBox x:Uid="Profile_FontFaceBox"
|
||||
GotFocus="FontFaceBox_GotFocus"
|
||||
ItemTemplate="{StaticResource FontFaceComboBoxItemTemplate}"
|
||||
ItemsSource="{x:Bind FilteredFontList, Mode=OneWay}"
|
||||
LostFocus="FontFaceBox_LostFocus"
|
||||
QuerySubmitted="FontFaceBox_QuerySubmitted"
|
||||
Text="{x:Bind Appearance.FontFace, Mode=OneWay}"
|
||||
TextBoxStyle="{StaticResource TextBoxSettingStyle}"
|
||||
TextChanged="FontFaceBox_TextChanged"
|
||||
UpdateTextOnSelect="False" />
|
||||
<CheckBox x:Name="ShowAllFontsCheckbox"
|
||||
x:Uid="Profile_FontFaceShowAllFonts"
|
||||
IsChecked="{x:Bind ShowAllFonts, Mode=TwoWay}" />
|
||||
</StackPanel>
|
||||
</local:SettingsCard>
|
||||
<local:SettingsCard x:Name="MissingFontFaces"
|
||||
x:Uid="Profile_MissingFontFaces"
|
||||
Background="{ThemeResource SettingContainerErrorSeverityBackgroundBrush}"
|
||||
Description="{x:Bind Appearance.MissingFontFaces, Mode=OneWay}"
|
||||
Visibility="{x:Bind mtu:Converters.StringNotEmptyToVisibility(Appearance.MissingFontFaces), Mode=OneWay}">
|
||||
<local:SettingsCard.HeaderIcon>
|
||||
<FontIcon FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
||||
FontSize="{StaticResource SettingContainerIconFontSize}"
|
||||
Foreground="{ThemeResource SettingContainerErrorSeverityIconBackground}"
|
||||
Glyph="{StaticResource SettingContainerErrorIconGlyph}" />
|
||||
</local:SettingsCard.HeaderIcon>
|
||||
</local:SettingsCard>
|
||||
<local:SettingsCard x:Name="ProportionalFontFaces"
|
||||
x:Uid="Profile_ProportionalFontFaces"
|
||||
Background="{ThemeResource SettingContainerWarningSeverityBackgroundBrush}"
|
||||
Description="{x:Bind Appearance.ProportionalFontFaces, Mode=OneWay}"
|
||||
Visibility="{x:Bind mtu:Converters.StringNotEmptyToVisibility(Appearance.ProportionalFontFaces), Mode=OneWay}">
|
||||
<local:SettingsCard.HeaderIcon>
|
||||
<FontIcon FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
||||
FontSize="{StaticResource SettingContainerIconFontSize}"
|
||||
Foreground="{ThemeResource SettingContainerWarningSeverityIconBackground}"
|
||||
Glyph="{StaticResource SettingContainerWarningIconGlyph}" />
|
||||
</local:SettingsCard.HeaderIcon>
|
||||
</local:SettingsCard>
|
||||
<StackPanel Margin="0,8,0,0">
|
||||
<AutoSuggestBox x:Uid="Profile_FontFaceBox"
|
||||
GotFocus="FontFaceBox_GotFocus"
|
||||
ItemTemplate="{StaticResource FontFaceComboBoxItemTemplate}"
|
||||
ItemsSource="{x:Bind FilteredFontList, Mode=OneWay}"
|
||||
LostFocus="FontFaceBox_LostFocus"
|
||||
QuerySubmitted="FontFaceBox_QuerySubmitted"
|
||||
Text="{x:Bind Appearance.FontFace, Mode=OneWay}"
|
||||
TextBoxStyle="{StaticResource TextBoxSettingStyle}"
|
||||
TextChanged="FontFaceBox_TextChanged"
|
||||
UpdateTextOnSelect="False" />
|
||||
<CheckBox x:Name="ShowAllFontsCheckbox"
|
||||
x:Uid="Profile_FontFaceShowAllFonts"
|
||||
IsChecked="{x:Bind ShowAllFonts, Mode=TwoWay}" />
|
||||
</StackPanel>
|
||||
</local:SettingsCard>
|
||||
<local:SettingsCard x:Name="MissingFontFaces"
|
||||
x:Uid="Profile_MissingFontFaces"
|
||||
Margin="0,6,0,0"
|
||||
Background="{ThemeResource SettingContainerErrorSeverityBackgroundBrush}"
|
||||
Description="{x:Bind Appearance.MissingFontFaces, Mode=OneWay}"
|
||||
Visibility="{x:Bind mtu:Converters.StringNotEmptyToVisibility(Appearance.MissingFontFaces), Mode=OneWay}">
|
||||
<local:SettingsCard.HeaderIcon>
|
||||
<FontIcon FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
||||
FontSize="{StaticResource SettingContainerIconFontSize}"
|
||||
Foreground="{ThemeResource SettingContainerErrorSeverityIconBackground}"
|
||||
Glyph="{StaticResource SettingContainerErrorIconGlyph}" />
|
||||
</local:SettingsCard.HeaderIcon>
|
||||
</local:SettingsCard>
|
||||
<local:SettingsCard x:Name="ProportionalFontFaces"
|
||||
x:Uid="Profile_ProportionalFontFaces"
|
||||
Margin="0,6,0,0"
|
||||
Background="{ThemeResource SettingContainerWarningSeverityBackgroundBrush}"
|
||||
Description="{x:Bind Appearance.ProportionalFontFaces, Mode=OneWay}"
|
||||
Visibility="{x:Bind mtu:Converters.StringNotEmptyToVisibility(Appearance.ProportionalFontFaces), Mode=OneWay}">
|
||||
<local:SettingsCard.HeaderIcon>
|
||||
<FontIcon FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
||||
FontSize="{StaticResource SettingContainerIconFontSize}"
|
||||
Foreground="{ThemeResource SettingContainerWarningSeverityIconBackground}"
|
||||
Glyph="{StaticResource SettingContainerWarningIconGlyph}" />
|
||||
</local:SettingsCard.HeaderIcon>
|
||||
</local:SettingsCard>
|
||||
</StackPanel>
|
||||
|
||||
<!-- Font Size -->
|
||||
<local:SettingsCard x:Name="FontSize"
|
||||
@@ -481,8 +488,7 @@
|
||||
<!-- Grouping: Cursor -->
|
||||
<TextBlock x:Uid="Profile_CursorHeader"
|
||||
Style="{StaticResource TextBlockSubHeaderStyle}" />
|
||||
<StackPanel Spacing="2"
|
||||
Style="{StaticResource PivotStackStyle}">
|
||||
<StackPanel Style="{StaticResource SettingsStackStyle}">
|
||||
<!-- Cursor Shape -->
|
||||
<local:SettingsCard x:Name="CursorShape"
|
||||
x:Uid="Profile_CursorShape">
|
||||
@@ -496,7 +502,7 @@
|
||||
<!-- Cursor Height -->
|
||||
<local:SettingsCard x:Name="CursorHeight"
|
||||
x:Uid="Profile_CursorHeight"
|
||||
Visibility="{x:Bind IsVintageCursor, Mode=OneWay}">
|
||||
IsEnabled="{x:Bind IsVintageCursor, Mode=OneWay}">
|
||||
<Grid Style="{StaticResource CustomSliderControlGridStyle}">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*" />
|
||||
@@ -535,13 +541,13 @@
|
||||
<!-- Grouping: Background -->
|
||||
<TextBlock x:Uid="Profile_BackgroundHeader"
|
||||
Style="{StaticResource TextBlockSubHeaderStyle}" />
|
||||
<StackPanel Spacing="2"
|
||||
Style="{StaticResource PivotStackStyle}">
|
||||
<StackPanel Style="{StaticResource SettingsStackStyle}">
|
||||
<!-- Background Image -->
|
||||
<local:SettingsExpander x:Name="BackgroundImageContainer"
|
||||
x:Uid="Profile_BackgroundImage">
|
||||
<local:SettingsExpander.Content>
|
||||
<StackPanel Orientation="Vertical">
|
||||
<StackPanel Margin="0,8,0,0"
|
||||
Orientation="Vertical">
|
||||
<StackPanel Orientation="Horizontal"
|
||||
Spacing="8">
|
||||
<TextBox x:Uid="Profile_BackgroundImageBox"
|
||||
@@ -780,8 +786,7 @@
|
||||
<!-- Grouping: Text Formatting -->
|
||||
<TextBlock x:Uid="Appearance_TextFormattingHeader"
|
||||
Style="{StaticResource TextBlockSubHeaderStyle}" />
|
||||
<StackPanel Spacing="2"
|
||||
Style="{StaticResource PivotStackStyle}">
|
||||
<StackPanel Style="{StaticResource SettingsStackStyle}">
|
||||
<!-- Intense is bold, bright -->
|
||||
<local:SettingsCard x:Name="IntenseTextStyle"
|
||||
x:Uid="Appearance_IntenseTextStyle">
|
||||
|
||||
@@ -177,12 +177,7 @@
|
||||
<Style x:Key="SettingsStackStyle"
|
||||
TargetType="StackPanel">
|
||||
<Setter Property="MaxWidth" Value="{StaticResource StandardControlMaxWidth}" />
|
||||
</Style>
|
||||
|
||||
<!-- Used to stack a group of settings inside a pivot -->
|
||||
<Style x:Key="PivotStackStyle"
|
||||
TargetType="StackPanel">
|
||||
<Setter Property="MaxWidth" Value="{StaticResource StandardControlMaxWidth}" />
|
||||
<Setter Property="Spacing" Value="4" />
|
||||
</Style>
|
||||
|
||||
<!-- Combo Box -->
|
||||
|
||||
@@ -35,7 +35,6 @@
|
||||
Style="{StaticResource DisclaimerStyle}"
|
||||
Visibility="{x:Bind Profile.IsBaseLayer}" />
|
||||
<StackPanel Grid.Row="1"
|
||||
Spacing="2"
|
||||
Style="{StaticResource SettingsStackStyle}">
|
||||
<!-- Antialiasing Mode -->
|
||||
<local:SettingsCard x:Name="AntialiasingMode"
|
||||
|
||||
@@ -83,8 +83,7 @@
|
||||
<!-- Grouping: Transparency -->
|
||||
<TextBlock x:Uid="Profile_TransparencyHeader"
|
||||
Style="{StaticResource TextBlockSubHeaderStyle}" />
|
||||
<StackPanel Spacing="2"
|
||||
Style="{StaticResource PivotStackStyle}">
|
||||
<StackPanel Style="{StaticResource SettingsStackStyle}">
|
||||
<!-- Opacity -->
|
||||
<local:SettingsCard x:Name="Opacity"
|
||||
x:Uid="Profile_Opacity">
|
||||
@@ -116,8 +115,7 @@
|
||||
<!-- Grouping: Window -->
|
||||
<TextBlock x:Uid="Profile_WindowHeader"
|
||||
Style="{StaticResource TextBlockSubHeaderStyle}" />
|
||||
<StackPanel Spacing="2"
|
||||
Style="{StaticResource PivotStackStyle}">
|
||||
<StackPanel Style="{StaticResource SettingsStackStyle}">
|
||||
<!-- Padding -->
|
||||
<local:SettingsExpander x:Name="Padding"
|
||||
x:Uid="Profile_Padding">
|
||||
|
||||
@@ -22,7 +22,9 @@ namespace winrt::Microsoft::Terminal::Settings::Editor::implementation
|
||||
Automation::AutomationProperties::SetFullDescription(StartingDirectoryUseParentCheckbox(), unbox_value<hstring>(startingDirCheckboxTooltip));
|
||||
|
||||
AppearanceNavigator().Header(box_value(RS_(L"Profile_Appearance/Header")));
|
||||
AppearanceNavigator().Description(box_value(RS_(L"Profile_AppearanceNavigator/Description")));
|
||||
TerminalNavigator().Header(box_value(RS_(L"Profile_Terminal/Header")));
|
||||
TerminalNavigator().Description(box_value(RS_(L"Profile_TerminalNavigator/Description")));
|
||||
AdvancedNavigator().Header(box_value(RS_(L"Profile_Advanced/Header")));
|
||||
}
|
||||
|
||||
|
||||
@@ -32,56 +32,132 @@
|
||||
Style="{StaticResource DisclaimerStyle}"
|
||||
Visibility="{x:Bind Profile.IsBaseLayer}" />
|
||||
<StackPanel Grid.Row="1"
|
||||
Spacing="2"
|
||||
Style="{StaticResource SettingsStackStyle}">
|
||||
|
||||
<!-- Name -->
|
||||
<local:SettingsCard x:Name="Name"
|
||||
x:Uid="Profile_Name"
|
||||
Visibility="{x:Bind mtu:Converters.InvertedBooleanToVisibility(Profile.IsBaseLayer), Mode=OneWay}">
|
||||
<local:SettingsExpander x:Name="Name"
|
||||
x:Uid="Profile_Name"
|
||||
IsExpanded="True">
|
||||
<TextBox x:Uid="Profile_NameBox"
|
||||
Style="{StaticResource TextBoxSettingStyle}"
|
||||
Text="{x:Bind Profile.Name, Mode=TwoWay}"
|
||||
Visibility="{x:Bind mtu:Converters.InvertedBooleanToVisibility(Profile.IsBaseLayer), Mode=OneWay}" />
|
||||
<local:SettingsExpander.HeaderIcon>
|
||||
<FontIcon Glyph="" />
|
||||
</local:SettingsExpander.HeaderIcon>
|
||||
<local:SettingsExpander.Items>
|
||||
|
||||
<!-- Commandline -->
|
||||
<local:SettingsCard x:Name="Commandline"
|
||||
x:Uid="Profile_Commandline"
|
||||
Visibility="{x:Bind mtu:Converters.InvertedBooleanToVisibility(Profile.IsBaseLayer), Mode=OneWay}">
|
||||
<StackPanel Orientation="Horizontal"
|
||||
Spacing="8">
|
||||
<TextBox x:Uid="Profile_CommandlineBox"
|
||||
IsSpellCheckEnabled="False"
|
||||
Style="{StaticResource TextBoxSettingStyle}"
|
||||
Text="{x:Bind Profile.Commandline, Mode=TwoWay}" />
|
||||
<Button x:Uid="Profile_CommandlineBrowse"
|
||||
Click="Commandline_Click"
|
||||
Style="{StaticResource BrowseButtonStyle}">
|
||||
<FontIcon FontSize="{StaticResource StandardIconSize}"
|
||||
Glyph="" />
|
||||
</Button>
|
||||
</StackPanel>
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Starting Directory -->
|
||||
<local:SettingsCard x:Uid="Profile_StartingDirectory"
|
||||
IsEnabled="{x:Bind mtu:Converters.InvertBoolean(Profile.UseParentProcessDirectory), Mode=OneWay}">
|
||||
<StackPanel Orientation="Horizontal"
|
||||
Spacing="8">
|
||||
<TextBox x:Uid="Profile_StartingDirectoryBox"
|
||||
IsSpellCheckEnabled="False"
|
||||
Style="{StaticResource TextBoxSettingStyle}"
|
||||
Text="{x:Bind Profile.StartingDirectory, Mode=TwoWay}" />
|
||||
<Button x:Name="StartingDirectoryBrowse"
|
||||
x:Uid="Profile_StartingDirectoryBrowse"
|
||||
Click="StartingDirectory_Click"
|
||||
Style="{StaticResource BrowseButtonStyle}">
|
||||
<FontIcon FontSize="{StaticResource StandardIconSize}"
|
||||
Glyph="" />
|
||||
</Button>
|
||||
</StackPanel>
|
||||
</local:SettingsCard>
|
||||
|
||||
<local:SettingsCard x:Name="StartingDirectory"
|
||||
ContentAlignment="Left">
|
||||
<CheckBox x:Name="StartingDirectoryUseParentCheckbox"
|
||||
x:Uid="Profile_StartingDirectoryUseParentCheckbox"
|
||||
IsChecked="{x:Bind Profile.UseParentProcessDirectory, Mode=TwoWay}" />
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Elevate -->
|
||||
<local:SettingsCard x:Name="Elevate"
|
||||
ContentAlignment="Left">
|
||||
<CheckBox x:Uid="Profile_Elevate"
|
||||
IsChecked="{x:Bind Profile.Elevate, Mode=TwoWay}" />
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Hidden -->
|
||||
<local:SettingsCard x:Name="Hidden"
|
||||
ContentAlignment="Left"
|
||||
Visibility="{x:Bind mtu:Converters.InvertedBooleanToVisibility(Profile.IsBaseLayer), Mode=OneWay}">
|
||||
<CheckBox x:Uid="Profile_Hidden"
|
||||
IsChecked="{x:Bind Profile.Hidden, Mode=TwoWay}" />
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Delete Profile -->
|
||||
<local:SettingsCard x:Name="DeleteProfile"
|
||||
x:Uid="Profile_DeleteProfile"
|
||||
Visibility="{x:Bind Profile.CanDeleteProfile}">
|
||||
<Button x:Name="DeleteProfileButton"
|
||||
x:Uid="Profile_DeleteProfileButton"
|
||||
Style="{StaticResource DeleteButtonStyle}">
|
||||
<Button.Flyout>
|
||||
<Flyout>
|
||||
<StackPanel>
|
||||
<TextBlock x:Uid="Profile_DeleteConfirmationMessage"
|
||||
Style="{StaticResource CustomFlyoutTextStyle}" />
|
||||
<Button x:Uid="Profile_DeleteConfirmationButton"
|
||||
Click="DeleteConfirmation_Click" />
|
||||
</StackPanel>
|
||||
</Flyout>
|
||||
</Button.Flyout>
|
||||
</Button>
|
||||
</local:SettingsCard>
|
||||
|
||||
</local:SettingsExpander.Items>
|
||||
</local:SettingsExpander>
|
||||
|
||||
<!-- Section: Visual/UI Affordance -->
|
||||
<TextBlock x:Uid="Profile_Section_VisualUI"
|
||||
Style="{StaticResource TextBlockSubHeaderStyle}" />
|
||||
|
||||
<!-- Tab Title -->
|
||||
<local:SettingsCard x:Name="TabTitle"
|
||||
x:Uid="Profile_TabTitle">
|
||||
<TextBox Style="{StaticResource TextBoxSettingStyle}"
|
||||
Text="{x:Bind Profile.Name, Mode=TwoWay}" />
|
||||
Text="{x:Bind Profile.TabTitle, Mode=TwoWay}" />
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Commandline -->
|
||||
<local:SettingsCard x:Name="Commandline"
|
||||
x:Uid="Profile_Commandline"
|
||||
Visibility="{x:Bind mtu:Converters.InvertedBooleanToVisibility(Profile.IsBaseLayer), Mode=OneWay}">
|
||||
<StackPanel Orientation="Horizontal"
|
||||
Spacing="8">
|
||||
<TextBox x:Uid="Profile_CommandlineBox"
|
||||
IsSpellCheckEnabled="False"
|
||||
Style="{StaticResource TextBoxSettingStyle}"
|
||||
Text="{x:Bind Profile.Commandline, Mode=TwoWay}" />
|
||||
<Button x:Uid="Profile_CommandlineBrowse"
|
||||
Click="Commandline_Click"
|
||||
Style="{StaticResource BrowseButtonStyle}" />
|
||||
</StackPanel>
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Starting Directory -->
|
||||
<local:SettingsCard x:Name="StartingDirectory"
|
||||
x:Uid="Profile_StartingDirectory">
|
||||
<StackPanel Orientation="Vertical">
|
||||
<StackPanel Orientation="Horizontal"
|
||||
Spacing="8">
|
||||
<TextBox x:Uid="Profile_StartingDirectoryBox"
|
||||
IsEnabled="{x:Bind mtu:Converters.InvertBoolean(Profile.UseParentProcessDirectory), Mode=OneWay}"
|
||||
IsSpellCheckEnabled="False"
|
||||
Style="{StaticResource TextBoxSettingStyle}"
|
||||
Text="{x:Bind Profile.StartingDirectory, Mode=TwoWay}" />
|
||||
<Button x:Name="StartingDirectoryBrowse"
|
||||
x:Uid="Profile_StartingDirectoryBrowse"
|
||||
Click="StartingDirectory_Click"
|
||||
IsEnabled="{x:Bind mtu:Converters.InvertBoolean(Profile.UseParentProcessDirectory), Mode=OneWay}"
|
||||
Style="{StaticResource BrowseButtonStyle}" />
|
||||
</StackPanel>
|
||||
<CheckBox x:Name="StartingDirectoryUseParentCheckbox"
|
||||
x:Uid="Profile_StartingDirectoryUseParentCheckbox"
|
||||
Margin="0,4,0,0"
|
||||
IsChecked="{x:Bind Profile.UseParentProcessDirectory, Mode=TwoWay}" />
|
||||
</StackPanel>
|
||||
</local:SettingsCard>
|
||||
<!-- Tab Color -->
|
||||
<local:SettingsExpander x:Name="TabColor"
|
||||
x:Uid="Profile_TabColor"
|
||||
AutomationProperties.Name="{x:Bind Profile.TabColorPreview, Converter={StaticResource ColorToStringConverter}, Mode=OneWay}">
|
||||
<local:SettingsExpander.Content>
|
||||
<ContentControl Content="{x:Bind Profile.TabColorPreview, Mode=OneWay}"
|
||||
ContentTemplate="{StaticResource ColorPreviewTemplate}" />
|
||||
</local:SettingsExpander.Content>
|
||||
<local:SettingsExpander.ItemsHeader>
|
||||
<ContentPresenter Padding="16,12,16,16">
|
||||
<local:NullableColorPicker x:Uid="Profile_TabColor_NullableColorPicker"
|
||||
ColorSchemeVM="{x:Bind Profile.DefaultAppearance.CurrentColorScheme, Mode=OneWay}"
|
||||
CurrentColor="{x:Bind Profile.TabColor, Mode=TwoWay}"
|
||||
NullColorPreview="{x:Bind Profile.TabThemeColorPreview, Mode=OneWay}" />
|
||||
</ContentPresenter>
|
||||
</local:SettingsExpander.ItemsHeader>
|
||||
</local:SettingsExpander>
|
||||
|
||||
<!-- Icon -->
|
||||
<local:SettingsExpander x:Name="Icon"
|
||||
@@ -111,79 +187,32 @@
|
||||
</local:SettingsExpander.ItemsHeader>
|
||||
</local:SettingsExpander>
|
||||
|
||||
<!-- Tab Title -->
|
||||
<local:SettingsCard x:Name="TabTitle"
|
||||
x:Uid="Profile_TabTitle">
|
||||
<TextBox Style="{StaticResource TextBoxSettingStyle}"
|
||||
Text="{x:Bind Profile.TabTitle, Mode=TwoWay}" />
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Tab Color -->
|
||||
<local:SettingsExpander x:Name="TabColor"
|
||||
x:Uid="Profile_TabColor"
|
||||
AutomationProperties.Name="{x:Bind Profile.TabColorPreview, Converter={StaticResource ColorToStringConverter}, Mode=OneWay}">
|
||||
<local:SettingsExpander.Content>
|
||||
<ContentControl Content="{x:Bind Profile.TabColorPreview, Mode=OneWay}"
|
||||
ContentTemplate="{StaticResource ColorPreviewTemplate}" />
|
||||
</local:SettingsExpander.Content>
|
||||
<local:SettingsExpander.ItemsHeader>
|
||||
<ContentPresenter Padding="16,12,16,16">
|
||||
<local:NullableColorPicker x:Uid="Profile_TabColor_NullableColorPicker"
|
||||
ColorSchemeVM="{x:Bind Profile.DefaultAppearance.CurrentColorScheme, Mode=OneWay}"
|
||||
CurrentColor="{x:Bind Profile.TabColor, Mode=TwoWay}"
|
||||
NullColorPreview="{x:Bind Profile.TabThemeColorPreview, Mode=OneWay}" />
|
||||
</ContentPresenter>
|
||||
</local:SettingsExpander.ItemsHeader>
|
||||
</local:SettingsExpander>
|
||||
|
||||
<!-- Elevate -->
|
||||
<local:SettingsCard x:Name="Elevate"
|
||||
x:Uid="Profile_Elevate">
|
||||
<ToggleSwitch IsOn="{x:Bind Profile.Elevate, Mode=TwoWay}"
|
||||
Style="{StaticResource ToggleSwitchInExpanderStyle}" />
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Hidden -->
|
||||
<local:SettingsCard x:Name="Hidden"
|
||||
x:Uid="Profile_Hidden"
|
||||
Visibility="{x:Bind mtu:Converters.InvertedBooleanToVisibility(Profile.IsBaseLayer), Mode=OneWay}">
|
||||
<ToggleSwitch IsOn="{x:Bind Profile.Hidden, Mode=TwoWay}"
|
||||
Style="{StaticResource ToggleSwitchInExpanderStyle}" />
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Delete Profile -->
|
||||
<local:SettingsCard x:Name="DeleteProfile"
|
||||
x:Uid="Profile_DeleteProfile"
|
||||
Visibility="{x:Bind Profile.CanDeleteProfile}">
|
||||
<Button x:Name="DeleteProfileButton"
|
||||
x:Uid="Profile_DeleteProfileButton"
|
||||
Style="{StaticResource DeleteButtonStyle}">
|
||||
<Button.Flyout>
|
||||
<Flyout>
|
||||
<StackPanel>
|
||||
<TextBlock x:Uid="Profile_DeleteConfirmationMessage"
|
||||
Style="{StaticResource CustomFlyoutTextStyle}" />
|
||||
<Button x:Uid="Profile_DeleteConfirmationButton"
|
||||
Click="DeleteConfirmation_Click" />
|
||||
</StackPanel>
|
||||
</Flyout>
|
||||
</Button.Flyout>
|
||||
</Button>
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Additional settings -->
|
||||
<TextBlock x:Uid="Profile_AdditionalSettingsHeader"
|
||||
Margin="0,32,0,4"
|
||||
Style="{StaticResource TextBlockSubHeaderStyle}" />
|
||||
|
||||
<local:SettingsCard x:Name="AppearanceNavigator"
|
||||
Click="Appearance_Click"
|
||||
IsClickEnabled="True" />
|
||||
IsClickEnabled="True">
|
||||
<local:SettingsCard.HeaderIcon>
|
||||
<FontIcon Glyph="" />
|
||||
</local:SettingsCard.HeaderIcon>
|
||||
</local:SettingsCard>
|
||||
<local:SettingsCard x:Name="TerminalNavigator"
|
||||
Click="Terminal_Click"
|
||||
IsClickEnabled="True" />
|
||||
IsClickEnabled="True">
|
||||
<local:SettingsCard.HeaderIcon>
|
||||
<FontIcon Glyph="" />
|
||||
</local:SettingsCard.HeaderIcon>
|
||||
</local:SettingsCard>
|
||||
<local:SettingsCard x:Name="AdvancedNavigator"
|
||||
Click="Advanced_Click"
|
||||
IsClickEnabled="True" />
|
||||
IsClickEnabled="True">
|
||||
<local:SettingsCard.HeaderIcon>
|
||||
<FontIcon Glyph="" />
|
||||
</local:SettingsCard.HeaderIcon>
|
||||
</local:SettingsCard>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</Page>
|
||||
|
||||
@@ -29,7 +29,6 @@
|
||||
Style="{StaticResource DisclaimerStyle}"
|
||||
Visibility="{x:Bind Profile.IsBaseLayer}" />
|
||||
<StackPanel Grid.Row="1"
|
||||
Spacing="2"
|
||||
Style="{StaticResource SettingsStackStyle}">
|
||||
|
||||
<!-- Suppress Application Title -->
|
||||
|
||||
@@ -569,7 +569,7 @@
|
||||
<value>OSC 777 (Desktop Notification) zum Anzeigen von Popupbenachrichtigungen zulassen</value>
|
||||
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
|
||||
</data>
|
||||
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
|
||||
<data name="Profile_AllowOscNotifications.Description" xml:space="preserve">
|
||||
<value>Wenn diese Option aktiviert ist, können Anwendungen die OSC 777 Escapesequenz senden, um eine Desktopbenachrichtigung mit einem benutzerdefinierten Titel und Text auszulösen.</value>
|
||||
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
|
||||
</data>
|
||||
@@ -930,7 +930,7 @@
|
||||
<value>Im Profil verwendete ausführbare Datei.</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Durchsuchen…</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1101,22 +1101,14 @@
|
||||
<value>Die ausgewählte Schriftart weist keine Schriftartfeatures auf.</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>Profil in Dropdownliste ausblenden</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>Wenn diese Option aktiviert ist, wird das Profil nicht in der Liste der Profile angezeigt. Dies kann verwendet werden, um Standardprofile und dynamisch generierte Profile auszublenden, während sie in Ihrer Einstellungsdatei bleiben.</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>Dieses Profil als Administrator ausführen</value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>Wenn diese Option aktiviert ist, wird das Profil automatisch in einem Admin Terminalfenster geöffnet. Wenn das aktuelle Fenster bereits als Administrator ausgeführt wird, wird es in diesem Fenster geöffnet.</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>Größe des Verlaufs</value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1213,11 +1205,7 @@
|
||||
<value>Startverzeichnis</value>
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>Das Verzeichnis, in dem das Profil gestartet wird, wenn es geladen wird.</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Durchsuchen…</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -569,7 +569,7 @@
|
||||
<value>Allow OSC 777 (Desktop Notification) to show toast notifications</value>
|
||||
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
|
||||
</data>
|
||||
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
|
||||
<data name="Profile_AllowOscNotifications.Description" xml:space="preserve">
|
||||
<value>When enabled, applications can send the OSC 777 escape sequence to trigger a desktop notification with a custom title and body.</value>
|
||||
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
|
||||
</data>
|
||||
@@ -930,7 +930,7 @@
|
||||
<value>Executable used in the profile.</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Browse...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1101,22 +1101,14 @@
|
||||
<value>The selected font has no font features.</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>Hide profile from dropdown</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>If enabled, the profile will not appear in the list of profiles. This can be used to hide default profiles and dynamically generated profiles, while leaving them in your settings file.</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<value>Run this profile as Administrator</value>
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>Run as administrator (uses current window if already elevated)</value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>If enabled, the profile will open in an Admin terminal window automatically. If the current window is already running as admin, it will open in this window.</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>History size</value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1206,18 +1198,14 @@
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Header" xml:space="preserve">
|
||||
<value>Starting directory</value>
|
||||
<value>Default starting directory</value>
|
||||
<comment>Header for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBox.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
|
||||
<value>Starting directory</value>
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>The directory the profile starts in when it is loaded.</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Browse...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1590,8 +1578,24 @@
|
||||
<comment>Name for a control to determine the name of the profile. This is a text box.</comment>
|
||||
</data>
|
||||
<data name="Profile_Name.Header" xml:space="preserve">
|
||||
<value>Profile</value>
|
||||
<comment>Header for the profile section of the profile settings page. Shown above a text box that lets the user edit the profile name.</comment>
|
||||
</data>
|
||||
<data name="Profile_NameBox.PlaceholderText" xml:space="preserve">
|
||||
<value>Name</value>
|
||||
<comment>Header for a control to determine the name of the profile. This is a text box.</comment>
|
||||
<comment>Placeholder text shown inside the empty profile name text box, hinting that the user should enter the profile's name here.</comment>
|
||||
</data>
|
||||
<data name="Profile_Section_VisualUI.Text" xml:space="preserve">
|
||||
<value>Visual/UI Affordance</value>
|
||||
<comment>Title of a section in a profile page that groups visual and UI settings (tab title, icon, tab color, etc.).</comment>
|
||||
</data>
|
||||
<data name="Profile_AppearanceNavigator.Description" xml:space="preserve">
|
||||
<value>Customize the visual appearance of the profile, including colors, fonts, and text styling.</value>
|
||||
<comment>Description shown below the "Appearance" navigator card on the profile page.</comment>
|
||||
</data>
|
||||
<data name="Profile_TerminalNavigator.Description" xml:space="preserve">
|
||||
<value>Configure how the terminal interprets text and control sequences to behave like a traditional command-line terminal</value>
|
||||
<comment>Description shown below the "Terminal Emulation" navigator card on the profile page.</comment>
|
||||
</data>
|
||||
<data name="Profile_TransparencyHeader.Text" xml:space="preserve">
|
||||
<value>Transparency</value>
|
||||
|
||||
@@ -569,7 +569,7 @@
|
||||
<value>Permitir que OSC 777 (Desktop Notification) muestre notificaciones del sistema</value>
|
||||
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
|
||||
</data>
|
||||
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
|
||||
<data name="Profile_AllowOscNotifications.Description" xml:space="preserve">
|
||||
<value>Cuando se habilita, las aplicaciones pueden enviar la secuencia de escape de OSC 777 para desencadenar una notificación de escritorio con un título y un cuerpo personalizados.</value>
|
||||
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
|
||||
</data>
|
||||
@@ -930,7 +930,7 @@
|
||||
<value>Ejecutable utilizado en el perfil.</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Examinar...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1101,22 +1101,14 @@
|
||||
<value>La fuente seleccionada no tiene características de fuente.</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>Ocultar perfil de la lista desplegable</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>Si se habilita, el perfil no aparecerá en la lista de perfiles. Se puede usar para ocultar los perfiles predeterminados y los perfiles generados dinámicamente, al dejarlos en el archivo de configuración.</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>Ejecutar este perfil como Administrador</value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>Si se habilita, el perfil se abrirá automáticamente en una ventana de terminal Administración. Si la ventana actual ya se está ejecutando como administrador, se abrirá en esta ventana.</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>Tamaño del historial</value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1213,11 +1205,7 @@
|
||||
<value>Directorio de inicio</value>
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>El directorio en el que se inicia el perfil cuando se carga.</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Examinar...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -569,7 +569,7 @@
|
||||
<value>Autoriser OSC 777 (Desktop Notification) à afficher des notifications toast</value>
|
||||
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
|
||||
</data>
|
||||
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
|
||||
<data name="Profile_AllowOscNotifications.Description" xml:space="preserve">
|
||||
<value>Lorsque cette option est activée, les applications peuvent envoyer la séquence d’échappement OSC 777 pour déclencher une notification de bureau avec un titre et un corps personnalisés.</value>
|
||||
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
|
||||
</data>
|
||||
@@ -930,7 +930,7 @@
|
||||
<value>Exécutable de profil.</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Parcourir...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1101,22 +1101,14 @@
|
||||
<value>La police sélectionnée n’a aucune fonctionnalité de police.</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>Masquez le profil de la liste déroulante</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>Si cette option est activée, le profil n’apparaît pas dans la liste des profils. Peut être utilisé pour masquer les profils par défaut et les profils générés dynamiquement, tout en les laissant dans votre fichier de paramètres.</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>Exécuter ce profil en tant qu’administrateur</value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>Si cette option est activée, le profil s’ouvre automatiquement dans une fenêtre de terminal Administration. Si la fenêtre active est déjà en cours d’exécution en tant qu’administrateur, elle s’ouvre dans cette fenêtre.</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>Taille de l’historique</value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1213,11 +1205,7 @@
|
||||
<value>Répertoire de démarrage</value>
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>Répertoire dans lequel le shell démarre lorsqu’il est chargé.</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Parcourir...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -569,7 +569,7 @@
|
||||
<value>Consenti a OSC 777 (Desktop Notification) di mostrare gli avvisi popup</value>
|
||||
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
|
||||
</data>
|
||||
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
|
||||
<data name="Profile_AllowOscNotifications.Description" xml:space="preserve">
|
||||
<value>Se questa opzione è abilitata, le applicazioni possono inviare la sequenza di escape OSC 777 per attivare una notifica desktop con un titolo e un corpo personalizzati.</value>
|
||||
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
|
||||
</data>
|
||||
@@ -930,7 +930,7 @@
|
||||
<value>Eseguibile utilizzato nel profilo.</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Sfoglia...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1101,22 +1101,14 @@
|
||||
<value>Il tipo di carattere selezionato non ha caratteristiche per i tipi di carattere.</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>Nascondi profilo da elenco a discesa</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>Se questa opzione è abilitata, il profilo non verrà visualizzato nell'elenco dei profili. Può essere usato per nascondere i profili predefiniti e i profili generati dinamicamente, lasciandoli nel file di impostazioni.</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>Esegui questo profilo come amministratore</value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>Se questa opzione è abilitata, il profilo verrà aperto automaticamente in una finestra del terminale Amministrazione. Se la finestra corrente è già in esecuzione come amministratore, verrà aperta in questa finestra.</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>Dimensioni cronologia</value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1213,11 +1205,7 @@
|
||||
<value>Directory iniziale</value>
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>La directory che inizia il profilo durante il caricamento.</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Sfoglia...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -569,7 +569,7 @@
|
||||
<value>OSC 777 (Desktop Notification) でトースト通知の表示を許可する</value>
|
||||
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
|
||||
</data>
|
||||
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
|
||||
<data name="Profile_AllowOscNotifications.Description" xml:space="preserve">
|
||||
<value>有効にすると、アプリケーションは OSC 777 エスケープ シーケンスを送信して、カスタム タイトルと本文を含むデスクトップ通知をトリガーできます。</value>
|
||||
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
|
||||
</data>
|
||||
@@ -930,7 +930,7 @@
|
||||
<value>プロファイルで使用される実行可能ファイル。</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>参照...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1101,22 +1101,14 @@
|
||||
<value>選択したフォントにはフォント機能がありません。</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>ドロップダウンからプロファイルを非表示にする</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>有効にした場合、プロファイルはプロファイルの一覧に表示されません。これを使用すると、既定のプロファイルや動的に生成されたプロファイルを設定ファイルに残したまま非表示にすることができます。</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>このプロファイルを管理者として実行する</value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>有効にすると、プロファイルは自動的にターミナル ウィンドウ管理開きます。現在のウィンドウが既に管理者として実行されている場合は、このウィンドウで開きます。</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>履歴のサイズ</value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1213,11 +1205,7 @@
|
||||
<value>開始ディレクトリ</value>
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>プロファイルが読み込まれたときに開始されるディレクトリです。</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>参照...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -569,7 +569,7 @@
|
||||
<value>OSC 777(Desktop Notification)이 토스트 알림을 표시하도록 허용</value>
|
||||
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
|
||||
</data>
|
||||
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
|
||||
<data name="Profile_AllowOscNotifications.Description" xml:space="preserve">
|
||||
<value>사용하도록 설정하면 애플리케이션이 OSC 777 이스케이프 시퀀스를 전송하여 사용자 지정 제목 및 본문을 사용하여 데스크톱 알림을 트리거할 수 있습니다.</value>
|
||||
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
|
||||
</data>
|
||||
@@ -930,7 +930,7 @@
|
||||
<value>프로필에 사용된 실행 파일입니다.</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>찾아보기...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1101,22 +1101,14 @@
|
||||
<value>선택한 글꼴에 글꼴 기능이 없습니다.</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>드롭다운에서 프로필 숨기기</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>사용하도록 설정하면 프로필이 프로필 목록에 나타나지 않습니다. 기본 프로필 및 동적으로 생성된 프로필을 설정 파일에 그대로 두는 데 사용할 수 있습니다.</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>이 프로필을 관리자 권한으로 실행</value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>사용하도록 설정하면 프로필이 관리 터미널 창에서 자동으로 열립니다. 현재 창이 관리자 권한으로 이미 실행되고 있는 경우 이 창에서 열립니다.</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>기록 크기</value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1213,11 +1205,7 @@
|
||||
<value>시작 디렉터리</value>
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>프로필이 로드될 때 시작됩니다.</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>찾아보기...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -569,7 +569,7 @@
|
||||
<value>Permitir que OSC 777 (Desktop Notification) mostre notificações do sistema</value>
|
||||
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
|
||||
</data>
|
||||
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
|
||||
<data name="Profile_AllowOscNotifications.Description" xml:space="preserve">
|
||||
<value>Quando habilitados, os aplicativos podem enviar a sequência de escape OSC 777 para disparar uma notificação da área de trabalho com um título e corpo personalizados.</value>
|
||||
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
|
||||
</data>
|
||||
@@ -930,7 +930,7 @@
|
||||
<value>Arquivo executável usado no perfil.</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Procurar...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1101,22 +1101,14 @@
|
||||
<value>A fonte selecionada não tem recursos de fonte.</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>Ocultar perfil da lista suspensa</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>Se habilitado, o perfil não aparecerá na lista de perfis. Isso pode ser usado para ocultar perfis padrão e perfis gerados dinamicamente, deixando-os no arquivo de configurações.</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>Executar esse perfil como Administrador</value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>Se habilitado, o perfil será aberto em uma janela Administração terminal automaticamente. Se a janela atual já estiver em execução como administrador, ela será aberta nesta janela.</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>Tamanho de histórico</value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1213,11 +1205,7 @@
|
||||
<value>Diretório inicial</value>
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>A pasta em que o perfil começa quando é carregado.</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Procurar...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -569,7 +569,7 @@
|
||||
<value>Άľℓôẅ OSC 777 (Desktop Notification) ťõ šђǿщ ŧôášτ ŋòţĩƒíćäťΐóйś !!! !!! !!! !!! !!! !!! !</value>
|
||||
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
|
||||
</data>
|
||||
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
|
||||
<data name="Profile_AllowOscNotifications.Description" xml:space="preserve">
|
||||
<value>Ẅђĕņ ěňāъłèð, ãφρļїčāтīòήѕ ¢аń ŝëлđ ťĥĕ OSC 777 ēśćάφз şèqüęńĉз τö ťѓĩĝĝєг ā ðĕѕќŧöρ лόтΐƒĩςªτίøп ẃìţн д сџšτõm тįŧŀé āⁿδ вόđÿ. !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!</value>
|
||||
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
|
||||
</data>
|
||||
@@ -930,7 +930,7 @@
|
||||
<value>Эхĕçΰтдьłё ūśëď įñ ţħè рŕòƒĭŀз. !!! !!! !!!</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>ßгθшşє... !!!</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1101,22 +1101,14 @@
|
||||
<value>Τћē ŝэŀëсŧзð ƒőйť нâŝ иο ƒòиŧ ƒėäţцŕэś. !!! !!! !!! !!!</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>Ήîď℮ φябƒίļĕ ƒѓòm ďřóφδόшπ !!! !!! !</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>Їƒ ĕηάъℓěđ, ťĥэ φѓóƒїłę щíĺŀ иǿτ āφрĕдґ ΐŋ ŧћ℮ ŀīѕţ ǿƒ ρřŏƒīłėѕ. Ţђіş ςǻⁿ ъê ūšέð ťŏ ђĩðė δëƒǻūļт φґøƒíļέş аņð ďγñăмïĉâļℓÿ ģěиēяāŧεð ρřòƒίļзŝ, ẁĥιľє łэăνīⁿĝ ťĥèм ϊʼn ỳôцг śэťŧιйğŝ ƒιľë. !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>Гµл тђįş φѓöƒιļэ åş Λđmįňίšтŕàтоя !!! !!! !!! </value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>̃ éņãвļзδ, ŧĥĕ рŗоƒīľё ẅιľł óрėŋ ΐή åň Ąďmįŋ теѓmίидŀ шïпδσώ аůţòмăтìсаļļγ. Ĭƒ ŧĥе čцѓґ℮ⁿť ẁįлđόŵ їŝ áŀřėãďу ŕύŋņïπġ āš αðмīʼn, ϊţ ẁїłℓ òρĕй іп тħΐş ωϊⁿđоẁ. !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>Нíşŧôŗỳ ѕιźë !!! </value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1213,11 +1205,7 @@
|
||||
<value>Šтдřтíⁿģ đϊŕёςŧôŗў !!! !!</value>
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>Ţћé đĭŗéçťòŕу τħе рѓøƒĩŀе śťªřťş ïή ẅћĕл îţ ίѕ ŀбдδėď. !!! !!! !!! !!! !!! !</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Ьŕōωŝē... !!!</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -569,7 +569,7 @@
|
||||
<value>Άľℓôẅ OSC 777 (Desktop Notification) ťõ šђǿщ ŧôášτ ŋòţĩƒíćäťΐóйś !!! !!! !!! !!! !!! !!! !</value>
|
||||
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
|
||||
</data>
|
||||
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
|
||||
<data name="Profile_AllowOscNotifications.Description" xml:space="preserve">
|
||||
<value>Ẅђĕņ ěňāъłèð, ãφρļїčāтīòήѕ ¢аń ŝëлđ ťĥĕ OSC 777 ēśćάφз şèqüęńĉз τö ťѓĩĝĝєг ā ðĕѕќŧöρ лόтΐƒĩςªτίøп ẃìţн д сџšτõm тįŧŀé āⁿδ вόđÿ. !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!</value>
|
||||
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
|
||||
</data>
|
||||
@@ -930,7 +930,7 @@
|
||||
<value>Эхĕçΰтдьłё ūśëď įñ ţħè рŕòƒĭŀз. !!! !!! !!!</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>ßгθшşє... !!!</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1101,22 +1101,14 @@
|
||||
<value>Τћē ŝэŀëсŧзð ƒőйť нâŝ иο ƒòиŧ ƒėäţцŕэś. !!! !!! !!! !!!</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>Ήîď℮ φябƒίļĕ ƒѓòm ďřóφδόшπ !!! !!! !</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>Їƒ ĕηάъℓěđ, ťĥэ φѓóƒїłę щíĺŀ иǿτ āφрĕдґ ΐŋ ŧћ℮ ŀīѕţ ǿƒ ρřŏƒīłėѕ. Ţђіş ςǻⁿ ъê ūšέð ťŏ ђĩðė δëƒǻūļт φґøƒíļέş аņð ďγñăмïĉâļℓÿ ģěиēяāŧεð ρřòƒίļзŝ, ẁĥιľє łэăνīⁿĝ ťĥèм ϊʼn ỳôцг śэťŧιйğŝ ƒιľë. !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>Гµл тђįş φѓöƒιļэ åş Λđmįňίšтŕàтоя !!! !!! !!! </value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>̃ éņãвļзδ, ŧĥĕ рŗоƒīľё ẅιľł óрėŋ ΐή åň Ąďmįŋ теѓmίидŀ шïпδσώ аůţòмăтìсаļļγ. Ĭƒ ŧĥе čцѓґ℮ⁿť ẁįлđόŵ їŝ áŀřėãďу ŕύŋņïπġ āš αðмīʼn, ϊţ ẁїłℓ òρĕй іп тħΐş ωϊⁿđоẁ. !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>Нíşŧôŗỳ ѕιźë !!! </value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1213,11 +1205,7 @@
|
||||
<value>Šтдřтíⁿģ đϊŕёςŧôŗў !!! !!</value>
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>Ţћé đĭŗéçťòŕу τħе рѓøƒĩŀе śťªřťş ïή ẅћĕл îţ ίѕ ŀбдδėď. !!! !!! !!! !!! !!! !</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Ьŕōωŝē... !!!</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -569,7 +569,7 @@
|
||||
<value>Άľℓôẅ OSC 777 (Desktop Notification) ťõ šђǿщ ŧôášτ ŋòţĩƒíćäťΐóйś !!! !!! !!! !!! !!! !!! !</value>
|
||||
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
|
||||
</data>
|
||||
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
|
||||
<data name="Profile_AllowOscNotifications.Description" xml:space="preserve">
|
||||
<value>Ẅђĕņ ěňāъłèð, ãφρļїčāтīòήѕ ¢аń ŝëлđ ťĥĕ OSC 777 ēśćάφз şèqüęńĉз τö ťѓĩĝĝєг ā ðĕѕќŧöρ лόтΐƒĩςªτίøп ẃìţн д сџšτõm тįŧŀé āⁿδ вόđÿ. !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!</value>
|
||||
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
|
||||
</data>
|
||||
@@ -930,7 +930,7 @@
|
||||
<value>Эхĕçΰтдьłё ūśëď įñ ţħè рŕòƒĭŀз. !!! !!! !!!</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>ßгθшşє... !!!</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1101,22 +1101,14 @@
|
||||
<value>Τћē ŝэŀëсŧзð ƒőйť нâŝ иο ƒòиŧ ƒėäţцŕэś. !!! !!! !!! !!!</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>Ήîď℮ φябƒίļĕ ƒѓòm ďřóφδόшπ !!! !!! !</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>Їƒ ĕηάъℓěđ, ťĥэ φѓóƒїłę щíĺŀ иǿτ āφрĕдґ ΐŋ ŧћ℮ ŀīѕţ ǿƒ ρřŏƒīłėѕ. Ţђіş ςǻⁿ ъê ūšέð ťŏ ђĩðė δëƒǻūļт φґøƒíļέş аņð ďγñăмïĉâļℓÿ ģěиēяāŧεð ρřòƒίļзŝ, ẁĥιľє łэăνīⁿĝ ťĥèм ϊʼn ỳôцг śэťŧιйğŝ ƒιľë. !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>Гµл тђįş φѓöƒιļэ åş Λđmįňίšтŕàтоя !!! !!! !!! </value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>̃ éņãвļзδ, ŧĥĕ рŗоƒīľё ẅιľł óрėŋ ΐή åň Ąďmįŋ теѓmίидŀ шïпδσώ аůţòмăтìсаļļγ. Ĭƒ ŧĥе čцѓґ℮ⁿť ẁįлđόŵ їŝ áŀřėãďу ŕύŋņïπġ āš αðмīʼn, ϊţ ẁїłℓ òρĕй іп тħΐş ωϊⁿđоẁ. !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>Нíşŧôŗỳ ѕιźë !!! </value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1213,11 +1205,7 @@
|
||||
<value>Šтдřтíⁿģ đϊŕёςŧôŗў !!! !!</value>
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>Ţћé đĭŗéçťòŕу τħе рѓøƒĩŀе śťªřťş ïή ẅћĕл îţ ίѕ ŀбдδėď. !!! !!! !!! !!! !!! !</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Ьŕōωŝē... !!!</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -569,7 +569,7 @@
|
||||
<value>Разрешить OSC 777 (Desktop Notification) отображать всплывающие уведомления</value>
|
||||
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
|
||||
</data>
|
||||
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
|
||||
<data name="Profile_AllowOscNotifications.Description" xml:space="preserve">
|
||||
<value>При включении этого параметра приложения могут отправлять управляющую последовательность OSC 777 для запуска уведомления рабочего стола с произвольными заголовком и текстом.</value>
|
||||
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
|
||||
</data>
|
||||
@@ -930,7 +930,7 @@
|
||||
<value>Исполняемый файл, используемый в профиле.</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Открыть...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1101,22 +1101,14 @@
|
||||
<value>В выбранном шрифте нет компонентов.</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>Скрытие профиля из выпадающего списка</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>Если этот параметр включен, профиль не будет отображаться в списке профилей. Используется для скрытия профилей по умолчанию и динамического создания профилей, которые при этом остаются в файле настроек.</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>Запустить этот профиль от имени администратора</value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>Если этот параметр включен, профиль будет автоматически открываться в Администратор терминала. Если текущее окно уже запущено от имени администратора, оно откроется в этом окне.</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>Размер журнала</value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1213,11 +1205,7 @@
|
||||
<value>Начальный каталог</value>
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>Каталог, запускаемый профилем при загрузке.</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Открыть...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -895,7 +895,7 @@
|
||||
<value>Извршни фајл који се користи у профилу.</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Прегледај...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1066,22 +1066,14 @@
|
||||
<value>Изабрани фонт нема ниједну особину фонта.</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>Сакриј профил из падајуће листе</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>Ако је укључено, овај профил се неће појављивати у листи профила. Ово може да се употреби за сакривање подразумеваних профила и динамички генерисаних профила, мада се још увек чувају у фајлу подешавања.</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>Покрећи овај профил као администратор</value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>Ако је укључено, профил ће се аутоматски отварати у Админ терминалском прозору. Ако се текући прозор већ извршава као админ, отвориће се у том прозору.</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>Величина историје</value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1178,11 +1170,7 @@
|
||||
<value>Почетни директоријум</value>
|
||||
<comment>Name for a control to determine the directory the session opens it at launch. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>Директоријум у којем профил почиње онда када се учита.</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Прегледај...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -914,7 +914,7 @@
|
||||
<value>Виконуваний файл, який використовувати в профілі.</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Огляд...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1089,22 +1089,14 @@
|
||||
<value>Загальні</value>
|
||||
<comment>Header for a sub-page of profile settings focused on more general scenarios.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>Приховати профіль із спадного меню</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>Якщо ввімкнено, профіль не відображатиметься у списку профілів. Це можна використовувати, щоб приховати типові і динамічно створені профілі, залишивши їх у файлі налаштувань.</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>Запускати цей профіль як Адміністратор</value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>Якщо ввімкнено, профіль автоматично відкриватиметься у вікні терміналу Адміністратора. Якщо поточне вікно вже запущено від імені Адміністратора, воно відкриється в цьому вікні.</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>Розмір історії</value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1205,11 +1197,7 @@
|
||||
<value>Каталог при запуску</value>
|
||||
<comment>Name for a control to determine the directory the session opens it at launch. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>Початковий каталог при відкритті профілю.</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>Огляд...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -569,7 +569,7 @@
|
||||
<value>允许 OSC 777 (Desktop Notification)显示 toast 通知</value>
|
||||
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
|
||||
</data>
|
||||
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
|
||||
<data name="Profile_AllowOscNotifications.Description" xml:space="preserve">
|
||||
<value>启用后,应用程序可以发送 OSC 777 转义序列以触发具有自定义标题和正文的桌面通知。</value>
|
||||
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
|
||||
</data>
|
||||
@@ -930,7 +930,7 @@
|
||||
<value>在配置文件中所使用的可执行文件。</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>浏览……</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1101,22 +1101,14 @@
|
||||
<value>所选字体没有字体功能。</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>从下拉菜单中隐藏</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>如果启用,配置文件将不会显示在配置文件列表中。这可用于隐藏默认配置文件和动态生成的配置文件,同时将它们保留在设置文件中。</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>以管理员身份运行此配置文件</value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>如果启用,配置文件将在管理员终端窗口中自动打开。如果当前窗口已以管理员身份运行,它将在此窗口中打开。</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>历史记录大小</value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1213,11 +1205,7 @@
|
||||
<value>正在启动目录</value>
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>加载配置文件时启动的目录。</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>浏览……</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -569,7 +569,7 @@
|
||||
<value>允許 OSC 777 (Desktop Notification) 顯示快顯通知</value>
|
||||
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
|
||||
</data>
|
||||
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
|
||||
<data name="Profile_AllowOscNotifications.Description" xml:space="preserve">
|
||||
<value>啟用時,應用程式可以傳送 OSC 777 逸出序列,以觸發具有自訂標題和本文的桌面通知。</value>
|
||||
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
|
||||
</data>
|
||||
@@ -930,7 +930,7 @@
|
||||
<value>用於設定檔中的可執行檔。</value>
|
||||
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
|
||||
</data>
|
||||
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_CommandlineBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>瀏覽...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
@@ -1101,22 +1101,14 @@
|
||||
<value>選取的字型沒有字型功能。</value>
|
||||
<comment>A description provided when the font features setting is disabled. Presented near "Profile_FontFeatures".</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Header" xml:space="preserve">
|
||||
<data name="Profile_Hidden.Content" xml:space="preserve">
|
||||
<value>在下拉式清單中隱藏設定檔</value>
|
||||
<comment>Header for a control to toggle whether the profile is shown in a dropdown menu, or not.</comment>
|
||||
</data>
|
||||
<data name="Profile_Hidden.Description" xml:space="preserve">
|
||||
<value>如果啟用,設定檔將不會顯示在設定檔清單中。這可用來隱藏預設設定檔和動態產生的設定檔,同時將它們留在您的設定檔案中。</value>
|
||||
<comment>A description for what the "hidden" setting does. Presented near "Profile_Hidden".</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Header" xml:space="preserve">
|
||||
<data name="Profile_Elevate.Content" xml:space="preserve">
|
||||
<value>以系統管理員身分執行此設定檔</value>
|
||||
<comment>Header for a control to toggle whether the profile should always open elevated (in an admin window)</comment>
|
||||
</data>
|
||||
<data name="Profile_Elevate.Description" xml:space="preserve">
|
||||
<value>如果啟用,配置檔將會自動在 管理員 終端機視窗中開啟。如果目前的視窗已以系統管理員身分執行,則會在此視窗中開啟。</value>
|
||||
<comment>A description for what the "elevate" setting does. Presented near "Profile_Elevate".</comment>
|
||||
</data>
|
||||
<data name="Profile_HistorySize.Header" xml:space="preserve">
|
||||
<value>歷史大小</value>
|
||||
<comment>Header for a control to determine how many lines of text can be saved in a session. In terminals, the "history" is the output generated within your session.</comment>
|
||||
@@ -1213,11 +1205,7 @@
|
||||
<value>起始目錄</value>
|
||||
<comment>Name for a control to determine the session's initial directory. This is on a text box that accepts folder paths.</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectory.Description" xml:space="preserve">
|
||||
<value>載入時,設定檔起始的目錄。</value>
|
||||
<comment>A description for what the "starting directory" setting does. Presented near "Profile_StartingDirectory".</comment>
|
||||
</data>
|
||||
<data name="Profile_StartingDirectoryBrowse.Content" xml:space="preserve">
|
||||
<data name="Profile_StartingDirectoryBrowse.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
|
||||
<value>瀏覽...</value>
|
||||
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
|
||||
</data>
|
||||
|
||||
@@ -254,6 +254,10 @@ namespace winrt::Microsoft::Terminal::Settings::Editor::implementation
|
||||
LocalizedIndexEntry localizedEntry;
|
||||
localizedEntry.Entry = &entry;
|
||||
localizedEntry.DisplayTextLocalized = GetLibraryResourceString(entry.ResourceName);
|
||||
if (!entry.SecondaryResourceName.empty())
|
||||
{
|
||||
localizedEntry.SecondaryLabelLocalized = GetLibraryResourceString(entry.SecondaryResourceName);
|
||||
}
|
||||
if (shouldIncludeLanguageNeutralResources)
|
||||
{
|
||||
localizedEntry.DisplayTextNeutral = EnglishOnlyResourceLoader().GetLocalizedString(entry.ResourceName);
|
||||
@@ -342,7 +346,7 @@ namespace winrt::Microsoft::Terminal::Settings::Editor::implementation
|
||||
|
||||
if (bestScore >= MinimumMatchScore)
|
||||
{
|
||||
scoredResults.emplace_back(bestScore, winrt::make<FilteredSearchResult>(index, &entry));
|
||||
scoredResults.emplace_back(bestScore, winrt::make<FilteredSearchResult>(index, &entry, nullptr, std::nullopt, entry.SecondaryLabelLocalized));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -20,6 +20,7 @@ namespace winrt::Microsoft::Terminal::Settings::Editor::implementation
|
||||
{
|
||||
winrt::hstring DisplayTextLocalized;
|
||||
std::optional<winrt::hstring> DisplayTextNeutral = std::nullopt;
|
||||
winrt::hstring SecondaryLabelLocalized;
|
||||
const IndexEntry* Entry = nullptr;
|
||||
|
||||
std::array<std::pair<std::optional<winrt::hstring>, int>, 2> GetSearchableFields() const;
|
||||
|
||||
@@ -194,6 +194,39 @@ foreach ($xamlFile in Get-ChildItem -Path $SourceDir -Filter *.xaml)
|
||||
File = $filename
|
||||
}
|
||||
}
|
||||
elseif ($filename -eq "Profiles_Base.xaml")
|
||||
{
|
||||
# The navigator cards below are special:
|
||||
# - no UID because we want to reuse existing resources to reduce localization burden
|
||||
# - when selected, we want to navigate to the subpage (not focus the navigator)
|
||||
$navigators = @(
|
||||
@{ Resource = "Profile_Appearance/Header"; SubPage = "BreadcrumbSubPage::Profile_Appearance" }
|
||||
@{ Resource = "Profile_Terminal/Header"; SubPage = "BreadcrumbSubPage::Profile_Terminal" }
|
||||
@{ Resource = "Profile_Advanced/Header"; SubPage = "BreadcrumbSubPage::Profile_Advanced" }
|
||||
)
|
||||
foreach ($nav in $navigators)
|
||||
{
|
||||
# Build-time entry: searchable from the profile defaults context
|
||||
$entries += [pscustomobject]@{
|
||||
ResourceName = $nav.Resource
|
||||
ParentPage = $pageClass
|
||||
NavigationParam = $ClassMap[$pageClass].NavigationParam
|
||||
SubPage = $nav.SubPage
|
||||
ElementName = ""
|
||||
SecondaryResourceName = "Nav_ProfileDefaults/Content"
|
||||
File = $filename
|
||||
}
|
||||
# Partial entry: instantiated per profile at runtime (the navigation arg is the profile VM).
|
||||
$entries += [pscustomobject]@{
|
||||
ResourceName = $nav.Resource
|
||||
ParentPage = $pageClass
|
||||
NavigationParam = $null
|
||||
SubPage = $nav.SubPage
|
||||
ElementName = ""
|
||||
File = $filename
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# Iterate over all local:SettingsCard and local:SettingsExpander nodes
|
||||
foreach ($settingContainer in ($xml.SelectNodes("//local:SettingsCard", $xm) + $xml.SelectNodes("//local:SettingsExpander", $xm)))
|
||||
@@ -287,8 +320,9 @@ function FormatEntry($e)
|
||||
$formattedResourceName = 'USES_RESOURCE(L"{0}")' -f $e.ResourceName
|
||||
$formattedNavigationParam = 'L"{0}"' -f $e.NavigationParam # null Navigation param resolves to empty string
|
||||
$formattedElementName = 'L"{0}"' -f $e.ElementName
|
||||
$formattedSecondary = $e.SecondaryResourceName ? (', USES_RESOURCE(L"{0}")' -f $e.SecondaryResourceName) : ''
|
||||
|
||||
return " IndexEntry{{ {0}, {1}, {2}, {3} }}, // {4}" -f ($formattedResourceName, $formattedNavigationParam, $e.SubPage, $formattedElementName, $e.File)
|
||||
return " IndexEntry{{ {0}, {1}, {2}, {3}{5} }}, // {4}" -f ($formattedResourceName, $formattedNavigationParam, $e.SubPage, $formattedElementName, $e.File, $formattedSecondary)
|
||||
}
|
||||
|
||||
function FormatEntries($es) {
|
||||
@@ -352,6 +386,12 @@ namespace winrt::Microsoft::Terminal::Settings::Editor::implementation
|
||||
|
||||
// x:Name of the SettingContainer to navigate to on the page (i.e. "DefaultProfile")
|
||||
wil::zwstring_view ElementName;
|
||||
|
||||
// Optional resource name for a secondary label shown beneath the primary label in
|
||||
// search results (i.e. "Nav_ProfileDefaults/Content" for the profile-defaults page links).
|
||||
// Empty for most entries.
|
||||
// NOTE: wrapped in USES_RESOURCE() (when set) for the same compile-time validation as ResourceName.
|
||||
wil::zwstring_view SecondaryResourceName;
|
||||
};
|
||||
|
||||
const std::array<IndexEntry, $($buildTimeEntries.Count)>& LoadBuildTimeIndex();
|
||||
@@ -460,4 +500,4 @@ Set-Content -LiteralPath $cppPath -Value $cpp -NoNewline
|
||||
|
||||
Write-Host "Generated:"
|
||||
Write-Host " $headerPath"
|
||||
Write-Host " $cppPath"
|
||||
Write-Host " $cppPath"
|
||||
|
||||
Reference in New Issue
Block a user