Change Soccer to Association Football (Soccer)

This commit is contained in:
Brian Miyaji
2013-12-31 00:12:43 +11:00
parent 037d001494
commit ed352f8e2d
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
global $sportspress_sports; global $sportspress_sports;
$sportspress_sports['soccer'] = array( $sportspress_sports['soccer'] = array(
'name' => __( 'Soccer', 'sportspress' ), 'name' => __( 'Association Football (Soccer)', 'sportspress' ),
'posts' => array( 'posts' => array(
// Statistics // Statistics
'sp_statistic' => array( 'sp_statistic' => array(

View File

@@ -1,5 +1,6 @@
<?php <?php
$sportspress_sports = array(); $sportspress_sports = array();
include_once dirname( __FILE__ ) . '/presets/soccer.php';
include_once dirname( __FILE__ ) . '/presets/football.php'; include_once dirname( __FILE__ ) . '/presets/football.php';
include_once dirname( __FILE__ ) . '/presets/footy.php'; include_once dirname( __FILE__ ) . '/presets/footy.php';
include_once dirname( __FILE__ ) . '/presets/baseball.php'; include_once dirname( __FILE__ ) . '/presets/baseball.php';
@@ -11,7 +12,6 @@ include_once dirname( __FILE__ ) . '/presets/handball.php';
include_once dirname( __FILE__ ) . '/presets/hockey.php'; include_once dirname( __FILE__ ) . '/presets/hockey.php';
include_once dirname( __FILE__ ) . '/presets/racing.php'; include_once dirname( __FILE__ ) . '/presets/racing.php';
include_once dirname( __FILE__ ) . '/presets/rugby.php'; include_once dirname( __FILE__ ) . '/presets/rugby.php';
include_once dirname( __FILE__ ) . '/presets/soccer.php';
include_once dirname( __FILE__ ) . '/presets/swimming.php'; include_once dirname( __FILE__ ) . '/presets/swimming.php';
include_once dirname( __FILE__ ) . '/presets/tennis.php'; include_once dirname( __FILE__ ) . '/presets/tennis.php';
include_once dirname( __FILE__ ) . '/presets/volleyball.php'; include_once dirname( __FILE__ ) . '/presets/volleyball.php';