Skip to content

Commit

Permalink
Remove references to “instance” (#1743)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed May 7, 2024
1 parent f56049e commit fa401f6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ identities as user properties.

## Usage

On my Jenkins instance, I'm authenticated as "nicolas". As I want to use
On my Jenkins controller, I'm authenticated as "nicolas". As I want to use
the same identity for commits on repositories, I can setup an additional
identity for my account on googlecode :
![](docs/images/Capture_d’écran_2012-08-21_à_15.03.47.png)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ until you exactly have the same ID in jenkins and SCM.</p>
This plugin uses this extension point to let user configure external
identities as user properties.</p>
<h2>Usage</h2>
<p>On my Jenkins instance, I'm authenticated as "nicolas". As I want to use
<p>On my Jenkins controller, I'm authenticated as "nicolas". As I want to use
the same identity for commits on repositories, I can setup an additional
identity for my account on googlecode :
<img src="docs/images/Capture_d%E2%80%99%C3%A9cran_2012-08-21_%C3%A0_15.03.47.png" alt=""></p>
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugin-site/src/components/InstallInstructions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function InstallInstructions({isShowInstructions, toggleShowInstructions, plugin
<a href="#releases" onClick={e=>{toggleShowInstructions(e);navigate(`/${pluginId}/releases/`);}}>
{'releases'}
</a>
{' and upload it to your Jenkins instance.'}
{' and upload it to your Jenkins controller.'}
</li>
</ol>
</ModalBody>
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugin-site/src/components/Plugin.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function Plugin({plugin: {name, title, stats, labels, excerpt, developers, build
<h4>{cleanTitle(title)}</h4>
</div>
<div className="Plugin--InstallsContainer">
{`Used by ${installStr} of instances`}
{`Used by ${installStr} of controllers`}
</div>
<div className="Plugin--VersionContainer">
<span className="jc">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function PluginReadableInstalls({currentInstalls, percentage}) {
return <h5>No usage data available</h5>;
}
return (<h5 title={`Total: ${new Intl.NumberFormat('en-US').format(currentInstalls)}`}>
{`Installed on ${formatPercentage(percentage)} of\u{A0}instances`}
{`Installed on ${formatPercentage(percentage)} of\u{A0}controllers`}
</h5>);
}

Expand Down

0 comments on commit fa401f6

Please sign in to comment.