Browse Source

SONAR-14618 More gender neutral sentence

tags/8.9.0.43852
Mathieu Suen 3 years ago
parent
commit
104ccb8253

+ 1
- 1
server/sonar-auth-github/src/main/java/org/sonar/auth/github/GitHubSettings.java View File

@@ -132,7 +132,7 @@ public class GitHubSettings {
.build(),
PropertyDefinition.builder(GROUPS_SYNC)
.name("Synchronize teams as groups")
.description("For each team he belongs to, the user will be associated to a group named 'Organisation/Team' (if it exists) in SonarQube.")
.description("For each team they belong to, the user will be associated to a group named 'Organisation/Team' (if it exists) in SonarQube.")
.category(CATEGORY)
.subCategory(SUBCATEGORY)
.type(BOOLEAN)

+ 1
- 1
server/sonar-auth-gitlab/src/main/java/org/sonar/auth/gitlab/GitLabSettings.java View File

@@ -122,7 +122,7 @@ public class GitLabSettings {
PropertyDefinition.builder(GITLAB_AUTH_SYNC_USER_GROUPS)
.deprecatedKey("sonar.auth.gitlab.sync_user_groups")
.name("Synchronize user groups")
.description("For each GitLab group he belongs to, the user will be associated to a group with the same name (if it exists) in SonarQube." +
.description("For each GitLab group they belong to, the user will be associated to a group with the same name (if it exists) in SonarQube." +
" If enabled, the GitLab Oauth2 application will need to provide the api scope")
.category(CATEGORY)
.subCategory(SUBCATEGORY)

+ 1
- 1
server/sonar-web/src/main/js/apps/coding-rules/components/App.tsx View File

@@ -150,7 +150,7 @@ export class App extends React.PureComponent<Props, State> {
(prevState.selected !== this.state.selected || prevState.openRule)
) {
// if user simply selected another issue
// or if he went from the source code back to the list of issues
// or if user went from the source code back to the list of issues
this.scrollToSelectedRule();
}
}

+ 1
- 1
server/sonar-web/src/main/js/apps/coding-rules/components/BulkChange.tsx View File

@@ -75,7 +75,7 @@ export default class BulkChange extends React.PureComponent<Props, State> {
};

render() {
// show "Bulk Change" button only if user has at least one QP which he administrates
// show "Bulk Change" button only if user is admin of at least one QP
const canBulkChange = Object.values(this.props.referencedProfiles).some(profile =>
Boolean(profile.actions && profile.actions.edit)
);

+ 1
- 1
server/sonar-web/src/main/js/apps/issues/components/App.tsx View File

@@ -219,7 +219,7 @@ export default class App extends React.PureComponent<Props, State> {
(prevState.selected !== this.state.selected || prevState.openIssue)
) {
// if user simply selected another issue
// or if he went from the source code back to the list of issues
// or if user went from the source code back to the list of issues
this.scrollToSelectedIssue();
}
}

Loading…
Cancel
Save