Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some disclaimer text to the schemes page #12663

Merged
1 commit merged into from
Mar 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/cascadia/TerminalSettingsEditor/ColorSchemes.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@
Margin="{StaticResource StandardIndentMargin}"
Spacing="24">

<TextBlock x:Uid="ColorSchemesDisclaimer"
Margin="{StaticResource StandardIndentMargin}"
Style="{StaticResource DisclaimerStyle}" />

<!-- Select Color and Add New Button -->
<StackPanel Margin="0,5,0,0"
Orientation="Horizontal">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1210,6 +1210,10 @@
<value>Cancel rename</value>
<comment>Text label for a button that can be used to cancel a rename operation during the renaming process.</comment>
</data>
<data name="ColorSchemesDisclaimer.Text" xml:space="preserve">
<value>Schemes defined here can be applied to your profiles under the "Appearances" section of the profile settings pages.</value>
Copy link
Member

@lhecker lhecker Mar 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe something shorter to help more verbose languages? Maybe...

Schemes defined here can be applied under "Profiles" > "Appearances".

(I realize it's already merged, but this is easy to adjust, so...)

<comment>A disclaimer presented at the top of a page. "Appearances" should match Profile_Appearance.Header.</comment>
</data>
<data name="Profile_BaseLayerDisclaimer.Text" xml:space="preserve">
<value>Settings defined here will apply to all profiles unless they are overridden by a profile's settings.</value>
<comment>A disclaimer presented at the top of a page. See "Nav_ProfileDefaults.Content" for a description on what the defaults layer does in the app.</comment>
Expand Down