From e41950e9072ee8a5c8f507e5bd740a383df02e56 Mon Sep 17 00:00:00 2001 From: Brian Miyaji Date: Sat, 22 Feb 2014 15:42:53 +1100 Subject: [PATCH] Update translations --- admin/hooks/admin-post-thumbnail-html.php | 12 +- admin/hooks/gettext.php | 9 - admin/hooks/media-buttons.php | 64 - admin/hooks/post-updated-messages.php | 2 +- admin/post-types/column.php | 14 +- admin/post-types/event.php | 20 +- admin/post-types/list.php | 26 +- admin/post-types/metric.php | 14 +- admin/post-types/outcome.php | 14 +- admin/post-types/player.php | 28 +- admin/post-types/result.php | 12 +- admin/post-types/staff.php | 16 +- admin/post-types/statistic.php | 14 +- admin/post-types/table.php | 20 +- admin/post-types/team.php | 16 +- admin/settings/events.php | 46 +- admin/settings/players.php | 52 +- admin/settings/tables.php | 33 +- admin/terms/league.php | 20 +- admin/terms/position.php | 20 +- admin/terms/season.php | 20 +- admin/terms/venue.php | 20 +- admin/widgets/league-table.php | 4 +- admin/widgets/player-list.php | 6 +- languages/sportspress-de_DE.mo | Bin 8791 -> 11768 bytes languages/sportspress-de_DE.po | 1949 ++++++++++++++------- languages/sportspress-es_ES.mo | Bin 8300 -> 11571 bytes languages/sportspress-es_ES.po | 1944 +++++++++++++------- languages/sportspress-fr_FR.mo | Bin 8819 -> 11727 bytes languages/sportspress-fr_FR.po | 1942 +++++++++++++------- languages/sportspress-it_IT.mo | Bin 8600 -> 11544 bytes languages/sportspress-it_IT.po | 1942 +++++++++++++------- languages/sportspress-ja.mo | Bin 8960 -> 12173 bytes languages/sportspress-ja.po | 1922 +++++++++++++------- languages/sportspress-template.mo | Bin 817 -> 817 bytes languages/sportspress-template.po | 1290 +++++++------- readme.txt | 42 +- 37 files changed, 7731 insertions(+), 3802 deletions(-) diff --git a/admin/hooks/admin-post-thumbnail-html.php b/admin/hooks/admin-post-thumbnail-html.php index 6f3d6939..0d25f9a3 100644 --- a/admin/hooks/admin-post-thumbnail-html.php +++ b/admin/hooks/admin-post-thumbnail-html.php @@ -2,16 +2,16 @@ function sportspress_admin_post_thumbnail_html( $translated_text, $post_id ) { $texts = array( 'sp_team' => array( - 'Set featured image' => __( 'Select Logo', 'sportspress' ), - 'Remove featured image' => __( 'Remove Logo', 'sportspress' ), + 'Set featured image' => sprintf( __( 'Select %s', 'sportspress' ), __( 'Logo', 'sportspress' ) ), + 'Remove featured image' => sprintf( __( 'Remove %s', 'sportspress' ), __( 'Logo', 'sportspress' ) ), ), 'sp_player' => array( - 'Set featured image' => __( 'Select Photo', 'sportspress' ), - 'Remove featured image' => __( 'Remove Photo', 'sportspress' ), + 'Set featured image' => sprintf( __( 'Select %s', 'sportspress' ), __( 'Photo', 'sportspress' ) ), + 'Remove featured image' => sprintf( __( 'Remove %s', 'sportspress' ), __( 'Photo', 'sportspress' ) ), ), 'sp_staff' => array( - 'Set featured image' => __( 'Select Photo', 'sportspress' ), - 'Remove featured image' => __( 'Remove Photo', 'sportspress' ), + 'Set featured image' => sprintf( __( 'Select %s', 'sportspress' ), __( 'Photo', 'sportspress' ) ), + 'Remove featured image' => sprintf( __( 'Remove %s', 'sportspress' ), __( 'Photo', 'sportspress' ) ), ), ); diff --git a/admin/hooks/gettext.php b/admin/hooks/gettext.php index 99a77de3..84ad2278 100644 --- a/admin/hooks/gettext.php +++ b/admin/hooks/gettext.php @@ -32,15 +32,6 @@ function sportspress_gettext( $translated_text, $untranslated_text, $domain ) { case 'Remove featured image': $translated_text = __( 'Remove Photo', 'sportspress' ); break; - case 'Scheduled for: %1$s': - $translated_text = __( 'Date/Time: %1$s', 'sportspress' ); - break; - case 'Published on: %1$s': - $translated_text = __( 'Date/Time: %1$s', 'sportspress' ); - break; - case 'Publish immediately': - $translated_text = __( 'Date/Time: %1$s', 'sportspress' ); - break; endswitch; endif; else: diff --git a/admin/hooks/media-buttons.php b/admin/hooks/media-buttons.php index f8c0060f..ab9cc668 100644 --- a/admin/hooks/media-buttons.php +++ b/admin/hooks/media-buttons.php @@ -9,67 +9,3 @@ function sportspress_media_buttons() { - - - - - ' . - __( 'View all', 'sportspress' ) . ''; + __( 'View All', 'sportspress' ) . ''; endfor; elseif ( in_array( $typenow, array( 'sp_event', 'sp_team', 'sp_table', 'sp_player', 'sp_list', 'sp_staff' ) ) ): diff --git a/admin/post-types/column.php b/admin/post-types/column.php index 4e611ebd..ae969c67 100644 --- a/admin/post-types/column.php +++ b/admin/post-types/column.php @@ -3,13 +3,13 @@ function sportspress_column_post_init() { $labels = array( 'name' => __( 'Columns', 'sportspress' ), 'singular_name' => __( 'Column', 'sportspress' ), - 'add_new_item' => __( 'Add New Column', 'sportspress' ), - 'edit_item' => __( 'Edit Column', 'sportspress' ), - 'new_item' => __( 'New Column', 'sportspress' ), - 'view_item' => __( 'View Column', 'sportspress' ), - 'search_items' => __( 'Search Columns', 'sportspress' ), - 'not_found' => __( 'No columns found.', 'sportspress' ), - 'not_found_in_trash' => __( 'No columns found in trash.', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'new_item' => __( 'New', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), + 'not_found' => __( 'No results found.', 'sportspress' ), + 'not_found_in_trash' => __( 'No results found.', 'sportspress' ), ); $args = array( 'label' => __( 'Columns', 'sportspress' ), diff --git a/admin/post-types/event.php b/admin/post-types/event.php index d93b7a5e..8c55d64b 100644 --- a/admin/post-types/event.php +++ b/admin/post-types/event.php @@ -4,13 +4,13 @@ function sportspress_event_post_init() { 'name' => __( 'Schedule', 'sportspress' ), 'singular_name' => __( 'Event', 'sportspress' ), 'all_items' => __( 'Events', 'sportspress' ), - 'add_new_item' => __( 'Add New Event', 'sportspress' ), - 'edit_item' => __( 'Edit Event', 'sportspress' ), - 'new_item' => __( 'New Event', 'sportspress' ), - 'view_item' => __( 'View Event', 'sportspress' ), - 'search_items' => __( 'Search Events', 'sportspress' ), - 'not_found' => __( 'No events found.', 'sportspress' ), - 'not_found_in_trash' => __( 'No events found in trash.', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'new_item' => __( 'New', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), + 'not_found' => __( 'No results found.', 'sportspress' ), + 'not_found_in_trash' => __( 'No results found.', 'sportspress' ), ); $args = array( 'label' => __( 'Events', 'sportspress' ), @@ -76,7 +76,7 @@ function sportspress_event_details_meta( $post ) { 'show_option_none' => __( '-- Not set --', 'sportspress' ), ); if ( ! sportspress_dropdown_taxonomies( $args ) ): - sportspress_taxonomy_adder( 'sp_league', 'sp_team', __( 'Add New League', 'sportspress' ) ); + sportspress_taxonomy_adder( 'sp_league', 'sp_team', __( 'Add New', 'sportspress' ) ); endif; ?>

@@ -91,7 +91,7 @@ function sportspress_event_details_meta( $post ) { 'show_option_none' => __( '-- Not set --', 'sportspress' ), ); if ( ! sportspress_dropdown_taxonomies( $args ) ): - sportspress_taxonomy_adder( 'sp_season', 'sp_team', __( 'Add New Season', 'sportspress' ) ); + sportspress_taxonomy_adder( 'sp_season', 'sp_team', __( 'Add New', 'sportspress' ) ); endif; ?>

@@ -106,7 +106,7 @@ function sportspress_event_details_meta( $post ) { 'show_option_none' => __( '-- Not set --', 'sportspress' ), ); if ( ! sportspress_dropdown_taxonomies( $args ) ): - sportspress_taxonomy_adder( 'sp_venue', 'sp_event', __( 'Add New Venue', 'sportspress' ) ); + sportspress_taxonomy_adder( 'sp_venue', 'sp_event', __( 'Add New', 'sportspress' ) ); endif; ?>

diff --git a/admin/post-types/list.php b/admin/post-types/list.php index 8d94d684..ef5992dd 100644 --- a/admin/post-types/list.php +++ b/admin/post-types/list.php @@ -3,13 +3,13 @@ function sportspress_list_post_init() { $labels = array( 'name' => __( 'Player Lists', 'sportspress' ), 'singular_name' => __( 'Player List', 'sportspress' ), - 'add_new_item' => __( 'Add New Player List', 'sportspress' ), - 'edit_item' => __( 'Edit Player List', 'sportspress' ), - 'new_item' => __( 'New Player List', 'sportspress' ), - 'view_item' => __( 'View Player List', 'sportspress' ), - 'search_items' => __( 'Search Player Lists', 'sportspress' ), - 'not_found' => __( 'No player lists found.', 'sportspress' ), - 'not_found_in_trash' => __( 'No player lists found in trash.', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'new_item' => __( 'New', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), + 'not_found' => __( 'No results found.', 'sportspress' ), + 'not_found_in_trash' => __( 'No results found.', 'sportspress' ), ); $args = array( 'label' => __( 'Player Lists', 'sportspress' ), @@ -74,7 +74,7 @@ function sportspress_list_player_meta( $post ) { 'values' => 'term_id', ); if ( ! sportspress_dropdown_taxonomies( $args ) ): - sportspress_taxonomy_adder( 'sp_league', 'sp_team', __( 'Add New League', 'sportspress' ) ); + sportspress_taxonomy_adder( 'sp_league', 'sp_team', __( 'Add New', 'sportspress' ) ); endif; ?>

@@ -88,7 +88,7 @@ function sportspress_list_player_meta( $post ) { 'values' => 'term_id', ); if ( ! sportspress_dropdown_taxonomies( $args ) ): - sportspress_taxonomy_adder( 'sp_season', 'sp_team', __( 'Add New Season', 'sportspress' ) ); + sportspress_taxonomy_adder( 'sp_season', 'sp_team', __( 'Add New', 'sportspress' ) ); endif; ?>

@@ -98,12 +98,12 @@ function sportspress_list_player_meta( $post ) { $args = array( 'post_type' => 'sp_team', 'name' => 'sp_team', - 'show_option_all' => __( 'All Teams', 'sportspress' ), + 'show_option_all' => __( 'All', 'sportspress' ), 'selected' => $team_id, 'values' => 'ID', ); if ( ! sportspress_dropdown_pages( $args ) ): - sportspress_post_adder( 'sp_team', __( 'Add New Team', 'sportspress' ) ); + sportspress_post_adder( 'sp_team', __( 'Add New', 'sportspress' ) ); endif; ?>

@@ -122,7 +122,7 @@ function sportspress_list_player_meta( $post ) { 'values' => 'slug', ); if ( ! sportspress_dropdown_pages( $args ) ): - sportspress_post_adder( 'sp_list', __( 'Add New Player List', 'sportspress' ) ); + sportspress_post_adder( 'sp_list', __( 'Add New', 'sportspress' ) ); endif; ?>

@@ -136,7 +136,7 @@ function sportspress_list_player_meta( $post ) {

ID, 'sp_player', 'block', 'sp_team' ); - sportspress_post_adder( 'sp_player', __( 'Add New Player', 'sportspress' ) ); + sportspress_post_adder( 'sp_player', __( 'Add New', 'sportspress' ) ); ?> __( 'Metrics', 'sportspress' ), 'singular_name' => __( 'Metric', 'sportspress' ), - 'add_new_item' => __( 'Add New Metric', 'sportspress' ), - 'edit_item' => __( 'Edit Metric', 'sportspress' ), - 'new_item' => __( 'New Metric', 'sportspress' ), - 'view_item' => __( 'View Metric', 'sportspress' ), - 'search_items' => __( 'Search Metrics', 'sportspress' ), - 'not_found' => __( 'No metrics found.', 'sportspress' ), - 'not_found_in_trash' => __( 'No metrics found in trash.', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'new_item' => __( 'New', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), + 'not_found' => __( 'No results found.', 'sportspress' ), + 'not_found_in_trash' => __( 'No results found.', 'sportspress' ), ); $args = array( 'label' => __( 'Metrics', 'sportspress' ), diff --git a/admin/post-types/outcome.php b/admin/post-types/outcome.php index acd99040..2601a213 100644 --- a/admin/post-types/outcome.php +++ b/admin/post-types/outcome.php @@ -3,13 +3,13 @@ function sportspress_outcome_post_init() { $labels = array( 'name' => __( 'Outcomes', 'sportspress' ), 'singular_name' => __( 'Outcome', 'sportspress' ), - 'add_new_item' => __( 'Add New Outcome', 'sportspress' ), - 'edit_item' => __( 'Edit Outcome', 'sportspress' ), - 'new_item' => __( 'New Outcome', 'sportspress' ), - 'view_item' => __( 'View Outcome', 'sportspress' ), - 'search_items' => __( 'Search Outcomes', 'sportspress' ), - 'not_found' => __( 'No outcomes found.', 'sportspress' ), - 'not_found_in_trash' => __( 'No outcomes found in trash.', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'new_item' => __( 'New', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), + 'not_found' => __( 'No results found.', 'sportspress' ), + 'not_found_in_trash' => __( 'No results found.', 'sportspress' ), ); $args = array( 'label' => __( 'Outcomes', 'sportspress' ), diff --git a/admin/post-types/player.php b/admin/post-types/player.php index 3d42d77e..cf155a6b 100644 --- a/admin/post-types/player.php +++ b/admin/post-types/player.php @@ -3,13 +3,13 @@ function sportspress_player_post_init() { $labels = array( 'name' => __( 'Players', 'sportspress' ), 'singular_name' => __( 'Player', 'sportspress' ), - 'add_new_item' => __( 'Add New Player', 'sportspress' ), - 'edit_item' => __( 'Edit Player', 'sportspress' ), - 'new_item' => __( 'New Player', 'sportspress' ), - 'view_item' => __( 'View Player', 'sportspress' ), - 'search_items' => __( 'Search Players', 'sportspress' ), - 'not_found' => __( 'No players found.', 'sportspress' ), - 'not_found_in_trash' => __( 'No players found in trash.', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'new_item' => __( 'New', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), + 'not_found' => __( 'No results found.', 'sportspress' ), + 'not_found_in_trash' => __( 'No results found.', 'sportspress' ), ); $args = array( 'label' => __( 'Players', 'sportspress' ), @@ -110,7 +110,7 @@ function sportspress_player_details_meta( $post ) {

-

$countries ): ?> @@ -128,7 +128,7 @@ function sportspress_player_details_meta( $post ) { 'name' => 'tax_input[sp_position][]', 'selected' => $position_ids, 'values' => 'term_id', - 'placeholder' => __( 'Select Positions', 'sportspress' ), + 'placeholder' => sprintf( __( 'Select %s', 'sportspress' ), __( 'Positions', 'sportspress' ) ), 'class' => 'widefat', 'property' => 'multiple', 'chosen' => true, @@ -144,7 +144,7 @@ function sportspress_player_details_meta( $post ) { 'show_option_blank' => true, 'selected' => $current_team, 'values' => 'ID', - 'placeholder' => __( 'Select Team', 'sportspress' ), + 'placeholder' => sprintf( __( 'Select %s', 'sportspress' ), __( 'Team', 'sportspress' ) ), 'class' => 'sp-current-team widefat', 'chosen' => true, ); @@ -158,7 +158,7 @@ function sportspress_player_details_meta( $post ) { 'name' => 'sp_past_team[]', 'selected' => $past_teams, 'values' => 'ID', - 'placeholder' => __( 'Select Teams', 'sportspress' ), + 'placeholder' => sprintf( __( 'Select %s', 'sportspress' ), __( 'Teams', 'sportspress' ) ), 'class' => 'sp-past-teams widefat', 'property' => 'multiple', 'chosen' => true, @@ -173,7 +173,7 @@ function sportspress_player_details_meta( $post ) { 'name' => 'tax_input[sp_league][]', 'selected' => $league_ids, 'values' => 'term_id', - 'placeholder' => __( 'Select Leagues', 'sportspress' ), + 'placeholder' => sprintf( __( 'Select %s', 'sportspress' ), __( 'Leagues', 'sportspress' ) ), 'class' => 'widefat', 'property' => 'multiple', 'chosen' => true, @@ -188,7 +188,7 @@ function sportspress_player_details_meta( $post ) { 'name' => 'tax_input[sp_season][]', 'selected' => $season_ids, 'values' => 'term_id', - 'placeholder' => __( 'Select Seasons', 'sportspress' ), + 'placeholder' => sprintf( __( 'Select %s', 'sportspress' ), __( 'Seasons', 'sportspress' ) ), 'class' => 'widefat', 'property' => 'multiple', 'chosen' => true, @@ -234,7 +234,7 @@ function sportspress_player_metrics_meta( $post ) { __( 'Results', 'sportspress' ), 'singular_name' => __( 'Result', 'sportspress' ), - 'add_new_item' => __( 'Add New Result', 'sportspress' ), - 'edit_item' => __( 'Edit Result', 'sportspress' ), - 'new_item' => __( 'New Result', 'sportspress' ), - 'view_item' => __( 'View Result', 'sportspress' ), - 'search_items' => __( 'Search Results', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'new_item' => __( 'New', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), 'not_found' => __( 'No results found.', 'sportspress' ), - 'not_found_in_trash' => __( 'No results found in trash.', 'sportspress' ), + 'not_found_in_trash' => __( 'No results found.', 'sportspress' ), ); $args = array( 'label' => __( 'Results', 'sportspress' ), diff --git a/admin/post-types/staff.php b/admin/post-types/staff.php index 7f8cedd5..95fbc527 100644 --- a/admin/post-types/staff.php +++ b/admin/post-types/staff.php @@ -3,13 +3,13 @@ function sportspress_staff_post_init() { $labels = array( 'name' => __( 'Staff', 'sportspress' ), 'singular_name' => __( 'Staff', 'sportspress' ), - 'add_new_item' => __( 'Add New Staff', 'sportspress' ), - 'edit_item' => __( 'Edit Staff', 'sportspress' ), - 'new_item' => __( 'New Staff', 'sportspress' ), - 'view_item' => __( 'View Staff', 'sportspress' ), - 'search_items' => __( 'Search Staff', 'sportspress' ), - 'not_found' => __( 'No staff found.', 'sportspress' ), - 'not_found_in_trash' => __( 'No staff found in trash.', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'new_item' => __( 'New', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), + 'not_found' => __( 'No results found.', 'sportspress' ), + 'not_found_in_trash' => __( 'No results found.', 'sportspress' ), ); $args = array( 'label' => __( 'Staff', 'sportspress' ), @@ -37,7 +37,7 @@ function sportspress_staff_meta_init() { } function sportspress_staff_team_meta( $post ) { sportspress_post_checklist( $post->ID, 'sp_team' ); - sportspress_post_adder( 'sp_team', __( 'Add New Team', 'sportspress' ) ); + sportspress_post_adder( 'sp_team', __( 'Add New', 'sportspress' ) ); sportspress_nonce(); } diff --git a/admin/post-types/statistic.php b/admin/post-types/statistic.php index 37caff21..8d8a0a8a 100644 --- a/admin/post-types/statistic.php +++ b/admin/post-types/statistic.php @@ -3,13 +3,13 @@ function sportspress_statistic_post_init() { $labels = array( 'name' => __( 'Statistics', 'sportspress' ), 'singular_name' => __( 'Statistic', 'sportspress' ), - 'add_new_item' => __( 'Add New Statistic', 'sportspress' ), - 'edit_item' => __( 'Edit Statistic', 'sportspress' ), - 'new_item' => __( 'New Statistic', 'sportspress' ), - 'view_item' => __( 'View Statistic', 'sportspress' ), - 'search_items' => __( 'Search Statistics', 'sportspress' ), - 'not_found' => __( 'No statistics found.', 'sportspress' ), - 'not_found_in_trash' => __( 'No statistics found in trash.', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'new_item' => __( 'New', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), + 'not_found' => __( 'No results found.', 'sportspress' ), + 'not_found_in_trash' => __( 'No results found.', 'sportspress' ), ); $args = array( 'label' => __( 'Statistics', 'sportspress' ), diff --git a/admin/post-types/table.php b/admin/post-types/table.php index c80a47ad..8e3b0308 100644 --- a/admin/post-types/table.php +++ b/admin/post-types/table.php @@ -3,13 +3,13 @@ function sportspress_table_post_init() { $labels = array( 'name' => __( 'League Tables', 'sportspress' ), 'singular_name' => __( 'League Table', 'sportspress' ), - 'add_new_item' => __( 'Add New League Table', 'sportspress' ), - 'edit_item' => __( 'Edit League Table', 'sportspress' ), - 'new_item' => __( 'New League Table', 'sportspress' ), - 'view_item' => __( 'View League Table', 'sportspress' ), - 'search_items' => __( 'Search League Tables', 'sportspress' ), - 'not_found' => __( 'No league tables found.', 'sportspress' ), - 'not_found_in_trash' => __( 'No league tables found in trash.', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'new_item' => __( 'New', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), + 'not_found' => __( 'No results found.', 'sportspress' ), + 'not_found_in_trash' => __( 'No results found.', 'sportspress' ), ); $args = array( 'label' => __( 'League Tables', 'sportspress' ), @@ -70,7 +70,7 @@ function sportspress_table_team_meta( $post, $test ) { 'values' => 'term_id' ); if ( ! sportspress_dropdown_taxonomies( $args ) ): - sportspress_taxonomy_adder( 'sp_league', 'sp_team', __( 'Add New League', 'sportspress' ) ); + sportspress_taxonomy_adder( 'sp_league', 'sp_team', __( 'Add New', 'sportspress' ) ); endif; ?>

@@ -84,14 +84,14 @@ function sportspress_table_team_meta( $post, $test ) { 'values' => 'term_id' ); if ( ! sportspress_dropdown_taxonomies( $args ) ): - sportspress_taxonomy_adder( 'sp_season', 'sp_team', __( 'Add New Season', 'sportspress' ) ); + sportspress_taxonomy_adder( 'sp_season', 'sp_team', __( 'Add New', 'sportspress' ) ); endif; ?>

ID, 'sp_team', 'block', 'sp_season' ); - sportspress_post_adder( 'sp_team', __( 'Add New Team', 'sportspress' ) ); + sportspress_post_adder( 'sp_team', __( 'Add New', 'sportspress' ) ); ?> __( 'Teams', 'sportspress' ), 'singular_name' => __( 'Team', 'sportspress' ), - 'add_new_item' => __( 'Add New Team', 'sportspress' ), - 'edit_item' => __( 'Edit Team', 'sportspress' ), - 'new_item' => __( 'New Team', 'sportspress' ), - 'view_item' => __( 'View Team', 'sportspress' ), - 'search_items' => __( 'Search Teams', 'sportspress' ), - 'not_found' => __( 'No teams found.', 'sportspress' ), - 'not_found_in_trash' => __( 'No teams found in trash.', 'sportspress' ), - 'parent_item_colon' => __( 'Parent Team:', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'new_item' => __( 'New', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), + 'not_found' => __( 'No results found.', 'sportspress' ), + 'not_found_in_trash' => __( 'No results found.', 'sportspress' ), + 'parent_item_colon' => __( 'Parent:', 'sportspress' ), ); $args = array( 'label' => __( 'Teams', 'sportspress' ), diff --git a/admin/settings/events.php b/admin/settings/events.php index cd9dbcad..b09e7744 100644 --- a/admin/settings/events.php +++ b/admin/settings/events.php @@ -17,22 +17,30 @@ $data = get_posts( $args ); - - + + + + + + + + > - - - - -
post_title; ?> post_name; ?>for / post_name; ?>against
+
+
+ + +
+
+
- - + + + + + + + + > post_title; ?> post_name; ?> - - - - - - \ No newline at end of file + +
+
+ + +
+
+
\ No newline at end of file diff --git a/admin/settings/players.php b/admin/settings/players.php index 4c7158ca..a269cf3a 100644 --- a/admin/settings/players.php +++ b/admin/settings/players.php @@ -12,11 +12,18 @@ $data = get_posts( $args ); - - - + + + + + + + + + + > @@ -24,12 +31,14 @@ $data = get_posts( $args ); - - - - -
  
 
post_title; ?> 
+
+
+ + +
+
+
'sp_statistic', @@ -44,11 +53,18 @@ $data = get_posts( $args ); - - - + + + + + + + + + + > @@ -56,9 +72,11 @@ $data = get_posts( $args ); - - - - - -
post_title; ?>ID ); ?>
\ No newline at end of file + +
+
+ + +
+
+
\ No newline at end of file diff --git a/admin/settings/tables.php b/admin/settings/tables.php index f7c7ed27..114a7d53 100644 --- a/admin/settings/tables.php +++ b/admin/settings/tables.php @@ -12,13 +12,22 @@ $data = get_posts( $args ); - - - - - + + + + + + + + + + + + + + > @@ -28,9 +37,11 @@ $data = get_posts( $args ); - - - - - -
post_title; ?>ID ); ?>
\ No newline at end of file + +
+
+ + +
+
+
\ No newline at end of file diff --git a/admin/terms/league.php b/admin/terms/league.php index 8a9b9ed4..ed1aa98d 100644 --- a/admin/terms/league.php +++ b/admin/terms/league.php @@ -3,16 +3,16 @@ function sportspress_league_term_init() { $labels = array( 'name' => __( 'Leagues', 'sportspress' ), 'singular_name' => __( 'League', 'sportspress' ), - 'all_items' => __( 'All Leagues', 'sportspress' ), - 'edit_item' => __( 'Edit League', 'sportspress' ), - 'view_item' => __( 'View League', 'sportspress' ), - 'update_item' => __( 'Update League', 'sportspress' ), - 'add_new_item' => __( 'Add New League', 'sportspress' ), - 'new_item_name' => __( 'New League Name', 'sportspress' ), - 'parent_item' => __( 'Parent League', 'sportspress' ), - 'parent_item_colon' => __( 'Parent League:', 'sportspress' ), - 'search_items' => __( 'Search Leagues', 'sportspress' ), - 'not_found' => __( 'No leagues found.', 'sportspress' ), + 'all_items' => __( 'All', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'update_item' => __( 'Update', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'new_item_name' => __( 'Name', 'sportspress' ), + 'parent_item' => __( 'Parent', 'sportspress' ), + 'parent_item_colon' => __( 'Parent:', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), + 'not_found' => __( 'No results found.', 'sportspress' ), ); $args = array( 'label' => __( 'Leagues', 'sportspress' ), diff --git a/admin/terms/position.php b/admin/terms/position.php index 4fa67007..2d6abfd4 100644 --- a/admin/terms/position.php +++ b/admin/terms/position.php @@ -3,16 +3,16 @@ function sportspress_position_term_init() { $labels = array( 'name' => __( 'Positions', 'sportspress' ), 'singular_name' => __( 'Position', 'sportspress' ), - 'all_items' => __( 'All Positions', 'sportspress' ), - 'edit_item' => __( 'Edit Position', 'sportspress' ), - 'view_item' => __( 'View Position', 'sportspress' ), - 'update_item' => __( 'Update Position', 'sportspress' ), - 'add_new_item' => __( 'Add New Position', 'sportspress' ), - 'new_item_name' => __( 'New Position Name', 'sportspress' ), - 'parent_item' => __( 'Parent Position', 'sportspress' ), - 'parent_item_colon' => __( 'Parent Position:', 'sportspress' ), - 'search_items' => __( 'Search Positions', 'sportspress' ), - 'not_found' => __( 'No positions found.', 'sportspress' ), + 'all_items' => __( 'All', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'update_item' => __( 'Update', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'new_item_name' => __( 'Name', 'sportspress' ), + 'parent_item' => __( 'Parent', 'sportspress' ), + 'parent_item_colon' => __( 'Parent:', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), + 'not_found' => __( 'No results found.', 'sportspress' ), ); $args = array( 'label' => __( 'Positions', 'sportspress' ), diff --git a/admin/terms/season.php b/admin/terms/season.php index 677e2404..85cb3a76 100644 --- a/admin/terms/season.php +++ b/admin/terms/season.php @@ -3,16 +3,16 @@ function sportspress_season_term_init() { $labels = array( 'name' => __( 'Seasons', 'sportspress' ), 'singular_name' => __( 'Season', 'sportspress' ), - 'all_items' => __( 'All Seasons', 'sportspress' ), - 'edit_item' => __( 'Edit Season', 'sportspress' ), - 'view_item' => __( 'View Season', 'sportspress' ), - 'update_item' => __( 'Update Season', 'sportspress' ), - 'add_new_item' => __( 'Add New Season', 'sportspress' ), - 'new_item_name' => __( 'New Season Name', 'sportspress' ), - 'parent_item' => __( 'Parent Season', 'sportspress' ), - 'parent_item_colon' => __( 'Parent Season:', 'sportspress' ), - 'search_items' => __( 'Search Seasons', 'sportspress' ), - 'not_found' => __( 'No seasons found.', 'sportspress' ), + 'all_items' => __( 'All', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'update_item' => __( 'Update', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'new_item_name' => __( 'Name', 'sportspress' ), + 'parent_item' => __( 'Parent', 'sportspress' ), + 'parent_item_colon' => __( 'Parent:', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), + 'not_found' => __( 'No results found.', 'sportspress' ), ); $args = array( 'label' => __( 'Seasons', 'sportspress' ), diff --git a/admin/terms/venue.php b/admin/terms/venue.php index 5f0e0d2a..68128eed 100644 --- a/admin/terms/venue.php +++ b/admin/terms/venue.php @@ -3,16 +3,16 @@ function sportspress_venue_term_init() { $labels = array( 'name' => __( 'Venues', 'sportspress' ), 'singular_name' => __( 'Venue', 'sportspress' ), - 'all_items' => __( 'All Venues', 'sportspress' ), - 'edit_item' => __( 'Edit Venue', 'sportspress' ), - 'view_item' => __( 'View Venue', 'sportspress' ), - 'update_item' => __( 'Update Venue', 'sportspress' ), - 'add_new_item' => __( 'Add New Venue', 'sportspress' ), - 'new_item_name' => __( 'New Venue Name', 'sportspress' ), - 'parent_item' => __( 'Parent Venue', 'sportspress' ), - 'parent_item_colon' => __( 'Parent Venue:', 'sportspress' ), - 'search_items' => __( 'Search Venues', 'sportspress' ), - 'not_found' => __( 'No venues found.', 'sportspress' ), + 'all_items' => __( 'All', 'sportspress' ), + 'edit_item' => __( 'Edit', 'sportspress' ), + 'view_item' => __( 'View', 'sportspress' ), + 'update_item' => __( 'Update', 'sportspress' ), + 'add_new_item' => __( 'Add New', 'sportspress' ), + 'new_item_name' => __( 'Name', 'sportspress' ), + 'parent_item' => __( 'Parent', 'sportspress' ), + 'parent_item_colon' => __( 'Parent:', 'sportspress' ), + 'search_items' => __( 'Search', 'sportspress' ), + 'not_found' => __( 'No results found.', 'sportspress' ), ); $args = array( 'label' => __( 'Venues', 'sportspress' ), diff --git a/admin/widgets/league-table.php b/admin/widgets/league-table.php index 47099e8e..e8974c8b 100644 --- a/admin/widgets/league-table.php +++ b/admin/widgets/league-table.php @@ -38,7 +38,7 @@ class SportsPress_Widget_League_Table extends WP_Widget {

-

+

'sp_table', @@ -49,7 +49,7 @@ class SportsPress_Widget_League_Table extends WP_Widget { 'class' => 'widefat', ); if ( ! sportspress_dropdown_pages( $args ) ): - sportspress_post_adder( 'sp_table', __( 'Add New League Table', 'sportspress' ) ); + sportspress_post_adder( 'sp_table', __( 'Add New', 'sportspress' ) ); endif; ?>

diff --git a/admin/widgets/player-list.php b/admin/widgets/player-list.php index 4b159805..e5aa19dd 100644 --- a/admin/widgets/player-list.php +++ b/admin/widgets/player-list.php @@ -44,7 +44,7 @@ class SportsPress_Widget_Player_list extends WP_Widget {

-

+

'sp_list', @@ -55,7 +55,7 @@ class SportsPress_Widget_Player_list extends WP_Widget { 'class' => 'widefat', ); if ( ! sportspress_dropdown_pages( $args ) ): - sportspress_post_adder( 'sp_list', __( 'Add New Player List', 'sportspress' ) ); + sportspress_post_adder( 'sp_list', __( 'Add New', 'sportspress' ) ); endif; ?>

@@ -98,7 +98,7 @@ class SportsPress_Widget_Player_list extends WP_Widget { 'class' => 'sp-select-orderby widefat', ); if ( ! sportspress_dropdown_pages( $args ) ): - sportspress_post_adder( 'sp_list', __( 'Add New Player List', 'sportspress' ) ); + sportspress_post_adder( 'sp_list', __( 'Add New', 'sportspress' ) ); endif; ?>

diff --git a/languages/sportspress-de_DE.mo b/languages/sportspress-de_DE.mo index a2e714471f3a0a21aefbdabba8f87badbd3b0f8d..50587806c99088799f93b80ea12f1d83c138b7bc 100644 GIT binary patch literal 11768 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\n" "Language-Team: ThemeBoy \n" "Language: de_DE\n" @@ -20,332 +20,320 @@ msgstr "" "X-Poedit-Bookmarks: -1,75,-1,-1,-1,-1,-1,-1,-1,-1\n" "X-Poedit-SearchPath-0: ..\n" -#: ../functions.php:56 -msgid "Add New" -msgstr "Neu hinzufügen" - -#: ../functions.php:57 ../functions.php:80 ../functions.php:1071 -#: ../functions.php:1072 -#, php-format -msgid "Add New %s" -msgstr "Neu hinzufügen %s" - -#: ../functions.php:58 ../functions.php:77 -#: ../admin/hooks/post-updated-messages.php:10 ../admin/settings/events.php:32 -#: ../admin/settings/events.php:63 ../admin/settings/players.php:29 -#: ../admin/settings/players.php:61 ../admin/settings/tables.php:33 -#, php-format -msgid "Edit %s" -msgstr "Bearbeiten %s" - -#: ../functions.php:59 -#, php-format -msgid "New %s" -msgstr "Neuer %s" - -#: ../functions.php:60 ../functions.php:78 -#, php-format -msgid "View %s" -msgstr "Ansehen %s" - -#: ../functions.php:61 ../functions.php:84 -#, php-format -msgid "Search %s" -msgstr "Suchen %s" - -#: ../functions.php:62 ../functions.php:85 ../functions.php:626 -#, php-format -msgid "No %s found." -msgstr "Keine %s gefunden." - -#: ../functions.php:63 -#, php-format -msgid "No %s found in trash." -msgstr "Keine %s im Papierkorb gefunden." - -#: ../functions.php:64 ../functions.php:82 ../functions.php:83 -#, php-format -msgid "Parent %s" -msgstr "Übergeordnete %s" - -#: ../functions.php:76 ../admin/hooks/restrict-manage-posts.php:8 -#: ../admin/hooks/restrict-manage-posts.php:18 -#: ../admin/hooks/restrict-manage-posts.php:28 -#: ../admin/hooks/restrict-manage-posts.php:40 -#: ../admin/widgets/future-events.php:65 ../admin/widgets/future-events.php:81 -#: ../admin/widgets/future-events.php:97 -#: ../admin/widgets/future-events.php:113 -#: ../admin/widgets/recent-events.php:65 ../admin/widgets/recent-events.php:81 -#: ../admin/widgets/recent-events.php:97 -#: ../admin/widgets/recent-events.php:113 -#, php-format -msgid "All %s" -msgstr "Alle %s" - -#: ../functions.php:79 -#, php-format -msgid "Update %s" -msgstr "Aktualisieren %s" - -#: ../functions.php:81 -#, php-format -msgid "New %s Name" -msgstr "Neuer %s Name" - -#: ../functions.php:116 +#: ../functions.php:74 msgid "1 view" msgstr "1 Anzeigen" -#: ../functions.php:118 +#: ../functions.php:76 #, php-format msgid "%s views" msgstr "%s Ansichten" -#: ../functions.php:143 +#: ../functions.php:101 msgid "Scheduled" msgstr "Geplant" -#: ../functions.php:145 ../functions.php:482 ../functions.php:485 -#: ../functions.php:1899 ../functions.php:2050 ../functions.php:2187 +#: ../functions.php:103 ../functions.php:533 ../functions.php:536 +#: ../functions.php:1996 ../functions.php:2198 ../functions.php:2333 +#: ../admin/post-types/list.php:117 ../admin/widgets/player-list.php:78 +#: ../admin/widgets/player-list.php:91 msgid "Played" msgstr "Gespielt" -#: ../functions.php:147 +#: ../functions.php:105 msgid "Draft" msgstr "Entwurf" -#: ../functions.php:149 +#: ../functions.php:107 msgid "Pending Review" msgstr "Ausstehender Review" -#: ../functions.php:151 ../admin/hooks/post-updated-messages.php:31 +#: ../functions.php:109 ../admin/hooks/post-updated-messages.php:34 msgid "M j, Y @ G:i" msgstr "d. F Y H:i" -#: ../functions.php:172 ../functions.php:176 ../functions.php:416 -msgid "Sum" -msgstr "Summe" - -#: ../functions.php:172 ../functions.php:417 -msgid "Average" -msgstr "Durchschnitt" - -#: ../functions.php:214 -msgid "Integer" -msgstr "Ganzezahl" - -#: ../functions.php:215 -msgid "Decimal" -msgstr "Dezimal" - -#: ../functions.php:216 ../functions.php:636 -#: ../admin/templates/event-details.php:13 -msgid "Time" -msgstr "Zeit" - -#: ../functions.php:217 -msgid "Custom Field" -msgstr "Benutzerdefiniertefeld" - -#: ../functions.php:344 ../functions.php:398 -msgid "(no title)" -msgstr "(kein Titel)" - -#: ../functions.php:482 ../functions.php:485 ../admin/post-types/event.php:3 -#: ../admin/settings/settings.php:11 -msgid "Events" -msgstr "Ereignisse" - -#: ../functions.php:482 -msgid "Attended" -msgstr "Teilnehmen" - -#: ../functions.php:488 ../admin/post-types/event.php:44 -#: ../admin/post-types/result.php:3 ../admin/settings/events.php:16 -#: ../admin/settings/events.php:32 ../admin/templates/event-results.php:48 -msgid "Results" -msgstr "Resultat" - -#: ../functions.php:491 ../functions.php:492 ../functions.php:493 -#: ../functions.php:494 ../admin/post-types/outcome.php:3 -#: ../admin/settings/events.php:47 ../admin/settings/events.php:63 -msgid "Outcomes" -msgstr "Ergebnisse" - -#: ../functions.php:492 -msgid "Streak" -msgstr "Streifen" - -#: ../functions.php:493 -msgid "Last 5" -msgstr "Letzte 5" - -#: ../functions.php:494 -msgid "Last 10" -msgstr "Letzte 10" - -#: ../functions.php:497 ../admin/post-types/column.php:3 -#: ../admin/post-types/team.php:33 ../admin/settings/tables.php:11 -#: ../admin/settings/tables.php:33 -msgid "Columns" -msgstr "Spalten" - -#: ../functions.php:500 -msgid "Player Statistics" -msgstr "Spieler Statistiken" - -#: ../functions.php:509 -msgid "Operators" -msgstr "Operator" - -#: ../functions.php:519 -msgid "Constants" -msgstr "Konstanten" - -#: ../functions.php:523 ../admin/post-types/event.php:134 -msgid "— Select —" -msgstr "— Auswählen —" - -#: ../functions.php:626 ../admin/post-types/event.php:5 -#: ../admin/widgets/future-events.php:123 -#: ../admin/widgets/recent-events.php:123 -msgid "events" -msgstr "Ereignisse" - -#: ../functions.php:634 ../admin/post-types/event.php:4 -#: ../admin/post-types/event.php:40 ../admin/post-types/event.php:196 -msgid "Event" -msgstr "Veranstaltung" - -#: ../functions.php:635 ../admin/templates/event-details.php:13 -msgid "Date" -msgstr "Datum" - -#: ../functions.php:673 ../functions.php:814 ../functions.php:887 -#: ../functions.php:1071 ../functions.php:1752 ../functions.php:2187 -#: ../admin/hooks/gettext.php:9 ../admin/post-types/list.php:31 -#: ../admin/post-types/list.php:82 ../admin/post-types/team.php:4 -#: ../admin/post-types/team.php:41 ../admin/templates/event-results.php:52 -msgid "Team" -msgstr "Mannschaft" - -#: ../functions.php:716 ../functions.php:992 ../functions.php:1984 -#: ../admin/hooks/register-activation-hook.php:147 -#: ../admin/post-types/player.php:4 ../admin/templates/event-players.php:28 -msgid "Player" -msgstr "Spieler" - -#: ../functions.php:761 ../functions.php:813 ../functions.php:1484 -#: ../functions.php:2187 ../admin/post-types/event.php:69 -#: ../admin/post-types/event.php:199 ../admin/post-types/list.php:30 -#: ../admin/post-types/list.php:70 ../admin/post-types/table.php:29 -#: ../admin/post-types/table.php:68 ../admin/templates/event-details.php:22 -#: ../admin/terms/season.php:4 -msgid "Season" -msgstr "Saison" - -#: ../functions.php:837 ../functions.php:915 ../admin/post-types/event.php:64 -#: ../admin/post-types/event.php:77 ../admin/post-types/event.php:90 -#: ../admin/post-types/player.php:85 -msgid "-- Not set --" -msgstr "-- Leer --" - -#: ../functions.php:891 ../admin/post-types/outcome.php:4 -msgid "Outcome" -msgstr "Ergebnis" - -#: ../functions.php:943 ../functions.php:1048 -msgid "Starting Lineup" -msgstr "Startaufstellung" - -#: ../functions.php:944 ../functions.php:1049 -msgid "Substitute" -msgstr "Ersatz" - -#: ../functions.php:968 -msgid "None" -msgstr "Keine" - -#: ../functions.php:996 -msgid "Status" -msgstr "Status:" - -#: ../functions.php:1027 ../admin/templates/event-players.php:82 +#: ../functions.php:130 ../functions.php:134 ../functions.php:467 +#: ../functions.php:1059 ../admin/templates/event-players.php:82 msgid "Total" msgstr "Summe" -#: ../admin/hooks/admin-enqueue-scripts.php:20 -#: ../admin/post-types/event.php:110 -msgid "Remove" -msgstr "Entfernen" +#: ../functions.php:130 ../functions.php:468 +msgid "Average" +msgstr "Durchschnitt" -#: ../admin/hooks/admin-menu.php:46 ../admin/post-types/player.php:30 -#: ../admin/post-types/staff.php:48 ../admin/post-types/team.php:42 -#: ../admin/terms/league.php:3 ../admin/widgets/future-events.php:65 -#: ../admin/widgets/recent-events.php:65 +#: ../functions.php:172 +msgid "Integer" +msgstr "Ganzezahl" + +#: ../functions.php:173 +msgid "Decimal" +msgstr "Dezimal" + +#: ../functions.php:174 ../admin/templates/event-details.php:13 +msgid "Time" +msgstr "Zeit" + +#: ../functions.php:175 +msgid "Custom Field" +msgstr "Benutzerdefiniertefeld" + +#: ../functions.php:396 ../functions.php:449 +msgid "(no title)" +msgstr "(kein Titel)" + +#: ../functions.php:533 ../functions.php:536 ../admin/post-types/event.php:6 +#: ../admin/post-types/event.php:16 ../admin/settings/settings.php:11 +msgid "Events" +msgstr "Ereignisse" + +#: ../functions.php:533 +msgid "Attended" +msgstr "Teilnehmen" + +#: ../functions.php:539 ../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 "Resultat" + +#: ../functions.php:542 ../functions.php:543 ../functions.php:544 +#: ../functions.php:545 ../admin/post-types/outcome.php:4 +#: ../admin/post-types/outcome.php:15 ../admin/settings/events.php:55 +msgid "Outcomes" +msgstr "Ergebnisse" + +#: ../functions.php:543 +msgid "Streak" +msgstr "Streifen" + +#: ../functions.php:544 +msgid "Last 5" +msgstr "Letzte 5" + +#: ../functions.php:545 +msgid "Last 10" +msgstr "Letzte 10" + +#: ../functions.php:548 ../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 "Spalten" + +#: ../functions.php:551 +msgid "Player Statistics" +msgstr "Spieler Statistiken" + +#: ../functions.php:560 +msgid "Operators" +msgstr "Operator" + +#: ../functions.php:573 +msgid "Constants" +msgstr "Konstanten" + +#: ../functions.php:577 ../admin/settings/settings.php:46 +msgid "— Select —" +msgstr "— Auswählen —" + +#: ../functions.php:690 ../functions.php:844 ../functions.php:919 +#: ../functions.php:1804 ../functions.php:2333 ../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 "Mannschaft" + +#: ../functions.php:712 ../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 "Bearbeiten" + +#: ../functions.php:716 +msgid "Cancel" +msgstr "Abbrechen" + +#: ../functions.php:717 +msgid "Save" +msgstr "Speichern" + +#: ../functions.php:746 ../functions.php:1024 ../functions.php:2092 +#: ../admin/hooks/register-activation-hook.php:147 +#: ../admin/post-types/player.php:5 ../admin/templates/event-players.php:28 +msgid "Player" +msgstr "Spieler" + +#: ../functions.php:791 ../functions.php:843 ../functions.php:1535 +#: ../functions.php:2333 ../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 "Saison" + +#: ../functions.php:867 +msgid "— None —" +msgstr "— Keine —" + +#: ../functions.php:888 ../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 "Es wurden keine Ergebnisse gefunden." + +#: ../functions.php:923 ../admin/post-types/outcome.php:5 +msgid "Outcome" +msgstr "Ergebnis" + +#: ../functions.php:947 ../admin/post-types/event.php:76 +#: ../admin/post-types/event.php:91 ../admin/post-types/event.php:106 +msgid "-- Not set --" +msgstr "-- Leer --" + +#: ../functions.php:975 ../functions.php:1080 +msgid "Starting Lineup" +msgstr "Startaufstellung" + +#: ../functions.php:976 ../functions.php:1081 +msgid "Substitute" +msgstr "Ersatz" + +#: ../functions.php:1000 +msgid "None" +msgstr "Keine" + +#: ../functions.php:1028 +msgid "Status" +msgstr "Status:" + +#: ../functions.php:1101 ../functions.php:1118 +#: ../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 "Neu hinzufügen" + +#: ../admin/hooks/admin-enqueue-scripts.php:24 +msgid "— Remove —" +msgstr "— Entfernen —" + +#: ../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 "Ligen" -#: ../admin/hooks/admin-menu.php:52 -#: ../admin/hooks/restrict-manage-posts.php:18 -#: ../admin/post-types/metric.php:26 ../admin/post-types/player.php:28 -#: ../admin/post-types/staff.php:46 ../admin/post-types/statistic.php:27 -#: ../admin/settings/players.php:16 ../admin/settings/players.php:48 -#: ../admin/terms/position.php:3 +#: ../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 "Positionen" -#: ../admin/hooks/admin-menu.php:58 -#: ../admin/hooks/restrict-manage-posts.php:28 -#: ../admin/post-types/player.php:31 ../admin/post-types/staff.php:49 -#: ../admin/post-types/team.php:43 ../admin/terms/season.php:3 -#: ../admin/widgets/future-events.php:81 ../admin/widgets/recent-events.php:81 +#: ../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 "Jahreszeiten" -#: ../admin/hooks/admin-menu.php:64 ../admin/terms/venue.php:3 -#: ../admin/widgets/future-events.php:97 ../admin/widgets/recent-events.php:97 +#: ../admin/hooks/admin-menu.php:70 ../admin/terms/venue.php:4 +#: ../admin/terms/venue.php:18 msgid "Venues" msgstr "Veranstaltungsorte" #: ../admin/hooks/admin-post-thumbnail-html.php:5 -#: ../admin/hooks/admin-post-thumbnail-html.php:6 #: ../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:12 ../admin/hooks/gettext.php:15 -#: ../admin/hooks/gettext.php:27 ../admin/hooks/gettext.php:30 +#: ../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 "Auswählen %s" #: ../admin/hooks/admin-post-thumbnail-html.php:5 #: ../admin/hooks/admin-post-thumbnail-html.php:6 -#: ../admin/hooks/gettext.php:12 ../admin/hooks/gettext.php:15 -#: ../admin/hooks/gettext.php:18 ../admin/post-types/team.php:30 +#: ../admin/post-types/team.php:38 msgid "Logo" msgstr "Logo" +#: ../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 "%s entfernen" + #: ../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:27 ../admin/hooks/gettext.php:30 -#: ../admin/hooks/gettext.php:33 ../admin/post-types/player.php:45 -#: ../admin/post-types/staff.php:27 +#: ../admin/post-types/player.php:58 ../admin/post-types/staff.php:34 msgid "Photo" msgstr "Foto" -#: ../admin/hooks/gettext.php:18 ../admin/hooks/gettext.php:33 -#, php-format -msgid "Remove %s" -msgstr "%s entfernen" +#: ../admin/hooks/gettext.php:12 ../admin/hooks/gettext.php:15 +msgid "Select Logo" +msgstr "Logo auswählen" -#: ../admin/hooks/gettext.php:24 ../admin/post-types/player.php:27 -#: ../admin/post-types/staff.php:45 -msgid "Name" -msgstr "Name" +#: ../admin/hooks/gettext.php:18 +msgid "Remove Logo" +msgstr "logo entfernen" + +#: ../admin/hooks/gettext.php:24 ../admin/settings/settings.php:63 +#: ../admin/widgets/countdown.php:44 +msgid "(Auto)" +msgstr "(Automatisch)" + +#: ../admin/hooks/gettext.php:27 ../admin/hooks/gettext.php:30 +msgid "Select Photo" +msgstr "Wählen Sie Foto" + +#: ../admin/hooks/gettext.php:33 +msgid "Remove Photo" +msgstr "Foto entfernen" #: ../admin/hooks/gettext.php:36 ../admin/hooks/gettext.php:39 #: ../admin/hooks/gettext.php:42 @@ -353,69 +341,61 @@ msgstr "Name" msgid "Date/Time: %1$s" msgstr "Datum/Zeit: %1$s" -#: ../admin/hooks/manage-posts-columns.php:3 ../admin/post-types/event.php:202 -#: ../admin/post-types/list.php:32 ../admin/post-types/player.php:32 -#: ../admin/post-types/staff.php:50 ../admin/post-types/table.php:31 -#: ../admin/post-types/team.php:44 +#: ../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 "Ansichten" -#: ../admin/hooks/media-buttons.php:7 ../admin/hooks/media-buttons.php:8 -#, php-format -msgid "Add %s" -msgstr "%s hinzufügen" +#: ../admin/hooks/manage-posts-columns.php:83 +#: ../admin/post-types/player.php:139 ../admin/templates/player-metrics.php:26 +msgid "Current Team" +msgstr "Aktuelles Team" #: ../admin/hooks/media-buttons.php:7 -msgid "Map" -msgstr "Karte" +msgid "Add Map" +msgstr "Karte hinzufügen" -#: ../admin/hooks/media-buttons.php:8 ../admin/post-types/table.php:4 -#: ../admin/post-types/table.php:45 ../admin/widgets/league-table.php:6 -msgid "League Table" -msgstr "Liga Tabelle" +#: ../admin/hooks/media-buttons.php:8 +msgid "Add League Table" +msgstr "Ligatabelle hinzufügen" #: ../admin/hooks/plugin-action-links.php:3 msgid "Settings" msgstr "Einstellungen" -#: ../admin/hooks/post-updated-messages.php:8 -#: ../admin/hooks/post-updated-messages.php:15 -#: ../admin/hooks/post-updated-messages.php:18 -#, php-format -msgid "%s updated." -msgstr "%s aktualisiert." +#: ../admin/hooks/post-updated-messages.php:10 +msgid "Settings saved." +msgstr "Einstellungen gespeichert." -#: ../admin/hooks/post-updated-messages.php:20 -#, php-format -msgid "%s published." -msgstr "%s veröffentlicht. " +#: ../admin/hooks/post-updated-messages.php:12 +msgid "View All" +msgstr "Zeige alle" + +#: ../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 "Änderungen gespeichert." #: ../admin/hooks/post-updated-messages.php:23 -#, php-format -msgid "%s saved." -msgstr "%s gespeichert." +#: ../admin/hooks/post-updated-messages.php:28 +#: ../admin/hooks/post-updated-messages.php:38 +msgid "Success!" +msgstr "Erfolg!" -#: ../admin/hooks/post-updated-messages.php:25 -#, php-format -msgid "%s submitted." -msgstr "%s übermittelt." - -#: ../admin/hooks/post-updated-messages.php:27 -#: ../admin/hooks/post-updated-messages.php:33 -#: ../admin/hooks/post-updated-messages.php:37 +#: ../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 "Vorschau %s" -#: ../admin/hooks/post-updated-messages.php:30 +#: ../admin/hooks/post-updated-messages.php:33 #, php-format -msgid "%s scheduled for: %s." -msgstr "%s geplant für: %s." - -#: ../admin/hooks/post-updated-messages.php:35 -#, php-format -msgid "%s draft updated." -msgstr "Der %s entwurf wurde aktualisiert." +msgid "Scheduled for: %1$s." +msgstr "Geplant für: %1$s." #: ../admin/hooks/register-activation-hook.php:8 msgid "League Manager" @@ -426,40 +406,44 @@ msgid "Team Manager" msgstr "Mannschaft-Betriebsleiter" #: ../admin/hooks/register-activation-hook.php:129 -#: ../admin/post-types/event.php:119 ../admin/post-types/staff.php:3 -#: ../admin/post-types/staff.php:4 +#: ../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 "Personal" #: ../admin/hooks/restrict-manage-posts.php:8 +msgid "Show all positions" +msgstr "Alle Positionen" + +#: ../admin/hooks/restrict-manage-posts.php:18 +msgid "Show all leagues" +msgstr "Alle Ligen" + +#: ../admin/hooks/restrict-manage-posts.php:28 +msgid "Show all seasons" +msgstr "Alle Jahreszeiten" + #: ../admin/hooks/restrict-manage-posts.php:40 -#: ../admin/post-types/event.php:42 ../admin/post-types/event.php:197 -#: ../admin/post-types/player.php:29 ../admin/post-types/player.php:47 -#: ../admin/post-types/staff.php:28 ../admin/post-types/staff.php:47 -#: ../admin/post-types/table.php:30 ../admin/post-types/table.php:42 -#: ../admin/post-types/table.php:80 ../admin/post-types/team.php:3 -#: ../admin/widgets/future-events.php:113 -#: ../admin/widgets/recent-events.php:113 -msgid "Teams" -msgstr "Mannschaften" +msgid "Show all teams" +msgstr "Alle Mannschaften" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:43 +#: ../admin/templates/countdown.php:46 msgid "days" msgstr "Tage" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:44 +#: ../admin/templates/countdown.php:47 msgid "hrs" msgstr "Stunden" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:45 +#: ../admin/templates/countdown.php:48 msgid "mins" msgstr "Protokoll" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:46 +#: ../admin/templates/countdown.php:49 msgid "secs" msgstr "Sekunden" @@ -479,7 +463,7 @@ msgstr "Gehe zum SportsPress Einstellungen" msgid "Skip setup" msgstr "Setup berspringen" -#: ../admin/includes/notice-theme-support.php:6 +#: ../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 " @@ -489,247 +473,260 @@ msgstr "" "Wenn Sie Probleme mit dem Layout haben, lesen Sie bitte unsere Integrations " "Anleitung oder wählen Sie ein Sportpress Theme :)" -#: ../admin/includes/notice-theme-support.php:8 +#: ../admin/includes/notice-theme-support.php:7 msgid "Theme Integration Guide" msgstr "Theme Integration Leitfaden" -#: ../admin/includes/notice-theme-support.php:9 +#: ../admin/includes/notice-theme-support.php:8 msgid "Hide this notice" msgstr "Verstecken Sie diese Mitteilung" -#: ../admin/post-types/column.php:4 +#: ../admin/post-types/column.php:5 msgid "Column" msgstr "Spalte" -#: ../admin/post-types/column.php:5 -msgid "columns" -msgstr "Spalten" +#: ../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 "Neu" -#: ../admin/post-types/column.php:26 ../admin/post-types/metric.php:25 -#: ../admin/post-types/outcome.php:26 ../admin/post-types/result.php:26 -#: ../admin/post-types/statistic.php:26 ../admin/settings/events.php:20 -#: ../admin/settings/events.php:51 ../admin/settings/players.php:15 -#: ../admin/settings/players.php:47 ../admin/settings/tables.php:15 +#: ../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 "Anschauen" + +#: ../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 "Suchen" + +#: ../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 "Etikett" -#: ../admin/post-types/column.php:27 ../admin/post-types/column.php:49 -#: ../admin/post-types/outcome.php:27 ../admin/post-types/outcome.php:39 -#: ../admin/post-types/result.php:27 ../admin/post-types/result.php:40 -#: ../admin/settings/events.php:21 ../admin/settings/events.php:52 -#: ../admin/settings/tables.php:16 +#: ../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 "Schlüssel" -#: ../admin/post-types/column.php:28 ../admin/post-types/column.php:53 -#: ../admin/settings/tables.php:17 +#: ../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 "Gleichung" -#: ../admin/post-types/column.php:29 ../admin/post-types/column.php:61 -#: ../admin/settings/tables.php:18 -msgid "Precision" -msgstr "Präzision" +#: ../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 "Rundung" -#: ../admin/post-types/column.php:30 ../admin/post-types/column.php:65 -#: ../admin/settings/tables.php:19 +#: ../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 "Sortierung" -#: ../admin/post-types/column.php:37 ../admin/post-types/event.php:41 -#: ../admin/post-types/list.php:49 ../admin/post-types/outcome.php:34 -#: ../admin/post-types/player.php:46 ../admin/post-types/result.php:34 -#: ../admin/post-types/statistic.php:35 ../admin/post-types/table.php:48 +#: ../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 "Details" -#: ../admin/post-types/column.php:69 +#: ../admin/post-types/column.php:76 msgid "Disable" msgstr "Deaktivieren" -#: ../admin/post-types/column.php:77 +#: ../admin/post-types/column.php:88 ../admin/post-types/list.php:133 +#: ../admin/widgets/player-list.php:109 msgid "Descending" msgstr "Absteigend" -#: ../admin/post-types/column.php:77 +#: ../admin/post-types/column.php:88 ../admin/post-types/list.php:132 +#: ../admin/widgets/player-list.php:108 msgid "Ascending" msgstr "Aufsteigend" -#: ../admin/post-types/event.php:45 ../admin/post-types/event.php:118 -#: ../admin/post-types/list.php:28 ../admin/post-types/list.php:43 -#: ../admin/post-types/list.php:93 ../admin/post-types/player.php:3 +#: ../admin/post-types/event.php:4 +msgid "Schedule" +msgstr "Zeitplan" + +#: ../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 "Veranstaltung" + +#: ../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 "Mannschaften" + +#: ../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 "Statistiken" + +#: ../admin/post-types/event.php:59 +msgid "Article" +msgstr "Artikel" + +#: ../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 "Liga" + +#: ../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 "Austragungsort" + +#: ../admin/post-types/event.php:128 +msgid "Remove" +msgstr "Entfernen" + +#: ../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 "Spieler" -#: ../admin/post-types/event.php:47 -msgid "Article" -msgstr "Artikel" +#: ../admin/post-types/event.php:152 +msgid "— Add —" +msgstr "— Hinzufügen —" -#: ../admin/post-types/event.php:56 ../admin/post-types/event.php:198 -#: ../admin/post-types/list.php:29 ../admin/post-types/list.php:58 -#: ../admin/post-types/table.php:28 ../admin/post-types/table.php:56 -#: ../admin/templates/event-details.php:17 ../admin/terms/league.php:4 -msgid "League" -msgstr "Liga" - -#: ../admin/post-types/event.php:82 ../admin/post-types/event.php:200 -#: ../admin/templates/event-venue.php:24 ../admin/terms/venue.php:4 -msgid "Venue" -msgstr "Austragungsort" - -#: ../admin/post-types/event.php:201 +#: ../admin/post-types/event.php:217 msgid "Date/Time" msgstr "Datum/Zeit" -#: ../admin/post-types/list.php:3 +#: ../admin/post-types/list.php:4 ../admin/post-types/list.php:15 msgid "Player Lists" msgstr "Spieler liste" -#: ../admin/post-types/list.php:4 ../admin/post-types/list.php:46 +#: ../admin/post-types/list.php:5 ../admin/post-types/list.php:53 +#: ../admin/widgets/player-list.php:47 msgid "Player List" msgstr "Spielerliste" -#: ../admin/post-types/list.php:5 -msgid "player lists" -msgstr "Spielerlisten " - -#: ../admin/post-types/list.php:27 ../admin/post-types/table.php:27 +#: ../admin/post-types/list.php:34 ../admin/post-types/table.php:34 msgid "Title" msgstr "Titel" -#: ../admin/post-types/metric.php:3 ../admin/post-types/player.php:48 -#: ../admin/settings/players.php:11 ../admin/settings/players.php:29 -msgid "Metrics" -msgstr "Metrik" +#: ../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 "Alle" -#: ../admin/post-types/metric.php:4 ../admin/post-types/player.php:148 -msgid "Metric" -msgstr "Metrisch" +#: ../admin/post-types/list.php:110 ../admin/widgets/player-list.php:84 +msgid "Sort by:" +msgstr "Sortiert nach:" -#: ../admin/post-types/metric.php:5 -msgid "metrics" -msgstr "Metrik" - -#: ../admin/post-types/outcome.php:5 -msgid "outcome" -msgstr "Ergebnis" - -#: ../admin/post-types/player.php:5 -msgid "players" -msgstr "Spieler" - -#: ../admin/post-types/player.php:43 ../admin/post-types/staff.php:25 -#: ../admin/post-types/team.php:28 -msgid "Publish" -msgstr "Veröffentlichen" - -#: ../admin/post-types/player.php:51 ../admin/post-types/statistic.php:3 -#: ../admin/settings/players.php:43 ../admin/settings/players.php:61 -msgid "Statistics" -msgstr "Statistiken" - -#: ../admin/post-types/player.php:54 ../admin/post-types/staff.php:29 -msgid "Profile" -msgstr "Profil" - -#: ../admin/post-types/player.php:74 ../admin/templates/player-metrics.php:15 +#: ../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 "Anzahl" -#: ../admin/post-types/player.php:80 ../admin/templates/player-metrics.php:16 +#: ../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 "Name" + +#: ../admin/post-types/list.php:129 ../admin/widgets/player-list.php:106 +msgid "Sort Order:" +msgstr "Sortierung:" + +#: ../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 "Metrik" + +#: ../admin/post-types/metric.php:5 +msgid "Metric" +msgstr "Metrisch" + +#: ../admin/post-types/player.php:55 ../admin/post-types/staff.php:32 +#: ../admin/post-types/team.php:36 +msgid "Publish" +msgstr "Veröffentlichen" + +#: ../admin/post-types/player.php:64 ../admin/post-types/staff.php:36 +msgid "Profile" +msgstr "Profil" + +#: ../admin/post-types/player.php:112 ../admin/post-types/player.php:113 +#: ../admin/templates/player-metrics.php:21 msgid "Nationality" msgstr "Staatsangehörigkeit" -#: ../admin/post-types/player.php:98 -msgid "Current Team" -msgstr "Aktuelles Team" +#: ../admin/post-types/player.php:154 ../admin/templates/player-metrics.php:33 +msgid "Past Teams" +msgstr "Früheren Mannschaften" -#: ../admin/post-types/player.php:149 -msgid "Value" -msgstr "Wert" - -#: ../admin/post-types/result.php:4 +#: ../admin/post-types/result.php:5 msgid "Result" msgstr "Resultat" -#: ../admin/post-types/result.php:5 -msgid "result" -msgstr "Resultat" - -#: ../admin/post-types/staff.php:5 -msgid "staff" -msgstr "Personal" - -#: ../admin/post-types/statistic.php:4 +#: ../admin/post-types/statistic.php:5 msgid "Statistic" msgstr "statistisch" -#: ../admin/post-types/statistic.php:5 -msgid "statistics" -msgstr "Statistiken" - -#: ../admin/post-types/statistic.php:28 ../admin/post-types/statistic.php:41 -#: ../admin/settings/players.php:49 +#: ../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 "berechnen" -#: ../admin/post-types/table.php:3 ../admin/settings/settings.php:12 +#: ../admin/post-types/table.php:4 ../admin/post-types/table.php:15 +#: ../admin/settings/settings.php:12 msgid "League Tables" -msgstr "Liga Tabellen" +msgstr "Ligatabellen" -#: ../admin/post-types/table.php:5 -msgid "league tables" -msgstr "Liga Tabellen" +#: ../admin/post-types/table.php:5 ../admin/post-types/table.php:52 +#: ../admin/widgets/league-table.php:41 +msgid "League Table" +msgstr "Ligatabelle" -#: ../admin/post-types/team.php:5 -msgid "teams" -msgstr "Mannschaften" - -#: ../admin/presets/baseball.php:5 -msgid "Baseball" -msgstr "Baseball" - -#: ../admin/presets/basketball.php:5 -msgid "Basketball" -msgstr "Basketball" - -#: ../admin/presets/cricket.php:5 -msgid "Cricket" -msgstr "Kricket" - -#: ../admin/presets/football.php:5 -msgid "American Football" -msgstr "American Football" - -#: ../admin/presets/footy.php:5 -msgid "Australian Rules Football" -msgstr "Australian Rules Football" - -#: ../admin/presets/gaming.php:5 -msgid "Competitive Gaming" -msgstr "Competitive Gaming" - -#: ../admin/presets/golf.php:5 -msgid "Golf" -msgstr "Golf" - -#: ../admin/presets/hockey.php:5 -msgid "Hockey" -msgstr "Hockey" - -#: ../admin/presets/racing.php:5 -msgid "Racing" -msgstr "Rennsport" - -#: ../admin/presets/rugby.php:5 -msgid "Rugby" -msgstr "Rugby" - -#: ../admin/presets/soccer.php:5 -msgid "Soccer (Association Football)" -msgstr "Fußball" +#: ../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 "Eltern:" #: ../admin/settings/events.php:1 msgid "Event Settings" @@ -739,23 +736,30 @@ msgstr "Einstellungen Veranstaltungen" msgid "General Settings" msgstr "Allgemeinen Einstellungen" -#: ../admin/settings/settings.php:10 ../admin/settings/settings.php:236 -#: ../admin/settings/settings.php:237 -msgid "SportsPress" -msgstr "SportsPress" +#: ../admin/settings/settings.php:10 +msgid "General" +msgstr "Allgemein" -#: ../admin/settings/settings.php:59 ../admin/widgets/countdown.php:43 -msgid "(Auto)" -msgstr "(Automatisch)" +#: ../admin/settings/settings.php:50 +msgid "Custom" +msgstr "Angepasst" -#: ../admin/settings/settings.php:98 +#: ../admin/settings/settings.php:52 ../admin/settings/settings.php:102 msgid "Sport" msgstr "Sport" -#: ../admin/settings/settings.php:119 +#: ../admin/settings/settings.php:124 msgid "Main Result" msgstr "Haupt Ergebnis" +#: ../admin/settings/settings.php:241 ../admin/settings/settings.php:242 +msgid "SportsPress" +msgstr "SportsPress" + +#: ../admin/templates/event-details.php:13 +msgid "Date" +msgstr "Datum" + #. translators: Calendar caption: 1: month name, 2: 4-digit year #: ../admin/templates/events-calendar.php:56 #: ../admin/templates/events-calendar.php:83 @@ -765,120 +769,893 @@ msgctxt "calendar caption" msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: ../admin/templates/league-table.php:9 +#: ../admin/templates/league-table.php:27 msgid "Pos" msgstr "Pos" -#: ../admin/terms/league.php:5 -msgid "league" -msgstr "Liga" +#: ../admin/templates/player-list.php:46 +msgid "Rank" +msgstr "Rang" -#: ../admin/terms/position.php:4 +#: ../admin/terms/league.php:9 ../admin/terms/position.php:9 +#: ../admin/terms/season.php:9 ../admin/terms/venue.php:9 +msgid "Update" +msgstr "Aktualisieren" + +#: ../admin/terms/league.php:12 ../admin/terms/position.php:12 +#: ../admin/terms/season.php:12 ../admin/terms/venue.php:12 +msgid "Parent" +msgstr "Eltern" + +#: ../admin/terms/position.php:5 msgid "Position" msgstr "Position" -#: ../admin/terms/position.php:5 -msgid "position" -msgstr "Position" - -#: ../admin/terms/season.php:5 -msgid "season" -msgstr "Saison" - -#: ../admin/terms/venue.php:5 -msgid "venue" -msgstr "Austragungsort" - -#: ../admin/terms/venue.php:27 ../admin/terms/venue.php:74 +#: ../admin/terms/venue.php:38 ../admin/terms/venue.php:85 msgid "Address" msgstr "Adresse" -#: ../admin/terms/venue.php:34 +#: ../admin/terms/venue.php:45 msgid "Latitude" msgstr "Breite" -#: ../admin/terms/venue.php:40 +#: ../admin/terms/venue.php:51 msgid "Longitude" msgstr "Länge" -#: ../admin/widgets/countdown.php:5 ../admin/widgets/events-calendar.php:5 -#: ../admin/widgets/future-events.php:5 ../admin/widgets/league-table.php:5 -#: ../admin/widgets/recent-events.php:5 -msgid "SportsPress widget." -msgstr "SportsPress Widget." +#: ../admin/tools/importers.php:37 +msgid "SportsPress Teams (CSV)" +msgstr "SportsPress Mannschaften (CSV)" -#: ../admin/widgets/countdown.php:6 ../admin/widgets/countdown.php:11 -msgid "Countdown" -msgstr "Countdown" +#: ../admin/tools/importers.php:37 +msgid "Import teams from a csv file." +msgstr "Mannschaften CSV-Datei importieren." -#: ../admin/widgets/countdown.php:33 ../admin/widgets/events-calendar.php:32 -#: ../admin/widgets/future-events.php:55 ../admin/widgets/league-table.php:38 -#: ../admin/widgets/recent-events.php:55 +#: ../admin/tools/importers.php:38 +msgid "SportsPress Players (CSV)" +msgstr "SportsPress Spieler (CSV)" + +#: ../admin/tools/importers.php:38 +msgid "Import players from a csv file." +msgstr "Spieler CSV-Datei importieren." + +#: ../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 "Leider ist ein Fehler aufgetreten." + +#: ../admin/tools/player-importer.php:193 ../admin/tools/team-importer.php:152 +msgid "The CSV is invalid." +msgstr "Die CSV-Datei ist ungültig." + +#: ../admin/tools/player-importer.php:204 +#, php-format +msgid "" +"Import complete - imported %s players and skipped " +"%s." +msgstr "" +"Import abgeschlossen. Es wurden %s Spieler importiert und " +"%s Spieler übersprungen." + +#: ../admin/tools/player-importer.php:214 ../admin/tools/team-importer.php:173 +msgid "All done!" +msgstr "Alles erledigt!" + +#: ../admin/tools/player-importer.php:214 +msgid "View Players" +msgstr "Spieler ansehen" + +#: ../admin/tools/player-importer.php:264 +msgid "Import Players" +msgstr "Spieler importieren" + +#: ../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 "" +"Hallo! Wählen Sie eine .csv-Datei zum Hochladen aus und wählen " +"Sie danach \"Datei hochladen und importieren\"." + +#: ../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 "" +"Spieler müssen mit Spalten in einer bestimmten Reihenfolge definiert werden " +"(7 Spalten). Klicken Sie hier, um eine Beispieldatei " +"herunterzulassen." + +#: ../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 "" +"Bevor Sie Ihre Importdatei hochladen können, müssen Sie folgenden Fehler " +"beheben:" + +#: ../admin/tools/player-importer.php:305 ../admin/tools/team-importer.php:264 +msgid "Choose a file from your computer:" +msgstr "Wählen Sie eine Datei von Ihrem Rechner:" + +#: ../admin/tools/player-importer.php:311 ../admin/tools/team-importer.php:270 +#, php-format +msgid "Maximum size: %s" +msgstr "Maximale Größe: %s" + +#: ../admin/tools/player-importer.php:316 ../admin/tools/team-importer.php:275 +msgid "OR enter path to file:" +msgstr "ODER geben Sie den Pfad zu einer Datei an:" + +#: ../admin/tools/player-importer.php:323 ../admin/tools/team-importer.php:282 +msgid "Delimiter" +msgstr "Trennzeichen" + +#: ../admin/tools/player-importer.php:329 ../admin/tools/team-importer.php:288 +msgid "Upload file and import" +msgstr "Datei hochladen und importieren" + +#: ../admin/tools/team-importer.php:163 +#, php-format +msgid "" +"Import complete - imported %s teams and skipped %s." +msgstr "" +"Import abgeschlossen. Es wurden %s Mannschaften importiert " +"und %s Mannschaften übersprungen." + +#: ../admin/tools/team-importer.php:173 +msgid "View Teams" +msgstr "Mannschaften ansehen" + +#: ../admin/tools/team-importer.php:223 +msgid "Import Teams" +msgstr "Mannschaften importieren" + +#: ../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 "" +"Mannschaften müssen mit Spalten in einer bestimmten Reihenfolge definiert " +"werden (7 Spalten). Klicken Sie hier, um eine Beispieldatei " +"herunterzulassen." + +#: ../admin/widgets/countdown.php:5 +msgid "A clock that counts down to an upcoming event." +msgstr "Eine Countdown-Uhr." + +#: ../admin/widgets/countdown.php:6 +msgid "SportsPress Countdown" +msgstr "SportsPress Countdown" + +#: ../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 "Titel:" -#: ../admin/widgets/countdown.php:36 -msgid "Event:" -msgstr "Veranstaltung:" +#: ../admin/widgets/countdown.php:37 ../admin/widgets/league-table.php:41 +#: ../admin/widgets/player-list.php:47 +#, php-format +msgid "Select %s:" +msgstr "Auswählen %s:" + +#: ../admin/widgets/countdown.php:57 +msgid "Display league" +msgstr "Liga anzeigen" + +#: ../admin/widgets/events-calendar.php:5 +msgid "A calendar of events." +msgstr "Ein Kalender der Ereignisse." #: ../admin/widgets/events-calendar.php:6 -msgid "Events Calendar" -msgstr "Veranstaltungskalender" +msgid "SportsPress Events Calendar" +msgstr "SportsPress Veranstaltungskalender" -#: ../admin/widgets/future-events.php:6 ../admin/widgets/future-events.php:11 -msgid "Future Events" -msgstr "Zukünftige Veranstaltungen" +#: ../admin/widgets/league-table.php:5 +msgid "Display a league table." +msgstr "Zeigen Sie eine Ligatabelle." -#: ../admin/widgets/future-events.php:58 ../admin/widgets/recent-events.php:58 -msgid "League:" -msgstr "Liga:" - -#: ../admin/widgets/future-events.php:74 ../admin/widgets/recent-events.php:74 -msgid "Season:" -msgstr "Saison:" - -#: ../admin/widgets/future-events.php:90 ../admin/widgets/recent-events.php:90 -msgid "Venue:" -msgstr "Austragungsort:" - -#: ../admin/widgets/future-events.php:106 -#: ../admin/widgets/recent-events.php:106 -msgid "Team:" -msgstr "Mannschaft:" - -#: ../admin/widgets/future-events.php:123 -#: ../admin/widgets/recent-events.php:123 -#, php-format -msgid "Number of %s to show:" -msgstr "Anzahl der %s zu zeigen:" - -#: ../admin/widgets/league-table.php:41 -msgid "League Table:" -msgstr "Liga Tabelle:" +#: ../admin/widgets/league-table.php:6 +msgid "SportsPress League Table" +msgstr "SportsPress Ligatabelle" #: ../admin/widgets/league-table.php:58 msgid "Columns:" msgstr "Spalten:" -#: ../admin/widgets/recent-events.php:6 ../admin/widgets/recent-events.php:11 -msgid "Recent Events" -msgstr "Vergangene Veranstaltungen" +#: ../admin/widgets/player-list.php:5 +msgid "Display a list of players." +msgstr "Zeigen Sie eine Spielerliste." + +#: ../admin/widgets/player-list.php:6 +msgid "SportsPress Player List" +msgstr "SportsPress Spielerliste" + +#: ../admin/widgets/player-list.php:64 +msgid "Statistics:" +msgstr "Statistiken:" + +#: ../admin/widgets/player-list.php:88 +msgid "Default" +msgstr "Standard" + +#: ../presets/sports/baseball.php:5 +msgid "Baseball" +msgstr "Baseball" + +#: ../presets/sports/basketball.php:5 +msgid "Basketball" +msgstr "Basketball" + +#: ../presets/sports/cricket.php:5 +msgid "Cricket" +msgstr "Kricket" + +#: ../presets/sports/football.php:5 +msgid "American Football" +msgstr "American Football" + +#: ../presets/sports/footy.php:5 +msgid "Australian Rules Football" +msgstr "Australian Rules Football" + +#: ../presets/sports/gaming.php:5 +msgid "Competitive Gaming" +msgstr "Competitive Gaming" + +#: ../presets/sports/golf.php:5 +msgid "Golf" +msgstr "Golf" + +#: ../presets/sports/hockey.php:5 +msgid "Hockey" +msgstr "Hockey" + +#: ../presets/sports/racing.php:5 +msgid "Racing" +msgstr "Rennsport" + +#: ../presets/sports/rugby.php:5 +msgid "Rugby" +msgstr "Rugby" + +#: ../presets/sports/soccer.php:5 +msgid "Soccer (Association Football)" +msgstr "Fußball" + +#, fuzzy +#~ msgid "None." +#~ msgstr "Keine" + +#, fuzzy +#~ msgid "No Events found." +#~ msgstr "Keine %s gefunden." + +#, fuzzy +#~ msgid "No teams found." +#~ msgstr "Keine %s gefunden." + +#, fuzzy +#~ msgid "Add New Column" +#~ msgstr "Neu hinzufügen %s" + +#, fuzzy +#~ msgid "Edit Column" +#~ msgstr "Spalte" + +#, fuzzy +#~ msgid "New Column" +#~ msgstr "Spalte" + +#, fuzzy +#~ msgid "View Column" +#~ msgstr "Spalte" + +#, fuzzy +#~ msgid "Search Columns" +#~ msgstr "Suchen %s" + +#, fuzzy +#~ msgid "No columns found." +#~ msgstr "Keine %s gefunden." + +#, fuzzy +#~ msgid "No columns found in trash." +#~ msgstr "Keine %s im Papierkorb gefunden." + +#, fuzzy +#~ msgid "Add New Event" +#~ msgstr "Neu hinzufügen" + +#, fuzzy +#~ msgid "Edit Event" +#~ msgstr "Veranstaltung" + +#, fuzzy +#~ msgid "New Event" +#~ msgstr "Veranstaltung" + +#, fuzzy +#~ msgid "View Event" +#~ msgstr "Veranstaltung" + +#, fuzzy +#~ msgid "Search Events" +#~ msgstr "Suchen %s" + +#, fuzzy +#~ msgid "No events found." +#~ msgstr "Keine %s gefunden." + +#, fuzzy +#~ msgid "No events found in trash." +#~ msgstr "Keine %s im Papierkorb gefunden." + +#, fuzzy +#~ msgid "Add New League" +#~ msgstr "Neu hinzufügen %s" + +#, fuzzy +#~ msgid "Add New Season" +#~ msgstr "Neu hinzufügen %s" + +#, fuzzy +#~ msgid "Add New Venue" +#~ msgstr "Neu hinzufügen" + +#, fuzzy +#~ msgid "Add New Player List" +#~ msgstr "Spielerliste" + +#, fuzzy +#~ msgid "Edit Player List" +#~ msgstr "Spielerliste" + +#, fuzzy +#~ msgid "New Player List" +#~ msgstr "Spielerliste" + +#, fuzzy +#~ msgid "View Player List" +#~ msgstr "Spielerliste" + +#, fuzzy +#~ msgid "Search Player Lists" +#~ msgstr "Spieler liste" + +#, fuzzy +#~ msgid "No player lists found." +#~ msgstr "Spielerlisten " + +#, fuzzy +#~ msgid "No player lists found in trash." +#~ msgstr "Keine %s im Papierkorb gefunden." + +#, fuzzy +#~ msgid "All Teams" +#~ msgstr "Mannschaften" + +#, fuzzy +#~ msgid "Add New Team" +#~ msgstr "Neu hinzufügen" + +#, fuzzy +#~ msgid "Add New Player" +#~ msgstr "Neu hinzufügen %s" + +#, fuzzy +#~ msgid "Add New Metric" +#~ msgstr "Neu hinzufügen %s" + +#, fuzzy +#~ msgid "Edit Metric" +#~ msgstr "Metrisch" + +#, fuzzy +#~ msgid "New Metric" +#~ msgstr "Metrisch" + +#, fuzzy +#~ msgid "View Metric" +#~ msgstr "Metrisch" + +#, fuzzy +#~ msgid "Search Metrics" +#~ msgstr "Suchen %s" + +#, fuzzy +#~ msgid "No metrics found." +#~ msgstr "Keine %s gefunden." + +#, fuzzy +#~ msgid "No metrics found in trash." +#~ msgstr "Keine %s im Papierkorb gefunden." + +#, fuzzy +#~ msgid "Add New Outcome" +#~ msgstr "Neu hinzufügen %s" + +#, fuzzy +#~ msgid "Edit Outcome" +#~ msgstr "Ergebnis" + +#, fuzzy +#~ msgid "New Outcome" +#~ msgstr "Ergebnis" + +#, fuzzy +#~ msgid "View Outcome" +#~ msgstr "Ergebnis" + +#, fuzzy +#~ msgid "Search Outcomes" +#~ msgstr "Ergebnisse" + +#, fuzzy +#~ msgid "No outcomes found." +#~ msgstr "Keine %s gefunden." + +#, fuzzy +#~ msgid "No outcomes found in trash." +#~ msgstr "Keine %s im Papierkorb gefunden." + +#, fuzzy +#~ msgid "Edit Player" +#~ msgstr "Spieler" + +#, fuzzy +#~ msgid "New Player" +#~ msgstr "Spieler" + +#, fuzzy +#~ msgid "View Player" +#~ msgstr "Spieler" + +#, fuzzy +#~ msgid "Search Players" +#~ msgstr "Suchen %s" + +#, fuzzy +#~ msgid "No players found." +#~ msgstr "Keine %s gefunden." + +#, fuzzy +#~ msgid "No players found in trash." +#~ msgstr "Keine %s im Papierkorb gefunden." + +#, fuzzy +#~ msgid "Select Nationality" +#~ msgstr "Staatsangehörigkeit" + +#, fuzzy +#~ msgid "Select Positions" +#~ msgstr "写真を選択" + +#, fuzzy +#~ msgid "Select Team" +#~ msgstr "Sélectionner" + +#, fuzzy +#~ msgid "Select Leagues" +#~ msgstr "ロゴを選択" + +#, fuzzy +#~ msgid "Select Seasons" +#~ msgstr "Auswählen %s" + +#, fuzzy +#~ msgid "Add New Result" +#~ msgstr "Neu hinzufügen %s" + +#, fuzzy +#~ msgid "Edit Result" +#~ msgstr "Haupt Ergebnis" + +#, fuzzy +#~ msgid "New Result" +#~ msgstr "Resultat" + +#, fuzzy +#~ msgid "View Result" +#~ msgstr "Haupt Ergebnis" + +#, fuzzy +#~ msgid "Search Results" +#~ msgstr "Suchen %s" + +#, fuzzy +#~ msgid "No results found in trash." +#~ msgstr "Keine %s im Papierkorb gefunden." + +#, fuzzy +#~ msgid "Add New Staff" +#~ msgstr "Neu hinzufügen" + +#, fuzzy +#~ msgid "Edit Staff" +#~ msgstr "Personal" + +#, fuzzy +#~ msgid "New Staff" +#~ msgstr "Personal" + +#, fuzzy +#~ msgid "View Staff" +#~ msgstr "Personal" + +#, fuzzy +#~ msgid "No staff found." +#~ msgstr "Keine %s gefunden." + +#, fuzzy +#~ msgid "No staff found in trash." +#~ msgstr "Keine %s im Papierkorb gefunden." + +#, fuzzy +#~ msgid "Add New Statistic" +#~ msgstr "statistisch" + +#, fuzzy +#~ msgid "Edit Statistic" +#~ msgstr "statistisch" + +#, fuzzy +#~ msgid "New Statistic" +#~ msgstr "statistisch" + +#, fuzzy +#~ msgid "View Statistic" +#~ msgstr "statistisch" + +#, fuzzy +#~ msgid "Search Statistics" +#~ msgstr "Spieler Statistiken" + +#, fuzzy +#~ msgid "No statistics found." +#~ msgstr "Keine %s gefunden." + +#, fuzzy +#~ msgid "No statistics found in trash." +#~ msgstr "Keine %s im Papierkorb gefunden." + +#, fuzzy +#~ msgid "Add New League Table" +#~ msgstr "Liga Tabelle" + +#, fuzzy +#~ msgid "Edit League Table" +#~ msgstr "Liga Tabelle" + +#, fuzzy +#~ msgid "New League Table" +#~ msgstr "Liga Tabelle" + +#, fuzzy +#~ msgid "View League Table" +#~ msgstr "Liga Tabelle" + +#, fuzzy +#~ msgid "Search League Tables" +#~ msgstr "Liga Tabellen" + +#, fuzzy +#~ msgid "No league tables found." +#~ msgstr "Liga Tabellen" + +#, fuzzy +#~ msgid "No league tables found in trash." +#~ msgstr "Keine %s im Papierkorb gefunden." + +#, fuzzy +#~ msgid "Edit Team" +#~ msgstr "Bearbeiten %s" + +#, fuzzy +#~ msgid "New Team" +#~ msgstr "Mannschaft" + +#, fuzzy +#~ msgid "View Team" +#~ msgstr "Ansehen %s" + +#, fuzzy +#~ msgid "Search Teams" +#~ msgstr "Suchen %s" + +#, fuzzy +#~ msgid "No teams found in trash." +#~ msgstr "Keine %s im Papierkorb gefunden." + +#, fuzzy +#~ msgid "Edit Results" +#~ msgstr "Resultat" + +#, fuzzy +#~ msgid "Edit Outcomes" +#~ msgstr "Ergebnisse" + +#, fuzzy +#~ msgid "Edit Metrics" +#~ msgstr "Metrik" + +#, fuzzy +#~ msgid "Edit Statistics" +#~ msgstr "Statistiken" + +#, fuzzy +#~ msgid "Edit Columns" +#~ msgstr "Spalten" + +#, fuzzy +#~ msgid "All Leagues" +#~ msgstr "Ligen" + +#, fuzzy +#~ msgid "Edit League" +#~ msgstr "Liga" + +#, fuzzy +#~ msgid "View League" +#~ msgstr "Liga" + +#, fuzzy +#~ msgid "Update League" +#~ msgstr "Aktualisieren %s" + +#, fuzzy +#~ msgid "New League Name" +#~ msgstr "Neuer %s Name" + +#, fuzzy +#~ msgid "Parent League" +#~ msgstr "Übergeordnete %s" + +#, fuzzy +#~ msgid "Parent League:" +#~ msgstr "Liga:" + +#, fuzzy +#~ msgid "Search Leagues" +#~ msgstr "Suchen %s" + +#, fuzzy +#~ msgid "No leagues found." +#~ msgstr "Keine %s gefunden." + +#, fuzzy +#~ msgid "All Positions" +#~ msgstr "Positionen" + +#, fuzzy +#~ msgid "Edit Position" +#~ msgstr "Position" + +#, fuzzy +#~ msgid "View Position" +#~ msgstr "Position" + +#, fuzzy +#~ msgid "Update Position" +#~ msgstr "Position" + +#, fuzzy +#~ msgid "Add New Position" +#~ msgstr "Neu hinzufügen %s" + +#, fuzzy +#~ msgid "New Position Name" +#~ msgstr "Neuer %s Name" + +#, fuzzy +#~ msgid "Parent Position" +#~ msgstr "Position" + +#, fuzzy +#~ msgid "Parent Position:" +#~ msgstr "Position" + +#, fuzzy +#~ msgid "Search Positions" +#~ msgstr "Positionen" + +#, fuzzy +#~ msgid "No positions found." +#~ msgstr "Keine %s gefunden." + +#, fuzzy +#~ msgid "All Seasons" +#~ msgstr "Jahreszeiten" + +#, fuzzy +#~ msgid "Edit Season" +#~ msgstr "Saison" + +#, fuzzy +#~ msgid "View Season" +#~ msgstr "Saison" + +#, fuzzy +#~ msgid "Update Season" +#~ msgstr "Aktualisieren %s" + +#, fuzzy +#~ msgid "New Season Name" +#~ msgstr "Neuer %s Name" + +#, fuzzy +#~ msgid "Parent Season" +#~ msgstr "Übergeordnete %s" + +#, fuzzy +#~ msgid "Parent Season:" +#~ msgstr "Übergeordnete %s" + +#, fuzzy +#~ msgid "Search Seasons" +#~ msgstr "Suchen %s" + +#, fuzzy +#~ msgid "No seasons found." +#~ msgstr "Keine %s gefunden." + +#, fuzzy +#~ msgid "All Venues" +#~ msgstr "Veranstaltungsorte" + +#, fuzzy +#~ msgid "Edit Venue" +#~ msgstr "Austragungsort" + +#, fuzzy +#~ msgid "View Venue" +#~ msgstr "Austragungsort" + +#, fuzzy +#~ msgid "New Venue Name" +#~ msgstr "Neuer %s Name" + +#, fuzzy +#~ msgid "Parent Venue" +#~ msgstr "Übergeordnete %s" + +#, fuzzy +#~ msgid "Parent Venue:" +#~ msgstr "Übergeordnete %s" + +#, fuzzy +#~ msgid "Search Venues" +#~ msgstr "Suchen %s" + +#, fuzzy +#~ msgid "No venues found." +#~ msgstr "Keine %s gefunden." + +#, fuzzy +#~ msgid "Select Event:" +#~ msgstr "Vergangene Veranstaltungen" + +#, fuzzy +#~ msgid "SportsPress Future Events" +#~ msgstr "Zukünftige Veranstaltungen" + +#~ msgid "Future Events" +#~ msgstr "Zukünftige Veranstaltungen" + +#~ msgid "League:" +#~ msgstr "Liga:" + +#~ msgid "Season:" +#~ msgstr "Saison:" + +#~ msgid "Venue:" +#~ msgstr "Austragungsort:" + +#~ msgid "Team:" +#~ msgstr "Mannschaft:" + +#, fuzzy +#~ msgid "Number of events to show:" +#~ msgstr "Anzahl der %s zu zeigen:" + +#, fuzzy +#~ msgid "Select League Table:" +#~ msgstr "Liga Tabelle:" + +#, fuzzy +#~ msgid "Select Player List:" +#~ msgstr "Spielerliste" + +#, fuzzy +#~ msgid "SportsPress Recent Events" +#~ msgstr "Vergangene Veranstaltungen" + +#~ msgid "Recent Events" +#~ msgstr "Vergangene Veranstaltungen" + +#~ msgid "Sum" +#~ msgstr "Summe" + +#~ msgid "events" +#~ msgstr "Ereignisse" + +#~ msgid "Map" +#~ msgstr "Karte" + +#~ msgid "%s updated." +#~ msgstr "%s aktualisiert." + +#~ msgid "%s published." +#~ msgstr "%s veröffentlicht. " + +#~ msgid "%s submitted." +#~ msgstr "%s übermittelt." + +#~ msgid "%s draft updated." +#~ msgstr "Der %s entwurf wurde aktualisiert." + +#~ msgid "columns" +#~ msgstr "Spalten" + +#~ msgid "Precision" +#~ msgstr "Präzision" + +#~ msgid "metrics" +#~ msgstr "Metrik" + +#~ msgid "outcome" +#~ msgstr "Ergebnis" + +#~ msgid "players" +#~ msgstr "Spieler" + +#~ msgid "Value" +#~ msgstr "Wert" + +#~ msgid "result" +#~ msgstr "Resultat" + +#~ msgid "staff" +#~ msgstr "Personal" + +#~ msgid "statistics" +#~ msgstr "Statistiken" + +#~ msgid "teams" +#~ msgstr "Mannschaften" + +#~ msgid "league" +#~ msgstr "Liga" + +#~ msgid "position" +#~ msgstr "Position" + +#~ msgid "season" +#~ msgstr "Saison" + +#~ msgid "venue" +#~ msgstr "Austragungsort" + +#~ msgid "Countdown" +#~ msgstr "Countdown" + +#~ msgid "Event:" +#~ msgstr "Veranstaltung:" #~ msgid "%1$s %2$s" #~ msgstr "%1$s %2$s" -#~ msgid "Select" -#~ msgstr "Sélectionner" - #~ msgid "-- Not Set --" #~ msgstr "-- Pas réglé --" #~ msgid "1 View" #~ msgstr "1 vue" -#~ msgid "positions" -#~ msgstr "ポジション" - #~ msgid "Points" #~ msgstr "点数" @@ -929,21 +1706,9 @@ msgstr "Vergangene Veranstaltungen" #~ msgid "Appearances" #~ msgstr "出場" -#~ msgid "Select Logo" -#~ msgstr "ロゴを選択" - -#~ msgid "Remove Logo" -#~ msgstr "ロゴを削除" - #~ msgid "Joined: %1$s" #~ msgstr "入団日: %1$s" -#~ msgid "Select Photo" -#~ msgstr "写真を選択" - -#~ msgid "Remove Photo" -#~ msgstr "写真を削除" - #~ msgid "Table Columns" #~ msgstr "順位表列" diff --git a/languages/sportspress-es_ES.mo b/languages/sportspress-es_ES.mo index 364d1ac5be90a41c57fbeadb63954e11c4f41fff..97c480a27a2995a94c1630d8dc00ab8a27ef006b 100644 GIT binary patch literal 11571 zcmbuEd6XPSea8!1U?F2j91e3B+OlONytCSsEg!Rz?A2)*9c%5%!Wa;}Gqt-d^-Pbt zdsbQzzyxB0A;#Eoz!31kX@X3^CSVT7us}ixB;kc%NFY2z{@_6#*L#6ScqE^1RrSmW z%MTLz?QcF+)zx+W>Q}$2{nqJAZZ$lgL7s&SJ zGMtA`g|8313-YPCA1;Fr!qeavL;Ba@81Zkz_rquXzA;aMe*=f%HzBXg6HcdocxK>= zz#2T6^tJHu@Dj);W>a{-H>AH9s=c%D>97;t-w@JohHBs2;Fa(_Q04s`s{JR?$tS|c z!?WNSQ0aB3c8x=oza8?4*#q^x4ev9kp*sxq-D^Vp^>7LCw?O58JJk5S7pmL`0zV(# ze;KNs4~6va1b!brjr52VV*I!mmNqQ=_wP{-D}<2~_%} zP~~oeYVWQP-v?FhOQ6baLFv;`sPA42)y|us#`9LFe7D0>;Rm4l^)aaOzX0{!KSF)? z5LCWzLbdCAQ2O+r;r;(WeYb?cCTLEDs%JS=IYUtGy#OlT`jEaEYTkB0wSON}e`lcb zrGW)h{YRnNeH~Q&w?LKuZg>Gbf|jHg-?R3q2}vSsC6|F;ti;AETPJIH9QmE2%iH#5Yqo1s{F4(mHQp2 z_WvNH{{*6n=2uYdelp5V)658Dh|PA$D-(zK%b>o$1*(0wLG|ZusCL{7Ro??p{r|hb ze+us(g03A<Xa0!iJDVvu=wc|}t`R|6xcMnwg_l5W;Lj2QEdil2@ z{oh0Se?V6sRQ*4Os`nRA?LGw~uX0a^G{Kw!mH&JwJ-ax>*9DHllStnRe@0+CRC~r5 ze6{!Tz?VXe-w~*G-3+x}?+*MZ#B`X?LFvagU>!aTKMT){{Pz#TONjpxYJM)n2&?_O zq4eNIQ2jUvH6Qa(^;`?Jer^oucR=NPKh!vU1Ztcg2=T83{wq|z??TzDABOZT%l&t| zp!9Jcd@eiy)&85q`?o^1jc{Toz${}tZ< z3Thmep5xcaGobY2LbwZ#LG|+nsB+&9HDB+77r}3Z_fK8n*Uc)}B>fUN4c`Iv-DA%6 z{a*^z&L=|k^J!51Ivc88!*B__5UO8eP)E`AB3vsEAZLyhY*u#o_L|OgMWDuBdioBegS;CVM^+#gAonA4$X_Cxk#ms2=UO87A)gM3T3dG^*C5in z2ay*dmm@RCr;v@vg^2WbJyJby34zzao00RY7f?E-=QI!V64*s{hWOjy6GHeIfx;V+ zL&)98Ey!z-t%!8{nMn0qOyEzD4^nRa5 z=&d0(3FQMU4e`~m9m2Q5U5IS3o~L-2x5GO^coZHB;T9YY;mhDYq>20)vKG-Zg~%4} zKt6=*M)o65MxKkDflMHJ-hez7xkr)koD1JyMd0bkCCGD-qllhYBWEJ-LrzA{Ltct( zLT*I<8qqV4SY(4D15ZYH3^@sjkpj^(>*0PM2;rv&K3iN-MDvL~T$poP&A6Bwi^iMH zD1>`yyRx=@MB*OX%H|)LJZV$gD0{hAj(5v!m08)&qB1E{_K{jG+Le`2VaupiGo!A0 zv#u!ftUbG7pG_NC%SL4uO?I-pEGBYW6zf)p*U`CWU%X~?bS&D&*OO(Om$upa_Uf#g zN9CO5^JZp?s7)!da= zY?Rx$8L6s-JhORRCRsb0?IukdWqH(?%Q7;>$JOW?RbOSsqeh(Cb~DbSY$mevwp|v( zN=>uILE0Xdk*m9)2Z!4lg}5DcI}AzEp7r_3&J69a@od*dQ}J|aUBb?|45IAUkfg9~i#$am@RZ+K-W{ee42CJnpk7kn84!I166I#}`wy9puBu6xJ z(M*=6*3DcyN&^$uDvEOXVI7th$IVs$% z!VU_EDxr6p>{7|YdS9g{MJYW})aEEs^~!%>Hs|q7X|^;Iehzh=qM9wzIsY3?+OnkI zg^w0yn{6|4Xv35a&aZB}+(MZIwuv@}I{1+&?VpZ2UTXJ>R^ zD7rejEZSC2%+5H$YS==WzB4|Ow7RXRNRHZiw4yLOZOPgSD9o;yRkO>fCf250FtT5} zGK{P~FE9w*Hp^TaklEF3P1CyFd$7>5&YifN^Ts2!b+fyJ?v`0znBCoy0kstiGr0O!rMJst4+{M%w=U}oCY*K@_=XuYi%%0sZLR}3zfV}8dXYW(2nW@v- zADnfigjia+Zgsq2*i2+ppB0$3tlbNcl)DaU0w(fIYtBq`r_-dEGkfBOY~P-^ebD$V zJwTbm9`9y5g#8$W>GdF=rpXo4ot<7VlNe_+*_g9U_Ksel*$*+V`Ee$4*i70uZ_Eh= zP4_6E^CoCYFI2CBu2mt~x2k8*sz9|(OwMJ8BeuL?N-3>M=!C%qW$N>AZ{M-VLtc<6Z;}cB(z#ZACu4h*oZzyo&Dh z{V>03s`N6RnK8}@W9C^PZL6WFmP0?pNLGmjy(8RJ5`NS{GufSH?UZcQ1R2z#ILl~h zx}Tmw@{85|{{I%$`M=Ymn!+<-DDVSWvh&y}ED~w>ncD|kz-@8?jdKI0j_>A91QxT7_{L_SBfV$C^) zX~qkMnZq99+Z3j-7^r!-{14!t*S0rnSK%}8Nj(~z;gR7BmhG{c^4iW~Hfh#2c4v#) zR926cP3)ekZDQ6`Pfb2gJz6s|dO>YuO>NC+G`hAvdf|DaBO@bZtjVCN@Dt>_s6KkW z&!=6fHkHTi0uN6H!42xhY#~~Q^XXFUW%vv&JDn{IW79V*+kyAjWs|CD5dJS8)FWH$ z-!i#u=k}dj`aK^V9$ALhhto?#7CQ8(v`5O-os=zX3|~IZS@7%kPHnAS+|Q?`&DgxQ zg>!<8UOl>aIw_aEpf-_Ne61SW?qQ61p>9@M865{mOQ9*7|64)mXovjahcE73T-}pf);m(b^$?PxROS!fz%M zw6!)uYloM)b1nwAcgkJ-P~1%N-Z8aG-^F}(+wmjPx5!~{b8M?J_Db54+S!4ER>qun zTZ?z%5a`%ju*a8+$I5O>jFayq@kZ93NoMJ6ULAmoGVYyXHzu}?kDfF+`wgzlzN1^6 zfj4m~wC$t)Pba&mZ!6~D8_vD>2AP(!#aGIILuo~#gKw9WK+YNV%B&!PBXHEg86z1# zVe#H}M0vcP=a*APgxS(Tk@N53v6xz`L$S}xG3P)Wbr}LROI|Lu;@;sVnsKSi>PM2 zm2htlbZ1qxWeltL%565{4!SyZ5T|I{==xbR?*50qR`$Rzn!f7$b2%P;IGEGK@dKz3 zb2{sf>ZH&~HY1j95<86<*v!qgOo#IS}CW;ZHCH`q=wD>1u#cKiXISJjcYHzIx8)wI&2ffjIFua3b3UwYLT zI8pzG@2;rEKAhAkiW?8KtBU)fl?CGb9yeo7@V(YmokRV5O&>hX%c#w^QMgCR&};t* zDhVC=-K*HbQqIwpR7a~VWug@no5i=LB?hn1*}fNEYjCG@E;mm9Wbpc)^sie&XBwU2 zRJKw13zO=Ak3Dh+d~@9S-XHoH4GeCA-gQ{LQ*kR^{7@FL^T`6cqke1gZk_cr69O^E z_||l8O&k4pOC6KLsou_KI`X4-x_Q<9!&UIGX}hgBGwsEXV`ejxX>ZB1X7^}=E3r7r zyR5qyBkXNrxB+l0(69=nr7ZehV_7LN*P{Nnt_v~Lqu^M^xF%Y*SRl@@vIsJ~IxrX7 z@XULD#|h;AQK^t~zUQIdD~2 z>I0#k5u_z_>iB55R|s35)BoOHXgS_%TlUts;^4Mfnf$VH8SoXfjvkrr#~VX@qL;l^ zANLY1aPFAbS*}-{1!fI!vSaTG+sTagN>C{@sO{{6>^{B{6Un-1$fuM7_-hE=KxoPw zrSjO8LN`&qIM$QTAdjzZn(j=}b8^`sfi% zhw`DOvD}e@{aE)G87?9NkJ_**O8(vAEk9TCc#|BGoM8xQ!S=Yd?~`OVe*2YQ-DdnQ zD}OwAlI~u^UutA*WLQ5s;LU;avBKfSO!-4h-IVS+W867y_-fo?J&LQ~hY$zXjVoRz z_Zzu{>q~}D0V#FQ__>s7Xq^2iOz$=$x+d%R?G;7spA%keu&=S1lQ)R##&lSYZvJDBgfpT0a5;>J%Ur`Pz^0JGflHeqNn4(CLgsR}!<-#PN zZ%^;-DdnUpQ~R4wcTYcm{p(-<_8;H2?1bU@8uBhAKf{<8;j_zm@!WQS-_#8YFz5>bsPSHbYX2I18~hnm zz4Om6c`;PImGB(6)^ihFMt%oW{p+FDy&tN68*1F#=kN494pFta-{((2jsFE-{s=@x z=Ic=N{Fdi;AX78XKcd>sP=21<}(Q246lY7f3q(ifvUF) zY91f(`J18U5kRfG3pMUB&wHWzebDnH)cB7=>Em&zc7FtAA5TM#|F=-%JqOkP1*mpE zgsS(l|NbMNe;r;#`CHf=_4gjA`jhEl*{5zo9 zTc5uSs$CUoew+OFYdm*CwVQ;hce7{Re?JH{uN-O~$Kbo+$9?`0sD8fzwazCYKeOP= zpNF!qA3)9PU!nT>G1RzkdV9&UpvupO(#JcY_T#-!dRqxKPSx`&_{-$CK-Jst%WsD2 z_cotzL5h&Qh=ELg{-Ils+~>erAl9_PGJIj#;Sw?(qC5)O9 zyuJc8-V;#$JPD=uKY`khXQ0OWd(T&(`g_B38JDx#Er;s=JgD|7p!BuMf8XT4Z}l95 zn&$*m{TqCF6Kb6uxC$PFn56kK)I9&#^V^Uqm}j8Y@gkI7U-kK)Lap-*oQ&-90_e^I z)VLL>{x(4AZL{ZIsC}qI_4gsD^Le+=-vc$?XFMN*n(tSk`aK1uhi`lS1(g22@AEH0 z&FkNw`u{0Zf6Lxe>h(OR{6$dTt>!sovQwGV&o`2y5>UWVH5SE1(fpHO-S9pFHYCgw3?}L|+KjFVW2{q1BQ0<@g`M>o19@IWP57qBW zzWi0Fb^Qox9slL?7uvG?-Jb9FtU~oa1l7+rsCDj!D!<7yfby#m`~|3IO9^+bEa?c5 zZRmNhM5$ZS0dgmD)R$lHdB9V1*7IRx8}dnIcz&&f*#UnK`7ClB@*9ZO_b{U8azysC zACVqEhI|?MG;$g8c|_0Wkiw%p<*LCy9?E zL%!f{D4%_!&kK{t?Z}&vUqSTTfwYiYkb965NDcWdr1xA!LjI$Qd_ys02e}K` zhfE-xn8P4SHDr;U#$+=F^aMVf|jZl}VaLnh0Uj@=Q3?WWnTQS@3j6?K-R z*uwhORn?Vft-jT44;xV@Xv4)NZV&SyYG-D9lm&Gbzg?zcMw?MCC5;{~f;>uMGdjn( z<(o~-b7sm{71m1lTxMA`Itx;>qsWUiw60QS#=;mywfl|7uz}O|b?K+}jJYmqvh%Z1 zX5)l?3C(p0I+!;*<2-DIskxr??w}sFd1tw;4wl>qP-xK%&F(O06+PJTAZDLZUuvh^ zYRf8Rrgqw=%;$Qgt??0v`x$=d15Bo!90fUkb2nNQI;=F(^l0|owl5B zQKMG^6DQa*=0e6LC`z%p%$22XJek!*n#@EP+eGPw%)X!@)87|z@baF;>ftO) z8j;(p#Z$h9uW4@grcE^OTv7Qh9n#XYJrXrrVLo8c(9De9IF-1CCgV_p^z_zGF)s=W zAq|5=X0oWG*u3C8PZk~Hj=Elp2CPiYm1kyZHpD-=Bf-9-Wjj`IZj5sRQ*yB+c~d{h zIr#hC6(AiQ2-=*D17X~I*UAiEaKWyI^W=@7JkGWebTz;-ITO2T{mRTVoKwq8Gnmgz zC|{77Sxm28p1Tq@*Fnon$DIfm#hFRGadt~<;wGYLnStJR4BlGjDJyp~3o*9LX_a@+ z`f`+!8OCNAbI!01a^X~VHY*3hRAyIOdUe>rf%VJxg}O^B<5??eRz`|eR+&m_cKO8K zsmeBXK#Q!%lh*9|!Rm&};QC5+&{nUgRX1H;9UL5_VnruMo&V2zRa?EXR;`xxF2S0; zx*p}rZ>&rtA-6&Wzk4J}o0)t=%}!4bO@~9%(=kS`&TG}R>xZV}5{sqNagucXrzPpe z+UdAa+t66+8XZ-I291v{7R5))+Px~Fufz2<9prh+=!?m)pIlOFHt)23Etf27xnx*#Qd6`^xQGxo}$@xN_i%e)Y+uNE_j{Qi(NNYH^}naLHA6BxxtB*|_Vn z*_QP~woGnW9otK`*y@_0en%roa;OuehiFi#uDxpGTHZhJ*KbjJx(Vi58DzEt%S}B= z)1aB8oLd_-@`79DcJeM(bD>@%Xamphv>)#U#Cx5ElUx)E`!d~Y3y6@X&qOV>mi7WbPWNI2 zI1({(7)Q;-21^g}Vl=uK0}@G5_x8XHFMK0tG6#HIFPYR2hFo#IEWTnc(08hZjYhQa z%^3Gcz-rqF9hH!ehj8bmAf>PL$$AU4aYV?AKq661h)PZr^5< znEJw_QATfu=rD;JAwiqLsVXo`eIOY0*ozE>4e;MdFQOb}GgBtn z=3kH*%_C_tFbkh;=TRrg6j?5&HyV7o;y=@lT7lWktA8(Z(FGcsw>}t!m`e+|gjM3E z*Q=w7gqXa!Hx*!FBQC%+r^T0L%)<$^-85p2UGDNu&<#vy;Za4JNiPu)BzEd)XkvE2 z?K-EOV9{H=5(xpds%WS7;NXi`hryyct_r+JKvHYy23-QCltWGsnz3cR0)GgpKVV|l zHZk$SDb7h^_LP(c=uZB`qCR>|eO!uvVx!7iou&AAPR@u(2P=)7|0=^%nVWi2%$PY- zno*Rxt7xg^K?h=a4xrO;S+4F~kyPBay;`GGYA!scaMdZlZGCm$oti0nRp3#Yt-@ES zj}P54ew8sFaHCOxFO>3_GEr<9#5OnyNQ%CCMx8PF20jTpHDNm<@S#pGq4qyl6J=D3 z_wbI{j1(Cit9~AGoV7vyRIQ&RP9nT@n_fD<@`#wpz?nT8O60}y^(S+t^l?TpttQrV zQ4uj`|Bv?4^kQ6#UV9FOf6_#?Wq)*z#;{6`*P^md&$w-1*8@4AjPt7?H&Kuqc)!J; zP*ld9>$b1-W&RT`z`3@p{QsBwRX7jkuM{&?UM=Xv#k#}2d(f$acsD`)njKErv(`%x z^@e3N?Qv!ngIs${(p_{~y;wL(KInsAs$yBpU(qinG%JtV*5Oy!>#WTxOWa!?)WG03 qgC$$9*te|b%@u3ur}`$@H\n" "Language-Team: ThemeBoy \n" "Language: es_ES\n" @@ -20,332 +20,320 @@ msgstr "" "X-Poedit-Bookmarks: -1,75,-1,-1,-1,-1,-1,-1,-1,-1\n" "X-Poedit-SearchPath-0: ..\n" -#: ../functions.php:56 -msgid "Add New" -msgstr "Añadir objeto" - -#: ../functions.php:57 ../functions.php:80 ../functions.php:1071 -#: ../functions.php:1072 -#, php-format -msgid "Add New %s" -msgstr "Añadir nueva %s" - -#: ../functions.php:58 ../functions.php:77 -#: ../admin/hooks/post-updated-messages.php:10 ../admin/settings/events.php:32 -#: ../admin/settings/events.php:63 ../admin/settings/players.php:29 -#: ../admin/settings/players.php:61 ../admin/settings/tables.php:33 -#, php-format -msgid "Edit %s" -msgstr "Editar %s" - -#: ../functions.php:59 -#, php-format -msgid "New %s" -msgstr "Nueva %s" - -#: ../functions.php:60 ../functions.php:78 -#, php-format -msgid "View %s" -msgstr "Ver %s" - -#: ../functions.php:61 ../functions.php:84 -#, php-format -msgid "Search %s" -msgstr "Buscar %s" - -#: ../functions.php:62 ../functions.php:85 ../functions.php:626 -#, php-format -msgid "No %s found." -msgstr "No se encontraron %s." - -#: ../functions.php:63 -#, php-format -msgid "No %s found in trash." -msgstr "Ninguna %s encontrada en la papelera." - -#: ../functions.php:64 ../functions.php:82 ../functions.php:83 -#, php-format -msgid "Parent %s" -msgstr "Superior %s" - -#: ../functions.php:76 ../admin/hooks/restrict-manage-posts.php:8 -#: ../admin/hooks/restrict-manage-posts.php:18 -#: ../admin/hooks/restrict-manage-posts.php:28 -#: ../admin/hooks/restrict-manage-posts.php:40 -#: ../admin/widgets/future-events.php:65 ../admin/widgets/future-events.php:81 -#: ../admin/widgets/future-events.php:97 -#: ../admin/widgets/future-events.php:113 -#: ../admin/widgets/recent-events.php:65 ../admin/widgets/recent-events.php:81 -#: ../admin/widgets/recent-events.php:97 -#: ../admin/widgets/recent-events.php:113 -#, php-format -msgid "All %s" -msgstr "Todas las %s" - -#: ../functions.php:79 -#, php-format -msgid "Update %s" -msgstr "Actualizar %s" - -#: ../functions.php:81 -#, php-format -msgid "New %s Name" -msgstr "Nuevo nombre %s" - -#: ../functions.php:116 +#: ../functions.php:74 msgid "1 view" msgstr "1 vista" -#: ../functions.php:118 +#: ../functions.php:76 #, php-format msgid "%s views" msgstr "%s ver" -#: ../functions.php:143 +#: ../functions.php:101 msgid "Scheduled" msgstr "Programada" -#: ../functions.php:145 ../functions.php:482 ../functions.php:485 -#: ../functions.php:1899 ../functions.php:2050 ../functions.php:2187 +#: ../functions.php:103 ../functions.php:533 ../functions.php:536 +#: ../functions.php:1996 ../functions.php:2198 ../functions.php:2333 +#: ../admin/post-types/list.php:117 ../admin/widgets/player-list.php:78 +#: ../admin/widgets/player-list.php:91 msgid "Played" msgstr "Jugado" -#: ../functions.php:147 +#: ../functions.php:105 msgid "Draft" msgstr "Borrador" -#: ../functions.php:149 +#: ../functions.php:107 msgid "Pending Review" msgstr "Pendiente de revisión" -#: ../functions.php:151 ../admin/hooks/post-updated-messages.php:31 +#: ../functions.php:109 ../admin/hooks/post-updated-messages.php:34 msgid "M j, Y @ G:i" msgstr "M j, Y @ G:i" -#: ../functions.php:172 ../functions.php:176 ../functions.php:416 -msgid "Sum" -msgstr "Suma" - -#: ../functions.php:172 ../functions.php:417 -msgid "Average" -msgstr "Promedio" - -#: ../functions.php:214 -msgid "Integer" -msgstr "Entero" - -#: ../functions.php:215 -msgid "Decimal" -msgstr "Decimal" - -#: ../functions.php:216 ../functions.php:636 -#: ../admin/templates/event-details.php:13 -msgid "Time" -msgstr "Hora" - -#: ../functions.php:217 -msgid "Custom Field" -msgstr "Campo personalizado" - -#: ../functions.php:344 ../functions.php:398 -msgid "(no title)" -msgstr "(sin título)" - -#: ../functions.php:482 ../functions.php:485 ../admin/post-types/event.php:3 -#: ../admin/settings/settings.php:11 -msgid "Events" -msgstr "Eventos" - -#: ../functions.php:482 -msgid "Attended" -msgstr "Asistió" - -#: ../functions.php:488 ../admin/post-types/event.php:44 -#: ../admin/post-types/result.php:3 ../admin/settings/events.php:16 -#: ../admin/settings/events.php:32 ../admin/templates/event-results.php:48 -msgid "Results" -msgstr "Resultados" - -#: ../functions.php:491 ../functions.php:492 ../functions.php:493 -#: ../functions.php:494 ../admin/post-types/outcome.php:3 -#: ../admin/settings/events.php:47 ../admin/settings/events.php:63 -msgid "Outcomes" -msgstr "Resultados" - -#: ../functions.php:492 -msgid "Streak" -msgstr "Racha" - -#: ../functions.php:493 -msgid "Last 5" -msgstr "Últimos 5" - -#: ../functions.php:494 -msgid "Last 10" -msgstr "Últimos 10" - -#: ../functions.php:497 ../admin/post-types/column.php:3 -#: ../admin/post-types/team.php:33 ../admin/settings/tables.php:11 -#: ../admin/settings/tables.php:33 -msgid "Columns" -msgstr "Columnas" - -#: ../functions.php:500 -msgid "Player Statistics" -msgstr "Estadísticas del Jugador" - -#: ../functions.php:509 -msgid "Operators" -msgstr "Operadores" - -#: ../functions.php:519 -msgid "Constants" -msgstr "Constantes" - -#: ../functions.php:523 ../admin/post-types/event.php:134 -msgid "— Select —" -msgstr "— Elegir —" - -#: ../functions.php:626 ../admin/post-types/event.php:5 -#: ../admin/widgets/future-events.php:123 -#: ../admin/widgets/recent-events.php:123 -msgid "events" -msgstr "eventos" - -#: ../functions.php:634 ../admin/post-types/event.php:4 -#: ../admin/post-types/event.php:40 ../admin/post-types/event.php:196 -msgid "Event" -msgstr "evento" - -#: ../functions.php:635 ../admin/templates/event-details.php:13 -msgid "Date" -msgstr "Fecha" - -#: ../functions.php:673 ../functions.php:814 ../functions.php:887 -#: ../functions.php:1071 ../functions.php:1752 ../functions.php:2187 -#: ../admin/hooks/gettext.php:9 ../admin/post-types/list.php:31 -#: ../admin/post-types/list.php:82 ../admin/post-types/team.php:4 -#: ../admin/post-types/team.php:41 ../admin/templates/event-results.php:52 -msgid "Team" -msgstr "equipo" - -#: ../functions.php:716 ../functions.php:992 ../functions.php:1984 -#: ../admin/hooks/register-activation-hook.php:147 -#: ../admin/post-types/player.php:4 ../admin/templates/event-players.php:28 -msgid "Player" -msgstr "jugador" - -#: ../functions.php:761 ../functions.php:813 ../functions.php:1484 -#: ../functions.php:2187 ../admin/post-types/event.php:69 -#: ../admin/post-types/event.php:199 ../admin/post-types/list.php:30 -#: ../admin/post-types/list.php:70 ../admin/post-types/table.php:29 -#: ../admin/post-types/table.php:68 ../admin/templates/event-details.php:22 -#: ../admin/terms/season.php:4 -msgid "Season" -msgstr "temporada" - -#: ../functions.php:837 ../functions.php:915 ../admin/post-types/event.php:64 -#: ../admin/post-types/event.php:77 ../admin/post-types/event.php:90 -#: ../admin/post-types/player.php:85 -msgid "-- Not set --" -msgstr "-- Sin configurar --" - -#: ../functions.php:891 ../admin/post-types/outcome.php:4 -msgid "Outcome" -msgstr "resultado" - -#: ../functions.php:943 ../functions.php:1048 -msgid "Starting Lineup" -msgstr "Alineación inicial" - -#: ../functions.php:944 ../functions.php:1049 -msgid "Substitute" -msgstr "sustituto" - -#: ../functions.php:968 -msgid "None" -msgstr "ninguno" - -#: ../functions.php:996 -msgid "Status" -msgstr "Estado" - -#: ../functions.php:1027 ../admin/templates/event-players.php:82 +#: ../functions.php:130 ../functions.php:134 ../functions.php:467 +#: ../functions.php:1059 ../admin/templates/event-players.php:82 msgid "Total" msgstr "total" -#: ../admin/hooks/admin-enqueue-scripts.php:20 -#: ../admin/post-types/event.php:110 -msgid "Remove" -msgstr "eliminar" +#: ../functions.php:130 ../functions.php:468 +msgid "Average" +msgstr "Promedio" -#: ../admin/hooks/admin-menu.php:46 ../admin/post-types/player.php:30 -#: ../admin/post-types/staff.php:48 ../admin/post-types/team.php:42 -#: ../admin/terms/league.php:3 ../admin/widgets/future-events.php:65 -#: ../admin/widgets/recent-events.php:65 +#: ../functions.php:172 +msgid "Integer" +msgstr "Entero" + +#: ../functions.php:173 +msgid "Decimal" +msgstr "Decimal" + +#: ../functions.php:174 ../admin/templates/event-details.php:13 +msgid "Time" +msgstr "Hora" + +#: ../functions.php:175 +msgid "Custom Field" +msgstr "Campo personalizado" + +#: ../functions.php:396 ../functions.php:449 +msgid "(no title)" +msgstr "(sin título)" + +#: ../functions.php:533 ../functions.php:536 ../admin/post-types/event.php:6 +#: ../admin/post-types/event.php:16 ../admin/settings/settings.php:11 +msgid "Events" +msgstr "Eventos" + +#: ../functions.php:533 +msgid "Attended" +msgstr "Asistió" + +#: ../functions.php:539 ../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 "Resultados" + +#: ../functions.php:542 ../functions.php:543 ../functions.php:544 +#: ../functions.php:545 ../admin/post-types/outcome.php:4 +#: ../admin/post-types/outcome.php:15 ../admin/settings/events.php:55 +msgid "Outcomes" +msgstr "Resultados" + +#: ../functions.php:543 +msgid "Streak" +msgstr "Racha" + +#: ../functions.php:544 +msgid "Last 5" +msgstr "Últimos 5" + +#: ../functions.php:545 +msgid "Last 10" +msgstr "Últimos 10" + +#: ../functions.php:548 ../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 "Columnas" + +#: ../functions.php:551 +msgid "Player Statistics" +msgstr "Estadísticas del Jugador" + +#: ../functions.php:560 +msgid "Operators" +msgstr "Operadores" + +#: ../functions.php:573 +msgid "Constants" +msgstr "Constantes" + +#: ../functions.php:577 ../admin/settings/settings.php:46 +msgid "— Select —" +msgstr "— Elegir —" + +#: ../functions.php:690 ../functions.php:844 ../functions.php:919 +#: ../functions.php:1804 ../functions.php:2333 ../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 "equipo" + +#: ../functions.php:712 ../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 "Editar" + +#: ../functions.php:716 +msgid "Cancel" +msgstr "Cancelar" + +#: ../functions.php:717 +msgid "Save" +msgstr "Guardar" + +#: ../functions.php:746 ../functions.php:1024 ../functions.php:2092 +#: ../admin/hooks/register-activation-hook.php:147 +#: ../admin/post-types/player.php:5 ../admin/templates/event-players.php:28 +msgid "Player" +msgstr "jugador" + +#: ../functions.php:791 ../functions.php:843 ../functions.php:1535 +#: ../functions.php:2333 ../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 "temporada" + +#: ../functions.php:867 +msgid "— None —" +msgstr "— Ninguna —" + +#: ../functions.php:888 ../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 "No se encontraron." + +#: ../functions.php:923 ../admin/post-types/outcome.php:5 +msgid "Outcome" +msgstr "resultado" + +#: ../functions.php:947 ../admin/post-types/event.php:76 +#: ../admin/post-types/event.php:91 ../admin/post-types/event.php:106 +msgid "-- Not set --" +msgstr "-- Sin configurar --" + +#: ../functions.php:975 ../functions.php:1080 +msgid "Starting Lineup" +msgstr "Alineación inicial" + +#: ../functions.php:976 ../functions.php:1081 +msgid "Substitute" +msgstr "sustituto" + +#: ../functions.php:1000 +msgid "None" +msgstr "ninguno" + +#: ../functions.php:1028 +msgid "Status" +msgstr "Estado" + +#: ../functions.php:1101 ../functions.php:1118 +#: ../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 "Añadir objeto" + +#: ../admin/hooks/admin-enqueue-scripts.php:24 +msgid "— Remove —" +msgstr "— Eliminar — " + +#: ../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 "Ligas" -#: ../admin/hooks/admin-menu.php:52 -#: ../admin/hooks/restrict-manage-posts.php:18 -#: ../admin/post-types/metric.php:26 ../admin/post-types/player.php:28 -#: ../admin/post-types/staff.php:46 ../admin/post-types/statistic.php:27 -#: ../admin/settings/players.php:16 ../admin/settings/players.php:48 -#: ../admin/terms/position.php:3 +#: ../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 "Posiciones" -#: ../admin/hooks/admin-menu.php:58 -#: ../admin/hooks/restrict-manage-posts.php:28 -#: ../admin/post-types/player.php:31 ../admin/post-types/staff.php:49 -#: ../admin/post-types/team.php:43 ../admin/terms/season.php:3 -#: ../admin/widgets/future-events.php:81 ../admin/widgets/recent-events.php:81 +#: ../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 "temporada" -#: ../admin/hooks/admin-menu.php:64 ../admin/terms/venue.php:3 -#: ../admin/widgets/future-events.php:97 ../admin/widgets/recent-events.php:97 +#: ../admin/hooks/admin-menu.php:70 ../admin/terms/venue.php:4 +#: ../admin/terms/venue.php:18 msgid "Venues" msgstr "estadios" #: ../admin/hooks/admin-post-thumbnail-html.php:5 -#: ../admin/hooks/admin-post-thumbnail-html.php:6 #: ../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:12 ../admin/hooks/gettext.php:15 -#: ../admin/hooks/gettext.php:27 ../admin/hooks/gettext.php:30 +#: ../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 "seleccionar %s" #: ../admin/hooks/admin-post-thumbnail-html.php:5 #: ../admin/hooks/admin-post-thumbnail-html.php:6 -#: ../admin/hooks/gettext.php:12 ../admin/hooks/gettext.php:15 -#: ../admin/hooks/gettext.php:18 ../admin/post-types/team.php:30 +#: ../admin/post-types/team.php:38 msgid "Logo" msgstr "logo" +#: ../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 "eliminar %s" + #: ../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:27 ../admin/hooks/gettext.php:30 -#: ../admin/hooks/gettext.php:33 ../admin/post-types/player.php:45 -#: ../admin/post-types/staff.php:27 +#: ../admin/post-types/player.php:58 ../admin/post-types/staff.php:34 msgid "Photo" msgstr "foto" -#: ../admin/hooks/gettext.php:18 ../admin/hooks/gettext.php:33 -#, php-format -msgid "Remove %s" -msgstr "eliminar %s" +#: ../admin/hooks/gettext.php:12 ../admin/hooks/gettext.php:15 +msgid "Select Logo" +msgstr "Seleccionar logo" -#: ../admin/hooks/gettext.php:24 ../admin/post-types/player.php:27 -#: ../admin/post-types/staff.php:45 -msgid "Name" -msgstr "Nombre" +#: ../admin/hooks/gettext.php:18 +msgid "Remove Logo" +msgstr "Retire Logo" + +#: ../admin/hooks/gettext.php:24 ../admin/settings/settings.php:63 +#: ../admin/widgets/countdown.php:44 +msgid "(Auto)" +msgstr "(automático)" + +#: ../admin/hooks/gettext.php:27 ../admin/hooks/gettext.php:30 +msgid "Select Photo" +msgstr "Seleccione Foto" + +#: ../admin/hooks/gettext.php:33 +msgid "Remove Photo" +msgstr "Retirar fotos" #: ../admin/hooks/gettext.php:36 ../admin/hooks/gettext.php:39 #: ../admin/hooks/gettext.php:42 @@ -353,69 +341,61 @@ msgstr "Nombre" msgid "Date/Time: %1$s" msgstr "Fecha/Hora: %1$s" -#: ../admin/hooks/manage-posts-columns.php:3 ../admin/post-types/event.php:202 -#: ../admin/post-types/list.php:32 ../admin/post-types/player.php:32 -#: ../admin/post-types/staff.php:50 ../admin/post-types/table.php:31 -#: ../admin/post-types/team.php:44 +#: ../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 "Vistas" -#: ../admin/hooks/media-buttons.php:7 ../admin/hooks/media-buttons.php:8 -#, php-format -msgid "Add %s" -msgstr "Añadir %s" +#: ../admin/hooks/manage-posts-columns.php:83 +#: ../admin/post-types/player.php:139 ../admin/templates/player-metrics.php:26 +msgid "Current Team" +msgstr "equipo actual" #: ../admin/hooks/media-buttons.php:7 -msgid "Map" -msgstr "mapa" +msgid "Add Map" +msgstr "Añadir Mapa" -#: ../admin/hooks/media-buttons.php:8 ../admin/post-types/table.php:4 -#: ../admin/post-types/table.php:45 ../admin/widgets/league-table.php:6 -msgid "League Table" -msgstr "Tabla de la Liga" +#: ../admin/hooks/media-buttons.php:8 +msgid "Add League Table" +msgstr "Añadir Tabla de la Liga" #: ../admin/hooks/plugin-action-links.php:3 msgid "Settings" msgstr "Ajustes" -#: ../admin/hooks/post-updated-messages.php:8 -#: ../admin/hooks/post-updated-messages.php:15 -#: ../admin/hooks/post-updated-messages.php:18 -#, php-format -msgid "%s updated." -msgstr "%s actualizada." +#: ../admin/hooks/post-updated-messages.php:10 +msgid "Settings saved." +msgstr "Ajustes guardados." -#: ../admin/hooks/post-updated-messages.php:20 -#, php-format -msgid "%s published." -msgstr "%s publicada" +#: ../admin/hooks/post-updated-messages.php:12 +msgid "View All" +msgstr "Ver todo" + +#: ../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 "Cambios guardados." #: ../admin/hooks/post-updated-messages.php:23 -#, php-format -msgid "%s saved." -msgstr "%s guardados." +#: ../admin/hooks/post-updated-messages.php:28 +#: ../admin/hooks/post-updated-messages.php:38 +msgid "Success!" +msgstr "¡Lo lograste!" -#: ../admin/hooks/post-updated-messages.php:25 -#, php-format -msgid "%s submitted." -msgstr "%s enviado." - -#: ../admin/hooks/post-updated-messages.php:27 -#: ../admin/hooks/post-updated-messages.php:33 -#: ../admin/hooks/post-updated-messages.php:37 +#: ../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 "Vista previa %s" -#: ../admin/hooks/post-updated-messages.php:30 +#: ../admin/hooks/post-updated-messages.php:33 #, php-format -msgid "%s scheduled for: %s." -msgstr "%s programada para: %s." - -#: ../admin/hooks/post-updated-messages.php:35 -#, php-format -msgid "%s draft updated." -msgstr "borrador %s actualizado." +msgid "Scheduled for: %1$s." +msgstr "Programada para:%1$s" #: ../admin/hooks/register-activation-hook.php:8 msgid "League Manager" @@ -426,40 +406,44 @@ msgid "Team Manager" msgstr "Director del equipo" #: ../admin/hooks/register-activation-hook.php:129 -#: ../admin/post-types/event.php:119 ../admin/post-types/staff.php:3 -#: ../admin/post-types/staff.php:4 +#: ../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 "el personal" #: ../admin/hooks/restrict-manage-posts.php:8 +msgid "Show all positions" +msgstr "Mostrar todas las posiciones" + +#: ../admin/hooks/restrict-manage-posts.php:18 +msgid "Show all leagues" +msgstr "Mostrar todas las ligas" + +#: ../admin/hooks/restrict-manage-posts.php:28 +msgid "Show all seasons" +msgstr "Mostrar todas las temporadas" + #: ../admin/hooks/restrict-manage-posts.php:40 -#: ../admin/post-types/event.php:42 ../admin/post-types/event.php:197 -#: ../admin/post-types/player.php:29 ../admin/post-types/player.php:47 -#: ../admin/post-types/staff.php:28 ../admin/post-types/staff.php:47 -#: ../admin/post-types/table.php:30 ../admin/post-types/table.php:42 -#: ../admin/post-types/table.php:80 ../admin/post-types/team.php:3 -#: ../admin/widgets/future-events.php:113 -#: ../admin/widgets/recent-events.php:113 -msgid "Teams" -msgstr "Equipos" +msgid "Show all teams" +msgstr "Mostrar todos los equipos" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:43 +#: ../admin/templates/countdown.php:46 msgid "days" msgstr "día" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:44 +#: ../admin/templates/countdown.php:47 msgid "hrs" msgstr "hora" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:45 +#: ../admin/templates/countdown.php:48 msgid "mins" msgstr "acta" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:46 +#: ../admin/templates/countdown.php:49 msgid "secs" msgstr "segundo" @@ -479,254 +463,270 @@ msgstr "Preferencias de SportsPress" msgid "Skip setup" msgstr "Saltar la instalación" -#: ../admin/includes/notice-theme-support.php:6 +#: ../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 "" +"Su tema no declara soporte para SportsPress – si " +"encuentra fallos en la presentación por favor lea nuestra guía de " +"integración elija un tema compatible con SportsPress :)" -#: ../admin/includes/notice-theme-support.php:8 +#: ../admin/includes/notice-theme-support.php:7 msgid "Theme Integration Guide" msgstr "Integración" -#: ../admin/includes/notice-theme-support.php:9 +#: ../admin/includes/notice-theme-support.php:8 msgid "Hide this notice" msgstr "Ocultar este aviso" -#: ../admin/post-types/column.php:4 +#: ../admin/post-types/column.php:5 msgid "Column" msgstr "Columna" -#: ../admin/post-types/column.php:5 -msgid "columns" -msgstr "columnas" +#: ../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 "Nuevo" -#: ../admin/post-types/column.php:26 ../admin/post-types/metric.php:25 -#: ../admin/post-types/outcome.php:26 ../admin/post-types/result.php:26 -#: ../admin/post-types/statistic.php:26 ../admin/settings/events.php:20 -#: ../admin/settings/events.php:51 ../admin/settings/players.php:15 -#: ../admin/settings/players.php:47 ../admin/settings/tables.php:15 +#: ../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 "Ver" + +#: ../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 "Buscar" + +#: ../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 "Etiqueta" -#: ../admin/post-types/column.php:27 ../admin/post-types/column.php:49 -#: ../admin/post-types/outcome.php:27 ../admin/post-types/outcome.php:39 -#: ../admin/post-types/result.php:27 ../admin/post-types/result.php:40 -#: ../admin/settings/events.php:21 ../admin/settings/events.php:52 -#: ../admin/settings/tables.php:16 +#: ../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 "Clave" -#: ../admin/post-types/column.php:28 ../admin/post-types/column.php:53 -#: ../admin/settings/tables.php:17 +#: ../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 "ecuación" -#: ../admin/post-types/column.php:29 ../admin/post-types/column.php:61 -#: ../admin/settings/tables.php:18 -msgid "Precision" -msgstr "precisión" +#: ../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 "Redondeo" -#: ../admin/post-types/column.php:30 ../admin/post-types/column.php:65 -#: ../admin/settings/tables.php:19 +#: ../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 "Ordenar" -#: ../admin/post-types/column.php:37 ../admin/post-types/event.php:41 -#: ../admin/post-types/list.php:49 ../admin/post-types/outcome.php:34 -#: ../admin/post-types/player.php:46 ../admin/post-types/result.php:34 -#: ../admin/post-types/statistic.php:35 ../admin/post-types/table.php:48 +#: ../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 "Detalles" -#: ../admin/post-types/column.php:69 +#: ../admin/post-types/column.php:76 msgid "Disable" msgstr "Desactivar" -#: ../admin/post-types/column.php:77 +#: ../admin/post-types/column.php:88 ../admin/post-types/list.php:133 +#: ../admin/widgets/player-list.php:109 msgid "Descending" msgstr "Descendente" -#: ../admin/post-types/column.php:77 +#: ../admin/post-types/column.php:88 ../admin/post-types/list.php:132 +#: ../admin/widgets/player-list.php:108 msgid "Ascending" msgstr "Ascendente" -#: ../admin/post-types/event.php:45 ../admin/post-types/event.php:118 -#: ../admin/post-types/list.php:28 ../admin/post-types/list.php:43 -#: ../admin/post-types/list.php:93 ../admin/post-types/player.php:3 +#: ../admin/post-types/event.php:4 +msgid "Schedule" +msgstr "Programar" + +#: ../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 "evento" + +#: ../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 "Equipos" + +#: ../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 "estadística" + +#: ../admin/post-types/event.php:59 +msgid "Article" +msgstr "artículo" + +#: ../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 "liga" + +#: ../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 "estadio" + +#: ../admin/post-types/event.php:128 +msgid "Remove" +msgstr "eliminar" + +#: ../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 "Jugadores" -#: ../admin/post-types/event.php:47 -msgid "Article" -msgstr "artículo" +#: ../admin/post-types/event.php:152 +msgid "— Add —" +msgstr "— Añadir —" -#: ../admin/post-types/event.php:56 ../admin/post-types/event.php:198 -#: ../admin/post-types/list.php:29 ../admin/post-types/list.php:58 -#: ../admin/post-types/table.php:28 ../admin/post-types/table.php:56 -#: ../admin/templates/event-details.php:17 ../admin/terms/league.php:4 -msgid "League" -msgstr "liga" - -#: ../admin/post-types/event.php:82 ../admin/post-types/event.php:200 -#: ../admin/templates/event-venue.php:24 ../admin/terms/venue.php:4 -msgid "Venue" -msgstr "estadio" - -#: ../admin/post-types/event.php:201 +#: ../admin/post-types/event.php:217 msgid "Date/Time" msgstr "Fecha/Hora" -#: ../admin/post-types/list.php:3 +#: ../admin/post-types/list.php:4 ../admin/post-types/list.php:15 msgid "Player Lists" msgstr "Listas del jugador" -#: ../admin/post-types/list.php:4 ../admin/post-types/list.php:46 +#: ../admin/post-types/list.php:5 ../admin/post-types/list.php:53 +#: ../admin/widgets/player-list.php:47 msgid "Player List" msgstr "Lista de Jugadores" -#: ../admin/post-types/list.php:5 -msgid "player lists" -msgstr "listas de jugadores" - -#: ../admin/post-types/list.php:27 ../admin/post-types/table.php:27 +#: ../admin/post-types/list.php:34 ../admin/post-types/table.php:34 msgid "Title" msgstr "título" -#: ../admin/post-types/metric.php:3 ../admin/post-types/player.php:48 -#: ../admin/settings/players.php:11 ../admin/settings/players.php:29 -msgid "Metrics" -msgstr "métrica" +#: ../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 "Todas las" -#: ../admin/post-types/metric.php:4 ../admin/post-types/player.php:148 -msgid "Metric" -msgstr "métrico" +#: ../admin/post-types/list.php:110 ../admin/widgets/player-list.php:84 +msgid "Sort by:" +msgstr "Ordenar por:" -#: ../admin/post-types/metric.php:5 -msgid "metrics" -msgstr "métrica" - -#: ../admin/post-types/outcome.php:5 -msgid "outcome" -msgstr "resultado" - -#: ../admin/post-types/player.php:5 -msgid "players" -msgstr "jugadores" - -#: ../admin/post-types/player.php:43 ../admin/post-types/staff.php:25 -#: ../admin/post-types/team.php:28 -msgid "Publish" -msgstr "Publicar" - -#: ../admin/post-types/player.php:51 ../admin/post-types/statistic.php:3 -#: ../admin/settings/players.php:43 ../admin/settings/players.php:61 -msgid "Statistics" -msgstr "estadística" - -#: ../admin/post-types/player.php:54 ../admin/post-types/staff.php:29 -msgid "Profile" -msgstr "perfil" - -#: ../admin/post-types/player.php:74 ../admin/templates/player-metrics.php:15 +#: ../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 "número" -#: ../admin/post-types/player.php:80 ../admin/templates/player-metrics.php:16 +#: ../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 "Nombre" + +#: ../admin/post-types/list.php:129 ../admin/widgets/player-list.php:106 +msgid "Sort Order:" +msgstr "Orden de Clasificación:" + +#: ../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 "métrica" + +#: ../admin/post-types/metric.php:5 +msgid "Metric" +msgstr "métrico" + +#: ../admin/post-types/player.php:55 ../admin/post-types/staff.php:32 +#: ../admin/post-types/team.php:36 +msgid "Publish" +msgstr "Publicar" + +#: ../admin/post-types/player.php:64 ../admin/post-types/staff.php:36 +msgid "Profile" +msgstr "perfil" + +#: ../admin/post-types/player.php:112 ../admin/post-types/player.php:113 +#: ../admin/templates/player-metrics.php:21 msgid "Nationality" msgstr "nacionalidad" -#: ../admin/post-types/player.php:98 -msgid "Current Team" -msgstr "equipo actual" +#: ../admin/post-types/player.php:154 ../admin/templates/player-metrics.php:33 +msgid "Past Teams" +msgstr "Equipos anteriores" -#: ../admin/post-types/player.php:149 -msgid "Value" -msgstr "Valor" - -#: ../admin/post-types/result.php:4 +#: ../admin/post-types/result.php:5 msgid "Result" msgstr "resultado" -#: ../admin/post-types/result.php:5 -msgid "result" -msgstr "resultado" - -#: ../admin/post-types/staff.php:5 -msgid "staff" -msgstr "personal" - -#: ../admin/post-types/statistic.php:4 +#: ../admin/post-types/statistic.php:5 msgid "Statistic" msgstr "estadística" -#: ../admin/post-types/statistic.php:5 -msgid "statistics" -msgstr "estadística" - -#: ../admin/post-types/statistic.php:28 ../admin/post-types/statistic.php:41 -#: ../admin/settings/players.php:49 +#: ../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 "calcular" -#: ../admin/post-types/table.php:3 ../admin/settings/settings.php:12 +#: ../admin/post-types/table.php:4 ../admin/post-types/table.php:15 +#: ../admin/settings/settings.php:12 msgid "League Tables" msgstr "Tablas de la Liga" -#: ../admin/post-types/table.php:5 -msgid "league tables" -msgstr "tablas de ligas" +#: ../admin/post-types/table.php:5 ../admin/post-types/table.php:52 +#: ../admin/widgets/league-table.php:41 +msgid "League Table" +msgstr "Tabla de la Liga" -#: ../admin/post-types/team.php:5 -msgid "teams" -msgstr "equipos" - -#: ../admin/presets/baseball.php:5 -msgid "Baseball" -msgstr "béisbol" - -#: ../admin/presets/basketball.php:5 -msgid "Basketball" -msgstr "baloncesto" - -#: ../admin/presets/cricket.php:5 -msgid "Cricket" -msgstr "Críquet" - -#: ../admin/presets/football.php:5 -msgid "American Football" -msgstr "Fútbol americano" - -#: ../admin/presets/footy.php:5 -msgid "Australian Rules Football" -msgstr "Fútbol australiano" - -#: ../admin/presets/gaming.php:5 -msgid "Competitive Gaming" -msgstr "Gaming competitiva" - -#: ../admin/presets/golf.php:5 -msgid "Golf" -msgstr "Golf" - -#: ../admin/presets/hockey.php:5 -msgid "Hockey" -msgstr "Hockey" - -#: ../admin/presets/racing.php:5 -msgid "Racing" -msgstr "carreras" - -#: ../admin/presets/rugby.php:5 -msgid "Rugby" -msgstr "Rugby" - -#: ../admin/presets/soccer.php:5 -msgid "Soccer (Association Football)" -msgstr "fútbol" +#: ../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 "Padre:" #: ../admin/settings/events.php:1 msgid "Event Settings" @@ -736,23 +736,30 @@ msgstr "Configuración de eventos" msgid "General Settings" msgstr "Ajustes generales" -#: ../admin/settings/settings.php:10 ../admin/settings/settings.php:236 -#: ../admin/settings/settings.php:237 -msgid "SportsPress" -msgstr "SportsPress" +#: ../admin/settings/settings.php:10 +msgid "General" +msgstr "Generales" -#: ../admin/settings/settings.php:59 ../admin/widgets/countdown.php:43 -msgid "(Auto)" -msgstr "(automático)" +#: ../admin/settings/settings.php:50 +msgid "Custom" +msgstr "Personalizado" -#: ../admin/settings/settings.php:98 +#: ../admin/settings/settings.php:52 ../admin/settings/settings.php:102 msgid "Sport" msgstr "deporte" -#: ../admin/settings/settings.php:119 +#: ../admin/settings/settings.php:124 msgid "Main Result" msgstr "Resultado principal" +#: ../admin/settings/settings.php:241 ../admin/settings/settings.php:242 +msgid "SportsPress" +msgstr "SportsPress" + +#: ../admin/templates/event-details.php:13 +msgid "Date" +msgstr "Fecha" + #. translators: Calendar caption: 1: month name, 2: 4-digit year #: ../admin/templates/events-calendar.php:56 #: ../admin/templates/events-calendar.php:83 @@ -762,111 +769,884 @@ msgctxt "calendar caption" msgid "%1$s %2$s" msgstr "%1$s %2$s [opción de calendario]" -#: ../admin/templates/league-table.php:9 +#: ../admin/templates/league-table.php:27 msgid "Pos" msgstr "Pos" -#: ../admin/terms/league.php:5 -msgid "league" -msgstr "liga" +#: ../admin/templates/player-list.php:46 +msgid "Rank" +msgstr "Rango" -#: ../admin/terms/position.php:4 +#: ../admin/terms/league.php:9 ../admin/terms/position.php:9 +#: ../admin/terms/season.php:9 ../admin/terms/venue.php:9 +msgid "Update" +msgstr "Actualizar" + +#: ../admin/terms/league.php:12 ../admin/terms/position.php:12 +#: ../admin/terms/season.php:12 ../admin/terms/venue.php:12 +msgid "Parent" +msgstr "Padre" + +#: ../admin/terms/position.php:5 msgid "Position" msgstr "posición" -#: ../admin/terms/position.php:5 -msgid "position" -msgstr "posición" - -#: ../admin/terms/season.php:5 -msgid "season" -msgstr "temporada" - -#: ../admin/terms/venue.php:5 -msgid "venue" -msgstr "estadio" - -#: ../admin/terms/venue.php:27 ../admin/terms/venue.php:74 +#: ../admin/terms/venue.php:38 ../admin/terms/venue.php:85 msgid "Address" msgstr "dirección" -#: ../admin/terms/venue.php:34 +#: ../admin/terms/venue.php:45 msgid "Latitude" msgstr "latitud" -#: ../admin/terms/venue.php:40 +#: ../admin/terms/venue.php:51 msgid "Longitude" msgstr "longitud" -#: ../admin/widgets/countdown.php:5 ../admin/widgets/events-calendar.php:5 -#: ../admin/widgets/future-events.php:5 ../admin/widgets/league-table.php:5 -#: ../admin/widgets/recent-events.php:5 -msgid "SportsPress widget." -msgstr "SportsPress widget." +#: ../admin/tools/importers.php:37 +msgid "SportsPress Teams (CSV)" +msgstr "SportsPress Equipos (CSV)" -#: ../admin/widgets/countdown.php:6 ../admin/widgets/countdown.php:11 -msgid "Countdown" -msgstr "cuenta atrás" +#: ../admin/tools/importers.php:37 +msgid "Import teams from a csv file." +msgstr "Importar equipos desde un archivo csv." -#: ../admin/widgets/countdown.php:33 ../admin/widgets/events-calendar.php:32 -#: ../admin/widgets/future-events.php:55 ../admin/widgets/league-table.php:38 -#: ../admin/widgets/recent-events.php:55 +#: ../admin/tools/importers.php:38 +msgid "SportsPress Players (CSV)" +msgstr "Jugadores SportsPress (CSV)" + +#: ../admin/tools/importers.php:38 +msgid "Import players from a csv file." +msgstr "Importar jugadores desde un archivo csv." + +#: ../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 "Lo sentimos, se ha producido un error." + +#: ../admin/tools/player-importer.php:193 ../admin/tools/team-importer.php:152 +msgid "The CSV is invalid." +msgstr "Archivo CSV invalido." + +#: ../admin/tools/player-importer.php:204 +#, php-format +msgid "" +"Import complete - imported %s players and skipped " +"%s." +msgstr "" +"Importación completada - jugadores importados %s e " +"ingnorados %s." + +#: ../admin/tools/player-importer.php:214 ../admin/tools/team-importer.php:173 +msgid "All done!" +msgstr "¡Todo listo!" + +#: ../admin/tools/player-importer.php:214 +msgid "View Players" +msgstr "Ver los jugadores" + +#: ../admin/tools/player-importer.php:264 +msgid "Import Players" +msgstr "Importar Jugadores" + +#: ../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 "" +"Hola, seleccione un archivo .csv para subir y pulse \"Subir archivo e " +"importar\"" + +#: ../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 "" +"Los jugadores deben ser definidos en un orden especifico (7 columnas). Click aquí para descargar un ejemplo" + +#: ../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 "" +"Antes de poder subir su archivo de importación debe arreglar los siguientes " +"errores:" + +#: ../admin/tools/player-importer.php:305 ../admin/tools/team-importer.php:264 +msgid "Choose a file from your computer:" +msgstr "Seleccionar archivo desde su ordenador:" + +#: ../admin/tools/player-importer.php:311 ../admin/tools/team-importer.php:270 +#, php-format +msgid "Maximum size: %s" +msgstr "Tamaño máximo: %s" + +#: ../admin/tools/player-importer.php:316 ../admin/tools/team-importer.php:275 +msgid "OR enter path to file:" +msgstr "o introduzca la ruta al archivo:" + +#: ../admin/tools/player-importer.php:323 ../admin/tools/team-importer.php:282 +msgid "Delimiter" +msgstr "Delimitador" + +#: ../admin/tools/player-importer.php:329 ../admin/tools/team-importer.php:288 +msgid "Upload file and import" +msgstr "Subir archivo e importar" + +#: ../admin/tools/team-importer.php:163 +#, php-format +msgid "" +"Import complete - imported %s teams and skipped %s." +msgstr "" +"Importación completada - equipos importados %s e ingnorados " +"%s." + +#: ../admin/tools/team-importer.php:173 +msgid "View Teams" +msgstr "Ver Equipos" + +#: ../admin/tools/team-importer.php:223 +msgid "Import Teams" +msgstr "Importar Equipo" + +#: ../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 "" +"Los equipos deben ser definidos en un orden especifico (3 columnas). Click aquí para descargar un ejemplo" + +#: ../admin/widgets/countdown.php:5 +msgid "A clock that counts down to an upcoming event." +msgstr "Un reloj que cuenta hacia atrás para un próximo evento." + +#: ../admin/widgets/countdown.php:6 +msgid "SportsPress Countdown" +msgstr "SportsPress Cuenta atrás" + +#: ../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 "Título:" -#: ../admin/widgets/countdown.php:36 -msgid "Event:" -msgstr "Evento:" +#: ../admin/widgets/countdown.php:37 ../admin/widgets/league-table.php:41 +#: ../admin/widgets/player-list.php:47 +#, php-format +msgid "Select %s:" +msgstr "seleccionar %s:" + +#: ../admin/widgets/countdown.php:57 +msgid "Display league" +msgstr "Mostrar liga" + +#: ../admin/widgets/events-calendar.php:5 +msgid "A calendar of events." +msgstr "Un calendario de eventos." #: ../admin/widgets/events-calendar.php:6 -msgid "Events Calendar" -msgstr "Calendario de Eventos:" +msgid "SportsPress Events Calendar" +msgstr "Calendario de Eventos SportsPress:" -#: ../admin/widgets/future-events.php:6 ../admin/widgets/future-events.php:11 -msgid "Future Events" -msgstr "Eventos Futuros" +#: ../admin/widgets/league-table.php:5 +msgid "Display a league table." +msgstr "mostrar una tabla de la liga." -#: ../admin/widgets/future-events.php:58 ../admin/widgets/recent-events.php:58 -msgid "League:" -msgstr "Liga:" - -#: ../admin/widgets/future-events.php:74 ../admin/widgets/recent-events.php:74 -msgid "Season:" -msgstr "temporada:" - -#: ../admin/widgets/future-events.php:90 ../admin/widgets/recent-events.php:90 -msgid "Venue:" -msgstr "estadio:" - -#: ../admin/widgets/future-events.php:106 -#: ../admin/widgets/recent-events.php:106 -msgid "Team:" -msgstr "equipo:" - -#: ../admin/widgets/future-events.php:123 -#: ../admin/widgets/recent-events.php:123 -#, php-format -msgid "Number of %s to show:" -msgstr "Número de %s para mostrar:" - -#: ../admin/widgets/league-table.php:41 -msgid "League Table:" -msgstr "Tabla de la Liga:" +#: ../admin/widgets/league-table.php:6 +msgid "SportsPress League Table" +msgstr "SportsPress Tabla de la Liga" #: ../admin/widgets/league-table.php:58 msgid "Columns:" msgstr "Columnas:" -#: ../admin/widgets/recent-events.php:6 ../admin/widgets/recent-events.php:11 -msgid "Recent Events" -msgstr "Eventos recientes" +#: ../admin/widgets/player-list.php:5 +msgid "Display a list of players." +msgstr "Mostrar una lista de jugadores." + +#: ../admin/widgets/player-list.php:6 +msgid "SportsPress Player List" +msgstr "SportsPress Lista de Jugadores" + +#: ../admin/widgets/player-list.php:64 +msgid "Statistics:" +msgstr "estadística:" + +#: ../admin/widgets/player-list.php:88 +msgid "Default" +msgstr "Predeterminado" + +#: ../presets/sports/baseball.php:5 +msgid "Baseball" +msgstr "béisbol" + +#: ../presets/sports/basketball.php:5 +msgid "Basketball" +msgstr "baloncesto" + +#: ../presets/sports/cricket.php:5 +msgid "Cricket" +msgstr "Críquet" + +#: ../presets/sports/football.php:5 +msgid "American Football" +msgstr "Fútbol americano" + +#: ../presets/sports/footy.php:5 +msgid "Australian Rules Football" +msgstr "Fútbol australiano" + +#: ../presets/sports/gaming.php:5 +msgid "Competitive Gaming" +msgstr "Gaming competitiva" + +#: ../presets/sports/golf.php:5 +msgid "Golf" +msgstr "Golf" + +#: ../presets/sports/hockey.php:5 +msgid "Hockey" +msgstr "Hockey" + +#: ../presets/sports/racing.php:5 +msgid "Racing" +msgstr "carreras" + +#: ../presets/sports/rugby.php:5 +msgid "Rugby" +msgstr "Rugby" + +#: ../presets/sports/soccer.php:5 +msgid "Soccer (Association Football)" +msgstr "fútbol" + +#~ msgid "None." +#~ msgstr "Ninguna." + +#, fuzzy +#~ msgid "No Events found." +#~ msgstr "No se encontraron %s." + +#, fuzzy +#~ msgid "No teams found." +#~ msgstr "No se encontraron %s." + +#, fuzzy +#~ msgid "Add New Column" +#~ msgstr "Añadir nueva %s" + +#, fuzzy +#~ msgid "Edit Column" +#~ msgstr "Columna" + +#, fuzzy +#~ msgid "New Column" +#~ msgstr "Columna" + +#, fuzzy +#~ msgid "View Column" +#~ msgstr "Columna" + +#, fuzzy +#~ msgid "Search Columns" +#~ msgstr "Buscar %s" + +#, fuzzy +#~ msgid "No columns found." +#~ msgstr "No se encontraron %s." + +#, fuzzy +#~ msgid "No columns found in trash." +#~ msgstr "Ninguna %s encontrada en la papelera." + +#, fuzzy +#~ msgid "Add New Event" +#~ msgstr "Añadir objeto" + +#, fuzzy +#~ msgid "Edit Event" +#~ msgstr "evento" + +#, fuzzy +#~ msgid "New Event" +#~ msgstr "evento" + +#, fuzzy +#~ msgid "View Event" +#~ msgstr "evento" + +#, fuzzy +#~ msgid "Search Events" +#~ msgstr "Buscar %s" + +#, fuzzy +#~ msgid "No events found." +#~ msgstr "No se encontraron %s." + +#, fuzzy +#~ msgid "No events found in trash." +#~ msgstr "Ninguna %s encontrada en la papelera." + +#, fuzzy +#~ msgid "Add New League" +#~ msgstr "Añadir nueva %s" + +#, fuzzy +#~ msgid "Add New Season" +#~ msgstr "Añadir nueva %s" + +#, fuzzy +#~ msgid "Add New Venue" +#~ msgstr "Añadir objeto" + +#, fuzzy +#~ msgid "Add New Player List" +#~ msgstr "Lista de Jugadores" + +#, fuzzy +#~ msgid "Edit Player List" +#~ msgstr "Lista de Jugadores" + +#, fuzzy +#~ msgid "New Player List" +#~ msgstr "Lista de Jugadores" + +#, fuzzy +#~ msgid "View Player List" +#~ msgstr "Lista de Jugadores" + +#, fuzzy +#~ msgid "Search Player Lists" +#~ msgstr "Listas del jugador" + +#, fuzzy +#~ msgid "No player lists found." +#~ msgstr "listas de jugadores" + +#, fuzzy +#~ msgid "No player lists found in trash." +#~ msgstr "Ninguna %s encontrada en la papelera." + +#, fuzzy +#~ msgid "All Teams" +#~ msgstr "Equipos" + +#, fuzzy +#~ msgid "Add New Team" +#~ msgstr "Añadir objeto" + +#, fuzzy +#~ msgid "Add New Player" +#~ msgstr "Añadir nueva %s" + +#, fuzzy +#~ msgid "Add New Metric" +#~ msgstr "Añadir nueva %s" + +#, fuzzy +#~ msgid "Edit Metric" +#~ msgstr "métrico" + +#, fuzzy +#~ msgid "New Metric" +#~ msgstr "métrico" + +#, fuzzy +#~ msgid "View Metric" +#~ msgstr "métrico" + +#, fuzzy +#~ msgid "Search Metrics" +#~ msgstr "Buscar %s" + +#, fuzzy +#~ msgid "No metrics found." +#~ msgstr "No se encontraron %s." + +#, fuzzy +#~ msgid "No metrics found in trash." +#~ msgstr "Ninguna %s encontrada en la papelera." + +#, fuzzy +#~ msgid "Add New Outcome" +#~ msgstr "Añadir nueva %s" + +#, fuzzy +#~ msgid "Edit Outcome" +#~ msgstr "resultado" + +#, fuzzy +#~ msgid "New Outcome" +#~ msgstr "resultado" + +#, fuzzy +#~ msgid "View Outcome" +#~ msgstr "resultado" + +#, fuzzy +#~ msgid "Search Outcomes" +#~ msgstr "Resultados" + +#, fuzzy +#~ msgid "No outcomes found." +#~ msgstr "No se encontraron %s." + +#, fuzzy +#~ msgid "No outcomes found in trash." +#~ msgstr "Ninguna %s encontrada en la papelera." + +#, fuzzy +#~ msgid "Edit Player" +#~ msgstr "jugador" + +#, fuzzy +#~ msgid "New Player" +#~ msgstr "jugador" + +#, fuzzy +#~ msgid "View Player" +#~ msgstr "jugador" + +#, fuzzy +#~ msgid "Search Players" +#~ msgstr "Buscar %s" + +#, fuzzy +#~ msgid "No players found." +#~ msgstr "No se encontraron %s." + +#, fuzzy +#~ msgid "No players found in trash." +#~ msgstr "Ninguna %s encontrada en la papelera." + +#, fuzzy +#~ msgid "Select Nationality" +#~ msgstr "nacionalidad" + +#, fuzzy +#~ msgid "Select Positions" +#~ msgstr "写真を選択" + +#, fuzzy +#~ msgid "Select Team" +#~ msgstr "Sélectionner" + +#, fuzzy +#~ msgid "Select Leagues" +#~ msgstr "ロゴを選択" + +#, fuzzy +#~ msgid "Select Seasons" +#~ msgstr "seleccionar %s" + +#, fuzzy +#~ msgid "Add New Result" +#~ msgstr "Añadir nueva %s" + +#, fuzzy +#~ msgid "Edit Result" +#~ msgstr "Resultado principal" + +#, fuzzy +#~ msgid "New Result" +#~ msgstr "resultado" + +#, fuzzy +#~ msgid "View Result" +#~ msgstr "Resultado principal" + +#, fuzzy +#~ msgid "Search Results" +#~ msgstr "Buscar %s" + +#, fuzzy +#~ msgid "No results found in trash." +#~ msgstr "Ninguna %s encontrada en la papelera." + +#, fuzzy +#~ msgid "Add New Staff" +#~ msgstr "Añadir objeto" + +#, fuzzy +#~ msgid "Edit Staff" +#~ msgstr "el personal" + +#, fuzzy +#~ msgid "New Staff" +#~ msgstr "el personal" + +#, fuzzy +#~ msgid "View Staff" +#~ msgstr "el personal" + +#, fuzzy +#~ msgid "No staff found." +#~ msgstr "No se encontraron %s." + +#, fuzzy +#~ msgid "No staff found in trash." +#~ msgstr "Ninguna %s encontrada en la papelera." + +#, fuzzy +#~ msgid "Add New Statistic" +#~ msgstr "estadística" + +#, fuzzy +#~ msgid "Edit Statistic" +#~ msgstr "estadística" + +#, fuzzy +#~ msgid "New Statistic" +#~ msgstr "estadística" + +#, fuzzy +#~ msgid "View Statistic" +#~ msgstr "estadística" + +#, fuzzy +#~ msgid "Search Statistics" +#~ msgstr "Estadísticas del Jugador" + +#, fuzzy +#~ msgid "No statistics found." +#~ msgstr "No se encontraron %s." + +#, fuzzy +#~ msgid "No statistics found in trash." +#~ msgstr "Ninguna %s encontrada en la papelera." + +#, fuzzy +#~ msgid "Add New League Table" +#~ msgstr "Tabla de la Liga" + +#, fuzzy +#~ msgid "Edit League Table" +#~ msgstr "Tabla de la Liga" + +#, fuzzy +#~ msgid "New League Table" +#~ msgstr "Tabla de la Liga" + +#, fuzzy +#~ msgid "View League Table" +#~ msgstr "Tabla de la Liga" + +#, fuzzy +#~ msgid "Search League Tables" +#~ msgstr "Tablas de la Liga" + +#, fuzzy +#~ msgid "No league tables found." +#~ msgstr "tablas de ligas" + +#, fuzzy +#~ msgid "No league tables found in trash." +#~ msgstr "Ninguna %s encontrada en la papelera." + +#, fuzzy +#~ msgid "Edit Team" +#~ msgstr "Editar %s" + +#, fuzzy +#~ msgid "New Team" +#~ msgstr "equipo" + +#, fuzzy +#~ msgid "View Team" +#~ msgstr "Ver %s" + +#, fuzzy +#~ msgid "Search Teams" +#~ msgstr "Buscar %s" + +#, fuzzy +#~ msgid "No teams found in trash." +#~ msgstr "Ninguna %s encontrada en la papelera." + +#, fuzzy +#~ msgid "Edit Results" +#~ msgstr "Resultados" + +#, fuzzy +#~ msgid "Edit Outcomes" +#~ msgstr "Resultados" + +#, fuzzy +#~ msgid "Edit Metrics" +#~ msgstr "métrica" + +#, fuzzy +#~ msgid "Edit Statistics" +#~ msgstr "estadística" + +#, fuzzy +#~ msgid "Edit Columns" +#~ msgstr "Columnas" + +#, fuzzy +#~ msgid "All Leagues" +#~ msgstr "Ligas" + +#, fuzzy +#~ msgid "Edit League" +#~ msgstr "liga" + +#, fuzzy +#~ msgid "View League" +#~ msgstr "liga" + +#, fuzzy +#~ msgid "Update League" +#~ msgstr "Actualizar %s" + +#, fuzzy +#~ msgid "New League Name" +#~ msgstr "Nuevo nombre %s" + +#, fuzzy +#~ msgid "Parent League" +#~ msgstr "Superior %s" + +#, fuzzy +#~ msgid "Parent League:" +#~ msgstr "Liga:" + +#, fuzzy +#~ msgid "Search Leagues" +#~ msgstr "Buscar %s" + +#, fuzzy +#~ msgid "No leagues found." +#~ msgstr "No se encontraron %s." + +#, fuzzy +#~ msgid "All Positions" +#~ msgstr "Posiciones" + +#, fuzzy +#~ msgid "Edit Position" +#~ msgstr "posición" + +#, fuzzy +#~ msgid "View Position" +#~ msgstr "posición" + +#, fuzzy +#~ msgid "Update Position" +#~ msgstr "posición" + +#, fuzzy +#~ msgid "Add New Position" +#~ msgstr "Añadir nueva %s" + +#, fuzzy +#~ msgid "New Position Name" +#~ msgstr "Nuevo nombre %s" + +#, fuzzy +#~ msgid "Parent Position" +#~ msgstr "posición" + +#, fuzzy +#~ msgid "Parent Position:" +#~ msgstr "posición" + +#, fuzzy +#~ msgid "Search Positions" +#~ msgstr "Posiciones" + +#, fuzzy +#~ msgid "No positions found." +#~ msgstr "No se encontraron %s." + +#, fuzzy +#~ msgid "All Seasons" +#~ msgstr "temporada" + +#, fuzzy +#~ msgid "Edit Season" +#~ msgstr "temporada" + +#, fuzzy +#~ msgid "View Season" +#~ msgstr "temporada" + +#, fuzzy +#~ msgid "Update Season" +#~ msgstr "Actualizar %s" + +#, fuzzy +#~ msgid "New Season Name" +#~ msgstr "Nuevo nombre %s" + +#, fuzzy +#~ msgid "Parent Season" +#~ msgstr "Superior %s" + +#, fuzzy +#~ msgid "Parent Season:" +#~ msgstr "Superior %s" + +#, fuzzy +#~ msgid "Search Seasons" +#~ msgstr "Buscar %s" + +#, fuzzy +#~ msgid "No seasons found." +#~ msgstr "No se encontraron %s." + +#, fuzzy +#~ msgid "All Venues" +#~ msgstr "estadios" + +#, fuzzy +#~ msgid "Edit Venue" +#~ msgstr "estadio" + +#, fuzzy +#~ msgid "View Venue" +#~ msgstr "estadio" + +#, fuzzy +#~ msgid "New Venue Name" +#~ msgstr "Nuevo nombre %s" + +#, fuzzy +#~ msgid "Parent Venue" +#~ msgstr "Superior %s" + +#, fuzzy +#~ msgid "Parent Venue:" +#~ msgstr "Superior %s" + +#, fuzzy +#~ msgid "Search Venues" +#~ msgstr "Buscar %s" + +#, fuzzy +#~ msgid "No venues found." +#~ msgstr "No se encontraron %s." + +#, fuzzy +#~ msgid "Select Event:" +#~ msgstr "Eventos recientes" + +#, fuzzy +#~ msgid "SportsPress Future Events" +#~ msgstr "Eventos Futuros" + +#~ msgid "Future Events" +#~ msgstr "Eventos Futuros" + +#~ msgid "League:" +#~ msgstr "Liga:" + +#~ msgid "Season:" +#~ msgstr "temporada:" + +#~ msgid "Venue:" +#~ msgstr "estadio:" + +#~ msgid "Team:" +#~ msgstr "equipo:" + +#, fuzzy +#~ msgid "Number of events to show:" +#~ msgstr "Número de %s para mostrar:" + +#, fuzzy +#~ msgid "Select League Table:" +#~ msgstr "Tabla de la Liga:" + +#, fuzzy +#~ msgid "Select Player List:" +#~ msgstr "Lista de Jugadores" + +#, fuzzy +#~ msgid "SportsPress Recent Events" +#~ msgstr "Eventos recientes" + +#~ msgid "Recent Events" +#~ msgstr "Eventos recientes" + +#~ msgid "Precision" +#~ msgstr "precisión" + +#~ msgid "Sum" +#~ msgstr "Suma" + +#~ msgid "events" +#~ msgstr "eventos" + +#~ msgid "Map" +#~ msgstr "mapa" + +#~ msgid "%s updated." +#~ msgstr "%s actualizada." + +#~ msgid "%s published." +#~ msgstr "%s publicada" + +#~ msgid "%s submitted." +#~ msgstr "%s enviado." + +#~ msgid "%s draft updated." +#~ msgstr "borrador %s actualizado." + +#~ msgid "columns" +#~ msgstr "columnas" + +#~ msgid "metrics" +#~ msgstr "métrica" + +#~ msgid "outcome" +#~ msgstr "resultado" + +#~ msgid "players" +#~ msgstr "jugadores" + +#~ msgid "Value" +#~ msgstr "Valor" + +#~ msgid "result" +#~ msgstr "resultado" + +#~ msgid "staff" +#~ msgstr "personal" + +#~ msgid "statistics" +#~ msgstr "estadística" + +#~ msgid "teams" +#~ msgstr "equipos" + +#~ msgid "league" +#~ msgstr "liga" + +#~ msgid "position" +#~ msgstr "posición" + +#~ msgid "season" +#~ msgstr "temporada" + +#~ msgid "venue" +#~ msgstr "estadio" + +#~ msgid "Countdown" +#~ msgstr "cuenta atrás" + +#~ msgid "Event:" +#~ msgstr "Evento:" #~ msgid "%1$s %2$s" #~ msgstr "%1$s %2$s" -#~ msgid "Select" -#~ msgstr "Sélectionner" - #~ msgid "-- Not Set --" #~ msgstr "-- Pas réglé --" @@ -926,21 +1706,9 @@ msgstr "Eventos recientes" #~ msgid "Appearances" #~ msgstr "出場" -#~ msgid "Select Logo" -#~ msgstr "ロゴを選択" - -#~ msgid "Remove Logo" -#~ msgstr "ロゴを削除" - #~ msgid "Joined: %1$s" #~ msgstr "入団日: %1$s" -#~ msgid "Select Photo" -#~ msgstr "写真を選択" - -#~ msgid "Remove Photo" -#~ msgstr "写真を削除" - #~ msgid "Table Columns" #~ msgstr "順位表列" diff --git a/languages/sportspress-fr_FR.mo b/languages/sportspress-fr_FR.mo index 41ea22b43efdd2fb4c5979f40019cbb6cb83fb88..c38297c4274b4a5aba50d248db3fe165d825bb69 100644 GIT binary patch literal 11727 zcmb`M3zS_|dB?XQ3Iu2^qD2HfiR2}7hnbK_yb}VG$%EibGR#cEqi8&H@4ho9Irp5K z^O#Ix6|B@3twqr)QWb4c29dU+6(6O_bYZow(yrB3Y}IzjvTL!lE^Vtz+iLs!pR>=M zJ0x|{*0bijzrFX_XFtFF?Qie-#2g4*YYM{#7_c{2$?c@WNj*=DF|-upfRM^2(fjF7?BU z9M?M5;Ay09foH;(K|V1f?)?Fm{tBq}&cNrxj(h(Wm;QFB_T2@qg&%?{??+JWUqL5- z0iFq0!}Foi>rm|)hAMwA4(9eEXr=^-8FEE!4QT zp~`zL)c1G7QTRUh{@YOB{U;oNr!je&x6M%HHlX^Q!0X`6@BsV@R6R91Tg)F+J6{Hs zekD}7d!X98&&98UD)*I8<+h>p=>*hwZ-Q#)?NHh+;Z^QXzeSJ{v*aB70l~DPwah!mv=SHZ0`Yzsr z`mPOC?=h%)U+>=E4pq*(p!)TGsCM5ARn7x0{XwX5J_}y}ABC##n~qOHmGeEQd_RI} z=L#01>OBXl-seNrvkv|uycBA_u7p}w<1XHS8pjN(oY%vP;9KE~;QcQB%TVQi1*+U9 zpxXZ(m;NshRWv_^YWI04J54hKkRdjEA+L<@;;)AK{tl@2-3is71*mpB2vy(1Q2qas z<6pV=kHexJP~-OF**`y?+hW-fuwZ^FKk2!;hibdB%&&_Fo89|7xi5 z?1L(ICzO7TIo<#@kJi0UT>7gaLulRzUkE=8HO`Mhwc~N9^1kWf--asp2N0Do&$zfO z_adnDmq4}erI4X8*T9u9gooi#sCoVx)HwYRUIBjsx5J^eB z@2*}~mb)K5llT-={Wn65M+>UmN8S4qQ0=+}D&IRC?}pDJem`6ZAB5`nLr~-S2-J6f z=lEUse#QDS-`Vgq-aij&d@q2icReiZ162F=!e_z#P~&nCsvYz0{jKi(TO8j8Pv`x+ zq1Nf$Q0@67RC$j%{tZ;Qe-AZp--Obae}k(3^bKV>9=wzI2B`Kv0?&YtLiP7C$kuGW z3RT{B;py-PF8&j!@maaC%zq}-x_Ay$zgN3>zk9z8Y94k&m2)jryKjK%_aS&DJmQ!` zjmyn0{sE|Vd<5$Ik3qHX(@^%}F~@H~jn99;GvT=}DaYwTDEqV-Y8>`M>FX@idc4)8 ze*m6A{L@hDU=gZ6Pq_5&IsO=`{VOgh+kXa>ojMOP)MgXZ{M-mtUjn7)w?Vbz9;o(x z4r+eB1kZwBhpO*MsPX(ER6Q&EO0I(X?%7c9FMt}44N&7T0M-6o@I7#!OMeo2#D5A^ z-ivA_*TS=jU*h6hq3p_bsP#VvHP4}Ye-x_xWAGe!3)J^-b@98P@-INO^8u*(9)i-d zhu!-}9KQfpkp5-(3|Ku65zu()If9^W=64n0IflFu`BkKjT#tMVNss{1a|0s%ub$%s zWG@~>UW-V#8ptP+3}ILdO)&Q(6Ugfj`K5=EUq{}Ld>YXsJ=F6K(dEdU z$cK>I5IrA3K7(jnZ$fqzeeCqE^-b0tPB4R zoOa4j{3^}O2!-VEQ4Tvok+XSwh>j<19{GUnoULFu2K z3rZBfzs2uSWC6JYxfR)stU_LZRL@odzlr=l@^a)|$Ro&GkWI)dkd26k=$S{}hJ=dn z{9cLf?@I{1$HgY0_Np^n{8AXX@H^o?)K5} zogMOqn@!J!yJ`F4$exrqVcYTC$;p#8w2iErd&6*^#T(6rDE6`-3++Zzt9kq4%u8+N z)oNz2sNQT#vm}mYwqIw%M%=bu7JHMOILXrS#HQ)COWkX4-HW$w8XO$*_VD#&<|mnL zcE7zL&J!=2wS3-;ZR$nT(zK1xPi${tUYd7Q^vQ(=E$?`odp2ssd6e123w`357o=%U zd7aSusr3@;H$7DqkY^_GvmlPVnLKD(FHXG1Y#fuxUshw;sQN}T>^1z*MomBQ;+ALU zY?P(_N)6-25!&u&UQu^S4~|6|1wZog4nq<|Gi83VGee`+pUJH^lQw`~$MC~tQhXVbpkC0WqW_i2MRQG*%IGD3{$aL$PPVLHio-BIR`fMV;-qdy{IHRSer5?p4I7$~SwEVgJ*huuoBc%HaI0XimBj6`I!3IM zGli58hj}}4NGmG6-La@-fDZ5RHNGT8Y34H}W`vQVQ)VPj66VO8vVNOLn#C2o-GL38 zW~Z8_pG&8Lc2B78ZJXY{cJN|UcY3?oX&XV?4`IvC!wiN&JD_=lx?{i7W_}Q+W@nHV zvkE&XAgYAkX|gjV_v?L?9;BJ{NKu=hNY$(I1G6*nTbbF_4EQ;k7m8|jN$1L6Z_;KN z{Z7khYWCQOxeY5Wz2C#)UA7>5Uxh7mb)eZx>}sz&AN`GVu9$6oSt>%GGDYY*W9zLs zP%1|;Z+_Ht3bLl3!dOY!Y)~xVpkd9`tPOkI>@78@vJ|e6Tk`;c1jA z!-R6ZoKYL~r&%?lKAJK(P;v`E@$;rNr5SPX#{7ttomA1%xb#|@)V+f7Ow3O-Q)zVbjM(2sTpSn zKv(DRXstFuGd>$FCmHEYu~+eeCZqh+Q} zYkw%LD<$~S%59hW+xyLUO!aY!S&O4?fTX18peA5EiM8g;cs?Bl>8zRX8?t>9essi? zTe^cXyFI>`Z5J-b$W3nv@@bliV)B{k<7N`$Y$hACw#nYn4K$ZR%xkjDME09W>nDv_ zA*JahQdoEsG^HD=SHYrHF1c(~*PvB_YMYpxjgNV3dCrtlT9wdogVmFi7ES0$D3+a> zWFgCI$vb8;ZZtGk!)Y2ffmRgwg)ML9Wyo+V;dROqW7fyo<)$Z}OyfQuYHjGRj zq&rJ~Sh;Gd^vrLyOyPtv^DL0aYG|tEuoPk>tHhMv5zdu_A9ch`=F_a5jIEj=gPNwR zjh1Hd(=|xtVl96EZ;R@(|JS0L!ZTqg@B>-0bJ!^?5^4CEdwX2KJ#qm};RZ~}(BK>%B;EI5okup+_hSF2hbtfBsM{9nid=78z zri)Y4^pB@z7JG*tin+66q*9JD#HVt}%Tk30v@6x75i0#rw7dt0Z2Y}NI(@z~;P)!25AVa!vltGajS(9j_}bm$OXE6(+NRv+x!G;}B` z(M>%R#c{{I>Ipac4n>Xn=0;!f(Y!J=_;|jX6wQ~pt1Q;#!L2;xXIVn+-Jo3x_T-w) z+M&x;1j}4Su*|j8F}eKObn9L}iKVw#%v;%UZ?ONR{g*9epTzHPSR8f@V%;l8aXid% zF>AZyq@C8is8dAKD>e<`#p=x!8zOJJH@I@eX^J?ReTjXXLjb&?Zff`5N<{>jA!ZBS@Bu5d@Q4_{*6MFm}bkcbtS|abYH0TyTe9mVMJd2yy@`KDz=^r7b)cb2x18H<$ol``XOQWV3co6;y9|Jxl8SAQw7JcC~yCowxL>d1Mq3NCXo z%}!QAaSUgkv@AG_a};L*7iaOD!#EkblS#y##}^k;n!`OoVulNyXLzN(I*$9fW-R24 zE(Ke9U!4z+V#k)Cc zWtm~`Z5&tel)Yx&RaC6neykOHmzJ;D)oO7i zSp4Eg`^)YWx})Er&c@=sP0D2f?&931E7igfu$#(P$f>wIuA))2xzsCc!&A&fnIgm9 zwIJPt6vI%ysFbqe;ZjLGHf@fbX{-*dU%XEnvMgQ@VZ2#mjiOZUAqoraHSuV*t}*Cj zOzE?(B&ft)M-;hEaUVgB6COKWx%Z;DsFj>%Z9o)f=k3$DnZS|-X)XgVGvP1YQIuB{ z(pGkMcIF9ue@=Xax`A%OfrDDIPp_b z8K6#aOU1gG3EA#a^{Nc@?%$Y@?q-Dv*XA#mpxCD9eYKCtx)(3F2a&?|zNo%QT~AK+ zuF`w6cP8TMznDNg#ui4Sbosh&kapKJMnU?#AoO&tZF7{wIxnT)a3dlu#dl2tGnJrJ zKG*l%K;b2t9$&FHT={@lmxRNjR%=gAcP(;CcXC<2a({OBp2d3XEyXR=-lS@|oqSVL z4UD@iac&G(u{!w_?pCp5$t~+$)xBX3?e5-0%e~GvPn63q`muCxVy?wc!ozD|bhtZ_ z^ML=vo?2Yx7WTSws;ZZ%={D}?W+sXYmY;{27%i__D(C=q97L^78T@?D zJ#XI&C^O#K-}{`uzw_^R&iS2v`jWFhWB9&|T!DP(9Aln^Pc7qzuYI907sI3QXW%LL z)9_Pp75suv|0X=2_;=xX@F{pHd={Pye*&fQ%|Bb}xezM-3OEd}f{(&!pT6uOV}6SG z#ZdJw^YN8X_4=XuwZW&4LG^1Ks{MoTGWbECf5NBV0;TU0Q04E1()R#Vdk;g^e+*s% z{}8I&cRarjRqh#h0sJS=m*LsO-$bWW{#>Z>Uj$WtHB`Ine7x#80-17iosUmIwSS{e z4+4H>mdi)2F`z zRqh-HuYOzr6<-e3k1L?YeKl0On>}|z>7DXC1l4{WYCa;UdKr|Rd=#qvJD~L61y%n( zsCr+7D)*4jf858PfXhi=gwpo|sPfN2>3PBDzXa9pd2cE8UII0qw?U;}1vQ=u)cChR z)gSTP4b}bxR6B3kDzt%zZV>4UlH)W;u#8pjhp{w=6^{WB6Hs>gZK!_yH5`La!#{y5 znH-h-5tN=+pw{D@%ggu*sP_7x>|ujX-vzZE`+WXQKEL7fZ-$zeQ&8i+1FB#5`TYBR z{+FQa>M^KsejQ5hccJ?8L(jj5Y+>^}R6kyUn%|4Lq@@2+sD57w)$V(s)@j7Y_d(h9 zjZpgQP~(n${G`vn4WioI1J&MRPYwf`*C_@0NFkC&nJ zT<{BJy8%@GD$hYE`>#Uj+XmI%^$^oE2VoymNYX`<~DLJD>j? zRKNcPsz0y#{I^m`dR9Q`xeBV>JE7)%3uFtJeNc8V2i4Cu)I8--<2VU5f44!75OX(_ zzK5ae{hp716>2dE0mrOc-EoxANKKMQ1wqjjq`3Od-@zyf9{8>|0vWvJ?``W2&zBd zfNJkgp~^i8rT+&|>-L;ae;!KTze3gf2~<1hzN4&nKGZy13^lHmPH7$>1G!rfzF$G^M0O#MAYVXsBL@-9^Oq2P{fO4<074hdt;j>jr;)3X-$3;JIx_D< zrTtw`xPfr|m|yhiABXSs;Rj)W97B#Gs}X%?At5rN2p`+gtaKq`wtH&*?mz~SUq;@K zj3fF!fLx9YA@4@?eGvI21^C{BXx&aC_ai5e&UYPw+mS6k;Wntfa+8k>Q^?JTZ00IN z--nPn_?6uA48TQvb{BkzJU_%eEe0yTagER+85!C$fJlwBIGxb4`c{-M55v2V zO~^){_GP#a`3&+|gk#Tr z>pW-SJxCq72GRF98FrWs{(K9+^^oluRmqG{{FY?4-kEm@u>absIwwq>0Uy6Ram(~9zrvR=jW zkv*1~RjqoM%?$^WwrOj5;G<^E_99Q#nl*6}`n3@vw2Xdn4v(`O{dj^ zwpmMBHpr7;vYn)PHj&z_+mm3`Rh!oj4Gjmos6Cm7Dg9Zhds9-RK|W`xUQcWm#I#bk zwPu*wUS&a6w557!cuPv7*qfg`q5 zI2tx`vu<{%75%K6idsD(tZimn-_S}HcxIc~VQWz?yz|nH8Zm# z%EB22ze84S#_Cb7Ng6v^xY;*j^R!$3Vt;u~PsvqcwSxOLZ{h+bvv){Ioc}t?8T7G^@5G@)r3udx&wwg&BrnNa0B$UyK5>-znyK~bO z@D@CIBx>uNEZSx=snr4bd+W3xRX*h?y*AnAp5vKTj4dkfmJC>ts!Pwzlsk*v zmhi{qE*+D`9RgFj4G8i}`6OrK-{5X5&C!9d$=*0%GAbhgxRp;X-Dt&VtO$VR{_m+IJ;_TpKMjEw>|J6laDb-x+7Sv?eZ1 zs+JMxZO3q0Yd>Y>YGxK=%iOH;+p)f!$;b?C)8M?UEji5HSlL~#9I&a(u6o8bF*q=^ zY`@jrR2k12QN1!!G_uN6QVo_(?3=2LvH}`pMJH)BSU)(lu`;;6GBg+rZKw_nUOhB8 zI7q>Yc8-+4w%qz)aAS4DP+3mLQe`R)FMEVJ3Kud zWAsv99qL~{JRO%vxrot3Zv)$Cr}g<7Mei5$nrveNBgX zp3?eK&~}48rRMTh)0c9=vXl#!rMd&t4c-p(xoR*#VtHS=bt?xR3=O<%U_-a~Bo0c= zj+T>H4a!-ZXck;@m7Pi2%Bn%!cF}C>`e9rfhCx`lX$OHlg_YDTn;+stq2(AHPuTvk=i zb3yO>aA?bDhb}ozig`Bsn2SZ3)DUz?-}uQOHv=dlxfjYrJl zmo71ZrBUyoAEj5kcsipU-1F3oq=^=hX&C2VoQ+t3W~iB5yuITkFWx@Ccsk~J#LVq; z*JXEOvcZ<}ddm5|hLWXh2J0@}R87dLdaA0mZoyzyJ~qytZ>vEIEGD(xGl%LS6U!Qg zt;I*MxvbZy&8`GDdpzXWpkR&X9uHPl8&h!u@c#B#oYN08%8vB@HrFA3P)urOHg$tt zzdO?P@BMA^HBC*IHrfomcE-3A?o2^91!r63I~gwWItTo4uoM6L5Qp5Z;LuzU1&3OP zqC>IS&zj*kggLu0iepNd+!^KjBB z%sCj;ximG*T9VFK?eqbjjIS-_(`cbJlj6ubNPnL@s>|cTrkzpmV>fUrSS|3_>@3ee z_nR4tw?jGeOA|B}2V93rk-F6RxxBqh>DphH6pV{sR57ucE0yVLaJpTJj^S=n$4zCb z%8asd=9RpGv#;&sy?v}U$_njA%&XifxM%qNrQ2_@DeY`~rbTo3>k*LQ{I*#?9_je~ zIj3ev$I|k47rOHn;BgYOF&XUWoaHS*opNCqMIRc&$UO@jI*IYz0hw}R2 zm0??LesxKgza16jqk_k-?lbRg_@(B3QJR}AusK_FswjNi97wp}N}D(!Z=w6B@OMRK zFi#BsjHAyzF5E%Fg}ro;aDDk*?cNsFZ56CecU`YhckI3UzUUkjCMzw&Ju&<}!lHDZ S8QKMO#LaAGnhZcsjsF2@xGg~d diff --git a/languages/sportspress-fr_FR.po b/languages/sportspress-fr_FR.po index 2a07cdcf..f32b4424 100644 --- a/languages/sportspress-fr_FR.po +++ b/languages/sportspress-fr_FR.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: SportsPress 0.1\n" +"Project-Id-Version: SportsPress 0.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-02-10 13:10+1000\n" -"PO-Revision-Date: 2014-02-12 04:31+1000\n" +"POT-Creation-Date: 2014-02-21 15:17+1000\n" +"PO-Revision-Date: 2014-02-21 17:13+1000\n" "Last-Translator: ThemeBoy \n" "Language-Team: ThemeBoy \n" "Language: fr_FR\n" @@ -20,332 +20,320 @@ msgstr "" "X-Poedit-Bookmarks: -1,75,-1,-1,-1,-1,-1,-1,-1,-1\n" "X-Poedit-SearchPath-0: ..\n" -#: ../functions.php:56 -msgid "Add New" -msgstr "Ajouter" - -#: ../functions.php:57 ../functions.php:80 ../functions.php:1071 -#: ../functions.php:1072 -#, php-format -msgid "Add New %s" -msgstr "Ajouter une nouvelle %s" - -#: ../functions.php:58 ../functions.php:77 -#: ../admin/hooks/post-updated-messages.php:10 ../admin/settings/events.php:32 -#: ../admin/settings/events.php:63 ../admin/settings/players.php:29 -#: ../admin/settings/players.php:61 ../admin/settings/tables.php:33 -#, php-format -msgid "Edit %s" -msgstr "Modifier la %s" - -#: ../functions.php:59 -#, php-format -msgid "New %s" -msgstr "Nouvelle %s" - -#: ../functions.php:60 ../functions.php:78 -#, php-format -msgid "View %s" -msgstr "Voir la %s" - -#: ../functions.php:61 ../functions.php:84 -#, php-format -msgid "Search %s" -msgstr "Chercher dans les %s" - -#: ../functions.php:62 ../functions.php:85 ../functions.php:626 -#, php-format -msgid "No %s found." -msgstr "Aucune %s trouvée." - -#: ../functions.php:63 -#, php-format -msgid "No %s found in trash." -msgstr "Aucune %s trouvée dans la corbeille." - -#: ../functions.php:64 ../functions.php:82 ../functions.php:83 -#, php-format -msgid "Parent %s" -msgstr "%s parente :" - -#: ../functions.php:76 ../admin/hooks/restrict-manage-posts.php:8 -#: ../admin/hooks/restrict-manage-posts.php:18 -#: ../admin/hooks/restrict-manage-posts.php:28 -#: ../admin/hooks/restrict-manage-posts.php:40 -#: ../admin/widgets/future-events.php:65 ../admin/widgets/future-events.php:81 -#: ../admin/widgets/future-events.php:97 -#: ../admin/widgets/future-events.php:113 -#: ../admin/widgets/recent-events.php:65 ../admin/widgets/recent-events.php:81 -#: ../admin/widgets/recent-events.php:97 -#: ../admin/widgets/recent-events.php:113 -#, php-format -msgid "All %s" -msgstr "Toutes les %s" - -#: ../functions.php:79 -#, php-format -msgid "Update %s" -msgstr "Mettre à jour la %s" - -#: ../functions.php:81 -#, php-format -msgid "New %s Name" -msgstr "Nom de la nouvelle %s" - -#: ../functions.php:116 +#: ../functions.php:74 msgid "1 view" msgstr "1 vue" -#: ../functions.php:118 +#: ../functions.php:76 #, php-format msgid "%s views" msgstr "%s vues" -#: ../functions.php:143 +#: ../functions.php:101 msgid "Scheduled" msgstr "Planifié" -#: ../functions.php:145 ../functions.php:482 ../functions.php:485 -#: ../functions.php:1899 ../functions.php:2050 ../functions.php:2187 +#: ../functions.php:103 ../functions.php:533 ../functions.php:536 +#: ../functions.php:1996 ../functions.php:2198 ../functions.php:2333 +#: ../admin/post-types/list.php:117 ../admin/widgets/player-list.php:78 +#: ../admin/widgets/player-list.php:91 msgid "Played" msgstr "Joué" -#: ../functions.php:147 +#: ../functions.php:105 msgid "Draft" msgstr "Brouillon" -#: ../functions.php:149 +#: ../functions.php:107 msgid "Pending Review" msgstr "En attente de relecture" -#: ../functions.php:151 ../admin/hooks/post-updated-messages.php:31 +#: ../functions.php:109 ../admin/hooks/post-updated-messages.php:34 msgid "M j, Y @ G:i" msgstr "j F Y \\à G \\h i \\m\\i\\n" -#: ../functions.php:172 ../functions.php:176 ../functions.php:416 -msgid "Sum" -msgstr "Somme" - -#: ../functions.php:172 ../functions.php:417 -msgid "Average" -msgstr "Moyenne" - -#: ../functions.php:214 -msgid "Integer" -msgstr "Entier" - -#: ../functions.php:215 -msgid "Decimal" -msgstr "Décimal" - -#: ../functions.php:216 ../functions.php:636 -#: ../admin/templates/event-details.php:13 -msgid "Time" -msgstr "Temps" - -#: ../functions.php:217 -msgid "Custom Field" -msgstr "Champ personnalisé" - -#: ../functions.php:344 ../functions.php:398 -msgid "(no title)" -msgstr "(pas de titre)" - -#: ../functions.php:482 ../functions.php:485 ../admin/post-types/event.php:3 -#: ../admin/settings/settings.php:11 -msgid "Events" -msgstr "Événements" - -#: ../functions.php:482 -msgid "Attended" -msgstr "Participation" - -#: ../functions.php:488 ../admin/post-types/event.php:44 -#: ../admin/post-types/result.php:3 ../admin/settings/events.php:16 -#: ../admin/settings/events.php:32 ../admin/templates/event-results.php:48 -msgid "Results" -msgstr "Résultats" - -#: ../functions.php:491 ../functions.php:492 ../functions.php:493 -#: ../functions.php:494 ../admin/post-types/outcome.php:3 -#: ../admin/settings/events.php:47 ../admin/settings/events.php:63 -msgid "Outcomes" -msgstr "Effets" - -#: ../functions.php:492 -msgid "Streak" -msgstr "Serie" - -#: ../functions.php:493 -msgid "Last 5" -msgstr "5 derniers" - -#: ../functions.php:494 -msgid "Last 10" -msgstr "10 derniers" - -#: ../functions.php:497 ../admin/post-types/column.php:3 -#: ../admin/post-types/team.php:33 ../admin/settings/tables.php:11 -#: ../admin/settings/tables.php:33 -msgid "Columns" -msgstr "Colonnes" - -#: ../functions.php:500 -msgid "Player Statistics" -msgstr "Statistiques des Joueurs" - -#: ../functions.php:509 -msgid "Operators" -msgstr "Opérateurs" - -#: ../functions.php:519 -msgid "Constants" -msgstr "Constants" - -#: ../functions.php:523 ../admin/post-types/event.php:134 -msgid "— Select —" -msgstr "— Sélectionner —" - -#: ../functions.php:626 ../admin/post-types/event.php:5 -#: ../admin/widgets/future-events.php:123 -#: ../admin/widgets/recent-events.php:123 -msgid "events" -msgstr "événements" - -#: ../functions.php:634 ../admin/post-types/event.php:4 -#: ../admin/post-types/event.php:40 ../admin/post-types/event.php:196 -msgid "Event" -msgstr "Événement" - -#: ../functions.php:635 ../admin/templates/event-details.php:13 -msgid "Date" -msgstr "Date" - -#: ../functions.php:673 ../functions.php:814 ../functions.php:887 -#: ../functions.php:1071 ../functions.php:1752 ../functions.php:2187 -#: ../admin/hooks/gettext.php:9 ../admin/post-types/list.php:31 -#: ../admin/post-types/list.php:82 ../admin/post-types/team.php:4 -#: ../admin/post-types/team.php:41 ../admin/templates/event-results.php:52 -msgid "Team" -msgstr "Équipe" - -#: ../functions.php:716 ../functions.php:992 ../functions.php:1984 -#: ../admin/hooks/register-activation-hook.php:147 -#: ../admin/post-types/player.php:4 ../admin/templates/event-players.php:28 -msgid "Player" -msgstr "Joueur" - -#: ../functions.php:761 ../functions.php:813 ../functions.php:1484 -#: ../functions.php:2187 ../admin/post-types/event.php:69 -#: ../admin/post-types/event.php:199 ../admin/post-types/list.php:30 -#: ../admin/post-types/list.php:70 ../admin/post-types/table.php:29 -#: ../admin/post-types/table.php:68 ../admin/templates/event-details.php:22 -#: ../admin/terms/season.php:4 -msgid "Season" -msgstr "Saison" - -#: ../functions.php:837 ../functions.php:915 ../admin/post-types/event.php:64 -#: ../admin/post-types/event.php:77 ../admin/post-types/event.php:90 -#: ../admin/post-types/player.php:85 -msgid "-- Not set --" -msgstr "-- Pas réglé --" - -#: ../functions.php:891 ../admin/post-types/outcome.php:4 -msgid "Outcome" -msgstr "Effet" - -#: ../functions.php:943 ../functions.php:1048 -msgid "Starting Lineup" -msgstr "Formation partante" - -#: ../functions.php:944 ../functions.php:1049 -msgid "Substitute" -msgstr "Substitut" - -#: ../functions.php:968 -msgid "None" -msgstr "Aucun" - -#: ../functions.php:996 -msgid "Status" -msgstr "État" - -#: ../functions.php:1027 ../admin/templates/event-players.php:82 +#: ../functions.php:130 ../functions.php:134 ../functions.php:467 +#: ../functions.php:1059 ../admin/templates/event-players.php:82 msgid "Total" msgstr "Total" -#: ../admin/hooks/admin-enqueue-scripts.php:20 -#: ../admin/post-types/event.php:110 -msgid "Remove" -msgstr "Supprimer" +#: ../functions.php:130 ../functions.php:468 +msgid "Average" +msgstr "Moyenne" -#: ../admin/hooks/admin-menu.php:46 ../admin/post-types/player.php:30 -#: ../admin/post-types/staff.php:48 ../admin/post-types/team.php:42 -#: ../admin/terms/league.php:3 ../admin/widgets/future-events.php:65 -#: ../admin/widgets/recent-events.php:65 +#: ../functions.php:172 +msgid "Integer" +msgstr "Entier" + +#: ../functions.php:173 +msgid "Decimal" +msgstr "Décimal" + +#: ../functions.php:174 ../admin/templates/event-details.php:13 +msgid "Time" +msgstr "Temps" + +#: ../functions.php:175 +msgid "Custom Field" +msgstr "Champ personnalisé" + +#: ../functions.php:396 ../functions.php:449 +msgid "(no title)" +msgstr "(pas de titre)" + +#: ../functions.php:533 ../functions.php:536 ../admin/post-types/event.php:6 +#: ../admin/post-types/event.php:16 ../admin/settings/settings.php:11 +msgid "Events" +msgstr "Événements" + +#: ../functions.php:533 +msgid "Attended" +msgstr "Participation" + +#: ../functions.php:539 ../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 "Résultats" + +#: ../functions.php:542 ../functions.php:543 ../functions.php:544 +#: ../functions.php:545 ../admin/post-types/outcome.php:4 +#: ../admin/post-types/outcome.php:15 ../admin/settings/events.php:55 +msgid "Outcomes" +msgstr "Effets" + +#: ../functions.php:543 +msgid "Streak" +msgstr "Serie" + +#: ../functions.php:544 +msgid "Last 5" +msgstr "5 derniers" + +#: ../functions.php:545 +msgid "Last 10" +msgstr "10 derniers" + +#: ../functions.php:548 ../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 "Colonnes" + +#: ../functions.php:551 +msgid "Player Statistics" +msgstr "Statistiques des Joueurs" + +#: ../functions.php:560 +msgid "Operators" +msgstr "Opérateurs" + +#: ../functions.php:573 +msgid "Constants" +msgstr "Constants" + +#: ../functions.php:577 ../admin/settings/settings.php:46 +msgid "— Select —" +msgstr "— Sélectionner —" + +#: ../functions.php:690 ../functions.php:844 ../functions.php:919 +#: ../functions.php:1804 ../functions.php:2333 ../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 "Équipe" + +#: ../functions.php:712 ../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 "Modifier" + +#: ../functions.php:716 +msgid "Cancel" +msgstr "Annuler" + +#: ../functions.php:717 +msgid "Save" +msgstr "Sauvegarder" + +#: ../functions.php:746 ../functions.php:1024 ../functions.php:2092 +#: ../admin/hooks/register-activation-hook.php:147 +#: ../admin/post-types/player.php:5 ../admin/templates/event-players.php:28 +msgid "Player" +msgstr "Joueur" + +#: ../functions.php:791 ../functions.php:843 ../functions.php:1535 +#: ../functions.php:2333 ../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 "Saison" + +#: ../functions.php:867 +msgid "— None —" +msgstr "— Aucun —" + +#: ../functions.php:888 ../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 "Aucun résultat trouvé." + +#: ../functions.php:923 ../admin/post-types/outcome.php:5 +msgid "Outcome" +msgstr "Effet" + +#: ../functions.php:947 ../admin/post-types/event.php:76 +#: ../admin/post-types/event.php:91 ../admin/post-types/event.php:106 +msgid "-- Not set --" +msgstr "-- Pas réglé --" + +#: ../functions.php:975 ../functions.php:1080 +msgid "Starting Lineup" +msgstr "Formation partante" + +#: ../functions.php:976 ../functions.php:1081 +msgid "Substitute" +msgstr "Substitut" + +#: ../functions.php:1000 +msgid "None" +msgstr "Aucun" + +#: ../functions.php:1028 +msgid "Status" +msgstr "État" + +#: ../functions.php:1101 ../functions.php:1118 +#: ../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 "Ajouter" + +#: ../admin/hooks/admin-enqueue-scripts.php:24 +msgid "— Remove —" +msgstr "— Supprimer —" + +#: ../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 "Ligues" -#: ../admin/hooks/admin-menu.php:52 -#: ../admin/hooks/restrict-manage-posts.php:18 -#: ../admin/post-types/metric.php:26 ../admin/post-types/player.php:28 -#: ../admin/post-types/staff.php:46 ../admin/post-types/statistic.php:27 -#: ../admin/settings/players.php:16 ../admin/settings/players.php:48 -#: ../admin/terms/position.php:3 +#: ../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 "Positions" -#: ../admin/hooks/admin-menu.php:58 -#: ../admin/hooks/restrict-manage-posts.php:28 -#: ../admin/post-types/player.php:31 ../admin/post-types/staff.php:49 -#: ../admin/post-types/team.php:43 ../admin/terms/season.php:3 -#: ../admin/widgets/future-events.php:81 ../admin/widgets/recent-events.php:81 +#: ../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 "Saisons" -#: ../admin/hooks/admin-menu.php:64 ../admin/terms/venue.php:3 -#: ../admin/widgets/future-events.php:97 ../admin/widgets/recent-events.php:97 +#: ../admin/hooks/admin-menu.php:70 ../admin/terms/venue.php:4 +#: ../admin/terms/venue.php:18 msgid "Venues" msgstr "Lieux" #: ../admin/hooks/admin-post-thumbnail-html.php:5 -#: ../admin/hooks/admin-post-thumbnail-html.php:6 #: ../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:12 ../admin/hooks/gettext.php:15 -#: ../admin/hooks/gettext.php:27 ../admin/hooks/gettext.php:30 +#: ../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 "Sélectionner une %s" #: ../admin/hooks/admin-post-thumbnail-html.php:5 #: ../admin/hooks/admin-post-thumbnail-html.php:6 -#: ../admin/hooks/gettext.php:12 ../admin/hooks/gettext.php:15 -#: ../admin/hooks/gettext.php:18 ../admin/post-types/team.php:30 +#: ../admin/post-types/team.php:38 msgid "Logo" msgstr "Logo" +#: ../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 "Retirer la %s" + #: ../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:27 ../admin/hooks/gettext.php:30 -#: ../admin/hooks/gettext.php:33 ../admin/post-types/player.php:45 -#: ../admin/post-types/staff.php:27 +#: ../admin/post-types/player.php:58 ../admin/post-types/staff.php:34 msgid "Photo" msgstr "Photo" -#: ../admin/hooks/gettext.php:18 ../admin/hooks/gettext.php:33 -#, php-format -msgid "Remove %s" -msgstr "Retirer la %s" +#: ../admin/hooks/gettext.php:12 ../admin/hooks/gettext.php:15 +msgid "Select Logo" +msgstr "Sélectionner un logo" -#: ../admin/hooks/gettext.php:24 ../admin/post-types/player.php:27 -#: ../admin/post-types/staff.php:45 -msgid "Name" -msgstr "Nom" +#: ../admin/hooks/gettext.php:18 +msgid "Remove Logo" +msgstr "Retirer Logo" + +#: ../admin/hooks/gettext.php:24 ../admin/settings/settings.php:63 +#: ../admin/widgets/countdown.php:44 +msgid "(Auto)" +msgstr "(Auto)" + +#: ../admin/hooks/gettext.php:27 ../admin/hooks/gettext.php:30 +msgid "Select Photo" +msgstr "Sélectionner la photo" + +#: ../admin/hooks/gettext.php:33 +msgid "Remove Photo" +msgstr "Retirer Photo" #: ../admin/hooks/gettext.php:36 ../admin/hooks/gettext.php:39 #: ../admin/hooks/gettext.php:42 @@ -353,69 +341,61 @@ msgstr "Nom" msgid "Date/Time: %1$s" msgstr "Horodatage: %1$s" -#: ../admin/hooks/manage-posts-columns.php:3 ../admin/post-types/event.php:202 -#: ../admin/post-types/list.php:32 ../admin/post-types/player.php:32 -#: ../admin/post-types/staff.php:50 ../admin/post-types/table.php:31 -#: ../admin/post-types/team.php:44 +#: ../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 "Vues" -#: ../admin/hooks/media-buttons.php:7 ../admin/hooks/media-buttons.php:8 -#, php-format -msgid "Add %s" -msgstr "Ajouter une %s" +#: ../admin/hooks/manage-posts-columns.php:83 +#: ../admin/post-types/player.php:139 ../admin/templates/player-metrics.php:26 +msgid "Current Team" +msgstr "L'équipe actuelle" #: ../admin/hooks/media-buttons.php:7 -msgid "Map" -msgstr "Carte" +msgid "Add Map" +msgstr "Ajouter Carte" -#: ../admin/hooks/media-buttons.php:8 ../admin/post-types/table.php:4 -#: ../admin/post-types/table.php:45 ../admin/widgets/league-table.php:6 -msgid "League Table" -msgstr "Classements" +#: ../admin/hooks/media-buttons.php:8 +msgid "Add League Table" +msgstr "Ajouter Ligue table" #: ../admin/hooks/plugin-action-links.php:3 msgid "Settings" msgstr "Réglages" -#: ../admin/hooks/post-updated-messages.php:8 -#: ../admin/hooks/post-updated-messages.php:15 -#: ../admin/hooks/post-updated-messages.php:18 -#, php-format -msgid "%s updated." -msgstr "%s mise à jour." +#: ../admin/hooks/post-updated-messages.php:10 +msgid "Settings saved." +msgstr "Réglages enregistrés." -#: ../admin/hooks/post-updated-messages.php:20 -#, php-format -msgid "%s published." -msgstr "%s publiée." +#: ../admin/hooks/post-updated-messages.php:12 +msgid "View All" +msgstr "Afficher tout" + +#: ../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 "Modifications enregistrées." #: ../admin/hooks/post-updated-messages.php:23 -#, php-format -msgid "%s saved." -msgstr "%s enregistrée." +#: ../admin/hooks/post-updated-messages.php:28 +#: ../admin/hooks/post-updated-messages.php:38 +msgid "Success!" +msgstr "Quel succès!" -#: ../admin/hooks/post-updated-messages.php:25 -#, php-format -msgid "%s submitted." -msgstr "%s proposée." - -#: ../admin/hooks/post-updated-messages.php:27 -#: ../admin/hooks/post-updated-messages.php:33 -#: ../admin/hooks/post-updated-messages.php:37 +#: ../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 "Prévisualiser la %s" -#: ../admin/hooks/post-updated-messages.php:30 +#: ../admin/hooks/post-updated-messages.php:33 #, php-format -msgid "%s scheduled for: %s." -msgstr "%s prévu pour le : %s." - -#: ../admin/hooks/post-updated-messages.php:35 -#, php-format -msgid "%s draft updated." -msgstr "%s d’article mis à jour." +msgid "Scheduled for: %1$s." +msgstr "Planifié pour : %1$s" #: ../admin/hooks/register-activation-hook.php:8 msgid "League Manager" @@ -426,40 +406,44 @@ msgid "Team Manager" msgstr "Manager de l'équipe" #: ../admin/hooks/register-activation-hook.php:129 -#: ../admin/post-types/event.php:119 ../admin/post-types/staff.php:3 -#: ../admin/post-types/staff.php:4 +#: ../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 "Personnel" #: ../admin/hooks/restrict-manage-posts.php:8 +msgid "Show all positions" +msgstr "Afficher tous les postes" + +#: ../admin/hooks/restrict-manage-posts.php:18 +msgid "Show all leagues" +msgstr "Afficher toutes les ligues" + +#: ../admin/hooks/restrict-manage-posts.php:28 +msgid "Show all seasons" +msgstr "Afficher toutes les saisons" + #: ../admin/hooks/restrict-manage-posts.php:40 -#: ../admin/post-types/event.php:42 ../admin/post-types/event.php:197 -#: ../admin/post-types/player.php:29 ../admin/post-types/player.php:47 -#: ../admin/post-types/staff.php:28 ../admin/post-types/staff.php:47 -#: ../admin/post-types/table.php:30 ../admin/post-types/table.php:42 -#: ../admin/post-types/table.php:80 ../admin/post-types/team.php:3 -#: ../admin/widgets/future-events.php:113 -#: ../admin/widgets/recent-events.php:113 -msgid "Teams" -msgstr "Équipes" +msgid "Show all teams" +msgstr "Afficher toutes les équipes" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:43 +#: ../admin/templates/countdown.php:46 msgid "days" msgstr "jours" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:44 +#: ../admin/templates/countdown.php:47 msgid "hrs" msgstr "hrs" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:45 +#: ../admin/templates/countdown.php:48 msgid "mins" msgstr "mins" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:46 +#: ../admin/templates/countdown.php:49 msgid "secs" msgstr "secs" @@ -479,7 +463,7 @@ msgstr "Aller aux Paramètres SportsPress" msgid "Skip setup" msgstr "Ignorer la configuration" -#: ../admin/includes/notice-theme-support.php:6 +#: ../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 " @@ -489,247 +473,260 @@ msgstr "" "si vous rencontrez des problèmes d'affichage, veuillez lire notre guide " "d'intégration ou choisir un thème SportsPress :-)" -#: ../admin/includes/notice-theme-support.php:8 +#: ../admin/includes/notice-theme-support.php:7 msgid "Theme Integration Guide" msgstr "Guide d'intégration des thèmes" -#: ../admin/includes/notice-theme-support.php:9 +#: ../admin/includes/notice-theme-support.php:8 msgid "Hide this notice" msgstr "Masquer cet avertissement" -#: ../admin/post-types/column.php:4 +#: ../admin/post-types/column.php:5 msgid "Column" msgstr "Colonne" -#: ../admin/post-types/column.php:5 -msgid "columns" -msgstr "Colonnes" +#: ../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 "Nouvelle" -#: ../admin/post-types/column.php:26 ../admin/post-types/metric.php:25 -#: ../admin/post-types/outcome.php:26 ../admin/post-types/result.php:26 -#: ../admin/post-types/statistic.php:26 ../admin/settings/events.php:20 -#: ../admin/settings/events.php:51 ../admin/settings/players.php:15 -#: ../admin/settings/players.php:47 ../admin/settings/tables.php:15 +#: ../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 "Afficher" + +#: ../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 "Recherche" + +#: ../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 "Label" -#: ../admin/post-types/column.php:27 ../admin/post-types/column.php:49 -#: ../admin/post-types/outcome.php:27 ../admin/post-types/outcome.php:39 -#: ../admin/post-types/result.php:27 ../admin/post-types/result.php:40 -#: ../admin/settings/events.php:21 ../admin/settings/events.php:52 -#: ../admin/settings/tables.php:16 +#: ../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 "Clé" -#: ../admin/post-types/column.php:28 ../admin/post-types/column.php:53 -#: ../admin/settings/tables.php:17 +#: ../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 "Équation" -#: ../admin/post-types/column.php:29 ../admin/post-types/column.php:61 -#: ../admin/settings/tables.php:18 -msgid "Precision" -msgstr "Précision" +#: ../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 "Arrondi" -#: ../admin/post-types/column.php:30 ../admin/post-types/column.php:65 -#: ../admin/settings/tables.php:19 +#: ../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 "Ordre de tri" -#: ../admin/post-types/column.php:37 ../admin/post-types/event.php:41 -#: ../admin/post-types/list.php:49 ../admin/post-types/outcome.php:34 -#: ../admin/post-types/player.php:46 ../admin/post-types/result.php:34 -#: ../admin/post-types/statistic.php:35 ../admin/post-types/table.php:48 +#: ../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 "Détails" -#: ../admin/post-types/column.php:69 +#: ../admin/post-types/column.php:76 msgid "Disable" msgstr "Désactiver" -#: ../admin/post-types/column.php:77 +#: ../admin/post-types/column.php:88 ../admin/post-types/list.php:133 +#: ../admin/widgets/player-list.php:109 msgid "Descending" msgstr "Décroissant" -#: ../admin/post-types/column.php:77 +#: ../admin/post-types/column.php:88 ../admin/post-types/list.php:132 +#: ../admin/widgets/player-list.php:108 msgid "Ascending" msgstr "Croissant" -#: ../admin/post-types/event.php:45 ../admin/post-types/event.php:118 -#: ../admin/post-types/list.php:28 ../admin/post-types/list.php:43 -#: ../admin/post-types/list.php:93 ../admin/post-types/player.php:3 +#: ../admin/post-types/event.php:4 +msgid "Schedule" +msgstr "Planifier" + +#: ../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 "Événement" + +#: ../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 "Équipes" + +#: ../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 "Statistiques" + +#: ../admin/post-types/event.php:59 +msgid "Article" +msgstr "Article" + +#: ../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 "Ligue" + +#: ../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 "Lieu" + +#: ../admin/post-types/event.php:128 +msgid "Remove" +msgstr "Supprimer" + +#: ../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 "Joueurs" -#: ../admin/post-types/event.php:47 -msgid "Article" -msgstr "Article" +#: ../admin/post-types/event.php:152 +msgid "— Add —" +msgstr "— Ajouter —" -#: ../admin/post-types/event.php:56 ../admin/post-types/event.php:198 -#: ../admin/post-types/list.php:29 ../admin/post-types/list.php:58 -#: ../admin/post-types/table.php:28 ../admin/post-types/table.php:56 -#: ../admin/templates/event-details.php:17 ../admin/terms/league.php:4 -msgid "League" -msgstr "Ligue" - -#: ../admin/post-types/event.php:82 ../admin/post-types/event.php:200 -#: ../admin/templates/event-venue.php:24 ../admin/terms/venue.php:4 -msgid "Venue" -msgstr "Lieu" - -#: ../admin/post-types/event.php:201 +#: ../admin/post-types/event.php:217 msgid "Date/Time" msgstr "Horodatage" -#: ../admin/post-types/list.php:3 +#: ../admin/post-types/list.php:4 ../admin/post-types/list.php:15 msgid "Player Lists" msgstr "Listes des joueurs" -#: ../admin/post-types/list.php:4 ../admin/post-types/list.php:46 +#: ../admin/post-types/list.php:5 ../admin/post-types/list.php:53 +#: ../admin/widgets/player-list.php:47 msgid "Player List" msgstr "Liste des joueurs" -#: ../admin/post-types/list.php:5 -msgid "player lists" -msgstr "listes des joueurs" - -#: ../admin/post-types/list.php:27 ../admin/post-types/table.php:27 +#: ../admin/post-types/list.php:34 ../admin/post-types/table.php:34 msgid "Title" msgstr "Titre" -#: ../admin/post-types/metric.php:3 ../admin/post-types/player.php:48 -#: ../admin/settings/players.php:11 ../admin/settings/players.php:29 -msgid "Metrics" -msgstr "Métrique" +#: ../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 "Tous" -#: ../admin/post-types/metric.php:4 ../admin/post-types/player.php:148 -msgid "Metric" -msgstr "Métrique" +#: ../admin/post-types/list.php:110 ../admin/widgets/player-list.php:84 +msgid "Sort by:" +msgstr "Tri par:" -#: ../admin/post-types/metric.php:5 -msgid "metrics" -msgstr "métrique" - -#: ../admin/post-types/outcome.php:5 -msgid "outcome" -msgstr "effet" - -#: ../admin/post-types/player.php:5 -msgid "players" -msgstr "joueurs" - -#: ../admin/post-types/player.php:43 ../admin/post-types/staff.php:25 -#: ../admin/post-types/team.php:28 -msgid "Publish" -msgstr "Publier" - -#: ../admin/post-types/player.php:51 ../admin/post-types/statistic.php:3 -#: ../admin/settings/players.php:43 ../admin/settings/players.php:61 -msgid "Statistics" -msgstr "Statistiques" - -#: ../admin/post-types/player.php:54 ../admin/post-types/staff.php:29 -msgid "Profile" -msgstr "Profil" - -#: ../admin/post-types/player.php:74 ../admin/templates/player-metrics.php:15 +#: ../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 "Nombre" -#: ../admin/post-types/player.php:80 ../admin/templates/player-metrics.php:16 +#: ../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 "Nom" + +#: ../admin/post-types/list.php:129 ../admin/widgets/player-list.php:106 +msgid "Sort Order:" +msgstr "Tri par:" + +#: ../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 "Métrique" + +#: ../admin/post-types/metric.php:5 +msgid "Metric" +msgstr "Métrique" + +#: ../admin/post-types/player.php:55 ../admin/post-types/staff.php:32 +#: ../admin/post-types/team.php:36 +msgid "Publish" +msgstr "Publier" + +#: ../admin/post-types/player.php:64 ../admin/post-types/staff.php:36 +msgid "Profile" +msgstr "Profil" + +#: ../admin/post-types/player.php:112 ../admin/post-types/player.php:113 +#: ../admin/templates/player-metrics.php:21 msgid "Nationality" msgstr "Nationalité" -#: ../admin/post-types/player.php:98 -msgid "Current Team" -msgstr "L'équipe actuelle" +#: ../admin/post-types/player.php:154 ../admin/templates/player-metrics.php:33 +msgid "Past Teams" +msgstr "équipes précèdentes" -#: ../admin/post-types/player.php:149 -msgid "Value" -msgstr "Valeur" - -#: ../admin/post-types/result.php:4 +#: ../admin/post-types/result.php:5 msgid "Result" msgstr "Résultat" -#: ../admin/post-types/result.php:5 -msgid "result" -msgstr "résultat" - -#: ../admin/post-types/staff.php:5 -msgid "staff" -msgstr "personnel" - -#: ../admin/post-types/statistic.php:4 +#: ../admin/post-types/statistic.php:5 msgid "Statistic" msgstr "Statistique" -#: ../admin/post-types/statistic.php:5 -msgid "statistics" -msgstr "statistiques" - -#: ../admin/post-types/statistic.php:28 ../admin/post-types/statistic.php:41 -#: ../admin/settings/players.php:49 +#: ../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 "Calcul" -#: ../admin/post-types/table.php:3 ../admin/settings/settings.php:12 +#: ../admin/post-types/table.php:4 ../admin/post-types/table.php:15 +#: ../admin/settings/settings.php:12 msgid "League Tables" msgstr "Classements" -#: ../admin/post-types/table.php:5 -msgid "league tables" -msgstr "classements" +#: ../admin/post-types/table.php:5 ../admin/post-types/table.php:52 +#: ../admin/widgets/league-table.php:41 +msgid "League Table" +msgstr "Classements" -#: ../admin/post-types/team.php:5 -msgid "teams" -msgstr "équipes" - -#: ../admin/presets/baseball.php:5 -msgid "Baseball" -msgstr "Baseball" - -#: ../admin/presets/basketball.php:5 -msgid "Basketball" -msgstr "Basketball" - -#: ../admin/presets/cricket.php:5 -msgid "Cricket" -msgstr "Cricket" - -#: ../admin/presets/football.php:5 -msgid "American Football" -msgstr "Football Américain" - -#: ../admin/presets/footy.php:5 -msgid "Australian Rules Football" -msgstr "Football Australien" - -#: ../admin/presets/gaming.php:5 -msgid "Competitive Gaming" -msgstr "Jeux Compétitif" - -#: ../admin/presets/golf.php:5 -msgid "Golf" -msgstr "Golf" - -#: ../admin/presets/hockey.php:5 -msgid "Hockey" -msgstr "Hockey" - -#: ../admin/presets/racing.php:5 -msgid "Racing" -msgstr "Course" - -#: ../admin/presets/rugby.php:5 -msgid "Rugby" -msgstr "Rugby" - -#: ../admin/presets/soccer.php:5 -msgid "Soccer (Association Football)" -msgstr "Football" +#: ../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 "Parent:" #: ../admin/settings/events.php:1 msgid "Event Settings" @@ -739,23 +736,30 @@ msgstr "Options d’événement" msgid "General Settings" msgstr "Options générales" -#: ../admin/settings/settings.php:10 ../admin/settings/settings.php:236 -#: ../admin/settings/settings.php:237 -msgid "SportsPress" -msgstr "SportsPress" +#: ../admin/settings/settings.php:10 +msgid "General" +msgstr "Générales" -#: ../admin/settings/settings.php:59 ../admin/widgets/countdown.php:43 -msgid "(Auto)" -msgstr "(Auto)" +#: ../admin/settings/settings.php:50 +msgid "Custom" +msgstr "Personnalisée" -#: ../admin/settings/settings.php:98 +#: ../admin/settings/settings.php:52 ../admin/settings/settings.php:102 msgid "Sport" msgstr "Sport" -#: ../admin/settings/settings.php:119 +#: ../admin/settings/settings.php:124 msgid "Main Result" msgstr "Résultat principal" +#: ../admin/settings/settings.php:241 ../admin/settings/settings.php:242 +msgid "SportsPress" +msgstr "SportsPress" + +#: ../admin/templates/event-details.php:13 +msgid "Date" +msgstr "Date" + #. translators: Calendar caption: 1: month name, 2: 4-digit year #: ../admin/templates/events-calendar.php:56 #: ../admin/templates/events-calendar.php:83 @@ -765,111 +769,885 @@ msgctxt "calendar caption" msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: ../admin/templates/league-table.php:9 +#: ../admin/templates/league-table.php:27 msgid "Pos" msgstr "Pos" -#: ../admin/terms/league.php:5 -msgid "league" -msgstr "ligue" +#: ../admin/templates/player-list.php:46 +msgid "Rank" +msgstr "Rang" -#: ../admin/terms/position.php:4 +#: ../admin/terms/league.php:9 ../admin/terms/position.php:9 +#: ../admin/terms/season.php:9 ../admin/terms/venue.php:9 +msgid "Update" +msgstr "Mettre à jour" + +#: ../admin/terms/league.php:12 ../admin/terms/position.php:12 +#: ../admin/terms/season.php:12 ../admin/terms/venue.php:12 +msgid "Parent" +msgstr "Parent" + +#: ../admin/terms/position.php:5 msgid "Position" msgstr "Position" -#: ../admin/terms/position.php:5 -msgid "position" -msgstr "position" - -#: ../admin/terms/season.php:5 -msgid "season" -msgstr "saison" - -#: ../admin/terms/venue.php:5 -msgid "venue" -msgstr "lieu" - -#: ../admin/terms/venue.php:27 ../admin/terms/venue.php:74 +#: ../admin/terms/venue.php:38 ../admin/terms/venue.php:85 msgid "Address" msgstr "Adresse" -#: ../admin/terms/venue.php:34 +#: ../admin/terms/venue.php:45 msgid "Latitude" msgstr "Latitude" -#: ../admin/terms/venue.php:40 +#: ../admin/terms/venue.php:51 msgid "Longitude" msgstr "Longitude" -#: ../admin/widgets/countdown.php:5 ../admin/widgets/events-calendar.php:5 -#: ../admin/widgets/future-events.php:5 ../admin/widgets/league-table.php:5 -#: ../admin/widgets/recent-events.php:5 -msgid "SportsPress widget." -msgstr "Widget SportsPress." +#: ../admin/tools/importers.php:37 +msgid "SportsPress Teams (CSV)" +msgstr "SportsPress équipes (CSV)" -#: ../admin/widgets/countdown.php:6 ../admin/widgets/countdown.php:11 -msgid "Countdown" -msgstr "Rebours" +#: ../admin/tools/importers.php:37 +msgid "Import teams from a csv file." +msgstr "Importez équipes à partir d'un fichier csv." -#: ../admin/widgets/countdown.php:33 ../admin/widgets/events-calendar.php:32 -#: ../admin/widgets/future-events.php:55 ../admin/widgets/league-table.php:38 -#: ../admin/widgets/recent-events.php:55 +#: ../admin/tools/importers.php:38 +msgid "SportsPress Players (CSV)" +msgstr "SportsPress joueurs (CSV)" + +#: ../admin/tools/importers.php:38 +msgid "Import players from a csv file." +msgstr "Importez joueurs à partir d'un fichier csv." + +#: ../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 "Désolé, il y a eu une erreur." + +#: ../admin/tools/player-importer.php:193 ../admin/tools/team-importer.php:152 +msgid "The CSV is invalid." +msgstr "Le CSV est invalide." + +#: ../admin/tools/player-importer.php:204 +#, php-format +msgid "" +"Import complete - imported %s players and skipped " +"%s." +msgstr "" +"Import complété - importé %s joueurs %s " +"sautés." + +#: ../admin/tools/player-importer.php:214 ../admin/tools/team-importer.php:173 +msgid "All done!" +msgstr "Tout est fait !" + +#: ../admin/tools/player-importer.php:214 +msgid "View Players" +msgstr "Voir Joueurs" + +#: ../admin/tools/player-importer.php:264 +msgid "Import Players" +msgstr "Importer Joueurs" + +#: ../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 "" +"Salut à tous! Choisissez un fichier .csv à transférer, puis cliquez " +"\"Envoyer le fichier et l'importer\"." + +#: ../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 "" +"joueurs ont besoin d'être définis avec des colonnes dans un ordre spécifique " +"(7 colonnes). Cliquez ici pour télécharger un exemple." + +#: ../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 "" +"Avant de pouvoir transférer votre fichier d'importation, vous devez corriger " +"les erreurs suivantes :" + +#: ../admin/tools/player-importer.php:305 ../admin/tools/team-importer.php:264 +msgid "Choose a file from your computer:" +msgstr "Choisir un fichier depuis votre ordinateur: " + +#: ../admin/tools/player-importer.php:311 ../admin/tools/team-importer.php:270 +#, php-format +msgid "Maximum size: %s" +msgstr "Taille maximum : %s" + +#: ../admin/tools/player-importer.php:316 ../admin/tools/team-importer.php:275 +msgid "OR enter path to file:" +msgstr "OU entrez le chemin du fichier : " + +#: ../admin/tools/player-importer.php:323 ../admin/tools/team-importer.php:282 +msgid "Delimiter" +msgstr "Délimiteur" + +#: ../admin/tools/player-importer.php:329 ../admin/tools/team-importer.php:288 +msgid "Upload file and import" +msgstr "Envoyer le fichier et importer" + +#: ../admin/tools/team-importer.php:163 +#, php-format +msgid "" +"Import complete - imported %s teams and skipped %s." +msgstr "" +"Import complété - importé %s équipes %s " +"sautés." + +#: ../admin/tools/team-importer.php:173 +msgid "View Teams" +msgstr "Voir équipes" + +#: ../admin/tools/team-importer.php:223 +msgid "Import Teams" +msgstr "Import équipes" + +#: ../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 "" +"équipes ont besoin d'être définis avec des colonnes dans un ordre spécifique " +"(3 colonnes). Cliquez ici pour télécharger un exemple." + +#: ../admin/widgets/countdown.php:5 +msgid "A clock that counts down to an upcoming event." +msgstr "Une horloge qui compte pour un événement." + +#: ../admin/widgets/countdown.php:6 +msgid "SportsPress Countdown" +msgstr "SportsPress compte à rebours" + +#: ../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 "Titre :" -#: ../admin/widgets/countdown.php:36 -msgid "Event:" -msgstr "Événement :" +#: ../admin/widgets/countdown.php:37 ../admin/widgets/league-table.php:41 +#: ../admin/widgets/player-list.php:47 +#, php-format +msgid "Select %s:" +msgstr "Sélectionner une %s:" + +#: ../admin/widgets/countdown.php:57 +msgid "Display league" +msgstr "Ligue d'affichage" + +#: ../admin/widgets/events-calendar.php:5 +msgid "A calendar of events." +msgstr "Un calendrier des événements." #: ../admin/widgets/events-calendar.php:6 -msgid "Events Calendar" -msgstr "Calendrier des événements" +msgid "SportsPress Events Calendar" +msgstr "SportsPress Calendrier des événements" -#: ../admin/widgets/future-events.php:6 ../admin/widgets/future-events.php:11 -msgid "Future Events" -msgstr "Événements futurs" +#: ../admin/widgets/league-table.php:5 +msgid "Display a league table." +msgstr "Afficher un tableau de la ligue" -#: ../admin/widgets/future-events.php:58 ../admin/widgets/recent-events.php:58 -msgid "League:" -msgstr "Ligue :" - -#: ../admin/widgets/future-events.php:74 ../admin/widgets/recent-events.php:74 -msgid "Season:" -msgstr "Saison :" - -#: ../admin/widgets/future-events.php:90 ../admin/widgets/recent-events.php:90 -msgid "Venue:" -msgstr "Lieu :" - -#: ../admin/widgets/future-events.php:106 -#: ../admin/widgets/recent-events.php:106 -msgid "Team:" -msgstr "Équipe :" - -#: ../admin/widgets/future-events.php:123 -#: ../admin/widgets/recent-events.php:123 -#, php-format -msgid "Number of %s to show:" -msgstr "Nombre de %s à afficher :" - -#: ../admin/widgets/league-table.php:41 -msgid "League Table:" -msgstr "Classement :" +#: ../admin/widgets/league-table.php:6 +msgid "SportsPress League Table" +msgstr "SportsPress Ligue Table" #: ../admin/widgets/league-table.php:58 msgid "Columns:" msgstr "Colonnes :" -#: ../admin/widgets/recent-events.php:6 ../admin/widgets/recent-events.php:11 -msgid "Recent Events" -msgstr "Événements récents" +#: ../admin/widgets/player-list.php:5 +msgid "Display a list of players." +msgstr "Afficher la liste des joueurs." + +#: ../admin/widgets/player-list.php:6 +msgid "SportsPress Player List" +msgstr "Liste SportsPress Joueur" + +#: ../admin/widgets/player-list.php:64 +msgid "Statistics:" +msgstr "statistiques:" + +#: ../admin/widgets/player-list.php:88 +msgid "Default" +msgstr "Par défaut" + +#: ../presets/sports/baseball.php:5 +msgid "Baseball" +msgstr "Baseball" + +#: ../presets/sports/basketball.php:5 +msgid "Basketball" +msgstr "Basketball" + +#: ../presets/sports/cricket.php:5 +msgid "Cricket" +msgstr "Cricket" + +#: ../presets/sports/football.php:5 +msgid "American Football" +msgstr "Football Américain" + +#: ../presets/sports/footy.php:5 +msgid "Australian Rules Football" +msgstr "Football Australien" + +#: ../presets/sports/gaming.php:5 +msgid "Competitive Gaming" +msgstr "Jeux Compétitif" + +#: ../presets/sports/golf.php:5 +msgid "Golf" +msgstr "Golf" + +#: ../presets/sports/hockey.php:5 +msgid "Hockey" +msgstr "Hockey" + +#: ../presets/sports/racing.php:5 +msgid "Racing" +msgstr "Course" + +#: ../presets/sports/rugby.php:5 +msgid "Rugby" +msgstr "Rugby" + +#: ../presets/sports/soccer.php:5 +msgid "Soccer (Association Football)" +msgstr "Football" + +#, fuzzy +#~ msgid "None." +#~ msgstr "Aucun" + +#, fuzzy +#~ msgid "No Events found." +#~ msgstr "Aucune %s trouvée." + +#, fuzzy +#~ msgid "No teams found." +#~ msgstr "Aucune %s trouvée." + +#, fuzzy +#~ msgid "Add New Column" +#~ msgstr "Ajouter une nouvelle %s" + +#, fuzzy +#~ msgid "Edit Column" +#~ msgstr "Colonne" + +#, fuzzy +#~ msgid "New Column" +#~ msgstr "Colonne" + +#, fuzzy +#~ msgid "View Column" +#~ msgstr "Colonne" + +#, fuzzy +#~ msgid "Search Columns" +#~ msgstr "Chercher dans les %s" + +#, fuzzy +#~ msgid "No columns found." +#~ msgstr "Aucune %s trouvée." + +#, fuzzy +#~ msgid "No columns found in trash." +#~ msgstr "Aucune %s trouvée dans la corbeille." + +#, fuzzy +#~ msgid "Add New Event" +#~ msgstr "Ajouter" + +#, fuzzy +#~ msgid "Edit Event" +#~ msgstr "Événement" + +#, fuzzy +#~ msgid "New Event" +#~ msgstr "Événement" + +#, fuzzy +#~ msgid "View Event" +#~ msgstr "Événement" + +#, fuzzy +#~ msgid "Search Events" +#~ msgstr "Chercher dans les %s" + +#, fuzzy +#~ msgid "No events found." +#~ msgstr "Aucune %s trouvée." + +#, fuzzy +#~ msgid "No events found in trash." +#~ msgstr "Aucune %s trouvée dans la corbeille." + +#, fuzzy +#~ msgid "Add New League" +#~ msgstr "Ajouter une nouvelle %s" + +#, fuzzy +#~ msgid "Add New Season" +#~ msgstr "Ajouter une nouvelle %s" + +#, fuzzy +#~ msgid "Add New Venue" +#~ msgstr "Ajouter" + +#, fuzzy +#~ msgid "Add New Player List" +#~ msgstr "Liste des joueurs" + +#, fuzzy +#~ msgid "Edit Player List" +#~ msgstr "Liste des joueurs" + +#, fuzzy +#~ msgid "New Player List" +#~ msgstr "Liste des joueurs" + +#, fuzzy +#~ msgid "View Player List" +#~ msgstr "Liste des joueurs" + +#, fuzzy +#~ msgid "Search Player Lists" +#~ msgstr "Listes des joueurs" + +#, fuzzy +#~ msgid "No player lists found." +#~ msgstr "listes des joueurs" + +#, fuzzy +#~ msgid "No player lists found in trash." +#~ msgstr "Aucune %s trouvée dans la corbeille." + +#, fuzzy +#~ msgid "All Teams" +#~ msgstr "Équipes" + +#, fuzzy +#~ msgid "Add New Team" +#~ msgstr "Ajouter" + +#, fuzzy +#~ msgid "Add New Player" +#~ msgstr "Ajouter une nouvelle %s" + +#, fuzzy +#~ msgid "Add New Metric" +#~ msgstr "Ajouter une nouvelle %s" + +#, fuzzy +#~ msgid "Edit Metric" +#~ msgstr "Métrique" + +#, fuzzy +#~ msgid "New Metric" +#~ msgstr "Métrique" + +#, fuzzy +#~ msgid "View Metric" +#~ msgstr "Métrique" + +#, fuzzy +#~ msgid "Search Metrics" +#~ msgstr "Chercher dans les %s" + +#, fuzzy +#~ msgid "No metrics found." +#~ msgstr "Aucune %s trouvée." + +#, fuzzy +#~ msgid "No metrics found in trash." +#~ msgstr "Aucune %s trouvée dans la corbeille." + +#, fuzzy +#~ msgid "Add New Outcome" +#~ msgstr "Ajouter une nouvelle %s" + +#, fuzzy +#~ msgid "Edit Outcome" +#~ msgstr "Effet" + +#, fuzzy +#~ msgid "New Outcome" +#~ msgstr "Effet" + +#, fuzzy +#~ msgid "View Outcome" +#~ msgstr "Effet" + +#, fuzzy +#~ msgid "Search Outcomes" +#~ msgstr "Effets" + +#, fuzzy +#~ msgid "No outcomes found." +#~ msgstr "Aucune %s trouvée." + +#, fuzzy +#~ msgid "No outcomes found in trash." +#~ msgstr "Aucune %s trouvée dans la corbeille." + +#, fuzzy +#~ msgid "Edit Player" +#~ msgstr "Joueur" + +#, fuzzy +#~ msgid "New Player" +#~ msgstr "Joueur" + +#, fuzzy +#~ msgid "View Player" +#~ msgstr "Joueur" + +#, fuzzy +#~ msgid "Search Players" +#~ msgstr "Chercher dans les %s" + +#, fuzzy +#~ msgid "No players found." +#~ msgstr "Aucune %s trouvée." + +#, fuzzy +#~ msgid "No players found in trash." +#~ msgstr "Aucune %s trouvée dans la corbeille." + +#, fuzzy +#~ msgid "Select Nationality" +#~ msgstr "Nationalité" + +#, fuzzy +#~ msgid "Select Positions" +#~ msgstr "写真を選択" + +#, fuzzy +#~ msgid "Select Team" +#~ msgstr "Sélectionner" + +#, fuzzy +#~ msgid "Select Leagues" +#~ msgstr "ロゴを選択" + +#, fuzzy +#~ msgid "Select Seasons" +#~ msgstr "Sélectionner une %s" + +#, fuzzy +#~ msgid "Add New Result" +#~ msgstr "Ajouter une nouvelle %s" + +#, fuzzy +#~ msgid "Edit Result" +#~ msgstr "Résultat principal" + +#, fuzzy +#~ msgid "New Result" +#~ msgstr "Résultat" + +#, fuzzy +#~ msgid "View Result" +#~ msgstr "Résultat principal" + +#, fuzzy +#~ msgid "Search Results" +#~ msgstr "Chercher dans les %s" + +#, fuzzy +#~ msgid "No results found in trash." +#~ msgstr "Aucune %s trouvée dans la corbeille." + +#, fuzzy +#~ msgid "Add New Staff" +#~ msgstr "Ajouter" + +#, fuzzy +#~ msgid "Edit Staff" +#~ msgstr "Personnel" + +#, fuzzy +#~ msgid "New Staff" +#~ msgstr "Personnel" + +#, fuzzy +#~ msgid "View Staff" +#~ msgstr "Personnel" + +#, fuzzy +#~ msgid "No staff found." +#~ msgstr "Aucune %s trouvée." + +#, fuzzy +#~ msgid "No staff found in trash." +#~ msgstr "Aucune %s trouvée dans la corbeille." + +#, fuzzy +#~ msgid "Add New Statistic" +#~ msgstr "Statistique" + +#, fuzzy +#~ msgid "Edit Statistic" +#~ msgstr "Statistique" + +#, fuzzy +#~ msgid "New Statistic" +#~ msgstr "Statistique" + +#, fuzzy +#~ msgid "View Statistic" +#~ msgstr "Statistique" + +#, fuzzy +#~ msgid "Search Statistics" +#~ msgstr "Statistiques des Joueurs" + +#, fuzzy +#~ msgid "No statistics found." +#~ msgstr "Aucune %s trouvée." + +#, fuzzy +#~ msgid "No statistics found in trash." +#~ msgstr "Aucune %s trouvée dans la corbeille." + +#, fuzzy +#~ msgid "Add New League Table" +#~ msgstr "Classements" + +#, fuzzy +#~ msgid "Edit League Table" +#~ msgstr "Classements" + +#, fuzzy +#~ msgid "New League Table" +#~ msgstr "Classements" + +#, fuzzy +#~ msgid "View League Table" +#~ msgstr "Classements" + +#, fuzzy +#~ msgid "Search League Tables" +#~ msgstr "Classements" + +#, fuzzy +#~ msgid "No league tables found." +#~ msgstr "classements" + +#, fuzzy +#~ msgid "No league tables found in trash." +#~ msgstr "Aucune %s trouvée dans la corbeille." + +#, fuzzy +#~ msgid "Edit Team" +#~ msgstr "Modifier la %s" + +#, fuzzy +#~ msgid "New Team" +#~ msgstr "Équipe" + +#, fuzzy +#~ msgid "View Team" +#~ msgstr "Voir la %s" + +#, fuzzy +#~ msgid "Search Teams" +#~ msgstr "Chercher dans les %s" + +#, fuzzy +#~ msgid "No teams found in trash." +#~ msgstr "Aucune %s trouvée dans la corbeille." + +#, fuzzy +#~ msgid "Edit Results" +#~ msgstr "Résultats" + +#, fuzzy +#~ msgid "Edit Outcomes" +#~ msgstr "Effets" + +#, fuzzy +#~ msgid "Edit Metrics" +#~ msgstr "Métrique" + +#, fuzzy +#~ msgid "Edit Statistics" +#~ msgstr "Statistiques" + +#, fuzzy +#~ msgid "Edit Columns" +#~ msgstr "Colonnes" + +#, fuzzy +#~ msgid "All Leagues" +#~ msgstr "Ligues" + +#, fuzzy +#~ msgid "Edit League" +#~ msgstr "Ligue" + +#, fuzzy +#~ msgid "View League" +#~ msgstr "Ligue" + +#, fuzzy +#~ msgid "Update League" +#~ msgstr "Mettre à jour la %s" + +#, fuzzy +#~ msgid "New League Name" +#~ msgstr "Nom de la nouvelle %s" + +#, fuzzy +#~ msgid "Parent League" +#~ msgstr "%s parente :" + +#, fuzzy +#~ msgid "Parent League:" +#~ msgstr "Ligue :" + +#, fuzzy +#~ msgid "Search Leagues" +#~ msgstr "Chercher dans les %s" + +#, fuzzy +#~ msgid "No leagues found." +#~ msgstr "Aucune %s trouvée." + +#, fuzzy +#~ msgid "All Positions" +#~ msgstr "Positions" + +#, fuzzy +#~ msgid "Edit Position" +#~ msgstr "Position" + +#, fuzzy +#~ msgid "View Position" +#~ msgstr "Position" + +#, fuzzy +#~ msgid "Update Position" +#~ msgstr "Position" + +#, fuzzy +#~ msgid "Add New Position" +#~ msgstr "Ajouter une nouvelle %s" + +#, fuzzy +#~ msgid "New Position Name" +#~ msgstr "Nom de la nouvelle %s" + +#, fuzzy +#~ msgid "Parent Position" +#~ msgstr "Position" + +#, fuzzy +#~ msgid "Parent Position:" +#~ msgstr "Position" + +#, fuzzy +#~ msgid "Search Positions" +#~ msgstr "Positions" + +#, fuzzy +#~ msgid "No positions found." +#~ msgstr "Aucune %s trouvée." + +#, fuzzy +#~ msgid "All Seasons" +#~ msgstr "Saisons" + +#, fuzzy +#~ msgid "Edit Season" +#~ msgstr "Saison" + +#, fuzzy +#~ msgid "View Season" +#~ msgstr "Saison" + +#, fuzzy +#~ msgid "Update Season" +#~ msgstr "Mettre à jour la %s" + +#, fuzzy +#~ msgid "New Season Name" +#~ msgstr "Nom de la nouvelle %s" + +#, fuzzy +#~ msgid "Parent Season" +#~ msgstr "%s parente :" + +#, fuzzy +#~ msgid "Parent Season:" +#~ msgstr "%s parente :" + +#, fuzzy +#~ msgid "Search Seasons" +#~ msgstr "Chercher dans les %s" + +#, fuzzy +#~ msgid "No seasons found." +#~ msgstr "Aucune %s trouvée." + +#, fuzzy +#~ msgid "All Venues" +#~ msgstr "Lieux" + +#, fuzzy +#~ msgid "Edit Venue" +#~ msgstr "Lieu" + +#, fuzzy +#~ msgid "View Venue" +#~ msgstr "Lieu" + +#, fuzzy +#~ msgid "New Venue Name" +#~ msgstr "Nom de la nouvelle %s" + +#, fuzzy +#~ msgid "Parent Venue" +#~ msgstr "%s parente :" + +#, fuzzy +#~ msgid "Parent Venue:" +#~ msgstr "%s parente :" + +#, fuzzy +#~ msgid "Search Venues" +#~ msgstr "Chercher dans les %s" + +#, fuzzy +#~ msgid "No venues found." +#~ msgstr "Aucune %s trouvée." + +#, fuzzy +#~ msgid "Select Event:" +#~ msgstr "Événements récents" + +#, fuzzy +#~ msgid "SportsPress Future Events" +#~ msgstr "Événements futurs" + +#~ msgid "Future Events" +#~ msgstr "Événements futurs" + +#~ msgid "League:" +#~ msgstr "Ligue :" + +#~ msgid "Season:" +#~ msgstr "Saison :" + +#~ msgid "Venue:" +#~ msgstr "Lieu :" + +#~ msgid "Team:" +#~ msgstr "Équipe :" + +#, fuzzy +#~ msgid "Number of events to show:" +#~ msgstr "Nombre de %s à afficher :" + +#, fuzzy +#~ msgid "Select League Table:" +#~ msgstr "Classement :" + +#, fuzzy +#~ msgid "Select Player List:" +#~ msgstr "Liste des joueurs" + +#, fuzzy +#~ msgid "SportsPress Recent Events" +#~ msgstr "Événements récents" + +#~ msgid "Recent Events" +#~ msgstr "Événements récents" + +#~ msgid "Precision" +#~ msgstr "Précision" + +#~ msgid "Sum" +#~ msgstr "Somme" + +#~ msgid "events" +#~ msgstr "événements" + +#~ msgid "Map" +#~ msgstr "Carte" + +#~ msgid "%s updated." +#~ msgstr "%s mise à jour." + +#~ msgid "%s published." +#~ msgstr "%s publiée." + +#~ msgid "%s submitted." +#~ msgstr "%s proposée." + +#~ msgid "%s draft updated." +#~ msgstr "%s d’article mis à jour." + +#~ msgid "columns" +#~ msgstr "Colonnes" + +#~ msgid "metrics" +#~ msgstr "métrique" + +#~ msgid "outcome" +#~ msgstr "effet" + +#~ msgid "players" +#~ msgstr "joueurs" + +#~ msgid "Value" +#~ msgstr "Valeur" + +#~ msgid "result" +#~ msgstr "résultat" + +#~ msgid "staff" +#~ msgstr "personnel" + +#~ msgid "statistics" +#~ msgstr "statistiques" + +#~ msgid "teams" +#~ msgstr "équipes" + +#~ msgid "league" +#~ msgstr "ligue" + +#~ msgid "position" +#~ msgstr "position" + +#~ msgid "season" +#~ msgstr "saison" + +#~ msgid "venue" +#~ msgstr "lieu" + +#~ msgid "Countdown" +#~ msgstr "Rebours" + +#~ msgid "Event:" +#~ msgstr "Événement :" #~ msgid "%1$s %2$s" #~ msgstr "%1$s %2$s" -#~ msgid "Select" -#~ msgstr "Sélectionner" - #~ msgid "-- Not Set --" #~ msgstr "-- Pas réglé --" @@ -929,21 +1707,9 @@ msgstr "Événements récents" #~ msgid "Appearances" #~ msgstr "出場" -#~ msgid "Select Logo" -#~ msgstr "ロゴを選択" - -#~ msgid "Remove Logo" -#~ msgstr "ロゴを削除" - #~ msgid "Joined: %1$s" #~ msgstr "入団日: %1$s" -#~ msgid "Select Photo" -#~ msgstr "写真を選択" - -#~ msgid "Remove Photo" -#~ msgstr "写真を削除" - #~ msgid "Table Columns" #~ msgstr "順位表列" diff --git a/languages/sportspress-it_IT.mo b/languages/sportspress-it_IT.mo index fd730981846fe2c70ae0d9a13d2ab15de7c549ef..f59027d159afbee35007748546bdb495a745b192 100644 GIT binary patch literal 11544 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 VB;~t_L96*6C#Sm%xgWaD_+Q8UR$%}D literal 8600 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\n" "Language-Team: ThemeBoy \n" "Language: it_IT\n" @@ -20,332 +20,320 @@ msgstr "" "X-Poedit-Bookmarks: -1,75,-1,-1,-1,-1,-1,-1,-1,-1\n" "X-Poedit-SearchPath-0: ..\n" -#: ../functions.php:56 -msgid "Add New" -msgstr "Aggiungi nuovo" - -#: ../functions.php:57 ../functions.php:80 ../functions.php:1071 -#: ../functions.php:1072 -#, php-format -msgid "Add New %s" -msgstr "Aggiungi un nuovo %s" - -#: ../functions.php:58 ../functions.php:77 -#: ../admin/hooks/post-updated-messages.php:10 ../admin/settings/events.php:32 -#: ../admin/settings/events.php:63 ../admin/settings/players.php:29 -#: ../admin/settings/players.php:61 ../admin/settings/tables.php:33 -#, php-format -msgid "Edit %s" -msgstr "Modifica %s" - -#: ../functions.php:59 -#, php-format -msgid "New %s" -msgstr "Nuovo %s" - -#: ../functions.php:60 ../functions.php:78 -#, php-format -msgid "View %s" -msgstr "Visualizza %s" - -#: ../functions.php:61 ../functions.php:84 -#, php-format -msgid "Search %s" -msgstr "Cerca %s" - -#: ../functions.php:62 ../functions.php:85 ../functions.php:626 -#, php-format -msgid "No %s found." -msgstr "Nessun %s trovato." - -#: ../functions.php:63 -#, php-format -msgid "No %s found in trash." -msgstr "Nessun %s nel cestino." - -#: ../functions.php:64 ../functions.php:82 ../functions.php:83 -#, php-format -msgid "Parent %s" -msgstr "Genitore %s" - -#: ../functions.php:76 ../admin/hooks/restrict-manage-posts.php:8 -#: ../admin/hooks/restrict-manage-posts.php:18 -#: ../admin/hooks/restrict-manage-posts.php:28 -#: ../admin/hooks/restrict-manage-posts.php:40 -#: ../admin/widgets/future-events.php:65 ../admin/widgets/future-events.php:81 -#: ../admin/widgets/future-events.php:97 -#: ../admin/widgets/future-events.php:113 -#: ../admin/widgets/recent-events.php:65 ../admin/widgets/recent-events.php:81 -#: ../admin/widgets/recent-events.php:97 -#: ../admin/widgets/recent-events.php:113 -#, php-format -msgid "All %s" -msgstr "Tutte %s" - -#: ../functions.php:79 -#, php-format -msgid "Update %s" -msgstr "Aggiorna %s" - -#: ../functions.php:81 -#, php-format -msgid "New %s Name" -msgstr "Nuovo Nome %s" - -#: ../functions.php:116 +#: ../functions.php:74 msgid "1 view" msgstr "1 vedi" -#: ../functions.php:118 +#: ../functions.php:76 #, php-format msgid "%s views" msgstr "%s viste" -#: ../functions.php:143 +#: ../functions.php:101 msgid "Scheduled" msgstr "Previsto" -#: ../functions.php:145 ../functions.php:482 ../functions.php:485 -#: ../functions.php:1899 ../functions.php:2050 ../functions.php:2187 +#: ../functions.php:103 ../functions.php:533 ../functions.php:536 +#: ../functions.php:1996 ../functions.php:2198 ../functions.php:2333 +#: ../admin/post-types/list.php:117 ../admin/widgets/player-list.php:78 +#: ../admin/widgets/player-list.php:91 msgid "Played" msgstr "Giocato" -#: ../functions.php:147 +#: ../functions.php:105 msgid "Draft" msgstr "Bozza" -#: ../functions.php:149 +#: ../functions.php:107 msgid "Pending Review" msgstr "In attesa di revisione" -#: ../functions.php:151 ../admin/hooks/post-updated-messages.php:31 +#: ../functions.php:109 ../admin/hooks/post-updated-messages.php:34 msgid "M j, Y @ G:i" msgstr "j F Y @ H:i" -#: ../functions.php:172 ../functions.php:176 ../functions.php:416 -msgid "Sum" -msgstr "Somma" - -#: ../functions.php:172 ../functions.php:417 -msgid "Average" -msgstr "Media" - -#: ../functions.php:214 -msgid "Integer" -msgstr "numero intero" - -#: ../functions.php:215 -msgid "Decimal" -msgstr "decimale" - -#: ../functions.php:216 ../functions.php:636 -#: ../admin/templates/event-details.php:13 -msgid "Time" -msgstr "Tempo" - -#: ../functions.php:217 -msgid "Custom Field" -msgstr "Campo Personalizzato" - -#: ../functions.php:344 ../functions.php:398 -msgid "(no title)" -msgstr "(senza titolo)" - -#: ../functions.php:482 ../functions.php:485 ../admin/post-types/event.php:3 -#: ../admin/settings/settings.php:11 -msgid "Events" -msgstr "Eventi " - -#: ../functions.php:482 -msgid "Attended" -msgstr "Partecipato" - -#: ../functions.php:488 ../admin/post-types/event.php:44 -#: ../admin/post-types/result.php:3 ../admin/settings/events.php:16 -#: ../admin/settings/events.php:32 ../admin/templates/event-results.php:48 -msgid "Results" -msgstr "Risultati" - -#: ../functions.php:491 ../functions.php:492 ../functions.php:493 -#: ../functions.php:494 ../admin/post-types/outcome.php:3 -#: ../admin/settings/events.php:47 ../admin/settings/events.php:63 -msgid "Outcomes" -msgstr "Esiti" - -#: ../functions.php:492 -msgid "Streak" -msgstr "Striscia " - -#: ../functions.php:493 -msgid "Last 5" -msgstr "Ultimi 5" - -#: ../functions.php:494 -msgid "Last 10" -msgstr "Ultimi 10" - -#: ../functions.php:497 ../admin/post-types/column.php:3 -#: ../admin/post-types/team.php:33 ../admin/settings/tables.php:11 -#: ../admin/settings/tables.php:33 -msgid "Columns" -msgstr "Colonne" - -#: ../functions.php:500 -msgid "Player Statistics" -msgstr "Giocatore Bilancio" - -#: ../functions.php:509 -msgid "Operators" -msgstr "Operatori" - -#: ../functions.php:519 -msgid "Constants" -msgstr "Costanti" - -#: ../functions.php:523 ../admin/post-types/event.php:134 -msgid "— Select —" -msgstr "— Seleziona —" - -#: ../functions.php:626 ../admin/post-types/event.php:5 -#: ../admin/widgets/future-events.php:123 -#: ../admin/widgets/recent-events.php:123 -msgid "events" -msgstr "eventi" - -#: ../functions.php:634 ../admin/post-types/event.php:4 -#: ../admin/post-types/event.php:40 ../admin/post-types/event.php:196 -msgid "Event" -msgstr "Evento" - -#: ../functions.php:635 ../admin/templates/event-details.php:13 -msgid "Date" -msgstr "Data" - -#: ../functions.php:673 ../functions.php:814 ../functions.php:887 -#: ../functions.php:1071 ../functions.php:1752 ../functions.php:2187 -#: ../admin/hooks/gettext.php:9 ../admin/post-types/list.php:31 -#: ../admin/post-types/list.php:82 ../admin/post-types/team.php:4 -#: ../admin/post-types/team.php:41 ../admin/templates/event-results.php:52 -msgid "Team" -msgstr "Squadra" - -#: ../functions.php:716 ../functions.php:992 ../functions.php:1984 -#: ../admin/hooks/register-activation-hook.php:147 -#: ../admin/post-types/player.php:4 ../admin/templates/event-players.php:28 -msgid "Player" -msgstr "Giocatore" - -#: ../functions.php:761 ../functions.php:813 ../functions.php:1484 -#: ../functions.php:2187 ../admin/post-types/event.php:69 -#: ../admin/post-types/event.php:199 ../admin/post-types/list.php:30 -#: ../admin/post-types/list.php:70 ../admin/post-types/table.php:29 -#: ../admin/post-types/table.php:68 ../admin/templates/event-details.php:22 -#: ../admin/terms/season.php:4 -msgid "Season" -msgstr "Stagione" - -#: ../functions.php:837 ../functions.php:915 ../admin/post-types/event.php:64 -#: ../admin/post-types/event.php:77 ../admin/post-types/event.php:90 -#: ../admin/post-types/player.php:85 -msgid "-- Not set --" -msgstr "-- Non è impostata --" - -#: ../functions.php:891 ../admin/post-types/outcome.php:4 -msgid "Outcome" -msgstr "Esito" - -#: ../functions.php:943 ../functions.php:1048 -msgid "Starting Lineup" -msgstr "Formazione di partenza" - -#: ../functions.php:944 ../functions.php:1049 -msgid "Substitute" -msgstr "Supplenti" - -#: ../functions.php:968 -msgid "None" -msgstr "Nessuno" - -#: ../functions.php:996 -msgid "Status" -msgstr "Stato" - -#: ../functions.php:1027 ../admin/templates/event-players.php:82 +#: ../functions.php:130 ../functions.php:134 ../functions.php:467 +#: ../functions.php:1059 ../admin/templates/event-players.php:82 msgid "Total" msgstr "Totale:" -#: ../admin/hooks/admin-enqueue-scripts.php:20 -#: ../admin/post-types/event.php:110 -msgid "Remove" -msgstr "Rimuovi" +#: ../functions.php:130 ../functions.php:468 +msgid "Average" +msgstr "Media" -#: ../admin/hooks/admin-menu.php:46 ../admin/post-types/player.php:30 -#: ../admin/post-types/staff.php:48 ../admin/post-types/team.php:42 -#: ../admin/terms/league.php:3 ../admin/widgets/future-events.php:65 -#: ../admin/widgets/recent-events.php:65 +#: ../functions.php:172 +msgid "Integer" +msgstr "numero intero" + +#: ../functions.php:173 +msgid "Decimal" +msgstr "decimale" + +#: ../functions.php:174 ../admin/templates/event-details.php:13 +msgid "Time" +msgstr "Tempo" + +#: ../functions.php:175 +msgid "Custom Field" +msgstr "Campo Personalizzato" + +#: ../functions.php:396 ../functions.php:449 +msgid "(no title)" +msgstr "(senza titolo)" + +#: ../functions.php:533 ../functions.php:536 ../admin/post-types/event.php:6 +#: ../admin/post-types/event.php:16 ../admin/settings/settings.php:11 +msgid "Events" +msgstr "Eventi " + +#: ../functions.php:533 +msgid "Attended" +msgstr "Partecipato" + +#: ../functions.php:539 ../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 "Risultati" + +#: ../functions.php:542 ../functions.php:543 ../functions.php:544 +#: ../functions.php:545 ../admin/post-types/outcome.php:4 +#: ../admin/post-types/outcome.php:15 ../admin/settings/events.php:55 +msgid "Outcomes" +msgstr "Esiti" + +#: ../functions.php:543 +msgid "Streak" +msgstr "Striscia " + +#: ../functions.php:544 +msgid "Last 5" +msgstr "Ultimi 5" + +#: ../functions.php:545 +msgid "Last 10" +msgstr "Ultimi 10" + +#: ../functions.php:548 ../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 "Colonne" + +#: ../functions.php:551 +msgid "Player Statistics" +msgstr "Giocatore Bilancio" + +#: ../functions.php:560 +msgid "Operators" +msgstr "Operatori" + +#: ../functions.php:573 +msgid "Constants" +msgstr "Costanti" + +#: ../functions.php:577 ../admin/settings/settings.php:46 +msgid "— Select —" +msgstr "— Seleziona —" + +#: ../functions.php:690 ../functions.php:844 ../functions.php:919 +#: ../functions.php:1804 ../functions.php:2333 ../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 "Squadra" + +#: ../functions.php:712 ../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 "Modifica" + +#: ../functions.php:716 +msgid "Cancel" +msgstr "Annulla" + +#: ../functions.php:717 +msgid "Save" +msgstr "Salva" + +#: ../functions.php:746 ../functions.php:1024 ../functions.php:2092 +#: ../admin/hooks/register-activation-hook.php:147 +#: ../admin/post-types/player.php:5 ../admin/templates/event-players.php:28 +msgid "Player" +msgstr "Giocatore" + +#: ../functions.php:791 ../functions.php:843 ../functions.php:1535 +#: ../functions.php:2333 ../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 "Stagione" + +#: ../functions.php:867 +msgid "— None —" +msgstr "— Nessuna —" + +#: ../functions.php:888 ../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 "Nessun risultato trovato." + +#: ../functions.php:923 ../admin/post-types/outcome.php:5 +msgid "Outcome" +msgstr "Esito" + +#: ../functions.php:947 ../admin/post-types/event.php:76 +#: ../admin/post-types/event.php:91 ../admin/post-types/event.php:106 +msgid "-- Not set --" +msgstr "-- Non è impostata --" + +#: ../functions.php:975 ../functions.php:1080 +msgid "Starting Lineup" +msgstr "Formazione di partenza" + +#: ../functions.php:976 ../functions.php:1081 +msgid "Substitute" +msgstr "Supplenti" + +#: ../functions.php:1000 +msgid "None" +msgstr "Nessuno" + +#: ../functions.php:1028 +msgid "Status" +msgstr "Stato" + +#: ../functions.php:1101 ../functions.php:1118 +#: ../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 "Aggiungi nuovo" + +#: ../admin/hooks/admin-enqueue-scripts.php:24 +msgid "— Remove —" +msgstr "— Rimuovi —" + +#: ../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 "Leghe" -#: ../admin/hooks/admin-menu.php:52 -#: ../admin/hooks/restrict-manage-posts.php:18 -#: ../admin/post-types/metric.php:26 ../admin/post-types/player.php:28 -#: ../admin/post-types/staff.php:46 ../admin/post-types/statistic.php:27 -#: ../admin/settings/players.php:16 ../admin/settings/players.php:48 -#: ../admin/terms/position.php:3 +#: ../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 "Posizioni" -#: ../admin/hooks/admin-menu.php:58 -#: ../admin/hooks/restrict-manage-posts.php:28 -#: ../admin/post-types/player.php:31 ../admin/post-types/staff.php:49 -#: ../admin/post-types/team.php:43 ../admin/terms/season.php:3 -#: ../admin/widgets/future-events.php:81 ../admin/widgets/recent-events.php:81 +#: ../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 "Stagioni" -#: ../admin/hooks/admin-menu.php:64 ../admin/terms/venue.php:3 -#: ../admin/widgets/future-events.php:97 ../admin/widgets/recent-events.php:97 +#: ../admin/hooks/admin-menu.php:70 ../admin/terms/venue.php:4 +#: ../admin/terms/venue.php:18 msgid "Venues" msgstr "Luoghi" #: ../admin/hooks/admin-post-thumbnail-html.php:5 -#: ../admin/hooks/admin-post-thumbnail-html.php:6 #: ../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:12 ../admin/hooks/gettext.php:15 -#: ../admin/hooks/gettext.php:27 ../admin/hooks/gettext.php:30 +#: ../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 "Seleziona %s" #: ../admin/hooks/admin-post-thumbnail-html.php:5 #: ../admin/hooks/admin-post-thumbnail-html.php:6 -#: ../admin/hooks/gettext.php:12 ../admin/hooks/gettext.php:15 -#: ../admin/hooks/gettext.php:18 ../admin/post-types/team.php:30 +#: ../admin/post-types/team.php:38 msgid "Logo" msgstr "Logo" +#: ../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 "Rimuovi %s" + #: ../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:27 ../admin/hooks/gettext.php:30 -#: ../admin/hooks/gettext.php:33 ../admin/post-types/player.php:45 -#: ../admin/post-types/staff.php:27 +#: ../admin/post-types/player.php:58 ../admin/post-types/staff.php:34 msgid "Photo" msgstr "Foto" -#: ../admin/hooks/gettext.php:18 ../admin/hooks/gettext.php:33 -#, php-format -msgid "Remove %s" -msgstr "Rimuovi %s" +#: ../admin/hooks/gettext.php:12 ../admin/hooks/gettext.php:15 +msgid "Select Logo" +msgstr "Seleziona Logo" -#: ../admin/hooks/gettext.php:24 ../admin/post-types/player.php:27 -#: ../admin/post-types/staff.php:45 -msgid "Name" -msgstr "Nome" +#: ../admin/hooks/gettext.php:18 +msgid "Remove Logo" +msgstr "Rimuovi Logo" + +#: ../admin/hooks/gettext.php:24 ../admin/settings/settings.php:63 +#: ../admin/widgets/countdown.php:44 +msgid "(Auto)" +msgstr "(Auto)" + +#: ../admin/hooks/gettext.php:27 ../admin/hooks/gettext.php:30 +msgid "Select Photo" +msgstr "Seleziona Foto " + +#: ../admin/hooks/gettext.php:33 +msgid "Remove Photo" +msgstr "Rimuovi Foto" #: ../admin/hooks/gettext.php:36 ../admin/hooks/gettext.php:39 #: ../admin/hooks/gettext.php:42 @@ -353,69 +341,61 @@ msgstr "Nome" msgid "Date/Time: %1$s" msgstr "Data/Ora: %1$s" -#: ../admin/hooks/manage-posts-columns.php:3 ../admin/post-types/event.php:202 -#: ../admin/post-types/list.php:32 ../admin/post-types/player.php:32 -#: ../admin/post-types/staff.php:50 ../admin/post-types/table.php:31 -#: ../admin/post-types/team.php:44 +#: ../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 "Viste" -#: ../admin/hooks/media-buttons.php:7 ../admin/hooks/media-buttons.php:8 -#, php-format -msgid "Add %s" -msgstr "Aggiungi %s" +#: ../admin/hooks/manage-posts-columns.php:83 +#: ../admin/post-types/player.php:139 ../admin/templates/player-metrics.php:26 +msgid "Current Team" +msgstr "squadra corrente" #: ../admin/hooks/media-buttons.php:7 -msgid "Map" -msgstr "Mappa" +msgid "Add Map" +msgstr "Aggiungi Map" -#: ../admin/hooks/media-buttons.php:8 ../admin/post-types/table.php:4 -#: ../admin/post-types/table.php:45 ../admin/widgets/league-table.php:6 -msgid "League Table" -msgstr "League Table" +#: ../admin/hooks/media-buttons.php:8 +msgid "Add League Table" +msgstr "Aggiungi League Table" #: ../admin/hooks/plugin-action-links.php:3 msgid "Settings" msgstr "Impostazioni" -#: ../admin/hooks/post-updated-messages.php:8 -#: ../admin/hooks/post-updated-messages.php:15 -#: ../admin/hooks/post-updated-messages.php:18 -#, php-format -msgid "%s updated." -msgstr "%s aggiornato." +#: ../admin/hooks/post-updated-messages.php:10 +msgid "Settings saved." +msgstr "Impostazioni salvate." -#: ../admin/hooks/post-updated-messages.php:20 -#, php-format -msgid "%s published." -msgstr "%s pubblicato." +#: ../admin/hooks/post-updated-messages.php:12 +msgid "View All" +msgstr "Mostra tutti" + +#: ../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 "Le modifiche sono state salvate." #: ../admin/hooks/post-updated-messages.php:23 -#, php-format -msgid "%s saved." -msgstr "%s salvato." +#: ../admin/hooks/post-updated-messages.php:28 +#: ../admin/hooks/post-updated-messages.php:38 +msgid "Success!" +msgstr "Successo!" -#: ../admin/hooks/post-updated-messages.php:25 -#, php-format -msgid "%s submitted." -msgstr "%s inviato." - -#: ../admin/hooks/post-updated-messages.php:27 -#: ../admin/hooks/post-updated-messages.php:33 -#: ../admin/hooks/post-updated-messages.php:37 +#: ../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 "Anteprima %s" -#: ../admin/hooks/post-updated-messages.php:30 +#: ../admin/hooks/post-updated-messages.php:33 #, php-format -msgid "%s scheduled for: %s." -msgstr "%s previsto per: %s." - -#: ../admin/hooks/post-updated-messages.php:35 -#, php-format -msgid "%s draft updated." -msgstr "Bozza %s aggiornata." +msgid "Scheduled for: %1$s." +msgstr "Pianificato il: %1$s" #: ../admin/hooks/register-activation-hook.php:8 msgid "League Manager" @@ -426,40 +406,44 @@ msgid "Team Manager" msgstr "Squadra Gerente" #: ../admin/hooks/register-activation-hook.php:129 -#: ../admin/post-types/event.php:119 ../admin/post-types/staff.php:3 -#: ../admin/post-types/staff.php:4 +#: ../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 "Personale" #: ../admin/hooks/restrict-manage-posts.php:8 +msgid "Show all positions" +msgstr "Mostra tutte le posizioni" + +#: ../admin/hooks/restrict-manage-posts.php:18 +msgid "Show all leagues" +msgstr "Mostra tutti i campionati" + +#: ../admin/hooks/restrict-manage-posts.php:28 +msgid "Show all seasons" +msgstr "Mostra tutte le stagioni" + #: ../admin/hooks/restrict-manage-posts.php:40 -#: ../admin/post-types/event.php:42 ../admin/post-types/event.php:197 -#: ../admin/post-types/player.php:29 ../admin/post-types/player.php:47 -#: ../admin/post-types/staff.php:28 ../admin/post-types/staff.php:47 -#: ../admin/post-types/table.php:30 ../admin/post-types/table.php:42 -#: ../admin/post-types/table.php:80 ../admin/post-types/team.php:3 -#: ../admin/widgets/future-events.php:113 -#: ../admin/widgets/recent-events.php:113 -msgid "Teams" -msgstr "Squadre" +msgid "Show all teams" +msgstr "Mostra tutte le squadre" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:43 +#: ../admin/templates/countdown.php:46 msgid "days" msgstr "giorni" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:44 +#: ../admin/templates/countdown.php:47 msgid "hrs" msgstr "orario" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:45 +#: ../admin/templates/countdown.php:48 msgid "mins" msgstr "verbale" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:46 +#: ../admin/templates/countdown.php:49 msgid "secs" msgstr "secondi" @@ -479,7 +463,7 @@ msgstr "Vai alle impostazioni di SportsPress" msgid "Skip setup" msgstr "Salta configurazione" -#: ../admin/includes/notice-theme-support.php:6 +#: ../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 " @@ -489,247 +473,260 @@ msgstr "" "se si riscontrano problemi di layout si prega di leggere la nostra guida per " "l'integrazione o scegli un tema SportsPress :)" -#: ../admin/includes/notice-theme-support.php:8 +#: ../admin/includes/notice-theme-support.php:7 msgid "Theme Integration Guide" msgstr "Theme Integration Guide" -#: ../admin/includes/notice-theme-support.php:9 +#: ../admin/includes/notice-theme-support.php:8 msgid "Hide this notice" msgstr "Nascondi questo avviso" -#: ../admin/post-types/column.php:4 +#: ../admin/post-types/column.php:5 msgid "Column" msgstr "Colonna" -#: ../admin/post-types/column.php:5 -msgid "columns" -msgstr "Colonne" +#: ../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 "Nuovo" -#: ../admin/post-types/column.php:26 ../admin/post-types/metric.php:25 -#: ../admin/post-types/outcome.php:26 ../admin/post-types/result.php:26 -#: ../admin/post-types/statistic.php:26 ../admin/settings/events.php:20 -#: ../admin/settings/events.php:51 ../admin/settings/players.php:15 -#: ../admin/settings/players.php:47 ../admin/settings/tables.php:15 +#: ../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 "Vedi" + +#: ../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 "Cerca" + +#: ../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 "Etichetta" -#: ../admin/post-types/column.php:27 ../admin/post-types/column.php:49 -#: ../admin/post-types/outcome.php:27 ../admin/post-types/outcome.php:39 -#: ../admin/post-types/result.php:27 ../admin/post-types/result.php:40 -#: ../admin/settings/events.php:21 ../admin/settings/events.php:52 -#: ../admin/settings/tables.php:16 +#: ../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 "Chiave" -#: ../admin/post-types/column.php:28 ../admin/post-types/column.php:53 -#: ../admin/settings/tables.php:17 +#: ../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 "Equazione" -#: ../admin/post-types/column.php:29 ../admin/post-types/column.php:61 -#: ../admin/settings/tables.php:18 -msgid "Precision" -msgstr "Precisione" +#: ../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 "Arrotondamento" -#: ../admin/post-types/column.php:30 ../admin/post-types/column.php:65 -#: ../admin/settings/tables.php:19 +#: ../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 "Ordinamento" -#: ../admin/post-types/column.php:37 ../admin/post-types/event.php:41 -#: ../admin/post-types/list.php:49 ../admin/post-types/outcome.php:34 -#: ../admin/post-types/player.php:46 ../admin/post-types/result.php:34 -#: ../admin/post-types/statistic.php:35 ../admin/post-types/table.php:48 +#: ../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 "Dettagli" -#: ../admin/post-types/column.php:69 +#: ../admin/post-types/column.php:76 msgid "Disable" msgstr "Disabilita" -#: ../admin/post-types/column.php:77 +#: ../admin/post-types/column.php:88 ../admin/post-types/list.php:133 +#: ../admin/widgets/player-list.php:109 msgid "Descending" msgstr "Discendente" -#: ../admin/post-types/column.php:77 +#: ../admin/post-types/column.php:88 ../admin/post-types/list.php:132 +#: ../admin/widgets/player-list.php:108 msgid "Ascending" msgstr "Ascendente" -#: ../admin/post-types/event.php:45 ../admin/post-types/event.php:118 -#: ../admin/post-types/list.php:28 ../admin/post-types/list.php:43 -#: ../admin/post-types/list.php:93 ../admin/post-types/player.php:3 +#: ../admin/post-types/event.php:4 +msgid "Schedule" +msgstr "Programmato" + +#: ../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 "Evento" + +#: ../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 "Squadre" + +#: ../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 "statistica" + +#: ../admin/post-types/event.php:59 +msgid "Article" +msgstr "Articolo" + +#: ../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 "Lega" + +#: ../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 "Sede" + +#: ../admin/post-types/event.php:128 +msgid "Remove" +msgstr "Rimuovi" + +#: ../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 "Giocatori" -#: ../admin/post-types/event.php:47 -msgid "Article" -msgstr "Articolo" +#: ../admin/post-types/event.php:152 +msgid "— Add —" +msgstr "— Aggiungi —" -#: ../admin/post-types/event.php:56 ../admin/post-types/event.php:198 -#: ../admin/post-types/list.php:29 ../admin/post-types/list.php:58 -#: ../admin/post-types/table.php:28 ../admin/post-types/table.php:56 -#: ../admin/templates/event-details.php:17 ../admin/terms/league.php:4 -msgid "League" -msgstr "Lega" - -#: ../admin/post-types/event.php:82 ../admin/post-types/event.php:200 -#: ../admin/templates/event-venue.php:24 ../admin/terms/venue.php:4 -msgid "Venue" -msgstr "Sede" - -#: ../admin/post-types/event.php:201 +#: ../admin/post-types/event.php:217 msgid "Date/Time" msgstr "Data/Ora" -#: ../admin/post-types/list.php:3 +#: ../admin/post-types/list.php:4 ../admin/post-types/list.php:15 msgid "Player Lists" msgstr "Lista giocatori" -#: ../admin/post-types/list.php:4 ../admin/post-types/list.php:46 +#: ../admin/post-types/list.php:5 ../admin/post-types/list.php:53 +#: ../admin/widgets/player-list.php:47 msgid "Player List" msgstr "Elenchi Giocatori" -#: ../admin/post-types/list.php:5 -msgid "player lists" -msgstr "Lista giocatori" - -#: ../admin/post-types/list.php:27 ../admin/post-types/table.php:27 +#: ../admin/post-types/list.php:34 ../admin/post-types/table.php:34 msgid "Title" msgstr "Titolo" -#: ../admin/post-types/metric.php:3 ../admin/post-types/player.php:48 -#: ../admin/settings/players.php:11 ../admin/settings/players.php:29 -msgid "Metrics" -msgstr "Metrica" +#: ../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 "Tutte" -#: ../admin/post-types/metric.php:4 ../admin/post-types/player.php:148 -msgid "Metric" -msgstr "Metrico" +#: ../admin/post-types/list.php:110 ../admin/widgets/player-list.php:84 +msgid "Sort by:" +msgstr "Ordina per:" -#: ../admin/post-types/metric.php:5 -msgid "metrics" -msgstr "metrica" - -#: ../admin/post-types/outcome.php:5 -msgid "outcome" -msgstr "esito" - -#: ../admin/post-types/player.php:5 -msgid "players" -msgstr "giocatori" - -#: ../admin/post-types/player.php:43 ../admin/post-types/staff.php:25 -#: ../admin/post-types/team.php:28 -msgid "Publish" -msgstr "Pubblica" - -#: ../admin/post-types/player.php:51 ../admin/post-types/statistic.php:3 -#: ../admin/settings/players.php:43 ../admin/settings/players.php:61 -msgid "Statistics" -msgstr "statistica" - -#: ../admin/post-types/player.php:54 ../admin/post-types/staff.php:29 -msgid "Profile" -msgstr "Profilo" - -#: ../admin/post-types/player.php:74 ../admin/templates/player-metrics.php:15 +#: ../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 "Numero" -#: ../admin/post-types/player.php:80 ../admin/templates/player-metrics.php:16 +#: ../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 "Nome" + +#: ../admin/post-types/list.php:129 ../admin/widgets/player-list.php:106 +msgid "Sort Order:" +msgstr "Ordinamento:" + +#: ../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 "Metrica" + +#: ../admin/post-types/metric.php:5 +msgid "Metric" +msgstr "Metrico" + +#: ../admin/post-types/player.php:55 ../admin/post-types/staff.php:32 +#: ../admin/post-types/team.php:36 +msgid "Publish" +msgstr "Pubblica" + +#: ../admin/post-types/player.php:64 ../admin/post-types/staff.php:36 +msgid "Profile" +msgstr "Profilo" + +#: ../admin/post-types/player.php:112 ../admin/post-types/player.php:113 +#: ../admin/templates/player-metrics.php:21 msgid "Nationality" msgstr "Nazionalità" -#: ../admin/post-types/player.php:98 -msgid "Current Team" -msgstr "squadra corrente" +#: ../admin/post-types/player.php:154 ../admin/templates/player-metrics.php:33 +msgid "Past Teams" +msgstr "Squadre passati" -#: ../admin/post-types/player.php:149 -msgid "Value" -msgstr "Valore" - -#: ../admin/post-types/result.php:4 +#: ../admin/post-types/result.php:5 msgid "Result" msgstr "Risultato" -#: ../admin/post-types/result.php:5 -msgid "result" -msgstr "risultato" - -#: ../admin/post-types/staff.php:5 -msgid "staff" -msgstr "personale" - -#: ../admin/post-types/statistic.php:4 +#: ../admin/post-types/statistic.php:5 msgid "Statistic" msgstr "statistico" -#: ../admin/post-types/statistic.php:5 -msgid "statistics" -msgstr "statistica" - -#: ../admin/post-types/statistic.php:28 ../admin/post-types/statistic.php:41 -#: ../admin/settings/players.php:49 +#: ../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 "Calcolare" -#: ../admin/post-types/table.php:3 ../admin/settings/settings.php:12 +#: ../admin/post-types/table.php:4 ../admin/post-types/table.php:15 +#: ../admin/settings/settings.php:12 msgid "League Tables" msgstr "Tabelle League" -#: ../admin/post-types/table.php:5 -msgid "league tables" -msgstr "tabelle League" +#: ../admin/post-types/table.php:5 ../admin/post-types/table.php:52 +#: ../admin/widgets/league-table.php:41 +msgid "League Table" +msgstr "League Table" -#: ../admin/post-types/team.php:5 -msgid "teams" -msgstr "squadre" - -#: ../admin/presets/baseball.php:5 -msgid "Baseball" -msgstr "Baseball" - -#: ../admin/presets/basketball.php:5 -msgid "Basketball" -msgstr "Pallacanestro" - -#: ../admin/presets/cricket.php:5 -msgid "Cricket" -msgstr "Cricket" - -#: ../admin/presets/football.php:5 -msgid "American Football" -msgstr "Football Americano" - -#: ../admin/presets/footy.php:5 -msgid "Australian Rules Football" -msgstr "Football Australiano" - -#: ../admin/presets/gaming.php:5 -msgid "Competitive Gaming" -msgstr "Gaming Competitive" - -#: ../admin/presets/golf.php:5 -msgid "Golf" -msgstr "Golf" - -#: ../admin/presets/hockey.php:5 -msgid "Hockey" -msgstr "Hockey" - -#: ../admin/presets/racing.php:5 -msgid "Racing" -msgstr "Corsa" - -#: ../admin/presets/rugby.php:5 -msgid "Rugby" -msgstr "Rugby" - -#: ../admin/presets/soccer.php:5 -msgid "Soccer (Association Football)" -msgstr "Calcio" +#: ../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 "Genitore:" #: ../admin/settings/events.php:1 msgid "Event Settings" @@ -739,23 +736,30 @@ msgstr "Impostazioni Evento" msgid "General Settings" msgstr "Impostazioni Generale" -#: ../admin/settings/settings.php:10 ../admin/settings/settings.php:236 -#: ../admin/settings/settings.php:237 -msgid "SportsPress" -msgstr "SportsPress" +#: ../admin/settings/settings.php:10 +msgid "General" +msgstr "Generali" -#: ../admin/settings/settings.php:59 ../admin/widgets/countdown.php:43 -msgid "(Auto)" -msgstr "(Auto)" +#: ../admin/settings/settings.php:50 +msgid "Custom" +msgstr "Personalizzata" -#: ../admin/settings/settings.php:98 +#: ../admin/settings/settings.php:52 ../admin/settings/settings.php:102 msgid "Sport" msgstr "Sport" -#: ../admin/settings/settings.php:119 +#: ../admin/settings/settings.php:124 msgid "Main Result" msgstr "Risultato principale" +#: ../admin/settings/settings.php:241 ../admin/settings/settings.php:242 +msgid "SportsPress" +msgstr "SportsPress" + +#: ../admin/templates/event-details.php:13 +msgid "Date" +msgstr "Data" + #. translators: Calendar caption: 1: month name, 2: 4-digit year #: ../admin/templates/events-calendar.php:56 #: ../admin/templates/events-calendar.php:83 @@ -765,111 +769,885 @@ msgctxt "calendar caption" msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: ../admin/templates/league-table.php:9 +#: ../admin/templates/league-table.php:27 msgid "Pos" msgstr "Pos" -#: ../admin/terms/league.php:5 -msgid "league" -msgstr "lega" +#: ../admin/templates/player-list.php:46 +msgid "Rank" +msgstr "Rango" -#: ../admin/terms/position.php:4 +#: ../admin/terms/league.php:9 ../admin/terms/position.php:9 +#: ../admin/terms/season.php:9 ../admin/terms/venue.php:9 +msgid "Update" +msgstr "Aggiorna" + +#: ../admin/terms/league.php:12 ../admin/terms/position.php:12 +#: ../admin/terms/season.php:12 ../admin/terms/venue.php:12 +msgid "Parent" +msgstr "Genitore" + +#: ../admin/terms/position.php:5 msgid "Position" msgstr "Posizione" -#: ../admin/terms/position.php:5 -msgid "position" -msgstr "posizione" - -#: ../admin/terms/season.php:5 -msgid "season" -msgstr "stagione" - -#: ../admin/terms/venue.php:5 -msgid "venue" -msgstr "sede" - -#: ../admin/terms/venue.php:27 ../admin/terms/venue.php:74 +#: ../admin/terms/venue.php:38 ../admin/terms/venue.php:85 msgid "Address" msgstr "Indirizzo" -#: ../admin/terms/venue.php:34 +#: ../admin/terms/venue.php:45 msgid "Latitude" msgstr "Latitudine" -#: ../admin/terms/venue.php:40 +#: ../admin/terms/venue.php:51 msgid "Longitude" msgstr "Longitudine" -#: ../admin/widgets/countdown.php:5 ../admin/widgets/events-calendar.php:5 -#: ../admin/widgets/future-events.php:5 ../admin/widgets/league-table.php:5 -#: ../admin/widgets/recent-events.php:5 -msgid "SportsPress widget." -msgstr "SportsPress widget." +#: ../admin/tools/importers.php:37 +msgid "SportsPress Teams (CSV)" +msgstr "SportsPress Squadre (CSV)" -#: ../admin/widgets/countdown.php:6 ../admin/widgets/countdown.php:11 -msgid "Countdown" -msgstr "conto alla rovescia" +#: ../admin/tools/importers.php:37 +msgid "Import teams from a csv file." +msgstr "Importazione squadre da un file CSV." -#: ../admin/widgets/countdown.php:33 ../admin/widgets/events-calendar.php:32 -#: ../admin/widgets/future-events.php:55 ../admin/widgets/league-table.php:38 -#: ../admin/widgets/recent-events.php:55 +#: ../admin/tools/importers.php:38 +msgid "SportsPress Players (CSV)" +msgstr "SportsPress Giocatori (CSV)" + +#: ../admin/tools/importers.php:38 +msgid "Import players from a csv file." +msgstr "Importazione giocatori da un file CSV." + +#: ../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 "Siamo spiacenti, si è verificato un errore." + +#: ../admin/tools/player-importer.php:193 ../admin/tools/team-importer.php:152 +msgid "The CSV is invalid." +msgstr "Il CSV non è valido." + +#: ../admin/tools/player-importer.php:204 +#, php-format +msgid "" +"Import complete - imported %s players and skipped " +"%s." +msgstr "" +"Importazione completa - importato % s giocatori e saltato " +"% s." + +#: ../admin/tools/player-importer.php:214 ../admin/tools/team-importer.php:173 +msgid "All done!" +msgstr "Fatto tutto!" + +#: ../admin/tools/player-importer.php:214 +msgid "View Players" +msgstr "Visualizza Giocatori" + +#: ../admin/tools/player-importer.php:264 +msgid "Import Players" +msgstr "Importa Giocatori" + +#: ../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 "" +"Hi there! Scegliere un file .csv da caricare, quindi fare clic su \"Carica e " +"importa file\"." + +#: ../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 "" +"Giocatori devono essere definiti con colonne in un ordine specifico (7 " +"colonne). Clicca qui per scaricare un esempio." + +#: ../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 "" +"Prima di caricare il file di importazione, è necessario risolvere il " +"seguente errore:" + +#: ../admin/tools/player-importer.php:305 ../admin/tools/team-importer.php:264 +msgid "Choose a file from your computer:" +msgstr "Scegli un file dal tuo computer:" + +#: ../admin/tools/player-importer.php:311 ../admin/tools/team-importer.php:270 +#, php-format +msgid "Maximum size: %s" +msgstr "Dimensione massima: %s" + +#: ../admin/tools/player-importer.php:316 ../admin/tools/team-importer.php:275 +msgid "OR enter path to file:" +msgstr "OR digitare il percorso al file:" + +#: ../admin/tools/player-importer.php:323 ../admin/tools/team-importer.php:282 +msgid "Delimiter" +msgstr "Separatore" + +#: ../admin/tools/player-importer.php:329 ../admin/tools/team-importer.php:288 +msgid "Upload file and import" +msgstr "Carica il file ed importa" + +#: ../admin/tools/team-importer.php:163 +#, php-format +msgid "" +"Import complete - imported %s teams and skipped %s." +msgstr "" +"Importazione completa - importato % s squadre e saltato " +"% s." + +#: ../admin/tools/team-importer.php:173 +msgid "View Teams" +msgstr "Visualizza Squadre" + +#: ../admin/tools/team-importer.php:223 +msgid "Import Teams" +msgstr "Importa Squadre" + +#: ../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 "" +"Squadre devono essere definiti con colonne in un ordine specifico (3 " +"colonne). Clicca qui per scaricare un esempio." + +#: ../admin/widgets/countdown.php:5 +msgid "A clock that counts down to an upcoming event." +msgstr "Un orologio che conta fino a un evento imminente." + +#: ../admin/widgets/countdown.php:6 +msgid "SportsPress Countdown" +msgstr "SportsPress Conto alla rovescia" + +#: ../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 "Titolo:" -#: ../admin/widgets/countdown.php:36 -msgid "Event:" -msgstr "Evento:" +#: ../admin/widgets/countdown.php:37 ../admin/widgets/league-table.php:41 +#: ../admin/widgets/player-list.php:47 +#, php-format +msgid "Select %s:" +msgstr "Seleziona %s" + +#: ../admin/widgets/countdown.php:57 +msgid "Display league" +msgstr "Visualizza Lega" + +#: ../admin/widgets/events-calendar.php:5 +msgid "A calendar of events." +msgstr "Un calendario di eventi." #: ../admin/widgets/events-calendar.php:6 -msgid "Events Calendar" -msgstr "Calendario Eventi" +msgid "SportsPress Events Calendar" +msgstr "SportsPress Calendario Eventi" -#: ../admin/widgets/future-events.php:6 ../admin/widgets/future-events.php:11 -msgid "Future Events" -msgstr "Eventi futuri" +#: ../admin/widgets/league-table.php:5 +msgid "Display a league table." +msgstr "Mostra un tabelle League" -#: ../admin/widgets/future-events.php:58 ../admin/widgets/recent-events.php:58 -msgid "League:" -msgstr "Lega" - -#: ../admin/widgets/future-events.php:74 ../admin/widgets/recent-events.php:74 -msgid "Season:" -msgstr "Stagione:" - -#: ../admin/widgets/future-events.php:90 ../admin/widgets/recent-events.php:90 -msgid "Venue:" -msgstr "Sede:" - -#: ../admin/widgets/future-events.php:106 -#: ../admin/widgets/recent-events.php:106 -msgid "Team:" -msgstr "Team:" - -#: ../admin/widgets/future-events.php:123 -#: ../admin/widgets/recent-events.php:123 -#, php-format -msgid "Number of %s to show:" -msgstr "Numero di %s da mostrare:" - -#: ../admin/widgets/league-table.php:41 -msgid "League Table:" -msgstr "League Table:" +#: ../admin/widgets/league-table.php:6 +msgid "SportsPress League Table" +msgstr "SportsPress Tabella League" #: ../admin/widgets/league-table.php:58 msgid "Columns:" msgstr "Colonne:" -#: ../admin/widgets/recent-events.php:6 ../admin/widgets/recent-events.php:11 -msgid "Recent Events" -msgstr "Eventi Recenti" +#: ../admin/widgets/player-list.php:5 +msgid "Display a list of players." +msgstr "Mostra un elenco di giocatori" + +#: ../admin/widgets/player-list.php:6 +msgid "SportsPress Player List" +msgstr "SportsPress Lista giocatori" + +#: ../admin/widgets/player-list.php:64 +msgid "Statistics:" +msgstr "statistica:" + +#: ../admin/widgets/player-list.php:88 +msgid "Default" +msgstr "Predefinito" + +#: ../presets/sports/baseball.php:5 +msgid "Baseball" +msgstr "Baseball" + +#: ../presets/sports/basketball.php:5 +msgid "Basketball" +msgstr "Pallacanestro" + +#: ../presets/sports/cricket.php:5 +msgid "Cricket" +msgstr "Cricket" + +#: ../presets/sports/football.php:5 +msgid "American Football" +msgstr "Football Americano" + +#: ../presets/sports/footy.php:5 +msgid "Australian Rules Football" +msgstr "Football Australiano" + +#: ../presets/sports/gaming.php:5 +msgid "Competitive Gaming" +msgstr "Gaming Competitive" + +#: ../presets/sports/golf.php:5 +msgid "Golf" +msgstr "Golf" + +#: ../presets/sports/hockey.php:5 +msgid "Hockey" +msgstr "Hockey" + +#: ../presets/sports/racing.php:5 +msgid "Racing" +msgstr "Corsa" + +#: ../presets/sports/rugby.php:5 +msgid "Rugby" +msgstr "Rugby" + +#: ../presets/sports/soccer.php:5 +msgid "Soccer (Association Football)" +msgstr "Calcio" + +#, fuzzy +#~ msgid "None." +#~ msgstr "Nessuno" + +#, fuzzy +#~ msgid "No Events found." +#~ msgstr "Nessun %s trovato." + +#, fuzzy +#~ msgid "No teams found." +#~ msgstr "Nessun %s trovato." + +#, fuzzy +#~ msgid "Add New Column" +#~ msgstr "Aggiungi un nuovo %s" + +#, fuzzy +#~ msgid "Edit Column" +#~ msgstr "Colonna" + +#, fuzzy +#~ msgid "New Column" +#~ msgstr "Colonna" + +#, fuzzy +#~ msgid "View Column" +#~ msgstr "Colonna" + +#, fuzzy +#~ msgid "Search Columns" +#~ msgstr "Cerca %s" + +#, fuzzy +#~ msgid "No columns found." +#~ msgstr "Nessun %s trovato." + +#, fuzzy +#~ msgid "No columns found in trash." +#~ msgstr "Nessun %s nel cestino." + +#, fuzzy +#~ msgid "Add New Event" +#~ msgstr "Aggiungi nuovo" + +#, fuzzy +#~ msgid "Edit Event" +#~ msgstr "Evento" + +#, fuzzy +#~ msgid "New Event" +#~ msgstr "Evento" + +#, fuzzy +#~ msgid "View Event" +#~ msgstr "Evento" + +#, fuzzy +#~ msgid "Search Events" +#~ msgstr "Cerca %s" + +#, fuzzy +#~ msgid "No events found." +#~ msgstr "Nessun %s trovato." + +#, fuzzy +#~ msgid "No events found in trash." +#~ msgstr "Nessun %s nel cestino." + +#, fuzzy +#~ msgid "Add New League" +#~ msgstr "Aggiungi un nuovo %s" + +#, fuzzy +#~ msgid "Add New Season" +#~ msgstr "Aggiungi un nuovo %s" + +#, fuzzy +#~ msgid "Add New Venue" +#~ msgstr "Aggiungi nuovo" + +#, fuzzy +#~ msgid "Add New Player List" +#~ msgstr "Elenchi Giocatori" + +#, fuzzy +#~ msgid "Edit Player List" +#~ msgstr "Elenchi Giocatori" + +#, fuzzy +#~ msgid "New Player List" +#~ msgstr "Elenchi Giocatori" + +#, fuzzy +#~ msgid "View Player List" +#~ msgstr "Elenchi Giocatori" + +#, fuzzy +#~ msgid "Search Player Lists" +#~ msgstr "Lista giocatori" + +#, fuzzy +#~ msgid "No player lists found." +#~ msgstr "Lista giocatori" + +#, fuzzy +#~ msgid "No player lists found in trash." +#~ msgstr "Nessun %s nel cestino." + +#, fuzzy +#~ msgid "All Teams" +#~ msgstr "Squadre" + +#, fuzzy +#~ msgid "Add New Team" +#~ msgstr "Aggiungi nuovo" + +#, fuzzy +#~ msgid "Add New Player" +#~ msgstr "Aggiungi un nuovo %s" + +#, fuzzy +#~ msgid "Add New Metric" +#~ msgstr "Aggiungi un nuovo %s" + +#, fuzzy +#~ msgid "Edit Metric" +#~ msgstr "Metrico" + +#, fuzzy +#~ msgid "New Metric" +#~ msgstr "Metrico" + +#, fuzzy +#~ msgid "View Metric" +#~ msgstr "Metrico" + +#, fuzzy +#~ msgid "Search Metrics" +#~ msgstr "Cerca %s" + +#, fuzzy +#~ msgid "No metrics found." +#~ msgstr "Nessun %s trovato." + +#, fuzzy +#~ msgid "No metrics found in trash." +#~ msgstr "Nessun %s nel cestino." + +#, fuzzy +#~ msgid "Add New Outcome" +#~ msgstr "Aggiungi un nuovo %s" + +#, fuzzy +#~ msgid "Edit Outcome" +#~ msgstr "Esito" + +#, fuzzy +#~ msgid "New Outcome" +#~ msgstr "Esito" + +#, fuzzy +#~ msgid "View Outcome" +#~ msgstr "Esito" + +#, fuzzy +#~ msgid "Search Outcomes" +#~ msgstr "Esiti" + +#, fuzzy +#~ msgid "No outcomes found." +#~ msgstr "Nessun %s trovato." + +#, fuzzy +#~ msgid "No outcomes found in trash." +#~ msgstr "Nessun %s nel cestino." + +#, fuzzy +#~ msgid "Edit Player" +#~ msgstr "Giocatore" + +#, fuzzy +#~ msgid "New Player" +#~ msgstr "Giocatore" + +#, fuzzy +#~ msgid "View Player" +#~ msgstr "Giocatore" + +#, fuzzy +#~ msgid "Search Players" +#~ msgstr "Cerca %s" + +#, fuzzy +#~ msgid "No players found." +#~ msgstr "Nessun %s trovato." + +#, fuzzy +#~ msgid "No players found in trash." +#~ msgstr "Nessun %s nel cestino." + +#, fuzzy +#~ msgid "Select Nationality" +#~ msgstr "Nazionalità" + +#, fuzzy +#~ msgid "Select Positions" +#~ msgstr "写真を選択" + +#, fuzzy +#~ msgid "Select Team" +#~ msgstr "Sélectionner" + +#, fuzzy +#~ msgid "Select Leagues" +#~ msgstr "ロゴを選択" + +#, fuzzy +#~ msgid "Select Seasons" +#~ msgstr "Seleziona %s" + +#, fuzzy +#~ msgid "Add New Result" +#~ msgstr "Aggiungi un nuovo %s" + +#, fuzzy +#~ msgid "Edit Result" +#~ msgstr "Risultato principale" + +#, fuzzy +#~ msgid "New Result" +#~ msgstr "Risultato" + +#, fuzzy +#~ msgid "View Result" +#~ msgstr "Risultato principale" + +#, fuzzy +#~ msgid "Search Results" +#~ msgstr "Cerca %s" + +#, fuzzy +#~ msgid "No results found in trash." +#~ msgstr "Nessun %s nel cestino." + +#, fuzzy +#~ msgid "Add New Staff" +#~ msgstr "Aggiungi nuovo" + +#, fuzzy +#~ msgid "Edit Staff" +#~ msgstr "Personale" + +#, fuzzy +#~ msgid "New Staff" +#~ msgstr "Personale" + +#, fuzzy +#~ msgid "View Staff" +#~ msgstr "Personale" + +#, fuzzy +#~ msgid "No staff found." +#~ msgstr "Nessun %s trovato." + +#, fuzzy +#~ msgid "No staff found in trash." +#~ msgstr "Nessun %s nel cestino." + +#, fuzzy +#~ msgid "Add New Statistic" +#~ msgstr "statistico" + +#, fuzzy +#~ msgid "Edit Statistic" +#~ msgstr "statistico" + +#, fuzzy +#~ msgid "New Statistic" +#~ msgstr "statistico" + +#, fuzzy +#~ msgid "View Statistic" +#~ msgstr "statistico" + +#, fuzzy +#~ msgid "Search Statistics" +#~ msgstr "Giocatore Bilancio" + +#, fuzzy +#~ msgid "No statistics found." +#~ msgstr "Nessun %s trovato." + +#, fuzzy +#~ msgid "No statistics found in trash." +#~ msgstr "Nessun %s nel cestino." + +#, fuzzy +#~ msgid "Add New League Table" +#~ msgstr "League Table" + +#, fuzzy +#~ msgid "Edit League Table" +#~ msgstr "League Table" + +#, fuzzy +#~ msgid "New League Table" +#~ msgstr "League Table" + +#, fuzzy +#~ msgid "View League Table" +#~ msgstr "League Table" + +#, fuzzy +#~ msgid "Search League Tables" +#~ msgstr "Tabelle League" + +#, fuzzy +#~ msgid "No league tables found." +#~ msgstr "tabelle League" + +#, fuzzy +#~ msgid "No league tables found in trash." +#~ msgstr "Nessun %s nel cestino." + +#, fuzzy +#~ msgid "Edit Team" +#~ msgstr "Modifica %s" + +#, fuzzy +#~ msgid "New Team" +#~ msgstr "Squadra" + +#, fuzzy +#~ msgid "View Team" +#~ msgstr "Visualizza %s" + +#, fuzzy +#~ msgid "Search Teams" +#~ msgstr "Cerca %s" + +#, fuzzy +#~ msgid "No teams found in trash." +#~ msgstr "Nessun %s nel cestino." + +#, fuzzy +#~ msgid "Edit Results" +#~ msgstr "Risultati" + +#, fuzzy +#~ msgid "Edit Outcomes" +#~ msgstr "Esiti" + +#, fuzzy +#~ msgid "Edit Metrics" +#~ msgstr "Metrica" + +#, fuzzy +#~ msgid "Edit Statistics" +#~ msgstr "statistica" + +#, fuzzy +#~ msgid "Edit Columns" +#~ msgstr "Colonne" + +#, fuzzy +#~ msgid "All Leagues" +#~ msgstr "Leghe" + +#, fuzzy +#~ msgid "Edit League" +#~ msgstr "Lega" + +#, fuzzy +#~ msgid "View League" +#~ msgstr "Lega" + +#, fuzzy +#~ msgid "Update League" +#~ msgstr "Aggiorna %s" + +#, fuzzy +#~ msgid "New League Name" +#~ msgstr "Nuovo Nome %s" + +#, fuzzy +#~ msgid "Parent League" +#~ msgstr "Genitore %s" + +#, fuzzy +#~ msgid "Parent League:" +#~ msgstr "Lega" + +#, fuzzy +#~ msgid "Search Leagues" +#~ msgstr "Cerca %s" + +#, fuzzy +#~ msgid "No leagues found." +#~ msgstr "Nessun %s trovato." + +#, fuzzy +#~ msgid "All Positions" +#~ msgstr "Posizioni" + +#, fuzzy +#~ msgid "Edit Position" +#~ msgstr "Posizione" + +#, fuzzy +#~ msgid "View Position" +#~ msgstr "Posizione" + +#, fuzzy +#~ msgid "Update Position" +#~ msgstr "Posizione" + +#, fuzzy +#~ msgid "Add New Position" +#~ msgstr "Aggiungi un nuovo %s" + +#, fuzzy +#~ msgid "New Position Name" +#~ msgstr "Nuovo Nome %s" + +#, fuzzy +#~ msgid "Parent Position" +#~ msgstr "Posizione" + +#, fuzzy +#~ msgid "Parent Position:" +#~ msgstr "Posizione" + +#, fuzzy +#~ msgid "Search Positions" +#~ msgstr "Posizioni" + +#, fuzzy +#~ msgid "No positions found." +#~ msgstr "Nessun %s trovato." + +#, fuzzy +#~ msgid "All Seasons" +#~ msgstr "Stagioni" + +#, fuzzy +#~ msgid "Edit Season" +#~ msgstr "Stagione" + +#, fuzzy +#~ msgid "View Season" +#~ msgstr "Stagione" + +#, fuzzy +#~ msgid "Update Season" +#~ msgstr "Aggiorna %s" + +#, fuzzy +#~ msgid "New Season Name" +#~ msgstr "Nuovo Nome %s" + +#, fuzzy +#~ msgid "Parent Season" +#~ msgstr "Genitore %s" + +#, fuzzy +#~ msgid "Parent Season:" +#~ msgstr "Genitore %s" + +#, fuzzy +#~ msgid "Search Seasons" +#~ msgstr "Cerca %s" + +#, fuzzy +#~ msgid "No seasons found." +#~ msgstr "Nessun %s trovato." + +#, fuzzy +#~ msgid "All Venues" +#~ msgstr "Luoghi" + +#, fuzzy +#~ msgid "Edit Venue" +#~ msgstr "Sede" + +#, fuzzy +#~ msgid "View Venue" +#~ msgstr "Sede" + +#, fuzzy +#~ msgid "New Venue Name" +#~ msgstr "Nuovo Nome %s" + +#, fuzzy +#~ msgid "Parent Venue" +#~ msgstr "Genitore %s" + +#, fuzzy +#~ msgid "Parent Venue:" +#~ msgstr "Genitore %s" + +#, fuzzy +#~ msgid "Search Venues" +#~ msgstr "Cerca %s" + +#, fuzzy +#~ msgid "No venues found." +#~ msgstr "Nessun %s trovato." + +#, fuzzy +#~ msgid "Select Event:" +#~ msgstr "Eventi Recenti" + +#, fuzzy +#~ msgid "SportsPress Future Events" +#~ msgstr "Eventi futuri" + +#~ msgid "Future Events" +#~ msgstr "Eventi futuri" + +#~ msgid "League:" +#~ msgstr "Lega" + +#~ msgid "Season:" +#~ msgstr "Stagione:" + +#~ msgid "Venue:" +#~ msgstr "Sede:" + +#~ msgid "Team:" +#~ msgstr "Team:" + +#, fuzzy +#~ msgid "Number of events to show:" +#~ msgstr "Numero di %s da mostrare:" + +#, fuzzy +#~ msgid "Select League Table:" +#~ msgstr "League Table:" + +#, fuzzy +#~ msgid "Select Player List:" +#~ msgstr "Elenchi Giocatori" + +#, fuzzy +#~ msgid "SportsPress Recent Events" +#~ msgstr "Eventi Recenti" + +#~ msgid "Recent Events" +#~ msgstr "Eventi Recenti" + +#~ msgid "Precision" +#~ msgstr "Precisione" + +#~ msgid "Sum" +#~ msgstr "Somma" + +#~ msgid "events" +#~ msgstr "eventi" + +#~ msgid "Map" +#~ msgstr "Mappa" + +#~ msgid "%s updated." +#~ msgstr "%s aggiornato." + +#~ msgid "%s published." +#~ msgstr "%s pubblicato." + +#~ msgid "%s submitted." +#~ msgstr "%s inviato." + +#~ msgid "%s draft updated." +#~ msgstr "Bozza %s aggiornata." + +#~ msgid "columns" +#~ msgstr "Colonne" + +#~ msgid "metrics" +#~ msgstr "metrica" + +#~ msgid "outcome" +#~ msgstr "esito" + +#~ msgid "players" +#~ msgstr "giocatori" + +#~ msgid "Value" +#~ msgstr "Valore" + +#~ msgid "result" +#~ msgstr "risultato" + +#~ msgid "staff" +#~ msgstr "personale" + +#~ msgid "statistics" +#~ msgstr "statistica" + +#~ msgid "teams" +#~ msgstr "squadre" + +#~ msgid "league" +#~ msgstr "lega" + +#~ msgid "position" +#~ msgstr "posizione" + +#~ msgid "season" +#~ msgstr "stagione" + +#~ msgid "venue" +#~ msgstr "sede" + +#~ msgid "Countdown" +#~ msgstr "conto alla rovescia" + +#~ msgid "Event:" +#~ msgstr "Evento:" #~ msgid "%1$s %2$s" #~ msgstr "%1$s %2$s" -#~ msgid "Select" -#~ msgstr "Sélectionner" - #~ msgid "-- Not Set --" #~ msgstr "-- Pas réglé --" @@ -929,21 +1707,9 @@ msgstr "Eventi Recenti" #~ msgid "Appearances" #~ msgstr "出場" -#~ msgid "Select Logo" -#~ msgstr "ロゴを選択" - -#~ msgid "Remove Logo" -#~ msgstr "ロゴを削除" - #~ msgid "Joined: %1$s" #~ msgstr "入団日: %1$s" -#~ msgid "Select Photo" -#~ msgstr "写真を選択" - -#~ msgid "Remove Photo" -#~ msgstr "写真を削除" - #~ msgid "Table Columns" #~ msgstr "順位表列" diff --git a/languages/sportspress-ja.mo b/languages/sportspress-ja.mo index 1b143dc098cfa329653b647901b0c5eb7cfedca0..6eb129f234339174bf0e0a20fd8a6960cd84962b 100644 GIT binary patch literal 12173 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\n" "Language-Team: ThemeBoy \n" "Language: ja\n" @@ -20,332 +20,320 @@ msgstr "" "X-Poedit-Bookmarks: -1,75,-1,-1,-1,-1,-1,-1,-1,-1\n" "X-Poedit-SearchPath-0: ..\n" -#: ../functions.php:56 -msgid "Add New" -msgstr "新規追加" - -#: ../functions.php:57 ../functions.php:80 ../functions.php:1071 -#: ../functions.php:1072 -#, php-format -msgid "Add New %s" -msgstr "新規%sを追加" - -#: ../functions.php:58 ../functions.php:77 -#: ../admin/hooks/post-updated-messages.php:10 ../admin/settings/events.php:32 -#: ../admin/settings/events.php:63 ../admin/settings/players.php:29 -#: ../admin/settings/players.php:61 ../admin/settings/tables.php:33 -#, php-format -msgid "Edit %s" -msgstr "%sを編集" - -#: ../functions.php:59 -#, php-format -msgid "New %s" -msgstr "新規%s" - -#: ../functions.php:60 ../functions.php:78 -#, php-format -msgid "View %s" -msgstr "%sを表示" - -#: ../functions.php:61 ../functions.php:84 -#, php-format -msgid "Search %s" -msgstr "%sを検索" - -#: ../functions.php:62 ../functions.php:85 ../functions.php:626 -#, php-format -msgid "No %s found." -msgstr "%sが見つかりませんでした" - -#: ../functions.php:63 -#, php-format -msgid "No %s found in trash." -msgstr "ゴミ箱内に%sが見つかりませんでした。" - -#: ../functions.php:64 ../functions.php:82 ../functions.php:83 -#, php-format -msgid "Parent %s" -msgstr "親%s" - -#: ../functions.php:76 ../admin/hooks/restrict-manage-posts.php:8 -#: ../admin/hooks/restrict-manage-posts.php:18 -#: ../admin/hooks/restrict-manage-posts.php:28 -#: ../admin/hooks/restrict-manage-posts.php:40 -#: ../admin/widgets/future-events.php:65 ../admin/widgets/future-events.php:81 -#: ../admin/widgets/future-events.php:97 -#: ../admin/widgets/future-events.php:113 -#: ../admin/widgets/recent-events.php:65 ../admin/widgets/recent-events.php:81 -#: ../admin/widgets/recent-events.php:97 -#: ../admin/widgets/recent-events.php:113 -#, php-format -msgid "All %s" -msgstr "すべての%s" - -#: ../functions.php:79 -#, php-format -msgid "Update %s" -msgstr "%sを更新" - -#: ../functions.php:81 -#, php-format -msgid "New %s Name" -msgstr "新規%s名" - -#: ../functions.php:116 +#: ../functions.php:74 msgid "1 view" msgstr "1回" -#: ../functions.php:118 +#: ../functions.php:76 #, php-format msgid "%s views" msgstr "%s回" -#: ../functions.php:143 +#: ../functions.php:101 msgid "Scheduled" msgstr "予約済み" -#: ../functions.php:145 ../functions.php:482 ../functions.php:485 -#: ../functions.php:1899 ../functions.php:2050 ../functions.php:2187 +#: ../functions.php:103 ../functions.php:533 ../functions.php:536 +#: ../functions.php:1996 ../functions.php:2198 ../functions.php:2333 +#: ../admin/post-types/list.php:117 ../admin/widgets/player-list.php:78 +#: ../admin/widgets/player-list.php:91 msgid "Played" msgstr "試合終了" -#: ../functions.php:147 +#: ../functions.php:105 msgid "Draft" msgstr "下書き" -#: ../functions.php:149 +#: ../functions.php:107 msgid "Pending Review" msgstr "レビュー待ち" -#: ../functions.php:151 ../admin/hooks/post-updated-messages.php:31 +#: ../functions.php:109 ../admin/hooks/post-updated-messages.php:34 msgid "M j, Y @ G:i" msgstr "Y年n月j日 @ G:i" -#: ../functions.php:172 ../functions.php:176 ../functions.php:416 -msgid "Sum" -msgstr "合計" - -#: ../functions.php:172 ../functions.php:417 -msgid "Average" -msgstr "平均" - -#: ../functions.php:214 -msgid "Integer" -msgstr "整数" - -#: ../functions.php:215 -msgid "Decimal" -msgstr "少数" - -#: ../functions.php:216 ../functions.php:636 -#: ../admin/templates/event-details.php:13 -msgid "Time" -msgstr "時間" - -#: ../functions.php:217 -msgid "Custom Field" -msgstr "カスタムフィールド" - -#: ../functions.php:344 ../functions.php:398 -msgid "(no title)" -msgstr "(タイトルなし)" - -#: ../functions.php:482 ../functions.php:485 ../admin/post-types/event.php:3 -#: ../admin/settings/settings.php:11 -msgid "Events" -msgstr "試合" - -#: ../functions.php:482 -msgid "Attended" -msgstr "出場" - -#: ../functions.php:488 ../admin/post-types/event.php:44 -#: ../admin/post-types/result.php:3 ../admin/settings/events.php:16 -#: ../admin/settings/events.php:32 ../admin/templates/event-results.php:48 -msgid "Results" -msgstr "結果" - -#: ../functions.php:491 ../functions.php:492 ../functions.php:493 -#: ../functions.php:494 ../admin/post-types/outcome.php:3 -#: ../admin/settings/events.php:47 ../admin/settings/events.php:63 -msgid "Outcomes" -msgstr "勝敗" - -#: ../functions.php:492 -msgid "Streak" -msgstr "連勝敗" - -#: ../functions.php:493 -msgid "Last 5" -msgstr "ラスト5" - -#: ../functions.php:494 -msgid "Last 10" -msgstr "ラスト10" - -#: ../functions.php:497 ../admin/post-types/column.php:3 -#: ../admin/post-types/team.php:33 ../admin/settings/tables.php:11 -#: ../admin/settings/tables.php:33 -msgid "Columns" -msgstr "列" - -#: ../functions.php:500 -msgid "Player Statistics" -msgstr "選手統計" - -#: ../functions.php:509 -msgid "Operators" -msgstr "演算子" - -#: ../functions.php:519 -msgid "Constants" -msgstr "定数" - -#: ../functions.php:523 ../admin/post-types/event.php:134 -msgid "— Select —" -msgstr "— Select —" - -#: ../functions.php:626 ../admin/post-types/event.php:5 -#: ../admin/widgets/future-events.php:123 -#: ../admin/widgets/recent-events.php:123 -msgid "events" -msgstr "試合" - -#: ../functions.php:634 ../admin/post-types/event.php:4 -#: ../admin/post-types/event.php:40 ../admin/post-types/event.php:196 -msgid "Event" -msgstr "試合" - -#: ../functions.php:635 ../admin/templates/event-details.php:13 -msgid "Date" -msgstr "日付" - -#: ../functions.php:673 ../functions.php:814 ../functions.php:887 -#: ../functions.php:1071 ../functions.php:1752 ../functions.php:2187 -#: ../admin/hooks/gettext.php:9 ../admin/post-types/list.php:31 -#: ../admin/post-types/list.php:82 ../admin/post-types/team.php:4 -#: ../admin/post-types/team.php:41 ../admin/templates/event-results.php:52 -msgid "Team" -msgstr "チーム" - -#: ../functions.php:716 ../functions.php:992 ../functions.php:1984 -#: ../admin/hooks/register-activation-hook.php:147 -#: ../admin/post-types/player.php:4 ../admin/templates/event-players.php:28 -msgid "Player" -msgstr "選手" - -#: ../functions.php:761 ../functions.php:813 ../functions.php:1484 -#: ../functions.php:2187 ../admin/post-types/event.php:69 -#: ../admin/post-types/event.php:199 ../admin/post-types/list.php:30 -#: ../admin/post-types/list.php:70 ../admin/post-types/table.php:29 -#: ../admin/post-types/table.php:68 ../admin/templates/event-details.php:22 -#: ../admin/terms/season.php:4 -msgid "Season" -msgstr "シーズン" - -#: ../functions.php:837 ../functions.php:915 ../admin/post-types/event.php:64 -#: ../admin/post-types/event.php:77 ../admin/post-types/event.php:90 -#: ../admin/post-types/player.php:85 -msgid "-- Not set --" -msgstr "-- 未設定 --" - -#: ../functions.php:891 ../admin/post-types/outcome.php:4 -msgid "Outcome" -msgstr "勝敗" - -#: ../functions.php:943 ../functions.php:1048 -msgid "Starting Lineup" -msgstr "スターティングメンバー" - -#: ../functions.php:944 ../functions.php:1049 -msgid "Substitute" -msgstr "補欠" - -#: ../functions.php:968 -msgid "None" -msgstr "なし" - -#: ../functions.php:996 -msgid "Status" -msgstr "ステータス" - -#: ../functions.php:1027 ../admin/templates/event-players.php:82 +#: ../functions.php:130 ../functions.php:134 ../functions.php:467 +#: ../functions.php:1059 ../admin/templates/event-players.php:82 msgid "Total" msgstr "合計" -#: ../admin/hooks/admin-enqueue-scripts.php:20 -#: ../admin/post-types/event.php:110 -msgid "Remove" -msgstr "削除" +#: ../functions.php:130 ../functions.php:468 +msgid "Average" +msgstr "平均" -#: ../admin/hooks/admin-menu.php:46 ../admin/post-types/player.php:30 -#: ../admin/post-types/staff.php:48 ../admin/post-types/team.php:42 -#: ../admin/terms/league.php:3 ../admin/widgets/future-events.php:65 -#: ../admin/widgets/recent-events.php:65 +#: ../functions.php:172 +msgid "Integer" +msgstr "整数" + +#: ../functions.php:173 +msgid "Decimal" +msgstr "少数" + +#: ../functions.php:174 ../admin/templates/event-details.php:13 +msgid "Time" +msgstr "時間" + +#: ../functions.php:175 +msgid "Custom Field" +msgstr "カスタムフィールド" + +#: ../functions.php:396 ../functions.php:449 +msgid "(no title)" +msgstr "(タイトルなし)" + +#: ../functions.php:533 ../functions.php:536 ../admin/post-types/event.php:6 +#: ../admin/post-types/event.php:16 ../admin/settings/settings.php:11 +msgid "Events" +msgstr "試合" + +#: ../functions.php:533 +msgid "Attended" +msgstr "出場" + +#: ../functions.php:539 ../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:542 ../functions.php:543 ../functions.php:544 +#: ../functions.php:545 ../admin/post-types/outcome.php:4 +#: ../admin/post-types/outcome.php:15 ../admin/settings/events.php:55 +msgid "Outcomes" +msgstr "勝敗" + +#: ../functions.php:543 +msgid "Streak" +msgstr "連勝敗" + +#: ../functions.php:544 +msgid "Last 5" +msgstr "ラスト5" + +#: ../functions.php:545 +msgid "Last 10" +msgstr "ラスト10" + +#: ../functions.php:548 ../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:551 +msgid "Player Statistics" +msgstr "選手統計" + +#: ../functions.php:560 +msgid "Operators" +msgstr "演算子" + +#: ../functions.php:573 +msgid "Constants" +msgstr "定数" + +#: ../functions.php:577 ../admin/settings/settings.php:46 +msgid "— Select —" +msgstr "— Select —" + +#: ../functions.php:690 ../functions.php:844 ../functions.php:919 +#: ../functions.php:1804 ../functions.php:2333 ../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:712 ../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:716 +msgid "Cancel" +msgstr "キャンセル" + +#: ../functions.php:717 +msgid "Save" +msgstr "保存" + +#: ../functions.php:746 ../functions.php:1024 ../functions.php:2092 +#: ../admin/hooks/register-activation-hook.php:147 +#: ../admin/post-types/player.php:5 ../admin/templates/event-players.php:28 +msgid "Player" +msgstr "選手" + +#: ../functions.php:791 ../functions.php:843 ../functions.php:1535 +#: ../functions.php:2333 ../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:867 +msgid "— None —" +msgstr "— なし —" + +#: ../functions.php:888 ../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:923 ../admin/post-types/outcome.php:5 +msgid "Outcome" +msgstr "勝敗" + +#: ../functions.php:947 ../admin/post-types/event.php:76 +#: ../admin/post-types/event.php:91 ../admin/post-types/event.php:106 +msgid "-- Not set --" +msgstr "-- 未設定 --" + +#: ../functions.php:975 ../functions.php:1080 +msgid "Starting Lineup" +msgstr "スターティングメンバー" + +#: ../functions.php:976 ../functions.php:1081 +msgid "Substitute" +msgstr "補欠" + +#: ../functions.php:1000 +msgid "None" +msgstr "なし" + +#: ../functions.php:1028 +msgid "Status" +msgstr "ステータス" + +#: ../functions.php:1101 ../functions.php:1118 +#: ../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/hooks/admin-enqueue-scripts.php:24 +msgid "— Remove —" +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:52 -#: ../admin/hooks/restrict-manage-posts.php:18 -#: ../admin/post-types/metric.php:26 ../admin/post-types/player.php:28 -#: ../admin/post-types/staff.php:46 ../admin/post-types/statistic.php:27 -#: ../admin/settings/players.php:16 ../admin/settings/players.php:48 -#: ../admin/terms/position.php:3 +#: ../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:58 -#: ../admin/hooks/restrict-manage-posts.php:28 -#: ../admin/post-types/player.php:31 ../admin/post-types/staff.php:49 -#: ../admin/post-types/team.php:43 ../admin/terms/season.php:3 -#: ../admin/widgets/future-events.php:81 ../admin/widgets/recent-events.php:81 +#: ../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:64 ../admin/terms/venue.php:3 -#: ../admin/widgets/future-events.php:97 ../admin/widgets/recent-events.php:97 +#: ../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:6 #: ../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:12 ../admin/hooks/gettext.php:15 -#: ../admin/hooks/gettext.php:27 ../admin/hooks/gettext.php:30 +#: ../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 "%sを選択" #: ../admin/hooks/admin-post-thumbnail-html.php:5 #: ../admin/hooks/admin-post-thumbnail-html.php:6 -#: ../admin/hooks/gettext.php:12 ../admin/hooks/gettext.php:15 -#: ../admin/hooks/gettext.php:18 ../admin/post-types/team.php:30 +#: ../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 "%sを削除" + #: ../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:27 ../admin/hooks/gettext.php:30 -#: ../admin/hooks/gettext.php:33 ../admin/post-types/player.php:45 -#: ../admin/post-types/staff.php:27 +#: ../admin/post-types/player.php:58 ../admin/post-types/staff.php:34 msgid "Photo" msgstr "写真" -#: ../admin/hooks/gettext.php:18 ../admin/hooks/gettext.php:33 -#, php-format -msgid "Remove %s" -msgstr "%sを削除" +#: ../admin/hooks/gettext.php:12 ../admin/hooks/gettext.php:15 +msgid "Select Logo" +msgstr "ロゴを選択" -#: ../admin/hooks/gettext.php:24 ../admin/post-types/player.php:27 -#: ../admin/post-types/staff.php:45 -msgid "Name" -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/gettext.php:36 ../admin/hooks/gettext.php:39 #: ../admin/hooks/gettext.php:42 @@ -353,69 +341,61 @@ msgstr "名前" msgid "Date/Time: %1$s" msgstr "キックオフ: %1$s" -#: ../admin/hooks/manage-posts-columns.php:3 ../admin/post-types/event.php:202 -#: ../admin/post-types/list.php:32 ../admin/post-types/player.php:32 -#: ../admin/post-types/staff.php:50 ../admin/post-types/table.php:31 -#: ../admin/post-types/team.php:44 +#: ../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/media-buttons.php:7 ../admin/hooks/media-buttons.php:8 -#, php-format -msgid "Add %s" -msgstr "新規%sを追加" +#: ../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 "Map" -msgstr "地図" +msgid "Add Map" +msgstr "地図を追加" -#: ../admin/hooks/media-buttons.php:8 ../admin/post-types/table.php:4 -#: ../admin/post-types/table.php:45 ../admin/widgets/league-table.php:6 -msgid "League Table" -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:8 -#: ../admin/hooks/post-updated-messages.php:15 -#: ../admin/hooks/post-updated-messages.php:18 -#, php-format -msgid "%s updated." -msgstr "%sを更新しました。" +#: ../admin/hooks/post-updated-messages.php:10 +msgid "Settings saved." +msgstr "設定を保存しました。" -#: ../admin/hooks/post-updated-messages.php:20 -#, php-format -msgid "%s published." -msgstr "%sを公開しました。" +#: ../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 -#, php-format -msgid "%s saved." -msgstr "%sを保存しました。" +#: ../admin/hooks/post-updated-messages.php:28 +#: ../admin/hooks/post-updated-messages.php:38 +msgid "Success!" +msgstr "成功しました !" -#: ../admin/hooks/post-updated-messages.php:25 -#, php-format -msgid "%s submitted." -msgstr "%sを作成しました。" - -#: ../admin/hooks/post-updated-messages.php:27 -#: ../admin/hooks/post-updated-messages.php:33 -#: ../admin/hooks/post-updated-messages.php:37 +#: ../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 "%sをプレビュー" -#: ../admin/hooks/post-updated-messages.php:30 +#: ../admin/hooks/post-updated-messages.php:33 #, php-format -msgid "%s scheduled for: %s." -msgstr "%s公開予定日時: %s" - -#: ../admin/hooks/post-updated-messages.php:35 -#, php-format -msgid "%s draft updated." -msgstr "%sの下書きを更新しました。" +msgid "Scheduled for: %1$s." +msgstr "%1$sに公開するよう予約しました。" #: ../admin/hooks/register-activation-hook.php:8 msgid "League Manager" @@ -426,40 +406,44 @@ msgid "Team Manager" msgstr "チームマネージャー" #: ../admin/hooks/register-activation-hook.php:129 -#: ../admin/post-types/event.php:119 ../admin/post-types/staff.php:3 -#: ../admin/post-types/staff.php:4 +#: ../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 -#: ../admin/post-types/event.php:42 ../admin/post-types/event.php:197 -#: ../admin/post-types/player.php:29 ../admin/post-types/player.php:47 -#: ../admin/post-types/staff.php:28 ../admin/post-types/staff.php:47 -#: ../admin/post-types/table.php:30 ../admin/post-types/table.php:42 -#: ../admin/post-types/table.php:80 ../admin/post-types/team.php:3 -#: ../admin/widgets/future-events.php:113 -#: ../admin/widgets/recent-events.php:113 -msgid "Teams" -msgstr "チーム" +msgid "Show all teams" +msgstr "すべてのチームを表示" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:43 +#: ../admin/templates/countdown.php:46 msgid "days" msgstr "日" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:44 +#: ../admin/templates/countdown.php:47 msgid "hrs" msgstr "時間" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:45 +#: ../admin/templates/countdown.php:48 msgid "mins" msgstr "分" #: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:46 +#: ../admin/templates/countdown.php:49 msgid "secs" msgstr "秒" @@ -481,7 +465,7 @@ msgstr "SportsPress設定ページへ" msgid "Skip setup" msgstr "スキップする" -#: ../admin/includes/notice-theme-support.php:6 +#: ../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 " @@ -491,247 +475,260 @@ msgstr "" "strong>– サイト設計の問題が発生した場合は統合ガイドを読んだり、" "SportsPressのテーマを選んで下さい。:)" -#: ../admin/includes/notice-theme-support.php:8 +#: ../admin/includes/notice-theme-support.php:7 msgid "Theme Integration Guide" msgstr "テーマ統合ガイド" -#: ../admin/includes/notice-theme-support.php:9 +#: ../admin/includes/notice-theme-support.php:8 msgid "Hide this notice" msgstr "非表示にする" -#: ../admin/post-types/column.php:4 +#: ../admin/post-types/column.php:5 msgid "Column" msgstr "列" -#: ../admin/post-types/column.php:5 -msgid "columns" -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:26 ../admin/post-types/metric.php:25 -#: ../admin/post-types/outcome.php:26 ../admin/post-types/result.php:26 -#: ../admin/post-types/statistic.php:26 ../admin/settings/events.php:20 -#: ../admin/settings/events.php:51 ../admin/settings/players.php:15 -#: ../admin/settings/players.php:47 ../admin/settings/tables.php:15 +#: ../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:27 ../admin/post-types/column.php:49 -#: ../admin/post-types/outcome.php:27 ../admin/post-types/outcome.php:39 -#: ../admin/post-types/result.php:27 ../admin/post-types/result.php:40 -#: ../admin/settings/events.php:21 ../admin/settings/events.php:52 -#: ../admin/settings/tables.php:16 +#: ../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:28 ../admin/post-types/column.php:53 -#: ../admin/settings/tables.php:17 +#: ../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:29 ../admin/post-types/column.php:61 -#: ../admin/settings/tables.php:18 -msgid "Precision" -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:30 ../admin/post-types/column.php:65 -#: ../admin/settings/tables.php:19 +#: ../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:37 ../admin/post-types/event.php:41 -#: ../admin/post-types/list.php:49 ../admin/post-types/outcome.php:34 -#: ../admin/post-types/player.php:46 ../admin/post-types/result.php:34 -#: ../admin/post-types/statistic.php:35 ../admin/post-types/table.php:48 +#: ../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:69 +#: ../admin/post-types/column.php:76 msgid "Disable" msgstr "無効化" -#: ../admin/post-types/column.php:77 +#: ../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:77 +#: ../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:45 ../admin/post-types/event.php:118 -#: ../admin/post-types/list.php:28 ../admin/post-types/list.php:43 -#: ../admin/post-types/list.php:93 ../admin/post-types/player.php:3 +#: ../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:47 -msgid "Article" -msgstr "戦評" +#: ../admin/post-types/event.php:152 +msgid "— Add —" +msgstr "— 追加 —" -#: ../admin/post-types/event.php:56 ../admin/post-types/event.php:198 -#: ../admin/post-types/list.php:29 ../admin/post-types/list.php:58 -#: ../admin/post-types/table.php:28 ../admin/post-types/table.php:56 -#: ../admin/templates/event-details.php:17 ../admin/terms/league.php:4 -msgid "League" -msgstr "リーグ" - -#: ../admin/post-types/event.php:82 ../admin/post-types/event.php:200 -#: ../admin/templates/event-venue.php:24 ../admin/terms/venue.php:4 -msgid "Venue" -msgstr "会場" - -#: ../admin/post-types/event.php:201 +#: ../admin/post-types/event.php:217 msgid "Date/Time" msgstr "キックオフ" -#: ../admin/post-types/list.php:3 +#: ../admin/post-types/list.php:4 ../admin/post-types/list.php:15 msgid "Player Lists" msgstr "選手名鑑" -#: ../admin/post-types/list.php:4 ../admin/post-types/list.php:46 +#: ../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:5 -msgid "player lists" -msgstr "選手名鑑" - -#: ../admin/post-types/list.php:27 ../admin/post-types/table.php:27 +#: ../admin/post-types/list.php:34 ../admin/post-types/table.php:34 msgid "Title" msgstr "タイトル" -#: ../admin/post-types/metric.php:3 ../admin/post-types/player.php:48 -#: ../admin/settings/players.php:11 ../admin/settings/players.php:29 -msgid "Metrics" -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/metric.php:4 ../admin/post-types/player.php:148 -msgid "Metric" -msgstr "メトリック" +#: ../admin/post-types/list.php:110 ../admin/widgets/player-list.php:84 +msgid "Sort by:" +msgstr "並び順:" -#: ../admin/post-types/metric.php:5 -msgid "metrics" -msgstr "メトリック" - -#: ../admin/post-types/outcome.php:5 -msgid "outcome" -msgstr "勝敗" - -#: ../admin/post-types/player.php:5 -msgid "players" -msgstr "選手" - -#: ../admin/post-types/player.php:43 ../admin/post-types/staff.php:25 -#: ../admin/post-types/team.php:28 -msgid "Publish" -msgstr "公開" - -#: ../admin/post-types/player.php:51 ../admin/post-types/statistic.php:3 -#: ../admin/settings/players.php:43 ../admin/settings/players.php:61 -msgid "Statistics" -msgstr "統計" - -#: ../admin/post-types/player.php:54 ../admin/post-types/staff.php:29 -msgid "Profile" -msgstr "プロフィール" - -#: ../admin/post-types/player.php:74 ../admin/templates/player-metrics.php:15 +#: ../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/player.php:80 ../admin/templates/player-metrics.php:16 +#: ../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:98 -msgid "Current Team" -msgstr "現チーム" +#: ../admin/post-types/player.php:154 ../admin/templates/player-metrics.php:33 +msgid "Past Teams" +msgstr "過去のチーム" -#: ../admin/post-types/player.php:149 -msgid "Value" -msgstr "値" - -#: ../admin/post-types/result.php:4 +#: ../admin/post-types/result.php:5 msgid "Result" msgstr "結果" -#: ../admin/post-types/result.php:5 -msgid "result" -msgstr "結果" - -#: ../admin/post-types/staff.php:5 -msgid "staff" -msgstr "スタッフ" - -#: ../admin/post-types/statistic.php:4 +#: ../admin/post-types/statistic.php:5 msgid "Statistic" msgstr "統計" -#: ../admin/post-types/statistic.php:5 -msgid "statistics" -msgstr "統計" - -#: ../admin/post-types/statistic.php:28 ../admin/post-types/statistic.php:41 -#: ../admin/settings/players.php:49 +#: ../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:3 ../admin/settings/settings.php:12 +#: ../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 -msgid "league tables" +#: ../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:5 -msgid "teams" -msgstr "チーム" - -#: ../admin/presets/baseball.php:5 -msgid "Baseball" -msgstr "野球" - -#: ../admin/presets/basketball.php:5 -msgid "Basketball" -msgstr "バスケットボール" - -#: ../admin/presets/cricket.php:5 -msgid "Cricket" -msgstr "クリケット" - -#: ../admin/presets/football.php:5 -msgid "American Football" -msgstr "アメリカンフットボール" - -#: ../admin/presets/footy.php:5 -msgid "Australian Rules Football" -msgstr "オージーフットボール" - -#: ../admin/presets/gaming.php:5 -msgid "Competitive Gaming" -msgstr "ゲーミング" - -#: ../admin/presets/golf.php:5 -msgid "Golf" -msgstr "ゴルフ" - -#: ../admin/presets/hockey.php:5 -msgid "Hockey" -msgstr "ホッケー" - -#: ../admin/presets/racing.php:5 -msgid "Racing" -msgstr "レーシング" - -#: ../admin/presets/rugby.php:5 -msgid "Rugby" -msgstr "ラグビー" - -#: ../admin/presets/soccer.php:5 -msgid "Soccer (Association Football)" -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" @@ -741,23 +738,30 @@ msgstr "イベント設定" msgid "General Settings" msgstr "一般設定" -#: ../admin/settings/settings.php:10 ../admin/settings/settings.php:236 -#: ../admin/settings/settings.php:237 -msgid "SportsPress" -msgstr "SportsPress" +#: ../admin/settings/settings.php:10 +msgid "General" +msgstr "一般" -#: ../admin/settings/settings.php:59 ../admin/widgets/countdown.php:43 -msgid "(Auto)" -msgstr "(自動)" +#: ../admin/settings/settings.php:50 +msgid "Custom" +msgstr "カスタム" -#: ../admin/settings/settings.php:98 +#: ../admin/settings/settings.php:52 ../admin/settings/settings.php:102 msgid "Sport" msgstr "スポーツ" -#: ../admin/settings/settings.php:119 +#: ../admin/settings/settings.php:124 msgid "Main Result" msgstr "主な結果" +#: ../admin/settings/settings.php:241 ../admin/settings/settings.php:242 +msgid "SportsPress" +msgstr "SportsPress" + +#: ../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 @@ -767,111 +771,867 @@ msgctxt "calendar caption" msgid "%1$s %2$s" msgstr "%2$s年%1$s月" -#: ../admin/templates/league-table.php:9 +#: ../admin/templates/league-table.php:27 msgid "Pos" msgstr "Pos" -#: ../admin/terms/league.php:5 -msgid "league" -msgstr "リーグ" +#: ../admin/templates/player-list.php:46 +msgid "Rank" +msgstr "順位" -#: ../admin/terms/position.php:4 +#: ../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:5 -msgid "position" -msgstr "ポジション" - -#: ../admin/terms/season.php:5 -msgid "season" -msgstr "シーズン" - -#: ../admin/terms/venue.php:5 -msgid "venue" -msgstr "会場" - -#: ../admin/terms/venue.php:27 ../admin/terms/venue.php:74 +#: ../admin/terms/venue.php:38 ../admin/terms/venue.php:85 msgid "Address" msgstr "住所" -#: ../admin/terms/venue.php:34 +#: ../admin/terms/venue.php:45 msgid "Latitude" msgstr "緯度" -#: ../admin/terms/venue.php:40 +#: ../admin/terms/venue.php:51 msgid "Longitude" msgstr "経度" -#: ../admin/widgets/countdown.php:5 ../admin/widgets/events-calendar.php:5 -#: ../admin/widgets/future-events.php:5 ../admin/widgets/league-table.php:5 -#: ../admin/widgets/recent-events.php:5 -msgid "SportsPress widget." -msgstr "SportsPressウィジェット" +#: ../admin/tools/importers.php:37 +msgid "SportsPress Teams (CSV)" +msgstr "SportsPress チーム (CSV)" -#: ../admin/widgets/countdown.php:6 ../admin/widgets/countdown.php:11 -msgid "Countdown" -msgstr "カウントダウン" +#: ../admin/tools/importers.php:37 +msgid "Import teams from a csv file." +msgstr "csvファイルでチームをインポート" -#: ../admin/widgets/countdown.php:33 ../admin/widgets/events-calendar.php:32 -#: ../admin/widgets/future-events.php:55 ../admin/widgets/league-table.php:38 -#: ../admin/widgets/recent-events.php:55 +#: ../admin/tools/importers.php:38 +msgid "SportsPress Players (CSV)" +msgstr "SportsPress 選手 (CSV)" + +#: ../admin/tools/importers.php:38 +msgid "Import players from a csv file." +msgstr "csvファイルで選手をインポート" + +#: ../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 "CSV形式は無効です" + +#: ../admin/tools/player-importer.php:204 +#, php-format +msgid "" +"Import complete - imported %s players and skipped " +"%s." +msgstr "" +"完全なインポート - %sの選手をインポートし、%sをスキップ" + +#: ../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 "" +"CSVファイルをアップロードして選手を登録する場合は「ファイルをアップロードして" +"インポート」をクリックし、アップロードするCSVファイルを選択して下さい。" + +#: ../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 "" +"選手は、特定の列(7列)で定義する必要があります。ここをクリッ" +"クして、サンプルをダウンロード" + +#: ../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 "最大サイズ: %s" + +#: ../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 "" +"完全なインポート - %sのチームをインポートし、%sをスキップ" + +#: ../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 "" +"チームは、特定の列(3列)で定義する必要があります。ここをク" +"リックして、サンプルをダウンロード" + +#: ../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 "SportsPress カウントダウン" + +#: ../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:36 -msgid "Event:" -msgstr "イベント:" +#: ../admin/widgets/countdown.php:37 ../admin/widgets/league-table.php:41 +#: ../admin/widgets/player-list.php:47 +#, php-format +msgid "Select %s:" +msgstr "%sを選択:" + +#: ../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 "Events Calendar" -msgstr "イベントカレンダー" +msgid "SportsPress Events Calendar" +msgstr "SportsPress イベントカレンダー" -#: ../admin/widgets/future-events.php:6 ../admin/widgets/future-events.php:11 -msgid "Future Events" -msgstr "試合日程" +#: ../admin/widgets/league-table.php:5 +msgid "Display a league table." +msgstr "順位表を表示します" -#: ../admin/widgets/future-events.php:58 ../admin/widgets/recent-events.php:58 -msgid "League:" -msgstr "リーグ:" - -#: ../admin/widgets/future-events.php:74 ../admin/widgets/recent-events.php:74 -msgid "Season:" -msgstr "シーズン:" - -#: ../admin/widgets/future-events.php:90 ../admin/widgets/recent-events.php:90 -msgid "Venue:" -msgstr "会場:" - -#: ../admin/widgets/future-events.php:106 -#: ../admin/widgets/recent-events.php:106 -msgid "Team:" -msgstr "チーム:" - -#: ../admin/widgets/future-events.php:123 -#: ../admin/widgets/recent-events.php:123 -#, php-format -msgid "Number of %s to show:" -msgstr "表示する%sの数:" - -#: ../admin/widgets/league-table.php:41 -msgid "League Table:" -msgstr "順位表:" +#: ../admin/widgets/league-table.php:6 +msgid "SportsPress League Table" +msgstr "SportsPress 順位表" #: ../admin/widgets/league-table.php:58 msgid "Columns:" msgstr "列:" -#: ../admin/widgets/recent-events.php:6 ../admin/widgets/recent-events.php:11 -msgid "Recent Events" -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 "SportsPress 選手名鑑" + +#: ../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 "サッカー" + +#, fuzzy +#~ msgid "None." +#~ msgstr "なし" + +#~ msgid "No Events found." +#~ msgstr "イベントが見つかりませんでした" + +#~ msgid "No teams found." +#~ msgstr "チームが見つかりませんでした" + +#, fuzzy +#~ msgid "Select Nationality" +#~ msgstr "国籍" + +#, fuzzy +#~ msgid "Select:" +#~ msgstr "試合記録" + +#~ msgid "A list of upcoming events." +#~ msgstr "予定されているイベントのリスト" + +#, fuzzy +#~ msgid "SportsPress Future Events" +#~ msgstr "試合日程" + +#~ msgid "Future Events" +#~ msgstr "試合日程" + +#~ msgid "League:" +#~ msgstr "リーグ:" + +#~ msgid "Season:" +#~ msgstr "シーズン:" + +#~ msgid "Venue:" +#~ msgstr "会場:" + +#~ msgid "Team:" +#~ msgstr "チーム:" + +#, fuzzy +#~ msgid "Number of events to show:" +#~ msgstr "表示する%sの数:" + +#, fuzzy +#~ msgid "Select League Table:" +#~ msgstr "順位表:" + +#, fuzzy +#~ msgid "Select Player List:" +#~ msgstr "選手名鑑" + +#~ msgid "A list of recent events." +#~ msgstr "直近行われたイベントのリスト" + +#, fuzzy +#~ msgid "SportsPress Recent Events" +#~ msgstr "試合記録" + +#~ msgid "Recent Events" +#~ msgstr "試合記録" + +#, fuzzy +#~ msgid "Select Positions" +#~ msgstr "写真を選択" + +#, fuzzy +#~ msgid "Select Team" +#~ msgstr "選択" + +#, fuzzy +#~ msgid "Select Leagues" +#~ msgstr "ロゴを選択" + +#, fuzzy +#~ msgid "Select Seasons" +#~ msgstr "%sを選択" + +#~ msgid "Add New Column" +#~ msgstr "新規列を追加" + +#~ msgid "Edit Column" +#~ msgstr "列を編集" + +#~ msgid "New Column" +#~ msgstr "新規列" + +#~ msgid "View Column" +#~ msgstr "列を表示" + +#~ msgid "Search Columns" +#~ msgstr "列を検索" + +#~ msgid "No columns found." +#~ msgstr "列が見つかりませんでした" + +#~ msgid "No columns found in trash." +#~ msgstr "ゴミ箱内に列が見つかりませんでした。" + +#~ msgid "Add New Event" +#~ msgstr "新規イベントを追加" + +#~ msgid "Edit Event" +#~ msgstr "イベントを編集" + +#~ msgid "New Event" +#~ msgstr "新規イベント" + +#~ msgid "View Event" +#~ msgstr "イベントを表示" + +#~ msgid "Search Events" +#~ msgstr "イベントを検索" + +#~ msgid "No events found." +#~ msgstr "イベントが見つかりませんでした" + +#~ msgid "No events found in trash." +#~ msgstr "ゴミ箱内にイベントが見つかりませんでした。" + +#~ msgid "Add New League" +#~ msgstr "新規リーグを追加" + +#~ msgid "Add New Season" +#~ msgstr "新規リーグを追加" + +#~ msgid "Add New Venue" +#~ msgstr "新規リーグを追加" + +#~ msgid "Add New Player List" +#~ msgstr "新規選手名鑑" + +#~ msgid "Edit Player List" +#~ msgstr "選手名鑑を編集" + +#~ msgid "New Player List" +#~ msgstr "新規選手名鑑" + +#~ msgid "View Player List" +#~ msgstr "選手名鑑を表示" + +#~ msgid "Search Player Lists" +#~ msgstr "選手名鑑を検索" + +#~ msgid "No player lists found." +#~ msgstr "選手名鑑が見つかりませんでした。" + +#~ msgid "No player lists found in trash." +#~ msgstr "ゴミ箱内に選手名鑑が見つかりませんでした。" + +#~ msgid "All Teams" +#~ msgstr "チーム一覧" + +#~ msgid "Add New Team" +#~ msgstr "新規チームを追加" + +#~ msgid "Add New Player" +#~ msgstr "新規選手を追加" + +#~ msgid "Add New Metric" +#~ msgstr "新規メトリックを追加" + +#~ msgid "Edit Metric" +#~ msgstr "メトリックを編集" + +#~ msgid "New Metric" +#~ msgstr "新規メトリック" + +#~ msgid "View Metric" +#~ msgstr "メトリックを表示" + +#~ msgid "Search Metrics" +#~ msgstr "メトリックを検索" + +#~ msgid "No metrics found." +#~ msgstr "メトリックが見つかりませんでした。" + +#~ msgid "No metrics found in trash." +#~ msgstr "ゴミ箱内にメトリックが見つかりませんでした。" + +#~ msgid "Add New Outcome" +#~ msgstr "新規勝敗を追加" + +#~ msgid "Edit Outcome" +#~ msgstr "勝敗を編集" + +#, fuzzy +#~ msgid "New Outcome" +#~ msgstr "勝敗" + +#, fuzzy +#~ msgid "View Outcome" +#~ msgstr "勝敗" + +#, fuzzy +#~ msgid "Search Outcomes" +#~ msgstr "勝敗" + +#, fuzzy +#~ msgid "No outcomes found." +#~ msgstr "%sが見つかりませんでした" + +#, fuzzy +#~ msgid "No outcomes found in trash." +#~ msgstr "ゴミ箱内に%sが見つかりませんでした。" + +#, fuzzy +#~ msgid "Edit Player" +#~ msgstr "選手" + +#, fuzzy +#~ msgid "New Player" +#~ msgstr "選手" + +#, fuzzy +#~ msgid "View Player" +#~ msgstr "選手" + +#, fuzzy +#~ msgid "Search Players" +#~ msgstr "%sを検索" + +#, fuzzy +#~ msgid "No players found." +#~ msgstr "%sが見つかりませんでした" + +#, fuzzy +#~ msgid "No players found in trash." +#~ msgstr "ゴミ箱内に%sが見つかりませんでした。" + +#, fuzzy +#~ msgid "Add New Result" +#~ msgstr "新規%sを追加" + +#, fuzzy +#~ msgid "Edit Result" +#~ msgstr "主な結果" + +#, fuzzy +#~ msgid "New Result" +#~ msgstr "結果" + +#, fuzzy +#~ msgid "View Result" +#~ msgstr "主な結果" + +#, fuzzy +#~ msgid "Search Results" +#~ msgstr "%sを検索" + +#, fuzzy +#~ msgid "No results found in trash." +#~ msgstr "ゴミ箱内に%sが見つかりませんでした。" + +#, fuzzy +#~ msgid "Add New Staff" +#~ msgstr "新規追加" + +#, fuzzy +#~ msgid "Edit Staff" +#~ msgstr "スタッフ" + +#, fuzzy +#~ msgid "New Staff" +#~ msgstr "スタッフ" + +#, fuzzy +#~ msgid "View Staff" +#~ msgstr "スタッフ" + +#, fuzzy +#~ msgid "No staff found." +#~ msgstr "%sが見つかりませんでした" + +#, fuzzy +#~ msgid "No staff found in trash." +#~ msgstr "ゴミ箱内に%sが見つかりませんでした。" + +#, fuzzy +#~ msgid "Add New Statistic" +#~ msgstr "統計" + +#, fuzzy +#~ msgid "Edit Statistic" +#~ msgstr "統計" + +#, fuzzy +#~ msgid "New Statistic" +#~ msgstr "統計" + +#, fuzzy +#~ msgid "View Statistic" +#~ msgstr "統計" + +#, fuzzy +#~ msgid "Search Statistics" +#~ msgstr "選手統計" + +#, fuzzy +#~ msgid "No statistics found." +#~ msgstr "%sが見つかりませんでした" + +#, fuzzy +#~ msgid "No statistics found in trash." +#~ msgstr "ゴミ箱内に%sが見つかりませんでした。" + +#, fuzzy +#~ msgid "Add New League Table" +#~ msgstr "順位表" + +#, fuzzy +#~ msgid "Edit League Table" +#~ msgstr "順位表" + +#, fuzzy +#~ msgid "New League Table" +#~ msgstr "順位表" + +#, fuzzy +#~ msgid "View League Table" +#~ msgstr "順位表" + +#, fuzzy +#~ msgid "Search League Tables" +#~ msgstr "順位表" + +#, fuzzy +#~ msgid "No league tables found." +#~ msgstr "順位表" + +#, fuzzy +#~ msgid "No league tables found in trash." +#~ msgstr "ゴミ箱内に%sが見つかりませんでした。" + +#, fuzzy +#~ msgid "Edit Team" +#~ msgstr "%sを編集" + +#, fuzzy +#~ msgid "New Team" +#~ msgstr "チーム" + +#, fuzzy +#~ msgid "View Team" +#~ msgstr "%sを表示" + +#, fuzzy +#~ msgid "Search Teams" +#~ msgstr "%sを検索" + +#, fuzzy +#~ msgid "No teams found in trash." +#~ msgstr "ゴミ箱内に%sが見つかりませんでした。" + +#, fuzzy +#~ msgid "Edit Results" +#~ msgstr "結果" + +#, fuzzy +#~ msgid "Edit Outcomes" +#~ msgstr "勝敗" + +#, fuzzy +#~ msgid "Edit Metrics" +#~ msgstr "メトリック" + +#, fuzzy +#~ msgid "Edit Statistics" +#~ msgstr "統計" + +#, fuzzy +#~ msgid "Edit Columns" +#~ msgstr "列" + +#, fuzzy +#~ msgid "All Leagues" +#~ msgstr "リーグ" + +#, fuzzy +#~ msgid "Edit League" +#~ msgstr "リーグ" + +#, fuzzy +#~ msgid "View League" +#~ msgstr "リーグ" + +#, fuzzy +#~ msgid "Update League" +#~ msgstr "%sを更新" + +#, fuzzy +#~ msgid "New League Name" +#~ msgstr "新規%s名" + +#, fuzzy +#~ msgid "Parent League" +#~ msgstr "親%s" + +#, fuzzy +#~ msgid "Parent League:" +#~ msgstr "リーグ:" + +#, fuzzy +#~ msgid "Search Leagues" +#~ msgstr "%sを検索" + +#, fuzzy +#~ msgid "No leagues found." +#~ msgstr "%sが見つかりませんでした" + +#, fuzzy +#~ msgid "All Positions" +#~ msgstr "ポジション" + +#, fuzzy +#~ msgid "Edit Position" +#~ msgstr "ポジション" + +#, fuzzy +#~ msgid "View Position" +#~ msgstr "ポジション" + +#, fuzzy +#~ msgid "Update Position" +#~ msgstr "ポジション" + +#, fuzzy +#~ msgid "Add New Position" +#~ msgstr "新規%sを追加" + +#, fuzzy +#~ msgid "New Position Name" +#~ msgstr "新規%s名" + +#, fuzzy +#~ msgid "Parent Position" +#~ msgstr "ポジション" + +#, fuzzy +#~ msgid "Parent Position:" +#~ msgstr "ポジション" + +#, fuzzy +#~ msgid "Search Positions" +#~ msgstr "ポジション" + +#, fuzzy +#~ msgid "No positions found." +#~ msgstr "%sが見つかりませんでした" + +#, fuzzy +#~ msgid "All Seasons" +#~ msgstr "シーズン" + +#, fuzzy +#~ msgid "Edit Season" +#~ msgstr "シーズン" + +#, fuzzy +#~ msgid "View Season" +#~ msgstr "シーズン" + +#, fuzzy +#~ msgid "Update Season" +#~ msgstr "%sを更新" + +#, fuzzy +#~ msgid "New Season Name" +#~ msgstr "新規%s名" + +#, fuzzy +#~ msgid "Parent Season" +#~ msgstr "親%s" + +#, fuzzy +#~ msgid "Parent Season:" +#~ msgstr "親%s" + +#, fuzzy +#~ msgid "Search Seasons" +#~ msgstr "%sを検索" + +#, fuzzy +#~ msgid "No seasons found." +#~ msgstr "%sが見つかりませんでした" + +#, fuzzy +#~ msgid "All Venues" +#~ msgstr "会場" + +#, fuzzy +#~ msgid "Edit Venue" +#~ msgstr "会場" + +#, fuzzy +#~ msgid "View Venue" +#~ msgstr "会場" + +#, fuzzy +#~ msgid "New Venue Name" +#~ msgstr "新規%s名" + +#, fuzzy +#~ msgid "Parent Venue" +#~ msgstr "親%s" + +#, fuzzy +#~ msgid "Parent Venue:" +#~ msgstr "親%s" + +#, fuzzy +#~ msgid "Search Venues" +#~ msgstr "%sを検索" + +#, fuzzy +#~ msgid "No venues found." +#~ msgstr "%sが見つかりませんでした" + +#, fuzzy +#~ msgid "Eritrea" +#~ msgstr "連勝敗" + +#, fuzzy +#~ msgid "France" +#~ msgstr "キャンセル" + +#, fuzzy +#~ msgid "New Zealand" +#~ msgstr "チーム" + +#, fuzzy +#~ msgid "East Timor" +#~ msgstr "チーム" + +#~ msgid "Precision" +#~ msgstr "浮動小数点数" + +#~ msgid "Sum" +#~ msgstr "合計" + +#~ msgid "events" +#~ msgstr "試合" + +#~ msgid "Map" +#~ msgstr "地図" + +#~ msgid "%s updated." +#~ msgstr "%sを更新しました。" + +#~ msgid "%s published." +#~ msgstr "%sを公開しました。" + +#~ msgid "%s submitted." +#~ msgstr "%sを作成しました。" + +#~ msgid "%s draft updated." +#~ msgstr "%sの下書きを更新しました。" + +#~ msgid "columns" +#~ msgstr "列" + +#~ msgid "metrics" +#~ msgstr "メトリック" + +#~ msgid "outcome" +#~ msgstr "勝敗" + +#~ msgid "players" +#~ msgstr "選手" + +#~ msgid "Value" +#~ msgstr "値" + +#~ msgid "result" +#~ msgstr "結果" + +#~ msgid "staff" +#~ msgstr "スタッフ" + +#~ msgid "statistics" +#~ msgstr "統計" + +#~ msgid "teams" +#~ msgstr "チーム" + +#~ msgid "league" +#~ msgstr "リーグ" + +#~ msgid "position" +#~ msgstr "ポジション" + +#~ msgid "season" +#~ msgstr "シーズン" + +#~ msgid "venue" +#~ msgstr "会場" + +#~ msgid "Countdown" +#~ msgstr "カウントダウン" + +#~ msgid "Event:" +#~ msgstr "イベント:" #~ msgid "1 View" #~ msgstr "1回" -#~ msgid "Select" -#~ msgstr "選択" - #~ msgid "-- Not Set --" #~ msgstr "-- 未設定 --" @@ -931,21 +1691,9 @@ msgstr "試合記録" #~ msgid "Appearances" #~ msgstr "出場" -#~ msgid "Select Logo" -#~ msgstr "ロゴを選択" - -#~ msgid "Remove Logo" -#~ msgstr "ロゴを削除" - #~ msgid "Joined: %1$s" #~ msgstr "入団日: %1$s" -#~ msgid "Select Photo" -#~ msgstr "写真を選択" - -#~ msgid "Remove Photo" -#~ msgstr "写真を削除" - #~ msgid "Table Columns" #~ msgstr "順位表列" diff --git a/languages/sportspress-template.mo b/languages/sportspress-template.mo index 4c5b2d3cfcf29bc7161f8322e71db7f9656fb857..89992b779854b3b196d9167e52d52259c2c66df3 100644 GIT binary patch delta 36 kcmdnUwvlZ@G^5GH7-J42Lj^-qD?^Kk(-q+Cjr)t30J{eY0{{R3 delta 36 mcmdnUwvlZ@G^5eP7-J4Y0|i54D?`hP(-oj>BZH0mi\n" "Language-Team: ThemeBoy \n" "Language: en_US\n" @@ -20,331 +20,319 @@ msgstr "" "X-Poedit-Bookmarks: -1,75,-1,-1,-1,-1,-1,-1,-1,-1\n" "X-Poedit-SearchPath-0: ..\n" -#: ../functions.php:56 -msgid "Add New" -msgstr "" - -#: ../functions.php:57 ../functions.php:80 ../functions.php:1071 -#: ../functions.php:1072 -#, php-format -msgid "Add New %s" -msgstr "" - -#: ../functions.php:58 ../functions.php:77 -#: ../admin/hooks/post-updated-messages.php:10 ../admin/settings/events.php:32 -#: ../admin/settings/events.php:63 ../admin/settings/players.php:29 -#: ../admin/settings/players.php:61 ../admin/settings/tables.php:33 -#, php-format -msgid "Edit %s" -msgstr "" - -#: ../functions.php:59 -#, php-format -msgid "New %s" -msgstr "" - -#: ../functions.php:60 ../functions.php:78 -#, php-format -msgid "View %s" -msgstr "" - -#: ../functions.php:61 ../functions.php:84 -#, php-format -msgid "Search %s" -msgstr "" - -#: ../functions.php:62 ../functions.php:85 ../functions.php:626 -#, php-format -msgid "No %s found." -msgstr "" - -#: ../functions.php:63 -#, php-format -msgid "No %s found in trash." -msgstr "" - -#: ../functions.php:64 ../functions.php:82 ../functions.php:83 -#, php-format -msgid "Parent %s" -msgstr "" - -#: ../functions.php:76 ../admin/hooks/restrict-manage-posts.php:8 -#: ../admin/hooks/restrict-manage-posts.php:18 -#: ../admin/hooks/restrict-manage-posts.php:28 -#: ../admin/hooks/restrict-manage-posts.php:40 -#: ../admin/widgets/future-events.php:65 ../admin/widgets/future-events.php:81 -#: ../admin/widgets/future-events.php:97 -#: ../admin/widgets/future-events.php:113 -#: ../admin/widgets/recent-events.php:65 ../admin/widgets/recent-events.php:81 -#: ../admin/widgets/recent-events.php:97 -#: ../admin/widgets/recent-events.php:113 -#, php-format -msgid "All %s" -msgstr "" - -#: ../functions.php:79 -#, php-format -msgid "Update %s" -msgstr "" - -#: ../functions.php:81 -#, php-format -msgid "New %s Name" -msgstr "" - -#: ../functions.php:116 +#: ../functions.php:74 msgid "1 view" msgstr "" -#: ../functions.php:118 +#: ../functions.php:76 #, php-format msgid "%s views" msgstr "" -#: ../functions.php:143 +#: ../functions.php:101 msgid "Scheduled" msgstr "" -#: ../functions.php:145 ../functions.php:482 ../functions.php:485 -#: ../functions.php:1899 ../functions.php:2050 ../functions.php:2187 +#: ../functions.php:103 ../functions.php:533 ../functions.php:536 +#: ../functions.php:1996 ../functions.php:2198 ../functions.php:2333 +#: ../admin/post-types/list.php:117 ../admin/widgets/player-list.php:78 +#: ../admin/widgets/player-list.php:91 msgid "Played" msgstr "" -#: ../functions.php:147 +#: ../functions.php:105 msgid "Draft" msgstr "" -#: ../functions.php:149 +#: ../functions.php:107 msgid "Pending Review" msgstr "" -#: ../functions.php:151 ../admin/hooks/post-updated-messages.php:31 +#: ../functions.php:109 ../admin/hooks/post-updated-messages.php:34 msgid "M j, Y @ G:i" msgstr "" -#: ../functions.php:172 ../functions.php:176 ../functions.php:416 -msgid "Sum" -msgstr "" - -#: ../functions.php:172 ../functions.php:417 -msgid "Average" -msgstr "" - -#: ../functions.php:214 -msgid "Integer" -msgstr "" - -#: ../functions.php:215 -msgid "Decimal" -msgstr "" - -#: ../functions.php:216 ../functions.php:636 -#: ../admin/templates/event-details.php:13 -msgid "Time" -msgstr "" - -#: ../functions.php:217 -msgid "Custom Field" -msgstr "" - -#: ../functions.php:344 ../functions.php:398 -msgid "(no title)" -msgstr "" - -#: ../functions.php:482 ../functions.php:485 ../admin/post-types/event.php:3 -#: ../admin/settings/settings.php:11 -msgid "Events" -msgstr "" - -#: ../functions.php:482 -msgid "Attended" -msgstr "" - -#: ../functions.php:488 ../admin/post-types/event.php:44 -#: ../admin/post-types/result.php:3 ../admin/settings/events.php:16 -#: ../admin/settings/events.php:32 ../admin/templates/event-results.php:48 -msgid "Results" -msgstr "" - -#: ../functions.php:491 ../functions.php:492 ../functions.php:493 -#: ../functions.php:494 ../admin/post-types/outcome.php:3 -#: ../admin/settings/events.php:47 ../admin/settings/events.php:63 -msgid "Outcomes" -msgstr "" - -#: ../functions.php:492 -msgid "Streak" -msgstr "" - -#: ../functions.php:493 -msgid "Last 5" -msgstr "" - -#: ../functions.php:494 -msgid "Last 10" -msgstr "" - -#: ../functions.php:497 ../admin/post-types/column.php:3 -#: ../admin/post-types/team.php:33 ../admin/settings/tables.php:11 -#: ../admin/settings/tables.php:33 -msgid "Columns" -msgstr "" - -#: ../functions.php:500 -msgid "Player Statistics" -msgstr "" - -#: ../functions.php:509 -msgid "Operators" -msgstr "" - -#: ../functions.php:519 -msgid "Constants" -msgstr "" - -#: ../functions.php:523 ../admin/post-types/event.php:134 -msgid "— Select —" -msgstr "" - -#: ../functions.php:626 ../admin/post-types/event.php:5 -#: ../admin/widgets/future-events.php:123 -#: ../admin/widgets/recent-events.php:123 -msgid "events" -msgstr "" - -#: ../functions.php:634 ../admin/post-types/event.php:4 -#: ../admin/post-types/event.php:40 ../admin/post-types/event.php:196 -msgid "Event" -msgstr "" - -#: ../functions.php:635 ../admin/templates/event-details.php:13 -msgid "Date" -msgstr "" - -#: ../functions.php:673 ../functions.php:814 ../functions.php:887 -#: ../functions.php:1071 ../functions.php:1752 ../functions.php:2187 -#: ../admin/hooks/gettext.php:9 ../admin/post-types/list.php:31 -#: ../admin/post-types/list.php:82 ../admin/post-types/team.php:4 -#: ../admin/post-types/team.php:41 ../admin/templates/event-results.php:52 -msgid "Team" -msgstr "" - -#: ../functions.php:716 ../functions.php:992 ../functions.php:1984 -#: ../admin/hooks/register-activation-hook.php:147 -#: ../admin/post-types/player.php:4 ../admin/templates/event-players.php:28 -msgid "Player" -msgstr "" - -#: ../functions.php:761 ../functions.php:813 ../functions.php:1484 -#: ../functions.php:2187 ../admin/post-types/event.php:69 -#: ../admin/post-types/event.php:199 ../admin/post-types/list.php:30 -#: ../admin/post-types/list.php:70 ../admin/post-types/table.php:29 -#: ../admin/post-types/table.php:68 ../admin/templates/event-details.php:22 -#: ../admin/terms/season.php:4 -msgid "Season" -msgstr "" - -#: ../functions.php:837 ../functions.php:915 ../admin/post-types/event.php:64 -#: ../admin/post-types/event.php:77 ../admin/post-types/event.php:90 -#: ../admin/post-types/player.php:85 -msgid "-- Not set --" -msgstr "" - -#: ../functions.php:891 ../admin/post-types/outcome.php:4 -msgid "Outcome" -msgstr "" - -#: ../functions.php:943 ../functions.php:1048 -msgid "Starting Lineup" -msgstr "" - -#: ../functions.php:944 ../functions.php:1049 -msgid "Substitute" -msgstr "" - -#: ../functions.php:968 -msgid "None" -msgstr "" - -#: ../functions.php:996 -msgid "Status" -msgstr "" - -#: ../functions.php:1027 ../admin/templates/event-players.php:82 +#: ../functions.php:130 ../functions.php:134 ../functions.php:467 +#: ../functions.php:1059 ../admin/templates/event-players.php:82 msgid "Total" msgstr "" -#: ../admin/hooks/admin-enqueue-scripts.php:20 -#: ../admin/post-types/event.php:110 -msgid "Remove" +#: ../functions.php:130 ../functions.php:468 +msgid "Average" msgstr "" -#: ../admin/hooks/admin-menu.php:46 ../admin/post-types/player.php:30 -#: ../admin/post-types/staff.php:48 ../admin/post-types/team.php:42 -#: ../admin/terms/league.php:3 ../admin/widgets/future-events.php:65 -#: ../admin/widgets/recent-events.php:65 +#: ../functions.php:172 +msgid "Integer" +msgstr "" + +#: ../functions.php:173 +msgid "Decimal" +msgstr "" + +#: ../functions.php:174 ../admin/templates/event-details.php:13 +msgid "Time" +msgstr "" + +#: ../functions.php:175 +msgid "Custom Field" +msgstr "" + +#: ../functions.php:396 ../functions.php:449 +msgid "(no title)" +msgstr "" + +#: ../functions.php:533 ../functions.php:536 ../admin/post-types/event.php:6 +#: ../admin/post-types/event.php:16 ../admin/settings/settings.php:11 +msgid "Events" +msgstr "" + +#: ../functions.php:533 +msgid "Attended" +msgstr "" + +#: ../functions.php:539 ../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:542 ../functions.php:543 ../functions.php:544 +#: ../functions.php:545 ../admin/post-types/outcome.php:4 +#: ../admin/post-types/outcome.php:15 ../admin/settings/events.php:55 +msgid "Outcomes" +msgstr "" + +#: ../functions.php:543 +msgid "Streak" +msgstr "" + +#: ../functions.php:544 +msgid "Last 5" +msgstr "" + +#: ../functions.php:545 +msgid "Last 10" +msgstr "" + +#: ../functions.php:548 ../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:551 +msgid "Player Statistics" +msgstr "" + +#: ../functions.php:560 +msgid "Operators" +msgstr "" + +#: ../functions.php:573 +msgid "Constants" +msgstr "" + +#: ../functions.php:577 ../admin/settings/settings.php:46 +msgid "— Select —" +msgstr "" + +#: ../functions.php:690 ../functions.php:844 ../functions.php:919 +#: ../functions.php:1804 ../functions.php:2333 ../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:712 ../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:716 +msgid "Cancel" +msgstr "" + +#: ../functions.php:717 +msgid "Save" +msgstr "" + +#: ../functions.php:746 ../functions.php:1024 ../functions.php:2092 +#: ../admin/hooks/register-activation-hook.php:147 +#: ../admin/post-types/player.php:5 ../admin/templates/event-players.php:28 +msgid "Player" +msgstr "" + +#: ../functions.php:791 ../functions.php:843 ../functions.php:1535 +#: ../functions.php:2333 ../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:867 +msgid "— None —" +msgstr "" + +#: ../functions.php:888 ../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:923 ../admin/post-types/outcome.php:5 +msgid "Outcome" +msgstr "" + +#: ../functions.php:947 ../admin/post-types/event.php:76 +#: ../admin/post-types/event.php:91 ../admin/post-types/event.php:106 +msgid "-- Not set --" +msgstr "" + +#: ../functions.php:975 ../functions.php:1080 +msgid "Starting Lineup" +msgstr "" + +#: ../functions.php:976 ../functions.php:1081 +msgid "Substitute" +msgstr "" + +#: ../functions.php:1000 +msgid "None" +msgstr "" + +#: ../functions.php:1028 +msgid "Status" +msgstr "" + +#: ../functions.php:1101 ../functions.php:1118 +#: ../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/hooks/admin-enqueue-scripts.php:24 +msgid "— Remove —" +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:52 -#: ../admin/hooks/restrict-manage-posts.php:18 -#: ../admin/post-types/metric.php:26 ../admin/post-types/player.php:28 -#: ../admin/post-types/staff.php:46 ../admin/post-types/statistic.php:27 -#: ../admin/settings/players.php:16 ../admin/settings/players.php:48 -#: ../admin/terms/position.php:3 +#: ../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:58 -#: ../admin/hooks/restrict-manage-posts.php:28 -#: ../admin/post-types/player.php:31 ../admin/post-types/staff.php:49 -#: ../admin/post-types/team.php:43 ../admin/terms/season.php:3 -#: ../admin/widgets/future-events.php:81 ../admin/widgets/recent-events.php:81 +#: ../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:64 ../admin/terms/venue.php:3 -#: ../admin/widgets/future-events.php:97 ../admin/widgets/recent-events.php:97 +#: ../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:6 #: ../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:12 ../admin/hooks/gettext.php:15 -#: ../admin/hooks/gettext.php:27 ../admin/hooks/gettext.php:30 +#: ../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/hooks/gettext.php:12 ../admin/hooks/gettext.php:15 -#: ../admin/hooks/gettext.php:18 ../admin/post-types/team.php:30 +#: ../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/hooks/gettext.php:27 ../admin/hooks/gettext.php:30 -#: ../admin/hooks/gettext.php:33 ../admin/post-types/player.php:45 -#: ../admin/post-types/staff.php:27 +#: ../admin/post-types/player.php:58 ../admin/post-types/staff.php:34 msgid "Photo" msgstr "" -#: ../admin/hooks/gettext.php:18 ../admin/hooks/gettext.php:33 -#, php-format -msgid "Remove %s" +#: ../admin/hooks/gettext.php:12 ../admin/hooks/gettext.php:15 +msgid "Select Logo" msgstr "" -#: ../admin/hooks/gettext.php:24 ../admin/post-types/player.php:27 -#: ../admin/post-types/staff.php:45 -msgid "Name" +#: ../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/gettext.php:36 ../admin/hooks/gettext.php:39 @@ -353,68 +341,60 @@ msgstr "" msgid "Date/Time: %1$s" msgstr "" -#: ../admin/hooks/manage-posts-columns.php:3 ../admin/post-types/event.php:202 -#: ../admin/post-types/list.php:32 ../admin/post-types/player.php:32 -#: ../admin/post-types/staff.php:50 ../admin/post-types/table.php:31 -#: ../admin/post-types/team.php:44 +#: ../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/media-buttons.php:7 ../admin/hooks/media-buttons.php:8 -#, php-format -msgid "Add %s" +#: ../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 "Map" +msgid "Add Map" msgstr "" -#: ../admin/hooks/media-buttons.php:8 ../admin/post-types/table.php:4 -#: ../admin/post-types/table.php:45 ../admin/widgets/league-table.php:6 -msgid "League Table" +#: ../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:8 -#: ../admin/hooks/post-updated-messages.php:15 -#: ../admin/hooks/post-updated-messages.php:18 -#, php-format -msgid "%s updated." +#: ../admin/hooks/post-updated-messages.php:10 +msgid "Settings saved." msgstr "" -#: ../admin/hooks/post-updated-messages.php:20 -#, php-format -msgid "%s published." +#: ../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 -#, php-format -msgid "%s saved." +#: ../admin/hooks/post-updated-messages.php:28 +#: ../admin/hooks/post-updated-messages.php:38 +msgid "Success!" msgstr "" -#: ../admin/hooks/post-updated-messages.php:25 -#, php-format -msgid "%s submitted." -msgstr "" - -#: ../admin/hooks/post-updated-messages.php:27 -#: ../admin/hooks/post-updated-messages.php:33 -#: ../admin/hooks/post-updated-messages.php:37 +#: ../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:30 +#: ../admin/hooks/post-updated-messages.php:33 #, php-format -msgid "%s scheduled for: %s." -msgstr "" - -#: ../admin/hooks/post-updated-messages.php:35 -#, php-format -msgid "%s draft updated." +msgid "Scheduled for: %1$s." msgstr "" #: ../admin/hooks/register-activation-hook.php:8 @@ -426,40 +406,44 @@ msgid "Team Manager" msgstr "" #: ../admin/hooks/register-activation-hook.php:129 -#: ../admin/post-types/event.php:119 ../admin/post-types/staff.php:3 -#: ../admin/post-types/staff.php:4 +#: ../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 -#: ../admin/post-types/event.php:42 ../admin/post-types/event.php:197 -#: ../admin/post-types/player.php:29 ../admin/post-types/player.php:47 -#: ../admin/post-types/staff.php:28 ../admin/post-types/staff.php:47 -#: ../admin/post-types/table.php:30 ../admin/post-types/table.php:42 -#: ../admin/post-types/table.php:80 ../admin/post-types/team.php:3 -#: ../admin/widgets/future-events.php:113 -#: ../admin/widgets/recent-events.php:113 -msgid "Teams" -msgstr "" - -#: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:43 -msgid "days" -msgstr "" - -#: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:44 -msgid "hrs" -msgstr "" - -#: ../admin/hooks/wp-enqueue-scripts.php:14 -#: ../admin/templates/countdown.php:45 -msgid "mins" +msgid "Show all teams" msgstr "" #: ../admin/hooks/wp-enqueue-scripts.php:14 #: ../admin/templates/countdown.php:46 +msgid "days" +msgstr "" + +#: ../admin/hooks/wp-enqueue-scripts.php:14 +#: ../admin/templates/countdown.php:47 +msgid "hrs" +msgstr "" + +#: ../admin/hooks/wp-enqueue-scripts.php:14 +#: ../admin/templates/countdown.php:48 +msgid "mins" +msgstr "" + +#: ../admin/hooks/wp-enqueue-scripts.php:14 +#: ../admin/templates/countdown.php:49 msgid "secs" msgstr "" @@ -479,253 +463,266 @@ msgstr "" msgid "Skip setup" msgstr "" -#: ../admin/includes/notice-theme-support.php:6 +#: ../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:8 +#: ../admin/includes/notice-theme-support.php:7 msgid "Theme Integration Guide" msgstr "" -#: ../admin/includes/notice-theme-support.php:9 +#: ../admin/includes/notice-theme-support.php:8 msgid "Hide this notice" msgstr "" -#: ../admin/post-types/column.php:4 +#: ../admin/post-types/column.php:5 msgid "Column" msgstr "" -#: ../admin/post-types/column.php:5 -msgid "columns" +#: ../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:26 ../admin/post-types/metric.php:25 -#: ../admin/post-types/outcome.php:26 ../admin/post-types/result.php:26 -#: ../admin/post-types/statistic.php:26 ../admin/settings/events.php:20 -#: ../admin/settings/events.php:51 ../admin/settings/players.php:15 -#: ../admin/settings/players.php:47 ../admin/settings/tables.php:15 +#: ../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:27 ../admin/post-types/column.php:49 -#: ../admin/post-types/outcome.php:27 ../admin/post-types/outcome.php:39 -#: ../admin/post-types/result.php:27 ../admin/post-types/result.php:40 -#: ../admin/settings/events.php:21 ../admin/settings/events.php:52 -#: ../admin/settings/tables.php:16 +#: ../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:28 ../admin/post-types/column.php:53 -#: ../admin/settings/tables.php:17 +#: ../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:29 ../admin/post-types/column.php:61 -#: ../admin/settings/tables.php:18 -msgid "Precision" +#: ../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:30 ../admin/post-types/column.php:65 -#: ../admin/settings/tables.php:19 +#: ../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:37 ../admin/post-types/event.php:41 -#: ../admin/post-types/list.php:49 ../admin/post-types/outcome.php:34 -#: ../admin/post-types/player.php:46 ../admin/post-types/result.php:34 -#: ../admin/post-types/statistic.php:35 ../admin/post-types/table.php:48 +#: ../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:69 +#: ../admin/post-types/column.php:76 msgid "Disable" msgstr "" -#: ../admin/post-types/column.php:77 +#: ../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:77 +#: ../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:45 ../admin/post-types/event.php:118 -#: ../admin/post-types/list.php:28 ../admin/post-types/list.php:43 -#: ../admin/post-types/list.php:93 ../admin/post-types/player.php:3 +#: ../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:47 -msgid "Article" +#: ../admin/post-types/event.php:152 +msgid "— Add —" msgstr "" -#: ../admin/post-types/event.php:56 ../admin/post-types/event.php:198 -#: ../admin/post-types/list.php:29 ../admin/post-types/list.php:58 -#: ../admin/post-types/table.php:28 ../admin/post-types/table.php:56 -#: ../admin/templates/event-details.php:17 ../admin/terms/league.php:4 -msgid "League" -msgstr "" - -#: ../admin/post-types/event.php:82 ../admin/post-types/event.php:200 -#: ../admin/templates/event-venue.php:24 ../admin/terms/venue.php:4 -msgid "Venue" -msgstr "" - -#: ../admin/post-types/event.php:201 +#: ../admin/post-types/event.php:217 msgid "Date/Time" msgstr "" -#: ../admin/post-types/list.php:3 +#: ../admin/post-types/list.php:4 ../admin/post-types/list.php:15 msgid "Player Lists" msgstr "" -#: ../admin/post-types/list.php:4 ../admin/post-types/list.php:46 +#: ../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:5 -msgid "player lists" -msgstr "" - -#: ../admin/post-types/list.php:27 ../admin/post-types/table.php:27 +#: ../admin/post-types/list.php:34 ../admin/post-types/table.php:34 msgid "Title" msgstr "" -#: ../admin/post-types/metric.php:3 ../admin/post-types/player.php:48 -#: ../admin/settings/players.php:11 ../admin/settings/players.php:29 -msgid "Metrics" +#: ../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/metric.php:4 ../admin/post-types/player.php:148 -msgid "Metric" +#: ../admin/post-types/list.php:110 ../admin/widgets/player-list.php:84 +msgid "Sort by:" msgstr "" -#: ../admin/post-types/metric.php:5 -msgid "metrics" -msgstr "" - -#: ../admin/post-types/outcome.php:5 -msgid "outcome" -msgstr "" - -#: ../admin/post-types/player.php:5 -msgid "players" -msgstr "" - -#: ../admin/post-types/player.php:43 ../admin/post-types/staff.php:25 -#: ../admin/post-types/team.php:28 -msgid "Publish" -msgstr "" - -#: ../admin/post-types/player.php:51 ../admin/post-types/statistic.php:3 -#: ../admin/settings/players.php:43 ../admin/settings/players.php:61 -msgid "Statistics" -msgstr "" - -#: ../admin/post-types/player.php:54 ../admin/post-types/staff.php:29 -msgid "Profile" -msgstr "" - -#: ../admin/post-types/player.php:74 ../admin/templates/player-metrics.php:15 +#: ../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/player.php:80 ../admin/templates/player-metrics.php:16 +#: ../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:98 -msgid "Current Team" -msgstr "" - -#: ../admin/post-types/player.php:149 -msgid "Value" -msgstr "" - -#: ../admin/post-types/result.php:4 -msgid "Result" +#: ../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/staff.php:5 -msgid "staff" -msgstr "" - -#: ../admin/post-types/statistic.php:4 -msgid "Statistic" +msgid "Result" msgstr "" #: ../admin/post-types/statistic.php:5 -msgid "statistics" +msgid "Statistic" msgstr "" -#: ../admin/post-types/statistic.php:28 ../admin/post-types/statistic.php:41 -#: ../admin/settings/players.php:49 +#: ../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:3 ../admin/settings/settings.php:12 +#: ../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 -msgid "league tables" +#: ../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:5 -msgid "teams" -msgstr "" - -#: ../admin/presets/baseball.php:5 -msgid "Baseball" -msgstr "" - -#: ../admin/presets/basketball.php:5 -msgid "Basketball" -msgstr "" - -#: ../admin/presets/cricket.php:5 -msgid "Cricket" -msgstr "" - -#: ../admin/presets/football.php:5 -msgid "American Football" -msgstr "" - -#: ../admin/presets/footy.php:5 -msgid "Australian Rules Football" -msgstr "" - -#: ../admin/presets/gaming.php:5 -msgid "Competitive Gaming" -msgstr "" - -#: ../admin/presets/golf.php:5 -msgid "Golf" -msgstr "" - -#: ../admin/presets/hockey.php:5 -msgid "Hockey" -msgstr "" - -#: ../admin/presets/racing.php:5 -msgid "Racing" -msgstr "" - -#: ../admin/presets/rugby.php:5 -msgid "Rugby" -msgstr "" - -#: ../admin/presets/soccer.php:5 -msgid "Soccer (Association Football)" +#: ../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 @@ -736,23 +733,30 @@ msgstr "" msgid "General Settings" msgstr "" -#: ../admin/settings/settings.php:10 ../admin/settings/settings.php:236 -#: ../admin/settings/settings.php:237 -msgid "SportsPress" +#: ../admin/settings/settings.php:10 +msgid "General" msgstr "" -#: ../admin/settings/settings.php:59 ../admin/widgets/countdown.php:43 -msgid "(Auto)" +#: ../admin/settings/settings.php:50 +msgid "Custom" msgstr "" -#: ../admin/settings/settings.php:98 +#: ../admin/settings/settings.php:52 ../admin/settings/settings.php:102 msgid "Sport" msgstr "" -#: ../admin/settings/settings.php:119 +#: ../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 @@ -762,120 +766,257 @@ msgctxt "calendar caption" msgid "%1$s %2$s" msgstr "" -#: ../admin/templates/league-table.php:9 +#: ../admin/templates/league-table.php:27 msgid "Pos" msgstr "" -#: ../admin/terms/league.php:5 -msgid "league" +#: ../admin/templates/player-list.php:46 +msgid "Rank" msgstr "" -#: ../admin/terms/position.php:4 -msgid "Position" +#: ../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" +msgid "Position" msgstr "" -#: ../admin/terms/season.php:5 -msgid "season" -msgstr "" - -#: ../admin/terms/venue.php:5 -msgid "venue" -msgstr "" - -#: ../admin/terms/venue.php:27 ../admin/terms/venue.php:74 +#: ../admin/terms/venue.php:38 ../admin/terms/venue.php:85 msgid "Address" msgstr "" -#: ../admin/terms/venue.php:34 +#: ../admin/terms/venue.php:45 msgid "Latitude" msgstr "" -#: ../admin/terms/venue.php:40 +#: ../admin/terms/venue.php:51 msgid "Longitude" msgstr "" -#: ../admin/widgets/countdown.php:5 ../admin/widgets/events-calendar.php:5 -#: ../admin/widgets/future-events.php:5 ../admin/widgets/league-table.php:5 -#: ../admin/widgets/recent-events.php:5 -msgid "SportsPress widget." +#: ../admin/tools/importers.php:37 +msgid "SportsPress Teams (CSV)" msgstr "" -#: ../admin/widgets/countdown.php:6 ../admin/widgets/countdown.php:11 -msgid "Countdown" +#: ../admin/tools/importers.php:37 +msgid "Import teams from a csv file." msgstr "" -#: ../admin/widgets/countdown.php:33 ../admin/widgets/events-calendar.php:32 -#: ../admin/widgets/future-events.php:55 ../admin/widgets/league-table.php:38 -#: ../admin/widgets/recent-events.php:55 +#: ../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:36 -msgid "Event:" +#: ../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 "Events Calendar" +msgid "SportsPress Events Calendar" msgstr "" -#: ../admin/widgets/future-events.php:6 ../admin/widgets/future-events.php:11 -msgid "Future Events" +#: ../admin/widgets/league-table.php:5 +msgid "Display a league table." msgstr "" -#: ../admin/widgets/future-events.php:58 ../admin/widgets/recent-events.php:58 -msgid "League:" -msgstr "" - -#: ../admin/widgets/future-events.php:74 ../admin/widgets/recent-events.php:74 -msgid "Season:" -msgstr "" - -#: ../admin/widgets/future-events.php:90 ../admin/widgets/recent-events.php:90 -msgid "Venue:" -msgstr "" - -#: ../admin/widgets/future-events.php:106 -#: ../admin/widgets/recent-events.php:106 -msgid "Team:" -msgstr "" - -#: ../admin/widgets/future-events.php:123 -#: ../admin/widgets/recent-events.php:123 -#, php-format -msgid "Number of %s to show:" -msgstr "" - -#: ../admin/widgets/league-table.php:41 -msgid "League Table:" +#: ../admin/widgets/league-table.php:6 +msgid "SportsPress League Table" msgstr "" #: ../admin/widgets/league-table.php:58 msgid "Columns:" msgstr "" -#: ../admin/widgets/recent-events.php:6 ../admin/widgets/recent-events.php:11 -msgid "Recent Events" +#: ../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 "Select" -#~ msgstr "Sélectionner" - #~ msgid "-- Not Set --" #~ msgstr "-- Pas réglé --" -#~ msgid "1 View" -#~ msgstr "1 vue" - -#~ msgid "positions" -#~ msgstr "ポジション" - #~ msgid "Points" #~ msgstr "点数" @@ -926,37 +1067,12 @@ msgstr "" #~ msgid "Appearances" #~ msgstr "出場" -#~ msgid "Select Logo" -#~ msgstr "ロゴを選択" - -#~ msgid "Remove Logo" -#~ msgstr "ロゴを削除" - -#~ msgid "Joined: %1$s" -#~ msgstr "入団日: %1$s" - -#~ msgid "Select Photo" -#~ msgstr "写真を選択" - -#~ msgid "Remove Photo" -#~ msgstr "写真を削除" - -#~ msgid "Table Columns" -#~ msgstr "順位表列" - -#~ msgid "Table Column" -#~ msgstr "順位表列" - #~ msgid "table columns" #~ msgstr "順位表列" #~ msgid "Format" #~ msgstr "フォーマット" -#, fuzzy -#~ msgid "Player Statistic" -#~ msgstr "選手名鑑" - #, fuzzy #~ msgid "player statistics" #~ msgstr "選手名鑑" diff --git a/readme.txt b/readme.txt index 756c66d0..9ef507a2 100644 --- a/readme.txt +++ b/readme.txt @@ -79,7 +79,7 @@ Main Result is the default result that will be displayed in the admin list. Results are the values that you want to keep track of and display on your event pages. In Association Football, for example, typical results are "1st half", "2nd half", and "Goals". For Baseball, you would have 9+ "Innings", "Hits", "Runs", and "Errors". -To add a new result, go to Settings > SportsPress > Results > Edit Results > Add New. Enter a name that you would like to be displayed in the column. +To add a new result, go to Settings > SportsPress > Results > Add New. Enter a name that you would like to be displayed in the column. The "Key" is the variable name used in league table calculations and will be automatically generated when you create a new result, but you can also change this. The Order Attribute is the order that your result will be displayed among your other results. @@ -87,7 +87,6 @@ The "Key" is the variable name used in league table calculations and will be aut Manage the columns you would like to calculate and display in league tables. -To add a new column, League Tables > Edit Columns > Add New Create a Title that you want to use as the column label, the Key will automatically be generated but you do have the option to change it here. You can define an equation for a column by selecting the options from the dropdown menu. As an example, a “Wins” column should just be “W” from the dropdown. For more complex calculations, you'll need to select multiple elements to create your equations. For example, the equation for Pts in Association Football would be W x 3 + D. @@ -129,7 +128,7 @@ Bugs can be reported either in our support forum or preferably on the [SportsPre = Is this plugin ready for production? = -SportsPress is currently in beta and is undergoing testing. We are still actively making adjustments to the code, so we do not recommend installing it on a live server until we officially leave the beta phase. +SportsPress is currently in beta and is undergoing testing. We are still actively making adjustments to the code, so we do not recommend using it until we officially leave the beta phase. == Screenshots == @@ -137,13 +136,42 @@ SportsPress is currently in beta and is undergoing testing. We are still activel 2. Teams admin. 3. Players admin. 4. SportsPress Settings panel. -5. League Table widget. -6. Player List widget. -7. Events Calendar widget. -8. Countdown widget. +5. League Table widget settings. +6. Player List widget settings. +7. Events Calendar widget settings. +8. Countdown widget settings. +9. SportsPress Status dashboard widget. == Changelog == += 0.4 = +* Feature - SportsPress Status dashboard widget added to display number of events and countdown in admin. +* Feature - New dashboard menu icons. +* Feature - More intuitive player edit screen. +* Feature - Enable spreadsheet style keyboard navigation in admin data tables. +* Feature - Add hover action on league table team names to edit display name. +* Refactor - Remove min and max outcome options from column equation. +* Refactor - Change Rounding precision to default to 0. +* Tweak - Set player statistic totals to update placeholder instead of actual value in events. +* Tweak - Used jQuery Chosen for inputs where useful. +* Tweak - Prepend plugin name to widget titles. +* Tweak - Highlight settings in admin menu when adding new config post type. +* Tweak - Display Events as Schedule in admin sidebar menu. +* Tweak - Update widget descriptions. +* Tweak - Remove unused external class eqGraph. +* Tweak - Display sort order priority options for number of columns available. +* Fix - Apply table column rounding when precision is set. +* Fix - Display event results on events page when available. +* Fix - Check that event results are available before displaying a warning under certain conditions. +* Fix - Namespace eqEOS class to avoid conflict with other plugins. +* Localization - Use specific strings instead of dynamic ones for more accurate translations. +* Localization - Use generic strings where appropriate. +* Localization - Update German translation. +* Localization - Update Spanish translation. +* Localization - Update French translation. +* Localization - Update Italian translation. +* Localization - Update Japanese translation. + = 0.3.3 = * Feature - Add default sorting options per player list. * Feature - Add option to sort player list alphabetically by name or by default.