Browse Source

Merge pull request #5672 from getsentry/ui/fix-resolve-text

workflow: correct resolution text on stream
David Cramer 7 years ago
parent
commit
53c56bc252
1 changed files with 5 additions and 5 deletions
  1. 5 5
      src/sentry/static/sentry/app/views/stream/actions.jsx

+ 5 - 5
src/sentry/static/sentry/app/views/stream/actions.jsx

@@ -293,18 +293,18 @@ const ResolveActions = React.createClass({
       disabled: !this.props.anySelected,
       selectAllActive: this.props.pageSelected,
       extraDescription: extraDescription,
-      buttonTitle: t('Ignore'),
+      buttonTitle: t('Resolve'),
       confirmationQuestion: this.state.allInQuerySelected
-        ? t('Are you sure you want to ignore all issues matching this search query?')
+        ? t('Are you sure you want to resolve all issues matching this search query?')
         : count =>
             tn(
-              'Are you sure you want to ignore this %d issue?',
-              'Are you sure you want to ignore these %d issues?',
+              'Are you sure you want to resolve this %d issue?',
+              'Are you sure you want to resolve these %d issues?',
               count
             ),
       confirmLabel: this.props.allInQuerySelected
         ? t('Ignore all issues')
-        : count => tn('Ignore %d selected issue', 'Ignore %d selected issues', count)
+        : count => tn('Resolve %d selected issue', 'Resolve %d selected issues', count)
     };
     return (
       <div style={{display: 'inline-block'}}>