Skip to content

Commit 13cf440

Browse files
authored
Merge pull request #310 from Leinad4Mind/fix-typos
Fix all typos
2 parents eac4711 + 7820196 commit 13cf440

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+76
-71
lines changed

.gitattributes

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
.gitattributes export-ignore
2-
.idea export-ignore
3-
phpunit.xml.dist export-ignore
4-
.vscode export-ignore
5-
.codegpt export-ignore
6-
gallery-core.json export-ignore
1+
.gitattributes export-ignore
2+
.idea export-ignore
3+
phpunit.xml.dist export-ignore
4+
.vscode export-ignore
5+
.codegpt export-ignore
6+
gallery-core.json export-ignore
77
gallery-cleanup.json export-ignore
8-
gallery-exif.json export-ignore
9-
gallery-import.json export-ignore
8+
gallery-exif.json export-ignore
9+
gallery-import.json export-ignore

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ env:
3636
- IMAGE_ICC="1" # Should we run icc profile sniffer on your images?
3737
- EPV="1" # Should we run EPV (Extension Pre Validator) on your code?
3838
- PHPBB_BRANCH="3.3.x"
39-
- COVERAGE="1" # Should we run covarage?
39+
- COVERAGE="1" # Should we run coverage?
4040

4141
branches:
4242
only:
@@ -58,7 +58,7 @@ install:
5858
- sh -c "if [ '$COVER' != '0' ]; then sed -i '/phpenv/d' travis/setup-php-extensions.sh; fi"
5959
- travis/prepare-extension.sh $EXTNAME $PHPBB_BRANCH
6060
- travis/setup-phpbb.sh $DB $TRAVIS_PHP_VERSION
61-
- sh -c "if [ '$COVERAGE' != '0' ] && [ '$COVER' != '0' ]; then phpBB/ext/$EXTNAME/travis/prepare-covarage.sh $DB $TRAVIS_PHP_VERSION $EXTNAME; fi"
61+
- sh -c "if [ '$COVERAGE' != '0' ] && [ '$COVER' != '0' ]; then phpBB/ext/$EXTNAME/travis/prepare-coverage.sh $DB $TRAVIS_PHP_VERSION $EXTNAME; fi"
6262
- ../$EXTNAME/travis/prepare-epv.sh $EPV $NOTESTS
6363

6464
before_script:

acpcleanup/acp/main_info.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
*
4-
* @package Gallery - ACP CleanUp Extension
4+
* @package phpBB Gallery - ACP CleanUp Extension
55
* @copyright (c) 2012 nickvergessen - http://www.flying-bits.org/
66
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
77
*

acpcleanup/acp/main_module.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
*
4-
* @package Gallery - ACP CleanUp Extension
4+
* @package phpBB Gallery - ACP CleanUp Extension
55
* @copyright (c) 2012 nickvergessen - http://www.flying-bits.org/
66
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
77
*

acpcleanup/cleanup.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -144,16 +144,16 @@ public function delete_author_comments($comment_ids)
144144
}
145145

146146
/**
147-
* Delete unwanted and obsolent personal galleries.
147+
* Delete unwanted and obsolete personal galleries.
148148
*
149149
* @param array $unwanted_pegas User IDs we want to delete the pegas.
150-
* @param array $obsolent_pegas User IDs we want to delete the pegas.
150+
* @param array $obsolete_pegas User IDs we want to delete the pegas.
151151
* @return array Language keys for the success messages.
152152
*/
153-
public function delete_pegas($unwanted_pegas, $obsolent_pegas)
153+
public function delete_pegas($unwanted_pegas, $obsolete_pegas)
154154
{
155155

156-
$delete_pegas = array_merge($unwanted_pegas, $obsolent_pegas);
156+
$delete_pegas = array_merge($unwanted_pegas, $obsolete_pegas);
157157

158158
$delete_images = $delete_albums = $user_image_count = array();
159159
$num_pegas = 0;
@@ -267,7 +267,7 @@ public function delete_pegas($unwanted_pegas, $obsolent_pegas)
267267
\phpbbgallery\core\user::update_users($delete_pegas, array('personal_album_id' => 0));
268268
*/
269269
$return = array();
270-
if ($obsolent_pegas)
270+
if ($obsolete_pegas)
271271
{
272272
$return[] = 'CLEAN_PERSONALS_DONE';
273273
}

acpcleanup/language/bg/info_acp_gallery_cleanup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
*
4-
* @package Gallery - ACP CleanUp Extension [English]
4+
* @package phpBB Gallery - ACP CleanUp Extension [English]
55
* @copyright (c) 2012 nickvergessen - http://www.flying-bits.org/
66
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
77
*

acpcleanup/language/de/info_acp_gallery_cleanup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
*
4-
* @package Gallery - ACP CleanUp Extension [German]
4+
* @package phpBB Gallery - ACP CleanUp Extension [German]
55
* @copyright (c) 2012 nickvergessen - http://www.flying-bits.org/
66
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
77
*

acpcleanup/language/en/info_acp_gallery_cleanup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
*
4-
* @package Gallery - ACP CleanUp Extension [English]
4+
* @package phpBB Gallery - ACP CleanUp Extension [English]
55
* @copyright (c) 2012 nickvergessen - http://www.flying-bits.org/
66
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
77
*

acpcleanup/language/fr/info_acp_gallery_cleanup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
*
4-
* @package Gallery - ACP CleanUp Extension [French]
4+
* @package phpBB Gallery - ACP CleanUp Extension [French]
55
* @copyright (c) 2012 nickvergessen - http://www.flying-bits.org/
66
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
77
* @translator fr (c) pokyto aka le.poke http://www.lestontonsfraggers.com inspired by darky - http://www.foruminfopc.fr/ and Team http://www.phpbb-fr.com/

acpcleanup/language/it/info_acp_gallery_cleanup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
*
4-
* @package Gallery - ACP CleanUp Extension [English]
4+
* @package phpBB Gallery - ACP CleanUp Extension [English]
55
* @copyright (c) 2012 nickvergessen - http://www.flying-bits.org/
66
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
77
*

0 commit comments

Comments
 (0)