Skip to content

Commit cabaa9a

Browse files
committed
Fix grammar errors
1 parent e2c77af commit cabaa9a

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4343
GITHUB_NAME: ${{ github.event.repository.name }}
4444
with:
45-
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
45+
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing its ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
4646
asset_path: /home/runner/work/${{ github.event.repository.name }}/glpi-${{ github.event.repository.name }}-${{ steps.build_.outputs.tag }}.tar.bz2
4747
asset_name: glpi-${{ github.event.repository.name }}-${{ steps.build_.outputs.tag }}.tar.bz2
4848
asset_content_type: application/zip

inc/addressing.class.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class PluginAddressingAddressing extends CommonDBTM {
4343

4444
static function getTypeName($nb = 0) {
4545

46-
return _n('IP Adressing', 'IP Adressing', $nb, 'addressing');
46+
return _n('IP Addressing', 'IP Addressing', $nb, 'addressing');
4747
}
4848

4949
static function getIcon() {
@@ -956,7 +956,7 @@ static function processMassiveActionsForOneItemtype(MassiveAction $ma, CommonDBT
956956
/**
957957
* Type than could be linked to a Rack
958958
*
959-
* @param $all boolean, all type, or only allowed ones
959+
* @param $all boolean all type, or only allowed ones
960960
*
961961
* @return array of types
962962
**/
@@ -1079,4 +1079,3 @@ static function removeRightsFromSession() {
10791079
}
10801080
}
10811081
}
1082-

inc/ipcomment.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class PluginAddressingIpcomment extends CommonDBTM
4141
static function getTypeName($nb = 0)
4242
{
4343

44-
return _n('IP Adressing', 'IP Adressing', $nb, 'addressing');
44+
return _n('IP Addressing', 'IP Addressing', $nb, 'addressing');
4545
}
4646

4747

inc/pinginfo.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class PluginAddressingPinginfo extends CommonDBTM {
3939

4040
static function getTypeName($nb = 0) {
4141

42-
return _n('IP Adressing', 'IP Adressing', $nb, 'addressing');
42+
return _n('IP Addressing', 'IP Addressing', $nb, 'addressing');
4343
}
4444

4545
/**

inc/profile.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public function getTabNameForItem(CommonGLPI $item, $withtemplate = 0)
108108
{
109109
if ($item->getType() == 'Profile') {
110110
if ($item->getField('interface') == 'central') {
111-
return _n('IP Adressing', 'IP Adressing', 2, 'addressing');
111+
return _n('IP Addressing', 'IP Addressing', 2, 'addressing');
112112
}
113113
return '';
114114
}

setup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ function plugin_init_addressing()
8181
function plugin_version_addressing()
8282
{
8383
return [
84-
'name' => _n('IP Adressing', 'IP Adressing', 2, 'addressing'),
84+
'name' => _n('IP Addressing', 'IP Addressing', 2, 'addressing'),
8585
'version' => PLUGIN_ADDRESSING_VERSION,
8686
'author' => 'Gilles Portheault, Xavier Caillaud, Remi Collet, Nelly Mahu-Lasson',
8787
'license' => 'GPLv2+',

0 commit comments

Comments
 (0)