소스 검색

Improve phrasing

Daniel Chalmers 3 달 전
부모
커밋
43eb914a62
4개의 변경된 파일7개의 추가작업 그리고 8개의 파일을 삭제
  1. 1 1
      DesktopClock/MainWindow.xaml
  2. 1 1
      DesktopClock/MainWindow.xaml.cs
  3. 5 5
      DesktopClock/SettingsWindow.xaml
  4. 0 1
      README.md

+ 1 - 1
DesktopClock/MainWindow.xaml

@@ -34,7 +34,7 @@
                       Header="_Copy" />
 
             <MenuItem Command="{Binding HideForNowCommand}"
-                      Header="_Hide for now" />
+                      Header="_Hide" />
 
             <Separator />
 

+ 1 - 1
DesktopClock/MainWindow.xaml.cs

@@ -83,7 +83,7 @@ public partial class MainWindow : Window
     {
         if (!Settings.Default.TipsShown.HasFlag(TeachingTips.HideForNow))
         {
-            MessageBox.Show(this, "Minimzing clock. Open later from the taskbar, or tray if enabled.",
+            MessageBox.Show(this, "Minimizing clock. Open later from the taskbar or tray icon.",
                 Title, MessageBoxButton.OK, MessageBoxImage.Information);
 
             Settings.Default.TipsShown |= TeachingTips.HideForNow;

+ 5 - 5
DesktopClock/SettingsWindow.xaml

@@ -115,7 +115,7 @@
 
                     <CheckBox Content="Show in Taskbar"
                               IsChecked="{Binding Settings.ShowInTaskbar, Mode=TwoWay}" />
-                    <TextBlock Text="Show the clock in the bottom bar."
+                    <TextBlock Text="Show the clock in the Windows taskbar."
                                Style="{StaticResource DescriptionTextBlock}" />
 
                     <CheckBox Content="Always on Top"
@@ -128,9 +128,9 @@
                     <TextBlock Text="Start without showing the clock. Click the tray icon to show it."
                                Style="{StaticResource DescriptionTextBlock}" />
 
-                    <CheckBox Content="Burn-in Protection"
+                    <CheckBox Content="Pixel Shifting"
                               IsChecked="{Binding Settings.BurnInMitigation, Mode=TwoWay}" />
-                    <TextBlock Text="Move the clock slightly every so often to protect your screen."
+                    <TextBlock Text="Move the clock slightly to help avoid screen burn-in."
                                Style="{StaticResource DescriptionTextBlock}" />
                 </StackPanel>
             </ScrollViewer>
@@ -382,7 +382,7 @@
                         </Hyperlink>
                     </TextBlock>
 
-                    <TextBlock Text="Chime Sound:"
+                    <TextBlock Text="Alarm Sound:"
                                Style="{StaticResource LabelTextBlock}" />
                     <Grid>
                         <Grid.ColumnDefinitions>
@@ -405,7 +405,7 @@
                     <TextBlock Text="Select a sound file (.wav) to play."
                                Style="{StaticResource DescriptionTextBlock}" />
 
-                    <TextBlock Text="Chime Frequency:"
+                    <TextBlock Text="Alarm Frequency:"
                                Style="{StaticResource LabelTextBlock}" />
                     <Grid>
                         <Grid.ColumnDefinitions>

+ 0 - 1
README.md

@@ -29,4 +29,3 @@ Check out my other projects:
 * 🔄 **[Network Monitor](https://github.com/danielchalmers/Network-Monitor)** - See latency and bandwidth usage (Windows)
 * 🚗 **[Sentry Replay](https://github.com/danielchalmers/SentryReplay)** - Watch your Tesla dashcam clips (Windows)
 * 🪄 **[Radial Actions](https://github.com/danielchalmers/RadialActions)** - Summon a customizable radial menu (Windows)
-* 🛡️ **[Teichos](https://github.com/danielchalmers/Teichos)** - Focus better by blocking distracting websites (Browser)