@@ -966,7 +973,7 @@ if ( !function_exists( 'sp_edit_calendar_table' ) ) {
else:
?>
- |
+ |
|
@@ -1074,27 +1081,37 @@ if ( !function_exists( 'sp_edit_player_list_table' ) ) {
$player_stats ):
- if ( !$player_id ) continue;
- $div = get_term( $player_id, 'sp_season' );
- $number = get_post_meta( $player_id, 'sp_number', true );
- ?>
-
- |
-
-
- |
- $label ):
- $value = sportspress_array_value( $player_stats, $column, '' );
- $placeholder = sportspress_array_value( sportspress_array_value( $placeholders, $player_id, array() ), $column, 0 );
- ?>
- |
-
-
- 0 ):
+ $i = 0;
+ foreach ( $data as $player_id => $player_stats ):
+ if ( !$player_id ) continue;
+ $div = get_term( $player_id, 'sp_season' );
+ $number = get_post_meta( $player_id, 'sp_number', true );
+ ?>
+
+ |
+
+
+ |
+ $label ):
+ $value = sportspress_array_value( $player_stats, $column, '' );
+ $placeholder = sportspress_array_value( sportspress_array_value( $placeholders, $player_id, array() ), $column, 0 );
+ ?>
+ |
+
+
+
+
+ |
+
+ |
+
+
@@ -1607,6 +1624,7 @@ if ( !function_exists( 'sp_event_players_sub_filter' ) ) {
if ( !function_exists( 'sp_get_calendar_data' ) ) {
function sp_get_calendar_data( $post_id = null, $admin = false ) {
+ global $pagenow;
$args = array(
'post_type' => 'sp_event',
@@ -1620,7 +1638,7 @@ if ( !function_exists( 'sp_get_calendar_data' ) ) {
),
);
- if ( $post_id ):
+ if ( $pagenow != 'post-new.php' && $post_id ):
$leagues = get_the_terms( $post_id, 'sp_league' );
$seasons = get_the_terms( $post_id, 'sp_season' );
$venues = get_the_terms( $post_id, 'sp_venue' );
@@ -1671,12 +1689,13 @@ if ( !function_exists( 'sp_get_calendar_data' ) ) {
),
);
endif;
+
+ $events = get_posts( $args );
else:
$usecolumns = null;
+ $events = null;
endif;
- $events = get_posts( $args );
-
if ( $admin ):
return array( $events, $usecolumns );
else:
diff --git a/includes/widgets/class-sp-widget-event-list.php b/includes/widgets/class-sp-widget-event-list.php
index 9a40d796..ec7ccc00 100644
--- a/includes/widgets/class-sp-widget-event-list.php
+++ b/includes/widgets/class-sp-widget-event-list.php
@@ -10,12 +10,13 @@ class SP_Widget_Event_List extends WP_Widget {
extract($args);
$title = apply_filters('widget_title', empty($instance['title']) ? '' : $instance['title'], $instance, $this->id_base);
$id = empty($instance['id']) ? null : $instance['id'];
+ $number = empty($instance['number']) ? null : $instance['number'];
$columns = empty($instance['columns']) ? null : $instance['columns'];
$show_all_events_link = empty($instance['show_all_events_link']) ? false : $instance['show_all_events_link'];
echo $before_widget;
if ( $title )
echo $before_title . $title . $after_title;
- sp_get_template( 'event-list.php', array( 'id' => $id, 'columns' => $columns, 'show_all_events_link' => $show_all_events_link ) );
+ sp_get_template( 'event-list.php', array( 'id' => $id, 'number' => $number, 'columns' => $columns, 'show_all_events_link' => $show_all_events_link ) );
echo $after_widget;
}
@@ -23,6 +24,7 @@ class SP_Widget_Event_List extends WP_Widget {
$instance = $old_instance;
$instance['title'] = strip_tags($new_instance['title']);
$instance['id'] = intval($new_instance['id']);
+ $instance['number'] = intval($new_instance['number']);
$instance['columns'] = (array)$new_instance['columns'];
$instance['show_all_events_link'] = $new_instance['show_all_events_link'];
@@ -30,9 +32,10 @@ class SP_Widget_Event_List extends WP_Widget {
}
function form( $instance ) {
- $instance = wp_parse_args( (array) $instance, array( 'title' => '', 'id' => null, 'columns' => null, 'show_all_events_link' => true ) );
+ $instance = wp_parse_args( (array) $instance, array( 'title' => '', 'id' => null, 'number' => 5, 'columns' => null, 'show_all_events_link' => true ) );
$title = strip_tags($instance['title']);
$id = intval($instance['id']);
+ $number = intval($instance['number']);
$columns = $instance['columns'];
$show_all_events_link = $instance['show_all_events_link'];
?>
@@ -56,6 +59,10 @@ class SP_Widget_Event_List extends WP_Widget {
?>
+
+
+
+
__( 'Event', 'sportspress' ),
'teams' => __( 'Teams', 'sportspress' ),
'time' => __( 'Time', 'sportspress' ),
+ 'venue' => __( 'Venue', 'sportspress' ),
'article' => __( 'Article', 'sportspress' ),
);
$field_name = $this->get_field_name('columns') . '[]';
diff --git a/languages/sportspress-en_US.mo b/languages/sportspress-en_US.mo
index 63eae457..825be5c1 100644
Binary files a/languages/sportspress-en_US.mo and b/languages/sportspress-en_US.mo differ
diff --git a/languages/sportspress-en_US.po b/languages/sportspress-en_US.po
index 99517992..af353e4e 100644
--- a/languages/sportspress-en_US.po
+++ b/languages/sportspress-en_US.po
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: SportsPress\n"
-"POT-Creation-Date: 2014-03-21 20:18+1000\n"
-"PO-Revision-Date: 2014-03-21 20:18+1000\n"
+"POT-Creation-Date: 2014-03-28 13:28+1000\n"
+"PO-Revision-Date: 2014-03-28 13:28+1000\n"
"Last-Translator: ThemeBoy \n"
"Language-Team: ThemeBoy \n"
"Language: en_US\n"
@@ -18,2192 +18,2450 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SearchPath-0: .\n"
-#: functions.php:186
+#: sportspress.php:87 sportspress.php:96
+msgid "Cheatin’ huh?"
+msgstr ""
+
+#: sportspress.php:137
+msgid "Settings"
+msgstr ""
+
+#: includes/class-sp-countries.php:29
+msgid "Africa"
+msgstr ""
+
+#: includes/class-sp-countries.php:30
+msgid "Asia"
+msgstr ""
+
+#: includes/class-sp-countries.php:31
+msgid "Europe"
+msgstr ""
+
+#: includes/class-sp-countries.php:32
+msgid "North America"
+msgstr ""
+
+#: includes/class-sp-countries.php:33
+msgid "Oceania"
+msgstr ""
+
+#: includes/class-sp-countries.php:34
+msgid "South America"
+msgstr ""
+
+#: includes/class-sp-countries.php:38
+msgid "Andorra"
+msgstr ""
+
+#: includes/class-sp-countries.php:39
+msgid "United Arab Emirates"
+msgstr ""
+
+#: includes/class-sp-countries.php:40
+msgid "Afghanistan"
+msgstr ""
+
+#: includes/class-sp-countries.php:41
+msgid "Antigua and Barbuda"
+msgstr ""
+
+#: includes/class-sp-countries.php:42
+msgid "Albania"
+msgstr ""
+
+#: includes/class-sp-countries.php:43
+msgid "Armenia"
+msgstr ""
+
+#: includes/class-sp-countries.php:44
+msgid "Angola"
+msgstr ""
+
+#: includes/class-sp-countries.php:45
+msgid "Argentina"
+msgstr ""
+
+#: includes/class-sp-countries.php:46
+msgid "Austria"
+msgstr ""
+
+#: includes/class-sp-countries.php:47
+msgid "Australia"
+msgstr ""
+
+#: includes/class-sp-countries.php:48
+msgid "Azerbaijan"
+msgstr ""
+
+#: includes/class-sp-countries.php:49
+msgid "Bosnia and Herzegovina"
+msgstr ""
+
+#: includes/class-sp-countries.php:50
+msgid "Barbados"
+msgstr ""
+
+#: includes/class-sp-countries.php:51
+msgid "Bangladesh"
+msgstr ""
+
+#: includes/class-sp-countries.php:52
+msgid "Belgium"
+msgstr ""
+
+#: includes/class-sp-countries.php:53
+msgid "Burkina Faso"
+msgstr ""
+
+#: includes/class-sp-countries.php:54
+msgid "Bulgaria"
+msgstr ""
+
+#: includes/class-sp-countries.php:55
+msgid "Bahrain"
+msgstr ""
+
+#: includes/class-sp-countries.php:56
+msgid "Burundi"
+msgstr ""
+
+#: includes/class-sp-countries.php:57
+msgid "Benin"
+msgstr ""
+
+#: includes/class-sp-countries.php:58
+msgid "Brunei"
+msgstr ""
+
+#: includes/class-sp-countries.php:59
+msgid "Bolivia"
+msgstr ""
+
+#: includes/class-sp-countries.php:60
+msgid "Brazil"
+msgstr ""
+
+#: includes/class-sp-countries.php:61
+msgid "Bahamas"
+msgstr ""
+
+#: includes/class-sp-countries.php:62
+msgid "Bhutan"
+msgstr ""
+
+#: includes/class-sp-countries.php:63
+msgid "Botswana"
+msgstr ""
+
+#: includes/class-sp-countries.php:64
+msgid "Belarus"
+msgstr ""
+
+#: includes/class-sp-countries.php:65
+msgid "Belize"
+msgstr ""
+
+#: includes/class-sp-countries.php:66
+msgid "Canada"
+msgstr ""
+
+#: includes/class-sp-countries.php:67
+msgid "Democratic Republic of the Congo"
+msgstr ""
+
+#: includes/class-sp-countries.php:68
+msgid "Central African Republic"
+msgstr ""
+
+#: includes/class-sp-countries.php:69
+msgid "Republic of the Congo"
+msgstr ""
+
+#: includes/class-sp-countries.php:70
+msgid "Switzerland"
+msgstr ""
+
+#: includes/class-sp-countries.php:71
+msgid "Ivory Coast"
+msgstr ""
+
+#: includes/class-sp-countries.php:72
+msgid "Chile"
+msgstr ""
+
+#: includes/class-sp-countries.php:73
+msgid "Cameroon"
+msgstr ""
+
+#: includes/class-sp-countries.php:74
+msgid "China"
+msgstr ""
+
+#: includes/class-sp-countries.php:75
+msgid "Colombia"
+msgstr ""
+
+#: includes/class-sp-countries.php:76
+msgid "Costa Rica"
+msgstr ""
+
+#: includes/class-sp-countries.php:77
+msgid "Cuba"
+msgstr ""
+
+#: includes/class-sp-countries.php:78
+msgid "Cape Verde"
+msgstr ""
+
+#: includes/class-sp-countries.php:79
+msgid "Cyprus"
+msgstr ""
+
+#: includes/class-sp-countries.php:80
+msgid "Czech Republic"
+msgstr ""
+
+#: includes/class-sp-countries.php:81
+msgid "Germany"
+msgstr ""
+
+#: includes/class-sp-countries.php:82
+msgid "Djibouti"
+msgstr ""
+
+#: includes/class-sp-countries.php:83
+msgid "Denmark"
+msgstr ""
+
+#: includes/class-sp-countries.php:84
+msgid "Dominica"
+msgstr ""
+
+#: includes/class-sp-countries.php:85
+msgid "Dominican Republic"
+msgstr ""
+
+#: includes/class-sp-countries.php:86
+msgid "Algeria"
+msgstr ""
+
+#: includes/class-sp-countries.php:87
+msgid "Ecuador"
+msgstr ""
+
+#: includes/class-sp-countries.php:88
+msgid "Estonia"
+msgstr ""
+
+#: includes/class-sp-countries.php:89
+msgid "Egypt"
+msgstr ""
+
+#: includes/class-sp-countries.php:90
+msgid "Western Sahara"
+msgstr ""
+
+#: includes/class-sp-countries.php:91
+msgid "England"
+msgstr ""
+
+#: includes/class-sp-countries.php:92
+msgid "Eritrea"
+msgstr ""
+
+#: includes/class-sp-countries.php:93
+msgid "Spain"
+msgstr ""
+
+#: includes/class-sp-countries.php:94
+msgid "Ethiopia"
+msgstr ""
+
+#: includes/class-sp-countries.php:95
+msgid "Finland"
+msgstr ""
+
+#: includes/class-sp-countries.php:96
+msgid "Fiji"
+msgstr ""
+
+#: includes/class-sp-countries.php:97
+msgid "Micronesia"
+msgstr ""
+
+#: includes/class-sp-countries.php:98
+msgid "France"
+msgstr ""
+
+#: includes/class-sp-countries.php:99
+msgid "Gabon"
+msgstr ""
+
+#: includes/class-sp-countries.php:100
+msgid "United Kingdom"
+msgstr ""
+
+#: includes/class-sp-countries.php:101
+msgid "Grenada"
+msgstr ""
+
+#: includes/class-sp-countries.php:102
+msgid "Georgia"
+msgstr ""
+
+#: includes/class-sp-countries.php:103
+msgid "Ghana"
+msgstr ""
+
+#: includes/class-sp-countries.php:104
+msgid "Gambia"
+msgstr ""
+
+#: includes/class-sp-countries.php:105
+msgid "Guinea"
+msgstr ""
+
+#: includes/class-sp-countries.php:106
+msgid "Equatorial Guinea"
+msgstr ""
+
+#: includes/class-sp-countries.php:107
+msgid "Greece"
+msgstr ""
+
+#: includes/class-sp-countries.php:108
+msgid "Guatemala"
+msgstr ""
+
+#: includes/class-sp-countries.php:109
+msgid "Guinea-Bissau"
+msgstr ""
+
+#: includes/class-sp-countries.php:110
+msgid "Guyana"
+msgstr ""
+
+#: includes/class-sp-countries.php:111
+msgid "Hong Kong"
+msgstr ""
+
+#: includes/class-sp-countries.php:112
+msgid "Honduras"
+msgstr ""
+
+#: includes/class-sp-countries.php:113
+msgid "Croatia"
+msgstr ""
+
+#: includes/class-sp-countries.php:114
+msgid "Haiti"
+msgstr ""
+
+#: includes/class-sp-countries.php:115
+msgid "Hungary"
+msgstr ""
+
+#: includes/class-sp-countries.php:116
+msgid "Indonesia"
+msgstr ""
+
+#: includes/class-sp-countries.php:117
+msgid "Ireland"
+msgstr ""
+
+#: includes/class-sp-countries.php:118
+msgid "Israel"
+msgstr ""
+
+#: includes/class-sp-countries.php:119
+msgid "India"
+msgstr ""
+
+#: includes/class-sp-countries.php:120
+msgid "Iraq"
+msgstr ""
+
+#: includes/class-sp-countries.php:121
+msgid "Iran"
+msgstr ""
+
+#: includes/class-sp-countries.php:122
+msgid "Iceland"
+msgstr ""
+
+#: includes/class-sp-countries.php:123
+msgid "Italy"
+msgstr ""
+
+#: includes/class-sp-countries.php:124
+msgid "Jamaica"
+msgstr ""
+
+#: includes/class-sp-countries.php:125
+msgid "Jordan"
+msgstr ""
+
+#: includes/class-sp-countries.php:126
+msgid "Japan"
+msgstr ""
+
+#: includes/class-sp-countries.php:127
+msgid "Kenya"
+msgstr ""
+
+#: includes/class-sp-countries.php:128
+msgid "Kyrgyzstan"
+msgstr ""
+
+#: includes/class-sp-countries.php:129
+msgid "Cambodia"
+msgstr ""
+
+#: includes/class-sp-countries.php:130
+msgid "Kiribati"
+msgstr ""
+
+#: includes/class-sp-countries.php:131
+msgid "Comoros"
+msgstr ""
+
+#: includes/class-sp-countries.php:132
+msgid "Saint Kitts and Nevis"
+msgstr ""
+
+#: includes/class-sp-countries.php:133
+msgid "North Korea"
+msgstr ""
+
+#: includes/class-sp-countries.php:134
+msgid "South Korea"
+msgstr ""
+
+#: includes/class-sp-countries.php:135
+msgid "Kuwait"
+msgstr ""
+
+#: includes/class-sp-countries.php:136
+msgid "Kazakhstan"
+msgstr ""
+
+#: includes/class-sp-countries.php:137
+msgid "Laos"
+msgstr ""
+
+#: includes/class-sp-countries.php:138
+msgid "Lebanon"
+msgstr ""
+
+#: includes/class-sp-countries.php:139
+msgid "Saint Lucia"
+msgstr ""
+
+#: includes/class-sp-countries.php:140
+msgid "Liechtenstein"
+msgstr ""
+
+#: includes/class-sp-countries.php:141
+msgid "Sri Lanka"
+msgstr ""
+
+#: includes/class-sp-countries.php:142
+msgid "Liberia"
+msgstr ""
+
+#: includes/class-sp-countries.php:143
+msgid "Lesotho"
+msgstr ""
+
+#: includes/class-sp-countries.php:144
+msgid "Lithuania"
+msgstr ""
+
+#: includes/class-sp-countries.php:145
+msgid "Luxembourg"
+msgstr ""
+
+#: includes/class-sp-countries.php:146
+msgid "Latvia"
+msgstr ""
+
+#: includes/class-sp-countries.php:147
+msgid "Libya"
+msgstr ""
+
+#: includes/class-sp-countries.php:148
+msgid "Morocco"
+msgstr ""
+
+#: includes/class-sp-countries.php:149
+msgid "Monaco"
+msgstr ""
+
+#: includes/class-sp-countries.php:150
+msgid "Moldova"
+msgstr ""
+
+#: includes/class-sp-countries.php:151
+msgid "Montenegro"
+msgstr ""
+
+#: includes/class-sp-countries.php:152
+msgid "Madagascar"
+msgstr ""
+
+#: includes/class-sp-countries.php:153
+msgid "Marshall Islands"
+msgstr ""
+
+#: includes/class-sp-countries.php:154
+msgid "Macedonia"
+msgstr ""
+
+#: includes/class-sp-countries.php:155
+msgid "Mali"
+msgstr ""
+
+#: includes/class-sp-countries.php:156
+msgid "Burma"
+msgstr ""
+
+#: includes/class-sp-countries.php:157
+msgid "Mongolia"
+msgstr ""
+
+#: includes/class-sp-countries.php:158
+msgid "Macau"
+msgstr ""
+
+#: includes/class-sp-countries.php:159
+msgid "Mauritania"
+msgstr ""
+
+#: includes/class-sp-countries.php:160
+msgid "Malta"
+msgstr ""
+
+#: includes/class-sp-countries.php:161
+msgid "Mauritius"
+msgstr ""
+
+#: includes/class-sp-countries.php:162
+msgid "Maldives"
+msgstr ""
+
+#: includes/class-sp-countries.php:163
+msgid "Malawi"
+msgstr ""
+
+#: includes/class-sp-countries.php:164
+msgid "Mexico"
+msgstr ""
+
+#: includes/class-sp-countries.php:165
+msgid "Malaysia"
+msgstr ""
+
+#: includes/class-sp-countries.php:166
+msgid "Mozambique"
+msgstr ""
+
+#: includes/class-sp-countries.php:167
+msgid "Namibia"
+msgstr ""
+
+#: includes/class-sp-countries.php:168
+msgid "Northern Ireland"
+msgstr ""
+
+#: includes/class-sp-countries.php:169
+msgid "Niger"
+msgstr ""
+
+#: includes/class-sp-countries.php:170
+msgid "Nigeria"
+msgstr ""
+
+#: includes/class-sp-countries.php:171
+msgid "Nicaragua"
+msgstr ""
+
+#: includes/class-sp-countries.php:172
+msgid "Netherlands"
+msgstr ""
+
+#: includes/class-sp-countries.php:173
+msgid "Norway"
+msgstr ""
+
+#: includes/class-sp-countries.php:174
+msgid "Nepal"
+msgstr ""
+
+#: includes/class-sp-countries.php:175
+msgid "Nauru"
+msgstr ""
+
+#: includes/class-sp-countries.php:176
+msgid "New Zealand"
+msgstr ""
+
+#: includes/class-sp-countries.php:177
+msgid "Oman"
+msgstr ""
+
+#: includes/class-sp-countries.php:178
+msgid "Panama"
+msgstr ""
+
+#: includes/class-sp-countries.php:179
+msgid "Peru"
+msgstr ""
+
+#: includes/class-sp-countries.php:180
+msgid "Papua New Guinea"
+msgstr ""
+
+#: includes/class-sp-countries.php:181
+msgid "Philippines"
+msgstr ""
+
+#: includes/class-sp-countries.php:182
+msgid "Pakistan"
+msgstr ""
+
+#: includes/class-sp-countries.php:183
+msgid "Poland"
+msgstr ""
+
+#: includes/class-sp-countries.php:184
+msgid "Portugal"
+msgstr ""
+
+#: includes/class-sp-countries.php:185
+msgid "Palau"
+msgstr ""
+
+#: includes/class-sp-countries.php:186
+msgid "Paraguay"
+msgstr ""
+
+#: includes/class-sp-countries.php:187
+msgid "Qatar"
+msgstr ""
+
+#: includes/class-sp-countries.php:188
+msgid "Romania"
+msgstr ""
+
+#: includes/class-sp-countries.php:189
+msgid "Serbia"
+msgstr ""
+
+#: includes/class-sp-countries.php:190
+msgid "Russia"
+msgstr ""
+
+#: includes/class-sp-countries.php:191
+msgid "Rwanda"
+msgstr ""
+
+#: includes/class-sp-countries.php:192
+msgid "Saudi Arabia"
+msgstr ""
+
+#: includes/class-sp-countries.php:193
+msgid "Solomon Islands"
+msgstr ""
+
+#: includes/class-sp-countries.php:194
+msgid "Seychelles"
+msgstr ""
+
+#: includes/class-sp-countries.php:195
+msgid "Sudan"
+msgstr ""
+
+#: includes/class-sp-countries.php:196
+msgid "Sweden"
+msgstr ""
+
+#: includes/class-sp-countries.php:197
+msgid "Scotland"
+msgstr ""
+
+#: includes/class-sp-countries.php:198
+msgid "Singapore"
+msgstr ""
+
+#: includes/class-sp-countries.php:199
+msgid "Slovenia"
+msgstr ""
+
+#: includes/class-sp-countries.php:200
+msgid "Slovakia"
+msgstr ""
+
+#: includes/class-sp-countries.php:201
+msgid "Sierra Leone"
+msgstr ""
+
+#: includes/class-sp-countries.php:202
+msgid "San Marino"
+msgstr ""
+
+#: includes/class-sp-countries.php:203
+msgid "Senegal"
+msgstr ""
+
+#: includes/class-sp-countries.php:204
+msgid "Somalia"
+msgstr ""
+
+#: includes/class-sp-countries.php:205
+msgid "Suriname"
+msgstr ""
+
+#: includes/class-sp-countries.php:206
+msgid "Sao Tome and Principe"
+msgstr ""
+
+#: includes/class-sp-countries.php:207
+msgid "El Salvador"
+msgstr ""
+
+#: includes/class-sp-countries.php:208
+msgid "Swaziland"
+msgstr ""
+
+#: includes/class-sp-countries.php:209
+msgid "Chad"
+msgstr ""
+
+#: includes/class-sp-countries.php:210
+msgid "Togo"
+msgstr ""
+
+#: includes/class-sp-countries.php:211
+msgid "Thailand"
+msgstr ""
+
+#: includes/class-sp-countries.php:212
+msgid "Tajikistan"
+msgstr ""
+
+#: includes/class-sp-countries.php:213
+msgid "East Timor"
+msgstr ""
+
+#: includes/class-sp-countries.php:214
+msgid "Turkmenistan"
+msgstr ""
+
+#: includes/class-sp-countries.php:215
+msgid "Tunisia"
+msgstr ""
+
+#: includes/class-sp-countries.php:216
+msgid "Tonga"
+msgstr ""
+
+#: includes/class-sp-countries.php:217
+msgid "Turkey"
+msgstr ""
+
+#: includes/class-sp-countries.php:218
+msgid "Trinidad and Tobago"
+msgstr ""
+
+#: includes/class-sp-countries.php:219
+msgid "Tuvalu"
+msgstr ""
+
+#: includes/class-sp-countries.php:220
+msgid "Taiwan"
+msgstr ""
+
+#: includes/class-sp-countries.php:221
+msgid "Tanzania"
+msgstr ""
+
+#: includes/class-sp-countries.php:222
+msgid "Ukraine"
+msgstr ""
+
+#: includes/class-sp-countries.php:223
+msgid "Uganda"
+msgstr ""
+
+#: includes/class-sp-countries.php:224
+msgid "United States"
+msgstr ""
+
+#: includes/class-sp-countries.php:225
+msgid "Uruguay"
+msgstr ""
+
+#: includes/class-sp-countries.php:226
+msgid "Uzbekistan"
+msgstr ""
+
+#: includes/class-sp-countries.php:227
+msgid "Vatican City"
+msgstr ""
+
+#: includes/class-sp-countries.php:228
+msgid "Saint Vincent and the Grenadines"
+msgstr ""
+
+#: includes/class-sp-countries.php:229
+msgid "Venezuela"
+msgstr ""
+
+#: includes/class-sp-countries.php:230
+msgid "Vietnam"
+msgstr ""
+
+#: includes/class-sp-countries.php:231
+msgid "Vanuatu"
+msgstr ""
+
+#: includes/class-sp-countries.php:232
+msgid "Wales"
+msgstr ""
+
+#: includes/class-sp-countries.php:233
+msgid "Samoa"
+msgstr ""
+
+#: includes/class-sp-countries.php:234
+msgid "Yemen"
+msgstr ""
+
+#: includes/class-sp-countries.php:235
+msgid "South Africa"
+msgstr ""
+
+#: includes/class-sp-countries.php:236
+msgid "Zambia"
+msgstr ""
+
+#: includes/class-sp-countries.php:237
+msgid "Zimbabwe"
+msgstr ""
+
+#: includes/class-sp-formats.php:27 includes/class-sp-post-types.php:36
+#: includes/class-sp-text.php:27
+#: includes/admin/importers/class-sp-event-importer.php:570
+#: includes/admin/post-types/class-sp-admin-cpt-calendar.php:49
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:97
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:115
+#: includes/admin/post-types/class-sp-admin-cpt-list.php:50
+#: includes/admin/post-types/class-sp-admin-cpt-table.php:49
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:30
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:29
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:29
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:27
+msgid "League"
+msgstr ""
+
+#: includes/class-sp-formats.php:28
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:118
+msgid "Friendly"
+msgstr ""
+
+#: includes/class-sp-formats.php:31 includes/class-sp-post-types.php:384
+#: includes/widgets/class-sp-widget-event-calendar.php:41
+#: includes/widgets/class-sp-widget-event-list.php:42
+msgid "Calendar"
+msgstr ""
+
+#: includes/class-sp-formats.php:32 includes/class-sp-formats.php:35
+msgid "List"
+msgstr ""
+
+#: includes/class-sp-formats.php:36
+msgid "Gallery"
+msgstr ""
+
+#: includes/class-sp-frontend-scripts.php:40
+#: includes/admin/class-sp-admin-assets.php:92
+#: includes/admin/class-sp-admin-dashboard.php:54 templates/countdown.php:32
+msgid "days"
+msgstr ""
+
+#: includes/class-sp-frontend-scripts.php:40
+#: includes/admin/class-sp-admin-assets.php:93 templates/countdown.php:33
+msgid "hrs"
+msgstr ""
+
+#: includes/class-sp-frontend-scripts.php:40
+#: includes/admin/class-sp-admin-assets.php:94 templates/countdown.php:34
+msgid "mins"
+msgstr ""
+
+#: includes/class-sp-frontend-scripts.php:40
+#: includes/admin/class-sp-admin-assets.php:95 templates/countdown.php:35
+msgid "secs"
+msgstr ""
+
+#: includes/class-sp-install.php:148 includes/class-sp-post-types.php:474
+#: includes/class-sp-text.php:39 includes/class-sp-text.php:54
+#: includes/sp-core-functions.php:1066 includes/sp-core-functions.php:1352
+msgid "Player"
+msgstr ""
+
+#: includes/class-sp-install.php:164 includes/class-sp-post-types.php:533
+#: includes/class-sp-post-types.php:534 includes/class-sp-text.php:63
+#: includes/admin/class-sp-admin-permalink-settings.php:35
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:41
+msgid "Staff"
+msgstr ""
+
+#: includes/class-sp-install.php:180
+msgid "Team Manager"
+msgstr ""
+
+#: includes/class-sp-install.php:222
+msgid "League Manager"
+msgstr ""
+
+#: includes/class-sp-install.php:413
+msgid "What's new:"
+msgstr ""
+
+#: includes/class-sp-post-types.php:35 includes/class-sp-post-types.php:49
+#: includes/admin/class-sp-admin-menus.php:111
+#: includes/admin/class-sp-admin-permalink-settings.php:29
+#: includes/admin/post-types/class-sp-admin-cpt-player.php:68
+#: includes/admin/post-types/class-sp-admin-cpt-staff.php:67
+#: includes/admin/post-types/class-sp-admin-cpt-team.php:65
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:116
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
+msgid "Leagues"
+msgstr ""
+
+#: includes/class-sp-post-types.php:37 includes/class-sp-post-types.php:66
+#: includes/class-sp-post-types.php:95 includes/class-sp-post-types.php:124
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:34
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:49
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:64
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:79
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:63
+#: includes/widgets/class-sp-widget-event-calendar.php:45
+#: includes/widgets/class-sp-widget-event-list.php:46
+msgid "All"
+msgstr ""
+
+#: includes/class-sp-post-types.php:38
+msgid "Edit League"
+msgstr ""
+
+#: includes/class-sp-post-types.php:39 includes/class-sp-post-types.php:68
+#: includes/class-sp-post-types.php:97 includes/class-sp-post-types.php:126
+#: includes/class-sp-post-types.php:178 includes/class-sp-post-types.php:208
+#: includes/class-sp-post-types.php:238 includes/class-sp-post-types.php:268
+#: includes/class-sp-post-types.php:298 includes/class-sp-post-types.php:328
+#: includes/class-sp-post-types.php:358 includes/class-sp-post-types.php:388
+#: includes/class-sp-post-types.php:418 includes/class-sp-post-types.php:448
+#: includes/class-sp-post-types.php:478 includes/class-sp-post-types.php:508
+#: includes/class-sp-post-types.php:538
+msgid "View"
+msgstr ""
+
+#: includes/class-sp-post-types.php:40 includes/class-sp-post-types.php:69
+#: includes/class-sp-post-types.php:98 includes/class-sp-post-types.php:127
+msgid "Update"
+msgstr ""
+
+#: includes/class-sp-post-types.php:41 includes/class-sp-post-types.php:70
+#: includes/class-sp-post-types.php:99 includes/class-sp-post-types.php:128
+#: includes/sp-core-functions.php:1429 includes/sp-core-functions.php:1446
+#: includes/admin/class-sp-admin-menus.php:107
+#: includes/admin/importers/class-sp-event-importer.php:580
+#: includes/admin/importers/class-sp-event-importer.php:595
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:41
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:56
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:71
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:86
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:40
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:55
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:71
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:39
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:53
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:68
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:87
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:101
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-metrics.php:57
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:37
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:51
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:58
+#: includes/admin/settings/class-sp-settings-config.php:228
+#: includes/admin/settings/class-sp-settings-config.php:276
+#: includes/admin/settings/class-sp-settings-config.php:329
+#: includes/admin/settings/class-sp-settings-config.php:379
+#: includes/admin/settings/class-sp-settings-config.php:428
+#: includes/widgets/class-sp-widget-countdown.php:53
+#: includes/widgets/class-sp-widget-event-calendar.php:53
+#: includes/widgets/class-sp-widget-event-list.php:54
+#: includes/widgets/class-sp-widget-league-table.php:61
+#: includes/widgets/class-sp-widget-player-gallery.php:64
+#: includes/widgets/class-sp-widget-player-gallery.php:89
+#: includes/widgets/class-sp-widget-player-list.php:64
+#: includes/widgets/class-sp-widget-player-list.php:110
+msgid "Add New"
+msgstr ""
+
+#: includes/class-sp-post-types.php:42 includes/class-sp-post-types.php:71
+#: includes/class-sp-post-types.php:100 includes/class-sp-post-types.php:129
+#: includes/admin/post-types/class-sp-admin-cpt-player.php:53
+#: includes/admin/post-types/class-sp-admin-cpt-player.php:65
+#: includes/admin/post-types/class-sp-admin-cpt-staff.php:53
+#: includes/admin/post-types/class-sp-admin-cpt-staff.php:64
+#: includes/admin/post-types/class-sp-admin-cpt-team.php:52
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:78
+#: includes/widgets/class-sp-widget-player-gallery.php:78
+#: includes/widgets/class-sp-widget-player-list.php:99
+msgid "Name"
+msgstr ""
+
+#: includes/class-sp-post-types.php:43 includes/class-sp-post-types.php:72
+#: includes/class-sp-post-types.php:101 includes/class-sp-post-types.php:130
+msgid "Parent"
+msgstr ""
+
+#: includes/class-sp-post-types.php:44 includes/class-sp-post-types.php:73
+#: includes/class-sp-post-types.php:102 includes/class-sp-post-types.php:131
+msgid "Parent:"
+msgstr ""
+
+#: includes/class-sp-post-types.php:45 includes/class-sp-post-types.php:74
+#: includes/class-sp-post-types.php:103 includes/class-sp-post-types.php:132
+#: includes/class-sp-post-types.php:179 includes/class-sp-post-types.php:209
+#: includes/class-sp-post-types.php:239 includes/class-sp-post-types.php:269
+#: includes/class-sp-post-types.php:299 includes/class-sp-post-types.php:329
+#: includes/class-sp-post-types.php:359 includes/class-sp-post-types.php:389
+#: includes/class-sp-post-types.php:419 includes/class-sp-post-types.php:449
+#: includes/class-sp-post-types.php:479 includes/class-sp-post-types.php:509
+#: includes/class-sp-post-types.php:539
+msgid "Search"
+msgstr ""
+
+#: includes/class-sp-post-types.php:46 includes/class-sp-post-types.php:75
+#: includes/class-sp-post-types.php:104 includes/class-sp-post-types.php:133
+#: includes/class-sp-post-types.php:180 includes/class-sp-post-types.php:181
+#: includes/class-sp-post-types.php:210 includes/class-sp-post-types.php:211
+#: includes/class-sp-post-types.php:240 includes/class-sp-post-types.php:241
+#: includes/class-sp-post-types.php:270 includes/class-sp-post-types.php:271
+#: includes/class-sp-post-types.php:300 includes/class-sp-post-types.php:301
+#: includes/class-sp-post-types.php:330 includes/class-sp-post-types.php:331
+#: includes/class-sp-post-types.php:360 includes/class-sp-post-types.php:361
+#: includes/class-sp-post-types.php:390 includes/class-sp-post-types.php:391
+#: includes/class-sp-post-types.php:420 includes/class-sp-post-types.php:421
+#: includes/class-sp-post-types.php:450 includes/class-sp-post-types.php:451
+#: includes/class-sp-post-types.php:480 includes/class-sp-post-types.php:481
+#: includes/class-sp-post-types.php:510 includes/class-sp-post-types.php:511
+#: includes/class-sp-post-types.php:540 includes/class-sp-post-types.php:541
+#: includes/sp-core-functions.php:636 includes/sp-core-functions.php:1211
+msgid "No results found."
+msgstr ""
+
+#: includes/class-sp-post-types.php:64 includes/class-sp-post-types.php:78
+#: includes/admin/class-sp-admin-menus.php:119
+#: includes/admin/class-sp-admin-permalink-settings.php:30
+#: includes/admin/post-types/class-sp-admin-cpt-player.php:69
+#: includes/admin/post-types/class-sp-admin-cpt-staff.php:68
+#: includes/admin/post-types/class-sp-admin-cpt-team.php:66
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:131
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
+msgid "Seasons"
+msgstr ""
+
+#: includes/class-sp-post-types.php:65 includes/class-sp-text.php:28
+#: includes/sp-core-functions.php:1114 includes/sp-core-functions.php:1166
+#: includes/sp-core-functions.php:1902
+#: includes/admin/importers/class-sp-event-importer.php:585
+#: includes/admin/post-types/class-sp-admin-cpt-calendar.php:50
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:98
+#: includes/admin/post-types/class-sp-admin-cpt-list.php:51
+#: includes/admin/post-types/class-sp-admin-cpt-table.php:50
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:45
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:44
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:43
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:41
+msgid "Season"
+msgstr ""
+
+#: includes/class-sp-post-types.php:67
+msgid "Edit Season"
+msgstr ""
+
+#: includes/class-sp-post-types.php:93 includes/class-sp-post-types.php:107
+#: includes/admin/class-sp-admin-menus.php:123
+#: includes/admin/class-sp-admin-permalink-settings.php:26
+msgid "Venues"
+msgstr ""
+
+#: includes/class-sp-post-types.php:94 includes/class-sp-text.php:38
+#: includes/admin/post-types/class-sp-admin-cpt-calendar.php:51
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:99
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:60
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:60
+#: includes/admin/settings/class-sp-settings-events.php:59
+msgid "Venue"
+msgstr ""
+
+#: includes/class-sp-post-types.php:96
+msgid "Edit Venue"
+msgstr ""
+
+#: includes/class-sp-post-types.php:122 includes/class-sp-post-types.php:136
+#: includes/admin/class-sp-admin-menus.php:115
+#: includes/admin/class-sp-admin-permalink-settings.php:33
+#: includes/admin/post-types/class-sp-admin-cpt-metric.php:44
+#: includes/admin/post-types/class-sp-admin-cpt-performance.php:45
+#: includes/admin/post-types/class-sp-admin-cpt-player.php:66
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:71
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
+#: includes/admin/settings/class-sp-settings-config.php:362
+#: includes/admin/settings/class-sp-settings-config.php:411
+msgid "Positions"
+msgstr ""
+
+#: includes/class-sp-post-types.php:123 includes/class-sp-text.php:55
+msgid "Position"
+msgstr ""
+
+#: includes/class-sp-post-types.php:125
+msgid "Edit Position"
+msgstr ""
+
+#: includes/class-sp-post-types.php:173 includes/class-sp-text.php:34
+#: includes/sp-core-functions.php:718
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:94
+#: includes/admin/settings/class-sp-settings-config.php:187
+#: includes/admin/settings/class-sp-settings-config.php:190
+msgid "Results"
+msgstr ""
+
+#: includes/class-sp-post-types.php:174
+msgid "Result"
+msgstr ""
+
+#: includes/class-sp-post-types.php:175
+msgid "Add New Result"
+msgstr ""
+
+#: includes/class-sp-post-types.php:176
+msgid "Edit Result"
+msgstr ""
+
+#: includes/class-sp-post-types.php:177 includes/class-sp-post-types.php:207
+#: includes/class-sp-post-types.php:237 includes/class-sp-post-types.php:267
+#: includes/class-sp-post-types.php:297 includes/class-sp-post-types.php:327
+#: includes/class-sp-post-types.php:357 includes/class-sp-post-types.php:387
+#: includes/class-sp-post-types.php:417 includes/class-sp-post-types.php:447
+#: includes/class-sp-post-types.php:477 includes/class-sp-post-types.php:507
+#: includes/class-sp-post-types.php:537
+msgid "New"
+msgstr ""
+
+#: includes/class-sp-post-types.php:203 includes/sp-core-functions.php:721
+#: includes/sp-core-functions.php:722 includes/sp-core-functions.php:723
+#: includes/sp-core-functions.php:724
+#: includes/admin/settings/class-sp-settings-config.php:255
+msgid "Outcomes"
+msgstr ""
+
+#: includes/class-sp-post-types.php:204 includes/sp-core-functions.php:1246
+msgid "Outcome"
+msgstr ""
+
+#: includes/class-sp-post-types.php:205
+msgid "Add New Outcome"
+msgstr ""
+
+#: includes/class-sp-post-types.php:206
+msgid "Edit Outcome"
+msgstr ""
+
+#: includes/class-sp-post-types.php:233 includes/class-sp-post-types.php:234
+#: includes/sp-core-functions.php:730
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:95
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:117
+#: includes/admin/settings/class-sp-settings-config.php:405
+#: includes/admin/settings/class-sp-settings-events.php:76
+msgid "Performance"
+msgstr ""
+
+#: includes/class-sp-post-types.php:235
+msgid "Add New Performance"
+msgstr ""
+
+#: includes/class-sp-post-types.php:236
+msgid "Edit Performance"
+msgstr ""
+
+#: includes/class-sp-post-types.php:263 includes/sp-core-functions.php:727
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:106
+#: includes/admin/settings/class-sp-settings-config.php:302
+msgid "Columns"
+msgstr ""
+
+#: includes/class-sp-post-types.php:264
+msgid "Column"
+msgstr ""
+
+#: includes/class-sp-post-types.php:265
+msgid "Add New Column"
+msgstr ""
+
+#: includes/class-sp-post-types.php:266
+msgid "Edit Column"
+msgstr ""
+
+#: includes/class-sp-post-types.php:293
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:116
+#: includes/admin/settings/class-sp-settings-config.php:356
+msgid "Metrics"
+msgstr ""
+
+#: includes/class-sp-post-types.php:294
+msgid "Metric"
+msgstr ""
+
+#: includes/class-sp-post-types.php:295
+msgid "Add New Metric"
+msgstr ""
+
+#: includes/class-sp-post-types.php:296
+msgid "Edit Metric"
+msgstr ""
+
+#: includes/class-sp-post-types.php:323
+msgid "Statistics"
+msgstr ""
+
+#: includes/class-sp-post-types.php:324
+msgid "Statistic"
+msgstr ""
+
+#: includes/class-sp-post-types.php:325
+msgid "Add New Statistic"
+msgstr ""
+
+#: includes/class-sp-post-types.php:326
+msgid "Edit Statistic"
+msgstr ""
+
+#: includes/class-sp-post-types.php:353 includes/sp-core-functions.php:712
+#: includes/sp-core-functions.php:715
+#: includes/admin/class-sp-admin-permalink-settings.php:25
+#: includes/admin/class-sp-admin-taxonomies.php:135
+#: includes/admin/post-types/class-sp-admin-cpt-calendar.php:53
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:102
+#: includes/admin/settings/class-sp-settings-events.php:25
+msgid "Events"
+msgstr ""
+
+#: includes/class-sp-post-types.php:354 includes/class-sp-text.php:31
+#: includes/sp-core-functions.php:877
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:93
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:166
+#: includes/widgets/class-sp-widget-countdown.php:39
+#: includes/widgets/class-sp-widget-event-list.php:63
+msgid "Event"
+msgstr ""
+
+#: includes/class-sp-post-types.php:355
+msgid "Add New Event"
+msgstr ""
+
+#: includes/class-sp-post-types.php:356
+msgid "Edit Event"
+msgstr ""
+
+#: includes/class-sp-post-types.php:383
+#: includes/admin/class-sp-admin-permalink-settings.php:27
+msgid "Calendars"
+msgstr ""
+
+#: includes/class-sp-post-types.php:385
+msgid "Add New Calendar"
+msgstr ""
+
+#: includes/class-sp-post-types.php:386
+msgid "Edit Calendar"
+msgstr ""
+
+#: includes/class-sp-post-types.php:413 includes/class-sp-text.php:36
+#: includes/class-sp-text.php:49 includes/sp-core-functions.php:883
+#: includes/sp-core-functions.php:1043
+#: includes/admin/class-sp-admin-permalink-settings.php:28
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:96
+#: includes/admin/post-types/class-sp-admin-cpt-player.php:67
+#: includes/admin/post-types/class-sp-admin-cpt-staff.php:66
+#: includes/admin/post-types/class-sp-admin-cpt-table.php:51
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:92
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:55
+#: includes/admin/settings/class-sp-settings-teams.php:25
+#: includes/widgets/class-sp-widget-event-list.php:64
+msgid "Teams"
+msgstr ""
+
+#: includes/class-sp-post-types.php:414 includes/class-sp-text.php:35
+#: includes/class-sp-text.php:48 includes/sp-core-functions.php:994
+#: includes/sp-core-functions.php:1167 includes/sp-core-functions.php:1242
+#: includes/admin/post-types/class-sp-admin-cpt-calendar.php:52
+#: includes/admin/post-types/class-sp-admin-cpt-list.php:52
+#: includes/admin/post-types/class-sp-admin-cpt-team.php:64
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:75
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:57
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:94
+#: includes/admin/settings/class-sp-settings-events.php:134
+#: includes/admin/settings/class-sp-settings-events.php:136
+#: includes/admin/settings/class-sp-settings-events.php:137
+msgid "Team"
+msgstr ""
+
+#: includes/class-sp-post-types.php:415
+msgid "Add New Team"
+msgstr ""
+
+#: includes/class-sp-post-types.php:416
+msgid "Edit Team"
+msgstr ""
+
+#: includes/class-sp-post-types.php:443
+#: includes/admin/class-sp-admin-permalink-settings.php:31
+#: includes/admin/settings/class-sp-settings-teams.php:44
+msgid "League Tables"
+msgstr ""
+
+#: includes/class-sp-post-types.php:444
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:111
+#: includes/widgets/class-sp-widget-league-table.php:50
+msgid "League Table"
+msgstr ""
+
+#: includes/class-sp-post-types.php:445
+msgid "Add New League Table"
+msgstr ""
+
+#: includes/class-sp-post-types.php:446
+msgid "Edit League Table"
+msgstr ""
+
+#: includes/class-sp-post-types.php:473
+#: includes/admin/class-sp-admin-permalink-settings.php:32
+#: includes/admin/post-types/class-sp-admin-cpt-list.php:49
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:40
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:98
+#: includes/admin/settings/class-sp-settings-players.php:25
+msgid "Players"
+msgstr ""
+
+#: includes/class-sp-post-types.php:475
+msgid "Add New Player"
+msgstr ""
+
+#: includes/class-sp-post-types.php:476
+msgid "Edit Player"
+msgstr ""
+
+#: includes/class-sp-post-types.php:503
+#: includes/admin/class-sp-admin-permalink-settings.php:34
+#: includes/admin/settings/class-sp-settings-players.php:52
+msgid "Player Lists"
+msgstr ""
+
+#: includes/class-sp-post-types.php:504
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:123
+#: includes/widgets/class-sp-widget-player-gallery.php:53
+#: includes/widgets/class-sp-widget-player-list.php:53
+msgid "Player List"
+msgstr ""
+
+#: includes/class-sp-post-types.php:505
+msgid "Add New Player List"
+msgstr ""
+
+#: includes/class-sp-post-types.php:506
+msgid "Edit Player List"
+msgstr ""
+
+#: includes/class-sp-post-types.php:535
+msgid "Add New Staff"
+msgstr ""
+
+#: includes/class-sp-post-types.php:536
+msgid "Edit Staff"
+msgstr ""
+
+#: includes/class-sp-sports.php:27
+msgid "Baseball"
+msgstr ""
+
+#: includes/class-sp-sports.php:194
+msgid "Basketball"
+msgstr ""
+
+#: includes/class-sp-sports.php:602
+msgid "Cricket"
+msgstr ""
+
+#: includes/class-sp-sports.php:670
+msgid "American Football"
+msgstr ""
+
+#: includes/class-sp-sports.php:1558
+msgid "Australian Rules Football"
+msgstr ""
+
+#: includes/class-sp-sports.php:1631
+msgid "Competitive Gaming"
+msgstr ""
+
+#: includes/class-sp-sports.php:1697
+msgid "Golf"
+msgstr ""
+
+#: includes/class-sp-sports.php:1749
+msgid "Hockey"
+msgstr ""
+
+#: includes/class-sp-sports.php:1834
+msgid "Racing"
+msgstr ""
+
+#: includes/class-sp-sports.php:1888
+msgid "Rugby"
+msgstr ""
+
+#: includes/class-sp-sports.php:2045
+msgid "Soccer (Association Football)"
+msgstr ""
+
+#: includes/class-sp-text.php:32 includes/sp-core-functions.php:872
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:94
+msgid "Date"
+msgstr ""
+
+#: includes/class-sp-text.php:33 includes/sp-core-functions.php:349
+#: includes/sp-core-functions.php:889
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:95
+#: includes/widgets/class-sp-widget-event-list.php:65
+msgid "Time"
+msgstr ""
+
+#: includes/class-sp-text.php:37 includes/sp-core-functions.php:970
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:78
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:81
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:84
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:87
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:91
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:101
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:110
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:115
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:122
+msgid "Details"
+msgstr ""
+
+#: includes/class-sp-text.php:40
+msgid "Substitutes"
+msgstr ""
+
+#: includes/class-sp-text.php:41 includes/sp-core-functions.php:305
+#: includes/sp-core-functions.php:309 includes/sp-core-functions.php:646
+#: includes/sp-core-functions.php:1387
+msgid "Total"
+msgstr ""
+
+#: includes/class-sp-text.php:42 includes/sp-core-functions.php:895
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:96
+#: includes/widgets/class-sp-widget-event-list.php:66
+msgid "Article"
+msgstr ""
+
+#: includes/class-sp-text.php:43 includes/sp-core-functions.php:957
+msgid "Preview"
+msgstr ""
+
+#: includes/class-sp-text.php:44 includes/sp-core-functions.php:955
+msgid "Recap"
+msgstr ""
+
+#: includes/class-sp-text.php:45
+msgid "View all events"
+msgstr ""
+
+#: includes/class-sp-text.php:50
+msgid "Pos"
+msgstr ""
+
+#: includes/class-sp-text.php:51
+msgid "View full table"
+msgstr ""
+
+#: includes/class-sp-text.php:56
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:59
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
+#: includes/admin/settings/class-sp-settings-players.php:44
+msgid "Nationality"
+msgstr ""
+
+#: includes/class-sp-text.php:57
+#: includes/admin/post-types/class-sp-admin-cpt-calendar.php:87
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:138
+#: includes/admin/post-types/class-sp-admin-cpt-staff.php:97
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:86
+msgid "Current Team"
+msgstr ""
+
+#: includes/class-sp-text.php:58
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:101
+msgid "Past Teams"
+msgstr ""
+
+#: includes/class-sp-text.php:59
+msgid "Rank"
+msgstr ""
+
+#: includes/class-sp-text.php:60
+msgid "View all players"
+msgstr ""
+
+#: includes/sp-core-functions.php:264
msgid "1 view"
msgstr ""
-#: functions.php:188
+#: includes/sp-core-functions.php:266
#, php-format
msgid "%s views"
msgstr ""
-#: functions.php:227 functions.php:231 functions.php:568 functions.php:1307
-#: admin/templates/event-players.php:92
-msgid "Total"
-msgstr ""
-
-#: functions.php:227 functions.php:569
+#: includes/sp-core-functions.php:305 includes/sp-core-functions.php:647
msgid "Average"
msgstr ""
-#: functions.php:269
+#: includes/sp-core-functions.php:347
msgid "Integer"
msgstr ""
-#: functions.php:270
+#: includes/sp-core-functions.php:348
msgid "Decimal"
msgstr ""
-#: functions.php:271 functions.php:811 admin/post-types/event.php:37
-#: admin/templates/event-details.php:13 admin/templates/events-list.php:31
-#: admin/widgets/events-list.php:65
-msgid "Time"
-msgstr ""
-
-#: functions.php:272
+#: includes/sp-core-functions.php:350
msgid "Custom Field"
msgstr ""
-#: functions.php:495 functions.php:549
+#: includes/sp-core-functions.php:573 includes/sp-core-functions.php:627
msgid "(no title)"
msgstr ""
-#: functions.php:512
+#: includes/sp-core-functions.php:590
msgid "Select All"
msgstr ""
-#: functions.php:558 functions.php:1131 admin/post-types/calendar.php:11
-#: admin/post-types/calendar.php:12 admin/post-types/column.php:11
-#: admin/post-types/column.php:12 admin/post-types/directory.php:11
-#: admin/post-types/directory.php:12 admin/post-types/event.php:12
-#: admin/post-types/event.php:13 admin/post-types/list.php:11
-#: admin/post-types/list.php:12 admin/post-types/metric.php:11
-#: admin/post-types/metric.php:12 admin/post-types/outcome.php:11
-#: admin/post-types/outcome.php:12 admin/post-types/player.php:13
-#: admin/post-types/player.php:14 admin/post-types/result.php:11
-#: admin/post-types/result.php:12 admin/post-types/staff.php:11
-#: admin/post-types/staff.php:12 admin/post-types/statistic.php:11
-#: admin/post-types/statistic.php:12 admin/post-types/table.php:11
-#: admin/post-types/table.php:12 admin/post-types/team.php:11
-#: admin/post-types/team.php:12 admin/terms/league.php:15
-#: admin/terms/position.php:15 admin/terms/season.php:15
-#: admin/terms/venue.php:15
-msgid "No results found."
-msgstr ""
-
-#: functions.php:634 functions.php:637 admin/post-types/calendar.php:39
-#: admin/post-types/calendar.php:55 admin/post-types/event.php:6
-#: admin/post-types/event.php:16 admin/settings/options-permalink.php:5
-msgid "Events"
-msgstr ""
-
-#: functions.php:634
+#: includes/sp-core-functions.php:712
msgid "Attended"
msgstr ""
-#: functions.php:634 functions.php:637 functions.php:2295 functions.php:2561
-#: functions.php:2763 functions.php:2898 admin/post-types/directory.php:126
-#: admin/post-types/list.php:137 admin/widgets/player-gallery.php:79
-#: admin/widgets/player-list.php:87 admin/widgets/player-list.php:100
+#: includes/sp-core-functions.php:712 includes/sp-core-functions.php:715
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:79
+#: includes/widgets/class-sp-widget-player-gallery.php:79
+#: includes/widgets/class-sp-widget-player-list.php:87
+#: includes/widgets/class-sp-widget-player-list.php:100
msgid "Played"
msgstr ""
-#: functions.php:640 admin/post-types/event.php:72
-#: admin/post-types/result.php:4 admin/post-types/result.php:15
-#: admin/settings/options-event.php:25 admin/templates/event-results.php:55
-msgid "Results"
-msgstr ""
-
-#: functions.php:643 functions.php:644 functions.php:645 functions.php:646
-#: admin/post-types/outcome.php:4 admin/post-types/outcome.php:15
-#: admin/settings/options-event.php:33
-msgid "Outcomes"
-msgstr ""
-
-#: functions.php:644
+#: includes/sp-core-functions.php:722
msgid "Streak"
msgstr ""
-#: functions.php:645
+#: includes/sp-core-functions.php:723
msgid "Last 5"
msgstr ""
-#: functions.php:646
+#: includes/sp-core-functions.php:724
msgid "Last 10"
msgstr ""
-#: functions.php:649 admin/post-types/column.php:4
-#: admin/post-types/column.php:15 admin/post-types/team.php:36
-#: admin/settings/options-team.php:33
-msgid "Columns"
-msgstr ""
-
-#: functions.php:652
-msgid "Player Statistics"
-msgstr ""
-
-#: functions.php:661
+#: includes/sp-core-functions.php:739
msgid "Operators"
msgstr ""
-#: functions.php:674
+#: includes/sp-core-functions.php:752
msgid "Constants"
msgstr ""
-#: functions.php:678 admin/settings/options-general.php:40
+#: includes/sp-core-functions.php:756
msgid "— Select —"
msgstr ""
-#: functions.php:794 admin/post-types/event.php:36
-#: admin/templates/event-details.php:13 admin/templates/events-list.php:22
-msgid "Date"
-msgstr ""
-
-#: functions.php:799 admin/post-types/event.php:5
-#: admin/post-types/event.php:35 admin/post-types/event.php:66
-#: admin/templates/events-list.php:25 admin/widgets/countdown.php:39
-#: admin/widgets/events-list.php:63
-msgid "Event"
-msgstr ""
-
-#: functions.php:805 functions.php:963 admin/post-types/calendar.php:38
-#: admin/post-types/event.php:38 admin/post-types/event.php:69
-#: admin/post-types/player.php:38 admin/post-types/player.php:157
-#: admin/post-types/staff.php:31 admin/post-types/staff.php:49
-#: admin/post-types/table.php:37 admin/post-types/table.php:50
-#: admin/post-types/table.php:97 admin/post-types/team.php:4
-#: admin/post-types/team.php:16 admin/settings/options-permalink.php:8
-#: admin/settings/options-team.php:25 admin/settings/settings.php:12
-#: admin/templates/events-list.php:28 admin/widgets/events-list.php:64
-msgid "Teams"
-msgstr ""
-
-#: functions.php:817 admin/post-types/event.php:78
-#: admin/templates/events-list.php:34 admin/widgets/events-list.php:66
-msgid "Article"
-msgstr ""
-
-#: functions.php:873 functions.php:1248
-#: admin/hooks/admin-enqueue-scripts.php:26 admin/tools/event-importer.php:579
-#: admin/tools/event-importer.php:594
+#: includes/sp-core-functions.php:953 includes/sp-core-functions.php:1328
+#: includes/admin/class-sp-admin-assets.php:90
+#: includes/admin/class-sp-admin-settings.php:108
+#: includes/admin/importers/class-sp-event-importer.php:579
+#: includes/admin/importers/class-sp-event-importer.php:594
msgid "None"
msgstr ""
-#: functions.php:875 admin/templates/events-list.php:102
-msgid "Recap"
-msgstr ""
-
-#: functions.php:877 admin/templates/events-list.php:104
-msgid "Preview"
-msgstr ""
-
-#: functions.php:890 functions.php:963
-#: admin/hooks/admin-post-thumbnail-html.php:5
-#: admin/hooks/admin-post-thumbnail-html.php:9
-#: admin/hooks/admin-post-thumbnail-html.php:13
-#: admin/post-types/player.php:109 admin/post-types/player.php:127
-#: admin/post-types/player.php:143 admin/post-types/player.php:157
-#: admin/post-types/player.php:172 admin/post-types/player.php:187
+#: includes/sp-core-functions.php:970 includes/sp-core-functions.php:1043
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:94
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
#, php-format
msgid "Select %s"
msgstr ""
-#: functions.php:890 admin/post-types/calendar.php:54
-#: admin/post-types/column.php:44 admin/post-types/directory.php:51
-#: admin/post-types/event.php:68 admin/post-types/list.php:52
-#: admin/post-types/outcome.php:41 admin/post-types/player.php:55
-#: admin/post-types/result.php:41 admin/post-types/statistic.php:42
-#: admin/templates/event-details.php:25
-msgid "Details"
-msgstr ""
-
-#: functions.php:914 functions.php:1087 functions.php:1162 functions.php:2102
-#: functions.php:2898 admin/hooks/gettext.php:44
-#: admin/post-types/calendar.php:135 admin/post-types/directory.php:38
-#: admin/post-types/directory.php:104 admin/post-types/list.php:38
-#: admin/post-types/list.php:115 admin/post-types/player.php:143
-#: admin/post-types/team.php:5 admin/post-types/team.php:44
-#: admin/templates/event-results.php:59
-msgid "Team"
-msgstr ""
-
-#: functions.php:941 admin/settings/options-event.php:87
-#: admin/settings/options-event.php:123 admin/settings/options-player.php:139
-#: admin/settings/options-player.php:177 admin/settings/options-team.php:94
+#: includes/sp-core-functions.php:1021
+#: includes/admin/settings/class-sp-settings-config.php:221
+#: includes/admin/settings/class-sp-settings-config.php:269
+#: includes/admin/settings/class-sp-settings-config.php:322
+#: includes/admin/settings/class-sp-settings-config.php:372
+#: includes/admin/settings/class-sp-settings-config.php:378
+#: includes/admin/settings/class-sp-settings-config.php:421
msgid "Edit"
msgstr ""
-#: functions.php:945 admin/post-types/event.php:209
+#: includes/sp-core-functions.php:1025
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:33
msgid "Cancel"
msgstr ""
-#: functions.php:946
+#: includes/sp-core-functions.php:1026
msgid "Save"
msgstr ""
-#: functions.php:986 functions.php:1272 functions.php:2398 functions.php:2657
-#: admin/hooks/register-activation-hook.php:149 admin/post-types/player.php:5
-#: admin/post-types/player.php:36 admin/templates/event-players.php:30
-msgid "Player"
-msgstr ""
-
-#: functions.php:1034 functions.php:1086 functions.php:1817 functions.php:2898
-#: admin/post-types/calendar.php:36 admin/post-types/calendar.php:105
-#: admin/post-types/directory.php:37 admin/post-types/directory.php:90
-#: admin/post-types/event.php:40 admin/post-types/event.php:116
-#: admin/post-types/list.php:37 admin/post-types/list.php:101
-#: admin/post-types/table.php:36 admin/post-types/table.php:83
-#: admin/templates/event-details.php:22 admin/terms/season.php:5
-#: admin/tools/event-importer.php:585
-msgid "Season"
-msgstr ""
-
-#: functions.php:1110
+#: includes/sp-core-functions.php:1190
msgid "— None —"
msgstr ""
-#: functions.php:1166 admin/post-types/outcome.php:5
-msgid "Outcome"
-msgstr ""
-
-#: functions.php:1223 functions.php:1328
+#: includes/sp-core-functions.php:1303 includes/sp-core-functions.php:1408
msgid "Starting Lineup"
msgstr ""
-#: functions.php:1224 functions.php:1329
+#: includes/sp-core-functions.php:1304 includes/sp-core-functions.php:1409
msgid "Substitute"
msgstr ""
-#: functions.php:1276
+#: includes/sp-core-functions.php:1356
msgid "Status"
msgstr ""
-#: functions.php:1349 functions.php:1366 admin/hooks/admin-menu.php:40
-#: admin/post-types/calendar.php:101 admin/post-types/calendar.php:116
-#: admin/post-types/calendar.php:131 admin/post-types/calendar.php:146
-#: admin/post-types/directory.php:86 admin/post-types/directory.php:100
-#: admin/post-types/directory.php:115 admin/post-types/directory.php:134
-#: admin/post-types/directory.php:148 admin/post-types/event.php:112
-#: admin/post-types/event.php:127 admin/post-types/event.php:143
-#: admin/post-types/list.php:97 admin/post-types/list.php:111
-#: admin/post-types/list.php:126 admin/post-types/list.php:145
-#: admin/post-types/list.php:159 admin/post-types/player.php:233
-#: admin/post-types/staff.php:36 admin/post-types/table.php:79
-#: admin/post-types/table.php:93 admin/post-types/table.php:100
-#: admin/settings/options-event.php:88 admin/settings/options-event.php:124
-#: admin/settings/options-player.php:140 admin/settings/options-player.php:178
-#: admin/settings/options-team.php:95 admin/terms/league.php:10
-#: admin/terms/position.php:10 admin/terms/season.php:10
-#: admin/terms/venue.php:10 admin/tools/event-importer.php:580
-#: admin/tools/event-importer.php:595 admin/widgets/countdown.php:53
-#: admin/widgets/events-calendar.php:53 admin/widgets/events-list.php:54
-#: admin/widgets/league-table.php:61 admin/widgets/player-gallery.php:64
-#: admin/widgets/player-gallery.php:89 admin/widgets/player-list.php:64
-#: admin/widgets/player-list.php:110
-msgid "Add New"
-msgstr ""
-
-#: admin/hooks/admin-enqueue-scripts.php:26
-msgid "— Remove —"
-msgstr ""
-
-#: admin/hooks/admin-enqueue-scripts.php:26
-#: admin/hooks/wp-enqueue-scripts.php:14 admin/templates/countdown.php:37
-#: admin/tools/dashboard.php:54
-msgid "days"
-msgstr ""
-
-#: admin/hooks/admin-enqueue-scripts.php:26
-#: admin/hooks/wp-enqueue-scripts.php:14 admin/templates/countdown.php:38
-msgid "hrs"
-msgstr ""
-
-#: admin/hooks/admin-enqueue-scripts.php:26
-#: admin/hooks/wp-enqueue-scripts.php:14 admin/templates/countdown.php:39
-msgid "mins"
-msgstr ""
-
-#: admin/hooks/admin-enqueue-scripts.php:26
-#: admin/hooks/wp-enqueue-scripts.php:14 admin/templates/countdown.php:40
-msgid "secs"
-msgstr ""
-
-#: admin/hooks/admin-menu.php:46 admin/post-types/player.php:39
-#: admin/post-types/player.php:165 admin/post-types/player.php:172
-#: admin/post-types/staff.php:50 admin/post-types/team.php:45
-#: admin/settings/options-permalink.php:9 admin/terms/league.php:4
-#: admin/terms/league.php:18
-msgid "Leagues"
-msgstr ""
-
-#: admin/hooks/admin-menu.php:52 admin/post-types/metric.php:33
-#: admin/post-types/player.php:37 admin/post-types/player.php:120
-#: admin/post-types/player.php:127 admin/post-types/staff.php:48
-#: admin/post-types/statistic.php:34 admin/settings/options-permalink.php:13
-#: admin/settings/options-player.php:125 admin/settings/options-player.php:163
-#: admin/terms/position.php:4 admin/terms/position.php:18
-msgid "Positions"
-msgstr ""
-
-#: admin/hooks/admin-menu.php:58 admin/post-types/player.php:40
-#: admin/post-types/player.php:180 admin/post-types/player.php:187
-#: admin/post-types/staff.php:51 admin/post-types/team.php:46
-#: admin/settings/options-permalink.php:10 admin/terms/season.php:4
-#: admin/terms/season.php:18
-msgid "Seasons"
-msgstr ""
-
-#: admin/hooks/admin-menu.php:64 admin/settings/options-permalink.php:6
-#: admin/terms/venue.php:4 admin/terms/venue.php:18
-msgid "Venues"
-msgstr ""
-
-#: admin/hooks/admin-post-thumbnail-html.php:5
-#: admin/hooks/admin-post-thumbnail-html.php:6 admin/hooks/gettext.php:15
-#: admin/post-types/team.php:43
-msgid "Logo"
-msgstr ""
-
-#: admin/hooks/admin-post-thumbnail-html.php:6
-#: admin/hooks/admin-post-thumbnail-html.php:10
-#: admin/hooks/admin-post-thumbnail-html.php:14
-#, php-format
-msgid "Remove %s"
-msgstr ""
-
-#: admin/hooks/admin-post-thumbnail-html.php:9
-#: admin/hooks/admin-post-thumbnail-html.php:10
-#: admin/hooks/admin-post-thumbnail-html.php:13
-#: admin/hooks/admin-post-thumbnail-html.php:14 admin/hooks/gettext.php:52
-msgid "Photo"
-msgstr ""
-
-#: admin/hooks/gettext.php:12 admin/hooks/gettext.php:18
-msgid "Select Logo"
-msgstr ""
-
-#: admin/hooks/gettext.php:21
-msgid "Remove Logo"
-msgstr ""
-
-#: admin/hooks/gettext.php:24 admin/hooks/gettext.php:36
+#: includes/sp-template-hooks.php:138
msgid "User"
msgstr ""
-#: admin/hooks/gettext.php:30 admin/widgets/countdown.php:46
-msgid "(Auto)"
-msgstr ""
-
-#: admin/hooks/gettext.php:33
+#: includes/sp-template-hooks.php:146
msgid "Date/Time:"
msgstr ""
-#: admin/hooks/gettext.php:33
+#: includes/sp-template-hooks.php:146
msgid "Now"
msgstr ""
-#: admin/hooks/gettext.php:55 admin/hooks/gettext.php:58
-msgid "Select Photo"
-msgstr ""
-
-#: admin/hooks/gettext.php:61
-msgid "Remove Photo"
-msgstr ""
-
-#: admin/hooks/manage-posts-columns.php:3 admin/post-types/calendar.php:40
-#: admin/post-types/directory.php:39 admin/post-types/event.php:42
-#: admin/post-types/list.php:39 admin/post-types/player.php:41
-#: admin/post-types/staff.php:52 admin/post-types/table.php:38
-#: admin/post-types/team.php:47
-msgid "Views"
-msgstr ""
-
-#: admin/hooks/manage-posts-columns.php:16 admin/includes/globals.php:274
-#: admin/post-types/calendar.php:35 admin/post-types/calendar.php:90
-#: admin/post-types/directory.php:36 admin/post-types/directory.php:76
-#: admin/post-types/event.php:39 admin/post-types/event.php:101
-#: admin/post-types/list.php:36 admin/post-types/list.php:87
-#: admin/post-types/table.php:35 admin/post-types/table.php:69
-#: admin/templates/event-details.php:17 admin/terms/league.php:5
-#: admin/tools/event-importer.php:570
-msgid "League"
-msgstr ""
-
-#: admin/hooks/manage-posts-columns.php:19 admin/includes/globals.php:275
-msgid "Friendly"
-msgstr ""
-
-#: admin/hooks/manage-posts-columns.php:87 admin/post-types/player.php:135
-#: admin/templates/player-metrics.php:32
-msgid "Current Team"
-msgstr ""
-
-#: admin/hooks/plugin-action-links.php:3
-msgid "Settings"
-msgstr ""
-
-#: admin/hooks/post-updated-messages.php:10
+#: includes/sp-template-hooks.php:375
+#: includes/admin/class-sp-admin-post-types.php:61
msgid "Settings saved."
msgstr ""
-#: admin/hooks/post-updated-messages.php:12
+#: includes/sp-template-hooks.php:377
+#: includes/admin/class-sp-admin-post-types.php:63
+#: includes/admin/settings/class-sp-settings-config.php:227
+#: includes/admin/settings/class-sp-settings-config.php:275
+#: includes/admin/settings/class-sp-settings-config.php:328
+#: includes/admin/settings/class-sp-settings-config.php:427
msgid "View All"
msgstr ""
-#: admin/hooks/post-updated-messages.php:18
-#: admin/hooks/post-updated-messages.php:21
-#: admin/hooks/post-updated-messages.php:26
+#: includes/sp-template-hooks.php:383 includes/sp-template-hooks.php:386
+#: includes/sp-template-hooks.php:391
+#: includes/admin/class-sp-admin-post-types.php:68
+#: includes/admin/class-sp-admin-post-types.php:71
+#: includes/admin/class-sp-admin-post-types.php:76
msgid "Changes saved."
msgstr ""
-#: admin/hooks/post-updated-messages.php:23
-#: admin/hooks/post-updated-messages.php:28
-#: admin/hooks/post-updated-messages.php:38
+#: includes/sp-template-hooks.php:388 includes/sp-template-hooks.php:393
+#: includes/sp-template-hooks.php:403
+#: includes/admin/class-sp-admin-post-types.php:73
+#: includes/admin/class-sp-admin-post-types.php:78
+#: includes/admin/class-sp-admin-post-types.php:88
msgid "Success!"
msgstr ""
-#: admin/hooks/post-updated-messages.php:30
-#: admin/hooks/post-updated-messages.php:36
-#: admin/hooks/post-updated-messages.php:40
+#: includes/sp-template-hooks.php:395 includes/sp-template-hooks.php:401
+#: includes/sp-template-hooks.php:405
+#: includes/admin/class-sp-admin-post-types.php:80
+#: includes/admin/class-sp-admin-post-types.php:86
+#: includes/admin/class-sp-admin-post-types.php:90
#, php-format
msgid "Preview %s"
msgstr ""
-#: admin/hooks/post-updated-messages.php:33
+#: includes/sp-template-hooks.php:398
+#: includes/admin/class-sp-admin-post-types.php:83
#, php-format
msgid "Scheduled for: %1$s."
msgstr ""
-#: admin/hooks/post-updated-messages.php:34
+#: includes/sp-template-hooks.php:399
+#: includes/admin/class-sp-admin-post-types.php:84
msgid "M j, Y @ G:i"
msgstr ""
-#: admin/hooks/register-activation-hook.php:8
-msgid "League Manager"
+#: includes/admin/class-sp-admin-assets.php:91
+msgid "— Remove —"
msgstr ""
-#: admin/hooks/register-activation-hook.php:86
-msgid "Team Manager"
-msgstr ""
-
-#: admin/hooks/register-activation-hook.php:131
-#: admin/post-types/directory.php:35 admin/post-types/directory.php:145
-#: admin/post-types/event.php:171 admin/post-types/staff.php:4
-#: admin/post-types/staff.php:5 admin/post-types/staff.php:15
-#: admin/settings/options-permalink.php:15
-msgid "Staff"
-msgstr ""
-
-#: admin/hooks/restrict-manage-posts.php:8
-msgid "Show all positions"
-msgstr ""
-
-#: admin/hooks/restrict-manage-posts.php:18
-msgid "Show all leagues"
-msgstr ""
-
-#: admin/hooks/restrict-manage-posts.php:28
-msgid "Show all seasons"
-msgstr ""
-
-#: admin/hooks/restrict-manage-posts.php:40
-msgid "Show all teams"
-msgstr ""
-
-#: admin/hooks/wp-insert-post-data.php:13 admin/tools/event-importer.php:314
-msgid "vs"
-msgstr ""
-
-#: admin/includes/globals.php:53
-msgid "Africa"
-msgstr ""
-
-#: admin/includes/globals.php:54
-msgid "Asia"
-msgstr ""
-
-#: admin/includes/globals.php:55
-msgid "Europe"
-msgstr ""
-
-#: admin/includes/globals.php:56
-msgid "North America"
-msgstr ""
-
-#: admin/includes/globals.php:57
-msgid "Oceania"
-msgstr ""
-
-#: admin/includes/globals.php:58
-msgid "South America"
-msgstr ""
-
-#: admin/includes/globals.php:65
-msgid "Andorra"
-msgstr ""
-
-#: admin/includes/globals.php:66
-msgid "United Arab Emirates"
-msgstr ""
-
-#: admin/includes/globals.php:67
-msgid "Afghanistan"
-msgstr ""
-
-#: admin/includes/globals.php:68
-msgid "Antigua and Barbuda"
-msgstr ""
-
-#: admin/includes/globals.php:69
-msgid "Albania"
-msgstr ""
-
-#: admin/includes/globals.php:70
-msgid "Armenia"
-msgstr ""
-
-#: admin/includes/globals.php:71
-msgid "Angola"
-msgstr ""
-
-#: admin/includes/globals.php:72
-msgid "Argentina"
-msgstr ""
-
-#: admin/includes/globals.php:73
-msgid "Austria"
-msgstr ""
-
-#: admin/includes/globals.php:74
-msgid "Australia"
-msgstr ""
-
-#: admin/includes/globals.php:75
-msgid "Azerbaijan"
-msgstr ""
-
-#: admin/includes/globals.php:76
-msgid "Bosnia and Herzegovina"
-msgstr ""
-
-#: admin/includes/globals.php:77
-msgid "Barbados"
-msgstr ""
-
-#: admin/includes/globals.php:78
-msgid "Bangladesh"
-msgstr ""
-
-#: admin/includes/globals.php:79
-msgid "Belgium"
-msgstr ""
-
-#: admin/includes/globals.php:80
-msgid "Burkina Faso"
-msgstr ""
-
-#: admin/includes/globals.php:81
-msgid "Bulgaria"
-msgstr ""
-
-#: admin/includes/globals.php:82
-msgid "Bahrain"
-msgstr ""
-
-#: admin/includes/globals.php:83
-msgid "Burundi"
-msgstr ""
-
-#: admin/includes/globals.php:84
-msgid "Benin"
-msgstr ""
-
-#: admin/includes/globals.php:85
-msgid "Brunei"
-msgstr ""
-
-#: admin/includes/globals.php:86
-msgid "Bolivia"
-msgstr ""
-
-#: admin/includes/globals.php:87
-msgid "Brazil"
-msgstr ""
-
-#: admin/includes/globals.php:88
-msgid "Bahamas"
-msgstr ""
-
-#: admin/includes/globals.php:89
-msgid "Bhutan"
-msgstr ""
-
-#: admin/includes/globals.php:90
-msgid "Botswana"
-msgstr ""
-
-#: admin/includes/globals.php:91
-msgid "Belarus"
-msgstr ""
-
-#: admin/includes/globals.php:92
-msgid "Belize"
-msgstr ""
-
-#: admin/includes/globals.php:93
-msgid "Canada"
-msgstr ""
-
-#: admin/includes/globals.php:94
-msgid "Democratic Republic of the Congo"
-msgstr ""
-
-#: admin/includes/globals.php:95
-msgid "Central African Republic"
-msgstr ""
-
-#: admin/includes/globals.php:96
-msgid "Republic of the Congo"
-msgstr ""
-
-#: admin/includes/globals.php:97
-msgid "Switzerland"
-msgstr ""
-
-#: admin/includes/globals.php:98
-msgid "Ivory Coast"
-msgstr ""
-
-#: admin/includes/globals.php:99
-msgid "Chile"
-msgstr ""
-
-#: admin/includes/globals.php:100
-msgid "Cameroon"
-msgstr ""
-
-#: admin/includes/globals.php:101
-msgid "China"
-msgstr ""
-
-#: admin/includes/globals.php:102
-msgid "Colombia"
-msgstr ""
-
-#: admin/includes/globals.php:103
-msgid "Costa Rica"
-msgstr ""
-
-#: admin/includes/globals.php:104
-msgid "Cuba"
-msgstr ""
-
-#: admin/includes/globals.php:105
-msgid "Cape Verde"
-msgstr ""
-
-#: admin/includes/globals.php:106
-msgid "Cyprus"
-msgstr ""
-
-#: admin/includes/globals.php:107
-msgid "Czech Republic"
-msgstr ""
-
-#: admin/includes/globals.php:108
-msgid "Germany"
-msgstr ""
-
-#: admin/includes/globals.php:109
-msgid "Djibouti"
-msgstr ""
-
-#: admin/includes/globals.php:110
-msgid "Denmark"
-msgstr ""
-
-#: admin/includes/globals.php:111
-msgid "Dominica"
-msgstr ""
-
-#: admin/includes/globals.php:112
-msgid "Dominican Republic"
-msgstr ""
-
-#: admin/includes/globals.php:113
-msgid "Algeria"
-msgstr ""
-
-#: admin/includes/globals.php:114
-msgid "Ecuador"
-msgstr ""
-
-#: admin/includes/globals.php:115
-msgid "Estonia"
-msgstr ""
-
-#: admin/includes/globals.php:116
-msgid "Egypt"
-msgstr ""
-
-#: admin/includes/globals.php:117
-msgid "Western Sahara"
-msgstr ""
-
-#: admin/includes/globals.php:118
-msgid "England"
-msgstr ""
-
-#: admin/includes/globals.php:119
-msgid "Eritrea"
-msgstr ""
-
-#: admin/includes/globals.php:120
-msgid "Spain"
-msgstr ""
-
-#: admin/includes/globals.php:121
-msgid "Ethiopia"
-msgstr ""
-
-#: admin/includes/globals.php:122
-msgid "Finland"
-msgstr ""
-
-#: admin/includes/globals.php:123
-msgid "Fiji"
-msgstr ""
-
-#: admin/includes/globals.php:124
-msgid "Micronesia"
-msgstr ""
-
-#: admin/includes/globals.php:125
-msgid "France"
-msgstr ""
-
-#: admin/includes/globals.php:126
-msgid "Gabon"
-msgstr ""
-
-#: admin/includes/globals.php:127
-msgid "United Kingdom"
-msgstr ""
-
-#: admin/includes/globals.php:128
-msgid "Grenada"
-msgstr ""
-
-#: admin/includes/globals.php:129
-msgid "Georgia"
-msgstr ""
-
-#: admin/includes/globals.php:130
-msgid "Ghana"
-msgstr ""
-
-#: admin/includes/globals.php:131
-msgid "Gambia"
-msgstr ""
-
-#: admin/includes/globals.php:132
-msgid "Guinea"
-msgstr ""
-
-#: admin/includes/globals.php:133
-msgid "Equatorial Guinea"
-msgstr ""
-
-#: admin/includes/globals.php:134
-msgid "Greece"
-msgstr ""
-
-#: admin/includes/globals.php:135
-msgid "Guatemala"
-msgstr ""
-
-#: admin/includes/globals.php:136
-msgid "Guinea-Bissau"
-msgstr ""
-
-#: admin/includes/globals.php:137
-msgid "Guyana"
-msgstr ""
-
-#: admin/includes/globals.php:138
-msgid "Hong Kong"
-msgstr ""
-
-#: admin/includes/globals.php:139
-msgid "Honduras"
-msgstr ""
-
-#: admin/includes/globals.php:140
-msgid "Croatia"
-msgstr ""
-
-#: admin/includes/globals.php:141
-msgid "Haiti"
-msgstr ""
-
-#: admin/includes/globals.php:142
-msgid "Hungary"
-msgstr ""
-
-#: admin/includes/globals.php:143
-msgid "Indonesia"
-msgstr ""
-
-#: admin/includes/globals.php:144
-msgid "Ireland"
-msgstr ""
-
-#: admin/includes/globals.php:145
-msgid "Israel"
-msgstr ""
-
-#: admin/includes/globals.php:146
-msgid "India"
-msgstr ""
-
-#: admin/includes/globals.php:147
-msgid "Iraq"
-msgstr ""
-
-#: admin/includes/globals.php:148
-msgid "Iran"
-msgstr ""
-
-#: admin/includes/globals.php:149
-msgid "Iceland"
-msgstr ""
-
-#: admin/includes/globals.php:150
-msgid "Italy"
-msgstr ""
-
-#: admin/includes/globals.php:151
-msgid "Jamaica"
-msgstr ""
-
-#: admin/includes/globals.php:152
-msgid "Jordan"
-msgstr ""
-
-#: admin/includes/globals.php:153
-msgid "Japan"
-msgstr ""
-
-#: admin/includes/globals.php:154
-msgid "Kenya"
-msgstr ""
-
-#: admin/includes/globals.php:155
-msgid "Kyrgyzstan"
-msgstr ""
-
-#: admin/includes/globals.php:156
-msgid "Cambodia"
-msgstr ""
-
-#: admin/includes/globals.php:157
-msgid "Kiribati"
-msgstr ""
-
-#: admin/includes/globals.php:158
-msgid "Comoros"
-msgstr ""
-
-#: admin/includes/globals.php:159
-msgid "Saint Kitts and Nevis"
-msgstr ""
-
-#: admin/includes/globals.php:160
-msgid "North Korea"
-msgstr ""
-
-#: admin/includes/globals.php:161
-msgid "South Korea"
-msgstr ""
-
-#: admin/includes/globals.php:162
-msgid "Kuwait"
-msgstr ""
-
-#: admin/includes/globals.php:163
-msgid "Kazakhstan"
-msgstr ""
-
-#: admin/includes/globals.php:164
-msgid "Laos"
-msgstr ""
-
-#: admin/includes/globals.php:165
-msgid "Lebanon"
-msgstr ""
-
-#: admin/includes/globals.php:166
-msgid "Saint Lucia"
-msgstr ""
-
-#: admin/includes/globals.php:167
-msgid "Liechtenstein"
-msgstr ""
-
-#: admin/includes/globals.php:168
-msgid "Sri Lanka"
-msgstr ""
-
-#: admin/includes/globals.php:169
-msgid "Liberia"
-msgstr ""
-
-#: admin/includes/globals.php:170
-msgid "Lesotho"
-msgstr ""
-
-#: admin/includes/globals.php:171
-msgid "Lithuania"
-msgstr ""
-
-#: admin/includes/globals.php:172
-msgid "Luxembourg"
-msgstr ""
-
-#: admin/includes/globals.php:173
-msgid "Latvia"
-msgstr ""
-
-#: admin/includes/globals.php:174
-msgid "Libya"
-msgstr ""
-
-#: admin/includes/globals.php:175
-msgid "Morocco"
-msgstr ""
-
-#: admin/includes/globals.php:176
-msgid "Monaco"
-msgstr ""
-
-#: admin/includes/globals.php:177
-msgid "Moldova"
-msgstr ""
-
-#: admin/includes/globals.php:178
-msgid "Montenegro"
-msgstr ""
-
-#: admin/includes/globals.php:179
-msgid "Madagascar"
-msgstr ""
-
-#: admin/includes/globals.php:180
-msgid "Marshall Islands"
-msgstr ""
-
-#: admin/includes/globals.php:181
-msgid "Macedonia"
-msgstr ""
-
-#: admin/includes/globals.php:182
-msgid "Mali"
-msgstr ""
-
-#: admin/includes/globals.php:183
-msgid "Burma"
-msgstr ""
-
-#: admin/includes/globals.php:184
-msgid "Mongolia"
-msgstr ""
-
-#: admin/includes/globals.php:185
-msgid "Macau"
-msgstr ""
-
-#: admin/includes/globals.php:186
-msgid "Mauritania"
-msgstr ""
-
-#: admin/includes/globals.php:187
-msgid "Malta"
-msgstr ""
-
-#: admin/includes/globals.php:188
-msgid "Mauritius"
-msgstr ""
-
-#: admin/includes/globals.php:189
-msgid "Maldives"
-msgstr ""
-
-#: admin/includes/globals.php:190
-msgid "Malawi"
-msgstr ""
-
-#: admin/includes/globals.php:191
-msgid "Mexico"
-msgstr ""
-
-#: admin/includes/globals.php:192
-msgid "Malaysia"
-msgstr ""
-
-#: admin/includes/globals.php:193
-msgid "Mozambique"
-msgstr ""
-
-#: admin/includes/globals.php:194
-msgid "Namibia"
-msgstr ""
-
-#: admin/includes/globals.php:195
-msgid "Northern Ireland"
-msgstr ""
-
-#: admin/includes/globals.php:196
-msgid "Niger"
-msgstr ""
-
-#: admin/includes/globals.php:197
-msgid "Nigeria"
-msgstr ""
-
-#: admin/includes/globals.php:198
-msgid "Nicaragua"
-msgstr ""
-
-#: admin/includes/globals.php:199
-msgid "Netherlands"
-msgstr ""
-
-#: admin/includes/globals.php:200
-msgid "Norway"
-msgstr ""
-
-#: admin/includes/globals.php:201
-msgid "Nepal"
-msgstr ""
-
-#: admin/includes/globals.php:202
-msgid "Nauru"
-msgstr ""
-
-#: admin/includes/globals.php:203
-msgid "New Zealand"
-msgstr ""
-
-#: admin/includes/globals.php:204
-msgid "Oman"
-msgstr ""
-
-#: admin/includes/globals.php:205
-msgid "Panama"
-msgstr ""
-
-#: admin/includes/globals.php:206
-msgid "Peru"
-msgstr ""
-
-#: admin/includes/globals.php:207
-msgid "Papua New Guinea"
-msgstr ""
-
-#: admin/includes/globals.php:208
-msgid "Philippines"
-msgstr ""
-
-#: admin/includes/globals.php:209
-msgid "Pakistan"
-msgstr ""
-
-#: admin/includes/globals.php:210
-msgid "Poland"
-msgstr ""
-
-#: admin/includes/globals.php:211
-msgid "Portugal"
-msgstr ""
-
-#: admin/includes/globals.php:212
-msgid "Palau"
-msgstr ""
-
-#: admin/includes/globals.php:213
-msgid "Paraguay"
-msgstr ""
-
-#: admin/includes/globals.php:214
-msgid "Qatar"
-msgstr ""
-
-#: admin/includes/globals.php:215
-msgid "Romania"
-msgstr ""
-
-#: admin/includes/globals.php:216
-msgid "Serbia"
-msgstr ""
-
-#: admin/includes/globals.php:217
-msgid "Russia"
-msgstr ""
-
-#: admin/includes/globals.php:218
-msgid "Rwanda"
-msgstr ""
-
-#: admin/includes/globals.php:219
-msgid "Saudi Arabia"
-msgstr ""
-
-#: admin/includes/globals.php:220
-msgid "Solomon Islands"
-msgstr ""
-
-#: admin/includes/globals.php:221
-msgid "Seychelles"
-msgstr ""
-
-#: admin/includes/globals.php:222
-msgid "Sudan"
-msgstr ""
-
-#: admin/includes/globals.php:223
-msgid "Sweden"
-msgstr ""
-
-#: admin/includes/globals.php:224
-msgid "Scotland"
-msgstr ""
-
-#: admin/includes/globals.php:225
-msgid "Singapore"
-msgstr ""
-
-#: admin/includes/globals.php:226
-msgid "Slovenia"
-msgstr ""
-
-#: admin/includes/globals.php:227
-msgid "Slovakia"
-msgstr ""
-
-#: admin/includes/globals.php:228
-msgid "Sierra Leone"
-msgstr ""
-
-#: admin/includes/globals.php:229
-msgid "San Marino"
-msgstr ""
-
-#: admin/includes/globals.php:230
-msgid "Senegal"
-msgstr ""
-
-#: admin/includes/globals.php:231
-msgid "Somalia"
-msgstr ""
-
-#: admin/includes/globals.php:232
-msgid "Suriname"
-msgstr ""
-
-#: admin/includes/globals.php:233
-msgid "Sao Tome and Principe"
-msgstr ""
-
-#: admin/includes/globals.php:234
-msgid "El Salvador"
-msgstr ""
-
-#: admin/includes/globals.php:235
-msgid "Swaziland"
-msgstr ""
-
-#: admin/includes/globals.php:236
-msgid "Chad"
-msgstr ""
-
-#: admin/includes/globals.php:237
-msgid "Togo"
-msgstr ""
-
-#: admin/includes/globals.php:238
-msgid "Thailand"
-msgstr ""
-
-#: admin/includes/globals.php:239
-msgid "Tajikistan"
-msgstr ""
-
-#: admin/includes/globals.php:240
-msgid "East Timor"
-msgstr ""
-
-#: admin/includes/globals.php:241
-msgid "Turkmenistan"
-msgstr ""
-
-#: admin/includes/globals.php:242
-msgid "Tunisia"
-msgstr ""
-
-#: admin/includes/globals.php:243
-msgid "Tonga"
-msgstr ""
-
-#: admin/includes/globals.php:244
-msgid "Turkey"
-msgstr ""
-
-#: admin/includes/globals.php:245
-msgid "Trinidad and Tobago"
-msgstr ""
-
-#: admin/includes/globals.php:246
-msgid "Tuvalu"
-msgstr ""
-
-#: admin/includes/globals.php:247
-msgid "Taiwan"
-msgstr ""
-
-#: admin/includes/globals.php:248
-msgid "Tanzania"
-msgstr ""
-
-#: admin/includes/globals.php:249
-msgid "Ukraine"
-msgstr ""
-
-#: admin/includes/globals.php:250
-msgid "Uganda"
-msgstr ""
-
-#: admin/includes/globals.php:251
-msgid "United States"
-msgstr ""
-
-#: admin/includes/globals.php:252
-msgid "Uruguay"
-msgstr ""
-
-#: admin/includes/globals.php:253
-msgid "Uzbekistan"
-msgstr ""
-
-#: admin/includes/globals.php:254
-msgid "Vatican City"
-msgstr ""
-
-#: admin/includes/globals.php:255
-msgid "Saint Vincent and the Grenadines"
-msgstr ""
-
-#: admin/includes/globals.php:256
-msgid "Venezuela"
-msgstr ""
-
-#: admin/includes/globals.php:257
-msgid "Vietnam"
-msgstr ""
-
-#: admin/includes/globals.php:258
-msgid "Vanuatu"
-msgstr ""
-
-#: admin/includes/globals.php:259
-msgid "Wales"
-msgstr ""
-
-#: admin/includes/globals.php:260
-msgid "Samoa"
-msgstr ""
-
-#: admin/includes/globals.php:261
-msgid "Yemen"
-msgstr ""
-
-#: admin/includes/globals.php:262
-msgid "South Africa"
-msgstr ""
-
-#: admin/includes/globals.php:263
-msgid "Zambia"
-msgstr ""
-
-#: admin/includes/globals.php:264
-msgid "Zimbabwe"
-msgstr ""
-
-#: admin/includes/globals.php:277 admin/post-types/calendar.php:5
-#: admin/widgets/events-calendar.php:41 admin/widgets/events-list.php:42
-msgid "Calendar"
-msgstr ""
-
-#: admin/includes/globals.php:278 admin/includes/globals.php:280
-#: admin/settings/options-player.php:40
-msgid "List"
-msgstr ""
-
-#: admin/includes/globals.php:281 admin/settings/options-player.php:48
-msgid "Gallery"
-msgstr ""
-
-#: admin/includes/notice-install.php:5
-msgid "Welcome to SportsPress – Get Started"
-msgstr ""
-
-#: admin/includes/notice-install.php:7
-msgid "Go to SportsPress Settings"
-msgstr ""
-
-#: admin/includes/notice-install.php:8
-msgid "Skip setup"
-msgstr ""
-
-#: admin/includes/notice-theme-support.php:5
-msgid ""
-"Your theme does not declare SportsPress support – if "
-"you encounter layout issues please read our integration guide or choose a "
-"SportsPress theme :)"
-msgstr ""
-
-#: admin/includes/notice-theme-support.php:7
-msgid "Theme Integration Guide"
-msgstr ""
-
-#: admin/includes/notice-theme-support.php:8
-msgid "Hide this notice"
-msgstr ""
-
-#: admin/post-types/calendar.php:4 admin/post-types/calendar.php:15
-#: admin/settings/options-permalink.php:7
-msgid "Calendars"
-msgstr ""
-
-#: admin/post-types/calendar.php:6
-msgid "Add New Calendar"
-msgstr ""
-
-#: admin/post-types/calendar.php:7
-msgid "Edit Calendar"
-msgstr ""
-
-#: admin/post-types/calendar.php:8 admin/post-types/column.php:8
-#: admin/post-types/directory.php:8 admin/post-types/event.php:9
-#: admin/post-types/list.php:8 admin/post-types/metric.php:8
-#: admin/post-types/outcome.php:8 admin/post-types/player.php:10
-#: admin/post-types/result.php:8 admin/post-types/staff.php:8
-#: admin/post-types/statistic.php:8 admin/post-types/table.php:8
-#: admin/post-types/team.php:8
-msgid "New"
-msgstr ""
-
-#: admin/post-types/calendar.php:9 admin/post-types/column.php:9
-#: admin/post-types/directory.php:9 admin/post-types/event.php:10
-#: admin/post-types/list.php:9 admin/post-types/metric.php:9
-#: admin/post-types/outcome.php:9 admin/post-types/player.php:11
-#: admin/post-types/result.php:9 admin/post-types/staff.php:9
-#: admin/post-types/statistic.php:9 admin/post-types/table.php:9
-#: admin/post-types/team.php:9 admin/terms/league.php:8
-#: admin/terms/position.php:8 admin/terms/season.php:8 admin/terms/venue.php:8
-msgid "View"
-msgstr ""
-
-#: admin/post-types/calendar.php:10 admin/post-types/column.php:10
-#: admin/post-types/directory.php:10 admin/post-types/event.php:11
-#: admin/post-types/list.php:10 admin/post-types/metric.php:10
-#: admin/post-types/outcome.php:10 admin/post-types/player.php:12
-#: admin/post-types/result.php:10 admin/post-types/staff.php:10
-#: admin/post-types/statistic.php:10 admin/post-types/table.php:10
-#: admin/post-types/team.php:10 admin/terms/league.php:14
-#: admin/terms/position.php:14 admin/terms/season.php:14
-#: admin/terms/venue.php:14
-msgid "Search"
-msgstr ""
-
-#: admin/post-types/calendar.php:34 admin/post-types/directory.php:34
-#: admin/post-types/list.php:34 admin/post-types/table.php:34
-msgid "Title"
-msgstr ""
-
-#: admin/post-types/calendar.php:37 admin/post-types/calendar.php:120
-#: admin/post-types/event.php:41 admin/post-types/event.php:132
-#: admin/templates/event-venue.php:24 admin/terms/venue.php:5
-msgid "Venue"
-msgstr ""
-
-#: admin/post-types/calendar.php:52 admin/post-types/list.php:50
-#: admin/post-types/table.php:49
-msgid "Shortcode"
-msgstr ""
-
-#: admin/post-types/calendar.php:53 admin/post-types/directory.php:50
-#: admin/post-types/event.php:34 admin/post-types/event.php:67
-#: admin/post-types/list.php:51 admin/tools/event-importer.php:560
-msgid "Format"
-msgstr ""
-
-#: admin/post-types/calendar.php:56 admin/post-types/directory.php:53
-#: admin/post-types/list.php:54 admin/post-types/table.php:52
-msgid "Description"
-msgstr ""
-
-#: admin/post-types/calendar.php:63 admin/post-types/list.php:61
-#: admin/post-types/table.php:58
-msgid ""
-"Copy this code and paste it into your post, page or text widget content."
-msgstr ""
-
-#: admin/post-types/calendar.php:94 admin/post-types/calendar.php:109
-#: admin/post-types/calendar.php:124 admin/post-types/calendar.php:139
-#: admin/post-types/directory.php:110 admin/post-types/list.php:121
-#: admin/terms/league.php:6 admin/terms/position.php:6
-#: admin/terms/season.php:6 admin/terms/venue.php:6
-#: admin/widgets/events-calendar.php:45 admin/widgets/events-list.php:46
-msgid "All"
-msgstr ""
-
-#: admin/post-types/column.php:5
-msgid "Column"
-msgstr ""
-
-#: admin/post-types/column.php:6
-msgid "Add New Column"
-msgstr ""
-
-#: admin/post-types/column.php:7
-msgid "Edit Column"
-msgstr ""
-
-#: admin/post-types/column.php:33 admin/post-types/metric.php:32
-#: admin/post-types/outcome.php:33 admin/post-types/result.php:33
-#: admin/post-types/statistic.php:33 admin/settings/options-event.php:57
-#: admin/settings/options-event.php:110 admin/settings/options-player.php:124
-#: admin/settings/options-player.php:162 admin/settings/options-team.php:75
-msgid "Label"
-msgstr ""
-
-#: admin/post-types/column.php:34 admin/post-types/column.php:56
-#: admin/post-types/outcome.php:34 admin/post-types/outcome.php:46
-#: admin/post-types/result.php:34 admin/post-types/result.php:47
-#: admin/settings/options-event.php:58 admin/settings/options-event.php:111
-#: admin/settings/options-team.php:76
-msgid "Key"
-msgstr ""
-
-#: admin/post-types/column.php:35 admin/post-types/column.php:60
-#: admin/settings/options-team.php:77
-msgid "Equation"
-msgstr ""
-
-#: admin/post-types/column.php:36 admin/post-types/column.php:68
-#: admin/settings/options-team.php:78
-msgid "Rounding"
-msgstr ""
-
-#: admin/post-types/column.php:37 admin/post-types/column.php:72
-#: admin/settings/options-team.php:79
-msgid "Sort Order"
-msgstr ""
-
-#: admin/post-types/column.php:76
-msgid "Disable"
-msgstr ""
-
-#: admin/post-types/column.php:88 admin/post-types/directory.php:142
-#: admin/post-types/list.php:153 admin/widgets/player-gallery.php:97
-#: admin/widgets/player-list.php:118
-msgid "Descending"
-msgstr ""
-
-#: admin/post-types/column.php:88 admin/post-types/directory.php:141
-#: admin/post-types/list.php:152 admin/widgets/player-gallery.php:96
-#: admin/widgets/player-list.php:117
-msgid "Ascending"
-msgstr ""
-
-#: admin/post-types/directory.php:4 admin/post-types/directory.php:15
-msgid "Directories"
-msgstr ""
-
-#: admin/post-types/directory.php:5
-msgid "Directory"
-msgstr ""
-
-#: admin/post-types/directory.php:6
-msgid "Add New Directory"
-msgstr ""
-
-#: admin/post-types/directory.php:7
-msgid "Edit Directory"
-msgstr ""
-
-#: admin/post-types/directory.php:119 admin/post-types/list.php:130
-#: admin/widgets/player-gallery.php:72 admin/widgets/player-list.php:93
-msgid "Sort by:"
-msgstr ""
-
-#: admin/post-types/directory.php:124 admin/post-types/list.php:135
-#: admin/post-types/player.php:35 admin/post-types/player.php:105
-#: admin/widgets/player-gallery.php:77 admin/widgets/player-list.php:98
-msgid "Number"
-msgstr ""
-
-#: admin/post-types/directory.php:125 admin/post-types/list.php:136
-#: admin/post-types/staff.php:47 admin/terms/league.php:11
-#: admin/terms/position.php:11 admin/terms/season.php:11
-#: admin/terms/venue.php:11 admin/widgets/player-gallery.php:78
-#: admin/widgets/player-list.php:99
-msgid "Name"
-msgstr ""
-
-#: admin/post-types/directory.php:138 admin/post-types/list.php:149
-#: admin/widgets/player-gallery.php:94 admin/widgets/player-list.php:115
-msgid "Sort Order:"
-msgstr ""
-
-#: admin/post-types/event.php:4 admin/settings/settings.php:11
-msgid "Schedule"
-msgstr ""
-
-#: admin/post-types/event.php:7
-msgid "Add New Event"
-msgstr ""
-
-#: admin/post-types/event.php:8
-msgid "Edit Event"
-msgstr ""
-
-#: admin/post-types/event.php:70
-msgid "Video"
-msgstr ""
-
-#: admin/post-types/event.php:77 admin/post-types/player.php:59
-#: admin/post-types/statistic.php:4 admin/post-types/statistic.php:15
-#: admin/settings/options-player.php:64
-msgid "Statistics"
-msgstr ""
-
-#: admin/post-types/event.php:109 admin/post-types/event.php:124
-#: admin/post-types/event.php:140 admin/tools/event-importer.php:576
-#: admin/tools/event-importer.php:591
-msgid "-- Not set --"
-msgstr ""
-
-#: admin/post-types/event.php:162
-msgid "Remove"
-msgstr ""
-
-#: admin/post-types/event.php:170 admin/post-types/list.php:35
-#: admin/post-types/list.php:156 admin/post-types/player.php:4
-#: admin/post-types/player.php:7 admin/post-types/player.php:17
-#: admin/settings/options-permalink.php:12
-msgid "Players"
-msgstr ""
-
-#: admin/post-types/event.php:186
-msgid "— Add —"
-msgstr ""
-
-#: admin/post-types/event.php:203
-msgid "Remove video"
-msgstr ""
-
-#: admin/post-types/event.php:207
-msgid "URL"
-msgstr ""
-
-#: admin/post-types/event.php:212
-msgid "Add video"
-msgstr ""
-
-#: admin/post-types/list.php:4 admin/post-types/list.php:15
-#: admin/settings/options-permalink.php:14
-msgid "Player Lists"
-msgstr ""
-
-#: admin/post-types/list.php:5 admin/post-types/list.php:53
-#: admin/widgets/player-gallery.php:53 admin/widgets/player-list.php:53
-msgid "Player List"
-msgstr ""
-
-#: admin/post-types/list.php:6
-msgid "Add New Player List"
-msgstr ""
-
-#: admin/post-types/list.php:7
-msgid "Edit Player List"
-msgstr ""
-
-#: admin/post-types/metric.php:4 admin/post-types/metric.php:15
-#: admin/post-types/player.php:56 admin/settings/options-player.php:56
-msgid "Metrics"
-msgstr ""
-
-#: admin/post-types/metric.php:5
-msgid "Metric"
-msgstr ""
-
-#: admin/post-types/metric.php:6
-msgid "Add New Metric"
-msgstr ""
-
-#: admin/post-types/metric.php:7
-msgid "Edit Metric"
-msgstr ""
-
-#: admin/post-types/outcome.php:6
-msgid "Add New Outcome"
-msgstr ""
-
-#: admin/post-types/outcome.php:7
-msgid "Edit Outcome"
-msgstr ""
-
-#: admin/post-types/player.php:6 admin/settings/settings.php:13
-msgid "Roster"
-msgstr ""
-
-#: admin/post-types/player.php:8
-msgid "Add New Player"
-msgstr ""
-
-#: admin/post-types/player.php:9
-msgid "Edit Player"
-msgstr ""
-
-#: admin/post-types/player.php:108 admin/post-types/player.php:109
-#: admin/settings/options-player.php:32 admin/templates/player-metrics.php:26
-msgid "Nationality"
-msgstr ""
-
-#: admin/post-types/player.php:150 admin/templates/player-metrics.php:39
-msgid "Past Teams"
-msgstr ""
-
-#: admin/post-types/result.php:5
-msgid "Result"
-msgstr ""
-
-#: admin/post-types/result.php:6
-msgid "Add New Result"
-msgstr ""
-
-#: admin/post-types/result.php:7
-msgid "Edit Result"
-msgstr ""
-
-#: admin/post-types/staff.php:6
-msgid "Add New Staff"
-msgstr ""
-
-#: admin/post-types/staff.php:7
-msgid "Edit Staff"
-msgstr ""
-
-#: admin/post-types/staff.php:32
-msgid "Profile"
-msgstr ""
-
-#: admin/post-types/statistic.php:5
-msgid "Statistic"
-msgstr ""
-
-#: admin/post-types/statistic.php:6
-msgid "Add New Statistic"
-msgstr ""
-
-#: admin/post-types/statistic.php:7
-msgid "Edit Statistic"
-msgstr ""
-
-#: admin/post-types/statistic.php:35 admin/post-types/statistic.php:48
-#: admin/settings/options-player.php:164
-msgid "Calculate"
-msgstr ""
-
-#: admin/post-types/table.php:4 admin/post-types/table.php:15
-#: admin/settings/options-permalink.php:11
-msgid "League Tables"
-msgstr ""
-
-#: admin/post-types/table.php:5 admin/post-types/table.php:51
-#: admin/widgets/league-table.php:50
-msgid "League Table"
-msgstr ""
-
-#: admin/post-types/table.php:6
-msgid "Add New League Table"
-msgstr ""
-
-#: admin/post-types/table.php:7
-msgid "Edit League Table"
-msgstr ""
-
-#: admin/post-types/team.php:6
-msgid "Add New Team"
-msgstr ""
-
-#: admin/post-types/team.php:7
-msgid "Edit Team"
-msgstr ""
-
-#: admin/post-types/team.php:13 admin/terms/league.php:13
-#: admin/terms/position.php:13 admin/terms/season.php:13
-#: admin/terms/venue.php:13
-msgid "Parent:"
-msgstr ""
-
-#: admin/settings/options-event.php:18
-msgid "Event Options"
-msgstr ""
-
-#: admin/settings/options-event.php:56
-msgid "Primary"
-msgstr ""
-
-#: admin/settings/options-event.php:69
-#, php-format
-msgid "Default (%s)"
-msgstr ""
-
-#: admin/settings/options-event.php:71 admin/widgets/player-gallery.php:76
-#: admin/widgets/player-list.php:97
-msgid "Default"
-msgstr ""
-
-#: admin/settings/options-general.php:18
-msgid "General Options"
-msgstr ""
-
-#: admin/settings/options-general.php:25 admin/settings/options-general.php:46
-msgid "Sport"
-msgstr ""
-
-#: admin/settings/options-general.php:44
-msgid "Custom"
-msgstr ""
-
-#: admin/settings/options-permalink.php:25 admin/settings/settings.php:10
-#: admin/settings/settings.php:166 admin/settings/settings.php:167
-msgid "SportsPress"
-msgstr ""
-
-#: admin/settings/options-permalink.php:42
-msgid ""
-"These settings control the permalinks used for SportsPress. These settings "
-"only apply when not using \"default\" permalinks above."
-msgstr ""
-
-#: admin/settings/options-player.php:18
-msgid "Player Options"
-msgstr ""
-
-#: admin/settings/options-player.php:25
-msgid "Player List Options"
-msgstr ""
-
-#: admin/settings/options-player.php:78
-msgid "Display national flags"
-msgstr ""
-
-#: admin/settings/options-player.php:91
-msgid "Display players as links"
-msgstr ""
-
-#: admin/settings/options-player.php:104 admin/widgets/player-gallery.php:104
-msgid "Display player names on hover"
-msgstr ""
-
-#: admin/settings/options-team.php:18
-msgid "League Table Options"
-msgstr ""
-
-#: admin/settings/options-team.php:48 admin/widgets/league-table.php:90
-msgid "Display logos"
-msgstr ""
-
-#: admin/settings/options-team.php:55
-msgid "Display teams as links"
-msgstr ""
-
-#: admin/settings/options-text.php:19
-msgid "Text Settings"
-msgstr ""
-
-#: admin/settings/settings.php:14
-msgid "Text"
-msgstr ""
-
-#. translators: Calendar caption: 1: month name, 2: 4-digit year
-#: admin/templates/events-calendar.php:78
-#: admin/templates/events-calendar.php:105
-#: admin/templates/events-calendar.php:113
-#, php-format
-msgctxt "calendar caption"
-msgid "%1$s %2$s"
-msgstr ""
-
-#: admin/templates/events-calendar.php:200 admin/templates/events-list.php:120
-msgid "View all events"
-msgstr ""
-
-#: admin/templates/league-table.php:39
-msgid "Pos"
-msgstr ""
-
-#: admin/templates/league-table.php:91
-msgid "View full table"
-msgstr ""
-
-#: admin/templates/player-gallery.php:132 admin/templates/player-list.php:105
-msgid "View all players"
-msgstr ""
-
-#: admin/templates/player-list.php:51 admin/templates/player-roster.php:88
-msgid "Rank"
-msgstr ""
-
-#: admin/terms/league.php:7
-msgid "Edit League"
-msgstr ""
-
-#: admin/terms/league.php:9 admin/terms/position.php:9
-#: admin/terms/season.php:9 admin/terms/venue.php:9
-msgid "Update"
-msgstr ""
-
-#: admin/terms/league.php:12 admin/terms/position.php:12
-#: admin/terms/season.php:12 admin/terms/venue.php:12
-msgid "Parent"
-msgstr ""
-
-#: admin/terms/position.php:5
-msgid "Position"
-msgstr ""
-
-#: admin/terms/position.php:7
-msgid "Edit Position"
-msgstr ""
-
-#: admin/terms/season.php:7
-msgid "Edit Season"
-msgstr ""
-
-#: admin/terms/venue.php:7
-msgid "Edit Venue"
-msgstr ""
-
-#: admin/terms/venue.php:38 admin/terms/venue.php:85
-msgid "Address"
-msgstr ""
-
-#: admin/terms/venue.php:45
-msgid "Latitude"
-msgstr ""
-
-#: admin/terms/venue.php:51
-msgid "Longitude"
-msgstr ""
-
-#: admin/tools/dashboard.php:34
+#: includes/admin/class-sp-admin-dashboard.php:34
msgid "SportsPress Status"
msgstr ""
-#: admin/tools/dashboard.php:54
+#: includes/admin/class-sp-admin-dashboard.php:54
#, php-format
msgid "%s until next event"
msgstr ""
-#: admin/tools/dashboard.php:61
+#: includes/admin/class-sp-admin-dashboard.php:61
#, php-format
msgid "%s event scheduled"
msgid_plural "%s events scheduled"
msgstr[0] ""
msgstr[1] ""
-#: admin/tools/dashboard.php:66
+#: includes/admin/class-sp-admin-dashboard.php:66
#, php-format
msgid "%s event published"
msgid_plural "%s events published"
msgstr[0] ""
msgstr[1] ""
-#: admin/tools/event-importer.php:425 admin/tools/event-importer.php:465
-#: admin/tools/event-importer.php:480 admin/tools/player-importer.php:192
-#: admin/tools/player-importer.php:232 admin/tools/player-importer.php:247
-#: admin/tools/team-importer.php:149 admin/tools/team-importer.php:189
-#: admin/tools/team-importer.php:204
+#: includes/admin/class-sp-admin-importers.php:31
+msgid "SportsPress Events (CSV)"
+msgstr ""
+
+#: includes/admin/class-sp-admin-importers.php:31
+msgid "Import events from a csv file."
+msgstr ""
+
+#: includes/admin/class-sp-admin-importers.php:32
+msgid "SportsPress Teams (CSV)"
+msgstr ""
+
+#: includes/admin/class-sp-admin-importers.php:32
+msgid "Import teams from a csv file."
+msgstr ""
+
+#: includes/admin/class-sp-admin-importers.php:33
+msgid "SportsPress Players (CSV)"
+msgstr ""
+
+#: includes/admin/class-sp-admin-importers.php:33
+msgid "Import players from a csv file."
+msgstr ""
+
+#: includes/admin/class-sp-admin-menus.php:33
+#: includes/admin/class-sp-admin-permalink-settings.php:47
+msgid "SportsPress"
+msgstr ""
+
+#: includes/admin/class-sp-admin-permalink-settings.php:75
+msgid ""
+"These settings control the permalinks used for SportsPress. These settings "
+"only apply when not using \"default\" permalinks above."
+msgstr ""
+
+#: includes/admin/class-sp-admin-settings.php:51
+msgid "Action failed. Please refresh the page and retry."
+msgstr ""
+
+#: includes/admin/class-sp-admin-settings.php:58
+msgid "Your settings have been saved."
+msgstr ""
+
+#: includes/admin/class-sp-admin-taxonomies.php:61
+#: includes/admin/class-sp-admin-taxonomies.php:81
+#: includes/admin/class-sp-admin-taxonomies.php:134
+msgid "Address"
+msgstr ""
+
+#: includes/admin/class-sp-admin-taxonomies.php:88
+msgid "Latitude"
+msgstr ""
+
+#: includes/admin/class-sp-admin-taxonomies.php:94
+msgid "Longitude"
+msgstr ""
+
+#: includes/admin/importers/class-sp-event-importer.php:425
+#: includes/admin/importers/class-sp-event-importer.php:465
+#: includes/admin/importers/class-sp-event-importer.php:480
+#: includes/admin/importers/class-sp-player-importer.php:192
+#: includes/admin/importers/class-sp-player-importer.php:232
+#: includes/admin/importers/class-sp-player-importer.php:247
+#: includes/admin/importers/class-sp-team-importer.php:149
+#: includes/admin/importers/class-sp-team-importer.php:189
+#: includes/admin/importers/class-sp-team-importer.php:204
msgid "Sorry, there has been an error."
msgstr ""
-#: admin/tools/event-importer.php:426 admin/tools/player-importer.php:193
-#: admin/tools/team-importer.php:150
+#: includes/admin/importers/class-sp-event-importer.php:426
+#: includes/admin/importers/class-sp-player-importer.php:193
+#: includes/admin/importers/class-sp-team-importer.php:150
msgid "The CSV is invalid."
msgstr ""
-#: admin/tools/event-importer.php:437
+#: includes/admin/importers/class-sp-event-importer.php:437
#, php-format
msgid ""
"Import complete - imported %s events and skipped "
"%s."
msgstr ""
-#: admin/tools/event-importer.php:447 admin/tools/player-importer.php:214
-#: admin/tools/team-importer.php:171
+#: includes/admin/importers/class-sp-event-importer.php:447
+#: includes/admin/importers/class-sp-player-importer.php:214
+#: includes/admin/importers/class-sp-team-importer.php:171
msgid "All done!"
msgstr ""
-#: admin/tools/event-importer.php:447
+#: includes/admin/importers/class-sp-event-importer.php:447
msgid "View Events"
msgstr ""
-#: admin/tools/event-importer.php:497
+#: includes/admin/importers/class-sp-event-importer.php:497
msgid "Import Events"
msgstr ""
-#: admin/tools/event-importer.php:519 admin/tools/player-importer.php:286
-#: admin/tools/team-importer.php:243
+#: includes/admin/importers/class-sp-event-importer.php:519
+#: includes/admin/importers/class-sp-player-importer.php:286
+#: includes/admin/importers/class-sp-team-importer.php:243
msgid ""
"Hi there! Choose a .csv file to upload, then click \"Upload file and import"
"\"."
msgstr ""
-#: admin/tools/event-importer.php:521
+#: includes/admin/importers/class-sp-event-importer.php:521
#, php-format
msgid ""
"Events need to be defined with columns in a specific order (3+ columns). Click here to download a sample."
msgstr ""
-#: admin/tools/event-importer.php:529 admin/tools/player-importer.php:296
-#: admin/tools/team-importer.php:253
+#: includes/admin/importers/class-sp-event-importer.php:529
+#: includes/admin/importers/class-sp-player-importer.php:296
+#: includes/admin/importers/class-sp-team-importer.php:253
msgid ""
"Before you can upload your import file, you will need to fix the following "
"error:"
msgstr ""
-#: admin/tools/event-importer.php:538 admin/tools/player-importer.php:305
-#: admin/tools/team-importer.php:262
+#: includes/admin/importers/class-sp-event-importer.php:538
+#: includes/admin/importers/class-sp-player-importer.php:305
+#: includes/admin/importers/class-sp-team-importer.php:262
msgid "Choose a file from your computer:"
msgstr ""
-#: admin/tools/event-importer.php:544 admin/tools/player-importer.php:311
-#: admin/tools/team-importer.php:268
+#: includes/admin/importers/class-sp-event-importer.php:544
+#: includes/admin/importers/class-sp-player-importer.php:311
+#: includes/admin/importers/class-sp-team-importer.php:268
#, php-format
msgid "Maximum size: %s"
msgstr ""
-#: admin/tools/event-importer.php:549 admin/tools/player-importer.php:316
-#: admin/tools/team-importer.php:273
+#: includes/admin/importers/class-sp-event-importer.php:549
+#: includes/admin/importers/class-sp-player-importer.php:316
+#: includes/admin/importers/class-sp-team-importer.php:273
msgid "OR enter path to file:"
msgstr ""
-#: admin/tools/event-importer.php:556 admin/tools/player-importer.php:323
-#: admin/tools/team-importer.php:280
+#: includes/admin/importers/class-sp-event-importer.php:556
+#: includes/admin/importers/class-sp-player-importer.php:323
+#: includes/admin/importers/class-sp-team-importer.php:280
+#: includes/admin/settings/class-sp-settings-events.php:127
+#: includes/admin/settings/class-sp-settings-events.php:131
+#: includes/admin/settings/class-sp-settings-general.php:157
msgid "Delimiter"
msgstr ""
-#: admin/tools/event-importer.php:602 admin/tools/player-importer.php:329
-#: admin/tools/team-importer.php:286
+#: includes/admin/importers/class-sp-event-importer.php:560
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:92
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:90
+msgid "Format"
+msgstr ""
+
+#: includes/admin/importers/class-sp-event-importer.php:576
+#: includes/admin/importers/class-sp-event-importer.php:591
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:37
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:52
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:68
+msgid "-- Not set --"
+msgstr ""
+
+#: includes/admin/importers/class-sp-event-importer.php:602
+#: includes/admin/importers/class-sp-player-importer.php:329
+#: includes/admin/importers/class-sp-team-importer.php:286
msgid "Upload file and import"
msgstr ""
-#: admin/tools/importers.php:54
-msgid "SportsPress Events (CSV)"
-msgstr ""
-
-#: admin/tools/importers.php:54
-msgid "Import events from a csv file."
-msgstr ""
-
-#: admin/tools/importers.php:55
-msgid "SportsPress Teams (CSV)"
-msgstr ""
-
-#: admin/tools/importers.php:55
-msgid "Import teams from a csv file."
-msgstr ""
-
-#: admin/tools/importers.php:56
-msgid "SportsPress Players (CSV)"
-msgstr ""
-
-#: admin/tools/importers.php:56
-msgid "Import players from a csv file."
-msgstr ""
-
-#: admin/tools/player-importer.php:204
+#: includes/admin/importers/class-sp-player-importer.php:204
#, php-format
msgid ""
"Import complete - imported %s players and skipped "
"%s."
msgstr ""
-#: admin/tools/player-importer.php:214
+#: includes/admin/importers/class-sp-player-importer.php:214
msgid "View Players"
msgstr ""
-#: admin/tools/player-importer.php:264
+#: includes/admin/importers/class-sp-player-importer.php:264
msgid "Import Players"
msgstr ""
-#: admin/tools/player-importer.php:288
+#: includes/admin/importers/class-sp-player-importer.php:288
#, php-format
msgid ""
"Players need to be defined with columns in a specific order (7 columns). Click here to download a sample."
msgstr ""
-#: admin/tools/team-importer.php:161
+#: includes/admin/importers/class-sp-team-importer.php:161
#, php-format
msgid ""
"Import complete - imported %s teams and skipped %s"
"strong>."
msgstr ""
-#: admin/tools/team-importer.php:171
+#: includes/admin/importers/class-sp-team-importer.php:171
msgid "View Teams"
msgstr ""
-#: admin/tools/team-importer.php:221
+#: includes/admin/importers/class-sp-team-importer.php:221
msgid "Import Teams"
msgstr ""
-#: admin/tools/team-importer.php:245
+#: includes/admin/importers/class-sp-team-importer.php:245
#, php-format
msgid ""
"Teams need to be defined with columns in a specific order (3 columns). Click here to download a sample."
msgstr ""
-#: admin/widgets/countdown.php:5
+#: includes/admin/post-types/class-sp-admin-cpt-calendar.php:48
+#: includes/admin/post-types/class-sp-admin-cpt-list.php:48
+#: includes/admin/post-types/class-sp-admin-cpt-table.php:48
+msgid "Title"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt-calendar.php:54
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:100
+#: includes/admin/post-types/class-sp-admin-cpt-list.php:53
+#: includes/admin/post-types/class-sp-admin-cpt-player.php:70
+#: includes/admin/post-types/class-sp-admin-cpt-staff.php:69
+#: includes/admin/post-types/class-sp-admin-cpt-table.php:52
+#: includes/admin/post-types/class-sp-admin-cpt-team.php:67
+msgid "Views"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt-calendar.php:132
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:199
+#: includes/admin/post-types/class-sp-admin-cpt-list.php:121
+#: includes/admin/post-types/class-sp-admin-cpt-player.php:178
+#: includes/admin/post-types/class-sp-admin-cpt-staff.php:155
+#: includes/admin/post-types/class-sp-admin-cpt-table.php:107
+#: includes/admin/post-types/class-sp-admin-cpt-team.php:119
+msgid "Show all leagues"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt-calendar.php:141
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:208
+#: includes/admin/post-types/class-sp-admin-cpt-list.php:130
+#: includes/admin/post-types/class-sp-admin-cpt-player.php:187
+#: includes/admin/post-types/class-sp-admin-cpt-staff.php:164
+#: includes/admin/post-types/class-sp-admin-cpt-table.php:116
+#: includes/admin/post-types/class-sp-admin-cpt-team.php:128
+msgid "Show all seasons"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt-calendar.php:152
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:191
+#: includes/admin/post-types/class-sp-admin-cpt-list.php:141
+#: includes/admin/post-types/class-sp-admin-cpt-player.php:170
+#: includes/admin/post-types/class-sp-admin-cpt-staff.php:147
+#: includes/admin/post-types/class-sp-admin-cpt-table.php:127
+msgid "Show all teams"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt-column.php:43
+#: includes/admin/post-types/class-sp-admin-cpt-metric.php:43
+#: includes/admin/post-types/class-sp-admin-cpt-outcome.php:43
+#: includes/admin/post-types/class-sp-admin-cpt-performance.php:43
+#: includes/admin/post-types/class-sp-admin-cpt-result.php:43
+#: includes/admin/settings/class-sp-settings-config.php:195
+#: includes/admin/settings/class-sp-settings-config.php:260
+#: includes/admin/settings/class-sp-settings-config.php:307
+#: includes/admin/settings/class-sp-settings-config.php:361
+#: includes/admin/settings/class-sp-settings-config.php:410
+msgid "Label"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt-column.php:44
+#: includes/admin/post-types/class-sp-admin-cpt-outcome.php:44
+#: includes/admin/post-types/class-sp-admin-cpt-performance.php:44
+#: includes/admin/post-types/class-sp-admin-cpt-result.php:44
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:31
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-outcome-details.php:24
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-result-details.php:24
+#: includes/admin/settings/class-sp-settings-config.php:196
+#: includes/admin/settings/class-sp-settings-config.php:261
+#: includes/admin/settings/class-sp-settings-config.php:308
+msgid "Key"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt-column.php:45
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:35
+#: includes/admin/settings/class-sp-settings-config.php:309
+msgid "Equation"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt-column.php:46
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:43
+#: includes/admin/settings/class-sp-settings-config.php:310
+msgid "Rounding"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt-column.php:47
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:47
+#: includes/admin/settings/class-sp-settings-config.php:311
+msgid "Sort Order"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt-event.php:56
+#: includes/widgets/class-sp-widget-countdown.php:46
+msgid "(Auto)"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt-performance.php:46
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-performance-details.php:25
+#: includes/admin/settings/class-sp-settings-config.php:412
+msgid "Calculate"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt-player.php:64
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:77
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:56
+#: includes/widgets/class-sp-widget-player-gallery.php:77
+#: includes/widgets/class-sp-widget-player-list.php:98
+msgid "Number"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt-staff.php:65
+msgid "Role"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt-team.php:63
+msgid "Logo"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt.php:43
+#, php-format
+msgid "Insert into %s"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-cpt.php:44
+#, php-format
+msgid "Uploaded to this %s"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:93
+msgid "Video"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:99
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:109
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:120
+msgid "Shortcode"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:100
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:121
+msgid "Layout"
+msgstr ""
+
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:103
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:112
+#: includes/admin/post-types/class-sp-admin-meta-boxes.php:124
+msgid "Description"
+msgstr ""
+
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-shortcode.php:25
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-shortcode.php:25
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-shortcode.php:24
+msgid ""
+"Copy this code and paste it into your post, page or text widget content."
+msgstr ""
+
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:51
+msgid "Disable"
+msgstr ""
+
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:63
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:95
+#: includes/widgets/class-sp-widget-player-gallery.php:97
+#: includes/widgets/class-sp-widget-player-list.php:118
+msgid "Descending"
+msgstr ""
+
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:63
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:94
+#: includes/widgets/class-sp-widget-player-gallery.php:96
+#: includes/widgets/class-sp-widget-player-list.php:117
+msgid "Ascending"
+msgstr ""
+
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:32
+msgid "Remove"
+msgstr ""
+
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:56
+msgid "— Add —"
+msgstr ""
+
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:27
+msgid "Remove video"
+msgstr ""
+
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:31
+msgid "URL"
+msgstr ""
+
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:36
+msgid "Add video"
+msgstr ""
+
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:72
+#: includes/widgets/class-sp-widget-player-gallery.php:72
+#: includes/widgets/class-sp-widget-player-list.php:93
+msgid "Sort by:"
+msgstr ""
+
+#: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:91
+#: includes/widgets/class-sp-widget-player-gallery.php:94
+#: includes/widgets/class-sp-widget-player-list.php:115
+msgid "Sort Order:"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-config.php:25
+msgid "Configure"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-config.php:45
+msgid "Configure SportsPress"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-config.php:48
+msgid "Sport"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-config.php:194
+#: includes/admin/settings/class-sp-settings-general.php:190
+msgid "Primary"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-config.php:208
+#, php-format
+msgid "Default (%s)"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-config.php:210
+#: includes/widgets/class-sp-widget-player-gallery.php:76
+#: includes/widgets/class-sp-widget-player-list.php:97
+msgid "Default"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-events.php:42
+msgid "Event Options"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-events.php:45
+msgid "Number of Teams"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-events.php:60
+msgid "Display maps"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-events.php:68
+msgid "Link venues"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-events.php:77
+#: includes/admin/settings/class-sp-settings-players.php:53
+msgid "Link players"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-events.php:85
+#: includes/admin/settings/class-sp-settings-general.php:90
+#: includes/admin/settings/class-sp-settings-general.php:192
+#: includes/admin/settings/class-sp-settings-players.php:61
+#: includes/admin/settings/class-sp-settings-teams.php:62
+msgid "Text"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-events.php:85
+#: includes/admin/settings/class-sp-settings-general.php:90
+#: includes/admin/settings/class-sp-settings-players.php:61
+#: includes/admin/settings/class-sp-settings-teams.php:62
+msgid "The following options affect how words are displayed on the frontend."
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-events.php:136
+msgid "Custom:"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:25
+msgid "General"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:43
+msgid "General Options"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:49
+msgid "Styles and Scripts"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:54
+msgid "Custom CSS"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:61
+msgid "Scripts"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:62
+msgid "Responsive tables"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:67
+msgid "This will enable a script allowing the tables to be responsive."
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:71
+msgid "Sortable tables"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:76
+msgid "This will enable a script allowing the tables to be sortable."
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:80
+msgid "Live countdowns"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:85
+msgid "This will enable a script allowing the countdowns to be animated."
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:154
+msgid "Base Location"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:158
+msgid "Choose a country…"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:175
+msgid "Frontend Styles"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:191
+msgid "Heading"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:193
+msgid "Background"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:194
+msgid "Alternate"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-general.php:199
+msgid "Enable"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-players.php:41
+msgid "Player Options"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-players.php:45
+msgid "Display national flag"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-teams.php:41
+msgid "Team Options"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-teams.php:45
+#: includes/widgets/class-sp-widget-league-table.php:90
+msgid "Display logos"
+msgstr ""
+
+#: includes/admin/settings/class-sp-settings-teams.php:53
+msgid "Link teams"
+msgstr ""
+
+#: includes/admin/views/html-admin-settings.php:20
+msgid "Save changes"
+msgstr ""
+
+#: includes/admin/views/html-notice-install.php:5
+msgid "Welcome to SportsPress – Get Started"
+msgstr ""
+
+#: includes/admin/views/html-notice-install.php:7
+msgid "Go to SportsPress Settings"
+msgstr ""
+
+#: includes/admin/views/html-notice-install.php:8
+msgid "Skip setup"
+msgstr ""
+
+#: includes/admin/views/html-notice-theme-support.php:5
+msgid ""
+"Your theme does not declare SportsPress support – if "
+"you encounter layout issues please read our integration guide or choose a "
+"SportsPress theme :)"
+msgstr ""
+
+#: includes/admin/views/html-notice-theme-support.php:7
+msgid "Theme Integration Guide"
+msgstr ""
+
+#: includes/admin/views/html-notice-theme-support.php:8
+msgid "Hide this notice"
+msgstr ""
+
+#: includes/widgets/class-sp-widget-countdown.php:5
msgid "A clock that counts down to an upcoming event."
msgstr ""
-#: admin/widgets/countdown.php:6
+#: includes/widgets/class-sp-widget-countdown.php:6
msgid "SportsPress Countdown"
msgstr ""
-#: admin/widgets/countdown.php:36 admin/widgets/events-calendar.php:38
-#: admin/widgets/events-list.php:39 admin/widgets/league-table.php:47
-#: admin/widgets/player-gallery.php:50 admin/widgets/player-list.php:50
+#: includes/widgets/class-sp-widget-countdown.php:36
+#: includes/widgets/class-sp-widget-event-calendar.php:38
+#: includes/widgets/class-sp-widget-event-list.php:39
+#: includes/widgets/class-sp-widget-league-table.php:47
+#: includes/widgets/class-sp-widget-player-gallery.php:50
+#: includes/widgets/class-sp-widget-player-list.php:50
msgid "Title:"
msgstr ""
-#: admin/widgets/countdown.php:39 admin/widgets/events-calendar.php:41
-#: admin/widgets/events-list.php:42 admin/widgets/league-table.php:50
-#: admin/widgets/player-gallery.php:53 admin/widgets/player-list.php:53
+#: includes/widgets/class-sp-widget-countdown.php:39
+#: includes/widgets/class-sp-widget-event-calendar.php:41
+#: includes/widgets/class-sp-widget-event-list.php:42
+#: includes/widgets/class-sp-widget-league-table.php:50
+#: includes/widgets/class-sp-widget-player-gallery.php:53
+#: includes/widgets/class-sp-widget-player-list.php:53
#, php-format
msgid "Select %s:"
msgstr ""
-#: admin/widgets/countdown.php:59
+#: includes/widgets/class-sp-widget-countdown.php:59
msgid "Display league"
msgstr ""
-#: admin/widgets/events-calendar.php:5
+#: includes/widgets/class-sp-widget-event-calendar.php:5
msgid "A calendar of events."
msgstr ""
-#: admin/widgets/events-calendar.php:6
+#: includes/widgets/class-sp-widget-event-calendar.php:6
msgid "SportsPress Events Calendar"
msgstr ""
-#: admin/widgets/events-calendar.php:59 admin/widgets/events-list.php:77
+#: includes/widgets/class-sp-widget-event-calendar.php:59
+#: includes/widgets/class-sp-widget-event-list.php:77
msgid "Display link to view all events"
msgstr ""
-#: admin/widgets/events-list.php:5
+#: includes/widgets/class-sp-widget-event-list.php:5
msgid "A list of events."
msgstr ""
-#: admin/widgets/events-list.php:6
+#: includes/widgets/class-sp-widget-event-list.php:6
msgid "SportsPress Events List"
msgstr ""
-#: admin/widgets/events-list.php:60 admin/widgets/league-table.php:70
+#: includes/widgets/class-sp-widget-event-list.php:60
+#: includes/widgets/class-sp-widget-league-table.php:70
msgid "Columns:"
msgstr ""
-#: admin/widgets/league-table.php:5
+#: includes/widgets/class-sp-widget-league-table.php:5
msgid "Display a league table."
msgstr ""
-#: admin/widgets/league-table.php:6
+#: includes/widgets/class-sp-widget-league-table.php:6
msgid "SportsPress League Table"
msgstr ""
-#: admin/widgets/league-table.php:66
+#: includes/widgets/class-sp-widget-league-table.php:66
msgid "Number of teams to show:"
msgstr ""
-#: admin/widgets/league-table.php:93
+#: includes/widgets/class-sp-widget-league-table.php:93
msgid "Display link to view full table"
msgstr ""
-#: admin/widgets/player-gallery.php:5
+#: includes/widgets/class-sp-widget-player-gallery.php:5
msgid "Display a gallery of players."
msgstr ""
-#: admin/widgets/player-gallery.php:6
+#: includes/widgets/class-sp-widget-player-gallery.php:6
msgid "SportsPress Player Gallery"
msgstr ""
-#: admin/widgets/player-gallery.php:69 admin/widgets/player-list.php:69
+#: includes/widgets/class-sp-widget-player-gallery.php:69
+#: includes/widgets/class-sp-widget-player-list.php:69
msgid "Number of players to show:"
msgstr ""
-#: admin/widgets/player-gallery.php:101 admin/widgets/player-list.php:122
+#: includes/widgets/class-sp-widget-player-gallery.php:101
+#: includes/widgets/class-sp-widget-player-list.php:122
msgid "Display link to view all players"
msgstr ""
-#: admin/widgets/player-list.php:5
+#: includes/widgets/class-sp-widget-player-gallery.php:104
+msgid "Display player names on hover"
+msgstr ""
+
+#: includes/widgets/class-sp-widget-player-list.php:5
msgid "Display a list of players."
msgstr ""
-#: admin/widgets/player-list.php:6
+#: includes/widgets/class-sp-widget-player-list.php:6
msgid "SportsPress Player List"
msgstr ""
-#: admin/widgets/player-list.php:73
-msgid "Statistics:"
+#: includes/widgets/class-sp-widget-player-list.php:73
+msgid "Performance:"
msgstr ""
-#: presets/sports/baseball.php:5
-msgid "Baseball"
-msgstr ""
-
-#: presets/sports/basketball.php:5
-msgid "Basketball"
-msgstr ""
-
-#: presets/sports/cricket.php:5
-msgid "Cricket"
-msgstr ""
-
-#: presets/sports/football.php:5
-msgid "American Football"
-msgstr ""
-
-#: presets/sports/footy.php:5
-msgid "Australian Rules Football"
-msgstr ""
-
-#: presets/sports/gaming.php:5
-msgid "Competitive Gaming"
-msgstr ""
-
-#: presets/sports/golf.php:5
-msgid "Golf"
-msgstr ""
-
-#: presets/sports/hockey.php:5
-msgid "Hockey"
-msgstr ""
-
-#: presets/sports/racing.php:5
-msgid "Racing"
-msgstr ""
-
-#: presets/sports/rugby.php:5
-msgid "Rugby"
-msgstr ""
-
-#: presets/sports/soccer.php:5
-msgid "Soccer (Association Football)"
+#. translators: Calendar caption: 1: month name, 2: 4-digit year
+#: templates/event-calendar.php:75 templates/event-calendar.php:103
+#: templates/event-calendar.php:111
+#, php-format
+msgctxt "calendar caption"
+msgid "%1$s %2$s"
msgstr ""
diff --git a/languages/sportspress.pot b/languages/sportspress.pot
deleted file mode 100644
index 3943671c..00000000
--- a/languages/sportspress.pot
+++ /dev/null
@@ -1,1929 +0,0 @@
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: SportsPress\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-03-02 13:27+1000\n"
-"PO-Revision-Date: 2014-03-02 13:27+1000\n"
-"Last-Translator: ThemeBoy \n"
-"Language-Team: ThemeBoy \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: en_US\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Poedit 1.6.3\n"
-"X-Poedit-Basepath: .\n"
-"X-Poedit-Bookmarks: -1,75,-1,-1,-1,-1,-1,-1,-1,-1\n"
-"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
-"X-Poedit-SearchPath-0: ..\n"
-"X-Poedit-SourceCharset: UTF-8\n"
-
-#: ../functions.php:164
-msgid "1 view"
-msgstr ""
-
-#: ../functions.php:166
-#, php-format
-msgid "%s views"
-msgstr ""
-
-#: ../functions.php:191
-msgid "Scheduled"
-msgstr ""
-
-#: ../functions.php:193 ../functions.php:624 ../functions.php:627
-#: ../functions.php:2087 ../functions.php:2289 ../functions.php:2424
-#: ../admin/post-types/list.php:117 ../admin/widgets/player-list.php:78
-#: ../admin/widgets/player-list.php:91
-msgid "Played"
-msgstr ""
-
-#: ../functions.php:195
-msgid "Draft"
-msgstr ""
-
-#: ../functions.php:197
-msgid "Pending Review"
-msgstr ""
-
-#: ../functions.php:199 ../admin/hooks/post-updated-messages.php:34
-msgid "M j, Y @ G:i"
-msgstr ""
-
-#: ../functions.php:220 ../functions.php:224 ../functions.php:558
-#: ../functions.php:1150 ../admin/templates/event-players.php:82
-msgid "Total"
-msgstr ""
-
-#: ../functions.php:220 ../functions.php:559
-msgid "Average"
-msgstr ""
-
-#: ../functions.php:262
-msgid "Integer"
-msgstr ""
-
-#: ../functions.php:263
-msgid "Decimal"
-msgstr ""
-
-#: ../functions.php:264 ../admin/templates/event-details.php:13
-msgid "Time"
-msgstr ""
-
-#: ../functions.php:265
-msgid "Custom Field"
-msgstr ""
-
-#: ../functions.php:486 ../functions.php:540
-msgid "(no title)"
-msgstr ""
-
-#: ../functions.php:503
-msgid "Select All"
-msgstr ""
-
-#: ../functions.php:624 ../functions.php:627 ../admin/post-types/event.php:6
-#: ../admin/post-types/event.php:16 ../admin/settings/settings.php:11
-msgid "Events"
-msgstr ""
-
-#: ../functions.php:624
-msgid "Attended"
-msgstr ""
-
-#: ../functions.php:630 ../admin/post-types/event.php:53
-#: ../admin/post-types/result.php:4 ../admin/post-types/result.php:15
-#: ../admin/settings/events.php:16 ../admin/templates/event-results.php:55
-msgid "Results"
-msgstr ""
-
-#: ../functions.php:633 ../functions.php:634 ../functions.php:635
-#: ../functions.php:636 ../admin/post-types/outcome.php:4
-#: ../admin/post-types/outcome.php:15 ../admin/settings/events.php:55
-msgid "Outcomes"
-msgstr ""
-
-#: ../functions.php:634
-msgid "Streak"
-msgstr ""
-
-#: ../functions.php:635
-msgid "Last 5"
-msgstr ""
-
-#: ../functions.php:636
-msgid "Last 10"
-msgstr ""
-
-#: ../functions.php:639 ../admin/post-types/column.php:4
-#: ../admin/post-types/column.php:15 ../admin/post-types/team.php:41
-#: ../admin/settings/tables.php:11
-msgid "Columns"
-msgstr ""
-
-#: ../functions.php:642
-msgid "Player Statistics"
-msgstr ""
-
-#: ../functions.php:651
-msgid "Operators"
-msgstr ""
-
-#: ../functions.php:664
-msgid "Constants"
-msgstr ""
-
-#: ../functions.php:668 ../admin/settings/settings.php:46
-msgid "— Select —"
-msgstr ""
-
-#: ../functions.php:781 ../functions.php:935 ../functions.php:1010
-#: ../functions.php:1895 ../functions.php:2424 ../admin/hooks/gettext.php:9
-#: ../admin/post-types/list.php:38 ../admin/post-types/list.php:95
-#: ../admin/post-types/player.php:147 ../admin/post-types/team.php:5
-#: ../admin/post-types/team.php:49 ../admin/templates/event-results.php:59
-msgid "Team"
-msgstr ""
-
-#: ../functions.php:803 ../admin/post-types/column.php:7
-#: ../admin/post-types/event.php:8 ../admin/post-types/list.php:7
-#: ../admin/post-types/metric.php:7 ../admin/post-types/outcome.php:7
-#: ../admin/post-types/player.php:7 ../admin/post-types/result.php:7
-#: ../admin/post-types/staff.php:7 ../admin/post-types/statistic.php:7
-#: ../admin/post-types/table.php:7 ../admin/post-types/team.php:7
-#: ../admin/settings/events.php:39 ../admin/settings/events.php:78
-#: ../admin/settings/players.php:37 ../admin/settings/players.php:78
-#: ../admin/settings/tables.php:43 ../admin/terms/league.php:7
-#: ../admin/terms/position.php:7 ../admin/terms/season.php:7
-#: ../admin/terms/venue.php:7
-msgid "Edit"
-msgstr ""
-
-#: ../functions.php:807
-msgid "Cancel"
-msgstr ""
-
-#: ../functions.php:808
-msgid "Save"
-msgstr ""
-
-#: ../functions.php:837 ../functions.php:1115 ../functions.php:2183
-#: ../admin/hooks/register-activation-hook.php:149
-#: ../admin/post-types/player.php:5 ../admin/templates/event-players.php:28
-msgid "Player"
-msgstr ""
-
-#: ../functions.php:882 ../functions.php:934 ../functions.php:1626
-#: ../functions.php:2424 ../admin/post-types/event.php:83
-#: ../admin/post-types/event.php:215 ../admin/post-types/list.php:37
-#: ../admin/post-types/list.php:81 ../admin/post-types/table.php:36
-#: ../admin/post-types/table.php:77 ../admin/templates/event-details.php:22
-#: ../admin/terms/season.php:5
-msgid "Season"
-msgstr ""
-
-#: ../functions.php:958
-msgid "— None —"
-msgstr ""
-
-#: ../functions.php:979 ../admin/post-types/column.php:11
-#: ../admin/post-types/column.php:12 ../admin/post-types/event.php:12
-#: ../admin/post-types/event.php:13 ../admin/post-types/list.php:11
-#: ../admin/post-types/list.php:12 ../admin/post-types/metric.php:11
-#: ../admin/post-types/metric.php:12 ../admin/post-types/outcome.php:11
-#: ../admin/post-types/outcome.php:12 ../admin/post-types/player.php:11
-#: ../admin/post-types/player.php:12 ../admin/post-types/result.php:11
-#: ../admin/post-types/result.php:12 ../admin/post-types/staff.php:11
-#: ../admin/post-types/staff.php:12 ../admin/post-types/statistic.php:11
-#: ../admin/post-types/statistic.php:12 ../admin/post-types/table.php:11
-#: ../admin/post-types/table.php:12 ../admin/post-types/team.php:11
-#: ../admin/post-types/team.php:12 ../admin/terms/league.php:15
-#: ../admin/terms/position.php:15 ../admin/terms/season.php:15
-#: ../admin/terms/venue.php:15
-msgid "No results found."
-msgstr ""
-
-#: ../functions.php:1014 ../admin/post-types/outcome.php:5
-msgid "Outcome"
-msgstr ""
-
-#: ../functions.php:1038 ../admin/post-types/event.php:76
-#: ../admin/post-types/event.php:91 ../admin/post-types/event.php:106
-msgid "-- Not set --"
-msgstr ""
-
-#: ../functions.php:1066 ../functions.php:1171
-msgid "Starting Lineup"
-msgstr ""
-
-#: ../functions.php:1067 ../functions.php:1172
-msgid "Substitute"
-msgstr ""
-
-#: ../functions.php:1091
-msgid "None"
-msgstr ""
-
-#: ../functions.php:1119
-msgid "Status"
-msgstr ""
-
-#: ../functions.php:1192 ../functions.php:1209
-#: ../admin/hooks/admin-menu.php:46 ../admin/post-types/column.php:6
-#: ../admin/post-types/event.php:7 ../admin/post-types/event.php:79
-#: ../admin/post-types/event.php:94 ../admin/post-types/event.php:109
-#: ../admin/post-types/list.php:6 ../admin/post-types/list.php:77
-#: ../admin/post-types/list.php:91 ../admin/post-types/list.php:106
-#: ../admin/post-types/list.php:125 ../admin/post-types/list.php:139
-#: ../admin/post-types/metric.php:6 ../admin/post-types/outcome.php:6
-#: ../admin/post-types/player.php:6 ../admin/post-types/player.php:237
-#: ../admin/post-types/result.php:6 ../admin/post-types/staff.php:6
-#: ../admin/post-types/staff.php:40 ../admin/post-types/statistic.php:6
-#: ../admin/post-types/table.php:6 ../admin/post-types/table.php:73
-#: ../admin/post-types/table.php:87 ../admin/post-types/table.php:94
-#: ../admin/post-types/team.php:6 ../admin/settings/events.php:40
-#: ../admin/settings/events.php:79 ../admin/settings/players.php:38
-#: ../admin/settings/players.php:79 ../admin/settings/tables.php:44
-#: ../admin/terms/league.php:10 ../admin/terms/position.php:10
-#: ../admin/terms/season.php:10 ../admin/terms/venue.php:10
-#: ../admin/widgets/countdown.php:51 ../admin/widgets/league-table.php:52
-#: ../admin/widgets/player-list.php:58 ../admin/widgets/player-list.php:101
-msgid "Add New"
-msgstr ""
-
-#: ../admin/globals/continents.php:6
-msgid "Africa"
-msgstr ""
-
-#: ../admin/globals/continents.php:7
-msgid "Asia"
-msgstr ""
-
-#: ../admin/globals/continents.php:8
-msgid "Europe"
-msgstr ""
-
-#: ../admin/globals/continents.php:9
-msgid "North America"
-msgstr ""
-
-#: ../admin/globals/continents.php:10
-msgid "Oceania"
-msgstr ""
-
-#: ../admin/globals/continents.php:11
-msgid "South America"
-msgstr ""
-
-#: ../admin/globals/countries.php:6
-msgid "Andorra"
-msgstr ""
-
-#: ../admin/globals/countries.php:7
-msgid "United Arab Emirates"
-msgstr ""
-
-#: ../admin/globals/countries.php:8
-msgid "Afghanistan"
-msgstr ""
-
-#: ../admin/globals/countries.php:9
-msgid "Antigua and Barbuda"
-msgstr ""
-
-#: ../admin/globals/countries.php:10
-msgid "Albania"
-msgstr ""
-
-#: ../admin/globals/countries.php:11
-msgid "Armenia"
-msgstr ""
-
-#: ../admin/globals/countries.php:12
-msgid "Angola"
-msgstr ""
-
-#: ../admin/globals/countries.php:13
-msgid "Argentina"
-msgstr ""
-
-#: ../admin/globals/countries.php:14
-msgid "Austria"
-msgstr ""
-
-#: ../admin/globals/countries.php:15
-msgid "Australia"
-msgstr ""
-
-#: ../admin/globals/countries.php:16
-msgid "Azerbaijan"
-msgstr ""
-
-#: ../admin/globals/countries.php:17
-msgid "Bosnia and Herzegovina"
-msgstr ""
-
-#: ../admin/globals/countries.php:18
-msgid "Barbados"
-msgstr ""
-
-#: ../admin/globals/countries.php:19
-msgid "Bangladesh"
-msgstr ""
-
-#: ../admin/globals/countries.php:20
-msgid "Belgium"
-msgstr ""
-
-#: ../admin/globals/countries.php:21
-msgid "Burkina Faso"
-msgstr ""
-
-#: ../admin/globals/countries.php:22
-msgid "Bulgaria"
-msgstr ""
-
-#: ../admin/globals/countries.php:23
-msgid "Bahrain"
-msgstr ""
-
-#: ../admin/globals/countries.php:24
-msgid "Burundi"
-msgstr ""
-
-#: ../admin/globals/countries.php:25
-msgid "Benin"
-msgstr ""
-
-#: ../admin/globals/countries.php:26
-msgid "Brunei"
-msgstr ""
-
-#: ../admin/globals/countries.php:27
-msgid "Bolivia"
-msgstr ""
-
-#: ../admin/globals/countries.php:28
-msgid "Brazil"
-msgstr ""
-
-#: ../admin/globals/countries.php:29
-msgid "Bahamas"
-msgstr ""
-
-#: ../admin/globals/countries.php:30
-msgid "Bhutan"
-msgstr ""
-
-#: ../admin/globals/countries.php:31
-msgid "Botswana"
-msgstr ""
-
-#: ../admin/globals/countries.php:32
-msgid "Belarus"
-msgstr ""
-
-#: ../admin/globals/countries.php:33
-msgid "Belize"
-msgstr ""
-
-#: ../admin/globals/countries.php:34
-msgid "Canada"
-msgstr ""
-
-#: ../admin/globals/countries.php:35
-msgid "Democratic Republic of the Congo"
-msgstr ""
-
-#: ../admin/globals/countries.php:36
-msgid "Central African Republic"
-msgstr ""
-
-#: ../admin/globals/countries.php:37
-msgid "Republic of the Congo"
-msgstr ""
-
-#: ../admin/globals/countries.php:38
-msgid "Switzerland"
-msgstr ""
-
-#: ../admin/globals/countries.php:39
-msgid "Cote d'Ivoire"
-msgstr ""
-
-#: ../admin/globals/countries.php:40
-msgid "Chile"
-msgstr ""
-
-#: ../admin/globals/countries.php:41
-msgid "Cameroon"
-msgstr ""
-
-#: ../admin/globals/countries.php:42
-msgid "China"
-msgstr ""
-
-#: ../admin/globals/countries.php:43
-msgid "Colombia"
-msgstr ""
-
-#: ../admin/globals/countries.php:44
-msgid "Costa Rica"
-msgstr ""
-
-#: ../admin/globals/countries.php:45
-msgid "Cuba"
-msgstr ""
-
-#: ../admin/globals/countries.php:46
-msgid "Cape Verde"
-msgstr ""
-
-#: ../admin/globals/countries.php:47
-msgid "Cyprus"
-msgstr ""
-
-#: ../admin/globals/countries.php:48
-msgid "Czech Republic"
-msgstr ""
-
-#: ../admin/globals/countries.php:49
-msgid "Germany"
-msgstr ""
-
-#: ../admin/globals/countries.php:50
-msgid "Djibouti"
-msgstr ""
-
-#: ../admin/globals/countries.php:51
-msgid "Denmark"
-msgstr ""
-
-#: ../admin/globals/countries.php:52
-msgid "Dominica"
-msgstr ""
-
-#: ../admin/globals/countries.php:53
-msgid "Dominican Republic"
-msgstr ""
-
-#: ../admin/globals/countries.php:54
-msgid "Algeria"
-msgstr ""
-
-#: ../admin/globals/countries.php:55
-msgid "Ecuador"
-msgstr ""
-
-#: ../admin/globals/countries.php:56
-msgid "Estonia"
-msgstr ""
-
-#: ../admin/globals/countries.php:57
-msgid "Egypt"
-msgstr ""
-
-#: ../admin/globals/countries.php:58
-msgid "Western Sahara"
-msgstr ""
-
-#: ../admin/globals/countries.php:59
-msgid "England"
-msgstr ""
-
-#: ../admin/globals/countries.php:60
-msgid "Eritrea"
-msgstr ""
-
-#: ../admin/globals/countries.php:61
-msgid "Spain"
-msgstr ""
-
-#: ../admin/globals/countries.php:62
-msgid "Ethiopia"
-msgstr ""
-
-#: ../admin/globals/countries.php:63
-msgid "Finland"
-msgstr ""
-
-#: ../admin/globals/countries.php:64
-msgid "Fiji"
-msgstr ""
-
-#: ../admin/globals/countries.php:65
-msgid "Micronesia"
-msgstr ""
-
-#: ../admin/globals/countries.php:66
-msgid "France"
-msgstr ""
-
-#: ../admin/globals/countries.php:67
-msgid "Gabon"
-msgstr ""
-
-#: ../admin/globals/countries.php:68
-msgid "United Kingdom"
-msgstr ""
-
-#: ../admin/globals/countries.php:69
-msgid "Grenada"
-msgstr ""
-
-#: ../admin/globals/countries.php:70
-msgid "Georgia"
-msgstr ""
-
-#: ../admin/globals/countries.php:71
-msgid "Ghana"
-msgstr ""
-
-#: ../admin/globals/countries.php:72
-msgid "Gambia"
-msgstr ""
-
-#: ../admin/globals/countries.php:73
-msgid "Guinea"
-msgstr ""
-
-#: ../admin/globals/countries.php:74
-msgid "Equatorial Guinea"
-msgstr ""
-
-#: ../admin/globals/countries.php:75
-msgid "Greece"
-msgstr ""
-
-#: ../admin/globals/countries.php:76
-msgid "Guatemala"
-msgstr ""
-
-#: ../admin/globals/countries.php:77
-msgid "Guinea-Bissau"
-msgstr ""
-
-#: ../admin/globals/countries.php:78
-msgid "Guyana"
-msgstr ""
-
-#: ../admin/globals/countries.php:79
-msgid "Hong Kong"
-msgstr ""
-
-#: ../admin/globals/countries.php:80
-msgid "Honduras"
-msgstr ""
-
-#: ../admin/globals/countries.php:81
-msgid "Croatia"
-msgstr ""
-
-#: ../admin/globals/countries.php:82
-msgid "Haiti"
-msgstr ""
-
-#: ../admin/globals/countries.php:83
-msgid "Hungary"
-msgstr ""
-
-#: ../admin/globals/countries.php:84
-msgid "Indonesia"
-msgstr ""
-
-#: ../admin/globals/countries.php:85
-msgid "Ireland"
-msgstr ""
-
-#: ../admin/globals/countries.php:86
-msgid "Israel"
-msgstr ""
-
-#: ../admin/globals/countries.php:87
-msgid "India"
-msgstr ""
-
-#: ../admin/globals/countries.php:88
-msgid "Iraq"
-msgstr ""
-
-#: ../admin/globals/countries.php:89
-msgid "Iran"
-msgstr ""
-
-#: ../admin/globals/countries.php:90
-msgid "Iceland"
-msgstr ""
-
-#: ../admin/globals/countries.php:91
-msgid "Italy"
-msgstr ""
-
-#: ../admin/globals/countries.php:92
-msgid "Jamaica"
-msgstr ""
-
-#: ../admin/globals/countries.php:93
-msgid "Jordan"
-msgstr ""
-
-#: ../admin/globals/countries.php:94
-msgid "Japan"
-msgstr ""
-
-#: ../admin/globals/countries.php:95
-msgid "Kenya"
-msgstr ""
-
-#: ../admin/globals/countries.php:96
-msgid "Kyrgyzstan"
-msgstr ""
-
-#: ../admin/globals/countries.php:97
-msgid "Cambodia"
-msgstr ""
-
-#: ../admin/globals/countries.php:98
-msgid "Kiribati"
-msgstr ""
-
-#: ../admin/globals/countries.php:99
-msgid "Comoros"
-msgstr ""
-
-#: ../admin/globals/countries.php:100
-msgid "Saint Kitts and Nevis"
-msgstr ""
-
-#: ../admin/globals/countries.php:101
-msgid "North Korea"
-msgstr ""
-
-#: ../admin/globals/countries.php:102
-msgid "South Korea"
-msgstr ""
-
-#: ../admin/globals/countries.php:103
-msgid "Kuwait"
-msgstr ""
-
-#: ../admin/globals/countries.php:104
-msgid "Kazakhstan"
-msgstr ""
-
-#: ../admin/globals/countries.php:105
-msgid "Laos"
-msgstr ""
-
-#: ../admin/globals/countries.php:106
-msgid "Lebanon"
-msgstr ""
-
-#: ../admin/globals/countries.php:107
-msgid "Saint Lucia"
-msgstr ""
-
-#: ../admin/globals/countries.php:108
-msgid "Liechtenstein"
-msgstr ""
-
-#: ../admin/globals/countries.php:109
-msgid "Sri Lanka"
-msgstr ""
-
-#: ../admin/globals/countries.php:110
-msgid "Liberia"
-msgstr ""
-
-#: ../admin/globals/countries.php:111
-msgid "Lesotho"
-msgstr ""
-
-#: ../admin/globals/countries.php:112
-msgid "Lithuania"
-msgstr ""
-
-#: ../admin/globals/countries.php:113
-msgid "Luxembourg"
-msgstr ""
-
-#: ../admin/globals/countries.php:114
-msgid "Latvia"
-msgstr ""
-
-#: ../admin/globals/countries.php:115
-msgid "Libya"
-msgstr ""
-
-#: ../admin/globals/countries.php:116
-msgid "Morocco"
-msgstr ""
-
-#: ../admin/globals/countries.php:117
-msgid "Monaco"
-msgstr ""
-
-#: ../admin/globals/countries.php:118
-msgid "Moldova"
-msgstr ""
-
-#: ../admin/globals/countries.php:119
-msgid "Montenegro"
-msgstr ""
-
-#: ../admin/globals/countries.php:120
-msgid "Madagascar"
-msgstr ""
-
-#: ../admin/globals/countries.php:121
-msgid "Marshall Islands"
-msgstr ""
-
-#: ../admin/globals/countries.php:122
-msgid "Macedonia"
-msgstr ""
-
-#: ../admin/globals/countries.php:123
-msgid "Mali"
-msgstr ""
-
-#: ../admin/globals/countries.php:124
-msgid "Myanmar"
-msgstr ""
-
-#: ../admin/globals/countries.php:125
-msgid "Mongolia"
-msgstr ""
-
-#: ../admin/globals/countries.php:126
-msgid "Macau"
-msgstr ""
-
-#: ../admin/globals/countries.php:127
-msgid "Mauritania"
-msgstr ""
-
-#: ../admin/globals/countries.php:128
-msgid "Malta"
-msgstr ""
-
-#: ../admin/globals/countries.php:129
-msgid "Mauritius"
-msgstr ""
-
-#: ../admin/globals/countries.php:130
-msgid "Maldives"
-msgstr ""
-
-#: ../admin/globals/countries.php:131
-msgid "Malawi"
-msgstr ""
-
-#: ../admin/globals/countries.php:132
-msgid "Mexico"
-msgstr ""
-
-#: ../admin/globals/countries.php:133
-msgid "Malaysia"
-msgstr ""
-
-#: ../admin/globals/countries.php:134
-msgid "Mozambique"
-msgstr ""
-
-#: ../admin/globals/countries.php:135
-msgid "Namibia"
-msgstr ""
-
-#: ../admin/globals/countries.php:136
-msgid "Northern Ireland"
-msgstr ""
-
-#: ../admin/globals/countries.php:137
-msgid "Niger"
-msgstr ""
-
-#: ../admin/globals/countries.php:138
-msgid "Nigeria"
-msgstr ""
-
-#: ../admin/globals/countries.php:139
-msgid "Nicaragua"
-msgstr ""
-
-#: ../admin/globals/countries.php:140
-msgid "Netherlands"
-msgstr ""
-
-#: ../admin/globals/countries.php:141
-msgid "Norway"
-msgstr ""
-
-#: ../admin/globals/countries.php:142
-msgid "Nepal"
-msgstr ""
-
-#: ../admin/globals/countries.php:143
-msgid "Nauru"
-msgstr ""
-
-#: ../admin/globals/countries.php:144
-msgid "New Zealand"
-msgstr ""
-
-#: ../admin/globals/countries.php:145
-msgid "Oman"
-msgstr ""
-
-#: ../admin/globals/countries.php:146
-msgid "Panama"
-msgstr ""
-
-#: ../admin/globals/countries.php:147
-msgid "Peru"
-msgstr ""
-
-#: ../admin/globals/countries.php:148
-msgid "Papua New Guinea"
-msgstr ""
-
-#: ../admin/globals/countries.php:149
-msgid "Philippines"
-msgstr ""
-
-#: ../admin/globals/countries.php:150
-msgid "Pakistan"
-msgstr ""
-
-#: ../admin/globals/countries.php:151
-msgid "Poland"
-msgstr ""
-
-#: ../admin/globals/countries.php:152
-msgid "Portugal"
-msgstr ""
-
-#: ../admin/globals/countries.php:153
-msgid "Palau"
-msgstr ""
-
-#: ../admin/globals/countries.php:154
-msgid "Paraguay"
-msgstr ""
-
-#: ../admin/globals/countries.php:155
-msgid "Qatar"
-msgstr ""
-
-#: ../admin/globals/countries.php:156
-msgid "Romania"
-msgstr ""
-
-#: ../admin/globals/countries.php:157
-msgid "Serbia"
-msgstr ""
-
-#: ../admin/globals/countries.php:158
-msgid "Russia"
-msgstr ""
-
-#: ../admin/globals/countries.php:159
-msgid "Rwanda"
-msgstr ""
-
-#: ../admin/globals/countries.php:160
-msgid "Saudi Arabia"
-msgstr ""
-
-#: ../admin/globals/countries.php:161
-msgid "Solomon Islands"
-msgstr ""
-
-#: ../admin/globals/countries.php:162
-msgid "Seychelles"
-msgstr ""
-
-#: ../admin/globals/countries.php:163
-msgid "Sudan"
-msgstr ""
-
-#: ../admin/globals/countries.php:164
-msgid "Sweden"
-msgstr ""
-
-#: ../admin/globals/countries.php:165
-msgid "Scotland"
-msgstr ""
-
-#: ../admin/globals/countries.php:166
-msgid "Singapore"
-msgstr ""
-
-#: ../admin/globals/countries.php:167
-msgid "Slovenia"
-msgstr ""
-
-#: ../admin/globals/countries.php:168
-msgid "Slovakia"
-msgstr ""
-
-#: ../admin/globals/countries.php:169
-msgid "Sierra Leone"
-msgstr ""
-
-#: ../admin/globals/countries.php:170
-msgid "San Marino"
-msgstr ""
-
-#: ../admin/globals/countries.php:171
-msgid "Senegal"
-msgstr ""
-
-#: ../admin/globals/countries.php:172
-msgid "Somalia"
-msgstr ""
-
-#: ../admin/globals/countries.php:173
-msgid "Suriname"
-msgstr ""
-
-#: ../admin/globals/countries.php:174
-msgid "Sao Tome and Principe"
-msgstr ""
-
-#: ../admin/globals/countries.php:175
-msgid "El Salvador"
-msgstr ""
-
-#: ../admin/globals/countries.php:176
-msgid "Swaziland"
-msgstr ""
-
-#: ../admin/globals/countries.php:177
-msgid "Chad"
-msgstr ""
-
-#: ../admin/globals/countries.php:178
-msgid "Togo"
-msgstr ""
-
-#: ../admin/globals/countries.php:179
-msgid "Thailand"
-msgstr ""
-
-#: ../admin/globals/countries.php:180
-msgid "Tajikistan"
-msgstr ""
-
-#: ../admin/globals/countries.php:181
-msgid "East Timor"
-msgstr ""
-
-#: ../admin/globals/countries.php:182
-msgid "Turkmenistan"
-msgstr ""
-
-#: ../admin/globals/countries.php:183
-msgid "Tunisia"
-msgstr ""
-
-#: ../admin/globals/countries.php:184
-msgid "Tonga"
-msgstr ""
-
-#: ../admin/globals/countries.php:185
-msgid "Turkey"
-msgstr ""
-
-#: ../admin/globals/countries.php:186
-msgid "Trinidad and Tobago"
-msgstr ""
-
-#: ../admin/globals/countries.php:187
-msgid "Tuvalu"
-msgstr ""
-
-#: ../admin/globals/countries.php:188
-msgid "Taiwan"
-msgstr ""
-
-#: ../admin/globals/countries.php:189
-msgid "Tanzania"
-msgstr ""
-
-#: ../admin/globals/countries.php:190
-msgid "Ukraine"
-msgstr ""
-
-#: ../admin/globals/countries.php:191
-msgid "Uganda"
-msgstr ""
-
-#: ../admin/globals/countries.php:192
-msgid "United States"
-msgstr ""
-
-#: ../admin/globals/countries.php:193
-msgid "Uruguay"
-msgstr ""
-
-#: ../admin/globals/countries.php:194
-msgid "Uzbekistan"
-msgstr ""
-
-#: ../admin/globals/countries.php:195
-msgid "Vatican City"
-msgstr ""
-
-#: ../admin/globals/countries.php:196
-msgid "Saint Vincent and the Grenadines"
-msgstr ""
-
-#: ../admin/globals/countries.php:197
-msgid "Venezuela"
-msgstr ""
-
-#: ../admin/globals/countries.php:198
-msgid "Vietnam"
-msgstr ""
-
-#: ../admin/globals/countries.php:199
-msgid "Vanuatu"
-msgstr ""
-
-#: ../admin/globals/countries.php:200
-msgid "Wales"
-msgstr ""
-
-#: ../admin/globals/countries.php:201
-msgid "Samoa"
-msgstr ""
-
-#: ../admin/globals/countries.php:202
-msgid "Yemen"
-msgstr ""
-
-#: ../admin/globals/countries.php:203
-msgid "South Africa"
-msgstr ""
-
-#: ../admin/globals/countries.php:204
-msgid "Zambia"
-msgstr ""
-
-#: ../admin/globals/countries.php:205
-msgid "Zimbabwe"
-msgstr ""
-
-#: ../admin/hooks/admin-enqueue-scripts.php:25
-msgid "— Remove —"
-msgstr ""
-
-#: ../admin/hooks/admin-enqueue-scripts.php:25
-#: ../admin/hooks/wp-enqueue-scripts.php:14
-#: ../admin/templates/countdown.php:38 ../admin/tools/dashboard.php:54
-msgid "days"
-msgstr ""
-
-#: ../admin/hooks/admin-enqueue-scripts.php:25
-#: ../admin/hooks/wp-enqueue-scripts.php:14
-#: ../admin/templates/countdown.php:39
-msgid "hrs"
-msgstr ""
-
-#: ../admin/hooks/admin-enqueue-scripts.php:25
-#: ../admin/hooks/wp-enqueue-scripts.php:14
-#: ../admin/templates/countdown.php:40
-msgid "mins"
-msgstr ""
-
-#: ../admin/hooks/admin-enqueue-scripts.php:25
-#: ../admin/hooks/wp-enqueue-scripts.php:14
-#: ../admin/templates/countdown.php:41
-msgid "secs"
-msgstr ""
-
-#: ../admin/hooks/admin-menu.php:52 ../admin/post-types/player.php:37
-#: ../admin/post-types/player.php:169 ../admin/post-types/player.php:176
-#: ../admin/post-types/staff.php:55 ../admin/post-types/team.php:50
-#: ../admin/terms/league.php:4 ../admin/terms/league.php:18
-msgid "Leagues"
-msgstr ""
-
-#: ../admin/hooks/admin-menu.php:58 ../admin/post-types/metric.php:33
-#: ../admin/post-types/player.php:35 ../admin/post-types/player.php:124
-#: ../admin/post-types/player.php:131 ../admin/post-types/staff.php:53
-#: ../admin/post-types/statistic.php:34 ../admin/settings/players.php:16
-#: ../admin/settings/players.php:23 ../admin/settings/players.php:57
-#: ../admin/settings/players.php:64 ../admin/terms/position.php:4
-#: ../admin/terms/position.php:18
-msgid "Positions"
-msgstr ""
-
-#: ../admin/hooks/admin-menu.php:64 ../admin/post-types/player.php:38
-#: ../admin/post-types/player.php:184 ../admin/post-types/player.php:191
-#: ../admin/post-types/staff.php:56 ../admin/post-types/team.php:51
-#: ../admin/terms/season.php:4 ../admin/terms/season.php:18
-msgid "Seasons"
-msgstr ""
-
-#: ../admin/hooks/admin-menu.php:70 ../admin/terms/venue.php:4
-#: ../admin/terms/venue.php:18
-msgid "Venues"
-msgstr ""
-
-#: ../admin/hooks/admin-post-thumbnail-html.php:5
-#: ../admin/hooks/admin-post-thumbnail-html.php:9
-#: ../admin/hooks/admin-post-thumbnail-html.php:13
-#: ../admin/post-types/player.php:113 ../admin/post-types/player.php:131
-#: ../admin/post-types/player.php:147 ../admin/post-types/player.php:161
-#: ../admin/post-types/player.php:176 ../admin/post-types/player.php:191
-#, php-format
-msgid "Select %s"
-msgstr ""
-
-#: ../admin/hooks/admin-post-thumbnail-html.php:5
-#: ../admin/hooks/admin-post-thumbnail-html.php:6
-#: ../admin/post-types/team.php:38
-msgid "Logo"
-msgstr ""
-
-#: ../admin/hooks/admin-post-thumbnail-html.php:6
-#: ../admin/hooks/admin-post-thumbnail-html.php:10
-#: ../admin/hooks/admin-post-thumbnail-html.php:14
-#, php-format
-msgid "Remove %s"
-msgstr ""
-
-#: ../admin/hooks/admin-post-thumbnail-html.php:9
-#: ../admin/hooks/admin-post-thumbnail-html.php:10
-#: ../admin/hooks/admin-post-thumbnail-html.php:13
-#: ../admin/hooks/admin-post-thumbnail-html.php:14
-#: ../admin/post-types/player.php:58 ../admin/post-types/staff.php:34
-msgid "Photo"
-msgstr ""
-
-#: ../admin/hooks/gettext.php:12 ../admin/hooks/gettext.php:15
-msgid "Select Logo"
-msgstr ""
-
-#: ../admin/hooks/gettext.php:18
-msgid "Remove Logo"
-msgstr ""
-
-#: ../admin/hooks/gettext.php:24 ../admin/settings/settings.php:63
-#: ../admin/widgets/countdown.php:44
-msgid "(Auto)"
-msgstr ""
-
-#: ../admin/hooks/gettext.php:27 ../admin/hooks/gettext.php:30
-msgid "Select Photo"
-msgstr ""
-
-#: ../admin/hooks/gettext.php:33
-msgid "Remove Photo"
-msgstr ""
-
-#: ../admin/hooks/manage-posts-columns.php:3 ../admin/post-types/event.php:218
-#: ../admin/post-types/list.php:39 ../admin/post-types/player.php:39
-#: ../admin/post-types/staff.php:57 ../admin/post-types/table.php:38
-#: ../admin/post-types/team.php:52
-msgid "Views"
-msgstr ""
-
-#: ../admin/hooks/manage-posts-columns.php:83
-#: ../admin/post-types/player.php:139 ../admin/templates/player-metrics.php:26
-msgid "Current Team"
-msgstr ""
-
-#: ../admin/hooks/media-buttons.php:7
-msgid "Add Map"
-msgstr ""
-
-#: ../admin/hooks/media-buttons.php:8
-msgid "Add League Table"
-msgstr ""
-
-#: ../admin/hooks/plugin-action-links.php:3
-msgid "Settings"
-msgstr ""
-
-#: ../admin/hooks/post-updated-messages.php:10
-msgid "Settings saved."
-msgstr ""
-
-#: ../admin/hooks/post-updated-messages.php:12
-msgid "View All"
-msgstr ""
-
-#: ../admin/hooks/post-updated-messages.php:18
-#: ../admin/hooks/post-updated-messages.php:21
-#: ../admin/hooks/post-updated-messages.php:26
-msgid "Changes saved."
-msgstr ""
-
-#: ../admin/hooks/post-updated-messages.php:23
-#: ../admin/hooks/post-updated-messages.php:28
-#: ../admin/hooks/post-updated-messages.php:38
-msgid "Success!"
-msgstr ""
-
-#: ../admin/hooks/post-updated-messages.php:30
-#: ../admin/hooks/post-updated-messages.php:36
-#: ../admin/hooks/post-updated-messages.php:40
-#, php-format
-msgid "Preview %s"
-msgstr ""
-
-#: ../admin/hooks/post-updated-messages.php:33
-#, php-format
-msgid "Scheduled for: %1$s."
-msgstr ""
-
-#: ../admin/hooks/register-activation-hook.php:8
-msgid "League Manager"
-msgstr ""
-
-#: ../admin/hooks/register-activation-hook.php:86
-msgid "Team Manager"
-msgstr ""
-
-#: ../admin/hooks/register-activation-hook.php:131
-#: ../admin/post-types/event.php:137 ../admin/post-types/staff.php:4
-#: ../admin/post-types/staff.php:5 ../admin/post-types/staff.php:15
-msgid "Staff"
-msgstr ""
-
-#: ../admin/hooks/restrict-manage-posts.php:8
-msgid "Show all positions"
-msgstr ""
-
-#: ../admin/hooks/restrict-manage-posts.php:18
-msgid "Show all leagues"
-msgstr ""
-
-#: ../admin/hooks/restrict-manage-posts.php:28
-msgid "Show all seasons"
-msgstr ""
-
-#: ../admin/hooks/restrict-manage-posts.php:40
-msgid "Show all teams"
-msgstr ""
-
-#: ../admin/hooks/wp-insert-post-data.php:13
-msgid "vs"
-msgstr ""
-
-#: ../admin/includes/notice-install.php:5
-msgid "Welcome to SportsPress – Get Started"
-msgstr ""
-
-#: ../admin/includes/notice-install.php:7
-msgid "Go to SportsPress Settings"
-msgstr ""
-
-#: ../admin/includes/notice-install.php:8
-msgid "Skip setup"
-msgstr ""
-
-#: ../admin/includes/notice-theme-support.php:5
-msgid ""
-"Your theme does not declare SportsPress support – if "
-"you encounter layout issues please read our integration guide or choose a "
-"SportsPress theme :)"
-msgstr ""
-
-#: ../admin/includes/notice-theme-support.php:7
-msgid "Theme Integration Guide"
-msgstr ""
-
-#: ../admin/includes/notice-theme-support.php:8
-msgid "Hide this notice"
-msgstr ""
-
-#: ../admin/post-types/column.php:5
-msgid "Column"
-msgstr ""
-
-#: ../admin/post-types/column.php:8 ../admin/post-types/event.php:9
-#: ../admin/post-types/list.php:8 ../admin/post-types/metric.php:8
-#: ../admin/post-types/outcome.php:8 ../admin/post-types/player.php:8
-#: ../admin/post-types/result.php:8 ../admin/post-types/staff.php:8
-#: ../admin/post-types/statistic.php:8 ../admin/post-types/table.php:8
-#: ../admin/post-types/team.php:8
-msgid "New"
-msgstr ""
-
-#: ../admin/post-types/column.php:9 ../admin/post-types/event.php:10
-#: ../admin/post-types/list.php:9 ../admin/post-types/metric.php:9
-#: ../admin/post-types/outcome.php:9 ../admin/post-types/player.php:9
-#: ../admin/post-types/result.php:9 ../admin/post-types/staff.php:9
-#: ../admin/post-types/statistic.php:9 ../admin/post-types/table.php:9
-#: ../admin/post-types/team.php:9 ../admin/terms/league.php:8
-#: ../admin/terms/position.php:8 ../admin/terms/season.php:8
-#: ../admin/terms/venue.php:8
-msgid "View"
-msgstr ""
-
-#: ../admin/post-types/column.php:10 ../admin/post-types/event.php:11
-#: ../admin/post-types/list.php:10 ../admin/post-types/metric.php:10
-#: ../admin/post-types/outcome.php:10 ../admin/post-types/player.php:10
-#: ../admin/post-types/result.php:10 ../admin/post-types/staff.php:10
-#: ../admin/post-types/statistic.php:10 ../admin/post-types/table.php:10
-#: ../admin/post-types/team.php:10 ../admin/terms/league.php:14
-#: ../admin/terms/position.php:14 ../admin/terms/season.php:14
-#: ../admin/terms/venue.php:14
-msgid "Search"
-msgstr ""
-
-#: ../admin/post-types/column.php:33 ../admin/post-types/metric.php:32
-#: ../admin/post-types/outcome.php:33 ../admin/post-types/result.php:33
-#: ../admin/post-types/statistic.php:33 ../admin/settings/events.php:20
-#: ../admin/settings/events.php:26 ../admin/settings/events.php:59
-#: ../admin/settings/events.php:65 ../admin/settings/players.php:15
-#: ../admin/settings/players.php:22 ../admin/settings/players.php:56
-#: ../admin/settings/players.php:63 ../admin/settings/tables.php:15
-#: ../admin/settings/tables.php:24
-msgid "Label"
-msgstr ""
-
-#: ../admin/post-types/column.php:34 ../admin/post-types/column.php:56
-#: ../admin/post-types/outcome.php:34 ../admin/post-types/outcome.php:46
-#: ../admin/post-types/result.php:34 ../admin/post-types/result.php:47
-#: ../admin/settings/events.php:21 ../admin/settings/events.php:27
-#: ../admin/settings/events.php:60 ../admin/settings/events.php:66
-#: ../admin/settings/tables.php:16 ../admin/settings/tables.php:25
-msgid "Key"
-msgstr ""
-
-#: ../admin/post-types/column.php:35 ../admin/post-types/column.php:60
-#: ../admin/settings/tables.php:17 ../admin/settings/tables.php:26
-msgid "Equation"
-msgstr ""
-
-#: ../admin/post-types/column.php:36 ../admin/post-types/column.php:68
-#: ../admin/settings/tables.php:18 ../admin/settings/tables.php:27
-msgid "Rounding"
-msgstr ""
-
-#: ../admin/post-types/column.php:37 ../admin/post-types/column.php:72
-#: ../admin/settings/tables.php:19 ../admin/settings/tables.php:28
-msgid "Sort Order"
-msgstr ""
-
-#: ../admin/post-types/column.php:44 ../admin/post-types/event.php:50
-#: ../admin/post-types/list.php:56 ../admin/post-types/outcome.php:41
-#: ../admin/post-types/player.php:56 ../admin/post-types/result.php:41
-#: ../admin/post-types/statistic.php:42 ../admin/post-types/table.php:55
-#: ../admin/templates/event-details.php:25
-msgid "Details"
-msgstr ""
-
-#: ../admin/post-types/column.php:76
-msgid "Disable"
-msgstr ""
-
-#: ../admin/post-types/column.php:88 ../admin/post-types/list.php:133
-#: ../admin/widgets/player-list.php:109
-msgid "Descending"
-msgstr ""
-
-#: ../admin/post-types/column.php:88 ../admin/post-types/list.php:132
-#: ../admin/widgets/player-list.php:108
-msgid "Ascending"
-msgstr ""
-
-#: ../admin/post-types/event.php:4
-msgid "Schedule"
-msgstr ""
-
-#: ../admin/post-types/event.php:5 ../admin/post-types/event.php:49
-#: ../admin/post-types/event.php:212 ../admin/widgets/countdown.php:37
-msgid "Event"
-msgstr ""
-
-#: ../admin/post-types/event.php:51 ../admin/post-types/event.php:213
-#: ../admin/post-types/player.php:36 ../admin/post-types/player.php:161
-#: ../admin/post-types/staff.php:35 ../admin/post-types/staff.php:54
-#: ../admin/post-types/table.php:37 ../admin/post-types/table.php:49
-#: ../admin/post-types/table.php:91 ../admin/post-types/team.php:4
-#: ../admin/post-types/team.php:16
-msgid "Teams"
-msgstr ""
-
-#: ../admin/post-types/event.php:58 ../admin/post-types/player.php:61
-#: ../admin/post-types/statistic.php:4 ../admin/post-types/statistic.php:15
-#: ../admin/settings/players.php:52
-msgid "Statistics"
-msgstr ""
-
-#: ../admin/post-types/event.php:59
-msgid "Article"
-msgstr ""
-
-#: ../admin/post-types/event.php:68 ../admin/post-types/event.php:214
-#: ../admin/post-types/list.php:36 ../admin/post-types/list.php:67
-#: ../admin/post-types/table.php:35 ../admin/post-types/table.php:63
-#: ../admin/templates/event-details.php:17 ../admin/terms/league.php:5
-msgid "League"
-msgstr ""
-
-#: ../admin/post-types/event.php:98 ../admin/post-types/event.php:216
-#: ../admin/templates/event-venue.php:24 ../admin/terms/venue.php:5
-msgid "Venue"
-msgstr ""
-
-#: ../admin/post-types/event.php:128
-msgid "Remove"
-msgstr ""
-
-#: ../admin/post-types/event.php:136 ../admin/post-types/list.php:35
-#: ../admin/post-types/list.php:50 ../admin/post-types/list.php:136
-#: ../admin/post-types/player.php:4 ../admin/post-types/player.php:15
-#: ../admin/settings/settings.php:13
-msgid "Players"
-msgstr ""
-
-#: ../admin/post-types/event.php:152
-msgid "— Add —"
-msgstr ""
-
-#: ../admin/post-types/event.php:217
-msgid "Date/Time"
-msgstr ""
-
-#: ../admin/post-types/list.php:4 ../admin/post-types/list.php:15
-msgid "Player Lists"
-msgstr ""
-
-#: ../admin/post-types/list.php:5 ../admin/post-types/list.php:53
-#: ../admin/widgets/player-list.php:47
-msgid "Player List"
-msgstr ""
-
-#: ../admin/post-types/list.php:34 ../admin/post-types/table.php:34
-msgid "Title"
-msgstr ""
-
-#: ../admin/post-types/list.php:101 ../admin/terms/league.php:6
-#: ../admin/terms/position.php:6 ../admin/terms/season.php:6
-#: ../admin/terms/venue.php:6
-msgid "All"
-msgstr ""
-
-#: ../admin/post-types/list.php:110 ../admin/widgets/player-list.php:84
-msgid "Sort by:"
-msgstr ""
-
-#: ../admin/post-types/list.php:115 ../admin/post-types/player.php:109
-#: ../admin/templates/player-metrics.php:19
-#: ../admin/widgets/player-list.php:89
-msgid "Number"
-msgstr ""
-
-#: ../admin/post-types/list.php:116 ../admin/post-types/player.php:34
-#: ../admin/post-types/staff.php:52 ../admin/terms/league.php:11
-#: ../admin/terms/position.php:11 ../admin/terms/season.php:11
-#: ../admin/terms/venue.php:11 ../admin/widgets/player-list.php:90
-msgid "Name"
-msgstr ""
-
-#: ../admin/post-types/list.php:129 ../admin/widgets/player-list.php:106
-msgid "Sort Order:"
-msgstr ""
-
-#: ../admin/post-types/metric.php:4 ../admin/post-types/metric.php:15
-#: ../admin/post-types/player.php:57 ../admin/settings/players.php:11
-msgid "Metrics"
-msgstr ""
-
-#: ../admin/post-types/metric.php:5
-msgid "Metric"
-msgstr ""
-
-#: ../admin/post-types/player.php:55 ../admin/post-types/staff.php:32
-#: ../admin/post-types/team.php:36
-msgid "Publish"
-msgstr ""
-
-#: ../admin/post-types/player.php:64 ../admin/post-types/staff.php:36
-msgid "Profile"
-msgstr ""
-
-#: ../admin/post-types/player.php:112 ../admin/post-types/player.php:113
-#: ../admin/templates/player-metrics.php:21
-msgid "Nationality"
-msgstr ""
-
-#: ../admin/post-types/player.php:154 ../admin/templates/player-metrics.php:33
-msgid "Past Teams"
-msgstr ""
-
-#: ../admin/post-types/result.php:5
-msgid "Result"
-msgstr ""
-
-#: ../admin/post-types/statistic.php:5
-msgid "Statistic"
-msgstr ""
-
-#: ../admin/post-types/statistic.php:35 ../admin/post-types/statistic.php:48
-#: ../admin/settings/players.php:58 ../admin/settings/players.php:65
-msgid "Calculate"
-msgstr ""
-
-#: ../admin/post-types/table.php:4 ../admin/post-types/table.php:15
-#: ../admin/settings/settings.php:12
-msgid "League Tables"
-msgstr ""
-
-#: ../admin/post-types/table.php:5 ../admin/post-types/table.php:52
-#: ../admin/widgets/league-table.php:41
-msgid "League Table"
-msgstr ""
-
-#: ../admin/post-types/team.php:13 ../admin/terms/league.php:13
-#: ../admin/terms/position.php:13 ../admin/terms/season.php:13
-#: ../admin/terms/venue.php:13
-msgid "Parent:"
-msgstr ""
-
-#: ../admin/settings/events.php:1
-msgid "Event Settings"
-msgstr ""
-
-#: ../admin/settings/general.php:1
-msgid "General Settings"
-msgstr ""
-
-#: ../admin/settings/settings.php:10
-msgid "General"
-msgstr ""
-
-#: ../admin/settings/settings.php:50
-msgid "Custom"
-msgstr ""
-
-#: ../admin/settings/settings.php:52 ../admin/settings/settings.php:102
-msgid "Sport"
-msgstr ""
-
-#: ../admin/settings/settings.php:124
-msgid "Main Result"
-msgstr ""
-
-#: ../admin/settings/settings.php:241 ../admin/settings/settings.php:242
-msgid "SportsPress"
-msgstr ""
-
-#: ../admin/templates/event-details.php:13
-msgid "Date"
-msgstr ""
-
-#. translators: Calendar caption: 1: month name, 2: 4-digit year
-#: ../admin/templates/events-calendar.php:56
-#: ../admin/templates/events-calendar.php:83
-#: ../admin/templates/events-calendar.php:91
-#, php-format
-msgctxt "calendar caption"
-msgid "%1$s %2$s"
-msgstr ""
-
-#: ../admin/templates/league-table.php:27
-msgid "Pos"
-msgstr ""
-
-#: ../admin/templates/player-list.php:46
-msgid "Rank"
-msgstr ""
-
-#: ../admin/terms/league.php:9 ../admin/terms/position.php:9
-#: ../admin/terms/season.php:9 ../admin/terms/venue.php:9
-msgid "Update"
-msgstr ""
-
-#: ../admin/terms/league.php:12 ../admin/terms/position.php:12
-#: ../admin/terms/season.php:12 ../admin/terms/venue.php:12
-msgid "Parent"
-msgstr ""
-
-#: ../admin/terms/position.php:5
-msgid "Position"
-msgstr ""
-
-#: ../admin/terms/venue.php:38 ../admin/terms/venue.php:85
-msgid "Address"
-msgstr ""
-
-#: ../admin/terms/venue.php:45
-msgid "Latitude"
-msgstr ""
-
-#: ../admin/terms/venue.php:51
-msgid "Longitude"
-msgstr ""
-
-#: ../admin/tools/dashboard.php:34
-msgid "SportsPress Status"
-msgstr ""
-
-#: ../admin/tools/dashboard.php:54
-#, php-format
-msgid "%s until next event"
-msgstr ""
-
-#: ../admin/tools/dashboard.php:61
-#, php-format
-msgid "%s event scheduled"
-msgid_plural "%s events scheduled"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../admin/tools/dashboard.php:66
-#, php-format
-msgid "%s event published"
-msgid_plural "%s events published"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../admin/tools/importers.php:37
-msgid "SportsPress Teams (CSV)"
-msgstr ""
-
-#: ../admin/tools/importers.php:37
-msgid "Import teams from a csv file."
-msgstr ""
-
-#: ../admin/tools/importers.php:38
-msgid "SportsPress Players (CSV)"
-msgstr ""
-
-#: ../admin/tools/importers.php:38
-msgid "Import players from a csv file."
-msgstr ""
-
-#: ../admin/tools/player-importer.php:192
-#: ../admin/tools/player-importer.php:232
-#: ../admin/tools/player-importer.php:247 ../admin/tools/team-importer.php:151
-#: ../admin/tools/team-importer.php:191 ../admin/tools/team-importer.php:206
-msgid "Sorry, there has been an error."
-msgstr ""
-
-#: ../admin/tools/player-importer.php:193 ../admin/tools/team-importer.php:152
-msgid "The CSV is invalid."
-msgstr ""
-
-#: ../admin/tools/player-importer.php:204
-#, php-format
-msgid ""
-"Import complete - imported %s players and skipped "
-"%s."
-msgstr ""
-
-#: ../admin/tools/player-importer.php:214 ../admin/tools/team-importer.php:173
-msgid "All done!"
-msgstr ""
-
-#: ../admin/tools/player-importer.php:214
-msgid "View Players"
-msgstr ""
-
-#: ../admin/tools/player-importer.php:264
-msgid "Import Players"
-msgstr ""
-
-#: ../admin/tools/player-importer.php:286 ../admin/tools/team-importer.php:245
-msgid ""
-"Hi there! Choose a .csv file to upload, then click \"Upload file and "
-"import\"."
-msgstr ""
-
-#: ../admin/tools/player-importer.php:288
-#, php-format
-msgid ""
-"Players need to be defined with columns in a specific order (7 columns). Click here to download a sample."
-msgstr ""
-
-#: ../admin/tools/player-importer.php:296 ../admin/tools/team-importer.php:255
-msgid ""
-"Before you can upload your import file, you will need to fix the following "
-"error:"
-msgstr ""
-
-#: ../admin/tools/player-importer.php:305 ../admin/tools/team-importer.php:264
-msgid "Choose a file from your computer:"
-msgstr ""
-
-#: ../admin/tools/player-importer.php:311 ../admin/tools/team-importer.php:270
-#, php-format
-msgid "Maximum size: %s"
-msgstr ""
-
-#: ../admin/tools/player-importer.php:316 ../admin/tools/team-importer.php:275
-msgid "OR enter path to file:"
-msgstr ""
-
-#: ../admin/tools/player-importer.php:323 ../admin/tools/team-importer.php:282
-msgid "Delimiter"
-msgstr ""
-
-#: ../admin/tools/player-importer.php:329 ../admin/tools/team-importer.php:288
-msgid "Upload file and import"
-msgstr ""
-
-#: ../admin/tools/team-importer.php:163
-#, php-format
-msgid ""
-"Import complete - imported %s teams and skipped "
-"%s."
-msgstr ""
-
-#: ../admin/tools/team-importer.php:173
-msgid "View Teams"
-msgstr ""
-
-#: ../admin/tools/team-importer.php:223
-msgid "Import Teams"
-msgstr ""
-
-#: ../admin/tools/team-importer.php:247
-#, php-format
-msgid ""
-"Teams need to be defined with columns in a specific order (3 columns). Click here to download a sample."
-msgstr ""
-
-#: ../admin/widgets/countdown.php:5
-msgid "A clock that counts down to an upcoming event."
-msgstr ""
-
-#: ../admin/widgets/countdown.php:6
-msgid "SportsPress Countdown"
-msgstr ""
-
-#: ../admin/widgets/countdown.php:34 ../admin/widgets/events-calendar.php:32
-#: ../admin/widgets/league-table.php:38 ../admin/widgets/player-list.php:44
-msgid "Title:"
-msgstr ""
-
-#: ../admin/widgets/countdown.php:37 ../admin/widgets/league-table.php:41
-#: ../admin/widgets/player-list.php:47
-#, php-format
-msgid "Select %s:"
-msgstr ""
-
-#: ../admin/widgets/countdown.php:57
-msgid "Display league"
-msgstr ""
-
-#: ../admin/widgets/events-calendar.php:5
-msgid "A calendar of events."
-msgstr ""
-
-#: ../admin/widgets/events-calendar.php:6
-msgid "SportsPress Events Calendar"
-msgstr ""
-
-#: ../admin/widgets/league-table.php:5
-msgid "Display a league table."
-msgstr ""
-
-#: ../admin/widgets/league-table.php:6
-msgid "SportsPress League Table"
-msgstr ""
-
-#: ../admin/widgets/league-table.php:58
-msgid "Columns:"
-msgstr ""
-
-#: ../admin/widgets/player-list.php:5
-msgid "Display a list of players."
-msgstr ""
-
-#: ../admin/widgets/player-list.php:6
-msgid "SportsPress Player List"
-msgstr ""
-
-#: ../admin/widgets/player-list.php:64
-msgid "Statistics:"
-msgstr ""
-
-#: ../admin/widgets/player-list.php:88
-msgid "Default"
-msgstr ""
-
-#: ../presets/sports/baseball.php:5
-msgid "Baseball"
-msgstr ""
-
-#: ../presets/sports/basketball.php:5
-msgid "Basketball"
-msgstr ""
-
-#: ../presets/sports/cricket.php:5
-msgid "Cricket"
-msgstr ""
-
-#: ../presets/sports/football.php:5
-msgid "American Football"
-msgstr ""
-
-#: ../presets/sports/footy.php:5
-msgid "Australian Rules Football"
-msgstr ""
-
-#: ../presets/sports/gaming.php:5
-msgid "Competitive Gaming"
-msgstr ""
-
-#: ../presets/sports/golf.php:5
-msgid "Golf"
-msgstr ""
-
-#: ../presets/sports/hockey.php:5
-msgid "Hockey"
-msgstr ""
-
-#: ../presets/sports/racing.php:5
-msgid "Racing"
-msgstr ""
-
-#: ../presets/sports/rugby.php:5
-msgid "Rugby"
-msgstr ""
-
-#: ../presets/sports/soccer.php:5
-msgid "Soccer (Association Football)"
-msgstr ""
-
-#~ msgid "%1$s %2$s"
-#~ msgstr "%1$s %2$s"
-
-#~ msgid "-- Not Set --"
-#~ msgstr "-- Pas réglé --"
-
-#~ msgid "Points"
-#~ msgstr "点数"
-
-#~ msgid "Bonus"
-#~ msgstr "ボーナス"
-
-#~ msgid "Height"
-#~ msgstr "身長"
-
-#~ msgid "Weight"
-#~ msgstr "体重"
-
-#~ msgid "Conversions"
-#~ msgstr "ポジション"
-
-#~ msgid "Drop Goals"
-#~ msgstr "得点"
-
-#~ msgid "Goals"
-#~ msgstr "得点"
-
-#~ msgid "Assists"
-#~ msgstr "アシスト"
-
-#~ msgid "Yellow Cards"
-#~ msgstr "警告"
-
-#~ msgid "Red Cards"
-#~ msgstr "退場"
-
-#~ msgid "#"
-#~ msgstr "#"
-
-#~ msgid "Handball"
-#~ msgstr "ハンドボール"
-
-#~ msgid "Swimming"
-#~ msgstr "水泳"
-
-#~ msgid "Tennis"
-#~ msgstr "テニス"
-
-#~ msgid "Volleyball"
-#~ msgstr "バレーボール"
-
-#~ msgid "Appearances"
-#~ msgstr "出場"
-
-#~ msgid "table columns"
-#~ msgstr "順位表列"
-
-#~ msgid "Format"
-#~ msgstr "フォーマット"
-
-#~ msgid "player statistics"
-#~ msgstr "選手名鑑"
-
-#~ msgid "Configure"
-#~ msgstr "設定"
-
-#~ msgid "Joined"
-#~ msgstr "入団日"
diff --git a/templates/event-list.php b/templates/event-list.php
index 12f0d662..6e6668a6 100644
--- a/templates/event-list.php
+++ b/templates/event-list.php
@@ -1,121 +1,140 @@
-1,
'show_all_events_link' => false,
);
extract( $defaults, EXTR_SKIP );
+?>
+
+
+
+
+ ' .
- '' . '' . '';
+ if ( isset( $columns ) )
+ $usecolumns = $columns;
-list( $data, $usecolumns ) = sportspress_get_calendar_data( $id, true );
+ echo '| ' . SP()->text->string('Date', 'event') . ' | ';
-if ( isset( $columns ) )
- $usecolumns = $columns;
+ if ( $usecolumns == null || in_array( 'event', $usecolumns ) )
+ echo '' . SP()->text->string('Event', 'event') . ' | ';
-$output .= '' . SP()->text->string('Date', 'event') . ' | ';
+ if ( $usecolumns == null || in_array( 'teams', $usecolumns ) )
+ echo '' . SP()->text->string('Teams', 'event') . ' | ';
-if ( $usecolumns == null || in_array( 'event', $usecolumns ) )
- $output .= '' . SP()->text->string('Event', 'event') . ' | ';
+ if ( $usecolumns == null || in_array( 'time', $usecolumns ) )
+ echo '' . SP()->text->string('Time', 'event') . ' | ';
-if ( $usecolumns == null || in_array( 'teams', $usecolumns ) )
- $output .= '' . SP()->text->string('Teams', 'event') . ' | ';
+ if ( $usecolumns == null || in_array( 'venue', $usecolumns ) )
+ echo '' . SP()->text->string('Venue', 'event') . ' | ';
-if ( $usecolumns == null || in_array( 'time', $usecolumns ) )
- $output .= '' . SP()->text->string('Time', 'event') . ' | ';
+ if ( $usecolumns == null || in_array( 'article', $usecolumns ) )
+ echo '' . SP()->text->string('Article', 'event') . ' | ';
+ ?>
+
+
+
+ ' . SP()->text->string('Article', 'event') . '';
+ if ( is_int( $number ) && $number > 0 )
+ $limit = $number;
-$output .= '' . '' . '';
+ foreach ( $data as $event ):
+ if ( isset( $limit ) && $i >= $limit ) continue;
-$i = 0;
-foreach ( $data as $event ):
- $teams = get_post_meta( $event->ID, 'sp_team' );
- $results = get_post_meta( $event->ID, 'sp_results', true );
- $video = get_post_meta( $event->ID, 'sp_video', true );
+ $teams = get_post_meta( $event->ID, 'sp_team' );
+ $results = get_post_meta( $event->ID, 'sp_results', true );
+ $video = get_post_meta( $event->ID, 'sp_video', true );
- $output .= '';
+ echo '
';
- $output .= '| ' . get_post_time( get_option( 'date_format' ), false, $event ) . ' | ';
+ echo '' . get_post_time( get_option( 'date_format' ), false, $event ) . ' | ';
- if ( $usecolumns == null || in_array( 'event', $usecolumns ) )
- $output .= '' . $event->post_title . ' | ';
-
- if ( $usecolumns == null || in_array( 'teams', $usecolumns ) ):
- $output .= '';
+ if ( $usecolumns == null || in_array( 'event', $usecolumns ) )
+ echo ' | ' . $event->post_title . ' | ';
+
+ if ( $usecolumns == null || in_array( 'teams', $usecolumns ) ):
+ echo '';
- $teams = get_post_meta( $event->ID, 'sp_team', false );
- if ( $teams ):
- foreach ( $teams as $team ):
- $name = get_the_title( $team );
- if ( $name ):
- $team_results = sportspress_array_value( $results, $team, null );
+ $teams = get_post_meta( $event->ID, 'sp_team', false );
+ if ( $teams ):
+ foreach ( $teams as $team ):
+ $name = get_the_title( $team );
+ if ( $name ):
+ $team_results = sportspress_array_value( $results, $team, null );
- if ( $main_result ):
- $team_result = sportspress_array_value( $team_results, $main_result, null );
+ if ( $primary_result ):
+ $team_result = sportspress_array_value( $team_results, $primary_result, null );
+ else:
+ if ( is_array( $team_results ) ):
+ end( $team_results );
+ $team_result = prev( $team_results );
+ else:
+ $team_result = null;
+ endif;
+ endif;
+
+ echo $name;
+
+ if ( $team_result != null ):
+ echo ' (' . $team_result . ')';
+ endif;
+
+ echo ' ';
+ endif;
+ endforeach;
else:
- if ( is_array( $team_results ) ):
- end( $team_results );
- $team_result = prev( $team_results );
- else:
- $team_result = null;
- endif;
+ echo '—';
endif;
- $output .= $name;
+ echo ' | ';
+ endif;
- if ( $team_result != null ):
- $output .= ' (' . $team_result . ')';
- endif;
+ if ( $usecolumns == null || in_array( 'time', $usecolumns ) )
+ echo '' . get_post_time( get_option( 'time_format' ), false, $event ) . ' | ';
- $output .= '
';
+ if ( $usecolumns == null || in_array( 'venue', $usecolumns ) ):
+ echo '';
+ the_terms( $event->ID, 'sp_venue' );
+ echo ' | ';
+ endif;
+
+ if ( $usecolumns == null || in_array( 'article', $usecolumns ) ):
+ echo '
+ ';
+
+ if ( $video ):
+ echo '';
+ elseif ( has_post_thumbnail( $event->ID ) ):
+ echo '';
endif;
- endforeach;
- else:
- $output .= '—';
+ if ( $event->post_content !== null ):
+ if ( $event->post_status == 'publish' ):
+ echo SP()->text->string('Recap', 'event');
+ else:
+ echo SP()->text->string('Preview', 'event');
+ endif;
+ endif;
+
+ echo '
+ | ';
endif;
- $output .= '';
- endif;
+ echo '
';
- if ( $usecolumns == null || in_array( 'time', $usecolumns ) )
- $output .= '' . get_post_time( get_option( 'time_format' ), false, $event ) . ' | ';
-
- if ( $usecolumns == null || in_array( 'article', $usecolumns ) ):
- $output .= '
- ';
-
- if ( $video ):
- $output .= '';
- elseif ( has_post_thumbnail( $event->ID ) ):
- $output .= '';
- endif;
- if ( $event->post_content !== null ):
- if ( $event->post_status == 'publish' ):
- $output .= SP()->text->string('Recap', 'event');
- else:
- $output .= SP()->text->string('Preview', 'event');
- endif;
- endif;
-
- $output .= '
- | ';
- endif;
-
- $output .= '';
-
- $i++;
-endforeach;
-
-$output .= '' . '
';
-
-if ( $id && $show_all_events_link )
- $output .= '' . SP()->text->string('View all events', 'event') . '';
-
-$output .= '';
-
-echo apply_filters( 'sportspress_event_list', $output );
+ $i++;
+ endforeach;
+ ?>
+
+
+ ' . SP()->text->string('View all events', 'event') . '';
+ ?>
+
\ No newline at end of file