Browse Source

chore(crons): Capitalization (#43126)

Co-authored-by: Jasmin <77064737+jas-kas@users.noreply.github.com>
Evan Purkhiser 2 years ago
parent
commit
0f6d241478
1 changed files with 3 additions and 3 deletions
  1. 3 3
      static/app/views/monitors/monitors.tsx

+ 3 - 3
static/app/views/monitors/monitors.tsx

@@ -163,7 +163,7 @@ class Monitors extends AsyncView<Props, State> {
               </Fragment>
             ) : (
               <OnboardingPanel image={<img src={onboardingImg} />}>
-                <h3>{t('Let Sentry Monitor Your Recurring Jobs')}</h3>
+                <h3>{t('Let Sentry monitor your recurring jobs')}</h3>
                 <p>
                   {t(
                     "We'll tell you if your recurring jobs are running on schedule, failing, or succeeding."
@@ -171,9 +171,9 @@ class Monitors extends AsyncView<Props, State> {
                 </p>
                 <ButtonList gap={1}>
                   <Button href="https://docs.sentry.io/product/crons" external>
-                    {t('View the Docs')}
+                    {t('Read Docs')}
                   </Button>
-                  <NewMonitorButton>{t('Set Up First Cron Monitor')}</NewMonitorButton>
+                  <NewMonitorButton>{t('Set up first cron monitor')}</NewMonitorButton>
                 </ButtonList>
               </OnboardingPanel>
             )}