mirror of
https://github.com/microsoft/terminal.git
synced 2026-07-08 18:16:28 +00:00
Address Pankaj's feedback
Changes include: - Nav_Appearance.Content: update comment to refer to "personalization" - GlobalAppearance.xaml: move Disable Animations into its own card - GlobalAppearance.xaml: move "Hide the title bar" into "title bar prop" - Interaction.xaml: separate URL settings - Interaction.xaml: move copyOnSelect into "Copy behavior" expander
This commit is contained in:
@@ -63,33 +63,41 @@
|
||||
<CheckBox x:Uid="Globals_EnableUnfocusedAcrylic"
|
||||
IsChecked="{x:Bind ViewModel.EnableUnfocusedAcrylic, Mode=TwoWay}" />
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Disable Animations -->
|
||||
<!-- NOTE: the UID is "DisablePaneAnimationsReversed" not "DisablePaneAnimations". See GH#9124 for more details. -->
|
||||
<local:SettingsCard x:Name="DisableAnimations"
|
||||
ContentAlignment="Left">
|
||||
<CheckBox x:Uid="Globals_DisableAnimationsReversed"
|
||||
IsChecked="{x:Bind ViewModel.InvertedDisableAnimations, Mode=TwoWay}" />
|
||||
</local:SettingsCard>
|
||||
</local:SettingsExpander.Items>
|
||||
</local:SettingsExpander>
|
||||
|
||||
<!-- Disable Animations -->
|
||||
<!-- NOTE: the UID is "DisablePaneAnimationsReversed" not "DisablePaneAnimations". See GH#9124 for more details. -->
|
||||
<local:SettingsCard x:Name="DisableAnimations"
|
||||
x:Uid="Globals_DisableAnimationsReversed">
|
||||
<local:SettingsCard.HeaderIcon>
|
||||
<FontIcon Glyph="" />
|
||||
</local:SettingsCard.HeaderIcon>
|
||||
<ToggleSwitch IsOn="{x:Bind ViewModel.InvertedDisableAnimations, Mode=TwoWay}"
|
||||
Style="{StaticResource ToggleSwitchInExpanderStyle}" />
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Section: Tabs and layout -->
|
||||
<TextBlock x:Uid="Globals_Section_TabsLayout"
|
||||
Style="{StaticResource TextBlockSubHeaderStyle}" />
|
||||
|
||||
<!-- Show Titlebar -->
|
||||
<local:SettingsExpander x:Name="ShowTitlebar"
|
||||
x:Uid="Globals_ShowTitlebar"
|
||||
<!-- Title bar properties -->
|
||||
<local:SettingsExpander x:Name="TitlebarProperties"
|
||||
x:Uid="Globals_TitlebarProperties"
|
||||
IsExpanded="True">
|
||||
<local:SettingsExpander.HeaderIcon>
|
||||
<FontIcon Glyph="" />
|
||||
</local:SettingsExpander.HeaderIcon>
|
||||
<ToggleSwitch IsOn="{x:Bind ViewModel.ShowTabsInTitlebar, Mode=TwoWay}"
|
||||
Style="{StaticResource ToggleSwitchInExpanderStyle}"
|
||||
Toggled="{x:Bind ViewModel.ShowTitlebarToggled}" />
|
||||
<local:SettingsExpander.Items>
|
||||
|
||||
<!-- Hide the title bar -->
|
||||
<local:SettingsCard x:Name="ShowTitlebar"
|
||||
ContentAlignment="Left">
|
||||
<CheckBox x:Uid="Globals_ShowTitlebar"
|
||||
Click="{x:Bind ViewModel.ShowTitlebarToggled}"
|
||||
IsChecked="{x:Bind ViewModel.ShowTabsInTitlebar, Mode=TwoWay}" />
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Always show tabs -->
|
||||
<local:SettingsCard x:Name="AlwaysShowTabs"
|
||||
ContentAlignment="Left">
|
||||
|
||||
@@ -31,17 +31,22 @@
|
||||
Margin="0,20,0,4"
|
||||
Style="{StaticResource TextBlockSubHeaderStyle}" />
|
||||
|
||||
<!-- Copy On Select -->
|
||||
<local:SettingsExpander x:Name="CopyOnSelect"
|
||||
x:Uid="Globals_CopyOnSelect"
|
||||
<!-- Copy Behavior -->
|
||||
<local:SettingsExpander x:Name="CopyBehavior"
|
||||
x:Uid="Interaction_CopyBehavior"
|
||||
IsExpanded="True">
|
||||
<ToggleSwitch IsOn="{x:Bind ViewModel.CopyOnSelect, Mode=TwoWay}"
|
||||
Style="{StaticResource ToggleSwitchInExpanderStyle}" />
|
||||
<local:SettingsExpander.HeaderIcon>
|
||||
<FontIcon Glyph="" />
|
||||
</local:SettingsExpander.HeaderIcon>
|
||||
<local:SettingsExpander.Items>
|
||||
|
||||
<!-- Copy On Select -->
|
||||
<local:SettingsCard x:Name="CopyOnSelect"
|
||||
ContentAlignment="Left">
|
||||
<CheckBox x:Uid="Globals_CopyOnSelect"
|
||||
IsChecked="{x:Bind ViewModel.CopyOnSelect, Mode=TwoWay}" />
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Trim Block Selection -->
|
||||
<local:SettingsCard x:Name="TrimBlockSelection"
|
||||
ContentAlignment="Left">
|
||||
@@ -205,23 +210,25 @@
|
||||
Style="{StaticResource TextBlockSubHeaderStyle}" />
|
||||
|
||||
<!-- Detect URLs -->
|
||||
<local:SettingsExpander x:Name="DetectURLs"
|
||||
x:Uid="Globals_DetectURLs"
|
||||
IsExpanded="True">
|
||||
<local:SettingsCard x:Name="DetectURLs"
|
||||
x:Uid="Globals_DetectURLs">
|
||||
<local:SettingsCard.HeaderIcon>
|
||||
<FontIcon Glyph="" />
|
||||
</local:SettingsCard.HeaderIcon>
|
||||
<ToggleSwitch IsOn="{x:Bind ViewModel.DetectURLs, Mode=TwoWay}"
|
||||
Style="{StaticResource ToggleSwitchInExpanderStyle}" />
|
||||
<local:SettingsExpander.HeaderIcon>
|
||||
<FontIcon Glyph="" />
|
||||
</local:SettingsExpander.HeaderIcon>
|
||||
<local:SettingsExpander.Items>
|
||||
<local:SettingsCard x:Name="SearchWebDefaultQueryUrl"
|
||||
x:Uid="Globals_SearchWebDefaultQueryUrl">
|
||||
<TextBox IsSpellCheckEnabled="False"
|
||||
Style="{StaticResource TextBoxSettingStyle}"
|
||||
Text="{x:Bind ViewModel.SearchWebDefaultQueryUrl, Mode=TwoWay}" />
|
||||
</local:SettingsCard>
|
||||
</local:SettingsExpander.Items>
|
||||
</local:SettingsExpander>
|
||||
</local:SettingsCard>
|
||||
|
||||
<!-- Search web default query URL -->
|
||||
<local:SettingsCard x:Name="SearchWebDefaultQueryUrl"
|
||||
x:Uid="Globals_SearchWebDefaultQueryUrl">
|
||||
<local:SettingsCard.HeaderIcon>
|
||||
<FontIcon Glyph="" />
|
||||
</local:SettingsCard.HeaderIcon>
|
||||
<TextBox IsSpellCheckEnabled="False"
|
||||
Style="{StaticResource TextBoxSettingStyle}"
|
||||
Text="{x:Bind ViewModel.SearchWebDefaultQueryUrl, Mode=TwoWay}" />
|
||||
</local:SettingsCard>
|
||||
|
||||
</StackPanel>
|
||||
</Page>
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>Nach dem aktuellen Tab</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>Automatisches kopieren der Auswahl in die Zwischenablage</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -490,14 +490,10 @@
|
||||
<value>An das zuletzt verwendete Fenster auf diesem Desktop anhängen</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>Titelleiste ausblenden (Neustart erforderlich)</value>
|
||||
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>Wenn diese Option deaktiviert ist, wird die Titelleiste über den Registerkarten angezeigt.</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>Acrylmaterial in der Registerkartenzeile verwenden</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -636,7 +632,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>Darstellung</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>Farbschemen</value>
|
||||
@@ -1702,7 +1698,7 @@
|
||||
<value>Passen Sie die Deckkraft des Terminals an, indem Sie scrollen, während Sie die STRG- und UMSCHALTTASTE gedrückt halten</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>Bereichsanimationen</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>After the current tab</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>Automatically copy selection to clipboard</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -490,13 +490,17 @@
|
||||
<value>Attach to the most recently used window on this desktop</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>Hide the title bar (requires relaunch)</value>
|
||||
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>When disabled, the title bar will appear above the tabs.</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
<data name="Globals_TitlebarProperties.Header" xml:space="preserve">
|
||||
<value>Title bar properties</value>
|
||||
<comment>Header for a group of settings that control the appearance and behavior of the title bar.</comment>
|
||||
</data>
|
||||
<data name="Globals_TitlebarProperties.Description" xml:space="preserve">
|
||||
<value>When the title bar is hidden, tabs move into the title bar and are always shown.</value>
|
||||
<comment>A description explaining what happens to the tabs when the title bar is hidden. "Title bar" refers to the bar at the top of the window.</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>Use acrylic material in the tab row</value>
|
||||
@@ -636,7 +640,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>Personalization</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>Color schemes</value>
|
||||
@@ -1714,7 +1718,7 @@
|
||||
<value>Adjust terminal opacity by scrolling while holding the Ctrl and Shift keys</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>Pane animations</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
@@ -2802,6 +2806,10 @@
|
||||
<value>Mouse and scrolling</value>
|
||||
<comment>Title of a section that groups settings related to mouse and scroll wheel input.</comment>
|
||||
</data>
|
||||
<data name="Interaction_CopyBehavior.Header" xml:space="preserve">
|
||||
<value>Copy behavior</value>
|
||||
<comment>Header for a group of settings related to copying text to the clipboard.</comment>
|
||||
</data>
|
||||
<data name="Interaction_PasteBehavior.Header" xml:space="preserve">
|
||||
<value>Paste behavior</value>
|
||||
<comment>Header for a group of settings related to cleanup and confirmation behavior for incoming pastes.</comment>
|
||||
@@ -2823,7 +2831,7 @@
|
||||
<comment>Title of a section that groups settings related to the terminal's visual appearance.</comment>
|
||||
</data>
|
||||
<data name="Globals_Section_TabsLayout.Text" xml:space="preserve">
|
||||
<value>Tabs and titlebar</value>
|
||||
<value>Tabs and title bar</value>
|
||||
<comment>Title of a section that groups settings related to tabs and pane layout.</comment>
|
||||
</data>
|
||||
<data name="Globals_Section_WindowBehavior.Text" xml:space="preserve">
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>Después de la pestaña actual</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>Copiar la selección automáticamente en el portapapeles</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -490,14 +490,10 @@
|
||||
<value>Adjuntar a la ventana de uso más reciente en este escritorio</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>Ocultar la barra de título (requiere reiniciar)</value>
|
||||
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>Cuando está deshabilitada, la barra de título aparecerá encima de las pestañas.</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>Usar material acrílico en la fila de tabulación</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -636,7 +632,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>Apariencia</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>Combinaciones de colores</value>
|
||||
@@ -1702,7 +1698,7 @@
|
||||
<value>Ajuste la opacidad del terminal desplazándose mientras mantiene presionadas las teclas CTRL y Mayús</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>Animaciones de panel</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>Après l'onglet actuel</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>Copier automatiquement la sélection dans le Presse-papiers</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -490,14 +490,10 @@
|
||||
<value>Attacher à la dernière fenêtre utilisée sur ce bureau</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>Masquer la barre de titre (redémarrage nécessaire)</value>
|
||||
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>Une fois désactivée, la barre de titre s’affiche au-dessus des onglets.</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>Utiliser un matériau acrylique dans la ligne de l’onglet</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -636,7 +632,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>Apparence</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>Jeux de couleurs</value>
|
||||
@@ -1702,7 +1698,7 @@
|
||||
<value>Ajustez l’opacité du terminal en faisant défiler tout en maintenant les touches Ctrl et Maj enfoncées</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>Animations du volet</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>Dopo la scheda corrente</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>Copia automaticamente la selezione negli Appunti</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -490,14 +490,10 @@
|
||||
<value>Allega alla finestra usata più di recente su questo desktop</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>Nascondi la barra del titolo (sarà necessario riavviare)</value>
|
||||
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>Se disabilitata, la barra del titolo verrà visualizzata sopra le schede.</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>Usa il materiale acrilico nella riga di tabulazione</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -636,7 +632,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>Aspetto</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>Combinazioni di colori</value>
|
||||
@@ -1702,7 +1698,7 @@
|
||||
<value>Regola l'opacità del terminale scorrendo mentre tieni premuti i tasti CTRL e MAIUSC</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>Riquadro animazioni</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>現在のタブ以降</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>選択範囲をクリップボードに自動でコピーする</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -490,14 +490,10 @@
|
||||
<value>このデスクトップで最近使用したウィンドウに接続する</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>タイトル バーを非表示にする (再起動が必要)</value>
|
||||
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>無効にすると、タイトル バーがタブの上に表示されます。</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>タブ行にアクリル素材を使用する</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -636,7 +632,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>外観</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>配色</value>
|
||||
@@ -1702,7 +1698,7 @@
|
||||
<value>Ctrl キーと Shift キーを押しながらスクロールして、ターミナルの不透明度を調整します</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>ペインのアニメーション</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>현재 탭 이후</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>선택 영역을 클립보드에 자동으로 복사</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -490,14 +490,10 @@
|
||||
<value>이 데스크톱에서 가장 최근에 사용한 창에 첨부</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>제목 표시줄 숨기기(다시 시작해야 함)</value>
|
||||
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>사용하지 않도록 설정하면 제목 표시줄이 탭 위에 표시됩니다.</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>탭 행에서 아크릴 재질 사용</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -636,7 +632,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>모양</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>색 구성표</value>
|
||||
@@ -1702,7 +1698,7 @@
|
||||
<value>Ctrl 키와 Shift 키를 누른 상태에서 스크롤하여 터미널 불투명도 조정</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>창 애니메이션</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>Após a guia atual</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>Copiar a seleção automaticamente para a área de transferência</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -490,14 +490,10 @@
|
||||
<value>Anexar à última janela usada nesta área de trabalho</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>Oculta a barra do título (requer reinicialização)</value>
|
||||
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>Quando desabilitada, a barra de título aparecerá acima das guias.</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>Usar material acrílico na linha da guia</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -636,7 +632,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>Aparência</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>Esquema de cores</value>
|
||||
@@ -1702,7 +1698,7 @@
|
||||
<value>Ajustar a opacidade do terminal ao rolar enquanto mantém as teclas Ctrl e Shift</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>Animações do painel</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>Αƒŧëѓ ťнė сúѓŗėπτ τăъ !!! !!!</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>Āúтǿmаţιĉąľľў сοφý şèℓэċтïøñ ţō ĉļĩρьóąґď !!! !!! !!! !!!</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -490,14 +490,10 @@
|
||||
<value>Äţŧαĉђ τǿ τħе mοѕт ѓěςęńτļγ ûѕєď ŵíñðοω øи тћϊѕ ďёšкτǿφ !!! !!! !!! !!! !!! !</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>Ĥìđε тħê τīţĺё ъªř (ŗėqūΐŗêś яеľаϋʼnčћ) !!! !!! !!! !!</value>
|
||||
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>Ẃћèп ðϊŝαъłėð, тнė ťĭτłê вąѓ ẁιĺł ąφφёǻŕ äвöνė ŧħė ťãьś. !!! !!! !!! !!! !!! !</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>Ūŝē àςѓýłīć мãτęѓįάł ϊή ťнę ťāъ гоω !!! !!! !!! !</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -636,7 +632,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>Λρρёªгąńсё !!!</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>Ċōľøя š¢нēměѕ !!! </value>
|
||||
@@ -1702,7 +1698,7 @@
|
||||
<value>Ąδĵüšţ ŧęřмìńąĺ ôрǻčĩτў ьγ šćřοļĺįήĝ ẅђϊłę ħōļδîʼnğ ťђз Çťгł àиδ Śђĭƒт ķęÿŝ !!! !!! !!! !!! !!! !!! !!! !</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>Ρǻйě ǻйϊмäţіőηş !!! !</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>Αƒŧëѓ ťнė сúѓŗėπτ τăъ !!! !!!</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>Āúтǿmаţιĉąľľў сοφý şèℓэċтïøñ ţō ĉļĩρьóąґď !!! !!! !!! !!!</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -490,14 +490,10 @@
|
||||
<value>Äţŧαĉђ τǿ τħе mοѕт ѓěςęńτļγ ûѕєď ŵíñðοω øи тћϊѕ ďёšкτǿφ !!! !!! !!! !!! !!! !</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>Ĥìđε тħê τīţĺё ъªř (ŗėqūΐŗêś яеľаϋʼnčћ) !!! !!! !!! !!</value>
|
||||
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>Ẃћèп ðϊŝαъłėð, тнė ťĭτłê вąѓ ẁιĺł ąφφёǻŕ äвöνė ŧħė ťãьś. !!! !!! !!! !!! !!! !</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>Ūŝē àςѓýłīć мãτęѓįάł ϊή ťнę ťāъ гоω !!! !!! !!! !</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -636,7 +632,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>Λρρёªгąńсё !!!</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>Ċōľøя š¢нēměѕ !!! </value>
|
||||
@@ -1702,7 +1698,7 @@
|
||||
<value>Ąδĵüšţ ŧęřмìńąĺ ôрǻčĩτў ьγ šćřοļĺįήĝ ẅђϊłę ħōļδîʼnğ ťђз Çťгł àиδ Śђĭƒт ķęÿŝ !!! !!! !!! !!! !!! !!! !!! !</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>Ρǻйě ǻйϊмäţіőηş !!! !</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>Αƒŧëѓ ťнė сúѓŗėπτ τăъ !!! !!!</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>Āúтǿmаţιĉąľľў сοφý şèℓэċтïøñ ţō ĉļĩρьóąґď !!! !!! !!! !!!</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -490,14 +490,10 @@
|
||||
<value>Äţŧαĉђ τǿ τħе mοѕт ѓěςęńτļγ ûѕєď ŵíñðοω øи тћϊѕ ďёšкτǿφ !!! !!! !!! !!! !!! !</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>Ĥìđε тħê τīţĺё ъªř (ŗėqūΐŗêś яеľаϋʼnčћ) !!! !!! !!! !!</value>
|
||||
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>Ẃћèп ðϊŝαъłėð, тнė ťĭτłê вąѓ ẁιĺł ąφφёǻŕ äвöνė ŧħė ťãьś. !!! !!! !!! !!! !!! !</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>Ūŝē àςѓýłīć мãτęѓįάł ϊή ťнę ťāъ гоω !!! !!! !!! !</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -636,7 +632,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>Λρρёªгąńсё !!!</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>Ċōľøя š¢нēměѕ !!! </value>
|
||||
@@ -1702,7 +1698,7 @@
|
||||
<value>Ąδĵüšţ ŧęřмìńąĺ ôрǻčĩτў ьγ šćřοļĺįήĝ ẅђϊłę ħōļδîʼnğ ťђз Çťгł àиδ Śђĭƒт ķęÿŝ !!! !!! !!! !!! !!! !!! !!! !</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>Ρǻйě ǻйϊмäţіőηş !!! !</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>После текущей вкладки</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>Автоматически копировать выделенный фрагмент в буфер обмена</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -490,14 +490,10 @@
|
||||
<value>Присоединять к последнему использованному окну на этом рабочем столе</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>Скрыть заголовок окна (требуется перезапуск)</value>
|
||||
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>Если этот параметр отключен, строка заголовка будет отображаться над вкладками.</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>Использовать акриловый материал в строке вкладки</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -636,7 +632,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>Оформление</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>Цветовые схемы</value>
|
||||
@@ -1702,7 +1698,7 @@
|
||||
<value>Настройте прозрачность терминала путем прокрутки при нажатых клавишах CTRL и SHIFT</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>Анимация панели</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>Након текуће картице</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>Аутоматски копирај избор у системску оставу</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -475,14 +475,10 @@
|
||||
<value>Прикачи на последње коришћени прозор на овој радној површини</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>Сакриј насловну линију (потребно је поновно покретање)</value>
|
||||
<comment>Header for a control to toggle whether the title bar should be shown or not. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>Када је искључено, линија наслова ће се појавити изнад картица.</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>Користи акрилни материјал у реду картица</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -609,7 +605,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>Изглед</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>Шеме боја</value>
|
||||
@@ -1663,7 +1659,7 @@
|
||||
<value>Подеси непрозирност терминала скроловањем уз притиснуте тастере Ctrl и Shift</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>Анимације панела</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
@@ -282,7 +282,7 @@
|
||||
<value>Після поточної вкладки</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>Автоматично копіювати виділення в буфер обміну</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -501,14 +501,10 @@
|
||||
<value>Приєднати до останнього використаного вікна на цьому робочому столі</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>Приховати рядок заголовка (потрібно перезапустити)</value>
|
||||
<comment>Header for a control to toggle whether the title bar should be shown or not. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>Якщо вимкнено, рядок заголовка з'являтиметься над вкладками.</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>Використовувати акриловий матеріал у рядку вкладок</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -635,7 +631,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>Зовнішній вигляд</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>Кольорові схеми</value>
|
||||
@@ -1721,7 +1717,7 @@
|
||||
<value>Налаштуйте прозорість терміналу, прокручуючи колесо миші, утримуючи клавіші Ctrl і Shift</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>Анімації панелі</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>在当前选项卡之后</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>自动将所选内容复制到剪贴板</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -490,14 +490,10 @@
|
||||
<value>附加到此桌面上最近使用的窗口</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>隐藏标题栏(需要重新启动)</value>
|
||||
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>禁用后,标题栏将显示在选项卡上方。</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>在选项卡行中使用亚克力材料</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -636,7 +632,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>外观</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>配色方案</value>
|
||||
@@ -1702,7 +1698,7 @@
|
||||
<value>按住 Ctrl 和 Shift 键的同时滚动来调整终端不透明度</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>窗格动画</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
<value>在目前索引標籤之後</value>
|
||||
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
|
||||
</data>
|
||||
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
|
||||
<data name="Globals_CopyOnSelect.Content" xml:space="preserve">
|
||||
<value>自動將選取項目複製到剪貼簿</value>
|
||||
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
|
||||
</data>
|
||||
@@ -490,14 +490,10 @@
|
||||
<value>附加到此桌面最近使用的視窗</value>
|
||||
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
|
||||
<data name="Globals_ShowTitlebar.Content" xml:space="preserve">
|
||||
<value>隱藏標題列 (需要重新啟動)</value>
|
||||
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
|
||||
</data>
|
||||
<data name="Globals_ShowTitlebar.Description" xml:space="preserve">
|
||||
<value>停用時,標題列會出現在索引標籤上方。</value>
|
||||
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
|
||||
</data>
|
||||
<data name="Globals_AcrylicTabRow.Content" xml:space="preserve">
|
||||
<value>在索引標籤列中使用壓克力材料</value>
|
||||
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
|
||||
@@ -636,7 +632,7 @@
|
||||
</data>
|
||||
<data name="Nav_Appearance.Content" xml:space="preserve">
|
||||
<value>外觀</value>
|
||||
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
|
||||
<comment>Header for the "personalization" menu item. This navigates to a page that lets you see and modify settings related to personalizing the app's appearance.</comment>
|
||||
</data>
|
||||
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
|
||||
<value>色彩配置</value>
|
||||
@@ -1702,7 +1698,7 @@
|
||||
<value>按住 Ctrl 和 Shift 鍵的同時捲動來調整終端不透明度</value>
|
||||
<comment>Header for a control to toggle opacity changes with scrolling. When enabled, holding the Ctrl and Shift keys while scrolling will increase or decrease the window opacity.</comment>
|
||||
</data>
|
||||
<data name="Globals_DisableAnimationsReversed.Content" xml:space="preserve">
|
||||
<data name="Globals_DisableAnimationsReversed.Header" xml:space="preserve">
|
||||
<value>窗格動畫</value>
|
||||
<comment>Header for a control to toggle animations on panes. "Enabled" value enables the animations.</comment>
|
||||
</data>
|
||||
|
||||
Reference in New Issue
Block a user