SportsPress – Sports Club & League Manager - Version 1.3.2

Version Description

  • Integration - WPML compatibility.
  • Feature - Option to set number of columns in player gallery.
  • Tweak - Remove line break after templates.
  • Tweak - Update plugin icon.
  • Tweak - Update welcome screen badge.
  • Tweak - Display admin menu label as Players & Staff.
  • Fix - Typo in sample CSV import file.
  • Fix - Apply default color scheme when left blank.
  • Fix - Notices where taxonomies or posts not found.
  • Localization - Update source strings.
  • Localization - Update French and Dutch translations.
Download this release

Release Info

Developer ThemeBoy
Plugin Icon 128x128 SportsPress – Sports Club & League Manager
Version 1.3.2
Comparing to
See all releases

Code changes from version 1.2.8 to 1.3.2

Files changed (109) hide show
  1. assets/css/admin.css +78 -2
  2. assets/css/dashboard.css +1 -5
  3. assets/css/menu.css +23 -14
  4. assets/css/slickmap.css +243 -0
  5. assets/css/sportspress.css +30 -0
  6. assets/fonts/sportspress.eot +0 -0
  7. assets/fonts/sportspress.svg +16 -12
  8. assets/fonts/sportspress.ttf +0 -0
  9. assets/fonts/sportspress.woff +0 -0
  10. assets/images/slickmap/L1-center.png +0 -0
  11. assets/images/slickmap/L1-left.png +0 -0
  12. assets/images/slickmap/L1-right.png +0 -0
  13. assets/images/slickmap/L3-bottom.png +0 -0
  14. assets/images/slickmap/L3-center.png +0 -0
  15. assets/images/slickmap/L3-li-top.png +0 -0
  16. assets/images/slickmap/L3-ul-top.png +0 -0
  17. assets/images/slickmap/vertical-line.png +0 -0
  18. assets/images/welcome/sp-badge.png +0 -0
  19. assets/js/admin/editor-lang.php +4 -5
  20. assets/js/admin/editor.js +72 -72
  21. assets/js/admin/sportspress-admin.js +151 -0
  22. dummy-data/events-sample.csv +1 -1
  23. dummy-data/staff-sample.csv +6 -6
  24. dummy-data/teams-sample.csv +4 -4
  25. includes/admin/class-sp-admin-addons.php +0 -62
  26. includes/admin/class-sp-admin-ajax.php +39 -0
  27. includes/admin/class-sp-admin-assets.php +10 -11
  28. includes/admin/class-sp-admin-dashboard.php +17 -16
  29. includes/admin/class-sp-admin-menus.php +96 -39
  30. includes/admin/class-sp-admin-settings.php +51 -7
  31. includes/admin/class-sp-admin-sports.php +45 -8
  32. includes/admin/class-sp-admin-welcome.php +14 -26
  33. includes/admin/class-sp-admin.php +5 -1
  34. includes/admin/importers/class-sp-event-importer.php +376 -344
  35. includes/admin/importers/class-sp-importer.php +141 -3
  36. includes/admin/importers/class-sp-player-importer.php +83 -133
  37. includes/admin/importers/class-sp-staff-importer.php +80 -127
  38. includes/admin/importers/class-sp-team-importer.php +41 -101
  39. includes/admin/post-types/class-sp-admin-cpt-calendar.php +3 -2
  40. includes/admin/post-types/class-sp-admin-cpt-event.php +8 -4
  41. includes/admin/post-types/class-sp-admin-cpt-list.php +5 -3
  42. includes/admin/post-types/class-sp-admin-cpt-player.php +16 -4
  43. includes/admin/post-types/class-sp-admin-cpt-staff.php +7 -5
  44. includes/admin/post-types/class-sp-admin-cpt-table.php +5 -3
  45. includes/admin/post-types/class-sp-admin-cpt-team.php +6 -3
  46. includes/admin/post-types/class-sp-admin-meta-boxes.php +10 -8
  47. includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php +53 -37
  48. includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-shortcode.php +1 -1
  49. includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php +13 -14
  50. includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php +32 -56
  51. includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php +20 -17
  52. includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php +3 -3
  53. includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php +36 -12
  54. includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php +3 -1
  55. includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php +4 -2
  56. includes/admin/post-types/meta-boxes/class-sp-meta-box-list-shortcode.php +1 -1
  57. includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php +2 -2
  58. includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php +57 -49
  59. includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php +23 -3
  60. includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php +9 -4
  61. includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php +6 -4
  62. includes/admin/post-types/meta-boxes/class-sp-meta-box-table-shortcode.php +1 -1
  63. includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php +21 -30
  64. includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php +1 -1
  65. includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php +117 -0
  66. includes/admin/settings/class-sp-settings-config.php +0 -431
  67. includes/admin/settings/class-sp-settings-events.php +82 -39
  68. includes/admin/settings/class-sp-settings-general.php +23 -27
  69. includes/admin/settings/class-sp-settings-players.php +13 -17
  70. includes/admin/settings/class-sp-settings-staff.php +9 -1
  71. includes/admin/settings/class-sp-settings-teams.php +10 -11
  72. includes/admin/sp-admin-functions.php +3 -2
  73. includes/admin/views/html-admin-config.php +351 -0
  74. includes/admin/views/html-admin-overview.php +332 -0
  75. includes/admin/views/html-admin-settings.php +8 -9
  76. includes/class-sp-event.php +10 -9
  77. includes/class-sp-frontend-scripts.php +7 -0
  78. includes/class-sp-install.php +1 -1
  79. includes/class-sp-league-table.php +26 -16
  80. includes/class-sp-player-list.php +28 -18
  81. includes/class-sp-player.php +32 -19
  82. includes/class-sp-post-types.php +121 -94
  83. includes/class-sp-shortcodes.php +0 -11
  84. includes/class-sp-staff.php +16 -1
  85. includes/class-sp-team.php +67 -54
  86. includes/class-sp-wpml.php +79 -12
  87. includes/sp-conditional-functions.php +57 -1
  88. includes/sp-core-functions.php +67 -48
  89. includes/sp-template-functions.php +7 -7
  90. includes/sp-template-hooks.php +27 -11
  91. includes/widgets/class-sp-widget-countdown.php +25 -4
  92. includes/widgets/class-sp-widget-event-blocks.php +1 -1
  93. includes/widgets/class-sp-widget-event-calendar.php +1 -1
  94. includes/widgets/class-sp-widget-event-list.php +1 -2
  95. includes/widgets/class-sp-widget-league-table.php +1 -1
  96. includes/widgets/class-sp-widget-player-gallery.php +9 -3
  97. includes/widgets/class-sp-widget-player-list.php +1 -1
  98. languages/sportspress-ar.mo +0 -0
  99. languages/sportspress-ar.po +1486 -1276
  100. languages/sportspress-az.mo +0 -0
  101. languages/sportspress-az.po +3501 -0
  102. languages/sportspress-be_BY.mo +0 -0
  103. languages/sportspress-be_BY.po +3501 -0
  104. languages/sportspress-bg_BG.mo +0 -0
  105. languages/sportspress-bg_BG.po +1104 -1004
  106. languages/sportspress-bn_BD.mo +0 -0
  107. languages/sportspress-bn_BD.po +3501 -0
  108. languages/sportspress-bs_BA.mo +0 -0
  109. languages/sportspress-bs_BA.po +687 -0
assets/css/admin.css CHANGED
@@ -1,4 +1,8 @@
1
  /* SportsPress admin styles */
 
 
 
 
2
  .post-state-format.post-format-calendar:before, .post-format-icon.post-format-calendar:before, a.post-state-format.format-calendar:before {
3
  content: "\f145";
4
  }
@@ -23,6 +27,10 @@
23
  content: "\f164";
24
  }
25
 
 
 
 
 
26
  #sp_videodiv .inside > fieldset > p:first-child {
27
  margin-top: 7px !important;
28
  }
@@ -102,6 +110,15 @@
102
  margin: 0;
103
  }
104
 
 
 
 
 
 
 
 
 
 
105
  .sportspress table.form-table fieldset {
106
  margin-top: 4px;
107
  }
@@ -179,6 +196,15 @@ table.widefat.sp-data-table th.column-outcome {
179
  width: 10em;
180
  }
181
 
 
 
 
 
 
 
 
 
 
182
  table.widefat.sp-data-table td {
183
  line-height: 2;
184
  overflow: visible;
@@ -188,6 +214,16 @@ table.widefat.sp-data-table td:first-child {
188
  white-space: nowrap;
189
  }
190
 
 
 
 
 
 
 
 
 
 
 
191
  table.widefat.sp-data-table input[type="text"],
192
  table.widefat.sp-data-table input[type="number"] {
193
  min-width: 1.25em;
@@ -231,7 +267,7 @@ table.widefat select.sp-outcome {
231
  width: 100%;
232
  }
233
 
234
- table.widefat.sp-sortable-table tbody tr {
235
  cursor: move;
236
  }
237
 
@@ -249,7 +285,9 @@ table.widefat.sp-sortable-table tr:nth-child(2n-1) {
249
  }
250
 
251
  .sp-admin-config-table th.radio,
252
- .sp-admin-config-table td.radio {
 
 
253
  width: 1%;
254
  text-align: center;
255
  }
@@ -458,6 +496,44 @@ table.sp_status_table td mark.yes {
458
  color: #7ad03a;
459
  }
460
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
  /* Media Queries */
462
  @media only screen and (max-width: 782px) {
463
 
1
  /* SportsPress admin styles */
2
+ #sp_formatdiv .post-format-icon {
3
+ margin-left: 0.5px;
4
+ }
5
+
6
  .post-state-format.post-format-calendar:before, .post-format-icon.post-format-calendar:before, a.post-state-format.format-calendar:before {
7
  content: "\f145";
8
  }
27
  content: "\f164";
28
  }
29
 
30
+ .sp-dummy {
31
+ display: none;
32
+ }
33
+
34
  #sp_videodiv .inside > fieldset > p:first-child {
35
  margin-top: 7px !important;
36
  }
110
  margin: 0;
111
  }
112
 
113
+ .sportspress table.form-table .forminp-radio ul li {
114
+ display: inline;
115
+ margin-right: 20px;
116
+ }
117
+
118
+ .sportspress table.form-table .forminp-radio ul li label.post-format-icon {
119
+ margin-top: 0 !important;
120
+ }
121
+
122
  .sportspress table.form-table fieldset {
123
  margin-top: 4px;
124
  }
196
  width: 10em;
197
  }
198
 
199
+ table.widefat.sp-data-table th,
200
+ table.widefat.sp-data-table td {
201
+ padding-right: 0;
202
+ }
203
+ table.widefat.sp-data-table th:last-child,
204
+ table.widefat.sp-data-table td:last-child {
205
+ padding-right: 10px;
206
+ }
207
+
208
  table.widefat.sp-data-table td {
209
  line-height: 2;
210
  overflow: visible;
214
  white-space: nowrap;
215
  }
216
 
217
+ table.widefat.sp-data-table th.icon,
218
+ table.widefat.sp-data-table td.icon {
219
+ width: 1px;
220
+ }
221
+
222
+ table.widefat.sp-data-table th.icon span,
223
+ table.widefat.sp-data-table td.icon span {
224
+ margin-right: 0;
225
+ }
226
+
227
  table.widefat.sp-data-table input[type="text"],
228
  table.widefat.sp-data-table input[type="number"] {
229
  min-width: 1.25em;
267
  width: 100%;
268
  }
269
 
270
+ table.widefat.sp-sortable-table tbody tr .icon {
271
  cursor: move;
272
  }
273
 
285
  }
286
 
287
  .sp-admin-config-table th.radio,
288
+ .sp-admin-config-table td.radio,
289
+ .sp-admin-config-table th.icon,
290
+ .sp-admin-config-table td.icon {
291
  width: 1%;
292
  text-align: center;
293
  }
496
  color: #7ad03a;
497
  }
498
 
499
+ /* Importers */
500
+ #import-upload-form table.form-table th,
501
+ #import-upload-form table.form-table td {
502
+ padding-bottom: 0;
503
+ }
504
+ #import-upload-form table.form-table tbody tr:last-child td {
505
+ padding-bottom: 20px;
506
+ }
507
+ .sp-import-table th,
508
+ .sp-import-table td {
509
+ padding-right: 0;
510
+ }
511
+ .sp-import-table th:last-child,
512
+ .sp-import-table td:last-child {
513
+ padding-right: 10px;
514
+ }
515
+ .sp-import-table tbody tr:nth-child(2n-1) {
516
+ background: #f9f9f9;
517
+ }
518
+ .sp-import-table select {
519
+ max-width: 100%;
520
+ }
521
+ .sp-import-table .sp-actions-column {
522
+ width: 40px;
523
+ text-align: right;
524
+ }
525
+ .sp-import-table .sp-add-row {
526
+ line-height: 1.5;
527
+ }
528
+ .sp-import-table .sp-delete-row {
529
+ font-size: 16px;
530
+ line-height: 1.5;
531
+ color: #a00;
532
+ }
533
+ .sp-import-table .sp-delete-row:hover {
534
+ color: #f00;
535
+ }
536
+
537
  /* Media Queries */
538
  @media only screen and (max-width: 782px) {
539
 
assets/css/dashboard.css CHANGED
@@ -43,16 +43,12 @@
43
  -moz-box-sizing: border-box;
44
  box-sizing: border-box;
45
  margin: 0;
46
- border-top: 1px solid #ececec;
47
  color: #aaa;
48
  }
49
 
50
- #sportspress_dashboard_status .sp_status_list li:first-child {
51
- border-top: 0;
52
- }
53
-
54
  #sportspress_dashboard_status .sp_status_list li.countdown {
55
  width: 100%;
 
56
  }
57
 
58
  #sportspress_dashboard_status .sp_status_list li.events-scheduled {
43
  -moz-box-sizing: border-box;
44
  box-sizing: border-box;
45
  margin: 0;
 
46
  color: #aaa;
47
  }
48
 
 
 
 
 
49
  #sportspress_dashboard_status .sp_status_list li.countdown {
50
  width: 100%;
51
+ border-bottom: 1px solid #ececec;
52
  }
53
 
54
  #sportspress_dashboard_status .sp_status_list li.events-scheduled {
assets/css/menu.css CHANGED
@@ -1,11 +1,11 @@
1
  /* SportsPress menu styles */
2
  @font-face {
3
  font-family: 'sportspress';
4
- src:url('../fonts/sportspress.eot?4gs85g');
5
- src:url('../fonts/sportspress.eot?#iefix4gs85g') format('embedded-opentype'),
6
- url('../fonts/sportspress.woff?4gs85g') format('woff'),
7
- url('../fonts/sportspress.ttf?4gs85g') format('truetype'),
8
- url('../fonts/sportspress.svg?4gs85g#sportspress') format('svg');
9
  font-weight: normal;
10
  font-style: normal;
11
  }
@@ -45,15 +45,15 @@
45
  .sp-icon-tshirt:before {
46
  content: "\f307";
47
  }
 
 
 
48
  .sp-icon-megaphone:before {
49
  content: "\f488";
50
  }
51
  .sp-icon-crown:before {
52
  content: "\f313";
53
  }
54
- .sp-icon-trophy:before {
55
- content: "\f325";
56
- }
57
  .sp-icon-list:before {
58
  content: "\f163"
59
  }
@@ -63,13 +63,17 @@
63
  .sp-icon-smile:before {
64
  content: "\f328";
65
  }
 
 
 
66
 
67
  #adminmenu #toplevel_page_sportspress .toplevel_page_sportspress div.wp-menu-image:before,
68
  #adminmenu #menu-posts-sp_event .menu-icon-sp_event div.wp-menu-image:before,
69
  #adminmenu #menu-posts-sp_team .menu-icon-sp_team div.wp-menu-image:before,
70
  #adminmenu #menu-posts-sp_player .menu-icon-sp_player div.wp-menu-image:before,
 
71
  #sp_formatdiv #post-formats-select .post-format-icon:before {
72
- font-family: sportspress, dashicons !important;
73
  width: 20px;
74
  text-align: center;
75
  }
@@ -87,22 +91,27 @@
87
  box-shadow: none;
88
  }
89
 
 
 
 
 
 
90
  .sp-prefs .button input[type=checkbox]:not(:checked):before {
91
  float: left;
92
  display: inline-block;
93
  vertical-align: middle;
94
- width: 16px;
95
- font: 400 21px/1 dashicons;
96
  speak: none;
 
97
  -webkit-font-smoothing: antialiased;
98
  -moz-osx-font-smoothing: grayscale;
99
- content: '\f335';
100
  margin: -3px 0 0 -4px;
101
- color: #a00;
102
  }
103
 
104
  /* TinyMCE */
105
-
 
 
106
  i.mce-i-sp_shortcodes_button:before, span.mce_sp_shortcodes_button:before {
107
  font-family: 'sportspress';
108
  speak: none;
1
  /* SportsPress menu styles */
2
  @font-face {
3
  font-family: 'sportspress';
4
+ src:url('../fonts/sportspress.eot?20140904');
5
+ src:url('../fonts/sportspress.eot?#iefix20140904') format('embedded-opentype'),
6
+ url('../fonts/sportspress.woff?20140904') format('woff'),
7
+ url('../fonts/sportspress.ttf?20140904') format('truetype'),
8
+ url('../fonts/sportspress.svg?20140904#sportspress') format('svg');
9
  font-weight: normal;
10
  font-style: normal;
11
  }
45
  .sp-icon-tshirt:before {
46
  content: "\f307";
47
  }
48
+ .sp-icon-staff:before {
49
+ content: "\f338";
50
+ }
51
  .sp-icon-megaphone:before {
52
  content: "\f488";
53
  }
54
  .sp-icon-crown:before {
55
  content: "\f313";
56
  }
 
 
 
57
  .sp-icon-list:before {
58
  content: "\f163"
59
  }
63
  .sp-icon-smile:before {
64
  content: "\f328";
65
  }
66
+ .sp-icon-trash:before {
67
+ content: "\f182";
68
+ }
69
 
70
  #adminmenu #toplevel_page_sportspress .toplevel_page_sportspress div.wp-menu-image:before,
71
  #adminmenu #menu-posts-sp_event .menu-icon-sp_event div.wp-menu-image:before,
72
  #adminmenu #menu-posts-sp_team .menu-icon-sp_team div.wp-menu-image:before,
73
  #adminmenu #menu-posts-sp_player .menu-icon-sp_player div.wp-menu-image:before,
74
+ #adminmenu #menu-posts-sp_staff .menu-icon-sp_staff div.wp-menu-image:before,
75
  #sp_formatdiv #post-formats-select .post-format-icon:before {
76
+ font-family: sportspress, dashicons;
77
  width: 20px;
78
  text-align: center;
79
  }
91
  box-shadow: none;
92
  }
93
 
94
+ .sp-prefs .button input[type=checkbox]:before {
95
+ font: 400 14px/22px sportspress, dashicons;
96
+ width: 22px;
97
+ }
98
+
99
  .sp-prefs .button input[type=checkbox]:not(:checked):before {
100
  float: left;
101
  display: inline-block;
102
  vertical-align: middle;
 
 
103
  speak: none;
104
+ content: '\f147';
105
  -webkit-font-smoothing: antialiased;
106
  -moz-osx-font-smoothing: grayscale;
 
107
  margin: -3px 0 0 -4px;
108
+ color: #ccc;
109
  }
110
 
111
  /* TinyMCE */
112
+ .mce-toolbar i.mce-i-sp_shortcodes_button, .mce-toolbar span.mce_sp_shortcodes_button {
113
+ margin-right: -5px;
114
+ }
115
  i.mce-i-sp_shortcodes_button:before, span.mce_sp_shortcodes_button:before {
116
  font-family: 'sportspress';
117
  speak: none;
assets/css/slickmap.css ADDED
@@ -0,0 +1,243 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ Adapted from SlickMap CSS by Matt Everson of Astuteo, LLC
3
+ http://astuteo.com/slickmap
4
+
5
+ Version 1.1
6
+ Copyright (c) 2009 Astuteo, LLC http://astuteo.com
7
+ */
8
+
9
+ .sp-overview-wrap {
10
+ margin-right: 0;
11
+ }
12
+
13
+ .sp-sitemap {
14
+ margin: 40px 0;
15
+ float: left;
16
+ width: 100%;
17
+ position: relative;
18
+ }
19
+
20
+ /* ------------------------------------------------------------
21
+ Reset Styles (adapted from meyerweb.com)
22
+ ------------------------------------------------------------ */
23
+
24
+ .sp-sitemap div, .sp-sitemap span, .sp-sitemap applet, .sp-sitemap object, .sp-sitemap iframe, .sp-sitemap
25
+ h1, .sp-sitemap h2, .sp-sitemap h3, .sp-sitemap h4, .sp-sitemap h5, .sp-sitemap h6, .sp-sitemap p, .sp-sitemap blockquote, .sp-sitemap pre, .sp-sitemap
26
+ a, .sp-sitemap abbr, .sp-sitemap acronym, .sp-sitemap address, .sp-sitemap big, .sp-sitemap cite, .sp-sitemap code, .sp-sitemap
27
+ del, .sp-sitemap dfn, .sp-sitemap em, .sp-sitemap font, .sp-sitemap img, .sp-sitemap ins, .sp-sitemap kbd, .sp-sitemap q, .sp-sitemap s, .sp-sitemap samp, .sp-sitemap
28
+ small, .sp-sitemap strike, .sp-sitemap strong, .sp-sitemap sub, .sp-sitemap sup, .sp-sitemap tt, .sp-sitemap var, .sp-sitemap
29
+ dl, .sp-sitemap dt, .sp-sitemap dd, .sp-sitemap ol, .sp-sitemap ul, .sp-sitemap li, .sp-sitemap
30
+ fieldset, .sp-sitemap form, .sp-sitemap label, .sp-sitemap legend, .sp-sitemap
31
+ table, .sp-sitemap caption, .sp-sitemap tbody, .sp-sitemap tfoot, .sp-sitemap thead, .sp-sitemap tr, .sp-sitemap th, .sp-sitemap td {
32
+ margin: 0;
33
+ padding: 0;
34
+ border: 0;
35
+ outline: 0;
36
+ vertical-align: baseline;
37
+ }
38
+
39
+ /* ------------------------------------------------------------
40
+ Number of Columns
41
+ ------------------------------------------------------------ */
42
+
43
+ .sp-sitemap li {
44
+ width: 12.5%;
45
+ }
46
+
47
+ .sp-sitemap li ul li {
48
+ width:100% !important;
49
+ }
50
+
51
+ .sp-sitemap .sp-primary { max-width: 1600px; }
52
+ .sp-sitemap .col0 { max-width: 200px; }
53
+ .sp-sitemap .col1 { max-width: 200px; }
54
+ .sp-sitemap .col2 { max-width: 400px; }
55
+ .sp-sitemap .col3 { max-width: 600px; }
56
+ .sp-sitemap .col4 { max-width: 800px; }
57
+ .sp-sitemap .col5 { max-width: 1000px; }
58
+ .sp-sitemap .col6 { max-width: 1200px; }
59
+ .sp-sitemap .col7 { max-width: 1400px; }
60
+ .sp-sitemap .col8 { max-width: 1600px; }
61
+
62
+ .sp-sitemap .col1 li { width:99.9%; }
63
+ .sp-sitemap .col2 li { width:50%; }
64
+ .sp-sitemap .col3 li { width:33.3%; }
65
+ .sp-sitemap .col4 li { width:25%; }
66
+ .sp-sitemap .col5 li { width:20%; }
67
+ .sp-sitemap .col6 li { width:16.6%; }
68
+ .sp-sitemap .col7 li { width:14.2%; }
69
+ .sp-sitemap .col8 li { width:12.5%; }
70
+
71
+ /* ------------------------------------------------------------
72
+ General Styles
73
+ ------------------------------------------------------------ */
74
+
75
+ .sp-sitemap h1 {
76
+ font-weight: bold;
77
+ text-transform: uppercase;
78
+ font-size: 20px;
79
+ margin: 0 0 5px 0;
80
+ }
81
+ .sp-sitemap h2 {
82
+ font-size: 10px;
83
+ color: #777777;
84
+ margin: 0 0 20px 0;
85
+ }
86
+ .sp-sitemap a {
87
+ text-decoration: none;
88
+ }
89
+ .sp-sitemap ol, .sp-sitemap ul {
90
+ list-style: none;
91
+ }
92
+ .sp-sitemap li {
93
+ margin: 0;
94
+ }
95
+ .sp-sitemap li a.button {
96
+ white-space: normal;
97
+ position: relative;
98
+ text-align: center;
99
+ padding: 10px 0;
100
+ }
101
+ .sp-sitemap li a.action {
102
+ white-space: normal;
103
+ position: relative;
104
+ text-align: center;
105
+ padding: 10px 28px;
106
+ }
107
+ .sp-sitemap li a.button span {
108
+ position: absolute;
109
+ left: 9px;
110
+ top: 9px;
111
+ }
112
+ .sp-sitemap li a.button span.dashicons-plus {
113
+ top: 12px;
114
+ }
115
+ .sp-sitemap li a.button-primary span {
116
+ opacity: 0.55;
117
+ }
118
+
119
+
120
+ /* ------------------------------------------------------------
121
+ Site Map Styles
122
+ ------------------------------------------------------------ */
123
+
124
+ /* -------- Top Level --------- */
125
+
126
+ .sp-sitemap .sp-primary .sp-home {
127
+ display: block;
128
+ float: none;
129
+ background: #f1f1f1 url('../images/slickmap/L1-left.png') center bottom no-repeat;
130
+ position: relative;
131
+ z-index: 2;
132
+ padding: 0 0 30px 0;
133
+ }
134
+ .sp-sitemap .sp-primary .sp-breadcrumb {
135
+ display: block;
136
+ float: none;
137
+ background: #f1f1f1 url('../images/slickmap/vertical-line.png') center bottom repeat-y;
138
+ position: relative;
139
+ z-index: 2;
140
+ padding: 0 0 30px 0;
141
+ margin-bottom: 30px;
142
+ }
143
+ .sp-sitemap .sp-primary li {
144
+ min-width: 149px;
145
+ float: left;
146
+ background: url('../images/slickmap/L1-center.png') center top no-repeat;
147
+ padding: 30px 0;
148
+ margin-top: -30px;
149
+ }
150
+ .sp-sitemap .sp-primary li a.button {
151
+ margin: 0 20px 0 0;
152
+ display: block;
153
+ font-size: 13px;
154
+ font-weight: bold;
155
+ height: auto;
156
+ line-height: normal;
157
+ }
158
+ .sp-sitemap .sp-primary li:last-child {
159
+ background: url('../images/slickmap/L1-right.png') center top no-repeat;
160
+ }
161
+
162
+ /* -------- Second Level --------- */
163
+
164
+ .sp-sitemap .sp-primary li li {
165
+ width: 100%;
166
+ clear: left;
167
+ margin-top: 0;
168
+ padding: 10px 0 0 0;
169
+ background: url('../images/slickmap/vertical-line.png') center bottom repeat-y;
170
+ }
171
+ .sp-sitemap .sp-primary li li:first-child {
172
+ padding-top: 30px;
173
+ }
174
+ .sp-sitemap .sp-primary li li:last-child {
175
+ background: url('../images/slickmap/vertical-line.png') center bottom repeat-y;
176
+ }
177
+
178
+ /* -------- Third Level --------- */
179
+
180
+ .sp-sitemap .sp-primary li li ul {
181
+ margin: 10px 0 0 0;
182
+ width: 100%;
183
+ float: right;
184
+ padding: 9px 0 10px 0;
185
+ background: #f1f1f1 url('../images/slickmap/L3-ul-top.png') center top no-repeat;
186
+ }
187
+ .sp-sitemap .sp-primary li li li {
188
+ background: url('../images/slickmap/L3-center.png') left center no-repeat;
189
+ padding: 5px 0;
190
+ }
191
+ .sp-sitemap .sp-primary li li li a {
192
+ width: 80%;
193
+ float: right;
194
+ }
195
+ .sp-sitemap .sp-primary li li li:first-child {
196
+ padding: 15px 0 5px 0;
197
+ background: url('../images/slickmap/L3-li-top.png') left center no-repeat;
198
+ }
199
+ .sp-sitemap .sp-primary li li li:last-child {
200
+ background: url('../images/slickmap/L3-bottom.png') left center no-repeat;
201
+ }
202
+
203
+
204
+ /* ------------------------------------------------------------
205
+ Utility Navigation
206
+ ------------------------------------------------------------ */
207
+
208
+ .sp-sitemap .sp-utility {
209
+ float: right;
210
+ max-width: 80%;
211
+ margin-top: -30px;
212
+ margin-right: 10px;
213
+ }
214
+ .sp-sitemap .sp-utility li {
215
+ float: left;
216
+ margin-bottom: 10px;
217
+ width: auto;
218
+ }
219
+ .sp-sitemap .sp-utility li a.button {
220
+ margin: 0 10px 0 0;
221
+ padding: 10px 16px;
222
+ display: block;
223
+ font-size: 13px;
224
+ font-weight: bold;
225
+ height: auto;
226
+ line-height: normal;
227
+ position: relative;
228
+ z-index: 10;
229
+ }
230
+ .sp-sitemap .sp-utility li a:link:before,
231
+ .sp-sitemap .sp-utility li a:visited:before {
232
+ margin-bottom: 3px;
233
+ }
234
+
235
+ @media screen and ( max-width: 782px ) {
236
+ .sp-sitemap .sp-primary {
237
+ clear: both;
238
+ padding-top: 50px;
239
+ }
240
+ .sp-sitemap .sp-utility {
241
+ max-width: none;
242
+ }
243
+ }
assets/css/sportspress.css CHANGED
@@ -51,6 +51,10 @@
51
  content: "\f140";
52
  position: absolute;
53
  }
 
 
 
 
54
 
55
  /* Pagination */
56
  .sp-paginated-table {
@@ -105,6 +109,25 @@
105
  max-height: 2em;
106
  }
107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  /* Button */
109
  .sp-button {
110
  border: none;
@@ -126,6 +149,9 @@
126
  .sp-event-performance .sub-out:before {
127
  content: "\f142";
128
  }
 
 
 
129
 
130
  /* Event Calendar */
131
  .sp-event-calendar tbody td, .sp-event-calendar thead th {
@@ -160,6 +186,10 @@
160
  padding: 0 20px;
161
  clear: none;
162
  }
 
 
 
 
163
  .sp-event-blocks .team-logo {
164
  width: 20%;
165
  height: auto;
51
  content: "\f140";
52
  position: absolute;
53
  }
54
+ .sp-data-table .data-number,
55
+ .sp-data-table .data-rank {
56
+ width: 1px;
57
+ }
58
 
59
  /* Pagination */
60
  .sp-paginated-table {
109
  max-height: 2em;
110
  }
111
 
112
+ /* Player List */
113
+ .sp-player-list td {
114
+ line-height: 2em;
115
+ }
116
+ .sp-player-list .data-name .player-photo {
117
+ width: 2em;
118
+ height: 2em;
119
+ margin-right: 0.25em;
120
+ display: block;
121
+ float: left;
122
+ text-align: center;
123
+ }
124
+ .sp-player-list .data-name .player-photo img {
125
+ width: auto;
126
+ height: auto;
127
+ max-width: 2em;
128
+ max-height: 2em;
129
+ }
130
+
131
  /* Button */
132
  .sp-button {
133
  border: none;
149
  .sp-event-performance .sub-out:before {
150
  content: "\f142";
151
  }
152
+ .sp-event-performance .sp-performance-icons {
153
+ width: 25%;
154
+ }
155
 
156
  /* Event Calendar */
157
  .sp-event-calendar tbody td, .sp-event-calendar thead th {
186
  padding: 0 20px;
187
  clear: none;
188
  }
189
+ .sp-event-blocks .event-league,
190
+ .sp-event-blocks .event-season {
191
+ text-align: center;
192
+ }
193
  .sp-event-blocks .team-logo {
194
  width: 20%;
195
  height: auto;
assets/fonts/sportspress.eot CHANGED
Binary file
assets/fonts/sportspress.svg CHANGED
@@ -7,19 +7,23 @@
7
  <font-face units-per-em="512" ascent="480" descent="-32" />
8
  <missing-glyph horiz-adv-x="512" />
9
  <glyph unicode="&#x20;" d="" horiz-adv-x="256" />
10
- <glyph unicode="&#xf111;" d="M76.8 102.4h102.4v204.8h-102.4v-204.8zM204.8 102.4h102.4v307.2h-102.4v-307.2zM332.8 307.2v-204.8h102.4v204.8h-102.4z" />
11
  <glyph unicode="&#xf145;" d="M384 435.2h-51.2v-51.2h51.2v51.2zM435.2 435.2h-25.6v-76.8h-102.4v76.8h-102.4v-76.8h-102.4v76.8h-25.6c-14.16 0-25.6-11.44-25.6-25.6v-358.4c0-14.16 11.44-25.6 25.6-25.6h358.4c14.16 0 25.6 11.44 25.6 25.6v358.4c0 14.16-11.44 25.6-25.6 25.6zM409.6 76.8h-307.2v230.4h307.2v-230.4zM179.2 435.2h-51.2v-51.2h51.2v51.2zM281.6 256h-51.2v-51.2h51.2v51.2zM358.4 256h-51.2v-51.2h51.2v51.2zM204.8 179.2h-51.2v-51.2h51.2v51.2zM204.8 256h-51.2v-51.2h51.2v51.2zM281.6 179.2h-51.2v-51.2h51.2v51.2zM358.4 179.2h-51.2v-51.2h51.2v51.2z" />
 
12
  <glyph unicode="&#xf163;" d="M153.6 332.8h51.2v-51.2h-51.2v51.2zM153.6 256h51.2v-51.2h-51.2v51.2zM153.6 179.2h51.2v-51.2h-51.2v51.2zM256 179.2h102.4v-51.2h-102.4v51.2zM435.2 435.2h-358.4c-14.16 0-25.6-11.44-25.6-25.6v-358.4c0-14.16 11.44-25.6 25.6-25.6h358.4c14.16 0 25.6 11.44 25.6 25.6v358.4c0 14.16-11.44 25.6-25.6 25.6zM409.6 76.8h-307.2v307.2h307.2v-307.2zM256 256h102.4v-51.2h-102.4v51.2zM256 332.8h102.4v-51.2h-102.4v51.2z" />
13
  <glyph unicode="&#xf164;" d="M153.6 179.2h204.8v-51.2h-204.8v51.2zM153.6 256h204.8v-51.2h-204.8v51.2zM435.2 435.2h-358.4c-14.16 0-25.6-11.44-25.6-25.6v-358.4c0-14.16 11.44-25.6 25.6-25.6h358.4c14.16 0 25.6 11.44 25.6 25.6v358.4c0 14.16-11.44 25.6-25.6 25.6zM409.6 76.8h-307.2v307.2h307.2v-307.2zM153.6 332.8h204.8v-51.2h-204.8v51.2z" />
14
- <glyph unicode="&#xf185;" d="M76.8 51.2l51.2 51.2 51.2-51.2v256h-102.4v-256zM204.8 51.2l51.2 51.2 51.2-51.2v358.4h-102.4v-358.4zM332.8 307.2v-256l51.2 51.2 51.2-51.2v256h-102.4z" />
15
- <glyph unicode="&#xf228;" d="M296 256.4c6.88-15.68 10.8-32.96 10.8-51.2 0-70.72-57.28-128-128-128s-128 57.28-128 128c0 31.12 11.6 59.28 30.080 81.52-17.68 8.080-30.080 25.84-30.080 46.48 0 28.24 22.96 51.2 51.2 51.2s51.2-22.96 51.2-51.2c0-0.88-0.24-1.76-0.24-2.64 8.32 1.68 17.040 2.64 25.84 2.64h281.6v-76.8h-164.4zM102 358.8c-14.16 0-25.6-11.44-25.6-25.6s11.44-25.6 25.6-25.6 25.6 11.44 25.6 25.6-11.44 25.6-25.6 25.6z" />
16
- <glyph unicode="&#xf307;" d="M459.6 308.4h-76.8v-179.2h-256v179.2h-76.8v102.4h132.4c10.56-29.84 38.96-51.2 72.4-51.2s61.84 21.36 72.4 51.2h132.4v-102.4zM382.8 103.6v-51.2h-256v51.2h256z" />
17
- <glyph unicode="&#xf313;" d="M435.2 332.8h-0.8l0.8-177.6v-1.6c0-6.96-2.56-12.96-7.6-18s-11.040-7.6-18-7.6h-307.2c-7.2 0-13.28 2.56-18.24 7.6s-7.36 11.040-7.36 18v1.6l0.8 177.6h-0.8c-7.2 0-13.28 2.48-18.24 7.36s-7.36 11.040-7.36 18.24 2.48 13.28 7.36 18.24 10.96 7.36 18.080 7.36 13.12-2.48 18.24-7.36 7.52-11.040 7.52-18.24c0-8.8-3.6-15.76-10.8-20.8l87.6-124 66.4 147.2c-4.56 1.84-8.16 4.96-11.040 9.2s-4.16 8.96-4.16 14c0 7.2 2.48 13.28 7.36 18.24s10.96 7.36 18 7.36c7.040 0 13.12-2.48 18.24-7.36s7.6-11.040 7.6-18.24c0-5.040-1.44-9.76-4.16-14s-6.48-7.36-11.040-9.2l66.4-147.2 87.6 124c-7.2 5.040-10.8 12-10.8 20.8 0 7.2 2.48 13.28 7.36 18.24s10.96 7.36 18 7.36 13.12-2.48 18.24-7.36 7.6-11.040 7.6-18.24-2.56-13.28-7.6-18.24-11.040-7.36-18-7.36zM76.8 102.4h358.4c6.96 0 12.96-2.48 18-7.36s7.6-10.96 7.6-18-2.56-13.12-7.6-18.24-11.040-7.6-18-7.6h-358.4c-6.96 0-12.96 2.56-18 7.6s-7.6 11.12-7.6 18.16 2.48 13.040 7.36 18 11.040 7.44 18.24 7.44z" />
18
- <glyph unicode="&#xf325;" d="M358 259.2v-3.2c0-47.68-32.64-87.84-76.8-99.2v-41.6c0-21.2 17.2-38.4 38.4-38.4h38.4v-25.6h-204.8v25.6h38.4c21.2 0 38.4 17.2 38.4 38.4v41.6c-44.16 11.36-76.8 51.44-76.8 99.2v3.2c-44.16 11.36-76.8 51.44-76.8 99.2v25.6h76.8v25.6h204.8v-25.6h76.8v-25.6c0-47.68-32.64-87.84-76.8-99.2zM153.2 358.4h-51.2c0-33.44 21.36-61.76 51.2-72.32v72.32zM358 358.4v-72.32c29.84 10.56 51.2 38.88 51.2 72.32h-51.2z" />
19
- <glyph unicode="&#xf328;" d="M324 168.286q-10.572-34.572-39.428-55.714t-65.143-21.143-65.143 21.143-39.428 55.714q-2.285 7.143 1.143 13.857t10.857 9q7.143 2.286 13.857-1.143t9-10.857q7.143-22.857 26.428-37t43.286-14.143 43.286 14.143 26.428 37q2.286 7.428 9.143 10.857t14 1.143 10.572-9 1.143-13.857zM182.857 292.572q0-15.143-10.714-25.857t-25.857-10.714-25.857 10.714-10.715 25.857 10.715 25.857 25.857 10.714 25.857-10.714 10.714-25.857zM329.143 292.572q0-15.143-10.714-25.857t-25.857-10.714-25.857 10.714-10.714 25.857 10.714 25.857 25.857 10.714 25.857-10.714 10.714-25.857zM402.286 219.429q0 37.143-14.572 71t-39 58.285-58.286 39-71 14.572-71-14.572-58.285-39-39-58.285-14.572-71 14.572-71 39-58.286 58.285-39 71-14.572 71 14.572 58.286 39 39 58.286 14.572 71zM438.857 219.429q0-59.714-29.428-110.143t-79.857-79.857-110.143-29.428-110.143 29.428-79.857 79.857-29.428 110.143 29.428 110.143 79.857 79.857 110.143 29.428 110.143-29.428 79.857-79.857 29.428-110.143z" horiz-adv-x="439" />
20
- <glyph unicode="&#xf334;" d="M425.76 154.48c-6.16-15.76-14-29.84-23.2-42s-20.24-24.080-33.040-35.68c-12.8-11.52-24.56-21.2-35.36-28.88-10.88-7.6-22.080-14.88-33.84-21.68-11.84-6.8-20.16-11.44-25.12-13.92-4.96-2.4-8.96-4.24-11.92-5.52-2.24-1.2-4.64-1.68-7.28-1.68s-5.040 0.64-7.28 1.68c-3.040 1.28-6.88 3.12-11.92 5.52s-13.36 7.040-25.12 13.92c-11.76 6.8-23.040 14-33.84 21.68-10.88 7.68-22.56 17.28-35.36 28.88-12.8 11.52-23.84 23.36-33.040 35.68s-16.96 26.24-23.2 42c-6.32 15.76-9.44 31.76-9.44 47.76v215.040c0 4.8 1.68 9.12 5.28 12.64s7.76 5.28 12.64 5.28h322.56c4.8 0 9.12-1.68 12.64-5.28s5.28-7.76 5.28-12.64v-215.040c0-16-3.2-32-9.44-47.76zM384 384h-256v-181.92c0-33.36 22.4-67.52 67.12-102.32 17.92-14 38.24-27.040 60.88-38.96v0 0 0 0c22.64 11.92 42.96 24.96 60.88 38.96 44.72 34.88 67.12 68.96 67.12 102.32v181.92zM304.72 122.8c-14.32-11.6-30.56-22.4-48.72-32.24v0 0 267.68h102.4v-150.72c0-27.6-17.92-55.84-53.68-84.72z" />
21
- <glyph unicode="&#xf469;" d="M256 465.92c-130.073 0-235.52-105.472-235.52-235.52 0-130.073 105.447-235.52 235.52-235.52s235.52 105.447 235.52 235.52c0 130.074-105.447 235.52-235.52 235.52zM256 46.080c-101.811 0-184.32 82.534-184.32 184.32s82.509 184.32 184.32 184.32 184.32-82.534 184.32-184.32-82.509-184.32-184.32-184.32zM273.92 363.52h-35.84v-140.544l87.168-87.168 25.344 25.344-76.672 76.672z" />
22
- <glyph unicode="&#xf481;" d="M376.32 25.6h-238.080c-20.48 0-35.84 15.36-35.84 35.84v312.32c0 10.24 5.12 20.48 12.8 28.16l28.16-66.56h225.28l28.16 69.12c7.68-5.12 12.8-15.36 12.8-28.16v-312.32c2.56-23.040-15.36-38.4-33.28-38.4zM358.4 307.2h-204.8v-230.4h204.8v230.4zM332.8 230.4h-153.6v25.6h153.6v-25.6zM332.8 179.2h-153.6v25.6h153.6v-25.6zM332.8 128h-153.6v25.6h153.6v-25.6zM163.84 358.4l-23.040 51.2h56.32l7.68 20.48 10.24 30.72h81.92l10.24-30.72 10.24-20.48h56.32l-23.040-51.2h-186.88z" />
23
- <glyph unicode="&#xf484;" d="M307.2 358.4v76.8q0 10.496-7.552 18.048t-18.048 7.552h-51.2q-10.496 0-18.048-7.552t-7.552-18.048v-76.8q0-10.496 7.552-18.048t18.048-7.552h51.2q10.496 0 18.048 7.552t7.552 18.048zM256 435.2q10.496 0 18.048-7.552t7.552-18.048-7.552-18.048-18.048-7.552-18.048 7.552-7.552 18.048 7.552 18.048 18.048 7.552zM460.8 102.4v204.8q0 20.992-15.104 36.096t-36.096 15.104h-76.8v-8.448q0-17.664-12.544-30.208t-30.208-12.544h-68.096q-17.664 0-30.208 12.544t-12.544 30.208v8.448h-76.8q-20.992 0-36.096-15.104t-15.104-36.096v-204.8q0-20.992 15.104-36.096t36.096-15.104h307.2q20.992 0 36.096 15.104t15.104 36.096zM435.2 256v-153.6h-358.4v153.6h358.4zM230.4 204.8q0 10.496-3.712 18.048t-9.088 7.552-9.088-7.552-3.712-18.048 3.712-18.048 9.088-7.552 9.088 7.552 3.712 18.048zM307.2 204.8q0 10.496-3.712 18.048t-9.088 7.552-9.088-7.552-3.712-18.048 3.712-18.048 9.088-7.552 9.088 7.552 3.712 18.048zM154.624 173.824q38.656-20.224 101.376-20.224t101.376 20.224q-4.096-19.456-33.024-32.64t-68.352-13.184-68.352 13.184-33.024 32.64z" />
24
- <glyph unicode="&#xf488;" d="M430.8 56.56l-116.8 97.2h-160.4v-76.8c0-7.2-2.56-13.28-7.6-18.24s-11.040-7.36-18-7.36h-25.6c-7.2 0-13.28 2.48-18.24 7.36s-7.36 11.040-7.36 18.24v76.8c-7.2 0-13.28 2.48-18.24 7.36s-7.36 11.040-7.36 18.24v128c0 7.2 2.48 13.28 7.36 18.24s11.040 7.36 18.24 7.36h237.2l116.8 97.2c2.96 3.2 6.88 4.88 11.84 4.96s9.2-0.88 12.8-3.040 5.44-4.8 5.44-8v-362c0-3.2-1.76-5.84-5.44-8s-7.84-3.040-12.8-2.8c-4.96 0.4-8.88 2.080-11.84 5.28zM243.2 332.96h-51.2c3.44 0 6.48-1.28 8.96-3.84s3.84-5.52 3.84-8.96v-153.6c0-3.44-1.28-6.48-3.84-8.96s-5.52-3.84-8.96-3.84h51.2c-3.76 0-6.8 1.28-9.2 3.84s-3.6 5.52-3.6 8.96v153.6c0 3.44 1.2 6.48 3.6 8.96s5.44 3.84 9.2 3.84z" />
 
 
 
25
  </font></defs></svg>
7
  <font-face units-per-em="512" ascent="480" descent="-32" />
8
  <missing-glyph horiz-adv-x="512" />
9
  <glyph unicode="&#x20;" d="" horiz-adv-x="256" />
10
+ <glyph unicode="&#xf111;" d="M384 286v149.2h25.6c14.16 0 25.6-11.44 25.6-25.6v-51.2c0-33.44-21.36-61.84-51.2-72.4zM153.6 51.52h204.8v-51.52h-204.8v51.52zM179.2 76.8l25.6 25.6h25.6v25.6l25.6 25.6 25.6-25.6v-25.6h25.6l25.6-25.6h-153.6zM256 179.2c-56.56 0-102.4 45.84-102.4 102.4v179.2h204.8v-179.2c0-56.56-45.84-102.4-102.4-102.4zM76.8 358.4v51.2c0 14.16 11.44 25.6 25.6 25.6h25.6v-149.2c-29.84 10.56-51.2 38.96-51.2 72.4z" />
11
  <glyph unicode="&#xf145;" d="M384 435.2h-51.2v-51.2h51.2v51.2zM435.2 435.2h-25.6v-76.8h-102.4v76.8h-102.4v-76.8h-102.4v76.8h-25.6c-14.16 0-25.6-11.44-25.6-25.6v-358.4c0-14.16 11.44-25.6 25.6-25.6h358.4c14.16 0 25.6 11.44 25.6 25.6v358.4c0 14.16-11.44 25.6-25.6 25.6zM409.6 76.8h-307.2v230.4h307.2v-230.4zM179.2 435.2h-51.2v-51.2h51.2v51.2zM281.6 256h-51.2v-51.2h51.2v51.2zM358.4 256h-51.2v-51.2h51.2v51.2zM204.8 179.2h-51.2v-51.2h51.2v51.2zM204.8 256h-51.2v-51.2h51.2v51.2zM281.6 179.2h-51.2v-51.2h51.2v51.2zM358.4 179.2h-51.2v-51.2h51.2v51.2z" />
12
+ <glyph unicode="&#xf147;" d="M256 426.667c-92.805 0-185.597-66.375-256-199.111 70.403-132.736 163.195-199.111 256-199.111s185.597 66.375 256 199.111c-70.403 132.736-163.195 199.111-256 199.111zM256 85.334c-67.486 0-135.945 51.43-190.667 142.222 54.722 90.792 123.18 142.222 190.667 142.222s135.945-51.43 190.667-142.222c-54.722-90.792-123.18-142.222-190.667-142.222zM312.889 227.556c0-31.417-25.472-56.889-56.889-56.889s-56.889 25.472-56.889 56.889 25.472 56.889 56.889 56.889 56.889-25.472 56.889-56.889z" />
13
  <glyph unicode="&#xf163;" d="M153.6 332.8h51.2v-51.2h-51.2v51.2zM153.6 256h51.2v-51.2h-51.2v51.2zM153.6 179.2h51.2v-51.2h-51.2v51.2zM256 179.2h102.4v-51.2h-102.4v51.2zM435.2 435.2h-358.4c-14.16 0-25.6-11.44-25.6-25.6v-358.4c0-14.16 11.44-25.6 25.6-25.6h358.4c14.16 0 25.6 11.44 25.6 25.6v358.4c0 14.16-11.44 25.6-25.6 25.6zM409.6 76.8h-307.2v307.2h307.2v-307.2zM256 256h102.4v-51.2h-102.4v51.2zM256 332.8h102.4v-51.2h-102.4v51.2z" />
14
  <glyph unicode="&#xf164;" d="M153.6 179.2h204.8v-51.2h-204.8v51.2zM153.6 256h204.8v-51.2h-204.8v51.2zM435.2 435.2h-358.4c-14.16 0-25.6-11.44-25.6-25.6v-358.4c0-14.16 11.44-25.6 25.6-25.6h358.4c14.16 0 25.6 11.44 25.6 25.6v358.4c0 14.16-11.44 25.6-25.6 25.6zM409.6 76.8h-307.2v307.2h307.2v-307.2zM153.6 332.8h204.8v-51.2h-204.8v51.2z" />
15
+ <glyph unicode="&#xf180;" d="M434.8 26h-358.4c-14.16 0-25.6 11.44-25.6 25.6v358.4c0 14.16 11.44 25.6 25.6 25.6h358.4c14.16 0 25.6-11.44 25.6-25.6v-358.4c0-14.16-11.44-25.6-25.6-25.6zM409.2 384.4h-307.2v-307.2h307.2v307.2zM204.4 282h-51.2v51.2h51.2v-51.2zM204.4 205.2h-51.2v51.2h51.2v-51.2zM204.4 128.4h-51.2v51.2h51.2v-51.2zM281.2 128.4h-51.2v51.2h51.2v-51.2zM358 282h-51.2v51.2h51.2v-51.2zM358 205.2h-51.2v51.2h51.2v-51.2zM358 128.4h-51.2v51.2h51.2v-51.2zM230 333.2h51.2v-51.2h-51.2v51.2z" />
16
+ <glyph unicode="&#xf182;" d="M288 256h64v-160h-64zM480 384h-128v64c0 17.688-14.312 32-32 32h-128c-17.688 0-32-14.312-32-32v-64h-128c-17.688 0-32-14.312-32-32v-32h32v-320c0-17.688 14.312-32 32-32h384c17.688 0 32 14.312 32 32v320h32v32c0 17.688-14.312 32-32 32zM224 416h64v-32h-64v32zM416 32h-320v288h320v-288zM160 256h64v-160h-64z" />
17
+ <glyph unicode="&#xf185;" d="M76.8 102.4h102.4v204.8h-102.4v-204.8zM204.8 102.4h102.4v307.2h-102.4v-307.2zM332.8 307.2v-204.8h102.4v204.8h-102.4z" />
18
+ <glyph unicode="&#xf227;" d="M301.84 256c3.44-12.24 5.36-25.12 5.36-38.4 0-77.76-63.040-140.8-140.8-140.8s-140.8 63.040-140.8 140.8 63.040 140.8 140.8 140.8h89.6v-25.6c0-14.16 11.44-25.6 25.6-25.6s25.6 11.44 25.6 25.6v25.6h179.2v-102.4h-184.56z" />
19
+ <glyph unicode="&#xf307;" d="M459.6 307.2h-76.8v-179.2h-256v179.2h-76.8v102.4h132.4c10.56-29.84 38.96-51.2 72.4-51.2s61.84 21.36 72.4 51.2h132.4v-102.4zM382.8 102.4v-51.2h-256v51.2h256z" />
20
+ <glyph unicode="&#xf313;" d="M435.2 332.8h-0.8l0.8-177.6v-1.6c0-6.96-2.56-12.96-7.6-18s-11.040-7.6-18-7.6h-307.2c-7.2 0-13.28 2.56-18.24 7.6s-7.36 11.040-7.36 18v1.6l0.8 177.6h-0.8c-7.2 0-13.28 2.48-18.24 7.36s-7.36 11.040-7.36 18.24 2.48 13.28 7.36 18.24 10.96 7.36 18.080 7.36 13.12-2.48 18.24-7.36 7.52-11.040 7.52-18.24c0-8.8-3.6-15.76-10.8-20.8l87.6-124 66.4 147.2c-4.56 1.84-8.16 4.96-11.040 9.2s-4.16 8.96-4.16 14c0 7.2 2.48 13.28 7.36 18.24s10.96 7.36 18 7.36 13.12-2.48 18.24-7.36 7.6-11.040 7.6-18.24c0-5.040-1.44-9.76-4.16-14s-6.48-7.36-11.040-9.2l66.4-147.2 87.6 124c-7.2 5.040-10.8 12-10.8 20.8 0 7.2 2.48 13.28 7.36 18.24s10.96 7.36 18 7.36 13.12-2.48 18.24-7.36 7.6-11.040 7.6-18.24-2.56-13.28-7.6-18.24-11.040-7.36-18-7.36zM76.8 102.4h358.4c6.96 0 12.96-2.48 18-7.36s7.6-10.96 7.6-18-2.56-13.12-7.6-18.24-11.040-7.6-18-7.6h-358.4c-6.96 0-12.96 2.56-18 7.6s-7.6 11.12-7.6 18.16 2.48 13.040 7.36 18 11.040 7.44 18.24 7.44z" />
21
+ <glyph unicode="&#xf325;" d="M434.8 154h-102.4c-14.16 0-25.6 11.44-25.6 25.6v25.6h-25.6v-76.8c0-14.16-11.44-25.6-25.6-25.6h-51.2v-25.6c0-14.16-11.44-25.6-25.6-25.6h-102.4c-14.16 0-25.6 11.44-25.6 25.6v102.4c0 14.16 11.44 25.6 25.6 25.6h102.4c14.16 0 25.6-11.44 25.6-25.6v-25.6h25.6v153.6h-25.6v-25.6c0-14.16-11.44-25.6-25.6-25.6h-102.4c-14.16 0-25.6 11.44-25.6 25.6v102.4c0 14.16 11.44 25.6 25.6 25.6h102.4c14.16 0 25.6-11.44 25.6-25.6v-25.6h51.2c14.16 0 25.6-11.44 25.6-25.6v-76.8h25.6v25.6c0 14.16 11.44 25.6 25.6 25.6h102.4c14.16 0 25.6-11.44 25.6-25.6v-102.4c0-14.16-11.44-25.6-25.6-25.6z" />
22
+ <glyph unicode="&#xf328;" d="M324 179.28c-7.040-23.040-20.16-41.6-39.44-55.68-19.2-14.080-40.96-21.12-65.12-21.12s-45.92 7.040-65.12 21.12c-19.2 14.080-32.4 32.64-39.44 55.68-1.52 4.8-1.12 9.36 1.12 13.84 2.32 4.48 5.92 7.44 10.88 8.96 4.8 1.52 9.36 1.12 13.84-1.12 4.48-2.32 7.44-5.92 8.96-10.88 4.8-15.2 13.6-27.6 26.4-36.96 12.88-9.44 27.28-14.16 43.28-14.16s30.4 4.72 43.28 14.16c12.88 9.44 21.68 21.76 26.4 36.96 1.52 4.96 4.56 8.56 9.12 10.88s9.2 2.64 14 1.12c4.8-1.52 8.32-4.56 10.56-8.96 2.4-4.48 2.8-9.12 1.28-13.84v0zM182.88 303.52c0-10.080-3.6-18.72-10.72-25.84s-15.76-10.72-25.84-10.72c-10.080 0-18.72 3.6-25.84 10.72s-10.72 15.76-10.72 25.84 3.6 18.72 10.72 25.84c7.12 7.12 15.76 10.72 25.84 10.72s18.72-3.6 25.84-10.72c7.12-7.12 10.72-15.76 10.72-25.84v0zM329.12 303.52c0-10.080-3.6-18.72-10.72-25.84s-15.76-10.72-25.84-10.72c-10.080 0-18.72 3.6-25.84 10.72s-10.72 15.76-10.72 25.84 3.6 18.72 10.72 25.84c7.12 7.12 15.76 10.72 25.84 10.72s18.72-3.6 25.84-10.72c7.2-7.12 10.72-15.76 10.72-25.84v0zM402.32 230.4c0 24.8-4.88 48.4-14.56 70.96s-22.72 42-39.040 58.32-35.68 29.28-58.32 39.040-46.24 14.56-71.040 14.56c-24.8 0-48.4-4.88-71.040-14.56-22.56-9.68-42-22.72-58.32-39.040s-29.12-35.68-38.88-58.32-14.56-46.16-14.56-70.96c0-24.8 4.88-48.4 14.56-71.040s22.72-42 39.040-58.32c16.32-16.32 35.68-29.28 58.32-39.040s46.24-14.56 71.040-14.56 48.4 4.88 71.040 14.56c22.56 9.68 42 22.72 58.32 39.040s29.28 35.68 39.040 58.32c9.52 22.64 14.4 46.32 14.4 71.040v0zM438.88 230.4c0-39.84-9.84-76.56-29.44-110.16s-46.24-60.24-79.84-79.84-70.32-29.44-110.16-29.44-76.56 9.84-110.16 29.44-60.24 46.24-79.84 79.84-29.44 70.32-29.44 110.16 9.84 76.56 29.44 110.16 46.24 60.24 79.84 79.84 70.32 29.44 110.16 29.44 76.48-9.84 110.16-29.44 60.24-46.24 79.84-79.84c19.6-33.6 29.44-70.32 29.44-110.16v0z" horiz-adv-x="439" />
23
+ <glyph unicode="&#xf334;" d="M425.76 154.48c-6.16-15.76-14-29.84-23.2-42s-20.24-24.080-33.040-35.68c-12.8-11.52-24.56-21.2-35.36-28.88-10.88-7.6-22.080-14.88-33.84-21.68-11.84-6.8-20.16-11.44-25.12-13.92-4.96-2.4-8.96-4.24-11.92-5.52-2.24-1.2-4.64-1.68-7.28-1.68s-5.040 0.64-7.28 1.68c-3.040 1.28-6.88 3.12-11.92 5.52s-13.36 7.040-25.12 13.92c-11.76 6.8-23.040 14-33.84 21.68-10.88 7.68-22.56 17.28-35.36 28.88-12.8 11.52-23.84 23.36-33.040 35.68s-16.96 26.24-23.2 42c-6.32 15.76-9.44 31.76-9.44 47.76v215.040c0 4.8 1.68 9.12 5.28 12.64s7.76 5.28 12.64 5.28h322.56c4.8 0 9.12-1.68 12.64-5.28s5.28-7.76 5.28-12.64v-215.040c0-16-3.2-32-9.44-47.76v0zM384 384h-256v-181.92c0-33.36 22.4-67.52 67.12-102.32 17.92-14 38.24-27.040 60.88-38.96v0 0 0 0c22.64 11.92 42.96 24.96 60.88 38.96 44.72 34.88 67.12 68.96 67.12 102.32v181.92zM304.72 122.8c-14.32-11.6-30.56-22.4-48.72-32.24v0 0 267.68h102.4v-150.72c0-27.6-17.92-55.84-53.68-84.72v0z" />
24
+ <glyph unicode="&#xf335;" d="M256 455.111c-125.681 0-227.555-101.874-227.555-227.555s101.875-227.555 227.555-227.555 227.555 101.875 227.555 227.555-101.875 227.555-227.555 227.555zM85.334 227.556c0 36.82 11.833 70.847 31.736 98.764l237.694-237.694c-27.916-19.903-61.944-31.736-98.764-31.736-94.111 0-170.667 76.555-170.667 170.667zM394.93 128.792l-237.694 237.694c27.917 19.903 61.944 31.736 98.763 31.736 94.111 0 170.667-76.555 170.667-170.667 0-36.82-11.833-70.847-31.736-98.763z" />
25
+ <glyph unicode="&#xf338;" d="M409.6 102.4h-38.4c-3.44 0-6.48 1.28-8.96 3.84s-3.84 5.52-3.84 8.96v128c0 3.44 1.28 6.48 3.84 8.96 2.56 2.56 5.52 3.84 8.96 3.84h12.8c0 39.44-11.040 70.64-32.96 93.6-22 22.96-53.68 34.4-95.040 34.4s-72.96-11.44-95.040-34.4c-22-22.96-32.96-54.16-32.96-93.6h12.8c3.44 0 6.48-1.28 8.96-3.84 2.56-2.56 3.84-5.52 3.84-8.96v-128c0-3.44-1.28-6.48-3.84-8.96s-5.52-3.84-8.96-3.84h-12.8c0-14.16 4.96-26.24 15.040-36.16s22-15.040 36.16-15.040h25.6c0 7.2 2.48 13.28 7.36 18.24 4.96 4.96 11.040 7.36 18.24 7.36h25.6c7.2 0 13.28-2.48 18.24-7.36 4.96-4.96 7.36-10.96 7.36-18s-2.48-13.12-7.36-18.24c-4.96-5.040-11.040-7.6-18.24-7.6h-76.8c-21.36 0-39.44 7.44-54.4 22.4s-22.4 33.040-22.4 54.4c-14.16 0-26.24 7.44-36.16 22.4s-15.040 33.040-15.040 54.4c0 13.84 2.32 26.64 7.040 38.4s10.88 20.96 18.56 27.6v10.8c0 24.24 4.72 47.44 14.24 69.6 9.44 22.16 22.24 41.2 38.24 57.2s35.040 28.72 57.2 38.16 45.28 14.24 69.52 14.24c24.24 0 47.44-4.72 69.6-14.24s41.2-22.24 57.2-38.16 28.72-35.040 38.24-57.2c9.44-22.16 14.24-45.36 14.24-69.6v-10.8c7.76-6.64 13.92-15.84 18.56-27.6s7.040-24.56 7.040-38.4c0-21.36-4.96-39.44-15.040-54.4s-22.080-22.4-36.24-22.4z" />
26
+ <glyph unicode="&#xf469;" d="M256 465.92c-130.080 0-235.52-105.44-235.52-235.52s105.44-235.52 235.52-235.52 235.52 105.44 235.52 235.52c0 130.080-105.44 235.52-235.52 235.52v0zM256 46.080c-101.84 0-184.32 82.56-184.32 184.32s82.48 184.32 184.32 184.32 184.32-82.56 184.32-184.32-82.48-184.32-184.32-184.32v0zM273.92 363.52h-35.84v-140.56l87.2-87.2 25.36 25.36-76.64 76.64v125.76z" />
27
+ <glyph unicode="&#xf481;" d="M376.16 25.6h-238.080c-20.48 0-35.84 15.36-35.84 35.84v312.32c0 10.24 5.12 20.48 12.8 28.16l28.16-66.56h225.28l28.16 69.12c7.68-5.12 12.8-15.36 12.8-28.16v-312.32c2.56-23.040-15.36-38.4-33.28-38.4zM358.24 307.2h-204.8v-230.4h204.8v230.4zM332.64 230.4h-153.6v25.6h153.6v-25.6zM332.64 179.2h-153.6v25.6h153.6v-25.6zM332.64 128h-153.6v25.6h153.6v-25.6zM163.68 358.4l-23.040 51.2h56.32l7.68 20.48 10.24 30.72h81.92l10.24-30.72 10.24-20.48h56.32l-23.040-51.2h-186.88z" />
28
+ <glyph unicode="&#xf488;" d="M430.8 56.56l-116.8 97.2h-160.4v-76.8c0-7.2-2.56-13.28-7.6-18.24s-11.040-7.36-18-7.36h-25.6c-7.2 0-13.28 2.48-18.24 7.36s-7.36 11.040-7.36 18.24v76.8c-7.2 0-13.28 2.48-18.24 7.36s-7.36 11.040-7.36 18.24v128c0 7.2 2.48 13.28 7.36 18.24s11.040 7.36 18.24 7.36h237.2l116.8 97.2c2.96 3.2 6.88 4.88 11.84 4.96s9.2-0.88 12.8-3.040c3.6-2.16 5.44-4.8 5.44-8v-362c0-3.2-1.76-5.84-5.44-8s-7.84-3.040-12.8-2.8c-5.040 0.4-8.88 2.080-11.84 5.28zM243.2 332.96h-51.2c3.44 0 6.48-1.28 8.96-3.84s3.84-5.52 3.84-8.96v-153.6c0-3.44-1.28-6.48-3.84-8.96s-5.52-3.84-8.96-3.84h51.2c-3.76 0-6.8 1.28-9.2 3.84s-3.6 5.52-3.6 8.96v153.6c0 3.44 1.2 6.48 3.6 8.96s5.36 3.84 9.2 3.84v0z" />
29
  </font></defs></svg>
assets/fonts/sportspress.ttf CHANGED
Binary file
assets/fonts/sportspress.woff CHANGED
Binary file
assets/images/slickmap/L1-center.png ADDED
Binary file
assets/images/slickmap/L1-left.png ADDED
Binary file
assets/images/slickmap/L1-right.png ADDED
Binary file
assets/images/slickmap/L3-bottom.png ADDED
Binary file
assets/images/slickmap/L3-center.png ADDED
Binary file
assets/images/slickmap/L3-li-top.png ADDED
Binary file
assets/images/slickmap/L3-ul-top.png ADDED
Binary file
assets/images/slickmap/vertical-line.png ADDED
Binary file
assets/images/welcome/sp-badge.png CHANGED
Binary file
assets/js/admin/editor-lang.php CHANGED
@@ -5,20 +5,19 @@ $strings = 'tinyMCE.addI18n({' . _WP_Editors::$mce_locale . ':{
5
  insert: "' . esc_js( __( 'SportsPress Shortcodes', 'sportspress' ) ) . '",
6
  auto: "' . esc_js( __( 'Auto', 'sportspress' ) ) . '",
7
  manual: "' . esc_js( __( 'Manual', 'sportspress' ) ) . '",
8
- single: "' . esc_js( __( 'Single', 'sportspress' ) ) . '",
9
  select: "' . esc_js( __( 'Select...', 'sportspress' ) ) . '",
10
- countdown: "' . esc_js( __( 'Countdown', 'sportspress' ) ) . '",
11
  event: "' . esc_js( __( 'Event', 'sportspress' ) ) . '",
12
  details: "' . esc_js( __( 'Details', 'sportspress' ) ) . '",
13
  results: "' . esc_js( __( 'Results', 'sportspress' ) ) . '",
 
14
  performance: "' . esc_js( __( 'Performance', 'sportspress' ) ) . '",
15
  calendar: "' . esc_js( __( 'Calendar', 'sportspress' ) ) . '",
 
 
 
16
  list: "' . esc_js( __( 'List', 'sportspress' ) ) . '",
17
  blocks: "' . esc_js( __( 'Blocks', 'sportspress' ) ) . '",
18
- league_table: "' . esc_js( __( 'League Table', 'sportspress' ) ) . '",
19
  player: "' . esc_js( __( 'Player', 'sportspress' ) ) . '",
20
- statistics: "' . esc_js( __( 'Statistics', 'sportspress' ) ) . '",
21
- list: "' . esc_js( __( 'List', 'sportspress' ) ) . '",
22
  gallery: "' . esc_js( __( 'Gallery', 'sportspress' ) ) . '"
23
  }
24
  }})';
5
  insert: "' . esc_js( __( 'SportsPress Shortcodes', 'sportspress' ) ) . '",
6
  auto: "' . esc_js( __( 'Auto', 'sportspress' ) ) . '",
7
  manual: "' . esc_js( __( 'Manual', 'sportspress' ) ) . '",
 
8
  select: "' . esc_js( __( 'Select...', 'sportspress' ) ) . '",
 
9
  event: "' . esc_js( __( 'Event', 'sportspress' ) ) . '",
10
  details: "' . esc_js( __( 'Details', 'sportspress' ) ) . '",
11
  results: "' . esc_js( __( 'Results', 'sportspress' ) ) . '",
12
+ countdown: "' . esc_js( __( 'Countdown', 'sportspress' ) ) . '",
13
  performance: "' . esc_js( __( 'Performance', 'sportspress' ) ) . '",
14
  calendar: "' . esc_js( __( 'Calendar', 'sportspress' ) ) . '",
15
+ statistics: "' . esc_js( __( 'Statistics', 'sportspress' ) ) . '",
16
+ league_table: "' . esc_js( __( 'League Table', 'sportspress' ) ) . '",
17
+ player_list: "' . esc_js( __( 'Player List', 'sportspress' ) ) . '",
18
  list: "' . esc_js( __( 'List', 'sportspress' ) ) . '",
19
  blocks: "' . esc_js( __( 'Blocks', 'sportspress' ) ) . '",
 
20
  player: "' . esc_js( __( 'Player', 'sportspress' ) ) . '",
 
 
21
  gallery: "' . esc_js( __( 'Gallery', 'sportspress' ) ) . '"
22
  }
23
  }})';
assets/js/admin/editor.js CHANGED
@@ -12,39 +12,34 @@
12
  text: ed.getLang( 'sportspress.event' ),
13
  menu: [
14
  {
15
- text: ed.getLang( 'sportspress.single' ),
16
- menu: [
17
- {
18
- text: ed.getLang( 'sportspress.details' ),
19
- onclick: function() {
20
- // triggers the thickbox
21
- var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
22
- W = W - 80;
23
- H = H - 84;
24
- tb_show( ed.getLang( 'sportspress.event' ) + ' - ' + ed.getLang( 'sportspress.details' ), 'admin-ajax.php?action=sportspress_event_details_shortcode&width=' + W + '&height=' + H );
25
- }
26
- },
27
- {
28
- text: ed.getLang( 'sportspress.results' ),
29
- onclick: function() {
30
- // triggers the thickbox
31
- var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
32
- W = W - 80;
33
- H = H - 84;
34
- tb_show( ed.getLang( 'sportspress.event' ) + ' - ' + ed.getLang( 'sportspress.results' ), 'admin-ajax.php?action=sportspress_event_results_shortcode&width=' + W + '&height=' + H );
35
- }
36
- },
37
- {
38
- text: ed.getLang( 'sportspress.performance' ),
39
- onclick: function() {
40
- // triggers the thickbox
41
- var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
42
- W = W - 80;
43
- H = H - 84;
44
- tb_show( ed.getLang( 'sportspress.event' ) + ' - ' + ed.getLang( 'sportspress.performance' ), 'admin-ajax.php?action=sportspress_event_performance_shortcode&width=' + W + '&height=' + H );
45
- }
46
- }
47
- ]
48
  },
49
  {
50
  text: ed.getLang( 'sportspress.countdown' ),
@@ -55,7 +50,12 @@
55
  H = H - 84;
56
  tb_show( ed.getLang( 'sportspress.event' ) + ' - ' + ed.getLang( 'sportspress.countdown' ), 'admin-ajax.php?action=sportspress_countdown_shortcode&width=' + W + '&height=' + H );
57
  }
58
- },
 
 
 
 
 
59
  {
60
  text: ed.getLang( 'sportspress.calendar' ),
61
  onclick : function() {
@@ -63,7 +63,7 @@
63
  var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
64
  W = W - 80;
65
  H = H - 84;
66
- tb_show( ed.getLang( 'sportspress.event' ) + ' - ' + ed.getLang( 'sportspress.calendar' ), 'admin-ajax.php?action=sportspress_event_calendar_shortcode&width=' + W + '&height=' + H );
67
  }
68
  },
69
  {
@@ -73,7 +73,7 @@
73
  var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
74
  W = W - 80;
75
  H = H - 84;
76
- tb_show( ed.getLang( 'sportspress.event' ) + ' - ' + ed.getLang( 'sportspress.list' ), 'admin-ajax.php?action=sportspress_event_list_shortcode&width=' + W + '&height=' + H );
77
  }
78
  },
79
  {
@@ -83,39 +83,49 @@
83
  var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
84
  W = W - 80;
85
  H = H - 84;
86
- tb_show( ed.getLang( 'sportspress.event' ) + ' - ' + ed.getLang( 'sportspress.blocks' ), 'admin-ajax.php?action=sportspress_event_blocks_shortcode&width=' + W + '&height=' + H );
87
  }
88
  }
89
  ]
90
  },
 
 
 
 
 
 
 
 
 
 
91
  {
92
  text: ed.getLang( 'sportspress.player' ),
93
  menu: [
94
  {
95
- text: ed.getLang( 'sportspress.single' ),
96
- menu: [
97
- {
98
- text: ed.getLang( 'sportspress.details' ),
99
- onclick: function() {
100
- // triggers the thickbox
101
- var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
102
- W = W - 80;
103
- H = H - 84;
104
- tb_show( ed.getLang( 'sportspress.player' ) + ' - ' + ed.getLang( 'sportspress.details' ), 'admin-ajax.php?action=sportspress_player_details_shortcode&width=' + W + '&height=' + H );
105
- }
106
- },
107
- {
108
- text: ed.getLang( 'sportspress.statistics' ),
109
- onclick: function() {
110
- // triggers the thickbox
111
- var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
112
- W = W - 80;
113
- H = H - 84;
114
- tb_show( ed.getLang( 'sportspress.player' ) + ' - ' + ed.getLang( 'sportspress.statistics' ), 'admin-ajax.php?action=sportspress_player_statistics_shortcode&width=' + W + '&height=' + H );
115
- }
116
- }
117
- ]
118
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  {
120
  text: ed.getLang( 'sportspress.list' ),
121
  onclick : function() {
@@ -123,7 +133,7 @@
123
  var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
124
  W = W - 80;
125
  H = H - 84;
126
- tb_show( ed.getLang( 'sportspress.player' ) + ' - ' + ed.getLang( 'sportspress.list' ), 'admin-ajax.php?action=sportspress_player_list_shortcode&width=' + W + '&height=' + H );
127
  }
128
  },
129
  {
@@ -133,20 +143,10 @@
133
  var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
134
  W = W - 80;
135
  H = H - 84;
136
- tb_show( ed.getLang( 'sportspress.player' ) + ' - ' + ed.getLang( 'sportspress.gallery' ), 'admin-ajax.php?action=sportspress_player_gallery_shortcode&width=' + W + '&height=' + H );
137
  }
138
  }
139
  ]
140
- },
141
- {
142
- text: ed.getLang( 'sportspress.league_table' ),
143
- onclick : function() {
144
- // triggers the thickbox
145
- var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
146
- W = W - 80;
147
- H = H - 84;
148
- tb_show( ed.getLang( 'sportspress.league_table' ), 'admin-ajax.php?action=sportspress_league_table_shortcode&width=' + W + '&height=' + H );
149
- }
150
  }
151
  ]
152
  });
12
  text: ed.getLang( 'sportspress.event' ),
13
  menu: [
14
  {
15
+ text: ed.getLang( 'sportspress.details' ),
16
+ onclick: function() {
17
+ // triggers the thickbox
18
+ var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
19
+ W = W - 80;
20
+ H = H - 84;
21
+ tb_show( ed.getLang( 'sportspress.event' ) + ' - ' + ed.getLang( 'sportspress.details' ), 'admin-ajax.php?action=sportspress_event_details_shortcode&width=' + W + '&height=' + H );
22
+ }
23
+ },
24
+ {
25
+ text: ed.getLang( 'sportspress.results' ),
26
+ onclick: function() {
27
+ // triggers the thickbox
28
+ var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
29
+ W = W - 80;
30
+ H = H - 84;
31
+ tb_show( ed.getLang( 'sportspress.event' ) + ' - ' + ed.getLang( 'sportspress.results' ), 'admin-ajax.php?action=sportspress_event_results_shortcode&width=' + W + '&height=' + H );
32
+ }
33
+ },
34
+ {
35
+ text: ed.getLang( 'sportspress.performance' ),
36
+ onclick: function() {
37
+ // triggers the thickbox
38
+ var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
39
+ W = W - 80;
40
+ H = H - 84;
41
+ tb_show( ed.getLang( 'sportspress.event' ) + ' - ' + ed.getLang( 'sportspress.performance' ), 'admin-ajax.php?action=sportspress_event_performance_shortcode&width=' + W + '&height=' + H );
42
+ }
 
 
 
 
 
43
  },
44
  {
45
  text: ed.getLang( 'sportspress.countdown' ),
50
  H = H - 84;
51
  tb_show( ed.getLang( 'sportspress.event' ) + ' - ' + ed.getLang( 'sportspress.countdown' ), 'admin-ajax.php?action=sportspress_countdown_shortcode&width=' + W + '&height=' + H );
52
  }
53
+ }
54
+ ]
55
+ },
56
+ {
57
+ text: ed.getLang( 'sportspress.calendar' ),
58
+ menu: [
59
  {
60
  text: ed.getLang( 'sportspress.calendar' ),
61
  onclick : function() {
63
  var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
64
  W = W - 80;
65
  H = H - 84;
66
+ tb_show( ed.getLang( 'sportspress.calendar' ) + ' - ' + ed.getLang( 'sportspress.calendar' ), 'admin-ajax.php?action=sportspress_event_calendar_shortcode&width=' + W + '&height=' + H );
67
  }
68
  },
69
  {
73
  var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
74
  W = W - 80;
75
  H = H - 84;
76
+ tb_show( ed.getLang( 'sportspress.calendar' ) + ' - ' + ed.getLang( 'sportspress.list' ), 'admin-ajax.php?action=sportspress_event_list_shortcode&width=' + W + '&height=' + H );
77
  }
78
  },
79
  {
83
  var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
84
  W = W - 80;
85
  H = H - 84;
86
+ tb_show( ed.getLang( 'sportspress.calendar' ) + ' - ' + ed.getLang( 'sportspress.blocks' ), 'admin-ajax.php?action=sportspress_event_blocks_shortcode&width=' + W + '&height=' + H );
87
  }
88
  }
89
  ]
90
  },
91
+ {
92
+ text: ed.getLang( 'sportspress.league_table' ),
93
+ onclick : function() {
94
+ // triggers the thickbox
95
+ var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
96
+ W = W - 80;
97
+ H = H - 84;
98
+ tb_show( ed.getLang( 'sportspress.league_table' ), 'admin-ajax.php?action=sportspress_league_table_shortcode&width=' + W + '&height=' + H );
99
+ }
100
+ },
101
  {
102
  text: ed.getLang( 'sportspress.player' ),
103
  menu: [
104
  {
105
+ text: ed.getLang( 'sportspress.details' ),
106
+ onclick: function() {
107
+ // triggers the thickbox
108
+ var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
109
+ W = W - 80;
110
+ H = H - 84;
111
+ tb_show( ed.getLang( 'sportspress.player' ) + ' - ' + ed.getLang( 'sportspress.details' ), 'admin-ajax.php?action=sportspress_player_details_shortcode&width=' + W + '&height=' + H );
112
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  },
114
+ {
115
+ text: ed.getLang( 'sportspress.statistics' ),
116
+ onclick: function() {
117
+ // triggers the thickbox
118
+ var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
119
+ W = W - 80;
120
+ H = H - 84;
121
+ tb_show( ed.getLang( 'sportspress.player' ) + ' - ' + ed.getLang( 'sportspress.statistics' ), 'admin-ajax.php?action=sportspress_player_statistics_shortcode&width=' + W + '&height=' + H );
122
+ }
123
+ }
124
+ ]
125
+ },
126
+ {
127
+ text: ed.getLang( 'sportspress.player_list' ),
128
+ menu: [
129
  {
130
  text: ed.getLang( 'sportspress.list' ),
131
  onclick : function() {
133
  var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
134
  W = W - 80;
135
  H = H - 84;
136
+ tb_show( ed.getLang( 'sportspress.player_list' ) + ' - ' + ed.getLang( 'sportspress.list' ), 'admin-ajax.php?action=sportspress_player_list_shortcode&width=' + W + '&height=' + H );
137
  }
138
  },
139
  {
143
  var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
144
  W = W - 80;
145
  H = H - 84;
146
+ tb_show( ed.getLang( 'sportspress.player_list' ) + ' - ' + ed.getLang( 'sportspress.gallery' ), 'admin-ajax.php?action=sportspress_player_gallery_shortcode&width=' + W + '&height=' + H );
147
  }
148
  }
149
  ]
 
 
 
 
 
 
 
 
 
 
150
  }
151
  ]
152
  });
assets/js/admin/sportspress-admin.js CHANGED
@@ -25,6 +25,16 @@ jQuery(document).ready(function($){
25
  // Activate auto key placeholder
26
  $("#poststuff #title").keyup();
27
 
 
 
 
 
 
 
 
 
 
 
28
  // Table switcher
29
  $(".sp-table-panel").siblings(".sp-table-bar").find("a").click(function() {
30
  $(this).closest("li").find("a").addClass("current").closest("li").siblings().find("a").removeClass("current").closest(".sp-table-bar").siblings($(this).attr("href")).show().siblings(".sp-table-panel").hide();
@@ -72,6 +82,27 @@ jQuery(document).ready(function($){
72
  // Trigger tab filter
73
  $(".sp-tab-panel").siblings(".sp-tab-select").find("select").change();
74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  // Filter show all action links
76
  $(".sp-tab-panel").find(".sp-post input:checked").each(function() {
77
  $(this).prop("disabled", false).closest("li").show().siblings(".sp-not-found-container").hide().siblings(".sp-show-all-container").show();
@@ -96,6 +127,20 @@ jQuery(document).ready(function($){
96
  // Activate self-cloning
97
  $(".sp-clone:last").find("select").change();
98
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  // Custom value editor
100
  $(".sp-data-table .sp-default-value").click(function() {
101
  $(this).hide().siblings(".sp-custom-value").show().find(".sp-custom-value-input").focus();
@@ -250,6 +295,7 @@ jQuery(document).ready(function($){
250
 
251
  // Sortable tables
252
  $(".sp-sortable-table tbody").sortable({
 
253
  axis: "y"
254
  });
255
 
@@ -366,4 +412,109 @@ jQuery(document).ready(function($){
366
  $this.find('strong').html(event.strftime("%D "+localized_strings.days+" %H:%M:%S"));
367
  });
368
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  });
25
  // Activate auto key placeholder
26
  $("#poststuff #title").keyup();
27
 
28
+ // Radio input toggle
29
+ $(".sp-radio-toggle").click(function() {
30
+ if($(this).data("sp-checked")) {
31
+ $(this).attr("checked", false );
32
+ $(this).data("sp-checked", false );
33
+ } else {
34
+ $(this).data("sp-checked", true );
35
+ }
36
+ });
37
+
38
  // Table switcher
39
  $(".sp-table-panel").siblings(".sp-table-bar").find("a").click(function() {
40
  $(this).closest("li").find("a").addClass("current").closest("li").siblings().find("a").removeClass("current").closest(".sp-table-bar").siblings($(this).attr("href")).show().siblings(".sp-table-panel").hide();
82
  // Trigger tab filter
83
  $(".sp-tab-panel").siblings(".sp-tab-select").find("select").change();
84
 
85
+ // Dropdown filter
86
+ $(".sp-dropdown-target").siblings(".sp-dropdown-filter").find("select").change(function() {
87
+ var val = $(this).val();
88
+ var filter = ".sp-filter-"+val;
89
+ var $filters = $(this).closest(".sp-dropdown-filter").siblings(".sp-dropdown-filter");
90
+ if($filters.length) {
91
+ $filters.each(function() {
92
+ filterval = $(this).find("select").val();
93
+ if(filterval !== undefined)
94
+ filter += ".sp-filter-"+filterval;
95
+ });
96
+ }
97
+ $target = $(this).closest(".sp-dropdown-filter").siblings(".sp-dropdown-target").find("select");
98
+ $target.find(".sp-post").prop("disabled", true).each(function() {
99
+ $(this).filter(filter).prop("disabled", false);
100
+ });
101
+ });
102
+
103
+ // Trigger dropdown filter
104
+ $(".sp-dropdown-target").siblings(".sp-dropdown-filter").find("select").change();
105
+
106
  // Filter show all action links
107
  $(".sp-tab-panel").find(".sp-post input:checked").each(function() {
108
  $(this).prop("disabled", false).closest("li").show().siblings(".sp-not-found-container").hide().siblings(".sp-show-all-container").show();
127
  // Activate self-cloning
128
  $(".sp-clone:last").find("select").change();
129
 
130
+ // Dummy controller
131
+ $(".sp-has-dummy").change(function() {
132
+ val = $(this).val();
133
+ if ( val == -1 ) val = 0;
134
+ name = $(this).attr("name");
135
+ $(".sp-dummy."+name+"-dummy").val(val).trigger("change");
136
+ });
137
+
138
+ // Title format switcher
139
+ $(".sp-title-format-select").change(function() {
140
+ val = $(this).val();
141
+ $(".sp-title-format").hide().filter(".sp-title-format-"+val).show();
142
+ });
143
+
144
  // Custom value editor
145
  $(".sp-data-table .sp-default-value").click(function() {
146
  $(this).hide().siblings(".sp-custom-value").show().find(".sp-custom-value-input").focus();
295
 
296
  // Sortable tables
297
  $(".sp-sortable-table tbody").sortable({
298
+ handle: ".icon",
299
  axis: "y"
300
  });
301
 
412
  $this.find('strong').html(event.strftime("%D "+localized_strings.days+" %H:%M:%S"));
413
  });
414
  });
415
+
416
+ // Event format affects data
417
+ $(".post-type-sp_event #post-formats-select input.post-format").change(function() {
418
+ layout = $(".post-type-sp_event #post-formats-select input:checked").val();
419
+ if ( layout == "league" ) {
420
+ $(".sp-event-sp_league-field").show().find("select").prop("disabled", false);
421
+ $(".sp-event-sp_season-field").show().find("select").prop("disabled", false);
422
+ } else if ( layout == "friendly" ) {
423
+ $(".sp-event-sp_league-field").hide().find("select").prop("disabled", true);
424
+ $(".sp-event-sp_season-field").show().find("select").prop("disabled", false);
425
+ }
426
+ });
427
+
428
+ // Trigger event format change
429
+ $(".post-type-sp_event #post-formats-select input.post-format").trigger("change");
430
+
431
+ // Calendar layout affects data
432
+ $(".post-type-sp_calendar #post-formats-select input.post-format").change(function() {
433
+ layout = $(".post-type-sp_calendar #post-formats-select input:checked").val();
434
+ $(".sp-calendar-table tr").each(function() {
435
+ if ( layout == "list" ) {
436
+ $(this).find("th input[type=checkbox]").show();
437
+ $(this).find("th select").prop("disabled", false);
438
+ } else {
439
+ $(this).find("th input[type=checkbox]").hide();
440
+ $(this).find("th select").prop('selectedIndex', 0).prop("disabled", true);
441
+ }
442
+ });
443
+ });
444
+
445
+ // Trigger calendar layout change
446
+ $(".post-type-sp_calendar #post-formats-select input.post-format").trigger("change");
447
+
448
+ // Player list layout affects data
449
+ $(".post-type-sp_list #post-formats-select input.post-format").change(function() {
450
+ layout = $(".post-type-sp_list #post-formats-select input:checked").val();
451
+ $(".sp-player-list-table tr").each(function() {
452
+ if ( layout == "list" ) {
453
+ $(this).find("th input[type=checkbox]").show();
454
+ } else {
455
+ $(this).find("th input[type=checkbox]").hide();
456
+ }
457
+ });
458
+ });
459
+
460
+ // Trigger player list layout change
461
+ $(".post-type-sp_list #post-formats-select input.post-format").trigger("change");
462
+
463
+ // Configure primary result option (Ajax)
464
+ $(".sp-admin-config-table").on("click", ".sp-primary-result-option", function() {
465
+ $.post( ajaxurl, {
466
+ action: "sp-save-primary-result",
467
+ primary_result: $(this).val(),
468
+ nonce: $("#sp-config-nonce").val()
469
+ });
470
+ });
471
+
472
+ // Update importer post count
473
+ $(".sp-import-table").on("updatePostCount", function() {
474
+ $(".sp-post-count").text(localized_strings.displaying_posts.replace("%s", 1).replace(/%s/g, count = $(this).find("tbody tr").length));
475
+ });
476
+
477
+ // Delete importer row
478
+ $(".sp-import-table").on("click", ".sp-delete-row", function() {
479
+ $self = $(this);
480
+ $self.closest("tr").css("background-color", "#f99").fadeOut(400, function() {
481
+ $table = $self.closest(".sp-import-table");
482
+ $(this).remove();
483
+ $table.trigger("updatePostCount");
484
+ });
485
+ return false;
486
+ });
487
+
488
+ // Add importer row
489
+ $(".sp-import-table").on("click", ".sp-add-row", function() {
490
+ $self = $(this);
491
+ $table = $self.closest(".sp-import-table");
492
+ if ( $self.hasClass("sp-add-first") ) {
493
+ $tr = $table.find("tbody tr:first-child");
494
+ $row = $tr.clone();
495
+ $row.insertBefore($tr).find("input").val("");
496
+ } else {
497
+ $tr = $self.closest("tr");
498
+ $row = $tr.clone();
499
+ $tr.find("input").val("");
500
+ $row.insertBefore($tr);
501
+ }
502
+ $table.trigger("updatePostCount");
503
+ return false;
504
+ });
505
+
506
+ // Enable or disable importer inputs based on column label
507
+ $(".sp-import-table").on("change", "select", function() {
508
+ $self = $(this);
509
+ $table = $self.closest(".sp-import-table");
510
+ index = parseInt($self.data("index"));
511
+ if ( $self.val() == 0 ) {
512
+ $table.find("tbody tr td:nth-child("+parseInt(index+1)+") input").prop("disabled", true);
513
+ } else {
514
+ $table.find("tbody tr td:nth-child("+parseInt(index+1)+") input").prop("disabled", false);
515
+ $self.closest("th").siblings().find("select").each(function() {
516
+ if ( $(this).val() == $self.val() ) $(this).val("0").trigger("change");
517
+ });
518
+ }
519
+ });
520
  });
dummy-data/events-sample.csv CHANGED
@@ -1 +1 @@
1
- Date,Time,Venue,Teams,Results,Outcome,Players,Goals,Assists,Yellow Cards,Red Cards
1
+ Date,Time,Venue,Teams,Results,Outcome,Players,Goals,Assists,Yellow Cards,Red Cards
dummy-data/staff-sample.csv CHANGED
@@ -1,6 +1,6 @@
1
- Name,Teams,Leagues,Seasons,Nationality
2
- Bobby Brown,Essendon Eages,Primary League|Secondary League,2014,AU
3
- Charles Johnson,Kensington Kangaroos,Primary League,2014,GB
4
- Matt Smith,Southbank Sharks,Primary League|Secondary League,2013|2014,AU
5
- Derrick Dawson,Toorak Tigers,Primary League,2014,US
6
- John Allen,Fitzroy Foxes,Primary League|Secondary League,2014,ES
1
+ Name,Roles,Teams,Leagues,Seasons,Nationality
2
+ Bobby Brown,Coach,Essendon Eagles,Primary League|Secondary League,2014,AU
3
+ Charles Johnson,Assistant Coach,Kensington Kangaroos,Primary League,2014,GB
4
+ Matt Smith,Waterboy,Southbank Sharks,Primary League|Secondary League,2013|2014,AU
5
+ Derrick Dawson,Manager,Toorak Tigers,Primary League,2014,US
6
+ John Allen,Investor,Fitzroy Foxes,Primary League|Secondary League,2014,ES
dummy-data/teams-sample.csv CHANGED
@@ -1,4 +1,4 @@
1
- Name,Leagues,Seasons
2
- Essendon Eagles,Primary League|Secondary League,2014
3
- Southbank Sharks,Primary League|Secondary League,2014|2013
4
- Carlton Kangaroos,Primary League,2014|2013
1
+ Name,Leagues,Seasons,Site URL,Abbreviation,Home
2
+ Essendon Eagles,Primary League|Secondary League,2014,http://tboy.co/eagles,EAGLES,Little Park
3
+ Southbank Sharks,Primary League|Secondary League,2014|2013,http://tboy.co/sharks,SHARKS
4
+ Carlton Kangaroos,Primary League,2014|2013,http://tboy.co/roos,ROOS,Big Stadium
includes/admin/class-sp-admin-addons.php DELETED
@@ -1,62 +0,0 @@
1
- <?php
2
- /**
3
- * Addons Page
4
- *
5
- * @author ThemeBoy
6
- * @category Admin
7
- * @package SportsPress/Admin
8
- * @version 0.8
9
- */
10
-
11
- if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
12
-
13
- if ( ! class_exists( 'SP_Admin_Addons' ) ) :
14
-
15
- /**
16
- * SP_Admin_Addons Class
17
- */
18
- class SP_Admin_Addons {
19
-
20
- /**
21
- * Handles output of the reports page in admin.
22
- */
23
- public function output() {
24
-
25
- $view = isset( $_GET['view'] ) ? sanitize_text_field( $_GET['view'] ) : '';
26
-
27
- if ( false === ( $addons = get_transient( 'sportspress_addons_html_' . $view ) ) ) {
28
-
29
- $raw_addons = wp_remote_get( 'http://themeboy.com/sportspress/extensions/' . $view . '?orderby=popularity', array(
30
- 'user-agent' => 'sportspress-addons-page',
31
- 'timeout' => 3
32
- ) );
33
-
34
- if ( ! is_wp_error( $raw_addons ) ) {
35
-
36
- $raw_addons = wp_remote_retrieve_body( $raw_addons );
37
-
38
- // Get Products
39
- $dom = new DOMDocument();
40
- libxml_use_internal_errors(true);
41
- $dom->loadHTML( $raw_addons );
42
-
43
- $addons = '';
44
- $xpath = new DOMXPath( $dom );
45
- $tags = $xpath->query('//ul[@class="products"]');
46
- foreach ( $tags as $tag ) {
47
- $addons = $tag->ownerDocument->saveXML( $tag );
48
- break;
49
- }
50
-
51
- if ( $addons )
52
- set_transient( 'sportspress_addons_html_' . $view, wp_kses_post( $addons ), 60*60*24*7 ); // Cached for a week
53
- }
54
- }
55
-
56
- // include_once( 'views/html-admin-page-addons.php' );
57
- }
58
- }
59
-
60
- endif;
61
-
62
- return new SP_Admin_Addons();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/admin/class-sp-admin-ajax.php ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit; // Exit if accessed directly
4
+ }
5
+
6
+ /**
7
+ * SportsPress Admin.
8
+ *
9
+ * @class SP_Admin_AJAX
10
+ * @author ThemeBoy
11
+ * @category Admin
12
+ * @package SportsPress/Admin
13
+ * @version 1.3
14
+ */
15
+ class SP_Admin_AJAX {
16
+
17
+ /**
18
+ * Constructor
19
+ */
20
+ public function __construct() {
21
+ add_action( 'wp_ajax_sp-save-primary-result', array( $this, 'save_primary_result' ), 1 );
22
+ }
23
+
24
+ /**
25
+ * Auto-save the selected primary result.
26
+ *
27
+ * @since 1.3
28
+ */
29
+ function save_primary_result() {
30
+ check_ajax_referer( 'sp-save-primary-result', 'nonce' );
31
+
32
+ $primary_result = sanitize_key( $_POST['primary_result'] );
33
+
34
+ update_option( 'sportspress_primary_result', $primary_result );
35
+ wp_send_json_success();
36
+ }
37
+ }
38
+
39
+ return new SP_Admin_AJAX();
includes/admin/class-sp-admin-assets.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
- * @version 1.2
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -29,19 +29,22 @@ class SP_Admin_Assets {
29
  * Enqueue styles
30
  */
31
  public function admin_styles() {
32
- global $wp_scripts;
33
-
34
  // Sitewide menu CSS
35
  wp_enqueue_style( 'sportspress-admin-menu-styles', SP()->plugin_url() . '/assets/css/menu.css', array(), SP_VERSION );
36
 
37
  $screen = get_current_screen();
38
 
39
  if ( in_array( $screen->id, sp_get_screen_ids() ) ) {
40
-
41
  // Admin styles for SP pages only
42
  wp_enqueue_style( 'jquery-chosen', SP()->plugin_url() . '/assets/css/chosen.css', array(), '1.1.0' );
43
  wp_enqueue_style( 'wp-color-picker' );
44
  wp_enqueue_style( 'sportspress-admin', SP()->plugin_url() . '/assets/css/admin.css', array(), SP_VERSION );
 
 
 
 
 
 
45
  }
46
 
47
  if ( in_array( $screen->id, array( 'dashboard' ) ) ) {
@@ -56,11 +59,6 @@ class SP_Admin_Assets {
56
  wp_enqueue_style( 'sportspress-admin-equation-styles', SP()->plugin_url() . '/assets/css/equation.css', array(), SP_VERSION );
57
  }
58
 
59
- if ( SP()->mode == 'player' ):
60
- $custom_css = '#adminmenu #menu-posts-sp_team .menu-icon-sp_team div.wp-menu-image:before,.sp-icon-shield:before{content: "\f307"}';
61
- wp_add_inline_style( 'sportspress-admin-menu-styles', $custom_css );
62
- endif;
63
-
64
  do_action( 'sportspress_admin_css' );
65
  }
66
 
@@ -92,7 +90,7 @@ class SP_Admin_Assets {
92
  wp_register_script( 'sportspress-admin-widgets', SP()->plugin_url() . '/assets/js/admin/widgets.js', array( 'jquery' ), SP_VERSION, true );
93
 
94
  // SportsPress admin pages
95
- if ( in_array( $screen->id, sp_get_screen_ids() ) ) {
96
  wp_enqueue_script( 'jquery' );
97
  wp_enqueue_script( 'chosen' );
98
  wp_enqueue_script( 'jquery-ui-core' );
@@ -110,7 +108,8 @@ class SP_Admin_Assets {
110
  'days' => __( 'days', 'sportspress' ),
111
  'hrs' => __( 'hrs', 'sportspress' ),
112
  'mins' => __( 'mins', 'sportspress' ),
113
- 'secs' => __( 'secs', 'sportspress' )
 
114
  );
115
 
116
  // Localize scripts
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
29
  * Enqueue styles
30
  */
31
  public function admin_styles() {
 
 
32
  // Sitewide menu CSS
33
  wp_enqueue_style( 'sportspress-admin-menu-styles', SP()->plugin_url() . '/assets/css/menu.css', array(), SP_VERSION );
34
 
35
  $screen = get_current_screen();
36
 
37
  if ( in_array( $screen->id, sp_get_screen_ids() ) ) {
 
38
  // Admin styles for SP pages only
39
  wp_enqueue_style( 'jquery-chosen', SP()->plugin_url() . '/assets/css/chosen.css', array(), '1.1.0' );
40
  wp_enqueue_style( 'wp-color-picker' );
41
  wp_enqueue_style( 'sportspress-admin', SP()->plugin_url() . '/assets/css/admin.css', array(), SP_VERSION );
42
+ } elseif ( strpos( $screen->id, 'sp-config' ) !== false || strpos( $screen->id, 'sp-status' ) !== false ) {
43
+ wp_enqueue_style( 'sportspress-admin', SP()->plugin_url() . '/assets/css/admin.css', array(), SP_VERSION );
44
+ }
45
+
46
+ if ( strpos( $screen->id, 'sp-overview' ) !== false ) {
47
+ wp_enqueue_style( 'sportspress-admin-slickmap', SP()->plugin_url() . '/assets/css/slickmap.css', array(), '1.1.0' );
48
  }
49
 
50
  if ( in_array( $screen->id, array( 'dashboard' ) ) ) {
59
  wp_enqueue_style( 'sportspress-admin-equation-styles', SP()->plugin_url() . '/assets/css/equation.css', array(), SP_VERSION );
60
  }
61
 
 
 
 
 
 
62
  do_action( 'sportspress_admin_css' );
63
  }
64
 
90
  wp_register_script( 'sportspress-admin-widgets', SP()->plugin_url() . '/assets/js/admin/widgets.js', array( 'jquery' ), SP_VERSION, true );
91
 
92
  // SportsPress admin pages
93
+ if ( in_array( $screen->id, sp_get_screen_ids() ) || strpos( $screen->id, 'sp-config' )) {
94
  wp_enqueue_script( 'jquery' );
95
  wp_enqueue_script( 'chosen' );
96
  wp_enqueue_script( 'jquery-ui-core' );
108
  'days' => __( 'days', 'sportspress' ),
109
  'hrs' => __( 'hrs', 'sportspress' ),
110
  'mins' => __( 'mins', 'sportspress' ),
111
+ 'secs' => __( 'secs', 'sportspress' ),
112
+ 'displaying_posts' => html_entity_decode( __( 'Displaying %s&#8211;%s of %s', 'sportspress' ) ),
113
  );
114
 
115
  // Localize scripts
includes/admin/class-sp-admin-dashboard.php CHANGED
@@ -46,7 +46,7 @@ class SP_Admin_Dashboard {
46
  if ( $num_posts ):
47
  $published = intval( $num_posts->publish );
48
  $post_type = get_post_type_object( $type );
49
- $text = _n( '%s ' . $post_type->labels->singular_name, '%s ' . $post_type->labels->name, $published, 'your_textdomain' );
50
  $text = sprintf( $text, number_format_i18n( $published ) );
51
  if ( current_user_can( $post_type->cap->edit_posts ) ):
52
  $output = '<a href="edit.php?post_type=' . $post_type->name . '">' . $text . '</a>';
@@ -64,23 +64,24 @@ class SP_Admin_Dashboard {
64
  * Show status widget
65
  */
66
  public function status_widget() {
67
- $next_event = sp_get_next_event();
68
- $now = new DateTime( current_time( 'mysql', 0 ) );
69
- $date = new DateTime( $next_event->post_date );
70
- $interval = date_diff( $now, $date );
71
-
72
- $count = wp_count_posts( 'sp_event' );
73
- $scheduled_count = $count->future;
74
- $published_count = $count->publish;
75
  ?>
76
  <ul class="sp_status_list">
77
- <?php if ( $next_event ): ?>
78
- <li class="countdown" data-countdown="<?php echo str_replace( '-', '/', $next_event->post_date ); ?>">
79
- <a href="<?php echo get_edit_post_link( $next_event->ID ); ?>">
80
- <?php printf( __( '<strong>%s</strong> until next event', 'sportspress' ), $interval->days . ' ' . __( 'days', 'sportspress' ) . ' ' . sprintf( '%02s:%02s:%02s', $interval->h, $interval->i, $interval->s ) ); ?>
81
- (<?php echo $next_event->post_title; ?>)
82
- </a>
83
- </li>
 
 
 
 
 
 
 
 
 
84
  <?php endif; ?>
85
  <li class="events-scheduled">
86
  <a href="<?php echo admin_url( 'edit.php?post_type=sp_event&post_status=future' ); ?>">
46
  if ( $num_posts ):
47
  $published = intval( $num_posts->publish );
48
  $post_type = get_post_type_object( $type );
49
+ $text = _n( '%s ' . $post_type->labels->singular_name, '%s ' . $post_type->labels->name, $published, 'sportspress' );
50
  $text = sprintf( $text, number_format_i18n( $published ) );
51
  if ( current_user_can( $post_type->cap->edit_posts ) ):
52
  $output = '<a href="edit.php?post_type=' . $post_type->name . '">' . $text . '</a>';
64
  * Show status widget
65
  */
66
  public function status_widget() {
 
 
 
 
 
 
 
 
67
  ?>
68
  <ul class="sp_status_list">
69
+ <?php
70
+ $count = wp_count_posts( 'sp_event' );
71
+ $scheduled_count = isset( $count->future ) ? $count->future : 0;
72
+ $published_count = isset( $count->publish ) ? $count->publish : 0;
73
+ $next_event = sp_get_next_event();
74
+ if ( $next_event ):
75
+ $now = new DateTime( current_time( 'mysql', 0 ) );
76
+ $date = new DateTime( $next_event->post_date );
77
+ $interval = date_diff( $now, $date );
78
+ ?>
79
+ <li class="countdown" data-countdown="<?php echo str_replace( '-', '/', $next_event->post_date ); ?>">
80
+ <a href="<?php echo get_edit_post_link( $next_event->ID ); ?>">
81
+ <?php printf( __( '<strong>%s</strong> until next event', 'sportspress' ), $interval->days . ' ' . __( 'days', 'sportspress' ) . ' ' . sprintf( '%02s:%02s:%02s', $interval->h, $interval->i, $interval->s ) ); ?>
82
+ (<?php echo $next_event->post_title; ?>)
83
+ </a>
84
+ </li>
85
  <?php endif; ?>
86
  <li class="events-scheduled">
87
  <a href="<?php echo admin_url( 'edit.php?post_type=sp_event&post_status=future' ); ?>">
includes/admin/class-sp-admin-menus.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
- * @version 1.2
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -23,19 +23,21 @@ class SP_Admin_Menus {
23
  public function __construct() {
24
  add_filter( 'admin_menu', array( $this, 'menu_clean' ), 5 );
25
  add_action( 'admin_menu', array( $this, 'admin_menu' ), 6 );
26
- add_action( 'admin_menu', array( $this, 'leagues_menu' ), 7 );
27
- add_action( 'admin_menu', array( $this, 'seasons_menu' ), 8 );
 
 
 
28
 
29
  if ( current_user_can( 'manage_options' ) )
30
  add_action( 'admin_menu', array( $this, 'status_menu' ), 20 );
31
 
32
- if ( apply_filters( 'sportspress_show_addons_page', false ) ) // Make true to display by default
33
- add_action( 'admin_menu', array( $this, 'addons_menu' ), 70 );
34
-
35
  add_action( 'admin_head', array( $this, 'menu_highlight' ) );
 
36
  add_action( 'parent_file', array( $this, 'parent_file' ) );
37
  add_filter( 'menu_order', array( $this, 'menu_order' ) );
38
  add_filter( 'custom_menu_order', array( $this, 'custom_menu_order' ) );
 
39
  }
40
 
41
  /**
@@ -47,7 +49,21 @@ class SP_Admin_Menus {
47
  if ( current_user_can( 'manage_sportspress' ) )
48
  $menu[] = array( '', 'read', 'separator-sportspress', '', 'wp-menu-separator sportspress' );
49
 
50
- $main_page = add_menu_page( __( 'SportsPress Settings', 'sportspress' ), __( 'SportsPress', 'sportspress' ), 'manage_sportspress', 'sportspress', array( $this, 'settings_page' ), apply_filters( 'sportspress_menu_icon', null ), '51.5' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  }
52
 
53
  /**
@@ -72,13 +88,6 @@ class SP_Admin_Menus {
72
  register_setting( 'sportspress_status_settings_fields', 'sportspress_status_options' );
73
  }
74
 
75
- /**
76
- * Addons menu item
77
- */
78
- public function addons_menu() {
79
- add_submenu_page( 'sportspress', __( 'SportsPress Add-ons/Extensions', 'sportspress' ), __( 'Add-ons', 'sportspress' ) , 'manage_sportspress', 'sp-addons', array( $this, 'addons_page' ) );
80
- }
81
-
82
  /**
83
  * Highlights the correct top level admin menu item for post type add screens.
84
  *
@@ -86,9 +95,12 @@ class SP_Admin_Menus {
86
  * @return void
87
  */
88
  public function menu_highlight() {
89
- global $typenow, $submenu;
90
- if ( is_sp_config_type( $typenow ) )
91
- $this->highlight_admin_menu();
 
 
 
92
  elseif ( $typenow == 'sp_calendar' )
93
  $this->highlight_admin_menu( 'edit.php?post_type=sp_event', 'edit.php?post_type=sp_calendar' );
94
  elseif ( $typenow == 'sp_table' )
@@ -97,10 +109,24 @@ class SP_Admin_Menus {
97
  $this->highlight_admin_menu( 'edit.php?post_type=sp_player', 'edit.php?post_type=sp_list' );
98
  elseif ( $typenow == 'sp_staff' )
99
  $this->highlight_admin_menu( 'edit.php?post_type=sp_player', 'edit.php?post_type=sp_staff' );
 
100
 
101
- if ( isset( $submenu['sportspress'] ) && isset( $submenu['sportspress'][0] ) && isset( $submenu['sportspress'][0][0] ) ) {
 
 
 
 
 
 
 
 
 
102
  $submenu['sportspress'][0][0] = __( 'Settings', 'sportspress' );
103
- }
 
 
 
 
104
  }
105
 
106
  public function parent_file( $parent_file ) {
@@ -130,18 +156,27 @@ class SP_Admin_Menus {
130
  $sportspress_player = array_search( 'edit.php?post_type=sp_player', $menu_order );
131
 
132
  // Loop through menu order and do some rearranging
133
- foreach ( $menu_order as $index => $item ) :
134
 
135
- if ( ( ( 'sportspress' ) == $item ) ) :
136
  $sportspress_menu_order[] = 'separator-sportspress';
137
  $sportspress_menu_order[] = $item;
138
  $sportspress_menu_order[] = 'edit.php?post_type=sp_event';
139
  $sportspress_menu_order[] = 'edit.php?post_type=sp_team';
140
  $sportspress_menu_order[] = 'edit.php?post_type=sp_player';
141
- unset( $menu_order[$sportspress_separator] );
142
- unset( $menu_order[$sportspress_event] );
143
- unset( $menu_order[$sportspress_team] );
144
- unset( $menu_order[$sportspress_player] );
 
 
 
 
 
 
 
 
 
145
  elseif ( !in_array( $item, array( 'separator-sportspress' ) ) ) :
146
  $sportspress_menu_order[] = $item;
147
  endif;
@@ -170,14 +205,6 @@ class SP_Admin_Menus {
170
  $page->output();
171
  }
172
 
173
- /**
174
- * Init the addons page
175
- */
176
- public function addons_page() {
177
- $page = include( 'class-sp-admin-addons.php' );
178
- $page->output();
179
- }
180
-
181
  /**
182
  * Clean the SP menu items in admin.
183
  */
@@ -214,12 +241,6 @@ class SP_Admin_Menus {
214
  $submenu['edit.php?post_type=sp_player'] = array_filter( $submenu['edit.php?post_type=sp_player'], array( $this, 'remove_seasons' ) );
215
  endif;
216
 
217
- // Remove "Leagues" and "Seasons" links from Staff submenu
218
- if ( isset( $submenu['edit.php?post_type=sp_staff'] ) ):
219
- $submenu['edit.php?post_type=sp_staff'] = array_filter( $submenu['edit.php?post_type=sp_staff'], array( $this, 'remove_leagues' ) );
220
- $submenu['edit.php?post_type=sp_staff'] = array_filter( $submenu['edit.php?post_type=sp_staff'], array( $this, 'remove_seasons' ) );
221
- endif;
222
-
223
  $user_roles = $current_user->roles;
224
  $user_role = array_shift($user_roles);
225
 
@@ -230,6 +251,32 @@ class SP_Admin_Menus {
230
  endif;
231
  }
232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233
  /**
234
  * Init the settings page
235
  */
@@ -263,6 +310,16 @@ class SP_Admin_Menus {
263
  $parent_file = $p;
264
  $submenu_file = $s;
265
  }
 
 
 
 
 
 
 
 
 
 
266
  }
267
 
268
  endif;
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
23
  public function __construct() {
24
  add_filter( 'admin_menu', array( $this, 'menu_clean' ), 5 );
25
  add_action( 'admin_menu', array( $this, 'admin_menu' ), 6 );
26
+ add_action( 'admin_menu', array( $this, 'config_menu' ), 7 );
27
+ add_action( 'admin_menu', array( $this, 'overview_menu' ), 8 );
28
+ add_action( 'admin_menu', array( $this, 'leagues_menu' ), 9 );
29
+ add_action( 'admin_menu', array( $this, 'seasons_menu' ), 10 );
30
+ add_filter( 'admin_menu', array( $this, 'menu_add' ), 20 );
31
 
32
  if ( current_user_can( 'manage_options' ) )
33
  add_action( 'admin_menu', array( $this, 'status_menu' ), 20 );
34
 
 
 
 
35
  add_action( 'admin_head', array( $this, 'menu_highlight' ) );
36
+ add_action( 'admin_head', array( $this, 'menu_rename' ) );
37
  add_action( 'parent_file', array( $this, 'parent_file' ) );
38
  add_filter( 'menu_order', array( $this, 'menu_order' ) );
39
  add_filter( 'custom_menu_order', array( $this, 'custom_menu_order' ) );
40
+ add_filter( 'sportspress_sitemap_taxonomy_post_types', array( $this, 'sitemap_taxonomy_post_types' ), 10, 2 );
41
  }
42
 
43
  /**
49
  if ( current_user_can( 'manage_sportspress' ) )
50
  $menu[] = array( '', 'read', 'separator-sportspress', '', 'wp-menu-separator sportspress' );
51
 
52
+ $main_page = add_menu_page( __( 'SportsPress', 'sportspress' ), __( 'SportsPress', 'sportspress' ), 'manage_sportspress', 'sportspress', array( $this, 'settings_page' ), apply_filters( 'sportspress_menu_icon', null ), '51.5' );
53
+ }
54
+
55
+ /**
56
+ * Add menu item
57
+ */
58
+ public function overview_menu() {
59
+ add_submenu_page( 'sportspress', __( 'Overview', 'sportspress' ), __( 'Overview', 'sportspress' ), 'manage_sportspress', 'sp-overview', array( $this, 'overview_page' ) );
60
+ }
61
+
62
+ /**
63
+ * Add menu item
64
+ */
65
+ public function config_menu() {
66
+ add_submenu_page( 'sportspress', __( 'Configure', 'sportspress' ), __( 'Configure', 'sportspress' ), 'manage_sportspress', 'sp-config', array( $this, 'config_page' ) );
67
  }
68
 
69
  /**
88
  register_setting( 'sportspress_status_settings_fields', 'sportspress_status_options' );
89
  }
90
 
 
 
 
 
 
 
 
91
  /**
92
  * Highlights the correct top level admin menu item for post type add screens.
93
  *
95
  * @return void
96
  */
97
  public function menu_highlight() {
98
+ global $typenow;
99
+ $screen = get_current_screen();
100
+ if ( $screen->id == 'edit-sp_role' )
101
+ $this->highlight_admin_menu( 'edit.php?post_type=sp_player', 'edit-tags.php?taxonomy=sp_role&post_type=sp_player' );
102
+ elseif ( is_sp_config_type( $typenow ) )
103
+ $this->highlight_admin_menu( 'sportspress', 'sp-config' );
104
  elseif ( $typenow == 'sp_calendar' )
105
  $this->highlight_admin_menu( 'edit.php?post_type=sp_event', 'edit.php?post_type=sp_calendar' );
106
  elseif ( $typenow == 'sp_table' )
109
  $this->highlight_admin_menu( 'edit.php?post_type=sp_player', 'edit.php?post_type=sp_list' );
110
  elseif ( $typenow == 'sp_staff' )
111
  $this->highlight_admin_menu( 'edit.php?post_type=sp_player', 'edit.php?post_type=sp_staff' );
112
+ }
113
 
114
+ /**
115
+ * Renames admin menu items.
116
+ *
117
+ * @access public
118
+ * @return void
119
+ */
120
+ public function menu_rename() {
121
+ global $menu, $submenu;
122
+
123
+ if ( isset( $submenu['sportspress'] ) && isset( $submenu['sportspress'][0] ) && isset( $submenu['sportspress'][0][0] ) )
124
  $submenu['sportspress'][0][0] = __( 'Settings', 'sportspress' );
125
+
126
+ foreach ( $menu as $index => $values ):
127
+ if ( sp_array_value( $values, 0 ) === __( 'Players', 'sportspress' ) )
128
+ $menu[ $index ][0] = __( 'Players & Staff', 'sportspress' );
129
+ endforeach;
130
  }
131
 
132
  public function parent_file( $parent_file ) {
156
  $sportspress_player = array_search( 'edit.php?post_type=sp_player', $menu_order );
157
 
158
  // Loop through menu order and do some rearranging
159
+ foreach ( $menu_order as $index => $item ):
160
 
161
+ if ( ( ( 'sportspress' ) == $item ) ):
162
  $sportspress_menu_order[] = 'separator-sportspress';
163
  $sportspress_menu_order[] = $item;
164
  $sportspress_menu_order[] = 'edit.php?post_type=sp_event';
165
  $sportspress_menu_order[] = 'edit.php?post_type=sp_team';
166
  $sportspress_menu_order[] = 'edit.php?post_type=sp_player';
167
+ unset( $menu_order[ $sportspress_separator ] );
168
+ unset( $menu_order[ $sportspress_event ] );
169
+ unset( $menu_order[ $sportspress_team ] );
170
+ unset( $menu_order[ $sportspress_player ] );
171
+
172
+ // Apply to added menu items
173
+ $menu_items = apply_filters( 'sportspress_menu_items', array() );
174
+ foreach ( $menu_items as $menu_item ):
175
+ $sportspress_menu_order[] = $menu_item;
176
+ $index = array_search( $menu_item, $menu_order );
177
+ unset( $menu_order[ $index ] );
178
+ endforeach;
179
+
180
  elseif ( !in_array( $item, array( 'separator-sportspress' ) ) ) :
181
  $sportspress_menu_order[] = $item;
182
  endif;
205
  $page->output();
206
  }
207
 
 
 
 
 
 
 
 
 
208
  /**
209
  * Clean the SP menu items in admin.
210
  */
241
  $submenu['edit.php?post_type=sp_player'] = array_filter( $submenu['edit.php?post_type=sp_player'], array( $this, 'remove_seasons' ) );
242
  endif;
243
 
 
 
 
 
 
 
244
  $user_roles = $current_user->roles;
245
  $user_role = array_shift($user_roles);
246
 
251
  endif;
252
  }
253
 
254
+ /**
255
+ * Add missing SP menu items in admin.
256
+ */
257
+ public function menu_add() {
258
+ global $menu, $submenu, $current_user;
259
+
260
+ // Add "Roles" to Players submenu
261
+ if ( isset( $submenu['edit.php?post_type=sp_player'] ) ):
262
+ array_splice( $submenu['edit.php?post_type=sp_player'], 5, 0, array( array( __( 'Roles', 'sportspress' ), 'manage_categories', 'edit-tags.php?taxonomy=sp_role&post_type=sp_player' ) ) );
263
+ endif;
264
+ }
265
+
266
+ /**
267
+ * Init the overview page
268
+ */
269
+ public function overview_page() {
270
+ include( 'views/html-admin-overview.php' );
271
+ }
272
+
273
+ /**
274
+ * Init the config page
275
+ */
276
+ public function config_page() {
277
+ include( 'views/html-admin-config.php' );
278
+ }
279
+
280
  /**
281
  * Init the settings page
282
  */
310
  $parent_file = $p;
311
  $submenu_file = $s;
312
  }
313
+
314
+ public static function sitemap_taxonomy_post_types( $post_types = array(), $taxonomy ) {
315
+ $post_types = array_intersect( $post_types, sp_primary_post_types() );
316
+ // Remove teams from venues taxonomy post type array
317
+ if ( ( $key = array_search( 'sp_team', $post_types ) ) !== false ):
318
+ unset( $post_types[ $key ] );
319
+ endif;
320
+
321
+ return $post_types;
322
+ }
323
  }
324
 
325
  endif;
includes/admin/class-sp-admin-settings.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
- * @version 1.1
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -34,16 +34,13 @@ class SP_Admin_Settings {
34
  $settings[] = include( 'settings/class-sp-settings-general.php' );
35
  $settings[] = include( 'settings/class-sp-settings-events.php' );
36
  $settings[] = include( 'settings/class-sp-settings-teams.php' );
37
-
38
- if ( SP()->mode == 'team' ):
39
- $settings[] = include( 'settings/class-sp-settings-players.php' );
40
- $settings[] = include( 'settings/class-sp-settings-staff.php' );
41
- endif;
42
 
43
  $settings = apply_filters( 'sportspress_get_settings_pages', $settings );
44
 
45
  $settings[] = include( 'settings/class-sp-settings-text.php' );
46
- $settings[] = include( 'settings/class-sp-settings-config.php' );
47
 
48
  self::$settings = apply_filters( 'sportspress_get_settings_config_pages', $settings );
49
  }
@@ -368,6 +365,52 @@ class SP_Admin_Settings {
368
  </tr><?php
369
  break;
370
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
371
  // Radio inputs
372
  case 'radio' :
373
 
@@ -534,6 +577,7 @@ class SP_Admin_Settings {
534
  case 'email':
535
  case 'number':
536
  case 'select' :
 
537
  case 'color' :
538
  case 'password' :
539
  case 'radio' :
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
34
  $settings[] = include( 'settings/class-sp-settings-general.php' );
35
  $settings[] = include( 'settings/class-sp-settings-events.php' );
36
  $settings[] = include( 'settings/class-sp-settings-teams.php' );
37
+ $settings[] = include( 'settings/class-sp-settings-players.php' );
38
+ $settings[] = include( 'settings/class-sp-settings-staff.php' );
 
 
 
39
 
40
  $settings = apply_filters( 'sportspress_get_settings_pages', $settings );
41
 
42
  $settings[] = include( 'settings/class-sp-settings-text.php' );
43
+ //$settings[] = include( 'settings/class-sp-settings-config.php' );
44
 
45
  self::$settings = apply_filters( 'sportspress_get_settings_config_pages', $settings );
46
  }
365
  </tr><?php
366
  break;
367
 
368
+ // Select boxes with optgroup
369
+ case 'groupselect' :
370
+
371
+ $option_value = self::get_option( $value['id'], $value['default'] );
372
+
373
+ ?><tr valign="top">
374
+ <th scope="row" class="titledesc">
375
+ <label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
376
+ <?php echo $tip; ?>
377
+ </th>
378
+ <td class="forminp forminp-<?php echo sanitize_title( $value['type'] ) ?>">
379
+ <select
380
+ name="<?php echo esc_attr( $value['id'] ); ?><?php if ( $value['type'] == 'multiselect' ) echo '[]'; ?>"
381
+ id="<?php echo esc_attr( $value['id'] ); ?>"
382
+ style="<?php echo esc_attr( $value['css'] ); ?>"
383
+ class="chosen-select<?php if ( is_rtl() ): ?> chosen-rtl<?php endif; ?> <?php echo esc_attr( $value['class'] ); ?>"
384
+ <?php echo implode( ' ', $custom_attributes ); ?>
385
+ <?php if ( $value['type'] == 'multiselect' ) echo 'multiple="multiple"'; ?>
386
+ >
387
+ <?php
388
+ foreach ( $value['options'] as $group => $options ) {
389
+ ?>
390
+ <optgroup label="<?php _e( $group, 'sportspress' ); ?>">
391
+ <?php
392
+ foreach ( $options as $key => $val ) {
393
+ ?>
394
+ <option value="<?php echo esc_attr( $key ); ?>" <?php
395
+
396
+ if ( is_array( $option_value ) )
397
+ selected( in_array( $key, $option_value ), true );
398
+ else
399
+ selected( $option_value, $key );
400
+
401
+ ?>><?php echo $val ?></option>
402
+ <?php
403
+ }
404
+ ?>
405
+ </optgroup>
406
+ <?php
407
+ }
408
+ ?>
409
+ </select> <?php echo $description; ?>
410
+ </td>
411
+ </tr><?php
412
+ break;
413
+
414
  // Radio inputs
415
  case 'radio' :
416
 
577
  case 'email':
578
  case 'number':
579
  case 'select' :
580
+ case 'groupselect' :
581
  case 'color' :
582
  case 'password' :
583
  case 'radio' :
includes/admin/class-sp-admin-sports.php CHANGED
@@ -5,7 +5,7 @@
5
  * The SportsPress admin sports class stores preset sport data.
6
  *
7
  * @class SP_Admin_Sports
8
- * @version 0.8
9
  * @package SportsPress/Admin
10
  * @category Class
11
  * @author ThemeBoy
@@ -21,11 +21,17 @@ class SP_Admin_Sports {
21
  public static function get_presets() {
22
  if ( empty( self::$presets ) ) {
23
  $presets = array();
 
 
 
 
 
 
24
  $dir = scandir( SP()->plugin_path() . '/presets' );
25
  $files = array();
26
  if ( $dir ) {
27
  foreach ( $dir as $key => $value ) {
28
- if ( substr( $value, 0, 1 ) !== '.' ) {
29
  $files[] = $value;
30
  }
31
  }
@@ -37,18 +43,49 @@ class SP_Admin_Sports {
37
  $id = preg_replace('/\\.[^.\\s]{3,4}$/', '', $file );
38
  $presets[ $id ] = $data;
39
  $name = array_key_exists( 'name', $data ) ? $data['name'] : $id;
40
- self::$options[ $id ] = $name;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  }
42
- self::$options[ 'custom' ] = __( 'Custom', 'sportspress' );
 
43
  self::$presets = apply_filters( 'sportspress_get_presets', $presets );
44
- asort( self::$options );
45
  }
46
  return self::$presets;
47
  }
48
 
49
  public static function get_preset( $id ) {
50
- $json_data = file_get_contents( SP()->plugin_path() . '/presets/' . $id . '.json' );
51
- return json_decode( $json_data, true );
 
 
 
 
 
 
 
 
 
 
 
52
  }
53
 
54
  public static function get_preset_options() {
@@ -89,7 +126,7 @@ class SP_Admin_Sports {
89
  $post = self::get_post_array( $result, $post_type );
90
  if ( empty( $post ) ) continue;
91
  $id = self::insert_preset_post( $post, $index );
92
- if ( array_key_exists( 'primary', $result ) ) $primary_result = $post['post_name'];
93
  }
94
 
95
  // Performance
5
  * The SportsPress admin sports class stores preset sport data.
6
  *
7
  * @class SP_Admin_Sports
8
+ * @version 1.3
9
  * @package SportsPress/Admin
10
  * @category Class
11
  * @author ThemeBoy
21
  public static function get_presets() {
22
  if ( empty( self::$presets ) ) {
23
  $presets = array();
24
+ self::$options = array(
25
+ __( 'Traditional Sports', 'sportspress' ) => array(),
26
+ __( 'Esports', 'sportspress' ) => array(),
27
+ __( 'Other', 'sportspress' ) => array( 'custom' => __( 'Custom', 'sportspress' ) ),
28
+ );
29
+
30
  $dir = scandir( SP()->plugin_path() . '/presets' );
31
  $files = array();
32
  if ( $dir ) {
33
  foreach ( $dir as $key => $value ) {
34
+ if ( substr( $value, 0, 1 ) !== '.' && strpos( $value, '.' ) !== false ) {
35
  $files[] = $value;
36
  }
37
  }
43
  $id = preg_replace('/\\.[^.\\s]{3,4}$/', '', $file );
44
  $presets[ $id ] = $data;
45
  $name = array_key_exists( 'name', $data ) ? $data['name'] : $id;
46
+ self::$options[ __( 'Traditional Sports', 'sportspress' ) ][ $id ] = $name;
47
+ }
48
+ asort( self::$options[ __( 'Traditional Sports', 'sportspress' ) ] );
49
+
50
+ $dir = scandir( SP()->plugin_path() . '/presets/esports' );
51
+ $files = array();
52
+ if ( $dir ) {
53
+ foreach ( $dir as $key => $value ) {
54
+ if ( substr( $value, 0, 1 ) !== '.' && strpos( $value, '.' ) !== false ) {
55
+ $files[] = $value;
56
+ }
57
+ }
58
+ }
59
+ foreach( $files as $file ) {
60
+ $json_data = file_get_contents( SP()->plugin_path() . '/presets/esports/' . $file );
61
+ $data = json_decode( $json_data, true );
62
+ if ( ! is_array( $data ) ) continue;
63
+ $id = preg_replace('/\\.[^.\\s]{3,4}$/', '', $file );
64
+ $presets[ $id ] = $data;
65
+ $name = array_key_exists( 'name', $data ) ? $data['name'] : $id;
66
+ self::$options[ __( 'Esports', 'sportspress' ) ][ $id ] = $name;
67
  }
68
+ asort( self::$options[ __( 'Esports', 'sportspress' ) ] );
69
+
70
  self::$presets = apply_filters( 'sportspress_get_presets', $presets );
 
71
  }
72
  return self::$presets;
73
  }
74
 
75
  public static function get_preset( $id ) {
76
+ $json_data = @file_get_contents( SP()->plugin_path() . '/presets/' . $id . '.json', true );
77
+
78
+ if ( $json_data ) return json_decode( $json_data, true );
79
+
80
+ $dir = scandir( SP()->plugin_path() . '/presets' );
81
+ if ( $dir ) {
82
+ foreach ( $dir as $key => $value ) {
83
+ if ( substr( $value, 0, 1 ) !== '.' && strpos( $value, '.' ) === false ) {
84
+ $json_data = @file_get_contents( SP()->plugin_path() . '/presets/' . $value . '/' . $id . '.json', true );
85
+ if ( $json_data ) return json_decode( $json_data, true );
86
+ }
87
+ }
88
+ }
89
  }
90
 
91
  public static function get_preset_options() {
126
  $post = self::get_post_array( $result, $post_type );
127
  if ( empty( $post ) ) continue;
128
  $id = self::insert_preset_post( $post, $index );
129
+ if ( is_array( $result ) && array_key_exists( 'primary', $result ) ) $primary_result = $post['post_name'];
130
  }
131
 
132
  // Performance
includes/admin/class-sp-admin-welcome.php CHANGED
@@ -9,7 +9,7 @@
9
  * @author ThemeBoy
10
  * @category Admin
11
  * @package SportsPress/Admin
12
- * @version 1.2.5
13
  */
14
 
15
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -75,18 +75,23 @@ class SP_Admin_Welcome {
75
  ?>
76
  <style type="text/css">
77
  /*<![CDATA[*/
 
 
 
78
  .about-sportspress-wrap .sp-badge {
79
  position: absolute;
80
  top: 0;
81
  right: 0;
82
  background: #00cac4 url(<?php echo $badge_url; ?>) no-repeat center top;
83
  text-rendering: optimizeLegibility;
84
- padding-top: 160px;
85
- height: 42px;
86
- width: 165px;
87
  font-size: 14px;
 
88
  text-align: center;
89
- color: #e6e7e8;
 
90
  margin: 5px 0 0 0;
91
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.2);
92
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
@@ -182,11 +187,7 @@ class SP_Admin_Welcome {
182
  if ( isset( $_POST['timezone_string'] ) ):
183
  update_option( 'timezone_string', $_POST['timezone_string'] );
184
  endif;
185
- if ( isset( $_POST['sportspress_mode'] ) && ! empty( $_POST['sportspress_mode'] ) && get_option( 'sportspress_mode', null ) != $_POST['sportspress_mode'] ):
186
- $sport = $_POST['sportspress_mode'];
187
- update_option( 'sportspress_mode', $_POST['sportspress_mode'] );
188
- endif;
189
- if ( isset( $_POST['sportspress_sport'] ) && ! empty( $_POST['sportspress_sport'] ) && get_option( 'sportspress_sport', null ) != $_POST['sportspress_sport'] ):
190
  $sport = $_POST['sportspress_sport'];
191
  SP_Admin_Sports::apply_preset( $sport );
192
  update_option( 'sportspress_sport', $_POST['sportspress_sport'] );
@@ -229,26 +230,12 @@ class SP_Admin_Welcome {
229
  $settings = array( array(
230
  'id' => 'sportspress_sport',
231
  'default' => 'soccer',
232
- 'type' => 'select',
233
  'class' => $class,
234
  'options' => $sport_options,
235
  ));
236
  SP_Admin_Settings::output_fields( $settings );
237
  ?>
238
- <h4><?php _e( 'Mode', 'sportspress' ); ?></h4>
239
- <?php
240
- $settings = array( array(
241
- 'id' => 'sportspress_mode',
242
- 'default' => 'team',
243
- 'type' => 'select',
244
- 'class' => $class,
245
- 'options' => array(
246
- 'team' => _x( 'Team', 'mode select', 'sportspress' ),
247
- 'player' => _x( 'Individual', 'mode select', 'sportspress' ),
248
- ),
249
- ));
250
- SP_Admin_Settings::output_fields( $settings );
251
- ?>
252
  <p class="submit sportspress-actions">
253
  <input name="save" class="button-primary" type="submit" value="<?php _e( 'Save changes', 'sportspress' ); ?>" />
254
  <input type="hidden" name="subtab" id="last_tab" />
@@ -258,6 +245,7 @@ class SP_Admin_Welcome {
258
  </div>
259
  <div>
260
  <h4><?php _e( 'Next Steps', 'sportspress' ); ?></h4>
 
261
  <ul class="sportspress-steps">
262
  <li><a href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => 'sp_team' ), 'post-new.php' ) ) ); ?>" class="welcome-icon welcome-add-team"><?php _e( 'Add New Team', 'sportspress' ); ?></a></li>
263
  <li><a href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => 'sp_player' ), 'post-new.php' ) ) ); ?>" class="welcome-icon welcome-add-player"><?php _e( 'Add New Player', 'sportspress' ); ?></a></li>
@@ -268,7 +256,7 @@ class SP_Admin_Welcome {
268
  <h4><?php _e( 'Translators', 'sportspress' ); ?></h4>
269
  <p><?php _e( 'SportsPress has been kindly translated into several other languages thanks to our translation team. Want to see your name? <a href="https://www.transifex.com/projects/p/sportspress/">Translate SportsPress</a>.', 'sportspress' ); ?></p>
270
  <?php
271
- $translator_handles = array( 'Abdulelah', 'albertone', 'Andrew_Melim', 'ArtakEVN', 'aylaview', 'Bhelpful2', 'bizover', 'BOCo', 'den_zlateva', 'dic_2008', 'doncer', 'fredodq', 'hanro', 'hushiea', 'i__k', 'JensZ', 'joegalaxy66', 'JuKi', 'karimjarro', 'King3R', 'krisop', 'latixns', 'massimo.marra', 'MohamedZ', 'poelie', 'rochester', 'Selskei', 'sijo', 'Spirossmil', 'Taurus', 'ThemeBoy', 'valentijnreza' );
272
  $translator_links = array();
273
  foreach ( $translator_handles as $handle ):
274
  $translator_links[] = '<a href="https://www.transifex.com/accounts/profile/' . $handle . '">' . $handle . '</a>';
9
  * @author ThemeBoy
10
  * @category Admin
11
  * @package SportsPress/Admin
12
+ * @version 1.3
13
  */
14
 
15
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
75
  ?>
76
  <style type="text/css">
77
  /*<![CDATA[*/
78
+ .about-sportspress-wrap .sp-about-text {
79
+ min-height: 0;
80
+ }
81
  .about-sportspress-wrap .sp-badge {
82
  position: absolute;
83
  top: 0;
84
  right: 0;
85
  background: #00cac4 url(<?php echo $badge_url; ?>) no-repeat center top;
86
  text-rendering: optimizeLegibility;
87
+ padding-top: 10px;
88
+ height: 150px;
89
+ width: 150px;
90
  font-size: 14px;
91
+ line-height: 1.75;
92
  text-align: center;
93
+ font-weight: 600;
94
+ color: #c4fffc;
95
  margin: 5px 0 0 0;
96
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.2);
97
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
187
  if ( isset( $_POST['timezone_string'] ) ):
188
  update_option( 'timezone_string', $_POST['timezone_string'] );
189
  endif;
190
+ if ( isset( $_POST['sportspress_sport'] ) && ! empty( $_POST['sportspress_sport'] ) ):
 
 
 
 
191
  $sport = $_POST['sportspress_sport'];
192
  SP_Admin_Sports::apply_preset( $sport );
193
  update_option( 'sportspress_sport', $_POST['sportspress_sport'] );
230
  $settings = array( array(
231
  'id' => 'sportspress_sport',
232
  'default' => 'soccer',
233
+ 'type' => 'groupselect',
234
  'class' => $class,
235
  'options' => $sport_options,
236
  ));
237
  SP_Admin_Settings::output_fields( $settings );
238
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
239
  <p class="submit sportspress-actions">
240
  <input name="save" class="button-primary" type="submit" value="<?php _e( 'Save changes', 'sportspress' ); ?>" />
241
  <input type="hidden" name="subtab" id="last_tab" />
245
  </div>
246
  <div>
247
  <h4><?php _e( 'Next Steps', 'sportspress' ); ?></h4>
248
+ <p><?php _e( 'We&#8217;ve assembled some links to get you started:', 'sportspress' ); ?></p>
249
  <ul class="sportspress-steps">
250
  <li><a href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => 'sp_team' ), 'post-new.php' ) ) ); ?>" class="welcome-icon welcome-add-team"><?php _e( 'Add New Team', 'sportspress' ); ?></a></li>
251
  <li><a href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => 'sp_player' ), 'post-new.php' ) ) ); ?>" class="welcome-icon welcome-add-player"><?php _e( 'Add New Player', 'sportspress' ); ?></a></li>
256
  <h4><?php _e( 'Translators', 'sportspress' ); ?></h4>
257
  <p><?php _e( 'SportsPress has been kindly translated into several other languages thanks to our translation team. Want to see your name? <a href="https://www.transifex.com/projects/p/sportspress/">Translate SportsPress</a>.', 'sportspress' ); ?></p>
258
  <?php
259
+ $translator_handles = array( 'Abdulelah', 'albertone', 'Andrew_Melim', 'ArtakEVN', 'aylaview', 'Bhelpful2', 'bizover', 'BOCo', 'den_zlateva', 'dic_2008', 'doncer', 'Ferenan', 'fredodq', 'hanro', 'hushiea', 'i__k', 'JensZ', 'joegalaxy66', 'JuKi', 'karimjarro', 'King3R', 'krisop', 'latixns', 'massimo.marra', 'MohamedZ', 'poelie', 'rochester', 'Selskei', 'sijo', 'SilverXp', 'Spirossmil', 'Taurus', 'ThemeBoy', 'tyby94', 'valentijnreza', 'Xyteton' );
260
  $translator_links = array();
261
  foreach ( $translator_handles as $handle ):
262
  $translator_links[] = '<a href="https://www.transifex.com/accounts/profile/' . $handle . '">' . $handle . '</a>';
includes/admin/class-sp-admin.php CHANGED
@@ -10,7 +10,7 @@ if ( ! defined( 'ABSPATH' ) ) {
10
  * @author ThemeBoy
11
  * @category Admin
12
  * @package SportsPress/Admin
13
- * @version 1.2
14
  */
15
  class SP_Admin {
16
 
@@ -21,6 +21,9 @@ class SP_Admin {
21
  add_action( 'init', array( $this, 'includes' ) );
22
  add_action( 'current_screen', array( $this, 'conditonal_includes' ) );
23
  add_action( 'admin_init', array( $this, 'prevent_admin_access' ) );
 
 
 
24
  }
25
 
26
  /**
@@ -34,6 +37,7 @@ class SP_Admin {
34
  // Classes
35
  include_once( 'class-sp-admin-post-types.php' );
36
  include_once( 'class-sp-admin-taxonomies.php' );
 
37
 
38
  // Classes we only need if the ajax is not-ajax
39
  if ( ! is_ajax() ) {
10
  * @author ThemeBoy
11
  * @category Admin
12
  * @package SportsPress/Admin
13
+ * @version 1.3
14
  */
15
  class SP_Admin {
16
 
21
  add_action( 'init', array( $this, 'includes' ) );
22
  add_action( 'current_screen', array( $this, 'conditonal_includes' ) );
23
  add_action( 'admin_init', array( $this, 'prevent_admin_access' ) );
24
+ add_action( 'sportspress_settings_page', 'sp_review_link' );
25
+ add_action( 'sportspress_config_page', 'sp_review_link' );
26
+ add_action( 'sportspress_overview_page', 'sp_review_link' );
27
  }
28
 
29
  /**
37
  // Classes
38
  include_once( 'class-sp-admin-post-types.php' );
39
  include_once( 'class-sp-admin-taxonomies.php' );
40
+ include_once( 'class-sp-admin-ajax.php' );
41
 
42
  // Classes we only need if the ajax is not-ajax
43
  if ( ! is_ajax() ) {
includes/admin/importers/class-sp-event-importer.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Importers
8
- * @version 0.9
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -21,351 +21,404 @@ if ( class_exists( 'WP_Importer' ) ) {
21
  */
22
  public function __construct() {
23
  $this->import_page = 'sportspress_event_csv';
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  }
25
 
26
  /**
27
  * import function.
28
  *
29
  * @access public
30
- * @param mixed $file
 
31
  * @return void
32
  */
33
- function import( $file ) {
34
- global $wpdb;
35
-
36
  $this->imported = $this->skipped = 0;
37
 
38
- if ( ! is_file($file) ):
39
  $this->footer();
40
  die();
41
  endif;
42
 
43
- ini_set( 'auto_detect_line_endings', '1' );
44
-
45
- if ( ( $handle = fopen( $file, "r" ) ) !== FALSE ):
46
-
47
- $header = fgetcsv( $handle, 0, $this->delimiter );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
 
49
- if ( sizeof( $header ) >= 3 ):
50
-
51
- $loop = 0;
 
52
 
53
- // Get event format, league, and season from post vars
54
- $event_format = ( empty( $_POST['sp_format'] ) ? false : $_POST['sp_format'] );
55
- $league = ( empty( $_POST['sp_league'] ) ? false : $_POST['sp_league'] );
56
- $season = ( empty( $_POST['sp_season'] ) ? false : $_POST['sp_season'] );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
 
58
- // Get labels from result and performance post types
59
- $result_labels = sp_get_var_labels( 'sp_result' );
60
- $performance_labels = sp_get_var_labels( 'sp_performance' );
61
 
62
- while ( ( $row = fgetcsv( $handle, 0, $this->delimiter ) ) !== FALSE ):
 
63
 
64
- // Slice array into event, team, and player
65
- $event = array_slice( $row, 0, 3 );
66
- $team = array_slice( $row, 3, 3 );
67
- $player = array_slice( $row, 6 );
68
 
69
- // Add new event if date is given
70
- if ( sizeof( $event ) > 0 && ! empty( $event[0] ) ):
71
 
72
- // Add player performance to last event if available
73
- if ( isset( $id ) && isset( $players ) && sizeof( $players ) > 0 ):
74
- update_post_meta( $id, 'sp_players', $players );
75
- endif;
76
 
77
- // List event columns
78
- list( $date, $time, $venue ) = $event;
 
 
79
 
80
- // Format date by replacing slashes with dashes
81
- $date = str_replace( '/', '-', trim( $date ) );
 
 
82
 
83
- // Add time to date if given
84
- if ( ! empty( $time ) ):
85
- $date .= ' ' . trim( $time );
86
- endif;
87
 
88
- // Define post type args
89
- $args = array( 'post_type' => 'sp_event', 'post_status' => 'publish', 'post_date' => $date );
90
 
91
- // Insert event
92
- $id = wp_insert_post( $args );
93
 
94
- // Initialize performance array
95
- $players = array();
96
 
97
- // Flag as import
98
- update_post_meta( $id, '_sp_import', 1 );
99
 
100
- // Update event format
101
- if ( $event_format ):
102
- update_post_meta( $id, 'sp_format', $event_format );
103
- endif;
104
 
105
- // Update league
106
- if ( $league ):
107
- wp_set_object_terms( $id, $league, 'sp_league', false );
108
- endif;
109
 
110
- // Update season
111
- if ( $season ):
112
- wp_set_object_terms( $id, $season, 'sp_season', false );
113
- endif;
114
 
115
- // Update venue
116
- wp_set_object_terms( $id, $venue, 'sp_venue', false );
117
 
118
- // Increment
119
- $loop ++;
120
- $this->imported ++;
121
 
122
- endif;
 
123
 
124
- // Add new team if team name is given
125
- if ( sizeof( $team ) > 0 && ! empty( $team[0] ) ):
126
 
127
- // List team columns
128
- list( $team_name, $result, $outcome ) = $team;
129
 
130
- // Find out if team exists
131
- $team_object = get_page_by_title( $team_name, OBJECT, 'sp_team' );
 
 
132
 
133
- // Get or insert team
134
- if ( $team_object ):
 
 
135
 
136
- // Make sure team is published
137
- if ( $team_object->post_status != 'publish' ):
138
- wp_update_post( array( 'ID' => $team_object->ID, 'post_status' => 'publish' ) );
139
- endif;
140
 
141
- // Get team ID
142
- $team_id = $team_object->ID;
143
 
144
- else:
 
145
 
146
- // Insert team
147
- $team_id = wp_insert_post( array( 'post_type' => 'sp_team', 'post_status' => 'publish', 'post_title' => $team_name ) );
148
 
149
- // Flag as import
150
- update_post_meta( $team_id, '_sp_import', 1 );
 
 
 
 
 
 
151
 
152
- endif;
 
153
 
154
- // Update league
155
- if ( $league ):
156
- wp_set_object_terms( $team_id, $league, 'sp_league', true );
157
- endif;
158
 
159
- // Update season
160
- if ( $season ):
161
- wp_set_object_terms( $team_id, $season, 'sp_season', true );
162
  endif;
163
 
164
- // Add to event if exists
165
- if ( isset( $id ) ):
166
-
167
- // Add team to event
168
- add_post_meta( $id, 'sp_team', $team_id );
169
 
170
- // Add empty player to event
171
- add_post_meta( $id, 'sp_player', 0 );
172
 
173
- // Explode results into array
174
- $results = explode( '|', $result );
175
 
176
- // Create team results array from result keys
177
- $team_results = array();
178
- if ( sizeof( $result_labels ) > 0 ):
179
- foreach( $result_labels as $key => $label ):
180
- $team_results[ $key ] = trim( array_shift( $results ) );
181
- endforeach;
182
- $team_results[ 'outcome' ] = array();
183
  endif;
184
 
185
- // Explode outcomes into array
186
- $outcomes = explode( '|', $outcome );
187
-
188
- // Add outcome slugs to team outcomes array
189
- foreach ( $outcomes as $outcome ):
190
 
191
- // Continue if outcome doesn't exist
192
- if ( $outcome == null ):
193
- continue;
194
- endif;
195
-
196
- // Remove whitespace
197
- $outcome = trim( $outcome );
198
 
199
- // Get or insert outcome
200
- $outcome_object = get_page_by_title( $outcome, OBJECT, 'sp_outcome' );
201
 
202
- if ( $outcome_object ):
 
 
203
 
204
- // Make sure outcome is published
205
- if ( $outcome_object->post_status != 'publish' ):
206
- wp_update_post( array( 'ID' => $outcome_object->ID, 'post_status' => 'publish' ) );
207
- endif;
208
 
209
- // Get outcome slug
210
- $outcome_slug = $outcome_object->post_name;
211
 
212
- else:
 
213
 
214
- // Insert outcome
215
- $outcome_id = wp_insert_post( array( 'post_type' => 'sp_outcome', 'post_status' => 'publish', 'post_title' => $outcome ) );
216
 
217
- // Get outcome slug
218
- $post_data = get_post( $outcome_id, ARRAY_A );
219
- $outcome_slug = $post_data['post_name'];
220
 
221
- // Flag as import
222
- update_post_meta( $outcome_id, '_sp_import', 1 );
 
 
223
 
224
- endif;
 
225
 
226
- // Add to team results array
227
- $team_results[ 'outcome' ][] = $outcome_slug;
228
 
229
- endforeach;
 
230
 
231
- // Get existing results
232
- $event_results = get_post_meta( $id, 'sp_results', true );
 
 
233
 
234
- // Create new array if results not exists
235
- if ( ! $event_results ):
236
- $event_results = array();
237
- endif;
238
 
239
- // Add team results to existing results
240
- $event_results[ $team_id ] = $team_results;
 
 
 
 
241
 
242
- // Update event results
243
- update_post_meta( $id, 'sp_results', $event_results );
244
 
245
- // Get event name
246
- $title = get_the_title( $id );
247
 
248
- // Add delimiter if event name is set
249
- if ( $title ):
250
- $title .= ' ' . get_option( 'sportspress_event_teams_delimiter', 'vs' ) . ' ';
251
- endif;
252
 
253
- // Append team name to event name
254
- $title .= $team_name;
 
255
 
256
- // Update event with new name
257
- $post = array(
258
- 'ID' => $id,
259
- 'post_title' => $title,
260
- );
261
- wp_update_post( $post );
262
 
263
- endif;
 
264
 
 
 
 
265
  endif;
266
 
267
- // Add new player if player name is given
268
- if ( sizeof( $player ) > 0 && ! empty( $player[0] ) ):
269
-
270
- // Get and unset player name leaving us with the performance
271
- $player_name = $player[0];
272
- unset( $player[0] );
273
-
274
- // Find out if player exists
275
- $player_object = get_page_by_title( $player_name, OBJECT, 'sp_player' );
276
 
277
- // Get or insert player
278
- if ( $player_object ):
279
 
280
- // Make sure player is published
281
- if ( $player_object->post_status != 'publish' ):
282
- wp_update_post( array( 'ID' => $player_object->ID, 'post_status' => 'publish' ) );
283
- endif;
284
-
285
- // Get player ID
286
- $player_id = $player_object->ID;
287
-
288
- else:
289
-
290
- // Insert player
291
- $player_id = wp_insert_post( array( 'post_type' => 'sp_player', 'post_status' => 'publish', 'post_title' => $player_name ) );
292
-
293
- // Flag as import
294
- update_post_meta( $player_id, '_sp_import', 1 );
295
-
296
- // Update number
297
- update_post_meta( $player_id, 'sp_number', null );
298
-
299
- endif;
300
 
301
- // Update league
302
- if ( $league ):
303
- wp_set_object_terms( $player_id, $league, 'sp_league', true );
304
- endif;
305
 
306
- // Update season
307
- if ( $season ):
308
- wp_set_object_terms( $player_id, $season, 'sp_season', true );
309
- endif;
310
 
311
- // Add to event if exists
312
- if ( isset( $id ) ):
313
 
314
- // Add player to event
315
- add_post_meta( $id, 'sp_player', $player_id );
316
 
317
- // Add player performance to array if team is available
318
- if ( isset( $team_id ) ):
319
 
320
- // Initialize performance array
321
- $performance = array();
 
 
322
 
323
- // Map keys to player performance
324
- foreach ( $performance_labels as $key => $label ):
325
- $performance[ $key ] = array_shift( $player );
326
- endforeach;
327
- $players[ $team_id ][ $player_id ] = $performance;
328
 
329
- // Get player teams
330
- $player_teams = get_post_meta( $player_id, 'sp_team', false );
331
- $current_team = get_post_meta( $player_id, 'sp_current_team', true );
332
- $past_teams = get_post_meta( $player_id, 'sp_past_team', false );
333
 
334
- // Add team if not exists in player
335
- if ( ! in_array( $team_id, $player_teams ) ):
336
- add_post_meta( $player_id, 'sp_team', $team_id );
337
- endif;
338
 
339
- // Add as past team or set current team if not set
340
- if ( ! $current_team ):
341
- update_post_meta( $player_id, 'sp_current_team', $team_id );
342
- elseif ( $current_team != $team_id && ! in_array( $team_id, $past_teams ) ):
343
- add_post_meta( $player_id, 'sp_past_team', $team_id );
344
- endif;
345
 
346
- endif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
347
 
 
 
 
 
 
348
  endif;
349
 
350
  endif;
351
 
352
- endwhile;
353
-
354
- // Add player performance to last event if available
355
- if ( isset( $id ) && isset( $players ) && sizeof( $players ) > 0 ):
356
- update_post_meta( $id, 'sp_players', $players );
357
  endif;
358
 
359
- else:
360
-
361
- echo '<p><strong>' . __( 'Sorry, there has been an error.', 'sportspress' ) . '</strong><br />';
362
- _e( 'The CSV is invalid.', 'sportspress' ) . '</p>';
363
- $this->footer();
364
- die();
365
-
366
  endif;
367
 
368
- fclose( $handle );
 
 
 
 
369
  endif;
370
 
371
  // Show Result
@@ -386,114 +439,93 @@ if ( class_exists( 'WP_Importer' ) ) {
386
  }
387
 
388
  /**
389
- * header function.
390
  *
391
  * @access public
392
  * @return void
393
  */
394
- function header() {
395
- echo '<div class="wrap"><h2>' . __( 'Import Events', 'sportspress' ) . '</h2>';
 
 
 
 
396
  }
397
 
398
  /**
399
- * greet function.
400
  *
401
  * @access public
402
  * @return void
403
  */
404
- function greet() {
405
-
406
- echo '<div class="narrow">';
407
- echo '<p>' . __( 'Hi there! Choose a .csv file to upload, then click "Upload file and import".', 'sportspress' ).'</p>';
408
-
409
- echo '<p>' . sprintf( __( 'Events need to be defined with columns in a specific order (3+ columns). <a href="%s">Click here to download a sample</a>.', 'sportspress' ), plugin_dir_url( SP_PLUGIN_FILE ) . 'dummy-data/events-sample.csv' ) . '</p>';
410
-
411
- $action = 'admin.php?import=sportspress_event_csv&step=1';
412
-
413
- $bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );
414
- $size = size_format( $bytes );
415
- $upload_dir = wp_upload_dir();
416
- if ( ! empty( $upload_dir['error'] ) ) :
417
- ?><div class="error"><p><?php _e('Before you can upload your import file, you will need to fix the following error:', 'sportspress'); ?></p>
418
- <p><strong><?php echo $upload_dir['error']; ?></strong></p></div><?php
419
- else :
420
- ?>
421
- <form enctype="multipart/form-data" id="import-upload-form" method="post" action="<?php echo esc_attr(wp_nonce_url($action, 'import-upload')); ?>">
422
- <table class="form-table">
423
- <tbody>
424
- <tr>
425
- <th>
426
- <label for="upload"><?php _e( 'Choose a file from your computer:', 'sportspress' ); ?></label>
427
- </th>
428
- <td>
429
- <input type="file" id="upload" name="import" size="25" />
430
- <input type="hidden" name="action" value="save" />
431
- <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
432
- <small><?php printf( __( 'Maximum size: %s', 'sportspress' ), $size ); ?></small>
433
- </td>
434
- </tr>
435
- <tr>
436
- <th>
437
- <label for="file_url"><?php _e( 'OR enter path to file:', 'sportspress' ); ?></label>
438
- </th>
439
- <td>
440
- <?php echo ' ' . ABSPATH . ' '; ?><input type="text" id="file_url" name="file_url" size="25" />
441
- </td>
442
- </tr>
443
- <tr>
444
- <th><label><?php _e( 'Delimiter', 'sportspress' ); ?></label><br/></th>
445
- <td><input type="text" name="delimiter" placeholder="," size="2" /></td>
446
- </tr>
447
- <tr>
448
- <th><label><?php _e( 'Format', 'sportspress' ); ?></label><br/></th>
449
- <td id="sp_formatdiv">
450
- <div id="post-formats-select">
451
- <input type="radio" name="sp_format" class="post-format" id="post-format-league" value="league" checked="checked"> <label for="post-format-league" class="post-format-icon post-format-league">League</label>
452
- <br><input type="radio" name="sp_format" class="post-format" id="post-format-friendly" value="friendly"> <label for="post-format-friendly" class="post-format-icon post-format-friendly">Friendly</label>
453
- <br>
454
- </div>
455
- </td>
456
- </tr>
457
- <tr>
458
- <th><label><?php _e( 'League', 'sportspress' ); ?></label><br/></th>
459
- <td><?php
460
- $args = array(
461
- 'taxonomy' => 'sp_league',
462
- 'name' => 'sp_league',
463
- 'values' => 'slug',
464
- 'show_option_none' => __( '-- Not set --', 'sportspress' ),
465
- );
466
- if ( ! sp_dropdown_taxonomies( $args ) ):
467
- echo '<p>' . __( 'None', 'sportspress' ) . '</p>';
468
- sp_taxonomy_adder( 'sp_league', 'sp_team', __( 'Add New', 'sportspress' ) );
469
- endif;
470
- ?></td>
471
- </tr>
472
- <tr>
473
- <th><label><?php _e( 'Season', 'sportspress' ); ?></label><br/></th>
474
- <td><?php
475
- $args = array(
476
- 'taxonomy' => 'sp_season',
477
- 'name' => 'sp_season',
478
- 'values' => 'slug',
479
- 'show_option_none' => __( '-- Not set --', 'sportspress' ),
480
- );
481
- if ( ! sp_dropdown_taxonomies( $args ) ):
482
- echo '<p>' . __( 'None', 'sportspress' ) . '</p>';
483
- sp_taxonomy_adder( 'sp_season', 'sp_team', __( 'Add New', 'sportspress' ) );
484
- endif;
485
- ?></td>
486
- </tr>
487
- </tbody>
488
- </table>
489
- <p class="submit">
490
- <input type="submit" class="button" value="<?php esc_attr_e( 'Upload file and import', 'sportspress' ); ?>" />
491
- </p>
492
- </form>
493
- <?php
494
- endif;
495
-
496
- echo '</div>';
497
  }
498
  }
499
  }
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Importers
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
21
  */
22
  public function __construct() {
23
  $this->import_page = 'sportspress_event_csv';
24
+ $this->import_label = __( 'Import Events', 'sportspress' );
25
+ $this->columns = array(
26
+ 'post_date' => __( 'Date', 'sportspress' ),
27
+ 'post_time' => __( 'Time', 'sportspress' ),
28
+ 'sp_venue' => __( 'Venue', 'sportspress' ),
29
+ 'sp_team' => __( 'Teams', 'sportspress' ),
30
+ 'sp_results' => __( 'Results', 'sportspress' ),
31
+ 'sp_outcome' => __( 'Outcome', 'sportspress' ),
32
+ 'sp_player' => __( 'Players', 'sportspress' ),
33
+ );
34
+ $performance_labels = sp_get_var_labels( 'sp_performance' );
35
+ if ( $performance_labels && is_array( $performance_labels ) && sizeof( $performance_labels ) )
36
+ $this->columns = array_merge( $this->columns, $performance_labels );
37
  }
38
 
39
  /**
40
  * import function.
41
  *
42
  * @access public
43
+ * @param array $array
44
+ * @param array $columns
45
  * @return void
46
  */
47
+ function import( $array = array(), $columns = array( 'post_title' ) ) {
 
 
48
  $this->imported = $this->skipped = 0;
49
 
50
+ if ( ! is_array( $array ) || ! sizeof( $array ) ):
51
  $this->footer();
52
  die();
53
  endif;
54
 
55
+ $rows = array_chunk( $array, sizeof( $columns ) );
56
+
57
+ // Get event format, league, and season from post vars
58
+ $event_format = ( empty( $_POST['sp_format'] ) ? false : $_POST['sp_format'] );
59
+ $league = ( sp_array_value( $_POST, 'sp_league', '-1' ) == '-1' ? false : $_POST['sp_league'] );
60
+ $season = ( sp_array_value( $_POST, 'sp_season', '-1' ) == '-1' ? false : $_POST['sp_season'] );
61
+ $date_format = ( empty( $_POST['sp_date_format'] ) ? 'yyyy/mm/dd' : $_POST['sp_date_format'] );
62
+
63
+ // Get labels from result and performance post types
64
+ $result_labels = sp_get_var_labels( 'sp_result' );
65
+ $performance_labels = sp_get_var_labels( 'sp_performance' );
66
+
67
+ foreach ( $rows as $row ):
68
+
69
+ $row = array_filter( $row );
70
+
71
+ if ( empty( $row ) ) continue;
72
+
73
+ $meta = array();
74
+
75
+ foreach ( $columns as $index => $key ):
76
+ $meta[ $key ] = sp_array_value( $row, $index );
77
+ endforeach;
78
+
79
+ // Slice array into event, team, and player
80
+ $event = array_slice( $row, 0, 3 );
81
+ $team = array_slice( $row, 3, 3 );
82
+ $player = array_slice( $row, 6 );
83
+
84
+ // Get event details
85
+ $event = array(
86
+ sp_array_value( $meta, 'post_date' ),
87
+ sp_array_value( $meta, 'post_time' ),
88
+ sp_array_value( $meta, 'sp_venue' ),
89
+ );
90
+ unset( $meta['post_date'] );
91
+ unset( $meta['post_time'] );
92
+ unset( $meta['sp_venue'] );
93
+
94
+ // Get team results
95
+ $team = array(
96
+ sp_array_value( $meta, 'sp_team' ),
97
+ sp_array_value( $meta, 'sp_results' ),
98
+ sp_array_value( $meta, 'sp_outcome' ),
99
+ );
100
+ unset( $meta['sp_team'] );
101
+ unset( $meta['sp_results'] );
102
+ unset( $meta['sp_outcome'] );
103
+
104
+ // Get player performance
105
+ $player = array(
106
+ sp_array_value( $meta, 'sp_player' ),
107
+ );
108
+ unset( $meta['sp_player' ] );
109
+ foreach ( $performance_labels as $key => $label ):
110
+ $player[] = sp_array_value( $meta, $key, '' );
111
+ endforeach;
112
+
113
+ // Add new event if date is given
114
+ if ( sizeof( $event ) > 0 && ! empty( $event[0] ) ):
115
 
116
+ // Add player performance to last event if available
117
+ if ( isset( $id ) && isset( $players ) && sizeof( $players ) > 0 ):
118
+ update_post_meta( $id, 'sp_players', $players );
119
+ endif;
120
 
121
+ // List event columns
122
+ list( $date, $time, $venue ) = $event;
123
+
124
+ // Format date
125
+ $date = str_replace( '/', '-', trim( $date ) );
126
+ $date_array = explode( '-', $date );
127
+ switch ( $date_format ):
128
+ case 'dd/mm/yyyy':
129
+ $date = substr( str_pad( sp_array_value( $date_array, 2, '0000' ), 4, '0', STR_PAD_LEFT ), 0, 4 ) . '-' .
130
+ substr( str_pad( sp_array_value( $date_array, 1, '00' ), 2, '0', STR_PAD_LEFT ), 0, 2 ) . '-' .
131
+ substr( str_pad( sp_array_value( $date_array, 0, '00' ), 2, '0', STR_PAD_LEFT ), 0, 2 );
132
+ break;
133
+ case 'mm/dd/yyyy':
134
+ $date = substr( str_pad( sp_array_value( $date_array, 2, '0000' ), 4, '0', STR_PAD_LEFT ), 0, 4 ) . '-' .
135
+ substr( str_pad( sp_array_value( $date_array, 0, '00' ), 2, '0', STR_PAD_LEFT ), 0, 2 ) . '-' .
136
+ substr( str_pad( sp_array_value( $date_array, 1, '00' ), 2, '0', STR_PAD_LEFT ), 0, 2 );
137
+ default:
138
+ $date = substr( str_pad( sp_array_value( $date_array, 0, '0000' ), 4, '0', STR_PAD_LEFT ), 0, 4 ) . '-' .
139
+ substr( str_pad( sp_array_value( $date_array, 1, '00' ), 2, '0', STR_PAD_LEFT ), 0, 2 ) . '-' .
140
+ substr( str_pad( sp_array_value( $date_array, 2, '00' ), 2, '0', STR_PAD_LEFT ), 0, 2 );
141
+ endswitch;
142
+
143
+ // Add time to date if given
144
+ if ( ! empty( $time ) ):
145
+ $date .= ' ' . trim( $time );
146
+ endif;
147
 
148
+ // Define post type args
149
+ $args = array( 'post_type' => 'sp_event', 'post_status' => 'publish', 'post_date' => $date );
 
150
 
151
+ // Insert event
152
+ $id = wp_insert_post( $args );
153
 
154
+ // Initialize performance array
155
+ $players = array();
 
 
156
 
157
+ // Flag as import
158
+ update_post_meta( $id, '_sp_import', 1 );
159
 
160
+ // Update event format
161
+ if ( $event_format ):
162
+ update_post_meta( $id, 'sp_format', $event_format );
163
+ endif;
164
 
165
+ // Update league
166
+ if ( $league ):
167
+ wp_set_object_terms( $id, $league, 'sp_league', false );
168
+ endif;
169
 
170
+ // Update season
171
+ if ( $season ):
172
+ wp_set_object_terms( $id, $season, 'sp_season', false );
173
+ endif;
174
 
175
+ // Update venue
176
+ wp_set_object_terms( $id, $venue, 'sp_venue', false );
 
 
177
 
178
+ // Increment
179
+ $this->imported ++;
180
 
181
+ endif;
 
182
 
183
+ // Add new team if team name is given
184
+ if ( sizeof( $team ) > 0 && ! empty( $team[0] ) ):
185
 
186
+ // List team columns
187
+ list( $team_name, $result, $outcome ) = $team;
188
 
189
+ // Find out if team exists
190
+ $team_object = get_page_by_title( $team_name, OBJECT, 'sp_team' );
 
 
191
 
192
+ // Get or insert team
193
+ if ( $team_object ):
 
 
194
 
195
+ // Make sure team is published
196
+ if ( $team_object->post_status != 'publish' ):
197
+ wp_update_post( array( 'ID' => $team_object->ID, 'post_status' => 'publish' ) );
198
+ endif;
199
 
200
+ // Get team ID
201
+ $team_id = $team_object->ID;
202
 
203
+ else:
 
 
204
 
205
+ // Insert team
206
+ $team_id = wp_insert_post( array( 'post_type' => 'sp_team', 'post_status' => 'publish', 'post_title' => $team_name ) );
207
 
208
+ // Flag as import
209
+ update_post_meta( $team_id, '_sp_import', 1 );
210
 
211
+ endif;
 
212
 
213
+ // Update league
214
+ if ( $league ):
215
+ wp_set_object_terms( $team_id, $league, 'sp_league', true );
216
+ endif;
217
 
218
+ // Update season
219
+ if ( $season ):
220
+ wp_set_object_terms( $team_id, $season, 'sp_season', true );
221
+ endif;
222
 
223
+ // Add to event if exists
224
+ if ( isset( $id ) ):
 
 
225
 
226
+ // Add team to event
227
+ add_post_meta( $id, 'sp_team', $team_id );
228
 
229
+ // Add empty player to event
230
+ add_post_meta( $id, 'sp_player', 0 );
231
 
232
+ // Explode results into array
233
+ $results = explode( '|', $result );
234
 
235
+ // Create team results array from result keys
236
+ $team_results = array();
237
+ if ( sizeof( $result_labels ) > 0 ):
238
+ foreach( $result_labels as $key => $label ):
239
+ $team_results[ $key ] = trim( array_shift( $results ) );
240
+ endforeach;
241
+ $team_results[ 'outcome' ] = array();
242
+ endif;
243
 
244
+ // Explode outcomes into array
245
+ $outcomes = explode( '|', $outcome );
246
 
247
+ // Add outcome slugs to team outcomes array
248
+ foreach ( $outcomes as $outcome ):
 
 
249
 
250
+ // Continue if outcome doesn't exist
251
+ if ( $outcome == null ):
252
+ continue;
253
  endif;
254
 
255
+ // Remove whitespace
256
+ $outcome = trim( $outcome );
 
 
 
257
 
258
+ // Get or insert outcome
259
+ $outcome_object = get_page_by_title( $outcome, OBJECT, 'sp_outcome' );
260
 
261
+ if ( $outcome_object ):
 
262
 
263
+ // Make sure outcome is published
264
+ if ( $outcome_object->post_status != 'publish' ):
265
+ wp_update_post( array( 'ID' => $outcome_object->ID, 'post_status' => 'publish' ) );
 
 
 
 
266
  endif;
267
 
268
+ // Get outcome slug
269
+ $outcome_slug = $outcome_object->post_name;
 
 
 
270
 
271
+ else:
 
 
 
 
 
 
272
 
273
+ // Insert outcome
274
+ $outcome_id = wp_insert_post( array( 'post_type' => 'sp_outcome', 'post_status' => 'publish', 'post_title' => $outcome ) );
275
 
276
+ // Get outcome slug
277
+ $post_data = get_post( $outcome_id, ARRAY_A );
278
+ $outcome_slug = $post_data['post_name'];
279
 
280
+ // Flag as import
281
+ update_post_meta( $outcome_id, '_sp_import', 1 );
 
 
282
 
283
+ endif;
 
284
 
285
+ // Add to team results array
286
+ $team_results[ 'outcome' ][] = $outcome_slug;
287
 
288
+ endforeach;
 
289
 
290
+ // Get existing results
291
+ $event_results = get_post_meta( $id, 'sp_results', true );
 
292
 
293
+ // Create new array if results not exists
294
+ if ( ! $event_results ):
295
+ $event_results = array();
296
+ endif;
297
 
298
+ // Add team results to existing results
299
+ $event_results[ $team_id ] = $team_results;
300
 
301
+ // Update event results
302
+ update_post_meta( $id, 'sp_results', $event_results );
303
 
304
+ // Get event name
305
+ $title = get_the_title( $id );
306
 
307
+ // Add delimiter if event name is set
308
+ if ( $title ):
309
+ $title .= ' ' . get_option( 'sportspress_event_teams_delimiter', 'vs' ) . ' ';
310
+ endif;
311
 
312
+ // Append team name to event name
313
+ $title .= $team_name;
 
 
314
 
315
+ // Update event with new name
316
+ $post = array(
317
+ 'ID' => $id,
318
+ 'post_title' => $title,
319
+ );
320
+ wp_update_post( $post );
321
 
322
+ endif;
 
323
 
324
+ endif;
 
325
 
326
+ // Add new player if player name is given
327
+ if ( sizeof( $player ) > 0 && ! empty( $player[0] ) ):
 
 
328
 
329
+ // Get and unset player name leaving us with the performance
330
+ $player_name = $player[0];
331
+ unset( $player[0] );
332
 
333
+ // Find out if player exists
334
+ $player_object = get_page_by_title( $player_name, OBJECT, 'sp_player' );
 
 
 
 
335
 
336
+ // Get or insert player
337
+ if ( $player_object ):
338
 
339
+ // Make sure player is published
340
+ if ( $player_object->post_status != 'publish' ):
341
+ wp_update_post( array( 'ID' => $player_object->ID, 'post_status' => 'publish' ) );
342
  endif;
343
 
344
+ // Get player ID
345
+ $player_id = $player_object->ID;
 
 
 
 
 
 
 
346
 
347
+ // Get player number
348
+ $player_number = get_post_meta( $player_id, 'sp_number', true );
349
 
350
+ else:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
351
 
352
+ // Insert player
353
+ $player_id = wp_insert_post( array( 'post_type' => 'sp_player', 'post_status' => 'publish', 'post_title' => $player_name ) );
 
 
354
 
355
+ // Flag as import
356
+ update_post_meta( $player_id, '_sp_import', 1 );
 
 
357
 
358
+ // Update number
359
+ update_post_meta( $player_id, 'sp_number', null );
360
 
361
+ // Get player number
362
+ $player_number = null;
363
 
364
+ endif;
 
365
 
366
+ // Update league
367
+ if ( $league ):
368
+ wp_set_object_terms( $player_id, $league, 'sp_league', true );
369
+ endif;
370
 
371
+ // Update season
372
+ if ( $season ):
373
+ wp_set_object_terms( $player_id, $season, 'sp_season', true );
374
+ endif;
 
375
 
376
+ // Add to event if exists
377
+ if ( isset( $id ) ):
 
 
378
 
379
+ // Add player to event
380
+ add_post_meta( $id, 'sp_player', $player_id );
 
 
381
 
382
+ // Add player performance to array if team is available
383
+ if ( isset( $team_id ) ):
 
 
 
 
384
 
385
+ // Initialize performance array
386
+ $performance = array( 'number' => $player_number );
387
+
388
+ // Map keys to player performance
389
+ foreach ( $performance_labels as $key => $label ):
390
+ $performance[ $key ] = array_shift( $player );
391
+ endforeach;
392
+ $players[ $team_id ][ $player_id ] = $performance;
393
+
394
+ // Get player teams
395
+ $player_teams = get_post_meta( $player_id, 'sp_team', false );
396
+ $current_team = get_post_meta( $player_id, 'sp_current_team', true );
397
+ $past_teams = get_post_meta( $player_id, 'sp_past_team', false );
398
+
399
+ // Add team if not exists in player
400
+ if ( ! in_array( $team_id, $player_teams ) ):
401
+ add_post_meta( $player_id, 'sp_team', $team_id );
402
+ endif;
403
 
404
+ // Add as past team or set current team if not set
405
+ if ( ! $current_team ):
406
+ update_post_meta( $player_id, 'sp_current_team', $team_id );
407
+ elseif ( $current_team != $team_id && ! in_array( $team_id, $past_teams ) ):
408
+ add_post_meta( $player_id, 'sp_past_team', $team_id );
409
  endif;
410
 
411
  endif;
412
 
 
 
 
 
 
413
  endif;
414
 
 
 
 
 
 
 
 
415
  endif;
416
 
417
+ endforeach;
418
+
419
+ // Add player performance to last event if available
420
+ if ( isset( $id ) && isset( $players ) && sizeof( $players ) > 0 ):
421
+ update_post_meta( $id, 'sp_players', $players );
422
  endif;
423
 
424
  // Show Result
439
  }
440
 
441
  /**
442
+ * greet function.
443
  *
444
  * @access public
445
  * @return void
446
  */
447
+ function greet() {
448
+ echo '<div class="narrow">';
449
+ echo '<p>' . __( 'Hi there! Choose a .csv file to upload, then click "Upload file and import".', 'sportspress' ).'</p>';
450
+ echo '<p>' . sprintf( __( 'Events need to be defined with columns in a specific order (3+ columns). <a href="%s">Click here to download a sample</a>.', 'sportspress' ), plugin_dir_url( SP_PLUGIN_FILE ) . 'dummy-data/events-sample.csv' ) . '</p>';
451
+ wp_import_upload_form( 'admin.php?import=sportspress_event_csv&step=1' );
452
+ echo '</div>';
453
  }
454
 
455
  /**
456
+ * options function.
457
  *
458
  * @access public
459
  * @return void
460
  */
461
+ function options() {
462
+ ?>
463
+ <table class="form-table">
464
+ <tbody>
465
+ <tr>
466
+ <th scope="row"><label><?php _e( 'Format', 'sportspress' ); ?></label><br/></th>
467
+ <td class="forminp forminp-radio" id="sp_formatdiv">
468
+ <fieldset id="post-formats-select">
469
+ <ul>
470
+ <li><input type="radio" name="sp_format" class="post-format" id="post-format-league" value="league" checked="checked"> <label for="post-format-league" class="post-format-icon post-format-league">League</label></li>
471
+ <li><input type="radio" name="sp_format" class="post-format" id="post-format-friendly" value="friendly"> <label for="post-format-friendly" class="post-format-icon post-format-friendly">Friendly</label></li>
472
+ <br>
473
+ </fieldset>
474
+ </td>
475
+ </tr>
476
+ <tr>
477
+ <th scope="row"><label><?php _e( 'League', 'sportspress' ); ?></label><br/></th>
478
+ <td><?php
479
+ $args = array(
480
+ 'taxonomy' => 'sp_league',
481
+ 'name' => 'sp_league',
482
+ 'values' => 'slug',
483
+ 'show_option_none' => __( '-- Not set --', 'sportspress' ),
484
+ );
485
+ if ( ! sp_dropdown_taxonomies( $args ) ):
486
+ echo '<p>' . __( 'None', 'sportspress' ) . '</p>';
487
+ sp_taxonomy_adder( 'sp_league', 'sp_team', __( 'Add New', 'sportspress' ) );
488
+ endif;
489
+ ?></td>
490
+ </tr>
491
+ <tr>
492
+ <th scope="row"><label><?php _e( 'Season', 'sportspress' ); ?></label><br/></th>
493
+ <td><?php
494
+ $args = array(
495
+ 'taxonomy' => 'sp_season',
496
+ 'name' => 'sp_season',
497
+ 'values' => 'slug',
498
+ 'show_option_none' => __( '-- Not set --', 'sportspress' ),
499
+ );
500
+ if ( ! sp_dropdown_taxonomies( $args ) ):
501
+ echo '<p>' . __( 'None', 'sportspress' ) . '</p>';
502
+ sp_taxonomy_adder( 'sp_season', 'sp_team', __( 'Add New', 'sportspress' ) );
503
+ endif;
504
+ ?></td>
505
+ </tr>
506
+ <tr>
507
+ <th scope="row" class="titledesc">
508
+ <?php _e( 'Date Format', 'sportspress' ); ?>
509
+ </th>
510
+ <td class="forminp forminp-radio">
511
+ <fieldset>
512
+ <ul>
513
+ <li>
514
+ <label><input name="sp_date_format" value="yyyy/mm/dd" type="radio" checked> yyyy/mm/dd</label>
515
+ </li>
516
+ <li>
517
+ <label><input name="sp_date_format" value="dd/mm/yyyy" type="radio"> dd/mm/yyyy</label>
518
+ </li>
519
+ <li>
520
+ <label><input name="sp_date_format" value="mm/dd/yyyy" type="radio"> mm/dd/yyyy</label>
521
+ </li>
522
+ </ul>
523
+ </fieldset>
524
+ </td>
525
+ </tr>
526
+ </tbody>
527
+ </table>
528
+ <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
529
  }
530
  }
531
  }
includes/admin/importers/class-sp-importer.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Importers
8
- * @version 0.9
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -20,6 +20,22 @@ if ( class_exists( 'WP_Importer' ) ) {
20
  var $posts = array();
21
  var $imported;
22
  var $skipped;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
  /**
25
  * Registered callback function for the WordPress Importer
@@ -58,13 +74,126 @@ if ( class_exists( 'WP_Importer' ) ) {
58
  @ob_flush();
59
  @flush();
60
 
61
- $this->import( $file );
 
 
 
 
 
 
 
62
  endif;
63
  break;
64
  endswitch;
65
  $this->footer();
66
  }
67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  /**
69
  * format_data_from_csv function.
70
  *
@@ -122,7 +251,7 @@ if ( class_exists( 'WP_Importer' ) ) {
122
  * @return void
123
  */
124
  function header() {
125
- echo '<div class="wrap"><h2>' . __( 'Import', 'sportspress' ) . '</h2>';
126
  }
127
 
128
  /**
@@ -135,6 +264,15 @@ if ( class_exists( 'WP_Importer' ) ) {
135
  echo '</div>';
136
  }
137
 
 
 
 
 
 
 
 
 
 
138
  /**
139
  * Added to http_request_timeout filter to force timeout at 60 seconds during import
140
  * @param int $val
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Importers
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
20
  var $posts = array();
21
  var $imported;
22
  var $skipped;
23
+ var $import_label;
24
+ var $columns = array();
25
+
26
+ /**
27
+ * Constructor.
28
+ */
29
+ public function __construct() {
30
+ add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
31
+ }
32
+
33
+ /**
34
+ * Enqueue scripts
35
+ */
36
+ public function admin_scripts() {
37
+ wp_enqueue_script( 'sportspress-admin', SP()->plugin_url() . '/assets/js/admin/sportspress-admin.js', array( 'jquery', 'chosen', 'jquery-ui-core', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-tiptip', 'jquery-caret', 'jquery-countdown' ), SP_VERSION, true );
38
+ }
39
 
40
  /**
41
  * Registered callback function for the WordPress Importer
74
  @ob_flush();
75
  @flush();
76
 
77
+ $this->table( $file );
78
+ endif;
79
+ break;
80
+ case 2:
81
+ check_admin_referer( 'import-upload' );
82
+ if ( isset( $_POST['sp_import'] ) ):
83
+ $columns = array_filter( sp_array_value( $_POST, 'sp_columns', array( 'post_title' ) ) );
84
+ $this->import( $_POST['sp_import'], array_values( $columns ) );
85
  endif;
86
  break;
87
  endswitch;
88
  $this->footer();
89
  }
90
 
91
+ /**
92
+ * dropdown function.
93
+ *
94
+ * @access public
95
+ * @param mixed $file
96
+ * @return void
97
+ */
98
+ function dropdown( $selected ) {
99
+ ?>
100
+ <select name="sp_columns[]" data-index="<?php echo array_search( $selected, array_keys( $this->columns ) ); ?>">
101
+ <option value="0">&mdash; <?php _e( 'Disable', 'sportspress' ); ?> &mdash;</option>
102
+ <?php foreach ( $this->columns as $key => $label ): ?>
103
+ <option value="<?php echo $key; ?>" <?php selected( $selected, $key ); ?>><?php echo $label; ?></option>
104
+ <?php endforeach; ?>
105
+ </select>
106
+ <?php
107
+ }
108
+
109
+ /**
110
+ * table function.
111
+ *
112
+ * @access public
113
+ * @param mixed $file
114
+ * @return void
115
+ */
116
+ function table( $file ) {
117
+ global $wpdb;
118
+
119
+ $this->imported = $this->skipped = 0;
120
+
121
+ if ( ! is_file($file) ):
122
+ $this->footer();
123
+ die();
124
+ endif;
125
+
126
+ ini_set( 'auto_detect_line_endings', '1' );
127
+
128
+ if ( ( $handle = fopen( $file, "r" ) ) !== FALSE ):
129
+
130
+ $header = fgetcsv( $handle, 0, $this->delimiter );
131
+
132
+ if ( sizeof( $header ) >= 1 ):
133
+ $action = 'admin.php?import=' . $this->import_page . '&step=2';
134
+ ?>
135
+ <form enctype="multipart/form-data" id="import-upload-form" class="sportspress" method="post" action="<?php echo esc_attr(wp_nonce_url($action, 'import-upload')); ?>">
136
+ <?php $this->options(); ?>
137
+ <table class="wp-list-table sp-data-table sp-import-table widefat fixed pages">
138
+ <thead>
139
+ <tr>
140
+ <?php foreach ( $this->columns as $key => $label ): ?>
141
+ <th scope="col" class="manage-column">
142
+ <?php $this->dropdown( $key ); ?>
143
+ </th>
144
+ <?php endforeach; ?>
145
+ <th scope="col" class="sp-actions-column">
146
+ <a href="#" title="<?php _e( 'Insert row after', 'sportspress' ); ?>" class="dashicons dashicons-plus-alt sp-add-row sp-add-first"></a>
147
+ </th>
148
+ </tr>
149
+ </thead>
150
+ <tbody>
151
+ <?php while ( ( $row = fgetcsv( $handle, 0, $this->delimiter ) ) !== FALSE ): ?>
152
+ <tr>
153
+ <?php $index = 0; foreach ( $this->columns as $key => $label ): $value = sp_array_value( $row, $index ); ?>
154
+ <td>
155
+ <input type="text" class="widefat" value="<?php echo $value; ?>" name="sp_import[]">
156
+ </td>
157
+ <?php $index ++; endforeach; ?>
158
+ <td class="sp-actions-column">
159
+ <a href="#" title="<?php _e( 'Delete row', 'sportspress' ); ?>" class="sp-icon-trash sp-delete-row"></a>
160
+ <a href="#" title="<?php _e( 'Insert row after', 'sportspress' ); ?>" class="dashicons dashicons-plus-alt sp-add-row"></a>
161
+ </td>
162
+ </tr>
163
+ <?php $this->imported++; endwhile; ?>
164
+ <tr>
165
+ <?php foreach ( $this->columns as $key => $label ): ?>
166
+ <td>
167
+ <input type="text" class="widefat" name="sp_import[]">
168
+ </td>
169
+ <?php endforeach; ?>
170
+ <td class="sp-actions-column">
171
+ <a href="#" title="<?php _e( 'Insert row after', 'sportspress' ); ?>" class="dashicons dashicons-plus-alt sp-add-row"></a>
172
+ </td>
173
+ </tr>
174
+ </tbody>
175
+ </table>
176
+ <p class="sp-post-count alignright">
177
+ <?php printf( __( 'Displaying %s&#8211;%s of %s', 'sportspress' ), 1, $this->imported+1, $this->imported+1 ); ?>
178
+ </p>
179
+ <p class="submit">
180
+ <input type="submit" class="button button-primary button-hero" value="<?php echo esc_attr( $this->import_label ); ?>" />
181
+ </p>
182
+ </form>
183
+ <?php
184
+ else:
185
+
186
+ echo '<p><strong>' . __( 'Sorry, there has been an error.', 'sportspress' ) . '</strong><br />';
187
+ _e( 'The CSV is invalid.', 'sportspress' ) . '</p>';
188
+ $this->footer();
189
+ die();
190
+
191
+ endif;
192
+
193
+ fclose( $handle );
194
+ endif;
195
+ }
196
+
197
  /**
198
  * format_data_from_csv function.
199
  *
251
  * @return void
252
  */
253
  function header() {
254
+ echo '<div class="wrap"><h2>' . $this->import_label . '</h2>';
255
  }
256
 
257
  /**
264
  echo '</div>';
265
  }
266
 
267
+ /**
268
+ * options function.
269
+ *
270
+ * @access public
271
+ * @return void
272
+ */
273
+ function options() {
274
+ }
275
+
276
  /**
277
  * Added to http_request_timeout filter to force timeout at 60 seconds during import
278
  * @param int $val
includes/admin/importers/class-sp-player-importer.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Importers
8
- * @version 0.9
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -21,119 +21,116 @@ if ( class_exists( 'WP_Importer' ) ) {
21
  */
22
  public function __construct() {
23
  $this->import_page = 'sportspress_player_csv';
 
 
 
 
 
 
 
 
 
 
 
24
  }
25
 
26
  /**
27
  * import function.
28
  *
29
  * @access public
30
- * @param mixed $file
 
31
  * @return void
32
  */
33
- function import( $file ) {
34
- global $wpdb;
35
-
36
  $this->imported = $this->skipped = 0;
37
 
38
- if ( ! is_file($file) ):
39
  $this->footer();
40
  die();
41
  endif;
42
 
43
- ini_set( 'auto_detect_line_endings', '1' );
44
 
45
- if ( ( $handle = fopen( $file, "r" ) ) !== FALSE ):
46
 
47
- $header = fgetcsv( $handle, 0, $this->delimiter );
48
 
49
- if ( sizeof( $header ) == 7 ):
50
 
51
- $loop = 0;
52
 
53
- while ( ( $row = fgetcsv( $handle, 0, $this->delimiter ) ) !== FALSE ):
 
 
54
 
55
- list( $number, $name, $positions, $teams, $leagues, $seasons, $nationality ) = $row;
56
 
57
- $nationality = trim( strtoupper( $nationality ) );
 
 
 
58
 
59
- if ( $nationality == '*' )
60
- $nationality = '';
61
 
62
- if ( ! $name ):
63
- $this->skipped++;
64
- continue;
65
- endif;
 
 
 
66
 
67
- $args = array( 'post_type' => 'sp_player', 'post_status' => 'publish', 'post_title' => $name );
 
 
68
 
69
- $id = wp_insert_post( $args );
 
 
70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  // Flag as import
72
- update_post_meta( $id, '_sp_import', 1 );
73
-
74
- // Update number
75
- update_post_meta( $id, 'sp_number', $number );
76
-
77
- // Update positions
78
- $positions = explode( '|', $positions );
79
- wp_set_object_terms( $id, $positions, 'sp_position', false );
80
-
81
- // Update leagues
82
- $leagues = explode( '|', $leagues );
83
- wp_set_object_terms( $id, $leagues, 'sp_league', false );
84
-
85
- // Update seasons
86
- $seasons = explode( '|', $seasons );
87
- wp_set_object_terms( $id, $seasons, 'sp_season', false );
88
-
89
- // Update teams
90
- $teams = (array)explode( '|', $teams );
91
- $i = 0;
92
- foreach ( $teams as $team ):
93
- // Get or insert team
94
- $team_object = get_page_by_title( $team, OBJECT, 'sp_team' );
95
- if ( $team_object ):
96
- if ( $team_object->post_status != 'publish' ):
97
- wp_update_post( array( 'ID' => $team_object->ID, 'post_status' => 'publish' ) );
98
- endif;
99
- $team_id = $team_object->ID;
100
- else:
101
- $team_id = wp_insert_post( array( 'post_type' => 'sp_team', 'post_status' => 'publish', 'post_title' => $team ) );
102
- // Flag as import
103
- update_post_meta( $team_id, '_sp_import', 1 );
104
- wp_set_object_terms( $team_id, $leagues, 'sp_league', false );
105
- wp_set_object_terms( $team_id, $seasons, 'sp_season', false );
106
- endif;
107
-
108
- // Add team to player
109
- add_post_meta( $id, 'sp_team', $team_id );
110
-
111
- // Update current team if first in array
112
- if ( $i == 0 ):
113
- update_post_meta( $id, 'sp_current_team', $team_id );
114
- endif;
115
-
116
- $i++;
117
- endforeach;
118
-
119
- // Update nationality
120
- update_post_meta( $id, 'sp_nationality', $nationality );
121
-
122
- $loop ++;
123
- $this->imported++;
124
- endwhile;
125
-
126
- else:
127
-
128
- echo '<p><strong>' . __( 'Sorry, there has been an error.', 'sportspress' ) . '</strong><br />';
129
- _e( 'The CSV is invalid.', 'sportspress' ) . '</p>';
130
- $this->footer();
131
- die();
132
 
133
- endif;
 
134
 
135
- fclose( $handle );
136
- endif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
 
138
  // Show Result
139
  echo '<div class="updated settings-error below-h2"><p>
@@ -169,57 +166,10 @@ if ( class_exists( 'WP_Importer' ) ) {
169
  * @return void
170
  */
171
  function greet() {
172
-
173
  echo '<div class="narrow">';
174
  echo '<p>' . __( 'Hi there! Choose a .csv file to upload, then click "Upload file and import".', 'sportspress' ).'</p>';
175
-
176
  echo '<p>' . sprintf( __( 'Players need to be defined with columns in a specific order (7 columns). <a href="%s">Click here to download a sample</a>.', 'sportspress' ), plugin_dir_url( SP_PLUGIN_FILE ) . 'dummy-data/players-sample.csv' ) . '</p>';
177
-
178
- $action = 'admin.php?import=sportspress_player_csv&step=1';
179
-
180
- $bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );
181
- $size = size_format( $bytes );
182
- $upload_dir = wp_upload_dir();
183
- if ( ! empty( $upload_dir['error'] ) ) :
184
- ?><div class="error"><p><?php _e('Before you can upload your import file, you will need to fix the following error:', 'sportspress'); ?></p>
185
- <p><strong><?php echo $upload_dir['error']; ?></strong></p></div><?php
186
- else :
187
- ?>
188
- <form enctype="multipart/form-data" id="import-upload-form" method="post" action="<?php echo esc_attr(wp_nonce_url($action, 'import-upload')); ?>">
189
- <table class="form-table">
190
- <tbody>
191
- <tr>
192
- <th>
193
- <label for="upload"><?php _e( 'Choose a file from your computer:', 'sportspress' ); ?></label>
194
- </th>
195
- <td>
196
- <input type="file" id="upload" name="import" size="25" />
197
- <input type="hidden" name="action" value="save" />
198
- <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
199
- <small><?php printf( __( 'Maximum size: %s', 'sportspress' ), $size ); ?></small>
200
- </td>
201
- </tr>
202
- <tr>
203
- <th>
204
- <label for="file_url"><?php _e( 'OR enter path to file:', 'sportspress' ); ?></label>
205
- </th>
206
- <td>
207
- <?php echo ' ' . ABSPATH . ' '; ?><input type="text" id="file_url" name="file_url" size="25" />
208
- </td>
209
- </tr>
210
- <tr>
211
- <th><label><?php _e( 'Delimiter', 'sportspress' ); ?></label><br/></th>
212
- <td><input type="text" name="delimiter" placeholder="," size="2" /></td>
213
- </tr>
214
- </tbody>
215
- </table>
216
- <p class="submit">
217
- <input type="submit" class="button" value="<?php esc_attr_e( 'Upload file and import', 'sportspress' ); ?>" />
218
- </p>
219
- </form>
220
- <?php
221
- endif;
222
-
223
  echo '</div>';
224
  }
225
  }
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Importers
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
21
  */
22
  public function __construct() {
23
  $this->import_page = 'sportspress_player_csv';
24
+ $this->import_label = __( 'Import Players', 'sportspress' );
25
+ $this->columns = array(
26
+ 'sp_number' => __( 'Number', 'sportspress' ),
27
+ 'post_title' => __( 'Name', 'sportspress' ),
28
+ 'sp_position' => __( 'Positions', 'sportspress' ),
29
+ 'sp_team' => __( 'Teams', 'sportspress' ),
30
+ 'sp_league' => __( 'Leagues', 'sportspress' ),
31
+ 'sp_season' => __( 'Seasons', 'sportspress' ),
32
+ 'sp_nationality' => __( 'Nationality', 'sportspress' ),
33
+ );
34
+ parent::__construct();
35
  }
36
 
37
  /**
38
  * import function.
39
  *
40
  * @access public
41
+ * @param array $array
42
+ * @param array $columns
43
  * @return void
44
  */
45
+ function import( $array = array(), $columns = array( 'post_title' ) ) {
 
 
46
  $this->imported = $this->skipped = 0;
47
 
48
+ if ( ! is_array( $array ) || ! sizeof( $array ) ):
49
  $this->footer();
50
  die();
51
  endif;
52
 
53
+ $rows = array_chunk( $array, sizeof( $columns ) );
54
 
55
+ foreach ( $rows as $row ):
56
 
57
+ $row = array_filter( $row );
58
 
59
+ if ( empty( $row ) ) continue;
60
 
61
+ $meta = array();
62
 
63
+ foreach ( $columns as $index => $key ):
64
+ $meta[ $key ] = sp_array_value( $row, $index );
65
+ endforeach;
66
 
67
+ $name = sp_array_value( $meta, 'post_title' );
68
 
69
+ if ( ! $name ):
70
+ $this->skipped++;
71
+ continue;
72
+ endif;
73
 
74
+ $args = array( 'post_type' => 'sp_player', 'post_status' => 'publish', 'post_title' => $name );
 
75
 
76
+ $id = wp_insert_post( $args );
77
+
78
+ // Flag as import
79
+ update_post_meta( $id, '_sp_import', 1 );
80
+
81
+ // Update number
82
+ update_post_meta( $id, 'sp_number', sp_array_value( $meta, 'sp_number' ) );
83
 
84
+ // Update positions
85
+ $positions = explode( '|', sp_array_value( $meta, 'sp_position' ) );
86
+ wp_set_object_terms( $id, $positions, 'sp_position', false );
87
 
88
+ // Update leagues
89
+ $leagues = explode( '|', sp_array_value( $meta, 'sp_league' ) );
90
+ wp_set_object_terms( $id, $leagues, 'sp_league', false );
91
 
92
+ // Update seasons
93
+ $seasons = explode( '|', sp_array_value( $meta, 'sp_season' ) );
94
+ wp_set_object_terms( $id, $seasons, 'sp_season', false );
95
+
96
+ // Update teams
97
+ $teams = (array)explode( '|', sp_array_value( $meta, 'sp_team' ) );
98
+ $i = 0;
99
+ foreach ( $teams as $team ):
100
+ // Get or insert team
101
+ $team_object = get_page_by_title( $team, OBJECT, 'sp_team' );
102
+ if ( $team_object ):
103
+ if ( $team_object->post_status != 'publish' ):
104
+ wp_update_post( array( 'ID' => $team_object->ID, 'post_status' => 'publish' ) );
105
+ endif;
106
+ $team_id = $team_object->ID;
107
+ else:
108
+ $team_id = wp_insert_post( array( 'post_type' => 'sp_team', 'post_status' => 'publish', 'post_title' => $team ) );
109
  // Flag as import
110
+ update_post_meta( $team_id, '_sp_import', 1 );
111
+ wp_set_object_terms( $team_id, $leagues, 'sp_league', false );
112
+ wp_set_object_terms( $team_id, $seasons, 'sp_season', false );
113
+ endif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
 
115
+ // Add team to player
116
+ add_post_meta( $id, 'sp_team', $team_id );
117
 
118
+ // Update current team if first in array
119
+ if ( $i == 0 ):
120
+ update_post_meta( $id, 'sp_current_team', $team_id );
121
+ endif;
122
+
123
+ $i++;
124
+ endforeach;
125
+
126
+ // Update nationality
127
+ $nationality = trim( strtoupper( sp_array_value( $meta, 'sp_nationality' ) ) );
128
+ if ( $nationality == '*' ) $nationality = '';
129
+ update_post_meta( $id, 'sp_nationality', $nationality );
130
+
131
+ $this->imported++;
132
+
133
+ endforeach;
134
 
135
  // Show Result
136
  echo '<div class="updated settings-error below-h2"><p>
166
  * @return void
167
  */
168
  function greet() {
 
169
  echo '<div class="narrow">';
170
  echo '<p>' . __( 'Hi there! Choose a .csv file to upload, then click "Upload file and import".', 'sportspress' ).'</p>';
 
171
  echo '<p>' . sprintf( __( 'Players need to be defined with columns in a specific order (7 columns). <a href="%s">Click here to download a sample</a>.', 'sportspress' ), plugin_dir_url( SP_PLUGIN_FILE ) . 'dummy-data/players-sample.csv' ) . '</p>';
172
+ wp_import_upload_form( 'admin.php?import=sportspress_player_csv&step=1' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  echo '</div>';
174
  }
175
  }
includes/admin/importers/class-sp-staff-importer.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Importers
8
- * @version 0.9
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -21,112 +21,112 @@ if ( class_exists( 'WP_Importer' ) ) {
21
  */
22
  public function __construct() {
23
  $this->import_page = 'sportspress_staff_csv';
 
 
 
 
 
 
 
 
 
 
24
  }
25
 
26
  /**
27
  * import function.
28
  *
29
  * @access public
30
- * @param mixed $file
 
31
  * @return void
32
  */
33
- function import( $file ) {
34
- global $wpdb;
35
-
36
  $this->imported = $this->skipped = 0;
37
 
38
- if ( ! is_file($file) ):
39
  $this->footer();
40
  die();
41
  endif;
42
 
43
- ini_set( 'auto_detect_line_endings', '1' );
 
 
44
 
45
- if ( ( $handle = fopen( $file, "r" ) ) !== FALSE ):
46
 
47
- $header = fgetcsv( $handle, 0, $this->delimiter );
48
 
49
- if ( sizeof( $header ) == 5 ):
50
 
51
- $loop = 0;
 
 
52
 
53
- while ( ( $row = fgetcsv( $handle, 0, $this->delimiter ) ) !== FALSE ):
54
 
55
- list( $name, $teams, $leagues, $seasons, $nationality ) = $row;
 
 
 
56
 
57
- $nationality = trim( strtoupper( $nationality ) );
58
 
59
- if ( $nationality == '*' )
60
- $nationality = '';
61
 
62
- if ( ! $name ):
63
- $this->skipped++;
64
- continue;
65
- endif;
66
 
67
- $args = array( 'post_type' => 'sp_staff', 'post_status' => 'publish', 'post_title' => $name );
 
 
68
 
69
- $id = wp_insert_post( $args );
 
 
70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  // Flag as import
72
- update_post_meta( $id, '_sp_import', 1 );
73
-
74
- // Update leagues
75
- $leagues = explode( '|', $leagues );
76
- wp_set_object_terms( $id, $leagues, 'sp_league', false );
77
-
78
- // Update seasons
79
- $seasons = explode( '|', $seasons );
80
- wp_set_object_terms( $id, $seasons, 'sp_season', false );
81
-
82
- // Update teams
83
- $teams = (array)explode( '|', $teams );
84
- $i = 0;
85
- foreach ( $teams as $team ):
86
- // Get or insert team
87
- $team_object = get_page_by_title( $team, OBJECT, 'sp_team' );
88
- if ( $team_object ):
89
- if ( $team_object->post_status != 'publish' ):
90
- wp_update_post( array( 'ID' => $team_object->ID, 'post_status' => 'publish' ) );
91
- endif;
92
- $team_id = $team_object->ID;
93
- else:
94
- $team_id = wp_insert_post( array( 'post_type' => 'sp_team', 'post_status' => 'publish', 'post_title' => $team ) );
95
- // Flag as import
96
- update_post_meta( $team_id, '_sp_import', 1 );
97
- wp_set_object_terms( $team_id, $leagues, 'sp_league', false );
98
- wp_set_object_terms( $team_id, $seasons, 'sp_season', false );
99
- endif;
100
-
101
- // Add team to staff
102
- add_post_meta( $id, 'sp_team', $team_id );
103
-
104
- // Update current team if first in array
105
- if ( $i == 0 ):
106
- update_post_meta( $id, 'sp_current_team', $team_id );
107
- endif;
108
-
109
- $i++;
110
- endforeach;
111
-
112
- // Update nationality
113
- update_post_meta( $id, 'sp_nationality', $nationality );
114
-
115
- $loop ++;
116
- $this->imported++;
117
- endwhile;
118
-
119
- else:
120
-
121
- echo '<p><strong>' . __( 'Sorry, there has been an error.', 'sportspress' ) . '</strong><br />';
122
- _e( 'The CSV is invalid.', 'sportspress' ) . '</p>';
123
- $this->footer();
124
- die();
125
 
126
- endif;
 
127
 
128
- fclose( $handle );
129
- endif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
 
131
  // Show Result
132
  echo '<div class="updated settings-error below-h2"><p>
@@ -162,57 +162,10 @@ if ( class_exists( 'WP_Importer' ) ) {
162
  * @return void
163
  */
164
  function greet() {
165
-
166
  echo '<div class="narrow">';
167
  echo '<p>' . __( 'Hi there! Choose a .csv file to upload, then click "Upload file and import".', 'sportspress' ).'</p>';
168
-
169
- echo '<p>' . sprintf( __( 'Staff need to be defined with columns in a specific order (5 columns). <a href="%s">Click here to download a sample</a>.', 'sportspress' ), plugin_dir_url( SP_PLUGIN_FILE ) . 'dummy-data/staff-sample.csv' ) . '</p>';
170
-
171
- $action = 'admin.php?import=sportspress_staff_csv&step=1';
172
-
173
- $bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );
174
- $size = size_format( $bytes );
175
- $upload_dir = wp_upload_dir();
176
- if ( ! empty( $upload_dir['error'] ) ) :
177
- ?><div class="error"><p><?php _e('Before you can upload your import file, you will need to fix the following error:', 'sportspress'); ?></p>
178
- <p><strong><?php echo $upload_dir['error']; ?></strong></p></div><?php
179
- else :
180
- ?>
181
- <form enctype="multipart/form-data" id="import-upload-form" method="post" action="<?php echo esc_attr(wp_nonce_url($action, 'import-upload')); ?>">
182
- <table class="form-table">
183
- <tbody>
184
- <tr>
185
- <th>
186
- <label for="upload"><?php _e( 'Choose a file from your computer:', 'sportspress' ); ?></label>
187
- </th>
188
- <td>
189
- <input type="file" id="upload" name="import" size="25" />
190
- <input type="hidden" name="action" value="save" />
191
- <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
192
- <small><?php printf( __( 'Maximum size: %s', 'sportspress' ), $size ); ?></small>
193
- </td>
194
- </tr>
195
- <tr>
196
- <th>
197
- <label for="file_url"><?php _e( 'OR enter path to file:', 'sportspress' ); ?></label>
198
- </th>
199
- <td>
200
- <?php echo ' ' . ABSPATH . ' '; ?><input type="text" id="file_url" name="file_url" size="25" />
201
- </td>
202
- </tr>
203
- <tr>
204
- <th><label><?php _e( 'Delimiter', 'sportspress' ); ?></label><br/></th>
205
- <td><input type="text" name="delimiter" placeholder="," size="2" /></td>
206
- </tr>
207
- </tbody>
208
- </table>
209
- <p class="submit">
210
- <input type="submit" class="button" value="<?php esc_attr_e( 'Upload file and import', 'sportspress' ); ?>" />
211
- </p>
212
- </form>
213
- <?php
214
- endif;
215
-
216
  echo '</div>';
217
  }
218
  }
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Importers
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
21
  */
22
  public function __construct() {
23
  $this->import_page = 'sportspress_staff_csv';
24
+ $this->import_label = __( 'Import Staff', 'sportspress' );
25
+ $this->columns = array(
26
+ 'post_title' => __( 'Name', 'sportspress' ),
27
+ 'sp_role' => __( 'Roles', 'sportspress' ),
28
+ 'sp_team' => __( 'Teams', 'sportspress' ),
29
+ 'sp_league' => __( 'Leagues', 'sportspress' ),
30
+ 'sp_season' => __( 'Seasons', 'sportspress' ),
31
+ 'sp_nationality' => __( 'Nationality', 'sportspress' ),
32
+ );
33
+ parent::__construct();
34
  }
35
 
36
  /**
37
  * import function.
38
  *
39
  * @access public
40
+ * @param array $array
41
+ * @param array $columns
42
  * @return void
43
  */
44
+ function import( $array = array(), $columns = array( 'post_title' ) ) {
 
 
45
  $this->imported = $this->skipped = 0;
46
 
47
+ if ( ! is_array( $array ) || ! sizeof( $array ) ):
48
  $this->footer();
49
  die();
50
  endif;
51
 
52
+ $rows = array_chunk( $array, sizeof( $columns ) );
53
+
54
+ foreach ( $rows as $row ):
55
 
56
+ $row = array_filter( $row );
57
 
58
+ if ( empty( $row ) ) continue;
59
 
60
+ $meta = array();
61
 
62
+ foreach ( $columns as $index => $key ):
63
+ $meta[ $key ] = sp_array_value( $row, $index );
64
+ endforeach;
65
 
66
+ $name = sp_array_value( $meta, 'post_title' );
67
 
68
+ if ( ! $name ):
69
+ $this->skipped++;
70
+ continue;
71
+ endif;
72
 
73
+ $args = array( 'post_type' => 'sp_staff', 'post_status' => 'publish', 'post_title' => $name );
74
 
75
+ $id = wp_insert_post( $args );
 
76
 
77
+ // Flag as import
78
+ update_post_meta( $id, '_sp_import', 1 );
 
 
79
 
80
+ // Update roles
81
+ $roles = explode( '|', sp_array_value( $meta, 'sp_role' ) );
82
+ wp_set_object_terms( $id, $roles, 'sp_role', false );
83
 
84
+ // Update leagues
85
+ $leagues = explode( '|', sp_array_value( $meta, 'sp_league' ) );
86
+ wp_set_object_terms( $id, $leagues, 'sp_league', false );
87
 
88
+ // Update seasons
89
+ $seasons = explode( '|', sp_array_value( $meta, 'sp_season' ) );
90
+ wp_set_object_terms( $id, $seasons, 'sp_season', false );
91
+
92
+ // Update teams
93
+ $teams = (array)explode( '|', sp_array_value( $meta, 'sp_team' ) );
94
+ $i = 0;
95
+ foreach ( $teams as $team ):
96
+ // Get or insert team
97
+ $team_object = get_page_by_title( $team, OBJECT, 'sp_team' );
98
+ if ( $team_object ):
99
+ if ( $team_object->post_status != 'publish' ):
100
+ wp_update_post( array( 'ID' => $team_object->ID, 'post_status' => 'publish' ) );
101
+ endif;
102
+ $team_id = $team_object->ID;
103
+ else:
104
+ $team_id = wp_insert_post( array( 'post_type' => 'sp_team', 'post_status' => 'publish', 'post_title' => $team ) );
105
  // Flag as import
106
+ update_post_meta( $team_id, '_sp_import', 1 );
107
+ wp_set_object_terms( $team_id, $leagues, 'sp_league', false );
108
+ wp_set_object_terms( $team_id, $seasons, 'sp_season', false );
109
+ endif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
 
111
+ // Add team to staff
112
+ add_post_meta( $id, 'sp_team', $team_id );
113
 
114
+ // Update current team if first in array
115
+ if ( $i == 0 ):
116
+ update_post_meta( $id, 'sp_current_team', $team_id );
117
+ endif;
118
+
119
+ $i++;
120
+ endforeach;
121
+
122
+ // Update nationality
123
+ $nationality = trim( strtoupper( sp_array_value( $meta, 'sp_nationality' ) ) );
124
+ if ( $nationality == '*' ) $nationality = '';
125
+ update_post_meta( $id, 'sp_nationality', $nationality );
126
+
127
+ $this->imported++;
128
+
129
+ endforeach;
130
 
131
  // Show Result
132
  echo '<div class="updated settings-error below-h2"><p>
162
  * @return void
163
  */
164
  function greet() {
 
165
  echo '<div class="narrow">';
166
  echo '<p>' . __( 'Hi there! Choose a .csv file to upload, then click "Upload file and import".', 'sportspress' ).'</p>';
167
+ echo '<p>' . sprintf( __( 'Staff need to be defined with columns in a specific order (6 columns). <a href="%s">Click here to download a sample</a>.', 'sportspress' ), plugin_dir_url( SP_PLUGIN_FILE ) . 'dummy-data/staff-sample.csv' ) . '</p>';
168
+ wp_import_upload_form( 'admin.php?import=sportspress_staff_csv&step=1' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
169
  echo '</div>';
170
  }
171
  }
includes/admin/importers/class-sp-team-importer.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Importers
8
- * @version 0.9
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -21,76 +21,73 @@ if ( class_exists( 'WP_Importer' ) ) {
21
  */
22
  public function __construct() {
23
  $this->import_page = 'sportspress_team_csv';
 
 
 
 
 
 
 
 
 
 
24
  }
25
 
26
  /**
27
  * import function.
28
  *
29
  * @access public
30
- * @param mixed $file
 
31
  * @return void
32
  */
33
- function import( $file ) {
34
- global $wpdb;
35
-
36
  $this->imported = $this->skipped = 0;
37
 
38
- if ( ! is_file($file) ):
39
  $this->footer();
40
  die();
41
  endif;
42
 
43
- ini_set( 'auto_detect_line_endings', '1' );
44
-
45
- if ( ( $handle = fopen( $file, "r" ) ) !== FALSE ):
46
-
47
- $header = fgetcsv( $handle, 0, $this->delimiter );
48
-
49
- if ( sizeof( $header ) == 3 ):
50
-
51
- $loop = 0;
52
 
53
- while ( ( $row = fgetcsv( $handle, 0, $this->delimiter ) ) !== FALSE ):
54
 
55
- list( $name, $leagues, $seasons ) = $row;
56
 
57
- $team_object = get_page_by_title( $name, OBJECT, 'sp_team' );
58
 
59
- if ( ! $name || $team_object ):
60
- $this->skipped++;
61
- continue;
62
- endif;
63
 
64
- $args = array( 'post_type' => 'sp_team', 'post_status' => 'publish', 'post_title' => $name );
 
 
65
 
66
- $id = wp_insert_post( $args );
67
 
68
- // Flag as import
69
- update_post_meta( $id, '_sp_import', 1 );
 
 
70
 
71
- // Update leagues
72
- $leagues = explode( '|', $leagues );
73
- wp_set_object_terms( $id, $leagues, 'sp_league', false );
74
 
75
- // Update seasons
76
- $seasons = explode( '|', $seasons );
77
- wp_set_object_terms( $id, $seasons, 'sp_season', false );
78
 
79
- $loop ++;
80
- $this->imported++;
81
- endwhile;
82
 
83
- else:
 
 
84
 
85
- echo '<p><strong>' . __( 'Sorry, there has been an error.', 'sportspress' ) . '</strong><br />';
86
- _e( 'The CSV is invalid.', 'sportspress' ) . '</p>';
87
- $this->footer();
88
- die();
89
 
90
- endif;
91
 
92
- fclose( $handle );
93
- endif;
94
 
95
  // Show Result
96
  echo '<div class="updated settings-error below-h2"><p>
@@ -109,16 +106,6 @@ if ( class_exists( 'WP_Importer' ) ) {
109
  do_action( 'import_end' );
110
  }
111
 
112
- /**
113
- * header function.
114
- *
115
- * @access public
116
- * @return void
117
- */
118
- function header() {
119
- echo '<div class="wrap"><h2>' . __( 'Import Teams', 'sportspress' ) . '</h2>';
120
- }
121
-
122
  /**
123
  * greet function.
124
  *
@@ -126,57 +113,10 @@ if ( class_exists( 'WP_Importer' ) ) {
126
  * @return void
127
  */
128
  function greet() {
129
-
130
  echo '<div class="narrow">';
131
  echo '<p>' . __( 'Hi there! Choose a .csv file to upload, then click "Upload file and import".', 'sportspress' ).'</p>';
132
-
133
  echo '<p>' . sprintf( __( 'Teams need to be defined with columns in a specific order (3 columns). <a href="%s">Click here to download a sample</a>.', 'sportspress' ), plugin_dir_url( SP_PLUGIN_FILE ) . 'dummy-data/teams-sample.csv' ) . '</p>';
134
-
135
- $action = 'admin.php?import=sportspress_team_csv&step=1';
136
-
137
- $bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );
138
- $size = size_format( $bytes );
139
- $upload_dir = wp_upload_dir();
140
- if ( ! empty( $upload_dir['error'] ) ) :
141
- ?><div class="error"><p><?php _e('Before you can upload your import file, you will need to fix the following error:', 'sportspress'); ?></p>
142
- <p><strong><?php echo $upload_dir['error']; ?></strong></p></div><?php
143
- else :
144
- ?>
145
- <form enctype="multipart/form-data" id="import-upload-form" method="post" action="<?php echo esc_attr(wp_nonce_url($action, 'import-upload')); ?>">
146
- <table class="form-table">
147
- <tbody>
148
- <tr>
149
- <th>
150
- <label for="upload"><?php _e( 'Choose a file from your computer:', 'sportspress' ); ?></label>
151
- </th>
152
- <td>
153
- <input type="file" id="upload" name="import" size="25" />
154
- <input type="hidden" name="action" value="save" />
155
- <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
156
- <small><?php printf( __( 'Maximum size: %s', 'sportspress' ), $size ); ?></small>
157
- </td>
158
- </tr>
159
- <tr>
160
- <th>
161
- <label for="file_url"><?php _e( 'OR enter path to file:', 'sportspress' ); ?></label>
162
- </th>
163
- <td>
164
- <?php echo ' ' . ABSPATH . ' '; ?><input type="text" id="file_url" name="file_url" size="25" />
165
- </td>
166
- </tr>
167
- <tr>
168
- <th><label><?php _e( 'Delimiter', 'sportspress' ); ?></label><br/></th>
169
- <td><input type="text" name="delimiter" placeholder="," size="2" /></td>
170
- </tr>
171
- </tbody>
172
- </table>
173
- <p class="submit">
174
- <input type="submit" class="button" value="<?php esc_attr_e( 'Upload file and import', 'sportspress' ); ?>" />
175
- </p>
176
- </form>
177
- <?php
178
- endif;
179
-
180
  echo '</div>';
181
  }
182
  }
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Importers
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
21
  */
22
  public function __construct() {
23
  $this->import_page = 'sportspress_team_csv';
24
+ $this->import_label = __( 'Import Teams', 'sportspress' );
25
+ $this->columns = array(
26
+ 'post_title' => __( 'Name', 'sportspress' ),
27
+ 'sp_league' => __( 'Leagues', 'sportspress' ),
28
+ 'sp_season' => __( 'Seasons', 'sportspress' ),
29
+ 'sp_url' => __( 'Site URL', 'sportspress' ),
30
+ 'sp_abbreviation' => __( 'Abbreviation', 'sportspress' ),
31
+ 'sp_venue' => __( 'Home', 'sportspress' ),
32
+ );
33
+ parent::__construct();
34
  }
35
 
36
  /**
37
  * import function.
38
  *
39
  * @access public
40
+ * @param array $array
41
+ * @param array $columns
42
  * @return void
43
  */
44
+ function import( $array = array(), $columns = array( 'post_title' ) ) {
 
 
45
  $this->imported = $this->skipped = 0;
46
 
47
+ if ( ! is_array( $array ) || ! sizeof( $array ) ):
48
  $this->footer();
49
  die();
50
  endif;
51
 
52
+ $rows = array_chunk( $array, sizeof( $columns ) );
 
 
 
 
 
 
 
 
53
 
54
+ foreach ( $rows as $row ):
55
 
56
+ $row = array_filter( $row );
57
 
58
+ if ( empty( $row ) ) continue;
59
 
60
+ $meta = array();
 
 
 
61
 
62
+ foreach ( $columns as $index => $key ):
63
+ $meta[ $key ] = sp_array_value( $row, $index );
64
+ endforeach;
65
 
66
+ $name = sp_array_value( $meta, 'post_title' );
67
 
68
+ if ( ! $name ):
69
+ $this->skipped++;
70
+ continue;
71
+ endif;
72
 
73
+ $args = array( 'post_type' => 'sp_team', 'post_status' => 'publish', 'post_title' => $name );
 
 
74
 
75
+ $id = wp_insert_post( $args );
 
 
76
 
77
+ // Flag as import
78
+ update_post_meta( $id, '_sp_import', 1 );
 
79
 
80
+ // Update leagues
81
+ $leagues = explode( '|', sp_array_value( $meta, 'sp_league' ) );
82
+ wp_set_object_terms( $id, $leagues, 'sp_league', false );
83
 
84
+ // Update seasons
85
+ $seasons = explode( '|', sp_array_value( $meta, 'sp_season' ) );
86
+ wp_set_object_terms( $id, $seasons, 'sp_season', false );
 
87
 
88
+ $this->imported++;
89
 
90
+ endforeach;
 
91
 
92
  // Show Result
93
  echo '<div class="updated settings-error below-h2"><p>
106
  do_action( 'import_end' );
107
  }
108
 
 
 
 
 
 
 
 
 
 
 
109
  /**
110
  * greet function.
111
  *
113
  * @return void
114
  */
115
  function greet() {
 
116
  echo '<div class="narrow">';
117
  echo '<p>' . __( 'Hi there! Choose a .csv file to upload, then click "Upload file and import".', 'sportspress' ).'</p>';
 
118
  echo '<p>' . sprintf( __( 'Teams need to be defined with columns in a specific order (3 columns). <a href="%s">Click here to download a sample</a>.', 'sportspress' ), plugin_dir_url( SP_PLUGIN_FILE ) . 'dummy-data/teams-sample.csv' ) . '</p>';
119
+ wp_import_upload_form( 'admin.php?import=sportspress_team_csv&step=1' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  echo '</div>';
121
  }
122
  }
includes/admin/post-types/class-sp-admin-cpt-calendar.php CHANGED
@@ -42,7 +42,8 @@ class SP_Admin_CPT_Calendar extends SP_Admin_CPT {
42
  * Change the columns shown in admin.
43
  */
44
  public function edit_columns( $existing_columns ) {
45
- $columns = array(
 
46
  'cb' => '<input type="checkbox" />',
47
  'title' => __( 'Title', 'sportspress' ),
48
  'sp_league' => __( 'League', 'sportspress' ),
@@ -51,7 +52,7 @@ class SP_Admin_CPT_Calendar extends SP_Admin_CPT {
51
  'sp_team' => __( 'Team', 'sportspress' ),
52
  'sp_events' => __( 'Events', 'sportspress' ),
53
  'sp_layout' => __( 'Layout', 'sportspress' ),
54
- );
55
  return apply_filters( 'sportspress_calendar_admin_columns', $columns );
56
  }
57
 
42
  * Change the columns shown in admin.
43
  */
44
  public function edit_columns( $existing_columns ) {
45
+ unset( $existing_columns['author'], $existing_columns['date'] );
46
+ $columns = array_merge( array(
47
  'cb' => '<input type="checkbox" />',
48
  'title' => __( 'Title', 'sportspress' ),
49
  'sp_league' => __( 'League', 'sportspress' ),
52
  'sp_team' => __( 'Team', 'sportspress' ),
53
  'sp_events' => __( 'Events', 'sportspress' ),
54
  'sp_layout' => __( 'Layout', 'sportspress' ),
55
+ ), $existing_columns );
56
  return apply_filters( 'sportspress_calendar_admin_columns', $columns );
57
  }
58
 
includes/admin/post-types/class-sp-admin-cpt-event.php CHANGED
@@ -84,17 +84,20 @@ class SP_Admin_CPT_Event extends SP_Admin_CPT {
84
  * Change the columns shown in admin.
85
  */
86
  public function edit_columns( $existing_columns ) {
87
- $columns = array(
 
88
  'cb' => '<input type="checkbox" />',
89
  'sp_format' => '<span class="dashicons sp-icon-calendar tips" title="' . __( 'Format', 'sportspress' ) . '"></span>',
90
- 'title' => __( 'Event', 'sportspress' ),
91
  'date' => __( 'Date', 'sportspress' ),
92
  'sp_time' => __( 'Time', 'sportspress' ),
93
  'sp_team' => __( 'Teams', 'sportspress' ),
94
  'sp_league' => __( 'League', 'sportspress' ),
95
  'sp_season' => __( 'Season', 'sportspress' ),
96
  'sp_venue' => __( 'Venue', 'sportspress' ),
97
- );
 
 
98
  return apply_filters( 'sportspress_event_admin_columns', $columns );
99
  }
100
 
@@ -120,7 +123,8 @@ class SP_Admin_CPT_Event extends SP_Admin_CPT {
120
  break;
121
  case 'sp_team':
122
  $teams = (array)get_post_meta( $post_id, 'sp_team', false );
123
- $teams = array_unique( array_filter( $teams ) );
 
124
  if ( empty( $teams ) ):
125
  echo '&mdash;';
126
  else:
84
  * Change the columns shown in admin.
85
  */
86
  public function edit_columns( $existing_columns ) {
87
+ unset( $existing_columns['author'], $existing_columns['comments'] );
88
+ $columns = array_merge( array(
89
  'cb' => '<input type="checkbox" />',
90
  'sp_format' => '<span class="dashicons sp-icon-calendar tips" title="' . __( 'Format', 'sportspress' ) . '"></span>',
91
+ 'title' => null,
92
  'date' => __( 'Date', 'sportspress' ),
93
  'sp_time' => __( 'Time', 'sportspress' ),
94
  'sp_team' => __( 'Teams', 'sportspress' ),
95
  'sp_league' => __( 'League', 'sportspress' ),
96
  'sp_season' => __( 'Season', 'sportspress' ),
97
  'sp_venue' => __( 'Venue', 'sportspress' ),
98
+ ), $existing_columns, array(
99
+ 'title' => __( 'Event', 'sportspress' ),
100
+ ) );
101
  return apply_filters( 'sportspress_event_admin_columns', $columns );
102
  }
103
 
123
  break;
124
  case 'sp_team':
125
  $teams = (array)get_post_meta( $post_id, 'sp_team', false );
126
+ $teams = array_filter( $teams );
127
+ $teams = array_unique( $teams );
128
  if ( empty( $teams ) ):
129
  echo '&mdash;';
130
  else:
includes/admin/post-types/class-sp-admin-cpt-list.php CHANGED
@@ -42,7 +42,8 @@ class SP_Admin_CPT_List extends SP_Admin_CPT {
42
  * Change the columns shown in admin.
43
  */
44
  public function edit_columns( $existing_columns ) {
45
- $columns = array(
 
46
  'cb' => '<input type="checkbox" />',
47
  'title' => __( 'Title', 'sportspress' ),
48
  'sp_league' => __( 'League', 'sportspress' ),
@@ -50,7 +51,7 @@ class SP_Admin_CPT_List extends SP_Admin_CPT {
50
  'sp_team' => __( 'Team', 'sportspress' ),
51
  'sp_player' => __( 'Players', 'sportspress' ),
52
  'sp_layout' => __( 'Layout', 'sportspress' ),
53
- );
54
  return apply_filters( 'sportspress_list_admin_columns', $columns );
55
  }
56
 
@@ -61,7 +62,8 @@ class SP_Admin_CPT_List extends SP_Admin_CPT {
61
  public function custom_columns( $column, $post_id ) {
62
  switch ( $column ):
63
  case 'sp_player':
64
- echo sizeof( array_filter( get_post_meta( $post_id, 'sp_player' ) ) );
 
65
  break;
66
  case 'sp_league':
67
  echo get_the_terms ( $post_id, 'sp_league' ) ? the_terms( $post_id, 'sp_league' ) : '&mdash;';
42
  * Change the columns shown in admin.
43
  */
44
  public function edit_columns( $existing_columns ) {
45
+ unset( $existing_columns['author'], $existing_columns['date'] );
46
+ $columns = array_merge( array(
47
  'cb' => '<input type="checkbox" />',
48
  'title' => __( 'Title', 'sportspress' ),
49
  'sp_league' => __( 'League', 'sportspress' ),
51
  'sp_team' => __( 'Team', 'sportspress' ),
52
  'sp_player' => __( 'Players', 'sportspress' ),
53
  'sp_layout' => __( 'Layout', 'sportspress' ),
54
+ ), $existing_columns );
55
  return apply_filters( 'sportspress_list_admin_columns', $columns );
56
  }
57
 
62
  public function custom_columns( $column, $post_id ) {
63
  switch ( $column ):
64
  case 'sp_player':
65
+ $players = array_filter( get_post_meta( $post_id, 'sp_player' ) );
66
+ echo sizeof( $players );
67
  break;
68
  case 'sp_league':
69
  echo get_the_terms ( $post_id, 'sp_league' ) ? the_terms( $post_id, 'sp_league' ) : '&mdash;';
includes/admin/post-types/class-sp-admin-cpt-player.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Post_Types
8
- * @version 0.9
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -58,15 +58,18 @@ class SP_Admin_CPT_Player extends SP_Admin_CPT {
58
  * Change the columns shown in admin.
59
  */
60
  public function edit_columns( $existing_columns ) {
61
- $columns = array(
 
62
  'cb' => '<input type="checkbox" />',
63
  'sp_number' => '<span class="dashicons sp-icon-tshirt tips" title="' . __( 'Number', 'sportspress' ) . '"></span>',
64
- 'title' => __( 'Name', 'sportspress' ),
65
  'sp_position' => __( 'Positions', 'sportspress' ),
66
  'sp_team' => __( 'Teams', 'sportspress' ),
67
  'sp_league' => __( 'Leagues', 'sportspress' ),
68
  'sp_season' => __( 'Seasons', 'sportspress' ),
69
- );
 
 
70
  return apply_filters( 'sportspress_player_admin_columns', $columns );
71
  }
72
 
@@ -123,6 +126,15 @@ class SP_Admin_CPT_Player extends SP_Admin_CPT {
123
  if ( $typenow != 'sp_player' )
124
  return;
125
 
 
 
 
 
 
 
 
 
 
126
  $selected = isset( $_REQUEST['team'] ) ? $_REQUEST['team'] : null;
127
  $args = array(
128
  'post_type' => 'sp_team',
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Post_Types
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
58
  * Change the columns shown in admin.
59
  */
60
  public function edit_columns( $existing_columns ) {
61
+ unset( $existing_columns['author'], $existing_columns['date'] );
62
+ $columns = array_merge( array(
63
  'cb' => '<input type="checkbox" />',
64
  'sp_number' => '<span class="dashicons sp-icon-tshirt tips" title="' . __( 'Number', 'sportspress' ) . '"></span>',
65
+ 'title' => null,
66
  'sp_position' => __( 'Positions', 'sportspress' ),
67
  'sp_team' => __( 'Teams', 'sportspress' ),
68
  'sp_league' => __( 'Leagues', 'sportspress' ),
69
  'sp_season' => __( 'Seasons', 'sportspress' ),
70
+ ), $existing_columns, array(
71
+ 'title' => __( 'Name', 'sportspress' )
72
+ ) );
73
  return apply_filters( 'sportspress_player_admin_columns', $columns );
74
  }
75
 
126
  if ( $typenow != 'sp_player' )
127
  return;
128
 
129
+ $selected = isset( $_REQUEST['sp_position'] ) ? $_REQUEST['sp_position'] : null;
130
+ $args = array(
131
+ 'show_option_all' => __( 'Show all positions', 'sportspress' ),
132
+ 'taxonomy' => 'sp_position',
133
+ 'name' => 'sp_position',
134
+ 'selected' => $selected
135
+ );
136
+ sp_dropdown_taxonomies( $args );
137
+
138
  $selected = isset( $_REQUEST['team'] ) ? $_REQUEST['team'] : null;
139
  $args = array(
140
  'post_type' => 'sp_team',
includes/admin/post-types/class-sp-admin-cpt-staff.php CHANGED
@@ -58,14 +58,17 @@ class SP_Admin_CPT_Staff extends SP_Admin_CPT {
58
  * Change the columns shown in admin.
59
  */
60
  public function edit_columns( $existing_columns ) {
61
- $columns = array(
 
62
  'cb' => '<input type="checkbox" />',
63
- 'title' => __( 'Name', 'sportspress' ),
64
  'sp_role' => __( 'Role', 'sportspress' ),
65
  'sp_team' => __( 'Teams', 'sportspress' ),
66
  'sp_league' => __( 'Leagues', 'sportspress' ),
67
  'sp_season' => __( 'Seasons', 'sportspress' ),
68
- );
 
 
69
  return apply_filters( 'sportspress_staff_admin_columns', $columns );
70
  }
71
 
@@ -76,8 +79,7 @@ class SP_Admin_CPT_Staff extends SP_Admin_CPT {
76
  public function custom_columns( $column, $post_id ) {
77
  switch ( $column ):
78
  case 'sp_role':
79
- $role = get_post_meta ( $post_id, 'sp_role', true );
80
- echo $role ? $role : '&mdash;';
81
  break;
82
  case 'sp_team':
83
  $teams = (array)get_post_meta( $post_id, 'sp_team', false );
58
  * Change the columns shown in admin.
59
  */
60
  public function edit_columns( $existing_columns ) {
61
+ unset( $existing_columns['author'], $existing_columns['date'] );
62
+ $columns = array_merge( array(
63
  'cb' => '<input type="checkbox" />',
64
+ 'title' => null,
65
  'sp_role' => __( 'Role', 'sportspress' ),
66
  'sp_team' => __( 'Teams', 'sportspress' ),
67
  'sp_league' => __( 'Leagues', 'sportspress' ),
68
  'sp_season' => __( 'Seasons', 'sportspress' ),
69
+ ), $existing_columns, array(
70
+ 'title' => __( 'Name', 'sportspress' )
71
+ ) );
72
  return apply_filters( 'sportspress_staff_admin_columns', $columns );
73
  }
74
 
79
  public function custom_columns( $column, $post_id ) {
80
  switch ( $column ):
81
  case 'sp_role':
82
+ echo get_the_terms( $post_id, 'sp_role' ) ? the_terms( $post_id, 'sp_role' ) : '&mdash;';
 
83
  break;
84
  case 'sp_team':
85
  $teams = (array)get_post_meta( $post_id, 'sp_team', false );
includes/admin/post-types/class-sp-admin-cpt-table.php CHANGED
@@ -42,13 +42,14 @@ class SP_Admin_CPT_Table extends SP_Admin_CPT {
42
  * Change the columns shown in admin.
43
  */
44
  public function edit_columns( $existing_columns ) {
45
- $columns = array(
 
46
  'cb' => '<input type="checkbox" />',
47
  'title' => __( 'Title', 'sportspress' ),
48
  'sp_league' => __( 'League', 'sportspress' ),
49
  'sp_season' => __( 'Season', 'sportspress' ),
50
  'sp_team' => __( 'Teams', 'sportspress' ),
51
- );
52
  return apply_filters( 'sportspress_table_admin_columns', $columns );
53
  }
54
 
@@ -65,7 +66,8 @@ class SP_Admin_CPT_Table extends SP_Admin_CPT {
65
  echo get_the_terms ( $post_id, 'sp_season' ) ? the_terms( $post_id, 'sp_season' ) : '&mdash;';
66
  break;
67
  case 'sp_team':
68
- echo sizeof( array_filter( get_post_meta( $post_id, 'sp_team' ) ) );
 
69
  break;
70
  endswitch;
71
  }
42
  * Change the columns shown in admin.
43
  */
44
  public function edit_columns( $existing_columns ) {
45
+ unset( $existing_columns['date'] );
46
+ $columns = array_merge( array(
47
  'cb' => '<input type="checkbox" />',
48
  'title' => __( 'Title', 'sportspress' ),
49
  'sp_league' => __( 'League', 'sportspress' ),
50
  'sp_season' => __( 'Season', 'sportspress' ),
51
  'sp_team' => __( 'Teams', 'sportspress' ),
52
+ ), $existing_columns );
53
  return apply_filters( 'sportspress_table_admin_columns', $columns );
54
  }
55
 
66
  echo get_the_terms ( $post_id, 'sp_season' ) ? the_terms( $post_id, 'sp_season' ) : '&mdash;';
67
  break;
68
  case 'sp_team':
69
+ $teams = array_filter( get_post_meta( $post_id, 'sp_team' ) );
70
+ echo sizeof( $teams );
71
  break;
72
  endswitch;
73
  }
includes/admin/post-types/class-sp-admin-cpt-team.php CHANGED
@@ -57,15 +57,18 @@ class SP_Admin_CPT_Team extends SP_Admin_CPT {
57
  * Change the columns shown in admin.
58
  */
59
  public function edit_columns( $existing_columns ) {
60
- $columns = array(
 
61
  'cb' => '<input type="checkbox" />',
62
  'sp_icon' => '<span class="dashicons sp-icon-shield tips" title="' . __( 'Logo', 'sportspress' ) . '"></span>',
63
- 'title' => __( 'Team', 'sportspress' ),
64
  'sp_url' => __( 'URL', 'sportspress' ),
65
  'sp_abbreviation' => __( 'Abbreviation', 'sportspress' ),
66
  'sp_league' => __( 'Leagues', 'sportspress' ),
67
  'sp_season' => __( 'Seasons', 'sportspress' ),
68
- );
 
 
69
  return apply_filters( 'sportspress_team_admin_columns', $columns );
70
  }
71
 
57
  * Change the columns shown in admin.
58
  */
59
  public function edit_columns( $existing_columns ) {
60
+ unset( $existing_columns['author'], $existing_columns['date'] );
61
+ $columns = array_merge( array(
62
  'cb' => '<input type="checkbox" />',
63
  'sp_icon' => '<span class="dashicons sp-icon-shield tips" title="' . __( 'Logo', 'sportspress' ) . '"></span>',
64
+ 'title' => null,
65
  'sp_url' => __( 'URL', 'sportspress' ),
66
  'sp_abbreviation' => __( 'Abbreviation', 'sportspress' ),
67
  'sp_league' => __( 'Leagues', 'sportspress' ),
68
  'sp_season' => __( 'Seasons', 'sportspress' ),
69
+ ), $existing_columns, array(
70
+ 'title' => __( 'Team', 'sportspress' ),
71
+ ) );
72
  return apply_filters( 'sportspress_team_admin_columns', $columns );
73
  }
74
 
includes/admin/post-types/class-sp-admin-meta-boxes.php CHANGED
@@ -7,7 +7,7 @@
7
  * @author ThemeBoy
8
  * @category Admin
9
  * @package SportsPress/Admin/Meta_Boxes
10
- * @version 1.2
11
  */
12
 
13
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -52,7 +52,7 @@ class SP_Admin_Meta_Boxes {
52
  add_action( 'sportspress_process_sp_event_meta', 'SP_Meta_Box_Event_Teams::save', 30, 2 );
53
  add_action( 'sportspress_process_sp_event_meta', 'SP_Meta_Box_Event_Video::save', 40, 2 );
54
  add_action( 'sportspress_process_sp_event_meta', 'SP_Meta_Box_Event_Results::save', 50, 2 );
55
- if ( SP()->mode == 'team' ) add_action( 'sportspress_process_sp_event_meta', 'SP_Meta_Box_Event_Performance::save', 60, 2 );
56
 
57
  // Save Calendar Meta Boxes
58
  add_action( 'sportspress_process_sp_calendar_meta', 'SP_Meta_Box_Calendar_Format::save', 10, 2 );
@@ -62,7 +62,8 @@ class SP_Admin_Meta_Boxes {
62
  // Save Team Meta Boxes
63
  add_action( 'sportspress_process_sp_team_meta', 'SP_Meta_Box_Team_Details::save', 10, 2 );
64
  add_action( 'sportspress_process_sp_team_meta', 'SP_Meta_Box_Team_Columns::save', 20, 2 );
65
- if ( SP()->mode == 'team' ) add_action( 'sportspress_process_sp_team_meta', 'SP_Meta_Box_Team_Lists::save', 30, 2 );
 
66
 
67
  // Save Table Meta Boxes
68
  add_action( 'sportspress_process_sp_table_meta', 'SP_Meta_Box_Table_Details::save', 10, 2 );
@@ -124,7 +125,7 @@ class SP_Admin_Meta_Boxes {
124
  add_meta_box( 'sp_videodiv', __( 'Video', 'sportspress' ), 'SP_Meta_Box_Event_Video::output', 'sp_event', 'side', 'low' );
125
  if ( sizeof( array_filter( sp_array_value( $post_meta, 'sp_team', array() ) ) ) ):
126
  add_meta_box( 'sp_resultsdiv', __( 'Team Results', 'sportspress' ), 'SP_Meta_Box_Event_Results::output', 'sp_event', 'normal', 'high' );
127
- if ( SP()->mode == 'team' ) add_meta_box( 'sp_performancediv', __( 'Player Performance', 'sportspress' ), 'SP_Meta_Box_Event_Performance::output', 'sp_event', 'normal', 'high' );
128
  endif;
129
  add_meta_box( 'sp_editordiv', __( 'Article', 'sportspress' ), 'SP_Meta_Box_Event_Editor::output', 'sp_event', 'normal', 'low' );
130
 
@@ -138,8 +139,9 @@ class SP_Admin_Meta_Boxes {
138
  // Teams
139
  add_meta_box( 'sp_detailsdiv', __( 'Details', 'sportspress' ), 'SP_Meta_Box_Team_Details::output', 'sp_team', 'side', 'default' );
140
  if ( isset( $post ) && isset( $post->ID ) ):
141
- if ( get_the_terms( $post->ID, 'sp_league' ) && get_the_terms( $post->ID, 'sp_season' ) ) add_meta_box( 'sp_columnssdiv', __( 'Table Columns', 'sportspress' ), 'SP_Meta_Box_Team_Columns::output', 'sp_team', 'normal', 'high' );
142
- if ( SP()->mode == 'team' ) add_meta_box( 'sp_listsdiv', __( 'Player Lists', 'sportspress' ), 'SP_Meta_Box_Team_Lists::output', 'sp_team', 'normal', 'high' );
 
143
  endif;
144
  add_meta_box( 'sp_editordiv', __( 'Profile', 'sportspress' ), 'SP_Meta_Box_Team_Editor::output', 'sp_team', 'normal', 'low' );
145
 
@@ -154,7 +156,7 @@ class SP_Admin_Meta_Boxes {
154
  add_meta_box( 'sp_columnsdiv', __( 'Columns', 'sportspress' ), 'SP_Meta_Box_Player_Columns::output', 'sp_player', 'side', 'default' );
155
  add_meta_box( 'sp_detailsdiv', __( 'Details', 'sportspress' ), 'SP_Meta_Box_Player_Details::output', 'sp_player', 'side', 'default' );
156
  add_meta_box( 'sp_metricsdiv', __( 'Metrics', 'sportspress' ), 'SP_Meta_Box_Player_Metrics::output', 'sp_player', 'side', 'default' );
157
- if ( isset( $post ) && isset( $post->ID ) && get_the_terms( $post->ID, 'sp_league' ) && get_the_terms( $post->ID, 'sp_season' ) ):
158
  add_meta_box( 'sp_statisticsdiv', __( 'Statistics', 'sportspress' ), 'SP_Meta_Box_Player_Statistics::output', 'sp_player', 'normal', 'high' );
159
  endif;
160
  add_meta_box( 'sp_editordiv', __( 'Profile', 'sportspress' ), 'SP_Meta_Box_Player_Editor::output', 'sp_player', 'normal', 'low' );
@@ -236,7 +238,7 @@ class SP_Admin_Meta_Boxes {
236
  if ( is_int( wp_is_post_revision( $post ) ) ) return;
237
  if ( is_int( wp_is_post_autosave( $post ) ) ) return;
238
  if ( empty( $_POST['sportspress_meta_nonce'] ) || ! wp_verify_nonce( $_POST['sportspress_meta_nonce'], 'sportspress_save_data' ) ) return;
239
- if ( ! current_user_can( 'edit_post', $post_id )) return;
240
  if ( ! is_sp_post_type( $post->post_type ) && ! is_sp_config_type( $post->post_type ) ) return;
241
 
242
  do_action( 'sportspress_process_' . $post->post_type . '_meta', $post_id, $post );
7
  * @author ThemeBoy
8
  * @category Admin
9
  * @package SportsPress/Admin/Meta_Boxes
10
+ * @version 1.3.1
11
  */
12
 
13
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
52
  add_action( 'sportspress_process_sp_event_meta', 'SP_Meta_Box_Event_Teams::save', 30, 2 );
53
  add_action( 'sportspress_process_sp_event_meta', 'SP_Meta_Box_Event_Video::save', 40, 2 );
54
  add_action( 'sportspress_process_sp_event_meta', 'SP_Meta_Box_Event_Results::save', 50, 2 );
55
+ add_action( 'sportspress_process_sp_event_meta', 'SP_Meta_Box_Event_Performance::save', 60, 2 );
56
 
57
  // Save Calendar Meta Boxes
58
  add_action( 'sportspress_process_sp_calendar_meta', 'SP_Meta_Box_Calendar_Format::save', 10, 2 );
62
  // Save Team Meta Boxes
63
  add_action( 'sportspress_process_sp_team_meta', 'SP_Meta_Box_Team_Details::save', 10, 2 );
64
  add_action( 'sportspress_process_sp_team_meta', 'SP_Meta_Box_Team_Columns::save', 20, 2 );
65
+ add_action( 'sportspress_process_sp_team_meta', 'SP_Meta_Box_Team_Lists::save', 30, 2 );
66
+ add_action( 'sportspress_process_sp_team_meta', 'SP_Meta_Box_Team_Tables::save', 40, 2 );
67
 
68
  // Save Table Meta Boxes
69
  add_action( 'sportspress_process_sp_table_meta', 'SP_Meta_Box_Table_Details::save', 10, 2 );
125
  add_meta_box( 'sp_videodiv', __( 'Video', 'sportspress' ), 'SP_Meta_Box_Event_Video::output', 'sp_event', 'side', 'low' );
126
  if ( sizeof( array_filter( sp_array_value( $post_meta, 'sp_team', array() ) ) ) ):
127
  add_meta_box( 'sp_resultsdiv', __( 'Team Results', 'sportspress' ), 'SP_Meta_Box_Event_Results::output', 'sp_event', 'normal', 'high' );
128
+ add_meta_box( 'sp_performancediv', __( 'Player Performance', 'sportspress' ), 'SP_Meta_Box_Event_Performance::output', 'sp_event', 'normal', 'high' );
129
  endif;
130
  add_meta_box( 'sp_editordiv', __( 'Article', 'sportspress' ), 'SP_Meta_Box_Event_Editor::output', 'sp_event', 'normal', 'low' );
131
 
139
  // Teams
140
  add_meta_box( 'sp_detailsdiv', __( 'Details', 'sportspress' ), 'SP_Meta_Box_Team_Details::output', 'sp_team', 'side', 'default' );
141
  if ( isset( $post ) && isset( $post->ID ) ):
142
+ add_meta_box( 'sp_listsdiv', __( 'Player Lists', 'sportspress' ), 'SP_Meta_Box_Team_Lists::output', 'sp_team', 'normal', 'high' );
143
+ add_meta_box( 'sp_tablesdiv', __( 'League Tables', 'sportspress' ), 'SP_Meta_Box_Team_Tables::output', 'sp_team', 'normal', 'high' );
144
+ add_meta_box( 'sp_columnssdiv', __( 'Table Columns', 'sportspress' ), 'SP_Meta_Box_Team_Columns::output', 'sp_team', 'normal', 'high' );
145
  endif;
146
  add_meta_box( 'sp_editordiv', __( 'Profile', 'sportspress' ), 'SP_Meta_Box_Team_Editor::output', 'sp_team', 'normal', 'low' );
147
 
156
  add_meta_box( 'sp_columnsdiv', __( 'Columns', 'sportspress' ), 'SP_Meta_Box_Player_Columns::output', 'sp_player', 'side', 'default' );
157
  add_meta_box( 'sp_detailsdiv', __( 'Details', 'sportspress' ), 'SP_Meta_Box_Player_Details::output', 'sp_player', 'side', 'default' );
158
  add_meta_box( 'sp_metricsdiv', __( 'Metrics', 'sportspress' ), 'SP_Meta_Box_Player_Metrics::output', 'sp_player', 'side', 'default' );
159
+ if ( isset( $post ) && isset( $post->ID ) ):
160
  add_meta_box( 'sp_statisticsdiv', __( 'Statistics', 'sportspress' ), 'SP_Meta_Box_Player_Statistics::output', 'sp_player', 'normal', 'high' );
161
  endif;
162
  add_meta_box( 'sp_editordiv', __( 'Profile', 'sportspress' ), 'SP_Meta_Box_Player_Editor::output', 'sp_player', 'normal', 'low' );
238
  if ( is_int( wp_is_post_revision( $post ) ) ) return;
239
  if ( is_int( wp_is_post_autosave( $post ) ) ) return;
240
  if ( empty( $_POST['sportspress_meta_nonce'] ) || ! wp_verify_nonce( $_POST['sportspress_meta_nonce'], 'sportspress_save_data' ) ) return;
241
+ if ( ! current_user_can( 'edit_post', $post_id ) ) return;
242
  if ( ! is_sp_post_type( $post->post_type ) && ! is_sp_config_type( $post->post_type ) ) return;
243
 
244
  do_action( 'sportspress_process_' . $post->post_type . '_meta', $post_id, $post );
includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Meta_Boxes
8
- * @version 0.7
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -22,20 +22,22 @@ class SP_Meta_Box_Calendar_Data {
22
  $calendar = new SP_Calendar( $post );
23
  $data = $calendar->data();
24
  $usecolumns = $calendar->columns;
25
- self::table( $data, $usecolumns );
 
26
  }
27
 
28
  /**
29
  * Save meta box data
30
  */
31
  public static function save( $post_id, $post ) {
 
32
  update_post_meta( $post_id, 'sp_columns', sp_array_value( $_POST, 'sp_columns', array() ) );
33
  }
34
 
35
  /**
36
  * Admin edit table
37
  */
38
- public static function table( $data = array(), $usecolumns = null ) {
39
  if ( is_array( $usecolumns ) )
40
  $usecolumns = array_filter( $usecolumns );
41
  ?>
@@ -49,13 +51,11 @@ class SP_Meta_Box_Calendar_Data {
49
  <th class="column-event">
50
  <label for="sp_columns_event">
51
  <input type="checkbox" name="sp_columns[]" value="event" id="sp_columns_event" <?php checked( ! is_array( $usecolumns ) || in_array( 'event', $usecolumns ) ); ?>>
52
- <?php _e( 'Event', 'sportspress' ); ?>
53
- </label>
54
- </th>
55
- <th class="column-teams">
56
- <label for="sp_columns_teams">
57
- <input type="checkbox" name="sp_columns[]" value="teams" id="sp_columns_teams" <?php checked( ! is_array( $usecolumns ) || in_array( 'teams', $usecolumns ) ); ?>>
58
- <?php _e( 'Teams', 'sportspress' ); ?>
59
  </label>
60
  </th>
61
  <th class="column-time">
@@ -64,6 +64,18 @@ class SP_Meta_Box_Calendar_Data {
64
  <?php _e( 'Time/Results', 'sportspress' ); ?>
65
  </label>
66
  </th>
 
 
 
 
 
 
 
 
 
 
 
 
67
  <th class="column-venue">
68
  <label for="sp_columns_venue">
69
  <input type="checkbox" name="sp_columns[]" value="venue" id="sp_columns_venue" <?php checked( ! is_array( $usecolumns ) || in_array( 'venue', $usecolumns ) ); ?>>
@@ -92,38 +104,40 @@ class SP_Meta_Box_Calendar_Data {
92
  ?>
93
  <tr class="sp-row sp-post<?php if ( $i % 2 == 0 ) echo ' alternate'; ?>">
94
  <td><?php echo get_post_time( get_option( 'date_format' ), false, $event, true ); ?></td>
95
- <td><?php echo $event->post_title; ?></td>
96
  <td>
97
- <?php
98
- if ( $teams ): foreach ( $teams as $team ):
99
- $name = get_the_title( $team );
100
- if ( $name ):
101
- $team_results = sp_array_value( $results, $team, null );
 
 
102
 
103
- if ( $main_result ):
104
- $team_result = sp_array_value( $team_results, $main_result, null );
105
- else:
106
- if ( is_array( $team_results ) ):
107
- end( $team_results );
108
- $team_result = prev( $team_results );
109
  else:
110
- $team_result = null;
 
 
 
 
 
111
  endif;
112
- endif;
113
 
114
- if ( $team_result != null ):
115
- $main_results[] = $team_result;
116
- unset( $team_results['outcome'] );
117
- $team_results = implode( ' | ', $team_results );
118
- echo '<a class="result tips" title="' . $team_results . '" href="' . get_edit_post_link( $event->ID ) . '">' . $team_result . '</a> ';
119
- endif;
120
 
121
- echo $name . '<br>';
 
 
 
122
  endif;
123
- endforeach; else:
124
- echo '&mdash;';
125
- endif;
126
- ?>
127
  </td>
128
  <td>
129
  <?php
@@ -134,6 +148,8 @@ class SP_Meta_Box_Calendar_Data {
134
  endif;
135
  ?>
136
  </td>
 
 
137
  <td><?php the_terms( $event->ID, 'sp_venue' ); ?></td>
138
  <td>
139
  <a href="<?php echo get_edit_post_link( $event->ID ); ?>#sp_articlediv">
@@ -160,7 +176,7 @@ class SP_Meta_Box_Calendar_Data {
160
  else:
161
  ?>
162
  <tr class="sp-row alternate">
163
- <td colspan="6">
164
  <?php _e( 'No results found.', 'sportspress' ); ?>
165
  </td>
166
  </tr>
@@ -169,7 +185,7 @@ class SP_Meta_Box_Calendar_Data {
169
  else:
170
  ?>
171
  <tr class="sp-row alternate">
172
- <td colspan="6">
173
  <?php printf( __( 'Select %s', 'sportspress' ), __( 'Details', 'sportspress' ) ); ?>
174
  </td>
175
  </tr>
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Meta_Boxes
8
+ * @version 1.3.1
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
22
  $calendar = new SP_Calendar( $post );
23
  $data = $calendar->data();
24
  $usecolumns = $calendar->columns;
25
+ $title_format = $calendar->title_format;
26
+ self::table( $data, $usecolumns, $title_format );
27
  }
28
 
29
  /**
30
  * Save meta box data
31
  */
32
  public static function save( $post_id, $post ) {
33
+ update_post_meta( $post_id, 'sp_title_format', sp_array_value( $_POST, 'sp_title_format', 'title' ) );
34
  update_post_meta( $post_id, 'sp_columns', sp_array_value( $_POST, 'sp_columns', array() ) );
35
  }
36
 
37
  /**
38
  * Admin edit table
39
  */
40
+ public static function table( $data = array(), $usecolumns = null, $title_format = null ) {
41
  if ( is_array( $usecolumns ) )
42
  $usecolumns = array_filter( $usecolumns );
43
  ?>
51
  <th class="column-event">
52
  <label for="sp_columns_event">
53
  <input type="checkbox" name="sp_columns[]" value="event" id="sp_columns_event" <?php checked( ! is_array( $usecolumns ) || in_array( 'event', $usecolumns ) ); ?>>
54
+ <select name="sp_title_format" class="sp-title-format-select">
55
+ <option value="title" <?php selected( $title_format, 'title' ); ?>><?php _e( 'Title', 'sportspress' ); ?></option>
56
+ <option value="teams" <?php selected( $title_format, 'teams' ); ?>><?php _e( 'Teams', 'sportspress' ); ?></option>
57
+ <option value="homeaway" <?php selected( $title_format, 'homeaway' ); ?>><?php _e( 'Home', 'sportspress' ); ?> | <?php _e( 'Away', 'sportspress' ); ?></option>
58
+ </select>
 
 
59
  </label>
60
  </th>
61
  <th class="column-time">
64
  <?php _e( 'Time/Results', 'sportspress' ); ?>
65
  </label>
66
  </th>
67
+ <th class="column-league">
68
+ <label for="sp_columns_league">
69
+ <input type="checkbox" name="sp_columns[]" value="league" id="sp_columns_league" <?php checked( ! is_array( $usecolumns ) || in_array( 'league', $usecolumns ) ); ?>>
70
+ <?php _e( 'League', 'sportspress' ); ?>
71
+ </label>
72
+ </th>
73
+ <th class="column-season">
74
+ <label for="sp_columns_season">
75
+ <input type="checkbox" name="sp_columns[]" value="season" id="sp_columns_season" <?php checked( ! is_array( $usecolumns ) || in_array( 'season', $usecolumns ) ); ?>>
76
+ <?php _e( 'Season', 'sportspress' ); ?>
77
+ </label>
78
+ </th>
79
  <th class="column-venue">
80
  <label for="sp_columns_venue">
81
  <input type="checkbox" name="sp_columns[]" value="venue" id="sp_columns_venue" <?php checked( ! is_array( $usecolumns ) || in_array( 'venue', $usecolumns ) ); ?>>
104
  ?>
105
  <tr class="sp-row sp-post<?php if ( $i % 2 == 0 ) echo ' alternate'; ?>">
106
  <td><?php echo get_post_time( get_option( 'date_format' ), false, $event, true ); ?></td>
 
107
  <td>
108
+ <div class="sp-title-format sp-title-format-title<?php if ( $title_format && $title_format != 'title' ): ?> hidden<?php endif; ?>"><?php echo $event->post_title; ?></div>
109
+ <div class="sp-title-format sp-title-format-teams sp-title-format-homeaway<?php if ( ! in_array( $title_format, array( 'teams', 'homeaway' ) ) ): ?> hidden<?php endif; ?>">
110
+ <?php
111
+ if ( $teams ): foreach ( $teams as $team ):
112
+ $name = get_the_title( $team );
113
+ if ( $name ):
114
+ $team_results = sp_array_value( $results, $team, null );
115
 
116
+ if ( $main_result ):
117
+ $team_result = sp_array_value( $team_results, $main_result, null );
 
 
 
 
118
  else:
119
+ if ( is_array( $team_results ) ):
120
+ end( $team_results );
121
+ $team_result = prev( $team_results );
122
+ else:
123
+ $team_result = null;
124
+ endif;
125
  endif;
 
126
 
127
+ if ( $team_result != null ):
128
+ $main_results[] = $team_result;
129
+ unset( $team_results['outcome'] );
130
+ $team_results = implode( ' | ', $team_results );
131
+ echo '<a class="result tips" title="' . $team_results . '" href="' . get_edit_post_link( $event->ID ) . '">' . $team_result . '</a> ';
132
+ endif;
133
 
134
+ echo $name . '<br>';
135
+ endif;
136
+ endforeach; else:
137
+ echo '&mdash;';
138
  endif;
139
+ ?>
140
+ </div>
 
 
141
  </td>
142
  <td>
143
  <?php
148
  endif;
149
  ?>
150
  </td>
151
+ <td><?php the_terms( $event->ID, 'sp_league' ); ?></td>
152
+ <td><?php the_terms( $event->ID, 'sp_season' ); ?></td>
153
  <td><?php the_terms( $event->ID, 'sp_venue' ); ?></td>
154
  <td>
155
  <a href="<?php echo get_edit_post_link( $event->ID ); ?>#sp_articlediv">
176
  else:
177
  ?>
178
  <tr class="sp-row alternate">
179
+ <td colspan="7">
180
  <?php _e( 'No results found.', 'sportspress' ); ?>
181
  </td>
182
  </tr>
185
  else:
186
  ?>
187
  <tr class="sp-row alternate">
188
+ <td colspan="7">
189
  <?php printf( __( 'Select %s', 'sportspress' ), __( 'Details', 'sportspress' ) ); ?>
190
  </td>
191
  </tr>
includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-shortcode.php CHANGED
@@ -25,7 +25,7 @@ class SP_Meta_Box_Calendar_Shortcode {
25
  <p class="howto">
26
  <?php _e( 'Copy this code and paste it into your post, page or text widget content.', 'sportspress' ); ?>
27
  </p>
28
- <p><input type="text" value="[event_<?php echo $the_format; ?> <?php echo $post->ID; ?>]" readonly="readonly" class="wp-ui-text-highlight code"></p>
29
  <?php
30
  }
31
  }
25
  <p class="howto">
26
  <?php _e( 'Copy this code and paste it into your post, page or text widget content.', 'sportspress' ); ?>
27
  </p>
28
+ <p><input type="text" value="[event_<?php echo $the_format; ?> <?php echo $post->ID; ?>]" readonly="readonly" class="code"></p>
29
  <?php
30
  }
31
  }
includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php CHANGED
@@ -31,34 +31,31 @@ class SP_Meta_Box_Equation {
31
  foreach ( $groups as $group ):
32
  switch ( $group ):
33
  case 'player_event':
34
- $options['Events'] = array( '$eventsattended' => __( 'Attended', 'sportspress' ), '$eventsplayed' => __( 'Played', 'sportspress' ), '$eventsstarted' => __( 'Started', 'sportspress' ), '$eventssubbed' => __( 'Substituted', 'sportspress' ) );
35
  break;
36
  case 'team_event':
37
- $options['Events'] = array( '$eventsplayed' => __( 'Played', 'sportspress' ) );
38
  break;
39
  case 'result':
40
- $options['Results'] = self::optgroup( 'sp_result', array( 'for' => '(' . __( 'for', 'sportspress' ) . ')', 'against' => '(' . __( 'against', 'sportspress' ) . ')' ), null, false );
41
  break;
42
  case 'outcome':
43
- $options['Outcomes'] = self::optgroup( 'sp_outcome' );
44
- $options['Outcomes']['$streak'] = __( 'Streak', 'sportspress' );
45
- $options['Outcomes']['$last5'] = __( 'Last 5', 'sportspress' );
46
- $options['Outcomes']['$last10'] = __( 'Last 10', 'sportspress' );
47
  break;
48
  case 'performance':
49
- $options['Performance'] = self::optgroup( 'sp_performance' );
50
  break;
51
  case 'metric':
52
- $options['Metric'] = self::optgroup( 'sp_metric' );
53
  break;
54
  endswitch;
55
  endforeach;
56
 
57
- // Create array of operators
58
- $operators = array( '+' => '&plus;', '-' => '&minus;', '*' => '&times;', '/' => '&divide;', '(' => '(', ')' => ')' );
59
-
60
  // Add operators to options
61
- $options['Operators'] = $operators;
62
 
63
  // Create array of constants
64
  $max = 10;
@@ -71,7 +68,9 @@ class SP_Meta_Box_Equation {
71
  $constants[100] = 100;
72
 
73
  // Add constants to options
74
- $options['Constants'] = (array) $constants;
 
 
75
  ?>
76
  <div class="sp-equation-builder">
77
  <div class="sp-data-table-container sp-equation-parts">
31
  foreach ( $groups as $group ):
32
  switch ( $group ):
33
  case 'player_event':
34
+ $options[ __( 'Events', 'sportspress' ) ] = array( '$eventsattended' => __( 'Attended', 'sportspress' ), '$eventsplayed' => __( 'Played', 'sportspress' ), '$eventsstarted' => __( 'Started', 'sportspress' ), '$eventssubbed' => __( 'Substituted', 'sportspress' ), '$eventminutes' => __( 'Minutes', 'sportspress' ) );
35
  break;
36
  case 'team_event':
37
+ $options[ __( 'Events', 'sportspress' ) ] = array( '$eventsplayed' => __( 'Played', 'sportspress' ), '$eventminutes' => __( 'Minutes', 'sportspress' ) );
38
  break;
39
  case 'result':
40
+ $options[ __( 'Results', 'sportspress' ) ] = self::optgroup( 'sp_result', array( 'for' => '(' . __( 'for', 'sportspress' ) . ')', 'against' => '(' . __( 'against', 'sportspress' ) . ')' ), null, false );
41
  break;
42
  case 'outcome':
43
+ $options[ __( 'Outcomes', 'sportspress' ) ] = self::optgroup( 'sp_outcome' );
44
+ $options[ __( 'Outcomes', 'sportspress' ) ]['$streak'] = __( 'Streak', 'sportspress' );
45
+ $options[ __( 'Outcomes', 'sportspress' ) ]['$last5'] = __( 'Last 5', 'sportspress' );
46
+ $options[ __( 'Outcomes', 'sportspress' ) ]['$last10'] = __( 'Last 10', 'sportspress' );
47
  break;
48
  case 'performance':
49
+ $options[ __( 'Performance', 'sportspress' ) ] = self::optgroup( 'sp_performance' );
50
  break;
51
  case 'metric':
52
+ $options[ __( 'Metric', 'sportspress' ) ] = self::optgroup( 'sp_metric' );
53
  break;
54
  endswitch;
55
  endforeach;
56
 
 
 
 
57
  // Add operators to options
58
+ $options[ __( 'Operators', 'sportspress' ) ] = array( '+' => '&plus;', '-' => '&minus;', '*' => '&times;', '/' => '&divide;', '(' => '(', ')' => ')' );
59
 
60
  // Create array of constants
61
  $max = 10;
68
  $constants[100] = 100;
69
 
70
  // Add constants to options
71
+ $options[ __( 'Constants', 'sportspress' ) ] = (array) $constants;
72
+
73
+ $options = apply_filters( 'sportspress_equation_options', $options );
74
  ?>
75
  <div class="sp-equation-builder">
76
  <div class="sp-data-table-container sp-equation-parts">
includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Meta_Boxes
8
- * @version 0.7
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -19,62 +19,36 @@ class SP_Meta_Box_Event_Details {
19
  * Output the metabox
20
  */
21
  public static function output( $post ) {
22
- $type = sp_get_the_term_id( $post->ID, 'sp_type', null );
23
- $league_id = sp_get_the_term_id( $post->ID, 'sp_league', 0 );
24
- $season_id = sp_get_the_term_id( $post->ID, 'sp_season', 0 );
25
- $venue_id = sp_get_the_term_id( $post->ID, 'sp_venue', 0 );
26
  ?>
27
- <div class="sp-event-league-field">
28
- <p><strong><?php _e( 'League', 'sportspress' ); ?></strong></p>
29
  <p>
30
- <?php
31
- $args = array(
32
- 'taxonomy' => 'sp_league',
33
- 'name' => 'sp_league',
34
- 'selected' => $league_id,
35
- 'values' => 'term_id',
36
- 'show_option_none' => __( '-- Not set --', 'sportspress' ),
37
- );
38
- if ( ! sp_dropdown_taxonomies( $args ) ):
39
- sp_taxonomy_adder( 'sp_league', 'sp_team', __( 'Add New', 'sportspress' ) );
40
- endif;
41
- ?>
42
- </p>
43
- </div>
44
- <div class="sp-event-season-field">
45
- <p><strong><?php _e( 'Season', 'sportspress' ); ?></strong></p>
46
- <p>
47
- <?php
48
- $args = array(
49
- 'taxonomy' => 'sp_season',
50
- 'name' => 'sp_season',
51
- 'selected' => $season_id,
52
- 'values' => 'term_id',
53
- 'show_option_none' => __( '-- Not set --', 'sportspress' ),
54
- );
55
- if ( ! sp_dropdown_taxonomies( $args ) ):
56
- sp_taxonomy_adder( 'sp_season', 'sp_team', __( 'Add New', 'sportspress' ) );
57
- endif;
58
- ?>
59
- </p>
60
- </div>
61
- <div class="sp-event-venue-field">
62
- <p><strong><?php _e( 'Venue', 'sportspress' ); ?></strong></p>
63
- <p>
64
- <?php
65
- $args = array(
66
- 'taxonomy' => 'sp_venue',
67
- 'name' => 'sp_venue',
68
- 'selected' => $venue_id,
69
- 'values' => 'term_id',
70
- 'show_option_none' => __( '-- Not set --', 'sportspress' ),
71
- );
72
- if ( ! sp_dropdown_taxonomies( $args ) ):
73
- sp_taxonomy_adder( 'sp_venue', 'sp_event', __( 'Add New', 'sportspress' ) );
74
- endif;
75
- ?>
76
  </p>
77
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  <?php
79
  }
80
 
@@ -82,8 +56,10 @@ class SP_Meta_Box_Event_Details {
82
  * Save meta box data
83
  */
84
  public static function save( $post_id, $post ) {
85
- wp_set_post_terms( $post_id, sp_array_value( $_POST, 'sp_league', 0 ), 'sp_league' );
86
- wp_set_post_terms( $post_id, sp_array_value( $_POST, 'sp_season', 0 ), 'sp_season' );
87
- wp_set_post_terms( $post_id, sp_array_value( $_POST, 'sp_venue', 0 ), 'sp_venue' );
 
 
88
  }
89
  }
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Meta_Boxes
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
19
  * Output the metabox
20
  */
21
  public static function output( $post ) {
22
+ $minutes = get_post_meta( $post->ID, 'sp_minutes', true );
23
+ $taxonomies = apply_filters( 'sportspress_event_taxonomies', array( 'sp_league' => null, 'sp_season' => null, 'sp_venue' => 'sp_event' ) );
 
 
24
  ?>
25
+ <div class="sp-event-minutes-field">
26
+ <p><strong><?php _e( 'Full Time', 'sportspress' ); ?></strong></p>
27
  <p>
28
+ <input name="sp_minutes" type="number" step="1" min="0" class="small-text" placeholder="<?php echo get_option( 'sportspress_event_minutes', 90 ); ?>" value="<?php echo $minutes; ?>">
29
+ <?php _e( 'mins', 'sportspress' ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  </p>
31
  </div>
32
+ <?php foreach ( $taxonomies as $taxonomy => $post_type ): $obj = get_taxonomy( $taxonomy ); if ( $obj ): ?>
33
+ <div class="sp-event-<?php echo $taxonomy; ?>-field">
34
+ <p><strong><?php echo $obj->labels->singular_name; ?></strong></p>
35
+ <p>
36
+ <?php
37
+ $args = array(
38
+ 'taxonomy' => $taxonomy,
39
+ 'name' => $taxonomy,
40
+ 'class' => 'sp-has-dummy',
41
+ 'selected' => sp_get_the_term_id( $post->ID, $taxonomy, 0 ),
42
+ 'values' => 'term_id',
43
+ 'show_option_none' => __( '-- Not set --', 'sportspress' ),
44
+ );
45
+ if ( ! sp_dropdown_taxonomies( $args ) ):
46
+ sp_taxonomy_adder( $taxonomy, $post_type, $obj->labels->add_new_item );
47
+ endif;
48
+ ?>
49
+ </p>
50
+ </div>
51
+ <?php endif; endforeach; ?>
52
  <?php
53
  }
54
 
56
  * Save meta box data
57
  */
58
  public static function save( $post_id, $post ) {
59
+ update_post_meta( $post_id, 'sp_minutes', sp_array_value( $_POST, 'sp_minutes', get_option( 'sportspress_event_minutes', 90 ) ) );
60
+ $taxonomies = apply_filters( 'sportspress_event_taxonomies', array( 'sp_league' => null, 'sp_season' => null, 'sp_venue' => 'sp_event' ) );
61
+ foreach ( $taxonomies as $taxonomy => $post_type ):
62
+ wp_set_post_terms( $post_id, sp_array_value( $_POST, $taxonomy, -1 ), $taxonomy );
63
+ endforeach;
64
  }
65
  }
includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Meta_Boxes
8
- * @version 1.1
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -58,12 +58,13 @@ class SP_Meta_Box_Event_Performance {
58
  <table class="widefat sp-data-table sp-performance-table sp-sortable-table">
59
  <thead>
60
  <tr>
 
61
  <th>#</th>
62
  <th><?php _e( 'Player', 'sportspress' ); ?></th>
63
  <th>
64
  <?php if ( $has_checkboxes ): ?>
65
  <label for="sp_columns_position">
66
- <input type="checkbox" name="sp_columns[]" value="position" id="sp_columns_position" <?php checked( is_array( $columns ) && in_array( 'position', $columns ) ); ?>>
67
  <?php _e( 'Position', 'sportspress' ); ?>
68
  </label>
69
  <?php else: ?>
@@ -85,6 +86,22 @@ class SP_Meta_Box_Event_Performance {
85
  <th><?php _e( 'Status', 'sportspress' ); ?></th>
86
  </tr>
87
  </thead>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  <tbody>
89
  <?php
90
  foreach ( $data as $player_id => $player_performance ):
@@ -93,6 +110,7 @@ class SP_Meta_Box_Event_Performance {
93
  $value = sp_array_value( $player_performance, 'number', '' );
94
  ?>
95
  <tr class="sp-row sp-post" data-player="<?php echo $player_id; ?>">
 
96
  <td>
97
  <input class="small-text sp-player-number-input" type="text" name="sp_players[<?php echo $team_id; ?>][<?php echo $player_id; ?>][number]" value="<?php echo $value; ?>" />
98
  </td>
@@ -128,21 +146,6 @@ class SP_Meta_Box_Event_Performance {
128
  endforeach;
129
  ?>
130
  </tbody>
131
- <tfoot>
132
- <tr class="sp-row sp-total">
133
- <td>&nbsp;</td>
134
- <td><strong><?php _e( 'Total', 'sportspress' ); ?></strong></td>
135
- <td>&nbsp;</td>
136
- <?php foreach( $labels as $column => $label ):
137
- $player_id = 0;
138
- $player_performance = sp_array_value( $data, 0, array() );
139
- $value = sp_array_value( $player_performance, $column, '' );
140
- ?>
141
- <td><input type="text" name="sp_players[<?php echo $team_id; ?>][<?php echo $player_id; ?>][<?php echo $column; ?>]" value="<?php echo $value; ?>" placeholder="0" /></td>
142
- <?php endforeach; ?>
143
- <td>&nbsp;</td>
144
- </tr>
145
- </tfoot>
146
  </table>
147
  </div>
148
  <?php
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Meta_Boxes
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
58
  <table class="widefat sp-data-table sp-performance-table sp-sortable-table">
59
  <thead>
60
  <tr>
61
+ <th class="icon">&nbsp;</th>
62
  <th>#</th>
63
  <th><?php _e( 'Player', 'sportspress' ); ?></th>
64
  <th>
65
  <?php if ( $has_checkboxes ): ?>
66
  <label for="sp_columns_position">
67
+ <input type="checkbox" name="sp_columns[]" value="position" id="sp_columns_position" <?php checked( ! is_array( $columns ) || in_array( 'position', $columns ) ); ?>>
68
  <?php _e( 'Position', 'sportspress' ); ?>
69
  </label>
70
  <?php else: ?>
86
  <th><?php _e( 'Status', 'sportspress' ); ?></th>
87
  </tr>
88
  </thead>
89
+ <tfoot>
90
+ <tr class="sp-row sp-total">
91
+ <td>&nbsp;</td>
92
+ <td>&nbsp;</td>
93
+ <td><strong><?php _e( 'Total', 'sportspress' ); ?></strong></td>
94
+ <td>&nbsp;</td>
95
+ <?php foreach( $labels as $column => $label ):
96
+ $player_id = 0;
97
+ $player_performance = sp_array_value( $data, 0, array() );
98
+ $value = sp_array_value( $player_performance, $column, '' );
99
+ ?>
100
+ <td><input type="text" name="sp_players[<?php echo $team_id; ?>][<?php echo $player_id; ?>][<?php echo $column; ?>]" value="<?php echo $value; ?>" placeholder="0" /></td>
101
+ <?php endforeach; ?>
102
+ <td>&nbsp;</td>
103
+ </tr>
104
+ </tfoot>
105
  <tbody>
106
  <?php
107
  foreach ( $data as $player_id => $player_performance ):
110
  $value = sp_array_value( $player_performance, 'number', '' );
111
  ?>
112
  <tr class="sp-row sp-post" data-player="<?php echo $player_id; ?>">
113
+ <td class="icon"><span class="dashicons dashicons-menu post-state-format"></span></td>
114
  <td>
115
  <input class="small-text sp-player-number-input" type="text" name="sp_players[<?php echo $team_id; ?>][<?php echo $player_id; ?>][number]" value="<?php echo $value; ?>" />
116
  </td>
146
  endforeach;
147
  ?>
148
  </tbody>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
149
  </table>
150
  </div>
151
  <?php
includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php CHANGED
@@ -26,15 +26,15 @@ class SP_Meta_Box_Event_Shortcode {
26
  <p>
27
  <strong><?php _e( 'Team Results', 'sportspress' ); ?></strong>
28
  </p>
29
- <p><input type="text" value="[event_results <?php echo $post->ID; ?>]" readonly="readonly" class="wp-ui-text-highlight code"></p>
30
  <p>
31
  <strong><?php _e( 'Details', 'sportspress' ); ?></strong>
32
  </p>
33
- <p><input type="text" value="[event_details <?php echo $post->ID; ?>]" readonly="readonly" class="wp-ui-text-highlight code"></p>
34
  <p>
35
  <strong><?php _e( 'Player Performance', 'sportspress' ); ?></strong>
36
  </p>
37
- <p><input type="text" value="[event_performance <?php echo $post->ID; ?>]" readonly="readonly" class="wp-ui-text-highlight code"></p>
38
  <?php
39
  }
40
  }
26
  <p>
27
  <strong><?php _e( 'Team Results', 'sportspress' ); ?></strong>
28
  </p>
29
+ <p><input type="text" value="[event_results <?php echo $post->ID; ?>]" readonly="readonly" class="code"></p>
30
  <p>
31
  <strong><?php _e( 'Details', 'sportspress' ); ?></strong>
32
  </p>
33
+ <p><input type="text" value="[event_details <?php echo $post->ID; ?>]" readonly="readonly" class="code"></p>
34
  <p>
35
  <strong><?php _e( 'Player Performance', 'sportspress' ); ?></strong>
36
  </p>
37
+ <p><input type="text" value="[event_performance <?php echo $post->ID; ?>]" readonly="readonly" class="code"></p>
38
  <?php
39
  }
40
  }
includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Meta_Boxes
8
- * @version 1.1
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -21,10 +21,38 @@ class SP_Meta_Box_Event_Teams {
21
  public static function output( $post ) {
22
  $limit = get_option( 'sportspress_event_teams', 2 );
23
  $teams = (array) get_post_meta( $post->ID, 'sp_team', false );
 
 
24
  for ( $i = 0; $i < $limit; $i ++ ):
25
  $team = array_shift( $teams );
26
  ?>
27
  <div class="sp-instance">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  <p class="sp-tab-select sp-title-generator">
29
  <?php
30
  $args = array(
@@ -37,17 +65,13 @@ class SP_Meta_Box_Event_Teams {
37
  wp_dropdown_pages( $args );
38
  ?>
39
  </p>
40
- <?php
41
- if ( SP()->mode == 'team' ):
42
- ?>
43
- <ul id="sp_team-tabs" class="wp-tab-bar sp-tab-bar">
44
- <li class="wp-tab-active"><a href="#sp_player-all"><?php _e( 'Players', 'sportspress' ); ?></a></li>
45
- <li class="wp-tab"><a href="#sp_staff-all"><?php _e( 'Staff', 'sportspress' ); ?></a></li>
46
- </ul>
47
- <?php
48
- sp_post_checklist( $post->ID, 'sp_player', 'block', 'sp_current_team', $i );
49
- sp_post_checklist( $post->ID, 'sp_staff', 'none', 'sp_current_team', $i );
50
- endif;
51
  ?>
52
  </div>
53
  <?php
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Meta_Boxes
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
21
  public static function output( $post ) {
22
  $limit = get_option( 'sportspress_event_teams', 2 );
23
  $teams = (array) get_post_meta( $post->ID, 'sp_team', false );
24
+ $league_id = sp_get_the_term_id( $post->ID, 'sp_league', 0 );
25
+ $season_id = sp_get_the_term_id( $post->ID, 'sp_season', 0 );
26
  for ( $i = 0; $i < $limit; $i ++ ):
27
  $team = array_shift( $teams );
28
  ?>
29
  <div class="sp-instance">
30
+ <p class="sp-tab-select sp-tab-select-dummy">
31
+ <?php
32
+ $args = array(
33
+ 'taxonomy' => 'sp_league',
34
+ 'name' => 'sp_league_dummy',
35
+ 'class' => 'sp-dummy sp_league-dummy',
36
+ 'show_option_all' => __( 'All', 'sportspress' ),
37
+ 'selected' => $league_id,
38
+ 'values' => 'term_id',
39
+ );
40
+ sp_dropdown_taxonomies( $args );
41
+ ?>
42
+ </p>
43
+ <p class="sp-tab-select sp-tab-select-dummy">
44
+ <?php
45
+ $args = array(
46
+ 'taxonomy' => 'sp_season',
47
+ 'name' => 'sp_season_dummy',
48
+ 'class' => 'sp-dummy sp_season-dummy',
49
+ 'show_option_all' => __( 'All', 'sportspress' ),
50
+ 'selected' => $season_id,
51
+ 'values' => 'term_id',
52
+ );
53
+ sp_dropdown_taxonomies( $args );
54
+ ?>
55
+ </p>
56
  <p class="sp-tab-select sp-title-generator">
57
  <?php
58
  $args = array(
65
  wp_dropdown_pages( $args );
66
  ?>
67
  </p>
68
+ <ul id="sp_team-tabs" class="wp-tab-bar sp-tab-bar">
69
+ <li class="wp-tab-active"><a href="#sp_player-all"><?php _e( 'Players', 'sportspress' ); ?></a></li>
70
+ <li class="wp-tab"><a href="#sp_staff-all"><?php _e( 'Staff', 'sportspress' ); ?></a></li>
71
+ </ul>
72
+ <?php
73
+ sp_post_checklist( $post->ID, 'sp_player', 'block', array( 'sp_league', 'sp_season', 'sp_current_team' ), $i );
74
+ sp_post_checklist( $post->ID, 'sp_staff', 'none', array( 'sp_league', 'sp_season', 'sp_current_team' ), $i );
 
 
 
 
75
  ?>
76
  </div>
77
  <?php
includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Meta_Boxes
8
- * @version 1.0.2
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -37,6 +37,7 @@ class SP_Meta_Box_List_Data {
37
  * Admin edit table
38
  */
39
  public static function table( $columns = array(), $data = array(), $placeholders = array(), $adjustments = array() ) {
 
40
  ?>
41
  <ul class="subsubsub sp-table-bar">
42
  <li><a href="#sp-table-values" class="current"><?php _e( 'Values', 'sportspress' ); ?></a></li> |
@@ -77,6 +78,7 @@ class SP_Meta_Box_List_Data {
77
  <tr class="sp-row sp-post<?php if ( $i % 2 == 0 ) echo ' alternate'; ?>">
78
  <td><?php echo ( $number ? $number : '&nbsp;' ); ?></td>
79
  <td>
 
80
  <span class="sp-default-value">
81
  <span class="sp-default-value-input"><?php echo $default_name; ?></span>
82
  <a class="dashicons dashicons-edit sp-edit" title="<?php _e( 'Edit', 'sportspress' ); ?>"></a>
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Meta_Boxes
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
37
  * Admin edit table
38
  */
39
  public static function table( $columns = array(), $data = array(), $placeholders = array(), $adjustments = array() ) {
40
+ $show_player_photo = get_option( 'sportspress_list_show_photos', 'no' ) == 'yes' ? true : false;
41
  ?>
42
  <ul class="subsubsub sp-table-bar">
43
  <li><a href="#sp-table-values" class="current"><?php _e( 'Values', 'sportspress' ); ?></a></li> |
78
  <tr class="sp-row sp-post<?php if ( $i % 2 == 0 ) echo ' alternate'; ?>">
79
  <td><?php echo ( $number ? $number : '&nbsp;' ); ?></td>
80
  <td>
81
+ <?php if ( $show_player_photo ) echo get_the_post_thumbnail( $player_id, 'sportspress-fit-mini' ); ?>
82
  <span class="sp-default-value">
83
  <span class="sp-default-value-input"><?php echo $default_name; ?></span>
84
  <a class="dashicons dashicons-edit sp-edit" title="<?php _e( 'Edit', 'sportspress' ); ?>"></a>
includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php CHANGED
@@ -28,11 +28,12 @@ class SP_Meta_Box_List_Details {
28
  ?>
29
  <div>
30
  <p><strong><?php _e( 'League', 'sportspress' ); ?></strong></p>
31
- <p>
32
  <?php
33
  $args = array(
34
  'taxonomy' => 'sp_league',
35
  'name' => 'sp_league',
 
36
  'selected' => $league_id,
37
  'values' => 'term_id',
38
  );
@@ -47,6 +48,7 @@ class SP_Meta_Box_List_Details {
47
  $args = array(
48
  'taxonomy' => 'sp_season',
49
  'name' => 'sp_season',
 
50
  'selected' => $season_id,
51
  'values' => 'term_id',
52
  );
@@ -102,7 +104,7 @@ class SP_Meta_Box_List_Details {
102
  </p>
103
  <p><strong><?php _e( 'Players', 'sportspress' ); ?></strong></p>
104
  <?php
105
- sp_post_checklist( $post->ID, 'sp_player', 'block', 'sp_current_team' );
106
  sp_post_adder( 'sp_player', __( 'Add New', 'sportspress' ) );
107
  ?>
108
  </div>
28
  ?>
29
  <div>
30
  <p><strong><?php _e( 'League', 'sportspress' ); ?></strong></p>
31
+ <p class="sp-tab-select">
32
  <?php
33
  $args = array(
34
  'taxonomy' => 'sp_league',
35
  'name' => 'sp_league',
36
+ 'show_option_all' => __( 'All', 'sportspress' ),
37
  'selected' => $league_id,
38
  'values' => 'term_id',
39
  );
48
  $args = array(
49
  'taxonomy' => 'sp_season',
50
  'name' => 'sp_season',
51
+ 'show_option_all' => __( 'All', 'sportspress' ),
52
  'selected' => $season_id,
53
  'values' => 'term_id',
54
  );
104
  </p>
105
  <p><strong><?php _e( 'Players', 'sportspress' ); ?></strong></p>
106
  <?php
107
+ sp_post_checklist( $post->ID, 'sp_player', 'block', array( 'sp_league', 'sp_season', 'sp_current_team' ) );
108
  sp_post_adder( 'sp_player', __( 'Add New', 'sportspress' ) );
109
  ?>
110
  </div>
includes/admin/post-types/meta-boxes/class-sp-meta-box-list-shortcode.php CHANGED
@@ -25,7 +25,7 @@ class SP_Meta_Box_List_Shortcode {
25
  <p class="howto">
26
  <?php _e( 'Copy this code and paste it into your post, page or text widget content.', 'sportspress' ); ?>
27
  </p>
28
- <p><input type="text" value="[player_<?php echo $the_format; ?> <?php echo $post->ID; ?>]" readonly="readonly" class="wp-ui-text-highlight code"></p>
29
  <?php
30
  }
31
  }
25
  <p class="howto">
26
  <?php _e( 'Copy this code and paste it into your post, page or text widget content.', 'sportspress' ); ?>
27
  </p>
28
+ <p><input type="text" value="[player_<?php echo $the_format; ?> <?php echo $post->ID; ?>]" readonly="readonly" class="code"></p>
29
  <?php
30
  }
31
  }
includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php CHANGED
@@ -26,11 +26,11 @@ class SP_Meta_Box_Player_Shortcode {
26
  <p>
27
  <strong><?php _e( 'Details', 'sportspress' ); ?></strong>
28
  </p>
29
- <p><input type="text" value="[player_details <?php echo $post->ID; ?>]" readonly="readonly" class="wp-ui-text-highlight code"></p>
30
  <p>
31
  <strong><?php _e( 'Statistics', 'sportspress' ); ?></strong>
32
  </p>
33
- <p><input type="text" value="[player_statistics <?php echo $post->ID; ?>]" readonly="readonly" class="wp-ui-text-highlight code"></p>
34
  <?php
35
  }
36
  }
26
  <p>
27
  <strong><?php _e( 'Details', 'sportspress' ); ?></strong>
28
  </p>
29
+ <p><input type="text" value="[player_details <?php echo $post->ID; ?>]" readonly="readonly" class="code"></p>
30
  <p>
31
  <strong><?php _e( 'Statistics', 'sportspress' ); ?></strong>
32
  </p>
33
+ <p><input type="text" value="[player_statistics <?php echo $post->ID; ?>]" readonly="readonly" class="code"></p>
34
  <?php
35
  }
36
  }
includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Meta_Boxes
8
- * @version 1.1.4
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -19,27 +19,24 @@ class SP_Meta_Box_Player_Statistics {
19
  * Output the metabox
20
  */
21
  public static function output( $post ) {
 
22
  $leagues = get_the_terms( $post->ID, 'sp_league' );
23
  $league_num = sizeof( $leagues );
24
 
25
  // Loop through statistics for each league
26
  if ( $leagues ): foreach ( $leagues as $league ):
27
-
28
- if ( $league_num > 1 ):
29
- ?>
30
- <p><strong><?php echo $league->name; ?></strong></p>
31
- <?php
32
- endif;
33
-
34
- $player = new SP_Player( $post );
35
  list( $columns, $data, $placeholders, $merged, $seasons_teams ) = $player->data( $league->term_id, true );
36
  self::table( $post->ID, $league->term_id, $columns, $data, $placeholders, $merged, $seasons_teams );
37
 
38
- endforeach; else:
39
-
40
- printf( __( 'Select %s', 'sportspress' ), __( 'Leagues', 'sportspress' ) );
41
-
42
- endif;
 
43
  }
44
 
45
  /**
@@ -61,10 +58,12 @@ class SP_Meta_Box_Player_Statistics {
61
  <thead>
62
  <tr>
63
  <th><?php _e( 'Season', 'sportspress' ); ?></th>
64
- <th><label for="sp_columns_team">
65
- <input type="checkbox" name="sp_columns[]" value="team" id="sp_columns_team" <?php checked( ! is_array( $columns ) || array_key_exists( 'team', $columns ) ); ?>>
66
- <?php _e( 'Team', 'sportspress' ); ?>
67
- </label></th>
 
 
68
  <?php foreach ( $columns as $key => $label ): if ( $key == 'team' ) continue; ?>
69
  <th><?php echo $label; ?></th>
70
  <?php endforeach; ?>
@@ -74,44 +73,53 @@ class SP_Meta_Box_Player_Statistics {
74
  <?php
75
  $i = 0;
76
  foreach ( $data as $div_id => $div_stats ):
77
- if ( !$div_id || $div_id == 'statistics' ) continue;
78
  $div = get_term( $div_id, 'sp_season' );
79
  ?>
80
  <tr class="sp-row sp-post<?php if ( $i % 2 == 0 ) echo ' alternate'; ?>">
81
- <td>
82
- <?php echo $div->name; ?>
83
- </td>
84
  <td>
85
  <?php
86
- $value = sp_array_value( $leagues, $div_id, '-1' );
87
- $args = array(
88
- 'post_type' => 'sp_team',
89
- 'name' => 'sp_leagues[' . $league_id . '][' . $div_id . ']',
90
- 'show_option_none' => __( '&mdash; None &mdash;', 'sportspress' ),
91
- 'sort_order' => 'ASC',
92
- 'sort_column' => 'menu_order',
93
- 'selected' => $value,
94
- 'values' => 'ID',
95
- 'include' => $teams,
96
- 'tax_query' => array(
97
- 'relation' => 'AND',
98
- array(
99
- 'taxonomy' => 'sp_league',
100
- 'terms' => $league_id,
101
- 'field' => 'id',
102
- ),
103
- array(
104
- 'taxonomy' => 'sp_season',
105
- 'terms' => $div_id,
106
- 'field' => 'id',
107
- ),
108
- ),
109
- );
110
- if ( ! sp_dropdown_pages( $args ) ):
111
- _e( 'No results found.', 'sportspress' );
112
- endif;
113
  ?>
114
  </td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  <?php foreach ( $columns as $column => $label ): if ( $column == 'team' ) continue;
116
  ?>
117
  <td><?php
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Meta_Boxes
8
+ * @version 1.3.2
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
19
  * Output the metabox
20
  */
21
  public static function output( $post ) {
22
+ $player = new SP_Player( $post );
23
  $leagues = get_the_terms( $post->ID, 'sp_league' );
24
  $league_num = sizeof( $leagues );
25
 
26
  // Loop through statistics for each league
27
  if ( $leagues ): foreach ( $leagues as $league ):
28
+ ?>
29
+ <p><strong><?php echo $league->name; ?></strong></p>
30
+ <?php
 
 
 
 
 
31
  list( $columns, $data, $placeholders, $merged, $seasons_teams ) = $player->data( $league->term_id, true );
32
  self::table( $post->ID, $league->term_id, $columns, $data, $placeholders, $merged, $seasons_teams );
33
 
34
+ endforeach; endif;
35
+ ?>
36
+ <p><strong><?php _e( 'Total', 'sportspress' ); ?></strong></p>
37
+ <?php
38
+ list( $columns, $data, $placeholders, $merged, $seasons_teams ) = $player->data( 0, true );
39
+ self::table( $post->ID, 0, $columns, $data, $placeholders, $merged, $seasons_teams );
40
  }
41
 
42
  /**
58
  <thead>
59
  <tr>
60
  <th><?php _e( 'Season', 'sportspress' ); ?></th>
61
+ <?php if ( $league_id ): ?>
62
+ <th><label for="sp_columns_team">
63
+ <input type="checkbox" name="sp_columns[]" value="team" id="sp_columns_team" <?php checked( ! is_array( $columns ) || array_key_exists( 'team', $columns ) ); ?>>
64
+ <?php _e( 'Team', 'sportspress' ); ?>
65
+ </label></th>
66
+ <?php endif; ?>
67
  <?php foreach ( $columns as $key => $label ): if ( $key == 'team' ) continue; ?>
68
  <th><?php echo $label; ?></th>
69
  <?php endforeach; ?>
73
  <?php
74
  $i = 0;
75
  foreach ( $data as $div_id => $div_stats ):
76
+ if ( $div_id === 'statistics' ) continue;
77
  $div = get_term( $div_id, 'sp_season' );
78
  ?>
79
  <tr class="sp-row sp-post<?php if ( $i % 2 == 0 ) echo ' alternate'; ?>">
 
 
 
80
  <td>
81
  <?php
82
+ if ( 'WP_Error' == get_class( $div ) ) _e( 'Total', 'sportspress' );
83
+ else echo $div->name;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  ?>
85
  </td>
86
+ <?php if ( $league_id ): ?>
87
+ <?php if ( $div_id == 0 ): ?>
88
+ <td>&nbsp;</td>
89
+ <?php else: ?>
90
+ <td>
91
+ <?php
92
+ $value = sp_array_value( $leagues, $div_id, '-1' );
93
+ $args = array(
94
+ 'post_type' => 'sp_team',
95
+ 'name' => 'sp_leagues[' . $league_id . '][' . $div_id . ']',
96
+ 'show_option_none' => __( '&mdash; None &mdash;', 'sportspress' ),
97
+ 'sort_order' => 'ASC',
98
+ 'sort_column' => 'menu_order',
99
+ 'selected' => $value,
100
+ 'values' => 'ID',
101
+ 'include' => $teams,
102
+ 'tax_query' => array(
103
+ 'relation' => 'AND',
104
+ array(
105
+ 'taxonomy' => 'sp_league',
106
+ 'terms' => $league_id,
107
+ 'field' => 'id',
108
+ ),
109
+ array(
110
+ 'taxonomy' => 'sp_season',
111
+ 'terms' => $div_id,
112
+ 'field' => 'id',
113
+ ),
114
+ ),
115
+ );
116
+ if ( ! sp_dropdown_pages( $args ) ):
117
+ _e( 'No results found.', 'sportspress' );
118
+ endif;
119
+ ?>
120
+ </td>
121
+ <?php endif; ?>
122
+ <?php endif; ?>
123
  <?php foreach ( $columns as $column => $label ): if ( $column == 'team' ) continue;
124
  ?>
125
  <td><?php
includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php CHANGED
@@ -22,7 +22,6 @@ class SP_Meta_Box_Staff_Details {
22
  wp_nonce_field( 'sportspress_save_data', 'sportspress_meta_nonce' );
23
  $continents = SP()->countries->continents;
24
 
25
- $role = get_post_meta( $post->ID, 'sp_role', true );
26
  $nationality = get_post_meta( $post->ID, 'sp_nationality', true );
27
 
28
  $leagues = get_the_terms( $post->ID, 'sp_league' );
@@ -40,13 +39,34 @@ class SP_Meta_Box_Staff_Details {
40
  $season_ids[] = $season->term_id;
41
  endforeach;
42
  endif;
 
 
 
 
 
 
 
 
43
 
44
  $teams = get_posts( array( 'post_type' => 'sp_team', 'posts_per_page' => -1 ) );
45
  $past_teams = array_filter( get_post_meta( $post->ID, 'sp_past_team', false ) );
46
  $current_teams = array_filter( get_post_meta( $post->ID, 'sp_current_team', false ) );
47
  ?>
48
  <p><strong><?php _e( 'Role', 'sportspress' ); ?></strong></p>
49
- <p><input type="text" id="sp_role" name="sp_role" value="<?php echo $role; ?>"></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
50
 
51
  <p><strong><?php _e( 'Nationality', 'sportspress' ); ?></strong></p>
52
  <p><select id="sp_nationality" name="sp_nationality" data-placeholder="<?php printf( __( 'Select %s', 'sportspress' ), __( 'Nationality', 'sportspress' ) ); ?>" class="widefat chosen-select<?php if ( is_rtl() ): ?> chosen-rtl<?php endif; ?>">
@@ -126,7 +146,7 @@ class SP_Meta_Box_Staff_Details {
126
  * Save meta box data
127
  */
128
  public static function save( $post_id, $post ) {
129
- update_post_meta( $post_id, 'sp_role', sp_array_value( $_POST, 'sp_role', '' ) );
130
  update_post_meta( $post_id, 'sp_nationality', sp_array_value( $_POST, 'sp_nationality', '' ) );
131
  sp_update_post_meta_recursive( $post_id, 'sp_current_team', sp_array_value( $_POST, 'sp_current_team', array() ) );
132
  sp_update_post_meta_recursive( $post_id, 'sp_past_team', sp_array_value( $_POST, 'sp_past_team', array() ) );
22
  wp_nonce_field( 'sportspress_save_data', 'sportspress_meta_nonce' );
23
  $continents = SP()->countries->continents;
24
 
 
25
  $nationality = get_post_meta( $post->ID, 'sp_nationality', true );
26
 
27
  $leagues = get_the_terms( $post->ID, 'sp_league' );
39
  $season_ids[] = $season->term_id;
40
  endforeach;
41
  endif;
42
+
43
+ $roles = get_the_terms( $post->ID, 'sp_role' );
44
+ if ( $roles ):
45
+ $term = array_shift( $roles );
46
+ $role = $term->term_id;
47
+ else:
48
+ $role = null;
49
+ endif;
50
 
51
  $teams = get_posts( array( 'post_type' => 'sp_team', 'posts_per_page' => -1 ) );
52
  $past_teams = array_filter( get_post_meta( $post->ID, 'sp_past_team', false ) );
53
  $current_teams = array_filter( get_post_meta( $post->ID, 'sp_current_team', false ) );
54
  ?>
55
  <p><strong><?php _e( 'Role', 'sportspress' ); ?></strong></p>
56
+ <p><?php
57
+ $args = array(
58
+ 'taxonomy' => 'sp_role',
59
+ 'name' => 'sp_role',
60
+ 'selected' => $role,
61
+ 'values' => 'term_id',
62
+ 'placeholder' => sprintf( __( 'Select %s', 'sportspress' ), __( 'Role', 'sportspress' ) ),
63
+ 'class' => 'widefat',
64
+ 'chosen' => true,
65
+ );
66
+ if ( ! sp_dropdown_taxonomies( $args ) ):
67
+ sp_taxonomy_adder( 'sp_role', 'sp_player', __( 'Add New', 'sportspress' ) );
68
+ endif;
69
+ ?></p>
70
 
71
  <p><strong><?php _e( 'Nationality', 'sportspress' ); ?></strong></p>
72
  <p><select id="sp_nationality" name="sp_nationality" data-placeholder="<?php printf( __( 'Select %s', 'sportspress' ), __( 'Nationality', 'sportspress' ) ); ?>" class="widefat chosen-select<?php if ( is_rtl() ): ?> chosen-rtl<?php endif; ?>">
146
  * Save meta box data
147
  */
148
  public static function save( $post_id, $post ) {
149
+ wp_set_post_terms( $post_id, sp_array_value( $_POST, 'sp_role', null ), 'sp_role', false );
150
  update_post_meta( $post_id, 'sp_nationality', sp_array_value( $_POST, 'sp_nationality', '' ) );
151
  sp_update_post_meta_recursive( $post_id, 'sp_current_team', sp_array_value( $_POST, 'sp_current_team', array() ) );
152
  sp_update_post_meta_recursive( $post_id, 'sp_past_team', sp_array_value( $_POST, 'sp_past_team', array() ) );
includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php CHANGED
@@ -22,13 +22,15 @@ class SP_Meta_Box_Table_Data {
22
  $table = new SP_League_Table( $post );
23
  list( $columns, $usecolumns, $data, $placeholders, $merged ) = $table->data( true );
24
  $adjustments = $table->adjustments;
25
- self::table( $columns, $usecolumns, $data, $placeholders, $adjustments );
 
26
  }
27
 
28
  /**
29
  * Save meta box data
30
  */
31
  public static function save( $post_id, $post ) {
 
32
  update_post_meta( $post_id, 'sp_columns', sp_array_value( $_POST, 'sp_columns', array() ) );
33
  update_post_meta( $post_id, 'sp_adjustments', sp_array_value( $_POST, 'sp_adjustments', array() ) );
34
  update_post_meta( $post_id, 'sp_teams', sp_array_value( $_POST, 'sp_teams', array() ) );
@@ -37,11 +39,12 @@ class SP_Meta_Box_Table_Data {
37
  /**
38
  * Admin edit table
39
  */
40
- public static function table( $columns = array(), $usecolumns = null, $data = array(), $placeholders = array(), $adjustments = array() ) {
41
  if ( is_array( $usecolumns ) )
42
  $usecolumns = array_filter( $usecolumns );
43
- $show_team_logo = get_option( 'sportspress_table_show_logos', false );
44
  ?>
 
45
  <ul class="subsubsub sp-table-bar">
46
  <li><a href="#sp-table-values" class="current"><?php _e( 'Values', 'sportspress' ); ?></a></li> |
47
  <li><a href="#sp-table-adjustments" class=""><?php _e( 'Adjustments', 'sportspress' ); ?></a></li>
@@ -50,6 +53,7 @@ class SP_Meta_Box_Table_Data {
50
  <table class="widefat sp-data-table sp-league-table">
51
  <thead>
52
  <tr>
 
53
  <th><?php _e( 'Team', 'sportspress' ); ?></th>
54
  <?php foreach ( $columns as $key => $label ): ?>
55
  <th><label for="sp_columns_<?php echo $key; ?>">
@@ -72,6 +76,7 @@ class SP_Meta_Box_Table_Data {
72
  $default_name = get_the_title( $team_id );
73
  ?>
74
  <tr class="sp-row sp-post<?php if ( $i % 2 == 0 ) echo ' alternate'; ?>">
 
75
  <td>
76
  <?php if ( $show_team_logo ) echo get_the_post_thumbnail( $team_id, 'sportspress-fit-mini' ); ?>
77
  <span class="sp-default-value">
@@ -97,7 +102,7 @@ class SP_Meta_Box_Table_Data {
97
  else:
98
  ?>
99
  <tr class="sp-row alternate">
100
- <td colspan="<?php $colspan = sizeof( $columns ) + 1; echo $colspan; ?>">
101
  <?php printf( __( 'Select %s', 'sportspress' ), __( 'Teams', 'sportspress' ) ); ?>
102
  </td>
103
  </tr>
22
  $table = new SP_League_Table( $post );
23
  list( $columns, $usecolumns, $data, $placeholders, $merged ) = $table->data( true );
24
  $adjustments = $table->adjustments;
25
+ $highlight = get_post_meta( $table->ID, 'sp_highlight', true );
26
+ self::table( $columns, $usecolumns, $data, $placeholders, $adjustments, $highlight );
27
  }
28
 
29
  /**
30
  * Save meta box data
31
  */
32
  public static function save( $post_id, $post ) {
33
+ update_post_meta( $post_id, 'sp_highlight', sp_array_value( $_POST, 'sp_highlight', array() ) );
34
  update_post_meta( $post_id, 'sp_columns', sp_array_value( $_POST, 'sp_columns', array() ) );
35
  update_post_meta( $post_id, 'sp_adjustments', sp_array_value( $_POST, 'sp_adjustments', array() ) );
36
  update_post_meta( $post_id, 'sp_teams', sp_array_value( $_POST, 'sp_teams', array() ) );
39
  /**
40
  * Admin edit table
41
  */
42
+ public static function table( $columns = array(), $usecolumns = null, $data = array(), $placeholders = array(), $adjustments = array(), $highlight = null ) {
43
  if ( is_array( $usecolumns ) )
44
  $usecolumns = array_filter( $usecolumns );
45
+ $show_team_logo = get_option( 'sportspress_table_show_logos', 'no' ) == 'yes' ? true : false;
46
  ?>
47
+ <input type="hidden" name="sp_highlight" value="0">
48
  <ul class="subsubsub sp-table-bar">
49
  <li><a href="#sp-table-values" class="current"><?php _e( 'Values', 'sportspress' ); ?></a></li> |
50
  <li><a href="#sp-table-adjustments" class=""><?php _e( 'Adjustments', 'sportspress' ); ?></a></li>
53
  <table class="widefat sp-data-table sp-league-table">
54
  <thead>
55
  <tr>
56
+ <th class="radio"><span class="dashicons sp-icon-shield tips" title="<?php _e( 'Highlight', 'sportspress' ); ?>"></span></th>
57
  <th><?php _e( 'Team', 'sportspress' ); ?></th>
58
  <?php foreach ( $columns as $key => $label ): ?>
59
  <th><label for="sp_columns_<?php echo $key; ?>">
76
  $default_name = get_the_title( $team_id );
77
  ?>
78
  <tr class="sp-row sp-post<?php if ( $i % 2 == 0 ) echo ' alternate'; ?>">
79
+ <td><input type="radio" class="sp-radio-toggle" name="sp_highlight" value="<?php echo $team_id; ?>" <?php checked( $highlight, $team_id ); ?>></td>
80
  <td>
81
  <?php if ( $show_team_logo ) echo get_the_post_thumbnail( $team_id, 'sportspress-fit-mini' ); ?>
82
  <span class="sp-default-value">
102
  else:
103
  ?>
104
  <tr class="sp-row alternate">
105
+ <td colspan="<?php $colspan = sizeof( $columns ) + 2; echo $colspan; ?>">
106
  <?php printf( __( 'Select %s', 'sportspress' ), __( 'Teams', 'sportspress' ) ); ?>
107
  </td>
108
  </tr>
includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php CHANGED
@@ -25,13 +25,14 @@ class SP_Meta_Box_Table_Details {
25
  ?>
26
  <div>
27
  <p><strong><?php _e( 'League', 'sportspress' ); ?></strong></p>
28
- <p>
29
  <?php
30
  $args = array(
31
  'taxonomy' => 'sp_league',
32
  'name' => 'sp_league',
 
33
  'selected' => $league_id,
34
- 'values' => 'term_id'
35
  );
36
  if ( ! sp_dropdown_taxonomies( $args ) ):
37
  sp_taxonomy_adder( 'sp_league', 'sp_team', __( 'Add New', 'sportspress' ) );
@@ -44,8 +45,9 @@ class SP_Meta_Box_Table_Details {
44
  $args = array(
45
  'taxonomy' => 'sp_season',
46
  'name' => 'sp_season',
 
47
  'selected' => $season_id,
48
- 'values' => 'term_id'
49
  );
50
  if ( ! sp_dropdown_taxonomies( $args ) ):
51
  sp_taxonomy_adder( 'sp_season', 'sp_team', __( 'Add New', 'sportspress' ) );
@@ -54,7 +56,7 @@ class SP_Meta_Box_Table_Details {
54
  </p>
55
  <p><strong><?php _e( 'Teams', 'sportspress' ); ?></strong></p>
56
  <?php
57
- sp_post_checklist( $post->ID, 'sp_team', 'block', 'sp_season' );
58
  sp_post_adder( 'sp_team', __( 'Add New', 'sportspress' ) );
59
  ?>
60
  </div>
25
  ?>
26
  <div>
27
  <p><strong><?php _e( 'League', 'sportspress' ); ?></strong></p>
28
+ <p class="sp-tab-select">
29
  <?php
30
  $args = array(
31
  'taxonomy' => 'sp_league',
32
  'name' => 'sp_league',
33
+ 'show_option_all' => __( 'All', 'sportspress' ),
34
  'selected' => $league_id,
35
+ 'values' => 'term_id',
36
  );
37
  if ( ! sp_dropdown_taxonomies( $args ) ):
38
  sp_taxonomy_adder( 'sp_league', 'sp_team', __( 'Add New', 'sportspress' ) );
45
  $args = array(
46
  'taxonomy' => 'sp_season',
47
  'name' => 'sp_season',
48
+ 'show_option_all' => __( 'All', 'sportspress' ),
49
  'selected' => $season_id,
50
+ 'values' => 'term_id',
51
  );
52
  if ( ! sp_dropdown_taxonomies( $args ) ):
53
  sp_taxonomy_adder( 'sp_season', 'sp_team', __( 'Add New', 'sportspress' ) );
56
  </p>
57
  <p><strong><?php _e( 'Teams', 'sportspress' ); ?></strong></p>
58
  <?php
59
+ sp_post_checklist( $post->ID, 'sp_team', 'block', array( 'sp_league', 'sp_season' ) );
60
  sp_post_adder( 'sp_team', __( 'Add New', 'sportspress' ) );
61
  ?>
62
  </div>
includes/admin/post-types/meta-boxes/class-sp-meta-box-table-shortcode.php CHANGED
@@ -23,7 +23,7 @@ class SP_Meta_Box_Table_Shortcode {
23
  <p class="howto">
24
  <?php _e( 'Copy this code and paste it into your post, page or text widget content.', 'sportspress' ); ?>
25
  </p>
26
- <p><input type="text" value="[league_table <?php echo $post->ID; ?>]" readonly="readonly" class="wp-ui-text-highlight code"></p>
27
  <?php
28
  }
29
  }
23
  <p class="howto">
24
  <?php _e( 'Copy this code and paste it into your post, page or text widget content.', 'sportspress' ); ?>
25
  </p>
26
+ <p><input type="text" value="[league_table <?php echo $post->ID; ?>]" readonly="readonly" class="code"></p>
27
  <?php
28
  }
29
  }
includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Meta_Boxes
8
- * @version 0.8
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -19,6 +19,7 @@ class SP_Meta_Box_Team_Columns {
19
  * Output the metabox
20
  */
21
  public static function output( $post ) {
 
22
  $leagues = get_the_terms( $post->ID, 'sp_league' );
23
  $league_num = sizeof( $leagues );
24
 
@@ -26,44 +27,36 @@ class SP_Meta_Box_Team_Columns {
26
  if ( $leagues ): foreach ( $leagues as $league ):
27
 
28
  $league_id = $league->term_id;
29
-
30
- if ( $league_num > 1 ):
31
- ?>
32
- <p><strong><?php echo $league->name; ?></strong></p>
33
- <?php
34
- endif;
35
 
36
- $team = new SP_Team( $post );
37
-
38
- list( $columns, $data, $placeholders, $merged, $leagues_seasons ) = $team->columns( $league_id, true );
39
-
40
- self::table( $league_id, $columns, $data, $placeholders, $merged, $leagues_seasons );
41
-
42
- endforeach; else:
43
-
44
- printf( __( 'Select %s', 'sportspress' ), __( 'Leagues', 'sportspress' ) );
45
-
46
- endif;
47
  }
48
 
49
  /**
50
  * Save meta box data
51
  */
52
  public static function save( $post_id, $post ) {
53
- update_post_meta( $post_id, 'sp_leagues', sp_array_value( $_POST, 'sp_leagues', array() ) );
54
  update_post_meta( $post_id, 'sp_columns', sp_array_value( $_POST, 'sp_columns', array() ) );
55
  }
56
 
57
  /**
58
  * Admin edit table
59
  */
60
- public static function table( $league_id, $columns = array(), $data = array(), $placeholders = array(), $merged = array(), $seasons = array(), $readonly = false ) {
61
  ?>
62
  <div class="sp-data-table-container">
63
  <table class="widefat sp-data-table sp-team-column-table sp-select-all-range">
64
  <thead>
65
  <tr>
66
- <th class="check-column"><input class="sp-select-all" type="checkbox"></th>
67
  <th><?php _e( 'Season', 'sportspress' ); ?></th>
68
  <?php foreach ( $columns as $label ): ?>
69
  <th><?php echo $label; ?></th>
@@ -74,15 +67,16 @@ class SP_Meta_Box_Team_Columns {
74
  <?php
75
  $i = 0;
76
  foreach ( $data as $div_id => $div_stats ):
77
- if ( !$div_id ) continue;
78
  $div = get_term( $div_id, 'sp_season' );
79
  ?>
80
  <tr class="sp-row sp-post<?php if ( $i % 2 == 0 ) echo ' alternate'; ?>">
81
  <td>
82
- <input type="checkbox" name="sp_leagues[<?php echo $league_id; ?>][<?php echo $div_id; ?>]" id="sp_leagues_<?php echo $league_id; ?>_<?php echo $div_id; ?>" value="1" <?php checked( sp_array_value( $seasons, $div_id, 0 ), 1 ); ?>>
83
- </td>
84
- <td>
85
- <label for="sp_leagues_<?php echo $league_id; ?>_<?php echo $div_id; ?>"><?php echo $div->name; ?></label>
 
 
86
  </td>
87
  <?php foreach( $columns as $column => $label ):
88
  $value = sp_array_value( sp_array_value( $data, $div_id, array() ), $column, 0 );
@@ -90,10 +84,7 @@ class SP_Meta_Box_Team_Columns {
90
  <td><?php
91
  $value = sp_array_value( sp_array_value( $data, $div_id, array() ), $column, null );
92
  $placeholder = sp_array_value( sp_array_value( $placeholders, $div_id, array() ), $column, 0 );
93
- if ( $readonly )
94
- echo $value ? $value : $placeholder;
95
- else
96
- echo '<input type="text" name="sp_columns[' . $league_id . '][' . $div_id . '][' . $column . ']" value="' . $value . '" placeholder="' . $placeholder . '"' . ( $readonly ? ' disabled="disabled"' : '' ) . ' />';
97
  ?></td>
98
  <?php endforeach; ?>
99
  </tr>
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin/Meta_Boxes
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
19
  * Output the metabox
20
  */
21
  public static function output( $post ) {
22
+ $team = new SP_Team( $post );
23
  $leagues = get_the_terms( $post->ID, 'sp_league' );
24
  $league_num = sizeof( $leagues );
25
 
27
  if ( $leagues ): foreach ( $leagues as $league ):
28
 
29
  $league_id = $league->term_id;
30
+ ?>
31
+ <p><strong><?php echo $league->name; ?></strong></p>
32
+ <?php
33
+ list( $columns, $data, $placeholders ) = $team->columns( $league_id );
34
+ self::table( $league_id, $columns, $data, $placeholders );
 
35
 
36
+ endforeach; endif;
37
+ ?>
38
+ <p><strong><?php _e( 'Total', 'sportspress' ); ?></strong></p>
39
+ <?php
40
+ list( $columns, $data, $placeholders ) = $team->columns( 0 );
41
+ self::table( 0, $columns, $data, $placeholders );
 
 
 
 
 
42
  }
43
 
44
  /**
45
  * Save meta box data
46
  */
47
  public static function save( $post_id, $post ) {
 
48
  update_post_meta( $post_id, 'sp_columns', sp_array_value( $_POST, 'sp_columns', array() ) );
49
  }
50
 
51
  /**
52
  * Admin edit table
53
  */
54
+ public static function table( $league_id, $columns = array(), $data = array(), $placeholders = array() ) {
55
  ?>
56
  <div class="sp-data-table-container">
57
  <table class="widefat sp-data-table sp-team-column-table sp-select-all-range">
58
  <thead>
59
  <tr>
 
60
  <th><?php _e( 'Season', 'sportspress' ); ?></th>
61
  <?php foreach ( $columns as $label ): ?>
62
  <th><?php echo $label; ?></th>
67
  <?php
68
  $i = 0;
69
  foreach ( $data as $div_id => $div_stats ):
 
70
  $div = get_term( $div_id, 'sp_season' );
71
  ?>
72
  <tr class="sp-row sp-post<?php if ( $i % 2 == 0 ) echo ' alternate'; ?>">
73
  <td>
74
+ <label for="sp_leagues_<?php echo $league_id; ?>_<?php echo $div_id; ?>">
75
+ <?php
76
+ if ( 'WP_Error' == get_class( $div ) ) _e( 'Total', 'sportspress' );
77
+ else echo $div->name;
78
+ ?>
79
+ </label>
80
  </td>
81
  <?php foreach( $columns as $column => $label ):
82
  $value = sp_array_value( sp_array_value( $data, $div_id, array() ), $column, 0 );
84
  <td><?php
85
  $value = sp_array_value( sp_array_value( $data, $div_id, array() ), $column, null );
86
  $placeholder = sp_array_value( sp_array_value( $placeholders, $div_id, array() ), $column, 0 );
87
+ echo '<input type="text" name="sp_columns[' . $league_id . '][' . $div_id . '][' . $column . ']" value="' . $value . '" placeholder="' . $placeholder . '" />';
 
 
 
88
  ?></td>
89
  <?php endforeach; ?>
90
  </tr>
includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php CHANGED
@@ -52,7 +52,7 @@ class SP_Meta_Box_Team_Lists {
52
  <tr>
53
  <th class="check-column"><input class="sp-select-all" type="checkbox"></th>
54
  <th class="column-list">
55
- <?php _e( 'List', 'sportspress' ); ?>
56
  </th>
57
  <th class="column-players">
58
  <?php _e( 'Players', 'sportspress' ); ?>
52
  <tr>
53
  <th class="check-column"><input class="sp-select-all" type="checkbox"></th>
54
  <th class="column-list">
55
+ <?php _e( 'Player List', 'sportspress' ); ?>
56
  </th>
57
  <th class="column-players">
58
  <?php _e( 'Players', 'sportspress' ); ?>
includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Team League Tables
4
+ *
5
+ * @author ThemeBoy
6
+ * @category Admin
7
+ * @package SportsPress/Admin/Meta_Boxes
8
+ * @version 1.3
9
+ */
10
+
11
+ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
12
+
13
+ /**
14
+ * SP_Meta_Box_Team_Tables
15
+ */
16
+ class SP_Meta_Box_Team_Tables {
17
+
18
+ /**
19
+ * Output the metabox
20
+ */
21
+ public static function output( $post ) {
22
+ global $pagenow;
23
+
24
+ if ( $pagenow != 'post-new.php' ):
25
+
26
+ $team = new SP_Team( $post );
27
+ list( $data, $checked ) = $team->tables( true );
28
+ self::table( $data, $checked );
29
+
30
+ else:
31
+
32
+ printf( __( 'No results found.', 'sportspress' ) );
33
+
34
+ endif;
35
+ }
36
+
37
+ /**
38
+ * Save meta box data
39
+ */
40
+ public static function save( $post_id, $post ) {
41
+ sp_update_post_meta_recursive( $post_id, 'sp_table', sp_array_value( $_POST, 'sp_table', array() ) );
42
+ }
43
+
44
+ /**
45
+ * Admin edit table
46
+ */
47
+ public static function table( $data = array(), $checked = array() ) {
48
+ ?>
49
+ <div class="sp-data-table-container">
50
+ <table class="widefat sp-data-table sp-team-table-table sp-select-all-range">
51
+ <thead>
52
+ <tr>
53
+ <th class="check-column"><input class="sp-select-all" type="checkbox"></th>
54
+ <th class="column-table">
55
+ <?php _e( 'League Table', 'sportspress' ); ?>
56
+ </th>
57
+ <th class="column-players">
58
+ <?php _e( 'Teams', 'sportspress' ); ?>
59
+ </th>
60
+ <th class="column-league">
61
+ <?php _e( 'League', 'sportspress' ); ?>
62
+ </th>
63
+ <th class="column-season">
64
+ <?php _e( 'Season', 'sportspress' ); ?>
65
+ </th>
66
+ </tr>
67
+ </thead>
68
+ <tbody>
69
+ <?php
70
+ if ( is_array( $data ) ):
71
+ if ( sizeof( $data ) > 0 ):
72
+ $i = 0;
73
+ foreach ( $data as $table ):
74
+ $players = array_filter( get_post_meta( $table->ID, 'sp_player' ) );
75
+ $format = get_post_meta( $table->ID, 'sp_format', true );
76
+ ?>
77
+ <tr class="sp-row sp-post<?php if ( $i % 2 == 0 ) echo ' alternate'; ?>">
78
+ <td>
79
+ <input type="checkbox" name="sp_table[]" id="sp_table_<?php echo $table->ID; ?>" value="<?php echo $table->ID; ?>" <?php checked( in_array( $table->ID, $checked ) ); ?>>
80
+ </td>
81
+ <td>
82
+ <a href="<?php echo get_edit_post_link( $table->ID ); ?>">
83
+ <?php echo $table->post_title; ?>
84
+ </a>
85
+ </td>
86
+ <td><?php echo sizeof( $players ); ?></td>
87
+ <td><?php echo get_the_terms ( $table->ID, 'sp_league' ) ? the_terms( $table->ID, 'sp_league' ) : '&mdash;'; ?></td>
88
+ <td><?php echo get_the_terms ( $table->ID, 'sp_season' ) ? the_terms( $table->ID, 'sp_season' ) : '&mdash;'; ?></td>
89
+ </tr>
90
+ <?php
91
+ $i++;
92
+ endforeach;
93
+ else:
94
+ ?>
95
+ <tr class="sp-row alternate">
96
+ <td colspan="6">
97
+ <?php _e( 'No results found.', 'sportspress' ); ?>
98
+ </td>
99
+ </tr>
100
+ <?php
101
+ endif;
102
+ else:
103
+ ?>
104
+ <tr class="sp-row alternate">
105
+ <td colspan="5">
106
+ <?php printf( __( 'Select %s', 'sportspress' ), __( 'Details', 'sportspress' ) ); ?>
107
+ </td>
108
+ </tr>
109
+ <?php
110
+ endif;
111
+ ?>
112
+ </tbody>
113
+ </table>
114
+ </div>
115
+ <?php
116
+ }
117
+ }
includes/admin/settings/class-sp-settings-config.php DELETED
@@ -1,431 +0,0 @@
1
- <?php
2
- /**
3
- * SportsPress Configure Settings
4
- *
5
- * @author ThemeBoy
6
- * @category Admin
7
- * @package SportsPress/Admin
8
- * @version 1.1
9
- */
10
-
11
- if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
12
-
13
- if ( ! class_exists( 'SP_Settings_Config' ) ) :
14
-
15
- /**
16
- * SP_Settings_Configure
17
- */
18
- class SP_Settings_Config extends SP_Settings_Page {
19
-
20
- /**
21
- * Constructor.
22
- */
23
- public function __construct() {
24
- $this->id = 'config';
25
- $this->label = __( 'Configure', 'sportspress' );
26
-
27
- add_filter( 'sportspress_settings_tabs_array', array( $this, 'add_settings_page' ), 20 );
28
- add_action( 'sportspress_settings_' . $this->id, array( $this, 'output' ) );
29
- add_action( 'sportspress_admin_field_results', array( $this, 'results_setting' ) );
30
- add_action( 'sportspress_admin_field_outcomes', array( $this, 'outcomes_setting' ) );
31
- add_action( 'sportspress_admin_field_columns', array( $this, 'columns_setting' ) );
32
- add_action( 'sportspress_admin_field_metrics', array( $this, 'metrics_setting' ) );
33
- add_action( 'sportspress_admin_field_performance', array( $this, 'performance_setting' ) );
34
- add_action( 'sportspress_admin_field_statistics', array( $this, 'statistics_setting' ) );
35
- add_action( 'sportspress_settings_save_' . $this->id, array( $this, 'save' ) );
36
- }
37
-
38
- /**
39
- * Get settings array
40
- *
41
- * @return array
42
- */
43
- public function get_settings() {
44
-
45
- $settings = array(
46
- array( 'title' => __( 'Configure SportsPress', 'sportspress' ), 'type' => 'title','desc' => '', 'id' => 'config_options' ),
47
-
48
- array( 'type' => 'outcomes' ),
49
-
50
- array( 'type' => 'results' ),
51
- );
52
-
53
- if ( SP()->mode == 'team' ) $settings[] = array( 'type' => 'performance' );
54
-
55
- $settings[] = array( 'type' => 'columns' );
56
-
57
- if ( SP()->mode == 'team' ):
58
- $settings = array_merge( $settings, array(
59
- array( 'type' => 'metrics' ),
60
-
61
- array( 'type' => 'statistics' ),
62
- ));
63
- endif;
64
-
65
- $settings[] = array( 'type' => 'sectionend', 'id' => 'config_options' ); // End event settings
66
-
67
- return apply_filters( 'sportspress_config_settings', $settings );
68
- }
69
-
70
- /**
71
- * Save settings
72
- */
73
- public function save() {
74
- if ( isset( $_POST['sportspress_primary_result'] ) ):
75
- update_option( 'sportspress_primary_result', $_POST['sportspress_primary_result'] );
76
- endif;
77
-
78
- $settings = $this->get_settings();
79
- SP_Admin_Settings::save_fields( $settings );
80
- }
81
-
82
- /**
83
- * Output outcomes settings
84
- *
85
- * @access public
86
- * @return void
87
- */
88
- public function outcomes_setting() {
89
- $args = array(
90
- 'post_type' => 'sp_outcome',
91
- 'numberposts' => -1,
92
- 'posts_per_page' => -1,
93
- 'orderby' => 'menu_order',
94
- 'order' => 'ASC'
95
- );
96
- $data = get_posts( $args );
97
- ?>
98
- <tr valign="top">
99
- <th scope="row" class="titledesc">
100
- <?php _e( 'Event Outcomes', 'sportspress' ) ?>
101
- <p class="description"><?php _e( 'Used for events.', 'sportspress' ); ?></p>
102
- </th>
103
- <td class="forminp">
104
- <table class="widefat sp-admin-config-table">
105
- <thead>
106
- <tr>
107
- <th scope="col"><?php _e( 'Label', 'sportspress' ); ?></th>
108
- <th scope="col"><?php _e( 'Variable', 'sportspress' ); ?></th>
109
- <th scope="col"><?php _e( 'Abbreviation', 'sportspress' ); ?></th>
110
- <th scope="col"><?php _e( 'Description', 'sportspress' ); ?></th>
111
- <th scope="col" class="edit"></th>
112
- </tr>
113
- </thead>
114
- <?php $i = 0; foreach ( $data as $row ): ?>
115
- <tr<?php if ( $i % 2 == 0 ) echo ' class="alternate"'; ?>>
116
- <td class="row-title"><?php echo $row->post_title; ?></td>
117
- <td><?php echo $row->post_name; ?></td>
118
- <td><?php echo sp_get_post_abbreviation( $row->ID ); ?></td>
119
- <td><p class="description"><?php echo $row->post_excerpt; ?></p></td>
120
- <td class="edit"><a class="button" href="<?php echo get_edit_post_link( $row->ID ); ?>"><?php _e( 'Edit', 'sportspress' ); ?></s></td>
121
- </tr>
122
- <?php $i++; endforeach; ?>
123
- </table>
124
- <div class="tablenav bottom">
125
- <div class="alignleft actions">
126
- <a class="button" id="doaction" href="<?php echo admin_url( 'edit.php?post_type=sp_outcome' ); ?>"><?php _e( 'View All', 'sportspress' ); ?></a>
127
- <a class="button" id="doaction2" href="<?php echo admin_url( 'post-new.php?post_type=sp_outcome' ); ?>"><?php _e( 'Add New', 'sportspress' ); ?></a>
128
- </div>
129
- <br class="clear">
130
- </div>
131
- </td>
132
- </tr>
133
- <?php
134
- }
135
-
136
- /**
137
- * Results settings
138
- *
139
- * @access public
140
- * @return void
141
- */
142
- public function results_setting() {
143
- $selection = get_option( 'sportspress_primary_result', 0 );
144
-
145
- $args = array(
146
- 'post_type' => 'sp_result',
147
- 'numberposts' => -1,
148
- 'posts_per_page' => -1,
149
- 'orderby' => 'menu_order',
150
- 'order' => 'ASC'
151
- );
152
- $data = get_posts( $args );
153
- ?>
154
- <tr valign="top">
155
- <th scope="row" class="titledesc">
156
- <?php _e( 'Team Results', 'sportspress' ) ?>
157
- <p class="description"><?php _e( 'Used for events.', 'sportspress' ); ?></p>
158
- </th>
159
- <td class="forminp">
160
- <legend class="screen-reader-text"><span><?php _e( 'Team Results', 'sportspress' ) ?></span></legend>
161
- <table class="widefat sp-admin-config-table">
162
- <thead>
163
- <tr>
164
- <th scope="col"><?php _e( 'Primary', 'sportspress' ); ?></th>
165
- <th scope="col"><?php _e( 'Label', 'sportspress' ); ?></th>
166
- <th scope="col"><?php _e( 'Variables', 'sportspress' ); ?></th>
167
- <th scope="col"><?php _e( 'Description', 'sportspress' ); ?></th>
168
- <th scope="col" class="edit"></th>
169
- </tr>
170
- </thead>
171
- <tfoot>
172
- <tr>
173
- <th class="radio"><input type="radio" id="sportspress_primary_result_0" name="sportspress_primary_result" value="0" <?php checked( $selection, 0 ); ?>></th>
174
- <th colspan="4"><label for="sportspress_primary_result_0">
175
- <?php
176
- if ( sizeof( $data ) > 0 ):
177
- $default = end( $data );
178
- reset( $data );
179
- printf( __( 'Default (%s)', 'sportspress' ), $default->post_title );
180
- else:
181
- _e( 'Default', 'sportspress' );
182
- endif;
183
- ?>
184
- </label></th>
185
- </tr>
186
- </tfoot>
187
- <?php $i = 0; foreach ( $data as $row ): ?>
188
- <tr<?php if ( $i % 2 == 0 ) echo ' class="alternate"'; ?>>
189
- <td class="radio"><input type="radio" id="sportspress_primary_result_<?php echo $row->post_name; ?>" name="sportspress_primary_result" value="<?php echo $row->post_name; ?>" <?php checked( $selection, $row->post_name ); ?>></td>
190
- <td class="row-title"><label for="sportspress_primary_result_<?php echo $row->post_name; ?>"><?php echo $row->post_title; ?></label></td>
191
- <td><?php echo $row->post_name; ?>for, <?php echo $row->post_name; ?>against</td>
192
- <td><p class="description"><?php echo $row->post_excerpt; ?></p></td>
193
- <td class="edit"><a class="button" href="<?php echo get_edit_post_link( $row->ID ); ?>"><?php _e( 'Edit', 'sportspress' ); ?></s></td>
194
- </tr>
195
- <?php $i++; endforeach; ?>
196
- </table>
197
- <div class="tablenav bottom">
198
- <div class="alignleft actions">
199
- <a class="button" id="doaction" href="<?php echo admin_url( 'edit.php?post_type=sp_result' ); ?>"><?php _e( 'View All', 'sportspress' ); ?></a>
200
- <a class="button" id="doaction2" href="<?php echo admin_url( 'post-new.php?post_type=sp_result' ); ?>"><?php _e( 'Add New', 'sportspress' ); ?></a>
201
- </div>
202
- <br class="clear">
203
- </div>
204
- </td>
205
- </tr>
206
- <?php
207
- }
208
-
209
- /**
210
- * Output performance settings
211
- *
212
- * @access public
213
- * @return void
214
- */
215
- public function performance_setting() {
216
- $args = array(
217
- 'post_type' => 'sp_performance',
218
- 'numberposts' => -1,
219
- 'posts_per_page' => -1,
220
- 'orderby' => 'menu_order',
221
- 'order' => 'ASC'
222
- );
223
- $data = get_posts( $args );
224
- ?>
225
- <tr valign="top">
226
- <th scope="row" class="titledesc">
227
- <?php _e( 'Player Performance', 'sportspress' ) ?>
228
- <p class="description"><?php _e( 'Used for events.', 'sportspress' ); ?></p>
229
- </th>
230
- <td class="forminp">
231
- <table class="widefat sp-admin-config-table">
232
- <thead>
233
- <tr>
234
- <th scope="col"><?php _e( 'Label', 'sportspress' ); ?></th>
235
- <th scope="col"><?php _e( 'Variable', 'sportspress' ); ?></th>
236
- <th scope="col"><?php _e( 'Description', 'sportspress' ); ?></th>
237
- <th scope="col" class="edit"></th>
238
- </tr>
239
- </thead>
240
- <?php $i = 0; foreach ( $data as $row ): ?>
241
- <tr<?php if ( $i % 2 == 0 ) echo ' class="alternate"'; ?>>
242
- <td class="row-title"><?php echo $row->post_title; ?></td>
243
- <td><?php echo $row->post_name; ?></td>
244
- <td><p class="description"><?php echo $row->post_excerpt; ?></p></td>
245
- <td class="edit"><a class="button" href="<?php echo get_edit_post_link( $row->ID ); ?>"><?php _e( 'Edit', 'sportspress' ); ?></s></td>
246
- </tr>
247
- <?php $i++; endforeach; ?>
248
- </table>
249
- <div class="tablenav bottom">
250
- <div class="alignleft actions">
251
- <a class="button" id="doaction" href="<?php echo admin_url( 'edit.php?post_type=sp_performance' ); ?>"><?php _e( 'View All', 'sportspress' ); ?></a>
252
- <a class="button" id="doaction2" href="<?php echo admin_url( 'post-new.php?post_type=sp_performance' ); ?>"><?php _e( 'Add New', 'sportspress' ); ?></a>
253
- </div>
254
- <br class="clear">
255
- </div>
256
- </td>
257
- </tr>
258
- <?php
259
- }
260
-
261
- /**
262
- * Output columns settings
263
- *
264
- * @access public
265
- * @return void
266
- */
267
- public function columns_setting() {
268
- $args = array(
269
- 'post_type' => 'sp_column',
270
- 'numberposts' => -1,
271
- 'posts_per_page' => -1,
272
- 'orderby' => 'menu_order',
273
- 'order' => 'ASC'
274
- );
275
- $data = get_posts( $args );
276
- ?>
277
- <tr valign="top">
278
- <th scope="row" class="titledesc">
279
- <?php _e( 'Table Columns', 'sportspress' ) ?>
280
- <p class="description"><?php _e( 'Used for league tables.', 'sportspress' ); ?></p>
281
- </th>
282
- <td class="forminp">
283
- <table class="widefat sp-admin-config-table">
284
- <thead>
285
- <tr>
286
- <th scope="col"><?php _e( 'Label', 'sportspress' ); ?></th>
287
- <th scope="col"><?php _e( 'Key', 'sportspress' ); ?></th>
288
- <th scope="col"><?php _e( 'Equation', 'sportspress' ); ?></th>
289
- <th scope="col"><?php _e( 'Rounding', 'sportspress' ); ?></th>
290
- <th scope="col"><?php _e( 'Sort Order', 'sportspress' ); ?></th>
291
- <th scope="col"><?php _e( 'Description', 'sportspress' ); ?></th>
292
- <th scope="col" class="edit"></th>
293
- </tr>
294
- </thead>
295
- <?php $i = 0; foreach ( $data as $row ): ?>
296
- <tr<?php if ( $i % 2 == 0 ) echo ' class="alternate"'; ?>>
297
- <td class="row-title"><?php echo $row->post_title; ?></td>
298
- <td><?php echo $row->post_name; ?></td>
299
- <td><?php echo sp_get_post_equation( $row->ID ); ?></td>
300
- <td><?php echo sp_get_post_precision( $row->ID ); ?></td>
301
- <td><?php echo sp_get_post_order( $row->ID ); ?></td>
302
- <td><p class="description"><?php echo $row->post_excerpt; ?></p></td>
303
- <td class="edit"><a class="button" href="<?php echo get_edit_post_link( $row->ID ); ?>"><?php _e( 'Edit', 'sportspress' ); ?></s></td>
304
- </tr>
305
- <?php $i++; endforeach; ?>
306
- </table>
307
- <div class="tablenav bottom">
308
- <div class="alignleft actions">
309
- <a class="button" id="doaction" href="<?php echo admin_url( 'edit.php?post_type=sp_column' ); ?>"><?php _e( 'View All', 'sportspress' ); ?></a>
310
- <a class="button" id="doaction2" href="<?php echo admin_url( 'post-new.php?post_type=sp_column' ); ?>"><?php _e( 'Add New', 'sportspress' ); ?></a>
311
- </div>
312
- <br class="clear">
313
- </div>
314
- </fieldset>
315
- </td>
316
- </tr>
317
- <?php
318
- }
319
-
320
- /**
321
- * Output metrics settings
322
- *
323
- * @access public
324
- * @return void
325
- */
326
- public function metrics_setting() {
327
- $args = array(
328
- 'post_type' => 'sp_metric',
329
- 'numberposts' => -1,
330
- 'posts_per_page' => -1,
331
- 'orderby' => 'menu_order',
332
- 'order' => 'ASC'
333
- );
334
- $data = get_posts( $args );
335
- ?>
336
- <tr valign="top">
337
- <th scope="row" class="titledesc">
338
- <?php _e( 'Player Metrics', 'sportspress' ) ?>
339
- <p class="description"><?php _e( 'Used for player lists.', 'sportspress' ); ?></p>
340
- </th>
341
- <td class="forminp">
342
- <table class="widefat sp-admin-config-table">
343
- <thead>
344
- <tr>
345
- <th scope="col"><?php _e( 'Label', 'sportspress' ); ?></th>
346
- <th scope="col"><?php _e( 'Variable', 'sportspress' ); ?></th>
347
- <th scope="col"><?php _e( 'Description', 'sportspress' ); ?></th>
348
- <th scope="col" class="edit"></th>
349
- </tr>
350
- </thead>
351
- <?php $i = 0; foreach ( $data as $row ): ?>
352
- <tr<?php if ( $i % 2 == 0 ) echo ' class="alternate"'; ?>>
353
- <td class="row-title"><?php echo $row->post_title; ?></td>
354
- <td><?php echo $row->post_name; ?></td>
355
- <td><p class="description"><?php echo $row->post_excerpt; ?></p></td>
356
- <td class="edit"><a class="button" href="<?php echo get_edit_post_link( $row->ID ); ?>"><?php _e( 'Edit', 'sportspress' ); ?></s></td>
357
- </tr>
358
- <?php $i++; endforeach; ?>
359
- </table>
360
- <div class="tablenav bottom">
361
- <div class="alignleft actions">
362
- <a class="button" id="doaction" href="<?php echo admin_url( 'edit.php?post_type=sp_metric' ); ?>"><?php _e( 'View All', 'sportspress' ); ?></a>
363
- <a class="button" id="doaction2" href="<?php echo admin_url( 'post-new.php?post_type=sp_metric' ); ?>"><?php _e( 'Add New', 'sportspress' ); ?></a>
364
- </div>
365
- <br class="clear">
366
- </div>
367
- </td>
368
- </tr>
369
- <?php
370
- }
371
-
372
- /**
373
- * Output statistics settings
374
- *
375
- * @access public
376
- * @return void
377
- */
378
- public function statistics_setting() {
379
- $args = array(
380
- 'post_type' => 'sp_statistic',
381
- 'numberposts' => -1,
382
- 'posts_per_page' => -1,
383
- 'orderby' => 'menu_order',
384
- 'order' => 'ASC'
385
- );
386
- $data = get_posts( $args );
387
- ?>
388
- <tr valign="top">
389
- <th scope="row" class="titledesc">
390
- <?php _e( 'Player Statistics', 'sportspress' ) ?>
391
- <p class="description"><?php _e( 'Used for player lists.', 'sportspress' ); ?></p>
392
- </th>
393
- <td class="forminp">
394
- <table class="widefat sp-admin-config-table">
395
- <thead>
396
- <tr>
397
- <th scope="col"><?php _e( 'Label', 'sportspress' ); ?></th>
398
- <th scope="col"><?php _e( 'Key', 'sportspress' ); ?></th>
399
- <th scope="col"><?php _e( 'Equation', 'sportspress' ); ?></th>
400
- <th scope="col"><?php _e( 'Rounding', 'sportspress' ); ?></th>
401
- <th scope="col"><?php _e( 'Description', 'sportspress' ); ?></th>
402
- <th scope="col" class="edit"></th>
403
- </tr>
404
- </thead>
405
- <?php $i = 0; foreach ( $data as $row ): ?>
406
- <tr<?php if ( $i % 2 == 0 ) echo ' class="alternate"'; ?>>
407
- <td class="row-title"><?php echo $row->post_title; ?></td>
408
- <td><?php echo $row->post_name; ?></td>
409
- <td><?php echo sp_get_post_equation( $row->ID ); ?></td>
410
- <td><?php echo sp_get_post_precision( $row->ID ); ?></td>
411
- <td><p class="description"><?php echo $row->post_excerpt; ?></p></td>
412
- <td class="edit"><a class="button" href="<?php echo get_edit_post_link( $row->ID ); ?>"><?php _e( 'Edit', 'sportspress' ); ?></s></td>
413
- </tr>
414
- <?php $i++; endforeach; ?>
415
- </table>
416
- <div class="tablenav bottom">
417
- <div class="alignleft actions">
418
- <a class="button" id="doaction" href="<?php echo admin_url( 'edit.php?post_type=sp_statistic' ); ?>"><?php _e( 'View All', 'sportspress' ); ?></a>
419
- <a class="button" id="doaction2" href="<?php echo admin_url( 'post-new.php?post_type=sp_statistic' ); ?>"><?php _e( 'Add New', 'sportspress' ); ?></a>
420
- </div>
421
- <br class="clear">
422
- </div>
423
- </td>
424
- </tr>
425
- <?php
426
- }
427
- }
428
-
429
- endif;
430
-
431
- return new SP_Settings_Config();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/admin/settings/class-sp-settings-events.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
- * @version 1.1
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -40,6 +40,23 @@ class SP_Settings_Events extends SP_Settings_Page {
40
  return apply_filters( 'sportspress_event_settings', array(
41
 
42
  array( 'title' => __( 'Event Options', 'sportspress' ), 'type' => 'title','desc' => '', 'id' => 'event_options' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
 
44
  array(
45
  'title' => __( 'Limit', 'sportspress' ),
@@ -62,48 +79,43 @@ class SP_Settings_Events extends SP_Settings_Page {
62
  'id' => 'sportspress_event_show_logos',
63
  'default' => 'yes',
64
  'type' => 'checkbox',
 
65
  ),
66
 
67
  array(
68
- 'title' => __( 'Venue', 'sportspress' ),
69
- 'desc' => __( 'Display maps', 'sportspress' ),
70
- 'id' => 'sportspress_event_show_maps',
71
  'default' => 'yes',
72
  'type' => 'checkbox',
73
- 'checkboxgroup' => 'start',
74
  ),
75
 
76
  array(
77
- 'desc' => __( 'Link venues', 'sportspress' ),
78
- 'id' => 'sportspress_event_link_venues',
79
  'default' => 'no',
80
  'type' => 'checkbox',
81
  'checkboxgroup' => 'end',
82
  ),
83
 
84
  array(
85
- 'title' => __( 'Player Performance', 'sportspress' ),
86
- 'desc' => __( 'Display players', 'sportspress' ),
87
- 'id' => 'sportspress_event_show_players',
88
- 'default' => 'yes',
89
- 'type' => 'checkbox',
90
- 'checkboxgroup' => 'start',
91
- ),
92
-
93
- array(
94
- 'desc' => __( 'Link players', 'sportspress' ),
95
- 'id' => 'sportspress_event_link_players',
96
- 'default' => 'yes',
97
- 'type' => 'checkbox',
98
- 'checkboxgroup' => '',
99
  ),
100
 
101
  array(
102
- 'desc' => __( 'Display total', 'sportspress' ),
103
- 'id' => 'sportspress_event_show_total',
 
104
  'default' => 'yes',
105
  'type' => 'checkbox',
106
- 'checkboxgroup' => 'end',
107
  ),
108
 
109
  array(
@@ -114,46 +126,77 @@ class SP_Settings_Events extends SP_Settings_Page {
114
  'type' => 'checkbox',
115
  'checkboxgroup' => 'start',
116
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
 
118
  array(
119
- 'desc' => __( 'Link staff', 'sportspress' ),
120
- 'id' => 'sportspress_event_link_staff',
 
121
  'default' => 'yes',
122
  'type' => 'checkbox',
123
- 'checkboxgroup' => 'end',
 
 
 
 
 
 
 
 
 
 
 
 
124
  ),
125
 
126
- array( 'type' => 'sectionend', 'id' => 'event_options' ),
127
 
128
- array( 'title' => __( 'Calendars', 'sportspress' ), 'type' => 'title', 'id' => 'calendar_options' ),
129
 
130
  array(
131
- 'title' => __( 'Teams', 'sportspress' ),
132
- 'desc' => __( 'Link teams', 'sportspress' ),
133
- 'id' => 'sportspress_calendar_link_teams',
134
  'default' => 'no',
135
  'type' => 'checkbox',
 
136
  ),
137
 
138
  array(
139
- 'title' => __( 'Venues', 'sportspress' ),
140
- 'desc' => __( 'Link venues', 'sportspress' ),
141
- 'id' => 'sportspress_calendar_link_venues',
142
- 'default' => 'yes',
143
  'type' => 'checkbox',
 
144
  ),
145
 
146
  array(
147
  'title' => __( 'Pagination', 'sportspress' ),
148
  'desc' => __( 'Paginate', 'sportspress' ),
149
- 'id' => 'sportspress_calendar_paginated',
150
  'default' => 'yes',
151
  'type' => 'checkbox',
152
  ),
153
 
154
  array(
155
  'title' => __( 'Limit', 'sportspress' ),
156
- 'id' => 'sportspress_calendar_rows',
157
  'class' => 'small-text',
158
  'default' => '10',
159
  'desc' => __( 'events', 'sportspress' ),
@@ -164,7 +207,7 @@ class SP_Settings_Events extends SP_Settings_Page {
164
  ),
165
  ),
166
 
167
- array( 'type' => 'sectionend', 'id' => 'calendar_options' ),
168
 
169
  )); // End event settings
170
  }
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
40
  return apply_filters( 'sportspress_event_settings', array(
41
 
42
  array( 'title' => __( 'Event Options', 'sportspress' ), 'type' => 'title','desc' => '', 'id' => 'event_options' ),
43
+
44
+ array(
45
+ 'title' => __( 'Link', 'sportspress' ),
46
+ 'desc' => __( 'Link events', 'sportspress' ),
47
+ 'id' => 'sportspress_link_events',
48
+ 'default' => 'yes',
49
+ 'type' => 'checkbox',
50
+ 'checkboxgroup' => 'start',
51
+ ),
52
+
53
+ array(
54
+ 'desc' => __( 'Link venues', 'sportspress' ),
55
+ 'id' => 'sportspress_link_venues',
56
+ 'default' => 'no',
57
+ 'type' => 'checkbox',
58
+ 'checkboxgroup' => 'end',
59
+ ),
60
 
61
  array(
62
  'title' => __( 'Limit', 'sportspress' ),
79
  'id' => 'sportspress_event_show_logos',
80
  'default' => 'yes',
81
  'type' => 'checkbox',
82
+ 'checkboxgroup' => 'start',
83
  ),
84
 
85
  array(
86
+ 'desc' => __( 'Display players', 'sportspress' ),
87
+ 'id' => 'sportspress_event_show_players',
 
88
  'default' => 'yes',
89
  'type' => 'checkbox',
90
+ 'checkboxgroup' => '',
91
  ),
92
 
93
  array(
94
+ 'desc' => __( 'Display total', 'sportspress' ),
95
+ 'id' => 'sportspress_event_show_total',
96
  'default' => 'no',
97
  'type' => 'checkbox',
98
  'checkboxgroup' => 'end',
99
  ),
100
 
101
  array(
102
+ 'title' => __( 'Player Performance', 'sportspress' ),
103
+ 'id' => 'sportspress_event_performance_mode',
104
+ 'default' => 'values',
105
+ 'type' => 'radio',
106
+ 'options' => array(
107
+ 'values' => __( 'Values', 'sportspress' ),
108
+ 'icons' => __( 'Icons', 'sportspress' ),
109
+ ),
 
 
 
 
 
 
110
  ),
111
 
112
  array(
113
+ 'title' => __( 'Venue', 'sportspress' ),
114
+ 'desc' => __( 'Display maps', 'sportspress' ),
115
+ 'id' => 'sportspress_event_show_maps',
116
  'default' => 'yes',
117
  'type' => 'checkbox',
118
+ 'checkboxgroup' => 'start',
119
  ),
120
 
121
  array(
126
  'type' => 'checkbox',
127
  'checkboxgroup' => 'start',
128
  ),
129
+
130
+ array(
131
+ 'title' => __( 'Full Time', 'sportspress' ),
132
+ 'id' => 'sportspress_event_minutes',
133
+ 'class' => 'small-text',
134
+ 'default' => '90',
135
+ 'desc' => __( 'mins', 'sportspress' ),
136
+ 'type' => 'number',
137
+ 'custom_attributes' => array(
138
+ 'min' => 0,
139
+ 'step' => 1
140
+ ),
141
+ ),
142
+
143
+ array( 'type' => 'sectionend', 'id' => 'event_options' ),
144
+
145
+ array( 'title' => __( 'Event List', 'sportspress' ), 'type' => 'title', 'id' => 'event_list_options' ),
146
 
147
  array(
148
+ 'title' => __( 'Pagination', 'sportspress' ),
149
+ 'desc' => __( 'Paginate', 'sportspress' ),
150
+ 'id' => 'sportspress_event_list_paginated',
151
  'default' => 'yes',
152
  'type' => 'checkbox',
153
+ ),
154
+
155
+ array(
156
+ 'title' => __( 'Limit', 'sportspress' ),
157
+ 'id' => 'sportspress_event_list_rows',
158
+ 'class' => 'small-text',
159
+ 'default' => '10',
160
+ 'desc' => __( 'events', 'sportspress' ),
161
+ 'type' => 'number',
162
+ 'custom_attributes' => array(
163
+ 'min' => 1,
164
+ 'step' => 1
165
+ ),
166
  ),
167
 
168
+ array( 'type' => 'sectionend', 'id' => 'event_list_options' ),
169
 
170
+ array( 'title' => __( 'Event Blocks', 'sportspress' ), 'type' => 'title', 'id' => 'event_blocks_options' ),
171
 
172
  array(
173
+ 'title' => __( 'Details', 'sportspress' ),
174
+ 'desc' => __( 'Display league', 'sportspress' ),
175
+ 'id' => 'sportspress_event_blocks_show_league',
176
  'default' => 'no',
177
  'type' => 'checkbox',
178
+ 'checkboxgroup' => 'start',
179
  ),
180
 
181
  array(
182
+ 'desc' => __( 'Display season', 'sportspress' ),
183
+ 'id' => 'sportspress_event_blocks_show_season',
184
+ 'default' => 'no',
 
185
  'type' => 'checkbox',
186
+ 'checkboxgroup' => 'end',
187
  ),
188
 
189
  array(
190
  'title' => __( 'Pagination', 'sportspress' ),
191
  'desc' => __( 'Paginate', 'sportspress' ),
192
+ 'id' => 'sportspress_event_blocks_paginated',
193
  'default' => 'yes',
194
  'type' => 'checkbox',
195
  ),
196
 
197
  array(
198
  'title' => __( 'Limit', 'sportspress' ),
199
+ 'id' => 'sportspress_event_blocks_rows',
200
  'class' => 'small-text',
201
  'default' => '10',
202
  'desc' => __( 'events', 'sportspress' ),
207
  ),
208
  ),
209
 
210
+ array( 'type' => 'sectionend', 'id' => 'event_list_options' ),
211
 
212
  )); // End event settings
213
  }
includes/admin/settings/class-sp-settings-general.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
- * @version 1.2
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -49,21 +49,10 @@ class SP_Settings_General extends SP_Settings_Page {
49
  'title' => __( 'Sport', 'sportspress' ),
50
  'id' => 'sportspress_sport',
51
  'default' => 'soccer',
52
- 'type' => 'select',
53
  'options' => $presets,
54
  ),
55
 
56
- array(
57
- 'title' => __( 'Mode', 'sportspress' ),
58
- 'id' => 'sportspress_mode',
59
- 'default' => 'team',
60
- 'type' => 'select',
61
- 'options' => array(
62
- 'team' => _x( 'Team', 'mode select', 'sportspress' ),
63
- 'player' => _x( 'Individual', 'mode select', 'sportspress' ),
64
- ),
65
- ),
66
-
67
  array(
68
  'title' => __( 'Google Maps', 'sportspress' ),
69
  'id' => 'sportspress_map_type',
@@ -124,39 +113,46 @@ class SP_Settings_General extends SP_Settings_Page {
124
 
125
  array(
126
  'title' => __( 'Scripts', 'sportspress' ),
127
- 'desc' => __( 'Responsive tables', 'sportspress' ),
128
- 'id' => 'sportspress_enable_responsive_tables',
129
  'default' => 'yes',
130
  'type' => 'checkbox',
131
  'checkboxgroup' => 'start',
132
- 'desc_tip' => __( 'This will enable a script allowing the tables to be responsive.', 'sportspress' ),
133
  ),
134
 
135
  array(
136
- 'desc' => __( 'Sortable tables', 'sportspress' ),
137
- 'id' => 'sportspress_enable_sortable_tables',
138
  'default' => 'yes',
139
  'type' => 'checkbox',
140
- 'checkboxgroup' => '',
141
- 'desc_tip' => __( 'This will enable a script allowing the tables to be sortable.', 'sportspress' ),
142
  ),
143
 
144
  array(
145
- 'desc' => __( 'Live countdowns', 'sportspress' ),
146
- 'id' => 'sportspress_enable_live_countdowns',
 
 
 
 
 
 
 
 
 
147
  'default' => 'yes',
148
  'type' => 'checkbox',
149
  'checkboxgroup' => '',
150
- 'desc_tip' => __( 'This will enable a script allowing the countdowns to be animated.', 'sportspress' ),
151
  ),
152
 
153
  array(
154
- 'desc' => __( 'Shortcode menu', 'sportspress' ),
155
- 'id' => 'sportspress_rich_editing',
156
  'default' => 'yes',
157
  'type' => 'checkbox',
158
  'checkboxgroup' => 'end',
159
- 'desc_tip' => __( 'This will enable a shortcode menu to be displayed in the visual editor.', 'sportspress' ),
160
  ),
161
 
162
  array(
@@ -275,7 +271,7 @@ class SP_Settings_General extends SP_Settings_Page {
275
  $colors = array_map( 'esc_attr', (array) get_option( 'sportspress_frontend_css_colors', array() ) );
276
 
277
  // Defaults
278
- if ( empty( $colors['primary'] ) ) $colors['primary'] = '#364c74';
279
  if ( empty( $colors['background'] ) ) $colors['background'] = '#f4f4f4';
280
  if ( empty( $colors['text'] ) ) $colors['text'] = '#363f48';
281
  if ( empty( $colors['heading'] ) ) $colors['heading'] = '#ffffff';
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
49
  'title' => __( 'Sport', 'sportspress' ),
50
  'id' => 'sportspress_sport',
51
  'default' => 'soccer',
52
+ 'type' => 'groupselect',
53
  'options' => $presets,
54
  ),
55
 
 
 
 
 
 
 
 
 
 
 
 
56
  array(
57
  'title' => __( 'Google Maps', 'sportspress' ),
58
  'id' => 'sportspress_map_type',
113
 
114
  array(
115
  'title' => __( 'Scripts', 'sportspress' ),
116
+ 'desc' => __( 'Live countdowns', 'sportspress' ),
117
+ 'id' => 'sportspress_enable_live_countdowns',
118
  'default' => 'yes',
119
  'type' => 'checkbox',
120
  'checkboxgroup' => 'start',
121
+ 'desc_tip' => __( 'This will enable a script allowing the countdowns to be animated.', 'sportspress' ),
122
  ),
123
 
124
  array(
125
+ 'desc' => __( 'Shortcode menu', 'sportspress' ),
126
+ 'id' => 'sportspress_rich_editing',
127
  'default' => 'yes',
128
  'type' => 'checkbox',
129
+ 'checkboxgroup' => 'end',
130
+ 'desc_tip' => __( 'This will enable a shortcode menu to be displayed in the visual editor.', 'sportspress' ),
131
  ),
132
 
133
  array(
134
+ 'title' => __( 'Tables', 'sportspress' ),
135
+ 'desc' => __( 'Responsive', 'sportspress' ),
136
+ 'id' => 'sportspress_enable_responsive_tables',
137
+ 'default' => 'yes',
138
+ 'type' => 'checkbox',
139
+ 'checkboxgroup' => 'start',
140
+ ),
141
+
142
+ array(
143
+ 'desc' => __( 'Sortable', 'sportspress' ),
144
+ 'id' => 'sportspress_enable_sortable_tables',
145
  'default' => 'yes',
146
  'type' => 'checkbox',
147
  'checkboxgroup' => '',
 
148
  ),
149
 
150
  array(
151
+ 'desc' => __( 'Scrollable', 'sportspress' ),
152
+ 'id' => 'sportspress_enable_scrollable_tables',
153
  'default' => 'yes',
154
  'type' => 'checkbox',
155
  'checkboxgroup' => 'end',
 
156
  ),
157
 
158
  array(
271
  $colors = array_map( 'esc_attr', (array) get_option( 'sportspress_frontend_css_colors', array() ) );
272
 
273
  // Defaults
274
+ if ( empty( $colors['primary'] ) ) $colors['primary'] = '#00a69c';
275
  if ( empty( $colors['background'] ) ) $colors['background'] = '#f4f4f4';
276
  if ( empty( $colors['text'] ) ) $colors['text'] = '#363f48';
277
  if ( empty( $colors['heading'] ) ) $colors['heading'] = '#ffffff';
includes/admin/settings/class-sp-settings-players.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
- * @version 1.1
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -38,6 +38,14 @@ class SP_Settings_Players extends SP_Settings_Page {
38
  $settings = array(
39
  array( 'title' => __( 'Player Options', 'sportspress' ), 'type' => 'title','desc' => '', 'id' => 'player_options' ),
40
 
 
 
 
 
 
 
 
 
41
  array(
42
  'title' => __( 'Nationality', 'sportspress' ),
43
  'desc' => __( 'Display national flags', 'sportspress' ),
@@ -52,24 +60,12 @@ class SP_Settings_Players extends SP_Settings_Page {
52
 
53
  array(
54
  'title' => __( 'Players', 'sportspress' ),
55
- 'desc' => __( 'Link players', 'sportspress' ),
56
- 'id' => 'sportspress_list_link_players',
57
- 'default' => 'yes',
58
- 'type' => 'checkbox',
59
- ),
60
- );
61
-
62
- if ( SP()->mode == 'team' ):
63
- $settings[] = array(
64
- 'title' => __( 'Teams', 'sportspress' ),
65
- 'desc' => __( 'Link teams', 'sportspress' ),
66
- 'id' => 'sportspress_list_link_teams',
67
  'default' => 'no',
68
  'type' => 'checkbox',
69
- );
70
- endif;
71
 
72
- $settings = array_merge( $settings, array(
73
  array(
74
  'title' => __( 'Pagination', 'sportspress' ),
75
  'desc' => __( 'Paginate', 'sportspress' ),
@@ -92,7 +88,7 @@ class SP_Settings_Players extends SP_Settings_Page {
92
  ),
93
 
94
  array( 'type' => 'sectionend', 'id' => 'list_options' ),
95
- )); // End player settings
96
 
97
  return apply_filters( 'sportspress_player_settings', $settings );
98
  }
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
38
  $settings = array(
39
  array( 'title' => __( 'Player Options', 'sportspress' ), 'type' => 'title','desc' => '', 'id' => 'player_options' ),
40
 
41
+ array(
42
+ 'title' => __( 'Link', 'sportspress' ),
43
+ 'desc' => __( 'Link players', 'sportspress' ),
44
+ 'id' => 'sportspress_link_players',
45
+ 'default' => 'yes',
46
+ 'type' => 'checkbox',
47
+ ),
48
+
49
  array(
50
  'title' => __( 'Nationality', 'sportspress' ),
51
  'desc' => __( 'Display national flags', 'sportspress' ),
60
 
61
  array(
62
  'title' => __( 'Players', 'sportspress' ),
63
+ 'desc' => __( 'Display photos', 'sportspress' ),
64
+ 'id' => 'sportspress_list_show_photos',
 
 
 
 
 
 
 
 
 
 
65
  'default' => 'no',
66
  'type' => 'checkbox',
67
+ ),
 
68
 
 
69
  array(
70
  'title' => __( 'Pagination', 'sportspress' ),
71
  'desc' => __( 'Paginate', 'sportspress' ),
88
  ),
89
 
90
  array( 'type' => 'sectionend', 'id' => 'list_options' ),
91
+ ); // End player settings
92
 
93
  return apply_filters( 'sportspress_player_settings', $settings );
94
  }
includes/admin/settings/class-sp-settings-staff.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
- * @version 1.1
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -40,6 +40,14 @@ class SP_Settings_Staff extends SP_Settings_Page {
40
 
41
  array( 'title' => __( 'Staff Options', 'sportspress' ), 'type' => 'title','desc' => '', 'id' => 'staff_options' ),
42
 
 
 
 
 
 
 
 
 
43
  array(
44
  'title' => __( 'Nationality', 'sportspress' ),
45
  'desc' => __( 'Display national flags', 'sportspress' ),
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
40
 
41
  array( 'title' => __( 'Staff Options', 'sportspress' ), 'type' => 'title','desc' => '', 'id' => 'staff_options' ),
42
 
43
+ array(
44
+ 'title' => __( 'Link', 'sportspress' ),
45
+ 'desc' => __( 'Link staff', 'sportspress' ),
46
+ 'id' => 'sportspress_link_staff',
47
+ 'default' => 'yes',
48
+ 'type' => 'checkbox',
49
+ ),
50
+
51
  array(
52
  'title' => __( 'Nationality', 'sportspress' ),
53
  'desc' => __( 'Display national flags', 'sportspress' ),
includes/admin/settings/class-sp-settings-teams.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
- * @version 0.8
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -40,25 +40,24 @@ class SP_Settings_Teams extends SP_Settings_Page {
40
 
41
  array( 'title' => __( 'Team Options', 'sportspress' ), 'type' => 'title','desc' => '', 'id' => 'team_options' ),
42
 
 
 
 
 
 
 
 
 
43
  array( 'type' => 'sectionend', 'id' => 'team_options' ),
44
 
45
  array( 'title' => __( 'League Tables', 'sportspress' ), 'type' => 'title', 'id' => 'table_options' ),
46
-
47
  array(
48
  'title' => __( 'Teams', 'sportspress' ),
49
  'desc' => __( 'Display logos', 'sportspress' ),
50
  'id' => 'sportspress_table_show_logos',
51
  'default' => 'yes',
52
  'type' => 'checkbox',
53
- 'checkboxgroup' => 'start',
54
- ),
55
-
56
- array(
57
- 'desc' => __( 'Link teams', 'sportspress' ),
58
- 'id' => 'sportspress_table_link_teams',
59
- 'default' => 'no',
60
- 'type' => 'checkbox',
61
- 'checkboxgroup' => 'end',
62
  ),
63
 
64
  array(
5
  * @author ThemeBoy
6
  * @category Admin
7
  * @package SportsPress/Admin
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
40
 
41
  array( 'title' => __( 'Team Options', 'sportspress' ), 'type' => 'title','desc' => '', 'id' => 'team_options' ),
42
 
43
+ array(
44
+ 'title' => __( 'Link', 'sportspress' ),
45
+ 'desc' => __( 'Link teams', 'sportspress' ),
46
+ 'id' => 'sportspress_link_teams',
47
+ 'default' => 'no',
48
+ 'type' => 'checkbox',
49
+ ),
50
+
51
  array( 'type' => 'sectionend', 'id' => 'team_options' ),
52
 
53
  array( 'title' => __( 'League Tables', 'sportspress' ), 'type' => 'title', 'id' => 'table_options' ),
54
+
55
  array(
56
  'title' => __( 'Teams', 'sportspress' ),
57
  'desc' => __( 'Display logos', 'sportspress' ),
58
  'id' => 'sportspress_table_show_logos',
59
  'default' => 'yes',
60
  'type' => 'checkbox',
 
 
 
 
 
 
 
 
 
61
  ),
62
 
63
  array(
includes/admin/sp-admin-functions.php CHANGED
@@ -5,7 +5,7 @@
5
  * @author ThemeBoy
6
  * @category Core
7
  * @package SportsPress/Admin/Functions
8
- * @version 0.7
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -17,10 +17,11 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
17
  */
18
  function sp_get_screen_ids() {
19
  return apply_filters( 'sportspress_screen_ids', array(
 
 
20
  'dashboard',
21
  'dashboard_page_sp-about',
22
  'toplevel_page_sportspress',
23
- 'sportspress_page_sp-status',
24
  'edit-sp_result',
25
  'sp_result',
26
  'edit-sp_outcome',
5
  * @author ThemeBoy
6
  * @category Core
7
  * @package SportsPress/Admin/Functions
8
+ * @version 1.3
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
17
  */
18
  function sp_get_screen_ids() {
19
  return apply_filters( 'sportspress_screen_ids', array(
20
+ 'admin',
21
+ 'widgets',
22
  'dashboard',
23
  'dashboard_page_sp-about',
24
  'toplevel_page_sportspress',
 
25
  'edit-sp_result',
26
  'sp_result',
27
  'edit-sp_outcome',
includes/admin/views/html-admin-config.php ADDED
@@ -0,0 +1,351 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="wrap sportspress sp-config-wrap">
2
+ <h2>
3
+ <?php _e( 'Configure', 'sportspress' ); ?>
4
+ </h2>
5
+ <table class="form-table">
6
+ <tbody>
7
+ <?php
8
+ $args = array(
9
+ 'post_type' => 'sp_outcome',
10
+ 'numberposts' => -1,
11
+ 'posts_per_page' => -1,
12
+ 'orderby' => 'menu_order',
13
+ 'order' => 'ASC'
14
+ );
15
+ $data = get_posts( $args );
16
+ ?>
17
+ <tr valign="top">
18
+ <th scope="row" class="titledesc">
19
+ <?php _e( 'Event Outcomes', 'sportspress' ) ?>
20
+ <p class="description"><?php _e( 'Used for events.', 'sportspress' ); ?></p>
21
+ </th>
22
+ <td class="forminp">
23
+ <table class="widefat sp-admin-config-table">
24
+ <thead>
25
+ <tr>
26
+ <th scope="col"><?php _e( 'Label', 'sportspress' ); ?></th>
27
+ <th scope="col"><?php _e( 'Variable', 'sportspress' ); ?></th>
28
+ <th scope="col"><?php _e( 'Abbreviation', 'sportspress' ); ?></th>
29
+ <th scope="col"><?php _e( 'Description', 'sportspress' ); ?></th>
30
+ <th scope="col" class="edit"></th>
31
+ </tr>
32
+ </thead>
33
+ <?php if ( $data ): $i = 0; foreach ( $data as $row ): ?>
34
+ <tr<?php if ( $i % 2 == 0 ) echo ' class="alternate"'; ?>>
35
+ <td class="row-title"><?php echo $row->post_title; ?></td>
36
+ <td><?php echo $row->post_name; ?></td>
37
+ <td><?php echo sp_get_post_abbreviation( $row->ID ); ?></td>
38
+ <td><p class="description"><?php echo $row->post_excerpt; ?></p></td>
39
+ <td class="edit"><a class="button" href="<?php echo get_edit_post_link( $row->ID ); ?>"><?php _e( 'Edit', 'sportspress' ); ?></s></td>
40
+ </tr>
41
+ <?php $i++; endforeach; else: ?>
42
+ <tr class="alternate">
43
+ <td colspan="5"><?php _e( 'No results found.', 'sportspress' ); ?></td>
44
+ </tr>
45
+ <?php endif; ?>
46
+ </table>
47
+ <div class="tablenav bottom">
48
+ <div class="alignleft actions">
49
+ <a class="button button-primary" id="doaction2" href="<?php echo admin_url( 'post-new.php?post_type=sp_outcome' ); ?>"><?php _e( 'Add New', 'sportspress' ); ?></a>
50
+ <a class="button" id="doaction" href="<?php echo admin_url( 'edit.php?post_type=sp_outcome' ); ?>"><?php _e( 'View All', 'sportspress' ); ?></a>
51
+ </div>
52
+ <br class="clear">
53
+ </div>
54
+ </td>
55
+ </tr>
56
+ </tbody>
57
+ </table>
58
+ <table class="form-table">
59
+ <tbody>
60
+ <?php
61
+ $selection = get_option( 'sportspress_primary_result', 0 );
62
+
63
+ $args = array(
64
+ 'post_type' => 'sp_result',
65
+ 'numberposts' => -1,
66
+ 'posts_per_page' => -1,
67
+ 'orderby' => 'menu_order',
68
+ 'order' => 'ASC'
69
+ );
70
+ $data = get_posts( $args );
71
+ ?>
72
+ <tr valign="top">
73
+ <th scope="row" class="titledesc">
74
+ <?php _e( 'Team Results', 'sportspress' ) ?>
75
+ <p class="description"><?php _e( 'Used for events.', 'sportspress' ); ?></p>
76
+ </th>
77
+ <td class="forminp">
78
+ <legend class="screen-reader-text"><span><?php _e( 'Team Results', 'sportspress' ) ?></span></legend>
79
+ <form>
80
+ <?php wp_nonce_field( 'sp-save-primary-result', 'sp-config-nonce', false ); ?>
81
+ <table class="widefat sp-admin-config-table">
82
+ <thead>
83
+ <tr>
84
+ <th class="radio" scope="col"><?php _e( 'Primary', 'sportspress' ); ?></th>
85
+ <th scope="col"><?php _e( 'Label', 'sportspress' ); ?></th>
86
+ <th scope="col"><?php _e( 'Variables', 'sportspress' ); ?></th>
87
+ <th scope="col"><?php _e( 'Description', 'sportspress' ); ?></th>
88
+ <th scope="col" class="edit"></th>
89
+ </tr>
90
+ </thead>
91
+ <tfoot>
92
+ <tr>
93
+ <th class="radio"><input type="radio" class="sp-primary-result-option" id="sportspress_primary_result_0" name="sportspress_primary_result" value="0" <?php checked( $selection, 0 ); ?>></th>
94
+ <th colspan="4"><label for="sportspress_primary_result_0">
95
+ <?php
96
+ if ( sizeof( $data ) > 0 ):
97
+ $default = end( $data );
98
+ reset( $data );
99
+ printf( __( 'Default (%s)', 'sportspress' ), $default->post_title );
100
+ else:
101
+ _e( 'Default', 'sportspress' );
102
+ endif;
103
+ ?>
104
+ </label></th>
105
+ </tr>
106
+ </tfoot>
107
+ <?php if ( $data ): $i = 0; foreach ( $data as $row ): ?>
108
+ <tr<?php if ( $i % 2 == 0 ) echo ' class="alternate"'; ?>>
109
+ <td class="radio"><input type="radio" class="sp-primary-result-option" id="sportspress_primary_result_<?php echo $row->post_name; ?>" name="sportspress_primary_result" value="<?php echo $row->post_name; ?>" <?php checked( $selection, $row->post_name ); ?>></td>
110
+ <td class="row-title"><label for="sportspress_primary_result_<?php echo $row->post_name; ?>"><?php echo $row->post_title; ?></label></td>
111
+ <td><?php echo $row->post_name; ?>for, <?php echo $row->post_name; ?>against</td>
112
+ <td><p class="description"><?php echo $row->post_excerpt; ?></p></td>
113
+ <td class="edit"><a class="button" href="<?php echo get_edit_post_link( $row->ID ); ?>"><?php _e( 'Edit', 'sportspress' ); ?></s></td>
114
+ </tr>
115
+ <?php $i++; endforeach; else: ?>
116
+ <tr class="alternate">
117
+ <td colspan="5"><?php _e( 'No results found.', 'sportspress' ); ?></td>
118
+ </tr>
119
+ <?php endif; ?>
120
+ </table>
121
+ </form>
122
+ <div class="tablenav bottom">
123
+ <div class="alignleft actions">
124
+ <a class="button button-primary" id="doaction2" href="<?php echo admin_url( 'post-new.php?post_type=sp_result' ); ?>"><?php _e( 'Add New', 'sportspress' ); ?></a>
125
+ <a class="button" id="doaction" href="<?php echo admin_url( 'edit.php?post_type=sp_result' ); ?>"><?php _e( 'View All', 'sportspress' ); ?></a>
126
+ </div>
127
+ <br class="clear">
128
+ </div>
129
+ </td>
130
+ </tr>
131
+ </tbody>
132
+ </table>
133
+ <table class="form-table">
134
+ <tbody>
135
+ <?php
136
+ $args = array(
137
+ 'post_type' => 'sp_performance',
138
+ 'numberposts' => -1,
139
+ 'posts_per_page' => -1,
140
+ 'orderby' => 'menu_order',
141
+ 'order' => 'ASC'
142
+ );
143
+ $data = get_posts( $args );
144
+ ?>
145
+ <tr valign="top">
146
+ <th scope="row" class="titledesc">
147
+ <?php _e( 'Player Performance', 'sportspress' ) ?>
148
+ <p class="description"><?php _e( 'Used for events.', 'sportspress' ); ?></p>
149
+ </th>
150
+ <td class="forminp">
151
+ <table class="widefat sp-admin-config-table">
152
+ <thead>
153
+ <tr>
154
+ <th class="icon" scope="col"><?php _e( 'Icon', 'sportspress' ); ?></th>
155
+ <th scope="col"><?php _e( 'Label', 'sportspress' ); ?></th>
156
+ <th scope="col"><?php _e( 'Variable', 'sportspress' ); ?></th>
157
+ <th scope="col"><?php _e( 'Description', 'sportspress' ); ?></th>
158
+ <th scope="col" class="edit"></th>
159
+ </tr>
160
+ </thead>
161
+ <?php if ( $data ): $i = 0; foreach ( $data as $row ): ?>
162
+ <tr<?php if ( $i % 2 == 0 ) echo ' class="alternate"'; ?>>
163
+ <td class="icon"><?php if ( has_post_thumbnail( $row->ID ) ) echo get_the_post_thumbnail( $row->ID, 'sportspress-fit-mini' ); ?></td>
164
+ <td class="row-title"><?php echo $row->post_title; ?></td>
165
+ <td><?php echo $row->post_name; ?></td>
166
+ <td><p class="description"><?php echo $row->post_excerpt; ?></p></td>
167
+ <td class="edit"><a class="button" href="<?php echo get_edit_post_link( $row->ID ); ?>"><?php _e( 'Edit', 'sportspress' ); ?></s></td>
168
+ </tr>
169
+ <?php $i++; endforeach; else: ?>
170
+ <tr class="alternate">
171
+ <td colspan="5"><?php _e( 'No results found.', 'sportspress' ); ?></td>
172
+ </tr>
173
+ <?php endif; ?>
174
+ </table>
175
+ <div class="tablenav bottom">
176
+ <div class="alignleft actions">
177
+ <a class="button button-primary" id="doaction2" href="<?php echo admin_url( 'post-new.php?post_type=sp_performance' ); ?>"><?php _e( 'Add New', 'sportspress' ); ?></a>
178
+ <a class="button" id="doaction" href="<?php echo admin_url( 'edit.php?post_type=sp_performance' ); ?>"><?php _e( 'View All', 'sportspress' ); ?></a>
179
+ </div>
180
+ <br class="clear">
181
+ </div>
182
+ </td>
183
+ </tr>
184
+ </tbody>
185
+ </table>
186
+ <table class="form-table">
187
+ <tbody>
188
+ <?php
189
+ $args = array(
190
+ 'post_type' => 'sp_column',
191
+ 'numberposts' => -1,
192
+ 'posts_per_page' => -1,
193
+ 'orderby' => 'menu_order',
194
+ 'order' => 'ASC'
195
+ );
196
+ $data = get_posts( $args );
197
+ ?>
198
+ <tr valign="top">
199
+ <th scope="row" class="titledesc">
200
+ <?php _e( 'Table Columns', 'sportspress' ) ?>
201
+ <p class="description"><?php _e( 'Used for league tables.', 'sportspress' ); ?></p>
202
+ </th>
203
+ <td class="forminp">
204
+ <table class="widefat sp-admin-config-table">
205
+ <thead>
206
+ <tr>
207
+ <th scope="col"><?php _e( 'Label', 'sportspress' ); ?></th>
208
+ <th scope="col"><?php _e( 'Key', 'sportspress' ); ?></th>
209
+ <th scope="col"><?php _e( 'Equation', 'sportspress' ); ?></th>
210
+ <th scope="col"><?php _e( 'Rounding', 'sportspress' ); ?></th>
211
+ <th scope="col"><?php _e( 'Sort Order', 'sportspress' ); ?></th>
212
+ <th scope="col"><?php _e( 'Description', 'sportspress' ); ?></th>
213
+ <th scope="col" class="edit"></th>
214
+ </tr>
215
+ </thead>
216
+ <?php if ( $data ): $i = 0; foreach ( $data as $row ): ?>
217
+ <tr<?php if ( $i % 2 == 0 ) echo ' class="alternate"'; ?>>
218
+ <td class="row-title"><?php echo $row->post_title; ?></td>
219
+ <td><?php echo $row->post_name; ?></td>
220
+ <td><?php echo sp_get_post_equation( $row->ID ); ?></td>
221
+ <td><?php echo sp_get_post_precision( $row->ID ); ?></td>
222
+ <td><?php echo sp_get_post_order( $row->ID ); ?></td>
223
+ <td><p class="description"><?php echo $row->post_excerpt; ?></p></td>
224
+ <td class="edit"><a class="button" href="<?php echo get_edit_post_link( $row->ID ); ?>"><?php _e( 'Edit', 'sportspress' ); ?></s></td>
225
+ </tr>
226
+ <?php $i++; endforeach; else: ?>
227
+ <tr class="alternate">
228
+ <td colspan="7"><?php _e( 'No results found.', 'sportspress' ); ?></td>
229
+ </tr>
230
+ <?php endif; ?>
231
+ </table>
232
+ <div class="tablenav bottom">
233
+ <div class="alignleft actions">
234
+ <a class="button button-primary" id="doaction2" href="<?php echo admin_url( 'post-new.php?post_type=sp_column' ); ?>"><?php _e( 'Add New', 'sportspress' ); ?></a>
235
+ <a class="button" id="doaction" href="<?php echo admin_url( 'edit.php?post_type=sp_column' ); ?>"><?php _e( 'View All', 'sportspress' ); ?></a>
236
+ </div>
237
+ <br class="clear">
238
+ </div>
239
+ </fieldset>
240
+ </td>
241
+ </tr>
242
+ </tbody>
243
+ </table>
244
+ <table class="form-table">
245
+ <tbody>
246
+ <?php
247
+ $args = array(
248
+ 'post_type' => 'sp_metric',
249
+ 'numberposts' => -1,
250
+ 'posts_per_page' => -1,
251
+ 'orderby' => 'menu_order',
252
+ 'order' => 'ASC'
253
+ );
254
+ $data = get_posts( $args );
255
+ ?>
256
+ <tr valign="top">
257
+ <th scope="row" class="titledesc">
258
+ <?php _e( 'Player Metrics', 'sportspress' ) ?>
259
+ <p class="description"><?php _e( 'Used for player lists.', 'sportspress' ); ?></p>
260
+ </th>
261
+ <td class="forminp">
262
+ <table class="widefat sp-admin-config-table">
263
+ <thead>
264
+ <tr>
265
+ <th scope="col"><?php _e( 'Label', 'sportspress' ); ?></th>
266
+ <th scope="col"><?php _e( 'Variable', 'sportspress' ); ?></th>
267
+ <th scope="col"><?php _e( 'Description', 'sportspress' ); ?></th>
268
+ <th scope="col" class="edit"></th>
269
+ </tr>
270
+ </thead>
271
+ <?php if ( $data ): $i = 0; foreach ( $data as $row ): ?>
272
+ <tr<?php if ( $i % 2 == 0 ) echo ' class="alternate"'; ?>>
273
+ <td class="row-title"><?php echo $row->post_title; ?></td>
274
+ <td><?php echo $row->post_name; ?></td>
275
+ <td><p class="description"><?php echo $row->post_excerpt; ?></p></td>
276
+ <td class="edit"><a class="button" href="<?php echo get_edit_post_link( $row->ID ); ?>"><?php _e( 'Edit', 'sportspress' ); ?></s></td>
277
+ </tr>
278
+ <?php $i++; endforeach; else: ?>
279
+ <tr class="alternate">
280
+ <td colspan="4"><?php _e( 'No results found.', 'sportspress' ); ?></td>
281
+ </tr>
282
+ <?php endif; ?>
283
+ </table>
284
+ <div class="tablenav bottom">
285
+ <div class="alignleft actions">
286
+ <a class="button button-primary" id="doaction2" href="<?php echo admin_url( 'post-new.php?post_type=sp_metric' ); ?>"><?php _e( 'Add New', 'sportspress' ); ?></a>
287
+ <a class="button" id="doaction" href="<?php echo admin_url( 'edit.php?post_type=sp_metric' ); ?>"><?php _e( 'View All', 'sportspress' ); ?></a>
288
+ </div>
289
+ <br class="clear">
290
+ </div>
291
+ </td>
292
+ </tr>
293
+ </tbody>
294
+ </table>
295
+ <table class="form-table">
296
+ <tbody>
297
+ <?php
298
+ $args = array(
299
+ 'post_type' => 'sp_statistic',
300
+ 'numberposts' => -1,
301
+ 'posts_per_page' => -1,
302
+ 'orderby' => 'menu_order',
303
+ 'order' => 'ASC'
304
+ );
305
+ $data = get_posts( $args );
306
+ ?>
307
+ <tr valign="top">
308
+ <th scope="row" class="titledesc">
309
+ <?php _e( 'Player Statistics', 'sportspress' ) ?>
310
+ <p class="description"><?php _e( 'Used for player lists.', 'sportspress' ); ?></p>
311
+ </th>
312
+ <td class="forminp">
313
+ <table class="widefat sp-admin-config-table">
314
+ <thead>
315
+ <tr>
316
+ <th scope="col"><?php _e( 'Label', 'sportspress' ); ?></th>
317
+ <th scope="col"><?php _e( 'Key', 'sportspress' ); ?></th>
318
+ <th scope="col"><?php _e( 'Equation', 'sportspress' ); ?></th>
319
+ <th scope="col"><?php _e( 'Rounding', 'sportspress' ); ?></th>
320
+ <th scope="col"><?php _e( 'Description', 'sportspress' ); ?></th>
321
+ <th scope="col" class="edit"></th>
322
+ </tr>
323
+ </thead>
324
+ <?php if ( $data ): $i = 0; foreach ( $data as $row ): ?>
325
+ <tr<?php if ( $i % 2 == 0 ) echo ' class="alternate"'; ?>>
326
+ <td class="row-title"><?php echo $row->post_title; ?></td>
327
+ <td><?php echo $row->post_name; ?></td>
328
+ <td><?php echo sp_get_post_equation( $row->ID ); ?></td>
329
+ <td><?php echo sp_get_post_precision( $row->ID ); ?></td>
330
+ <td><p class="description"><?php echo $row->post_excerpt; ?></p></td>
331
+ <td class="edit"><a class="button" href="<?php echo get_edit_post_link( $row->ID ); ?>"><?php _e( 'Edit', 'sportspress' ); ?></s></td>
332
+ </tr>
333
+ <?php $i++; endforeach; else: ?>
334
+ <tr class="alternate">
335
+ <td colspan="6"><?php _e( 'No results found.', 'sportspress' ); ?></td>
336
+ </tr>
337
+ <?php endif; ?>
338
+ </table>
339
+ <div class="tablenav bottom">
340
+ <div class="alignleft actions">
341
+ <a class="button button-primary" id="doaction2" href="<?php echo admin_url( 'post-new.php?post_type=sp_statistic' ); ?>"><?php _e( 'Add New', 'sportspress' ); ?></a>
342
+ <a class="button" id="doaction" href="<?php echo admin_url( 'edit.php?post_type=sp_statistic' ); ?>"><?php _e( 'View All', 'sportspress' ); ?></a>
343
+ </div>
344
+ <br class="clear">
345
+ </div>
346
+ </td>
347
+ </tr>
348
+ </tbody>
349
+ </table>
350
+ <?php do_action( 'sportspress_config_page' ); ?>
351
+ </div>
includes/admin/views/html-admin-overview.php ADDED
@@ -0,0 +1,332 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="wrap sportspress sp-overview-wrap">
2
+ <h2>
3
+ <?php _e( 'Overview', 'sportspress' ); ?>
4
+ </h2>
5
+ <div class="sp-sitemap">
6
+
7
+ <?php $primary_post_types = sp_primary_post_types(); $hierarchy = sp_post_type_hierarchy(); ?>
8
+
9
+ <?php if ( ! isset( $_GET['type'] ) && ! isset( $_GET['taxonomy'] ) ): // Overview ?>
10
+
11
+ <ul class="sp-utility">
12
+ <?php foreach ( $primary_post_types as $post_type ): $object = get_post_type_object( $post_type ); ?>
13
+ <li><a class="button button-primary" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview', 'type' => $post_type ), 'admin.php' ) ) ); ?>"><?php echo $object->labels->name; ?></a></li>
14
+ <?php endforeach; ?>
15
+ </ul>
16
+
17
+ <?php $taxonomies = sp_taxonomies(); ?>
18
+ <ul class="sp-primary col<?php echo sizeof( $taxonomies ); ?>">
19
+ <li class="sp-home"><a class="button disabled"><?php _e( 'SportsPress', 'sportspress' ); ?></a></li>
20
+ <?php foreach ( $taxonomies as $taxonomy ): $object = get_taxonomy( $taxonomy ); $post_types = apply_filters( 'sportspress_sitemap_taxonomy_post_types', $object->object_type, $taxonomy ); ?>
21
+ <li><a class="button button-primary" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview', 'taxonomy' => $taxonomy ), 'admin.php' ) ) ); ?>"><?php echo $object->labels->name; ?></a>
22
+ <?php $terms = get_terms( $taxonomy, array( 'hide_empty' => false, 'parent' => 0, 'orderby' => 'slug' ) ); ?>
23
+ <ul>
24
+ <?php if ( sizeof( $terms ) > 0 ): ?>
25
+ <?php foreach ( $terms as $term ): ?>
26
+ <?php $children = get_terms( $taxonomy, array( 'hide_empty' => false, 'parent' => $term->term_id, 'orderby' => 'slug' ) ); ?>
27
+ <li>
28
+ <?php if ( ! $children && sizeof ( $post_types ) <= 1 ): ?>
29
+ <?php if ( sizeof( $post_types ) ): foreach ( $post_types as $post_type ): ?>
30
+ <a class="button action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $term->slug ), 'edit.php' ) ) ); ?>"><?php echo wp_strip_all_tags( $term->name ); ?><span class="dashicons dashicons-list-view wp-ui-text-notification"></span></a>
31
+ <?php endforeach; endif; ?>
32
+ <?php else: ?>
33
+ <a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview', 'taxonomy' => $taxonomy, 'term' => $term->term_id ), 'admin.php' ) ) ); ?>"><?php echo wp_strip_all_tags( $term->name ); ?></a>
34
+ <?php endif; ?>
35
+
36
+ <?php if ( $children ): ?>
37
+ <ul>
38
+ <?php foreach ( $children as $child ): ?>
39
+ <li>
40
+ <?php if ( sizeof( $post_types ) <= 1 ): ?>
41
+ <?php if ( sizeof( $post_types ) ): foreach ( $post_types as $post_type ): ?>
42
+ <a class="button action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $child->slug ), 'edit.php' ) ) ); ?>"><?php echo wp_strip_all_tags( $child->name ); ?><span class="dashicons dashicons-list-view wp-ui-text-highlight"></span></a>
43
+ <?php endforeach; endif; ?>
44
+ <?php else: ?>
45
+ <a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview', 'taxonomy' => $taxonomy, 'term' => $child->term_id ), 'admin.php' ) ) ); ?>"><?php echo wp_strip_all_tags( $child->name ); ?></a>
46
+ <?php endif; ?>
47
+ </li>
48
+ <?php endforeach; ?>
49
+ </ul>
50
+ <?php endif; ?>
51
+ </li>
52
+ <?php endforeach; ?>
53
+ <?php else: ?>
54
+ <li><a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'taxonomy' => $taxonomy ), 'edit-tags.php' ) ) ); ?>"><?php echo $object->labels->add_new_item; ?></a></li>
55
+ <?php endif; ?>
56
+ </ul>
57
+ </li>
58
+ <?php endforeach; ?>
59
+ </ul>
60
+
61
+ <?php elseif ( ! isset( $_GET['type'] ) ): $taxonomy = $_GET['taxonomy']; $taxonomy_object = get_taxonomy( $taxonomy ); ?>
62
+
63
+ <?php $post_types = apply_filters( 'sportspress_sitemap_taxonomy_post_types', $taxonomy_object->object_type, $taxonomy ); ?>
64
+
65
+ <?php if ( isset( $_GET['term'] ) ): $term = get_term( $_GET['term'], $taxonomy ); // Posts in term ?>
66
+
67
+ <ul class="sp-utility">
68
+ <li><a class="button button-primary" href="<?php echo esc_url( admin_url( add_query_arg( array( 'taxonomy' => $taxonomy ), 'edit-tags.php' ) ) ); ?>"><?php echo $taxonomy_object->labels->edit_item; ?></a></li>
69
+ </ul>
70
+
71
+ <?php $terms = get_terms( $taxonomy, array( 'hide_empty' => false, 'parent' => $term->term_id, 'orderby' => 'slug' ) ); ?>
72
+
73
+ <?php if ( $terms ): // Has children ?>
74
+
75
+ <ul class="sp-primary col<?php echo sizeof( $terms ) + 1; ?>">
76
+ <li class="sp-breadcrumb"><a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview' ), 'admin.php' ) ) ); ?>"><?php _e( 'SportsPress', 'sportspress' ); ?></a></li>
77
+ <li class="sp-breadcrumb"><a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview', 'taxonomy' => $taxonomy ), 'admin.php' ) ) ); ?>"><?php echo $taxonomy_object->labels->name; ?></a></li>
78
+ <li class="sp-home"><a class="button disabled"><?php echo wp_strip_all_tags( $term->name ); ?></a></li>
79
+ <li><a class="button disabled"><?php _e( 'All', 'sportspress' ); ?></a>
80
+ <ul>
81
+ <?php if ( sizeof ( $post_types ) ): ?>
82
+ <?php foreach ( $post_types as $post_type ): $post_object = get_post_type_object( $post_type ); ?>
83
+ <li><a class="button button-primary action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $term->slug ), 'edit.php' ) ) ); ?>"><?php echo $post_object->labels->name; ?><span class="dashicons dashicons-list-view"></span></a></li>
84
+ <?php endforeach; ?>
85
+ <?php endif; ?>
86
+ </ul>
87
+ </li>
88
+ <?php foreach ( $terms as $term ): ?>
89
+ <li><a class="button button-primary" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview', 'taxonomy' => $taxonomy, 'term' => $term->term_id ), 'admin.php' ) ) ); ?>"><?php echo wp_strip_all_tags( $term->name ); ?></a>
90
+ <?php $children = get_terms( $taxonomy, array( 'hide_empty' => false, 'parent' => $term->term_id, 'orderby' => 'slug' ) ); ?>
91
+
92
+ <?php if ( $children ): // Has children ?>
93
+
94
+ <ul>
95
+ <?php foreach ( $children as $child ): ?>
96
+ <li><a class="button action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $child->slug ), 'edit.php' ) ) ); ?>"><?php echo wp_strip_all_tags( $child->name ); ?><span class="dashicons dashicons-list-view wp-ui-text-notification"></span></a>
97
+
98
+ <?php if ( sizeof ( $post_types ) ): // Has associated post types ?>
99
+ <ul>
100
+ <?php foreach ( $post_types as $post_type ): $post_object = get_post_type_object( $post_type ); ?>
101
+ <li><a class="button action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $child->slug ), 'edit.php' ) ) ); ?>"><?php echo $post_object->labels->name; ?><span class="dashicons dashicons-list-view wp-ui-text-highlight"></span></a></li>
102
+ <?php endforeach; ?>
103
+ </ul>
104
+ <?php endif; ?>
105
+
106
+ </li>
107
+ <?php endforeach; ?>
108
+ </ul>
109
+
110
+ <?php elseif ( sizeof ( $post_types ) ): // Has associated post types ?>
111
+
112
+ <ul>
113
+ <?php foreach ( $post_types as $post_type ): $post_object = get_post_type_object( $post_type ); ?>
114
+ <li><a class="button action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $term->slug ), 'edit.php' ) ) ); ?>"><?php echo $post_object->labels->name; ?><span class="dashicons dashicons-list-view wp-ui-text-notification"></span></a></li>
115
+ <?php endforeach; ?>
116
+ </ul>
117
+
118
+ <?php endif; ?>
119
+
120
+ </li>
121
+ <?php endforeach; ?>
122
+ </ul>
123
+
124
+ <?php else: // No children ?>
125
+
126
+ <ul class="sp-primary col<?php echo sizeof( $post_types ); ?>">
127
+ <li class="sp-breadcrumb"><a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview' ), 'admin.php' ) ) ); ?>"><?php _e( 'SportsPress', 'sportspress' ); ?></a></li>
128
+ <li class="sp-breadcrumb"><a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview', 'taxonomy' => $taxonomy ), 'admin.php' ) ) ); ?>"><?php echo $taxonomy_object->labels->name; ?></a></li>
129
+ <?php if ( $term->parent ): $parent = get_term( $term->parent, $taxonomy ); ?>
130
+ <li class="sp-breadcrumb"><a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview', 'taxonomy' => $taxonomy, 'term' => $term->parent ), 'admin.php' ) ) ); ?>"><?php echo $parent->name; ?></a></li>
131
+ <?php endif; ?>
132
+ <li class="sp-home"><a class="button disabled"><?php echo wp_strip_all_tags( $term->name ); ?></a></li>
133
+ <?php if ( sizeof ( $taxonomy_object->object_type ) ): ?>
134
+ <ul>
135
+ <?php foreach ( $post_types as $post_type ): $post_object = get_post_type_object( $post_type ); ?>
136
+ <li><a class="button button-primary action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $term->slug ), 'edit.php' ) ) ); ?>"><?php echo $post_object->labels->name; ?><span class="dashicons dashicons-list-view"></span></a></li>
137
+ <?php endforeach; ?>
138
+ </ul>
139
+ <?php endif; ?>
140
+ </ul>
141
+
142
+ <?php endif; ?>
143
+
144
+ <?php else: // Taxonomy archive ?>
145
+
146
+ <?php $terms = get_terms( $taxonomy, array( 'hide_empty' => false, 'parent' => 0, 'orderby' => 'slug' ) ); ?>
147
+ <ul class="sp-primary col<?php echo sizeof( $terms ) + 1; ?>">
148
+ <li class="sp-breadcrumb"><a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview' ), 'admin.php' ) ) ); ?>"><?php _e( 'SportsPress', 'sportspress' ); ?></a></li>
149
+ <li class="sp-home"><a class="button disabled"><?php echo $taxonomy_object->labels->name; ?></a></li>
150
+ <?php if ( $terms ): ?>
151
+ <?php foreach ( $terms as $term ): ?>
152
+ <li>
153
+ <?php if ( sizeof( $post_types ) <= 1 ): $post_type = reset( $post_types ); ?>
154
+ <a class="button button-primary action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $term->slug ), 'edit.php' ) ) ); ?>"><?php echo wp_strip_all_tags( $term->name ); ?><span class="dashicons dashicons-list-view"></span></a>
155
+ <?php else: ?>
156
+ <a class="button button-primary" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview', 'taxonomy' => $taxonomy, 'term' => $term->term_id ), 'admin.php' ) ) ); ?>"><?php echo wp_strip_all_tags( $term->name ); ?></a>
157
+ <?php endif; ?>
158
+ <?php $children = get_terms( $taxonomy, array( 'hide_empty' => false, 'parent' => $term->term_id, 'orderby' => 'slug' ) ); ?>
159
+ <ul>
160
+
161
+ <?php if ( $children ): // Has children ?>
162
+
163
+ <?php if ( sizeof( $post_types ) <= 1 ): ?>
164
+
165
+ <?php foreach ( $children as $child ): ?>
166
+ <?php if ( sizeof ( $post_types ) ): ?>
167
+ <?php foreach ( $post_types as $post_type ): $post_object = get_post_type_object( $post_type ); ?>
168
+ <li><a class="button action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $child->slug ), 'edit.php' ) ) ); ?>"><?php echo wp_strip_all_tags( $child->name ); ?><span class="dashicons dashicons-list-view wp-ui-text-notification"></span></a></li>
169
+ <?php endforeach; ?>
170
+ <?php endif; ?>
171
+ <?php endforeach; ?>
172
+
173
+ <?php else: ?>
174
+
175
+ <?php if ( sizeof ( $post_types ) ): ?>
176
+ <?php foreach ( $post_types as $post_type ): $post_object = get_post_type_object( $post_type ); ?>
177
+ <li><a class="button action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $term->slug ), 'edit.php' ) ) ); ?>"><?php echo $post_object->labels->name; ?><span class="dashicons dashicons-list-view wp-ui-text-notification"></span></a></li>
178
+ <?php endforeach; ?>
179
+ <li></li>
180
+ <li></li>
181
+ <?php endif; ?>
182
+
183
+ <?php foreach ( $children as $child ): ?>
184
+ <li><a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview', 'taxonomy' => $taxonomy, 'term' => $child->term_id ), 'admin.php' ) ) ); ?>"><?php echo wp_strip_all_tags( $child->name ); ?></a>
185
+ <?php if ( sizeof ( $post_types ) ): ?>
186
+ <ul>
187
+ <?php foreach ( $post_types as $post_type ): $post_object = get_post_type_object( $post_type ); ?>
188
+ <li><a class="button action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $child->slug ), 'edit.php' ) ) ); ?>"><?php echo $post_object->labels->name; ?><span class="dashicons dashicons-list-view wp-ui-text-highlight"></span></a></li>
189
+ <?php endforeach; ?>
190
+ </ul>
191
+ <?php endif; ?>
192
+ </li>
193
+ <?php endforeach; ?>
194
+
195
+ <?php endif; ?>
196
+
197
+ <?php else: // No children ?>
198
+
199
+ <?php if ( sizeof ( $post_types ) > 1 ): ?>
200
+ <?php foreach ( $post_types as $post_type ): $post_object = get_post_type_object( $post_type ); ?>
201
+ <li><a class="button action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $term->slug ), 'edit.php' ) ) ); ?>"><?php echo $post_object->labels->name; ?><span class="dashicons dashicons-list-view wp-ui-text-notification"></span></a></li>
202
+ <?php endforeach; ?>
203
+ <?php endif; ?>
204
+
205
+ <?php endif; ?>
206
+
207
+ </ul>
208
+ </li>
209
+ <?php endforeach; ?>
210
+ <?php endif; ?>
211
+ <li><a class="button button-primary action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'taxonomy' => $taxonomy ), 'edit-tags.php' ) ) ); ?>"><?php echo $taxonomy_object->labels->add_new_item; ?><span class="dashicons dashicons-plus"></span></a></li>
212
+ </ul>
213
+
214
+ <?php endif; ?>
215
+
216
+ <?php elseif ( ! isset( $_GET['taxonomy'] ) ): $post_type = $_GET['type']; // Post type archive ?>
217
+
218
+ <?php
219
+ $post_object = get_post_type_object( $post_type );
220
+ $taxonomies = get_object_taxonomies( $post_type, 'objects' );
221
+ ?>
222
+
223
+ <ul class="sp-utility">
224
+ <li><a class="button button-primary" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type ), 'post-new.php' ) ) ); ?>"><?php echo $post_object->labels->add_new_item; ?></a></li>
225
+ <li><a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type ), 'edit.php' ) ) ); ?>"><?php _e( 'View All', 'sportspress' ); ?></a></li>
226
+ </ul>
227
+
228
+ <?php if ( sizeof( $taxonomies ) || sizeof( sp_array_value( $hierarchy, $post_type ) ) ): // Display taxonomies ?>
229
+ <ul class="sp-primary col<?php echo sizeof( $taxonomies ) + sizeof( sp_array_value( $hierarchy, $post_type ) ); ?>">
230
+ <li class="sp-breadcrumb"><a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview' ), 'admin.php' ) ) ); ?>"><?php _e( 'SportsPress', 'sportspress' ); ?></a></li>
231
+ <li class="sp-home"><a class="button disabled"><?php echo $post_object->labels->name; ?></a></li>
232
+ <?php foreach ( sp_array_value( $hierarchy, $post_type ) as $secondary_post_type ): $secondary_post_object = get_post_type_object( $secondary_post_type ); ?>
233
+ <li><a class="button button-primary action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $secondary_post_type ), 'edit.php' ) ) ); ?>"><?php echo $secondary_post_object->labels->name; ?><span class="dashicons dashicons-list-view"></span></a>
234
+ <?php $posts = get_posts( array( 'posts_per_page' => -1, 'post_type' => $secondary_post_type ) ); ?>
235
+ <?php if ( $posts ): ?>
236
+ <ul>
237
+ <?php foreach ( $posts as $post ): ?>
238
+ <li><a class="button action" href="<?php echo esc_url( get_edit_post_link( $post->ID ) ); ?>"><?php echo wp_strip_all_tags( $post->post_title ); ?><span class="dashicons dashicons-edit wp-ui-text-notification"></span></a></li>
239
+ <?php endforeach; ?>
240
+ </ul>
241
+ <?php endif; ?>
242
+ </li>
243
+ <?php endforeach; ?>
244
+ <?php foreach ( $taxonomies as $taxonomy_object ): $taxonomy = $taxonomy_object->name; ?>
245
+ <li><a class="button button-primary" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview', 'type' => $post_type, 'taxonomy' => $taxonomy_object->name ), 'admin.php' ) ) ); ?>"><?php echo $taxonomy_object->labels->name; ?></a>
246
+ <?php $terms = get_terms( $taxonomy, array( 'hide_empty' => false, 'parent' => 0, 'orderby' => 'slug' ) ); ?>
247
+ <?php if ( $terms ): ?>
248
+ <ul>
249
+ <?php foreach ( $terms as $term ): ?>
250
+ <li><a class="button action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $term->slug ), 'edit.php' ) ) ); ?>"><?php echo wp_strip_all_tags( $term->name ); ?><span class="dashicons dashicons-list-view wp-ui-text-notification"></span></a>
251
+ <?php $children = get_terms( $taxonomy, array( 'hide_empty' => false, 'parent' => $term->term_id, 'orderby' => 'slug' ) ); ?>
252
+
253
+ <?php if ( $children ): // Has children ?>
254
+
255
+ <ul>
256
+ <?php foreach ( $children as $child ): ?>
257
+ <li><a class="button action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $child->slug ), 'edit.php' ) ) ); ?>"><?php echo wp_strip_all_tags( $child->name ); ?><span class="dashicons dashicons-list-view wp-ui-text-highlight"></span></a></li>
258
+ <?php endforeach; ?>
259
+ </ul>
260
+
261
+ <?php endif; ?>
262
+
263
+ </li>
264
+ <?php endforeach; ?>
265
+ </ul>
266
+ <?php endif; ?>
267
+ </li>
268
+ <?php endforeach; ?>
269
+ </ul>
270
+
271
+ <?php else: // Display posts ?>
272
+
273
+ <?php $posts = get_posts( array( 'posts_per_page' => -1, 'post_type' => $post_type ) ); ?>
274
+ <ul class="sp-primary col<?php echo sizeof( $posts ); ?>">
275
+ <li class="sp-breadcrumb"><a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview' ), 'admin.php' ) ) ); ?>"><?php _e( 'SportsPress', 'sportspress' ); ?></a></li>
276
+ <li class="sp-home"><a class="button disabled"><?php echo $post_object->labels->name; ?></a></li>
277
+ <?php if ( $posts ): ?>
278
+ <?php foreach ( $posts as $post ): ?>
279
+ <li><a class="button button-primary action" href="<?php echo esc_url( get_edit_post_link( $post->ID ) ); ?>"><?php echo wp_strip_all_tags( $post->post_title ); ?><span class="dashicons dashicons-edit"></span></a></li>
280
+ <?php endforeach; ?>
281
+ <?php else: ?>
282
+ <li><a class="button disabled"><?php _e( 'No results found.', 'sportspress' ); ?></a></li>
283
+ <?php endif; ?>
284
+ </ul>
285
+
286
+ <?php endif; ?>
287
+
288
+ <?php else: $post_type = $_GET['type']; $taxonomy = $_GET['taxonomy']; // Filtered posts ?>
289
+
290
+ <?php $post_object = get_post_type_object( $post_type ); $taxonomy_object = get_taxonomy( $_GET['taxonomy'] ); ?>
291
+
292
+ <?php $terms = get_terms( $taxonomy, array( 'hide_empty' => false, 'parent' => 0, 'orderby' => 'slug' ) ); ?>
293
+
294
+ <ul class="sp-primary col<?php echo sizeof( $terms ) + 1; ?>">
295
+ <li class="sp-breadcrumb"><a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview' ), 'admin.php' ) ) ); ?>"><?php _e( 'SportsPress', 'sportspress' ); ?></a></li>
296
+ <li class="sp-breadcrumb"><a class="button" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sp-overview', 'type' => $post_type ), 'admin.php' ) ) ); ?>"><?php echo $post_object->labels->name; ?></a></li>
297
+ <li class="sp-home"><a class="button disabled"><?php echo $taxonomy_object->labels->name; ?></a></li>
298
+
299
+ <?php if ( $terms ): foreach ( $terms as $term ): ?>
300
+ <li><a class="button button-primary action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $term->slug ), 'edit.php' ) ) ); ?>"><?php echo wp_strip_all_tags( $term->name ); ?><span class="dashicons dashicons-list-view"></span></a>
301
+ <?php $children = get_terms( $taxonomy, array( 'hide_empty' => false, 'parent' => $term->term_id, 'orderby' => 'slug' ) ); ?>
302
+
303
+ <?php if ( $children ): // Has children ?>
304
+
305
+ <ul>
306
+ <?php foreach ( $children as $child ): ?>
307
+ <li><a class="button action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $child->slug ), 'edit.php' ) ) ); ?>"><?php echo wp_strip_all_tags( $child->name ); ?><span class="dashicons dashicons-list-view wp-ui-text-notification"></span></a>
308
+ <?php $grandchildren = get_terms( $taxonomy, array( 'hide_empty' => false, 'parent' => $child->term_id, 'orderby' => 'slug' ) ); ?>
309
+
310
+ <?php if ( $grandchildren ): // Has grandchildren ?>
311
+ <ul>
312
+ <?php foreach ( $grandchildren as $grandchild ): ?>
313
+ <li><a class="button action" href="<?php echo esc_url( admin_url( add_query_arg( array( 'post_type' => $post_type, $taxonomy => $grandchild->slug ), 'edit.php' ) ) ); ?>"><?php echo $grandchild->name; ?><span class="dashicons dashicons-list-view wp-ui-text-highlight"></span></a></li>
314
+ <?php endforeach; ?>
315
+ </ul>
316
+ <?php endif; ?>
317
+
318
+ </li>
319
+ <?php endforeach; ?>
320
+ </ul>
321
+
322
+ <?php endif; ?>
323
+
324
+ </li>
325
+ <?php endforeach; endif; ?>
326
+ <li><a class="button button-primary" href="<?php echo esc_url( admin_url( add_query_arg( array( 'taxonomy' => $taxonomy ), 'edit-tags.php' ) ) ); ?>"><?php echo $taxonomy_object->labels->add_new_item; ?></a></li>
327
+ </ul>
328
+
329
+ <?php endif; ?>
330
+ </div>
331
+ <?php do_action( 'sportspress_overview_page' ); ?>
332
+ </div>
includes/admin/views/html-admin-settings.php CHANGED
@@ -4,19 +4,18 @@
4
  <?php foreach ( $tabs as $name => $label ): ?><a href="<?php echo admin_url( 'admin.php?page=sportspress&tab=' . $name ); ?>" class="nav-tab <?php echo ( $current_tab == $name ? 'nav-tab-active' : '' ); ?>"><?php echo $label; ?></a><?php endforeach; ?>
5
  <?php do_action( 'sportspress_settings_tabs' ); ?>
6
  </h2>
7
-
8
  <?php
9
  do_action( 'sportspress_sections_' . $current_tab );
10
  do_action( 'sportspress_settings_' . $current_tab );
11
  do_action( 'sportspress_settings_tabs_' . $current_tab ); // @deprecated hook
12
  ?>
13
-
14
- <p class="submit">
15
- <?php if ( ! isset( $GLOBALS['hide_save_button'] ) ) : ?>
16
- <input name="save" class="button-primary" type="submit" value="<?php _e( 'Save changes', 'sportspress' ); ?>" />
17
- <?php endif; ?>
18
- <input type="hidden" name="subtab" id="last_tab" />
19
- <?php wp_nonce_field( 'sportspress-settings' ); ?>
20
- </p>
21
  </form>
 
22
  </div>
4
  <?php foreach ( $tabs as $name => $label ): ?><a href="<?php echo admin_url( 'admin.php?page=sportspress&tab=' . $name ); ?>" class="nav-tab <?php echo ( $current_tab == $name ? 'nav-tab-active' : '' ); ?>"><?php echo $label; ?></a><?php endforeach; ?>
5
  <?php do_action( 'sportspress_settings_tabs' ); ?>
6
  </h2>
 
7
  <?php
8
  do_action( 'sportspress_sections_' . $current_tab );
9
  do_action( 'sportspress_settings_' . $current_tab );
10
  do_action( 'sportspress_settings_tabs_' . $current_tab ); // @deprecated hook
11
  ?>
12
+ <p class="submit">
13
+ <?php if ( ! isset( $GLOBALS['hide_save_button'] ) ) : ?>
14
+ <input name="save" class="button-primary" type="submit" value="<?php _e( 'Save changes', 'sportspress' ); ?>" />
15
+ <?php endif; ?>
16
+ <input type="hidden" name="subtab" id="last_tab" />
17
+ <?php wp_nonce_field( 'sportspress-settings' ); ?>
18
+ </p>
 
19
  </form>
20
+ <?php do_action( 'sportspress_settings_page' ); ?>
21
  </div>
includes/class-sp-event.php CHANGED
@@ -5,7 +5,7 @@
5
  * The SportsPress event class handles individual event data.
6
  *
7
  * @class SP_Event
8
- * @version 1.2.3
9
  * @package SportsPress/Classes
10
  * @category Class
11
  * @author ThemeBoy
@@ -17,7 +17,8 @@ class SP_Event extends SP_Custom_Post{
17
  $results = get_post_meta( $this->ID, 'sp_results', true );
18
  if ( is_array( $results ) ) {
19
  foreach( $results as $result ) {
20
- if ( count( array_filter( $result ) ) > 0 ) {
 
21
  return 'results';
22
  }
23
  }
@@ -98,13 +99,13 @@ class SP_Event extends SP_Custom_Post{
98
  else:
99
  // Add position to performance labels
100
  $labels = array_merge( array( 'position' => __( 'Position', 'sportspress' ) ), $labels );
101
- if ( ! is_array( $columns ) )
102
- $columns = array();
103
- foreach ( $labels as $key => $label ):
104
- if ( ! in_array( $key, $columns ) ):
105
- unset( $labels[ $key ] );
106
- endif;
107
- endforeach;
108
  $performance[0] = $labels;
109
  return $performance;
110
  endif;
5
  * The SportsPress event class handles individual event data.
6
  *
7
  * @class SP_Event
8
+ * @version 1.3
9
  * @package SportsPress/Classes
10
  * @category Class
11
  * @author ThemeBoy
17
  $results = get_post_meta( $this->ID, 'sp_results', true );
18
  if ( is_array( $results ) ) {
19
  foreach( $results as $result ) {
20
+ $result = array_filter( $result );
21
+ if ( count( $result ) > 0 ) {
22
  return 'results';
23
  }
24
  }
99
  else:
100
  // Add position to performance labels
101
  $labels = array_merge( array( 'position' => __( 'Position', 'sportspress' ) ), $labels );
102
+ if ( is_array( $columns ) ):
103
+ foreach ( $labels as $key => $label ):
104
+ if ( ! in_array( $key, $columns ) ):
105
+ unset( $labels[ $key ] );
106
+ endif;
107
+ endforeach;
108
+ endif;
109
  $performance[0] = $labels;
110
  return $performance;
111
  endif;
includes/class-sp-frontend-scripts.php CHANGED
@@ -107,6 +107,13 @@ class SP_Frontend_Scripts {
107
  }
108
 
109
  $colors = (array) get_option( 'sportspress_frontend_css_colors', array() );
 
 
 
 
 
 
 
110
 
111
  echo '<style type="text/css">.sp-data-table tbody a,.sp-data-table tbody a:hover,.sp-calendar tbody a,.sp-calendar tbody a:hover{background:none;}';
112
 
107
  }
108
 
109
  $colors = (array) get_option( 'sportspress_frontend_css_colors', array() );
110
+
111
+ // Defaults
112
+ if ( empty( $colors['primary'] ) ) $colors['primary'] = '#00a69c';
113
+ if ( empty( $colors['background'] ) ) $colors['background'] = '#f4f4f4';
114
+ if ( empty( $colors['text'] ) ) $colors['text'] = '#363f48';
115
+ if ( empty( $colors['heading'] ) ) $colors['heading'] = '#ffffff';
116
+ if ( empty( $colors['link'] ) ) $colors['link'] = '#00a69c';
117
 
118
  echo '<style type="text/css">.sp-data-table tbody a,.sp-data-table tbody a:hover,.sp-calendar tbody a,.sp-calendar tbody a:hover{background:none;}';
119
 
includes/class-sp-install.php CHANGED
@@ -126,7 +126,7 @@ class SP_Install {
126
  }
127
 
128
  // Default color scheme
129
- add_option( 'sportspress_frontend_css_primary', '#364c74' );
130
  add_option( 'sportspress_frontend_css_background', '#f4f4f4' );
131
  add_option( 'sportspress_frontend_css_text', '#363f48' );
132
  add_option( 'sportspress_frontend_css_heading', '#ffffff' );
126
  }
127
 
128
  // Default color scheme
129
+ add_option( 'sportspress_frontend_css_primary', '#00a69c' );
130
  add_option( 'sportspress_frontend_css_background', '#f4f4f4' );
131
  add_option( 'sportspress_frontend_css_text', '#363f48' );
132
  add_option( 'sportspress_frontend_css_heading', '#ffffff' );
includes/class-sp-league-table.php CHANGED
@@ -68,7 +68,7 @@ class SP_League_Table extends SP_Custom_Post{
68
  endforeach;
69
 
70
  // Initialize team totals
71
- $totals[ $team_id ] = array( 'eventsplayed' => 0, 'streak' => 0 );
72
 
73
  foreach ( $result_labels as $key => $value ):
74
  $totals[ $team_id ][ $key . 'for' ] = 0;
@@ -95,31 +95,40 @@ class SP_League_Table extends SP_Custom_Post{
95
  'order' => 'DESC',
96
  'tax_query' => array(
97
  'relation' => 'AND',
98
- array(
99
- 'taxonomy' => 'sp_league',
100
- 'field' => 'id',
101
- 'terms' => $league_id
102
- ),
103
- array(
104
- 'taxonomy' => 'sp_season',
105
- 'field' => 'id',
106
- 'terms' => $div_id
107
- )
108
- )
109
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  $events = get_posts( $args );
111
 
112
  // Event loop
113
  foreach ( $events as $event ):
114
 
115
  $results = (array)get_post_meta( $event->ID, 'sp_results', true );
 
 
116
 
117
  foreach ( $results as $team_id => $team_result ):
118
 
119
  if ( ! in_array( $team_id, $team_ids ) )
120
  continue;
121
 
122
- foreach ( $team_result as $key => $value ):
123
 
124
  if ( $key == 'outcome' ):
125
 
@@ -131,8 +140,9 @@ class SP_League_Table extends SP_Custom_Post{
131
 
132
  // Increment events played and outcome count
133
  if ( array_key_exists( $team_id, $totals ) && is_array( $totals[ $team_id ] ) && array_key_exists( $outcome, $totals[ $team_id ] ) ):
134
- $totals[ $team_id ]['eventsplayed']++;
135
- $totals[ $team_id ][ $outcome ]++;
 
136
  endif;
137
 
138
  if ( $outcome && $outcome != '-1' ):
@@ -170,7 +180,7 @@ class SP_League_Table extends SP_Custom_Post{
170
  endif;
171
  endif;
172
 
173
- endforeach;
174
 
175
  endforeach;
176
 
68
  endforeach;
69
 
70
  // Initialize team totals
71
+ $totals[ $team_id ] = array( 'eventsplayed' => 0, 'eventminutes' => 0, 'streak' => 0 );
72
 
73
  foreach ( $result_labels as $key => $value ):
74
  $totals[ $team_id ][ $key . 'for' ] = 0;
95
  'order' => 'DESC',
96
  'tax_query' => array(
97
  'relation' => 'AND',
98
+ ),
 
 
 
 
 
 
 
 
 
 
99
  );
100
+
101
+ if ( $league_id ):
102
+ $args['tax_query'][] = array(
103
+ 'taxonomy' => 'sp_league',
104
+ 'field' => 'id',
105
+ 'terms' => $league_id
106
+ );
107
+ endif;
108
+
109
+ if ( $league_id ):
110
+ $args['tax_query'][] = array(
111
+ 'taxonomy' => 'sp_season',
112
+ 'field' => 'id',
113
+ 'terms' => $div_id
114
+ );
115
+ endif;
116
+
117
  $events = get_posts( $args );
118
 
119
  // Event loop
120
  foreach ( $events as $event ):
121
 
122
  $results = (array)get_post_meta( $event->ID, 'sp_results', true );
123
+ $minutes = get_post_meta( $event->ID, 'sp_minutes', true );
124
+ if ( $minutes === '' ) $minutes = get_option( 'sportspress_event_minutes', 90 );
125
 
126
  foreach ( $results as $team_id => $team_result ):
127
 
128
  if ( ! in_array( $team_id, $team_ids ) )
129
  continue;
130
 
131
+ if ( $team_result ): foreach ( $team_result as $key => $value ):
132
 
133
  if ( $key == 'outcome' ):
134
 
140
 
141
  // Increment events played and outcome count
142
  if ( array_key_exists( $team_id, $totals ) && is_array( $totals[ $team_id ] ) && array_key_exists( $outcome, $totals[ $team_id ] ) ):
143
+ $totals[ $team_id ]['eventsplayed'] ++;
144
+ $totals[ $team_id ]['eventminutes'] += $minutes;
145
+ $totals[ $team_id ][ $outcome ] ++;
146
  endif;
147
 
148
  if ( $outcome && $outcome != '-1' ):
180
  endif;
181
  endif;
182
 
183
+ endforeach; endif;
184
 
185
  endforeach;
186
 
includes/class-sp-player-list.php CHANGED
@@ -5,7 +5,7 @@
5
  * The SportsPress player list class handles individual player list data.
6
  *
7
  * @class SP_Player_List
8
- * @version 1.2.6
9
  * @package SportsPress/Classes
10
  * @category Class
11
  * @author ThemeBoy
@@ -84,7 +84,7 @@ class SP_Player_List extends SP_Custom_Post {
84
  endforeach;
85
 
86
  // Initialize player totals
87
- $totals[ $player_id ] = array( 'eventsattended' => 0, 'eventsplayed' => 0, 'eventsstarted' => 0, 'eventssubbed' => 0, 'streak' => 0 );
88
 
89
  foreach ( $performance_labels as $key => $value ):
90
  $totals[ $player_id ][ $key ] = 0;
@@ -118,24 +118,33 @@ class SP_Player_List extends SP_Custom_Post {
118
  'order' => 'ASC',
119
  'tax_query' => array(
120
  'relation' => 'AND',
121
- array(
122
- 'taxonomy' => 'sp_league',
123
- 'field' => 'id',
124
- 'terms' => $league_id
125
- ),
126
- array(
127
- 'taxonomy' => 'sp_season',
128
- 'field' => 'id',
129
- 'terms' => $div_id
130
- )
131
- )
132
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  $events = get_posts( $args );
134
 
135
  // Event loop
136
  foreach ( $events as $event ):
137
  $results = (array)get_post_meta( $event->ID, 'sp_results', true );
138
  $team_performance = get_post_meta( $event->ID, 'sp_players', true );
 
 
139
 
140
  // Add all team performance
141
  if ( is_array( $team_performance ) ): foreach ( $team_performance as $team_id => $players ):
@@ -156,16 +165,17 @@ class SP_Player_List extends SP_Custom_Post {
156
  if ( array_key_exists( 'outcome', $team_results ) ):
157
 
158
  // Increment events attended
159
- $totals[ $player_id ]['eventsattended']++;
160
 
161
  // Continue with incrementing values if active in event
162
  if ( sp_array_value( $player_performance, 'status' ) != 'sub' || sp_array_value( $player_performance, 'sub', 0 ) ):
163
- $totals[ $player_id ]['eventsplayed']++;
 
164
 
165
  if ( sp_array_value( $player_performance, 'status' ) == 'lineup' ):
166
- $totals[ $player_id ]['eventsstarted']++;
167
  elseif ( sp_array_value( $player_performance, 'status' ) == 'sub' && sp_array_value( $player_performance, 'sub', 0 ) ):
168
- $totals[ $player_id ]['eventssubbed']++;
169
  endif;
170
 
171
  $value = $team_results['outcome'];
@@ -181,7 +191,7 @@ class SP_Player_List extends SP_Custom_Post {
181
 
182
  // Increment events attended and outcome count
183
  if ( array_key_exists( $outcome, $totals[ $player_id ] ) ):
184
- $totals[ $player_id ][ $outcome ]++;
185
  endif;
186
 
187
  // Add to streak counter
5
  * The SportsPress player list class handles individual player list data.
6
  *
7
  * @class SP_Player_List
8
+ * @version 1.3
9
  * @package SportsPress/Classes
10
  * @category Class
11
  * @author ThemeBoy
84
  endforeach;
85
 
86
  // Initialize player totals
87
+ $totals[ $player_id ] = array( 'eventsattended' => 0, 'eventsplayed' => 0, 'eventsstarted' => 0, 'eventssubbed' => 0, 'eventminutes' => 0, 'streak' => 0 );
88
 
89
  foreach ( $performance_labels as $key => $value ):
90
  $totals[ $player_id ][ $key ] = 0;
118
  'order' => 'ASC',
119
  'tax_query' => array(
120
  'relation' => 'AND',
121
+ ),
 
 
 
 
 
 
 
 
 
 
122
  );
123
+
124
+ if ( $league_id ):
125
+ $args['tax_query'][] = array(
126
+ 'taxonomy' => 'sp_league',
127
+ 'field' => 'id',
128
+ 'terms' => $league_id
129
+ );
130
+ endif;
131
+
132
+ if ( $league_id ):
133
+ $args['tax_query'][] = array(
134
+ 'taxonomy' => 'sp_season',
135
+ 'field' => 'id',
136
+ 'terms' => $div_id
137
+ );
138
+ endif;
139
+
140
  $events = get_posts( $args );
141
 
142
  // Event loop
143
  foreach ( $events as $event ):
144
  $results = (array)get_post_meta( $event->ID, 'sp_results', true );
145
  $team_performance = get_post_meta( $event->ID, 'sp_players', true );
146
+ $minutes = get_post_meta( $event->ID, 'sp_minutes', true );
147
+ if ( $minutes === '' ) $minutes = get_option( 'sportspress_event_minutes', 90 );
148
 
149
  // Add all team performance
150
  if ( is_array( $team_performance ) ): foreach ( $team_performance as $team_id => $players ):
165
  if ( array_key_exists( 'outcome', $team_results ) ):
166
 
167
  // Increment events attended
168
+ $totals[ $player_id ]['eventsattended'] ++;
169
 
170
  // Continue with incrementing values if active in event
171
  if ( sp_array_value( $player_performance, 'status' ) != 'sub' || sp_array_value( $player_performance, 'sub', 0 ) ):
172
+ $totals[ $player_id ]['eventsplayed'] ++;
173
+ $totals[ $player_id ]['eventminutes'] += $minutes;
174
 
175
  if ( sp_array_value( $player_performance, 'status' ) == 'lineup' ):
176
+ $totals[ $player_id ]['eventsstarted'] ++;
177
  elseif ( sp_array_value( $player_performance, 'status' ) == 'sub' && sp_array_value( $player_performance, 'sub', 0 ) ):
178
+ $totals[ $player_id ]['eventssubbed'] ++;
179
  endif;
180
 
181
  $value = $team_results['outcome'];
191
 
192
  // Increment events attended and outcome count
193
  if ( array_key_exists( $outcome, $totals[ $player_id ] ) ):
194
+ $totals[ $player_id ][ $outcome ] ++;
195
  endif;
196
 
197
  // Add to streak counter
includes/class-sp-player.php CHANGED
@@ -5,7 +5,7 @@
5
  * The SportsPress player class handles individual player data.
6
  *
7
  * @class SP_Player
8
- * @version 0.8.1
9
  * @package SportsPress/Classes
10
  * @category Class
11
  * @author ThemeBoy
@@ -83,6 +83,9 @@ class SP_Player extends SP_Custom_Post {
83
  endif;
84
  endforeach;
85
 
 
 
 
86
  $data = array();
87
 
88
  // Get all seasons populated with data where available
@@ -96,7 +99,7 @@ class SP_Player extends SP_Custom_Post {
96
 
97
  foreach ( $div_ids as $div_id ):
98
 
99
- $totals = array( 'eventsattended' => 0, 'eventsplayed' => 0, 'eventsstarted' => 0, 'eventssubbed' => 0, 'streak' => 0, 'last5' => null, 'last10' => null );
100
 
101
  foreach ( $performance_labels as $key => $value ):
102
  $totals[ $key ] = 0;
@@ -138,24 +141,33 @@ class SP_Player extends SP_Custom_Post {
138
  ),
139
  'tax_query' => array(
140
  'relation' => 'AND',
141
- array(
142
- 'taxonomy' => 'sp_league',
143
- 'field' => 'id',
144
- 'terms' => $league_id
145
- ),
146
- array(
147
- 'taxonomy' => 'sp_season',
148
- 'field' => 'id',
149
- 'terms' => $div_id
150
- ),
151
- )
152
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
153
  $events = get_posts( $args );
154
 
155
  // Event loop
156
  foreach( $events as $event ):
157
  $results = (array)get_post_meta( $event->ID, 'sp_results', true );
158
  $team_performance = (array)get_post_meta( $event->ID, 'sp_players', true );
 
 
159
 
160
  // Add all team performance
161
  foreach ( $team_performance as $team_id => $players ):
@@ -175,16 +187,17 @@ class SP_Player extends SP_Custom_Post {
175
  if ( array_key_exists( 'outcome', $team_results ) ):
176
 
177
  // Increment events attended
178
- $totals['eventsattended']++;
179
 
180
  // Continue with incrementing values if active in event
181
  if ( sp_array_value( $player_performance, 'status' ) != 'sub' || sp_array_value( $player_performance, 'sub', 0 ) ):
182
- $totals['eventsplayed']++;
 
183
 
184
  if ( sp_array_value( $player_performance, 'status' ) == 'lineup' ):
185
- $totals['eventsstarted']++;
186
  elseif ( sp_array_value( $player_performance, 'status' ) == 'sub' && sp_array_value( $player_performance, 'sub', 0 ) ):
187
- $totals['eventssubbed']++;
188
  endif;
189
 
190
  $value = $team_results['outcome'];
@@ -199,7 +212,7 @@ class SP_Player extends SP_Custom_Post {
199
 
200
  // Increment outcome count
201
  if ( array_key_exists( $outcome, $totals ) ):
202
- $totals[ $outcome ]++;
203
  endif;
204
 
205
  // Add to streak counter
@@ -280,7 +293,7 @@ class SP_Player extends SP_Custom_Post {
280
 
281
  $team_name = get_the_title( $team_id );
282
 
283
- if ( get_option( 'sportspress_player_link_teams', 'no' ) == 'yes' ? true : false ):
284
  $team_permalink = get_permalink( $team_id );
285
  $team_name = '<a href="' . $team_permalink . '">' . $team_name . '</a>';
286
  endif;
5
  * The SportsPress player class handles individual player data.
6
  *
7
  * @class SP_Player
8
+ * @version 1.3
9
  * @package SportsPress/Classes
10
  * @category Class
11
  * @author ThemeBoy
83
  endif;
84
  endforeach;
85
 
86
+ $div_ids[] = 0;
87
+ $season_names[0] = __( 'Total', 'sportspress' );
88
+
89
  $data = array();
90
 
91
  // Get all seasons populated with data where available
99
 
100
  foreach ( $div_ids as $div_id ):
101
 
102
+ $totals = array( 'eventsattended' => 0, 'eventsplayed' => 0, 'eventsstarted' => 0, 'eventssubbed' => 0, 'eventminutes' => 0, 'streak' => 0, 'last5' => null, 'last10' => null );
103
 
104
  foreach ( $performance_labels as $key => $value ):
105
  $totals[ $key ] = 0;
141
  ),
142
  'tax_query' => array(
143
  'relation' => 'AND',
144
+ ),
 
 
 
 
 
 
 
 
 
 
145
  );
146
+
147
+ if ( $league_id ):
148
+ $args['tax_query'][] = array(
149
+ 'taxonomy' => 'sp_league',
150
+ 'field' => 'id',
151
+ 'terms' => $league_id
152
+ );
153
+ endif;
154
+
155
+ if ( $div_id ):
156
+ $args['tax_query'][] = array(
157
+ 'taxonomy' => 'sp_season',
158
+ 'field' => 'id',
159
+ 'terms' => $div_id
160
+ );
161
+ endif;
162
+
163
  $events = get_posts( $args );
164
 
165
  // Event loop
166
  foreach( $events as $event ):
167
  $results = (array)get_post_meta( $event->ID, 'sp_results', true );
168
  $team_performance = (array)get_post_meta( $event->ID, 'sp_players', true );
169
+ $minutes = get_post_meta( $event->ID, 'sp_minutes', true );
170
+ if ( $minutes === '' ) $minutes = get_option( 'sportspress_event_minutes', 90 );
171
 
172
  // Add all team performance
173
  foreach ( $team_performance as $team_id => $players ):
187
  if ( array_key_exists( 'outcome', $team_results ) ):
188
 
189
  // Increment events attended
190
+ $totals['eventsattended'] ++;
191
 
192
  // Continue with incrementing values if active in event
193
  if ( sp_array_value( $player_performance, 'status' ) != 'sub' || sp_array_value( $player_performance, 'sub', 0 ) ):
194
+ $totals['eventsplayed'] ++;
195
+ $totals['eventminutes'] += $minutes;
196
 
197
  if ( sp_array_value( $player_performance, 'status' ) == 'lineup' ):
198
+ $totals['eventsstarted'] ++;
199
  elseif ( sp_array_value( $player_performance, 'status' ) == 'sub' && sp_array_value( $player_performance, 'sub', 0 ) ):
200
+ $totals['eventssubbed'] ++;
201
  endif;
202
 
203
  $value = $team_results['outcome'];
212
 
213
  // Increment outcome count
214
  if ( array_key_exists( $outcome, $totals ) ):
215
+ $totals[ $outcome ] ++;
216
  endif;
217
 
218
  // Add to streak counter
293
 
294
  $team_name = get_the_title( $team_id );
295
 
296
+ if ( get_option( 'sportspress_link_teams', 'no' ) == 'yes' ? true : false ):
297
  $team_permalink = get_permalink( $team_id );
298
  $team_name = '<a href="' . $team_permalink . '">' . $team_name . '</a>';
299
  endif;
includes/class-sp-post-types.php CHANGED
@@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
9
  * Registers post types and taxonomies
10
  *
11
  * @class SP_Post_types
12
- * @version 1.1.4
13
  * @package SportsPress/Classes
14
  * @category Class
15
  * @author ThemeBoy
@@ -146,6 +146,35 @@ class SP_Post_types {
146
  foreach ( $object_types as $object_type ):
147
  register_taxonomy_for_object_type( 'sp_position', $object_type );
148
  endforeach;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
149
  }
150
 
151
  /**
@@ -295,7 +324,7 @@ class SP_Post_types {
295
  'publicly_queryable' => false,
296
  'exclude_from_search' => true,
297
  'hierarchical' => false,
298
- 'supports' => array( 'title', 'page-attributes', 'excerpt' ),
299
  'has_archive' => false,
300
  'show_in_nav_menus' => false,
301
  'can_export' => false,
@@ -343,7 +372,7 @@ class SP_Post_types {
343
  'add_new_item' => __( 'Add New Event', 'sportspress' ),
344
  'edit_item' => __( 'Edit Event', 'sportspress' ),
345
  'new_item' => __( 'New', 'sportspress' ),
346
- 'view_item' => __( 'View', 'sportspress' ),
347
  'search_items' => __( 'Search', 'sportspress' ),
348
  'not_found' => __( 'No results found.', 'sportspress' ),
349
  'not_found_in_trash' => __( 'No results found.', 'sportspress' ),
@@ -373,7 +402,7 @@ class SP_Post_types {
373
  'add_new_item' => __( 'Add New Calendar', 'sportspress' ),
374
  'edit_item' => __( 'Edit Calendar', 'sportspress' ),
375
  'new_item' => __( 'New', 'sportspress' ),
376
- 'view_item' => __( 'View', 'sportspress' ),
377
  'search_items' => __( 'Search', 'sportspress' ),
378
  'not_found' => __( 'No results found.', 'sportspress' ),
379
  'not_found_in_trash' => __( 'No results found.', 'sportspress' ),
@@ -404,7 +433,7 @@ class SP_Post_types {
404
  'add_new_item' => __( 'Add New Team', 'sportspress' ),
405
  'edit_item' => __( 'Edit Team', 'sportspress' ),
406
  'new_item' => __( 'New', 'sportspress' ),
407
- 'view_item' => __( 'View', 'sportspress' ),
408
  'search_items' => __( 'Search', 'sportspress' ),
409
  'not_found' => __( 'No results found.', 'sportspress' ),
410
  'not_found_in_trash' => __( 'No results found.', 'sportspress' ),
@@ -434,7 +463,7 @@ class SP_Post_types {
434
  'add_new_item' => __( 'Add New League Table', 'sportspress' ),
435
  'edit_item' => __( 'Edit League Table', 'sportspress' ),
436
  'new_item' => __( 'New', 'sportspress' ),
437
- 'view_item' => __( 'View', 'sportspress' ),
438
  'search_items' => __( 'Search', 'sportspress' ),
439
  'not_found' => __( 'No results found.', 'sportspress' ),
440
  'not_found_in_trash' => __( 'No results found.', 'sportspress' ),
@@ -456,99 +485,97 @@ class SP_Post_types {
456
  )
457
  );
458
 
459
- if ( SP()->mode == 'team' ):
460
- register_post_type( 'sp_player',
461
- apply_filters( 'sportspress_register_post_type_player',
462
- array(
463
- 'labels' => array(
464
- 'name' => __( 'Players', 'sportspress' ),
465
- 'singular_name' => __( 'Player', 'sportspress' ),
466
- 'add_new_item' => __( 'Add New Player', 'sportspress' ),
467
- 'edit_item' => __( 'Edit Player', 'sportspress' ),
468
- 'new_item' => __( 'New', 'sportspress' ),
469
- 'view_item' => __( 'View', 'sportspress' ),
470
- 'search_items' => __( 'Search', 'sportspress' ),
471
- 'not_found' => __( 'No results found.', 'sportspress' ),
472
- 'not_found_in_trash' => __( 'No results found.', 'sportspress' ),
473
- ),
474
- 'public' => true,
475
- 'show_ui' => true,
476
- 'capability_type' => 'sp_player',
477
- 'map_meta_cap' => true,
478
- 'publicly_queryable' => true,
479
- 'exclude_from_search' => false,
480
- 'hierarchical' => false,
481
- 'rewrite' => array( 'slug' => get_option( 'sportspress_player_slug', 'player' ) ),
482
- 'supports' => array( 'title', 'author', 'thumbnail', 'excerpt', 'page-attributes' ),
483
- 'has_archive' => false,
484
- 'show_in_nav_menus' => true,
485
- 'menu_icon' => 'dashicons-groups',
486
- )
487
  )
488
- );
 
489
 
490
- register_post_type( 'sp_list',
491
- apply_filters( 'sportspress_register_post_type_list',
492
- array(
493
- 'labels' => array(
494
- 'name' => __( 'Player Lists', 'sportspress' ),
495
- 'singular_name' => __( 'Player List', 'sportspress' ),
496
- 'add_new_item' => __( 'Add New Player List', 'sportspress' ),
497
- 'edit_item' => __( 'Edit Player List', 'sportspress' ),
498
- 'new_item' => __( 'New', 'sportspress' ),
499
- 'view_item' => __( 'View', 'sportspress' ),
500
- 'search_items' => __( 'Search', 'sportspress' ),
501
- 'not_found' => __( 'No results found.', 'sportspress' ),
502
- 'not_found_in_trash' => __( 'No results found.', 'sportspress' ),
503
- ),
504
- 'public' => true,
505
- 'show_ui' => true,
506
- 'capability_type' => 'sp_list',
507
- 'map_meta_cap' => true,
508
- 'publicly_queryable' => true,
509
- 'exclude_from_search' => false,
510
- 'hierarchical' => false,
511
- 'rewrite' => array( 'slug' => get_option( 'sportspress_list_slug', 'list' ) ),
512
- 'supports' => array( 'title', 'page-attributes', 'author', 'thumbnail' ),
513
- 'has_archive' => false,
514
- 'show_in_nav_menus' => true,
515
- 'show_in_menu' => 'edit.php?post_type=sp_player',
516
- 'show_in_admin_bar' => true,
517
- )
518
  )
519
- );
 
520
 
521
- register_post_type( 'sp_staff',
522
- apply_filters( 'sportspress_register_post_type_staff',
523
- array(
524
- 'labels' => array(
525
- 'name' => __( 'Staff', 'sportspress' ),
526
- 'singular_name' => __( 'Staff', 'sportspress' ),
527
- 'add_new_item' => __( 'Add New Staff', 'sportspress' ),
528
- 'edit_item' => __( 'Edit Staff', 'sportspress' ),
529
- 'new_item' => __( 'New', 'sportspress' ),
530
- 'view_item' => __( 'View', 'sportspress' ),
531
- 'search_items' => __( 'Search', 'sportspress' ),
532
- 'not_found' => __( 'No results found.', 'sportspress' ),
533
- 'not_found_in_trash' => __( 'No results found.', 'sportspress' ),
534
- ),
535
- 'public' => true,
536
- 'show_ui' => true,
537
- 'capability_type' => 'sp_staff',
538
- 'map_meta_cap' => true,
539
- 'publicly_queryable' => true,
540
- 'exclude_from_search' => false,
541
- 'hierarchical' => false,
542
- 'rewrite' => array( 'slug' => get_option( 'sportspress_staff_slug', 'staff' ) ),
543
- 'supports' => array( 'title', 'author', 'thumbnail', 'excerpt' ),
544
- 'has_archive' => false,
545
- 'show_in_nav_menus' => true,
546
- 'show_in_menu' => 'edit.php?post_type=sp_player',
547
- 'show_in_admin_bar' => true,
548
- )
549
  )
550
- );
551
- endif;
552
  }
553
 
554
  public function display_scheduled_events( $posts ) {
9
  * Registers post types and taxonomies
10
  *
11
  * @class SP_Post_types
12
+ * @version 1.3
13
  * @package SportsPress/Classes
14
  * @category Class
15
  * @author ThemeBoy
146
  foreach ( $object_types as $object_type ):
147
  register_taxonomy_for_object_type( 'sp_position', $object_type );
148
  endforeach;
149
+
150
+ $labels = array(
151
+ 'name' => __( 'Roles', 'sportspress' ),
152
+ 'singular_name' => __( 'Role', 'sportspress' ),
153
+ 'all_items' => __( 'All', 'sportspress' ),
154
+ 'edit_item' => __( 'Edit Role', 'sportspress' ),
155
+ 'view_item' => __( 'View', 'sportspress' ),
156
+ 'update_item' => __( 'Update', 'sportspress' ),
157
+ 'add_new_item' => __( 'Add New', 'sportspress' ),
158
+ 'new_item_name' => __( 'Name', 'sportspress' ),
159
+ 'parent_item' => __( 'Parent', 'sportspress' ),
160
+ 'parent_item_colon' => __( 'Parent:', 'sportspress' ),
161
+ 'search_items' => __( 'Search', 'sportspress' ),
162
+ 'not_found' => __( 'No results found.', 'sportspress' ),
163
+ );
164
+ $args = array(
165
+ 'label' => __( 'Roles', 'sportspress' ),
166
+ 'labels' => $labels,
167
+ 'public' => true,
168
+ 'show_in_nav_menus' => false,
169
+ 'show_tagcloud' => false,
170
+ 'hierarchical' => true,
171
+ 'rewrite' => array( 'slug' => get_option( 'sportspress_role_slug', 'role' ) ),
172
+ );
173
+ $object_types = apply_filters( 'sportspress_role_object_types', array( 'sp_staff' ) );
174
+ register_taxonomy( 'sp_role', $object_types, $args );
175
+ foreach ( $object_types as $object_type ):
176
+ register_taxonomy_for_object_type( 'sp_role', $object_type );
177
+ endforeach;
178
  }
179
 
180
  /**
324
  'publicly_queryable' => false,
325
  'exclude_from_search' => true,
326
  'hierarchical' => false,
327
+ 'supports' => array( 'title', 'thumbnail', 'page-attributes', 'excerpt' ),
328
  'has_archive' => false,
329
  'show_in_nav_menus' => false,
330
  'can_export' => false,
372
  'add_new_item' => __( 'Add New Event', 'sportspress' ),
373
  'edit_item' => __( 'Edit Event', 'sportspress' ),
374
  'new_item' => __( 'New', 'sportspress' ),
375
+ 'view_item' => __( 'View Event', 'sportspress' ),
376
  'search_items' => __( 'Search', 'sportspress' ),
377
  'not_found' => __( 'No results found.', 'sportspress' ),
378
  'not_found_in_trash' => __( 'No results found.', 'sportspress' ),
402
  'add_new_item' => __( 'Add New Calendar', 'sportspress' ),
403
  'edit_item' => __( 'Edit Calendar', 'sportspress' ),
404
  'new_item' => __( 'New', 'sportspress' ),
405
+ 'view_item' => __( 'View Calendar', 'sportspress' ),
406
  'search_items' => __( 'Search', 'sportspress' ),
407
  'not_found' => __( 'No results found.', 'sportspress' ),
408
  'not_found_in_trash' => __( 'No results found.', 'sportspress' ),
433
  'add_new_item' => __( 'Add New Team', 'sportspress' ),
434
  'edit_item' => __( 'Edit Team', 'sportspress' ),
435
  'new_item' => __( 'New', 'sportspress' ),
436
+ 'view_item' => __( 'View Team', 'sportspress' ),
437
  'search_items' => __( 'Search', 'sportspress' ),
438
  'not_found' => __( 'No results found.', 'sportspress' ),
439
  'not_found_in_trash' => __( 'No results found.', 'sportspress' ),
463
  'add_new_item' => __( 'Add New League Table', 'sportspress' ),
464
  'edit_item' => __( 'Edit League Table', 'sportspress' ),
465
  'new_item' => __( 'New', 'sportspress' ),
466
+ 'view_item' => __( 'View League Table', 'sportspress' ),
467
  'search_items' => __( 'Search', 'sportspress' ),
468
  'not_found' => __( 'No results found.', 'sportspress' ),
469
  'not_found_in_trash' => __( 'No results found.', 'sportspress' ),
485
  )
486
  );
487
 
488
+ register_post_type( 'sp_player',
489
+ apply_filters( 'sportspress_register_post_type_player',
490
+ array(
491
+ 'labels' => array(
492
+ 'name' => __( 'Players', 'sportspress' ),
493
+ 'singular_name' => __( 'Player', 'sportspress' ),
494
+ 'add_new_item' => __( 'Add New Player', 'sportspress' ),
495
+ 'edit_item' => __( 'Edit Player', 'sportspress' ),
496
+ 'new_item' => __( 'New', 'sportspress' ),
497
+ 'view_item' => __( 'View Player', 'sportspress' ),
498
+ 'search_items' => __( 'Search', 'sportspress' ),
499
+ 'not_found' => __( 'No results found.', 'sportspress' ),
500
+ 'not_found_in_trash' => __( 'No results found.', 'sportspress' ),
501
+ ),
502
+ 'public' => true,
503
+ 'show_ui' => true,
504
+ 'capability_type' => 'sp_player',
505
+ 'map_meta_cap' => true,
506
+ 'publicly_queryable' => true,
507
+ 'exclude_from_search' => false,
508
+ 'hierarchical' => false,
509
+ 'rewrite' => array( 'slug' => get_option( 'sportspress_player_slug', 'player' ) ),
510
+ 'supports' => array( 'title', 'author', 'thumbnail', 'excerpt', 'page-attributes' ),
511
+ 'has_archive' => false,
512
+ 'show_in_nav_menus' => true,
513
+ 'menu_icon' => 'dashicons-groups',
 
 
514
  )
515
+ )
516
+ );
517
 
518
+ register_post_type( 'sp_list',
519
+ apply_filters( 'sportspress_register_post_type_list',
520
+ array(
521
+ 'labels' => array(
522
+ 'name' => __( 'Player Lists', 'sportspress' ),
523
+ 'singular_name' => __( 'Player List', 'sportspress' ),
524
+ 'add_new_item' => __( 'Add New Player List', 'sportspress' ),
525
+ 'edit_item' => __( 'Edit Player List', 'sportspress' ),
526
+ 'new_item' => __( 'New', 'sportspress' ),
527
+ 'view_item' => __( 'View Player List', 'sportspress' ),
528
+ 'search_items' => __( 'Search', 'sportspress' ),
529
+ 'not_found' => __( 'No results found.', 'sportspress' ),
530
+ 'not_found_in_trash' => __( 'No results found.', 'sportspress' ),
531
+ ),
532
+ 'public' => true,
533
+ 'show_ui' => true,
534
+ 'capability_type' => 'sp_list',
535
+ 'map_meta_cap' => true,
536
+ 'publicly_queryable' => true,
537
+ 'exclude_from_search' => false,
538
+ 'hierarchical' => false,
539
+ 'rewrite' => array( 'slug' => get_option( 'sportspress_list_slug', 'list' ) ),
540
+ 'supports' => array( 'title', 'page-attributes', 'author', 'thumbnail' ),
541
+ 'has_archive' => false,
542
+ 'show_in_nav_menus' => true,
543
+ 'show_in_menu' => 'edit.php?post_type=sp_player',
544
+ 'show_in_admin_bar' => true,
 
545
  )
546
+ )
547
+ );
548
 
549
+ register_post_type( 'sp_staff',
550
+ apply_filters( 'sportspress_register_post_type_staff',
551
+ array(
552
+ 'labels' => array(
553
+ 'name' => __( 'Staff', 'sportspress' ),
554
+ 'singular_name' => __( 'Staff', 'sportspress' ),
555
+ 'add_new_item' => __( 'Add New Staff', 'sportspress' ),
556
+ 'edit_item' => __( 'Edit Staff', 'sportspress' ),
557
+ 'new_item' => __( 'New', 'sportspress' ),
558
+ 'view_item' => __( 'View Staff', 'sportspress' ),
559
+ 'search_items' => __( 'Search', 'sportspress' ),
560
+ 'not_found' => __( 'No results found.', 'sportspress' ),
561
+ 'not_found_in_trash' => __( 'No results found.', 'sportspress' ),
562
+ ),
563
+ 'public' => true,
564
+ 'show_ui' => true,
565
+ 'capability_type' => 'sp_staff',
566
+ 'map_meta_cap' => true,
567
+ 'publicly_queryable' => true,
568
+ 'exclude_from_search' => false,
569
+ 'hierarchical' => false,
570
+ 'rewrite' => array( 'slug' => get_option( 'sportspress_staff_slug', 'staff' ) ),
571
+ 'supports' => array( 'title', 'author', 'thumbnail', 'excerpt' ),
572
+ 'has_archive' => false,
573
+ 'show_in_nav_menus' => true,
574
+ 'show_in_menu' => 'edit.php?post_type=sp_player',
575
+ 'show_in_admin_bar' => true,
 
576
  )
577
+ )
578
+ );
579
  }
580
 
581
  public function display_scheduled_events( $posts ) {
includes/class-sp-shortcodes.php CHANGED
@@ -140,17 +140,6 @@ class SP_Shortcodes {
140
  return self::shortcode_wrapper( array( 'SP_Shortcode_Event_Blocks', 'output' ), $atts );
141
  }
142
 
143
- /**
144
- * Team columns shortcode.
145
- *
146
- * @access public
147
- * @param mixed $atts
148
- * @return string
149
- */
150
- public static function team_columns( $atts ) {
151
- return self::shortcode_wrapper( array( 'SP_Shortcode_Team_Columns', 'output' ), $atts );
152
- }
153
-
154
  /**
155
  * League table shortcode.
156
  *
140
  return self::shortcode_wrapper( array( 'SP_Shortcode_Event_Blocks', 'output' ), $atts );
141
  }
142
 
 
 
 
 
 
 
 
 
 
 
 
143
  /**
144
  * League table shortcode.
145
  *
includes/class-sp-staff.php CHANGED
@@ -5,7 +5,7 @@
5
  * The SportsPress staff class handles individual staff data.
6
  *
7
  * @class SP_Staff
8
- * @version 0.8
9
  * @package SportsPress/Classes
10
  * @category Class
11
  * @author ThemeBoy
@@ -21,4 +21,19 @@ class SP_Staff extends SP_Custom_Post {
21
  public function past_teams() {
22
  return get_post_meta( $this->ID, 'sp_past_team', false );
23
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  }
5
  * The SportsPress staff class handles individual staff data.
6
  *
7
  * @class SP_Staff
8
+ * @version 1.3
9
  * @package SportsPress/Classes
10
  * @category Class
11
  * @author ThemeBoy
21
  public function past_teams() {
22
  return get_post_meta( $this->ID, 'sp_past_team', false );
23
  }
24
+
25
+ /**
26
+ * Returns role
27
+ *
28
+ * @access public
29
+ * @return array
30
+ */
31
+ public function role() {
32
+ $roles = get_the_terms( $this->ID, 'sp_role' );
33
+ if ( $roles ):
34
+ return array_shift( $roles );
35
+ else:
36
+ return false;
37
+ endif;
38
+ }
39
  }
includes/class-sp-team.php CHANGED
@@ -5,7 +5,7 @@
5
  * The SportsPress team class handles individual team data.
6
  *
7
  * @class SP_Team
8
- * @version 1.2.3
9
  * @package SportsPress/Classes
10
  * @category Class
11
  * @author ThemeBoy
@@ -41,10 +41,9 @@ class SP_Team extends SP_Custom_Post {
41
  * @param bool $admin
42
  * @return array
43
  */
44
- public function columns( $league_id, $admin = false ) {
45
  $seasons = (array)get_the_terms( $this->ID, 'sp_season' );
46
  $columns = (array)get_post_meta( $this->ID, 'sp_columns', true );
47
- $leagues_seasons = sp_array_value( (array)get_post_meta( $this->ID, 'sp_leagues', true ), $league_id, array() );
48
 
49
  // Get labels from result variables
50
  $result_labels = (array)sp_get_var_labels( 'sp_result' );
@@ -62,6 +61,9 @@ class SP_Team extends SP_Custom_Post {
62
  endif;
63
  endforeach;
64
 
 
 
 
65
  $data = array();
66
 
67
  // Get all seasons populated with data where available
@@ -75,7 +77,7 @@ class SP_Team extends SP_Custom_Post {
75
 
76
  foreach ( $div_ids as $div_id ):
77
 
78
- $totals = array( 'eventsplayed' => 0, 'streak' => 0, 'last5' => null, 'last10' => null );
79
 
80
  foreach ( $result_labels as $key => $value ):
81
  $totals[ $key . 'for' ] = 0;
@@ -119,24 +121,34 @@ class SP_Team extends SP_Custom_Post {
119
  ),
120
  'tax_query' => array(
121
  'relation' => 'AND',
122
- array(
123
- 'taxonomy' => 'sp_league',
124
- 'field' => 'id',
125
- 'terms' => $league_id
126
- ),
127
- array(
128
- 'taxonomy' => 'sp_season',
129
- 'field' => 'id',
130
- 'terms' => $div_id
131
- ),
132
- )
133
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
134
  $events = get_posts( $args );
135
 
136
  foreach( $events as $event ):
137
  $results = (array)get_post_meta( $event->ID, 'sp_results', true );
 
 
 
138
  foreach ( $results as $team_id => $team_result ):
139
- foreach ( $team_result as $key => $value ):
140
  if ( $team_id == $this->ID ):
141
  if ( $key == 'outcome' ):
142
 
@@ -149,8 +161,9 @@ class SP_Team extends SP_Custom_Post {
149
 
150
  // Increment events played and outcome count
151
  if ( array_key_exists( $outcome, $totals ) ):
152
- $totals['eventsplayed']++;
153
- $totals[ $outcome ]++;
 
154
  endif;
155
 
156
  if ( $outcome && $outcome != '-1' ):
@@ -189,7 +202,7 @@ class SP_Team extends SP_Custom_Post {
189
  endif;
190
  endif;
191
  endif;
192
- endforeach;
193
  endforeach;
194
  endforeach;
195
 
@@ -227,41 +240,7 @@ class SP_Team extends SP_Custom_Post {
227
  // Get columns from column variables
228
  $columns = sp_get_var_labels( 'sp_column' );
229
 
230
- // Merge the data and placeholders arrays
231
- $merged = array();
232
-
233
- foreach( $placeholders as $season_id => $season_data ):
234
-
235
- if ( ! sp_array_value( $leagues_seasons, $season_id, 0 ) )
236
- continue;
237
-
238
- $season_name = sp_array_value( $season_names, $season_id, '&nbsp;' );
239
-
240
- // Add season name to row
241
- $merged[ $season_id ] = array(
242
- 'name' => $season_name
243
- );
244
-
245
- foreach( $season_data as $key => $value ):
246
-
247
- // Use static data if key exists and value is not empty, else use placeholder
248
- if ( array_key_exists( $season_id, $data ) && array_key_exists( $key, $data[ $season_id ] ) && $data[ $season_id ][ $key ] != '' ):
249
- $merged[ $season_id ][ $key ] = $data[ $season_id ][ $key ];
250
- else:
251
- $merged[ $season_id ][ $key ] = $value;
252
- endif;
253
-
254
- endforeach;
255
-
256
- endforeach;
257
-
258
- if ( $admin ):
259
- return array( $columns, $data, $placeholders, $merged, $leagues_seasons );
260
- else:
261
- $labels = array_merge( array( 'name' => __( 'Season', 'sportspress' ) ), $columns );
262
- $merged[0] = $labels;
263
- return $merged;
264
- endif;
265
  }
266
 
267
  /**
@@ -297,4 +276,38 @@ class SP_Team extends SP_Custom_Post {
297
  return $lists;
298
  endif;
299
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
300
  }
5
  * The SportsPress team class handles individual team data.
6
  *
7
  * @class SP_Team
8
+ * @version 1.3
9
  * @package SportsPress/Classes
10
  * @category Class
11
  * @author ThemeBoy
41
  * @param bool $admin
42
  * @return array
43
  */
44
+ public function columns( $league_id ) {
45
  $seasons = (array)get_the_terms( $this->ID, 'sp_season' );
46
  $columns = (array)get_post_meta( $this->ID, 'sp_columns', true );
 
47
 
48
  // Get labels from result variables
49
  $result_labels = (array)sp_get_var_labels( 'sp_result' );
61
  endif;
62
  endforeach;
63
 
64
+ $div_ids[] = 0;
65
+ $season_names[ 0 ] = __( 'Total', 'sportspress' );
66
+
67
  $data = array();
68
 
69
  // Get all seasons populated with data where available
77
 
78
  foreach ( $div_ids as $div_id ):
79
 
80
+ $totals = array( 'eventsplayed' => 0, 'eventminutes' => 0, 'streak' => 0, 'last5' => null, 'last10' => null );
81
 
82
  foreach ( $result_labels as $key => $value ):
83
  $totals[ $key . 'for' ] = 0;
121
  ),
122
  'tax_query' => array(
123
  'relation' => 'AND',
124
+ ),
 
 
 
 
 
 
 
 
 
 
125
  );
126
+
127
+ if ( $league_id ):
128
+ $args['tax_query'][] = array(
129
+ 'taxonomy' => 'sp_league',
130
+ 'field' => 'id',
131
+ 'terms' => $league_id
132
+ );
133
+ endif;
134
+
135
+ if ( $div_id ):
136
+ $args['tax_query'][] = array(
137
+ 'taxonomy' => 'sp_season',
138
+ 'field' => 'id',
139
+ 'terms' => $div_id
140
+ );
141
+ endif;
142
+
143
  $events = get_posts( $args );
144
 
145
  foreach( $events as $event ):
146
  $results = (array)get_post_meta( $event->ID, 'sp_results', true );
147
+ $minutes = get_post_meta( $event->ID, 'sp_minutes', true );
148
+ if ( $minutes === '' ) $minutes = get_option( 'sportspress_event_minutes', 90 );
149
+
150
  foreach ( $results as $team_id => $team_result ):
151
+ if ( is_array( $team_result ) ): foreach ( $team_result as $key => $value ):
152
  if ( $team_id == $this->ID ):
153
  if ( $key == 'outcome' ):
154
 
161
 
162
  // Increment events played and outcome count
163
  if ( array_key_exists( $outcome, $totals ) ):
164
+ $totals['eventsplayed'] ++;
165
+ $totals['eventminutes'] += $minutes;
166
+ $totals[ $outcome ] ++;
167
  endif;
168
 
169
  if ( $outcome && $outcome != '-1' ):
202
  endif;
203
  endif;
204
  endif;
205
+ endforeach; endif;
206
  endforeach;
207
  endforeach;
208
 
240
  // Get columns from column variables
241
  $columns = sp_get_var_labels( 'sp_column' );
242
 
243
+ return array( $columns, $data, $placeholders );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  }
245
 
246
  /**
276
  return $lists;
277
  endif;
278
  }
279
+
280
+ /**
281
+ * Returns league tables
282
+ *
283
+ * @access public
284
+ * @return array
285
+ */
286
+ public function tables( $admin = false ) {
287
+ if ( ! $this->ID ) return null;
288
+
289
+ $args = array(
290
+ 'post_type' => 'sp_table',
291
+ 'numberposts' => -1,
292
+ 'posts_per_page' => -1,
293
+ 'orderby' => 'menu_order',
294
+ 'order' => 'ASC',
295
+ 'meta_key' => 'sp_team',
296
+ 'meta_value' => $this->ID,
297
+ );
298
+ $tables = get_posts( $args );
299
+
300
+ $checked = (array) get_post_meta( $this->ID, 'sp_table' );
301
+
302
+ if ( $admin ):
303
+ return array( $tables, $checked );
304
+ else:
305
+ foreach ( $tables as $key => $table ):
306
+ if ( ! in_array( $table->ID, $checked ) ):
307
+ unset( $tables[ $key ] );
308
+ endif;
309
+ endforeach;
310
+ return $tables;
311
+ endif;
312
+ }
313
  }
includes/class-sp-wpml.php CHANGED
@@ -5,7 +5,7 @@
5
  * The SportsPress WPML class handles all WPML-related localization hooks.
6
  *
7
  * @class SP_WPML
8
- * @version 1.1.9
9
  * @package SportsPress/Classes
10
  * @category Class
11
  * @author ThemeBoy
@@ -20,44 +20,111 @@ if ( ! class_exists( 'SP_WPML' ) ) :
20
  */
21
  class SP_WPML {
22
 
 
 
23
  /**
24
  * Constructor.
25
  */
26
  public function __construct() {
 
27
  add_filter( 'the_title', array( $this, 'the_title' ), 5, 2 );
28
- add_filter( 'post_type_link', array( $this, 'post_type_link' ), 5, 2 );
 
 
 
 
 
 
29
  }
30
 
31
  public static function the_title( $title, $id = null ) {
32
- if ( self::can_localize( $id, get_post_type( $id ) ) ):
33
  // Get translated post ID
34
  $translated_id = icl_object_id( $id, 'any', false, ICL_LANGUAGE_CODE );
35
 
36
  if ( $translated_id ):
37
  $post = get_post( $translated_id );
38
- $title = $post->post_title;
39
  endif;
40
  endif;
41
 
42
  return $title;
43
  }
44
 
45
- public static function post_type_link( $url, $post ) {
46
- if ( self::can_localize( $post->ID, $post->post_type ) ):
 
 
 
 
 
47
  // Get translated post ID
48
- $translated_id = icl_object_id( $post->ID, 'any', false, ICL_LANGUAGE_CODE );
49
 
50
- if ( $translated_id ):
51
- $url .= '?lang=ja';
52
- //$url = get_permalink( $translated_id );
53
  endif;
54
  endif;
55
 
56
  return $url;
57
  }
58
 
59
- public static function can_localize( $id, $post_type ) {
60
- return ( function_exists( 'icl_object_id' ) && is_sp_post_type( $post_type ) && $id != get_the_ID() );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  }
62
  }
63
 
5
  * The SportsPress WPML class handles all WPML-related localization hooks.
6
  *
7
  * @class SP_WPML
8
+ * @version 1.3.2
9
  * @package SportsPress/Classes
10
  * @category Class
11
  * @author ThemeBoy
20
  */
21
  class SP_WPML {
22
 
23
+ var $languages = array();
24
+
25
  /**
26
  * Constructor.
27
  */
28
  public function __construct() {
29
+ $this->init();
30
  add_filter( 'the_title', array( $this, 'the_title' ), 5, 2 );
31
+ add_filter( 'post_type_link', array( $this, 'post_type_link' ), 5, 3 );
32
+ add_filter( 'icl_ls_languages', array( $this, 'ls' ) );
33
+ }
34
+
35
+ public function init() {
36
+ if ( function_exists( 'icl_get_languages' ) )
37
+ $this->languages = icl_get_languages();
38
  }
39
 
40
  public static function the_title( $title, $id = null ) {
41
+ if ( self::can_localize( $id, $id ) ):
42
  // Get translated post ID
43
  $translated_id = icl_object_id( $id, 'any', false, ICL_LANGUAGE_CODE );
44
 
45
  if ( $translated_id ):
46
  $post = get_post( $translated_id );
47
+ if ( $post ) $title = $post->post_title;
48
  endif;
49
  endif;
50
 
51
  return $title;
52
  }
53
 
54
+ public static function post_type_link( $url, $post = null, $leavename = false ) {
55
+ if ( self::can_localize( $post ) ):
56
+ if ( ! $post ) global $post;
57
+
58
+ // Get post ID
59
+ $id = $post->ID;
60
+
61
  // Get translated post ID
62
+ $translated_id = icl_object_id( $id, 'any', false, ICL_LANGUAGE_CODE );
63
 
64
+ if ( $translated_id && $translated_id != $id && get_the_ID() != $translated_id ):
65
+ return get_permalink( $translated_id, $leavename );
 
66
  endif;
67
  endif;
68
 
69
  return $url;
70
  }
71
 
72
+ public function ls( $languages ) {
73
+ if ( ! function_exists( 'icl_object_id' ) || ! is_singular( 'sp_event' ) ) return $languages;
74
+
75
+ // Get post ID
76
+ $id = get_the_ID();
77
+
78
+ if ( get_post_status( $id ) != 'future' ) return $languages;
79
+
80
+ $active_languages = array();
81
+
82
+ foreach ( $this->languages as $k => $v ):
83
+ global $wpdb;
84
+
85
+ // Get language code
86
+ $code = sp_array_value( $v, 'code' );
87
+
88
+ // Get URL
89
+ $translated_id = icl_object_id( $id, 'any', false, $code );
90
+ if ( ! $translated_id ) continue;
91
+ $url = get_permalink( $translated_id );
92
+
93
+ // Get native name;
94
+ $native_name = sp_array_value( $v, 'native_name' );
95
+
96
+ // Get encode URL
97
+ $encode_url = $wpdb->get_var($wpdb->prepare("SELECT encode_url FROM {$wpdb->prefix}icl_languages WHERE code=%s", $code));
98
+
99
+ // Get flag
100
+ $flag = $wpdb->get_row( "SELECT flag, from_template FROM {$wpdb->prefix}icl_flags WHERE lang_code='{$code}'" );
101
+ if ( $flag->from_template ) {
102
+ $wp_upload_dir = wp_upload_dir();
103
+ $flag_url = $wp_upload_dir[ 'baseurl' ] . '/flags/' . $flag->flag;
104
+ } else {
105
+ $flag_url = ICL_PLUGIN_URL . '/res/flags/' . $flag->flag;
106
+ }
107
+
108
+ // Add language
109
+ $active_languages[ $k ] = array_merge( $v, array(
110
+ 'language_code' => $code,
111
+ 'active' => ICL_LANGUAGE_CODE == $code ? '1' : 0,
112
+ 'translated_name' => $native_name,
113
+ 'encode_url' => $encode_url,
114
+ 'country_flag_url' => $flag_url,
115
+ 'url' => $url,
116
+ ) );
117
+ endforeach;
118
+
119
+ // Add if translations exist
120
+ if ( sizeof( $active_languages ) > 1 )
121
+ $languages = array_merge( $languages, $active_languages );
122
+
123
+ return $languages;
124
+ }
125
+
126
+ public static function can_localize( $post, $id = null ) {
127
+ return function_exists( 'icl_object_id' ) && is_sp_post_type( get_post_type( $post ) );
128
  }
129
  }
130
 
includes/sp-conditional-functions.php CHANGED
@@ -7,7 +7,7 @@
7
  * @author ThemeBoy
8
  * @category Core
9
  * @package SportsPress/Functions
10
- * @version 0.9
11
  */
12
 
13
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -34,6 +34,30 @@ if ( ! function_exists( 'sp_post_types' ) ) {
34
  }
35
  }
36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  /**
38
  * sp_config_types - Returns array of SP config types
39
  *
@@ -46,6 +70,38 @@ if ( ! function_exists( 'sp_config_types' ) ) {
46
  }
47
  }
48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  /**
50
  * is_sp_post_type - Returns true if post is SportsPress post type
51
  *
7
  * @author ThemeBoy
8
  * @category Core
9
  * @package SportsPress/Functions
10
+ * @version 1.3
11
  */
12
 
13
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
34
  }
35
  }
36
 
37
+ /**
38
+ * sp_primary_post_types - Returns array of SP primary post types
39
+ *
40
+ * @access public
41
+ * @return array
42
+ */
43
+ if ( ! function_exists( 'sp_primary_post_types' ) ) {
44
+ function sp_primary_post_types() {
45
+ return apply_filters( 'sportspress_primary_post_types', array( 'sp_event', 'sp_team', 'sp_player', 'sp_staff' ) );
46
+ }
47
+ }
48
+
49
+ /**
50
+ * sp_secondary_post_types - Returns array of SP secondary post types
51
+ *
52
+ * @access public
53
+ * @return array
54
+ */
55
+ if ( ! function_exists( 'sp_secondary_post_types' ) ) {
56
+ function sp_secondary_post_types() {
57
+ return apply_filters( 'sportspress_secondary_post_types', array_diff( sp_post_types(), sp_primary_post_types() ) );
58
+ }
59
+ }
60
+
61
  /**
62
  * sp_config_types - Returns array of SP config types
63
  *
70
  }
71
  }
72
 
73
+ /**
74
+ * sp_taxonomies - Returns array of SP taxonomies
75
+ *
76
+ * @access public
77
+ * @return array
78
+ */
79
+ if ( ! function_exists( 'sp_taxonomies' ) ) {
80
+ function sp_taxonomies() {
81
+ return apply_filters( 'sportspress_terms', array( 'sp_league', 'sp_season', 'sp_venue', 'sp_position' ) );
82
+ }
83
+ }
84
+
85
+ /**
86
+ * sp_post_type_hierarchy - Returns array of SP primary post types
87
+ *
88
+ * @access public
89
+ * @return array
90
+ */
91
+ if ( ! function_exists( 'sp_post_type_hierarchy' ) ) {
92
+ function sp_post_type_hierarchy() {
93
+ return apply_filters(
94
+ 'sportspress_post_type_hierarchy',
95
+ array(
96
+ 'sp_event' => array( 'sp_calendar' ),
97
+ 'sp_team' => array( 'sp_table' ),
98
+ 'sp_player' => array( 'sp_list' ),
99
+ 'sp_staff' => array()
100
+ )
101
+ );
102
+ }
103
+ }
104
+
105
  /**
106
  * is_sp_post_type - Returns true if post is SportsPress post type
107
  *
includes/sp-core-functions.php CHANGED
@@ -7,7 +7,7 @@
7
  * @author ThemeBoy
8
  * @category Core
9
  * @package SportsPress/Functions
10
- * @version 1.2.6
11
  */
12
 
13
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -560,6 +560,7 @@ if ( !function_exists( 'sp_dropdown_pages' ) ) {
560
  'property' => null,
561
  'placeholder' => null,
562
  'chosen' => false,
 
563
  );
564
  $args = array_merge( $defaults, $args );
565
 
@@ -586,6 +587,9 @@ if ( !function_exists( 'sp_dropdown_pages' ) ) {
586
 
587
  $chosen = $args['chosen'];
588
  unset( $args['chosen'] );
 
 
 
589
 
590
  $posts = get_posts( $args );
591
  if ( $posts || $args['prepend_options'] || $args['append_options'] ):
@@ -623,7 +627,17 @@ if ( !function_exists( 'sp_dropdown_pages' ) ) {
623
  $selected_prop = selected( $this_value, $selected, false );
624
  endif;
625
 
626
- printf( '<option value="%s" %s>%s</option>', $this_value, $selected_prop, $post->post_title . ( $args['show_dates'] ? ' (' . $post->post_date . ')' : '' ) );
 
 
 
 
 
 
 
 
 
 
627
  endforeach;
628
  wp_reset_postdata();
629
 
@@ -679,7 +693,7 @@ if ( !function_exists( 'sp_posts' ) ) {
679
  }
680
 
681
  if ( !function_exists( 'sp_post_checklist' ) ) {
682
- function sp_post_checklist( $post_id = null, $meta = 'post', $display = 'block', $filter = null, $index = null ) {
683
  if ( ! isset( $post_id ) )
684
  global $post_id;
685
  ?>
@@ -690,46 +704,46 @@ if ( !function_exists( 'sp_post_checklist' ) ) {
690
  <?php
691
  $selected = sp_array_between( (array)get_post_meta( $post_id, $meta, false ), 0, $index );
692
  if ( empty( $posts ) ):
693
- $query = array( 'post_type' => $meta, 'numberposts' => -1, 'post_per_page' => -1, 'tax_query' => array( 'relation' => 'AND' ) );
694
  if ( $meta == 'sp_player' ):
695
  $query['meta_key'] = 'sp_number';
696
  $query['orderby'] = 'meta_value_num';
697
  $query['order'] = 'ASC';
698
  endif;
699
-
700
- // Filter by league and season when available
701
- $league = sp_get_the_term_id( $post_id, 'sp_league', 0 );
702
- if ( $league ):
703
- $query['tax_query'][] = array(
704
- 'taxonomy' => 'sp_league',
705
- 'field' => 'id',
706
- 'terms' => $league
707
- );
708
- endif;
709
- $season = sp_get_the_term_id( $post_id, 'sp_season', 0 );
710
- if ( $season ):
711
- $query['tax_query'][] = array(
712
- 'taxonomy' => 'sp_season',
713
- 'field' => 'id',
714
- 'terms' => $season
715
- );
716
- endif;
717
-
718
  $posts = get_posts( $query );
719
  endif;
720
  foreach ( $posts as $post ):
721
  $parents = get_post_ancestors( $post );
722
- if ( $filter ):
723
- $filter_values = (array)get_post_meta( $post->ID, $filter, false );
724
- $terms = (array)get_the_terms( $post->ID, 'sp_season' );
725
- foreach ( $terms as $term ):
726
- if ( is_object( $term ) && property_exists( $term, 'term_id' ) )
727
- $filter_values[] = $term->term_id;
728
- endforeach;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
729
  endif;
730
  ?>
731
  <li class="sp-post sp-filter-0<?php
732
- if ( $filter ):
733
  foreach ( $filter_values as $filter_value ):
734
  echo ' sp-filter-' . $filter_value;
735
  endforeach;
@@ -882,14 +896,14 @@ if ( !function_exists( 'sp_post_adder' ) ) {
882
  }
883
 
884
  if ( !function_exists( 'sp_taxonomy_adder' ) ) {
885
- function sp_taxonomy_adder( $taxonomy = 'category', $post_type = 'post', $label = null ) {
886
  $obj = get_taxonomy( $taxonomy );
887
  if ( $label == null )
888
  $label = __( 'Add New', 'sportspress' );
889
  ?>
890
  <div id="<?php echo $taxonomy; ?>-adder">
891
  <h4>
892
- <a title="<?php echo esc_attr( $label ); ?>" href="<?php echo admin_url( 'edit-tags.php?taxonomy=' . $taxonomy . '&post_type=' . $post_type ); ?>" target="_blank">
893
  + <?php echo $label; ?>
894
  </a>
895
  </h4>
@@ -1054,8 +1068,8 @@ if ( !function_exists( 'sp_get_next_event' ) ) {
1054
  'meta_query' => $args,
1055
  );
1056
  $posts = get_posts( $options );
1057
- $post = array_pop( $posts );
1058
- return $post;
1059
  }
1060
  }
1061
 
@@ -1066,19 +1080,25 @@ if ( !function_exists( 'sp_get_next_event' ) ) {
1066
  function sp_get_text_options() {
1067
  $strings = apply_filters( 'sportspress_text', array(
1068
  __( 'Article', 'sportspress' ),
 
1069
  __( 'Date', 'sportspress' ),
1070
  __( 'Details', 'sportspress' ),
1071
  __( 'Event', 'sportspress' ),
1072
  __( 'League', 'sportspress' ),
1073
  __( 'Nationality', 'sportspress' ),
1074
  __( 'Outcome', 'sportspress' ),
 
1075
  __( 'Played', 'sportspress' ),
 
1076
  __( 'Pos', 'sportspress' ),
 
1077
  __( 'Preview', 'sportspress' ),
1078
  __( 'Rank', 'sportspress' ),
1079
  __( 'Recap', 'sportspress' ),
1080
  __( 'Team Results', 'sportspress' ),
1081
  __( 'Season', 'sportspress' ),
 
 
1082
  __( 'Team', 'sportspress' ),
1083
  __( 'Teams', 'sportspress' ),
1084
  __( 'Time', 'sportspress' ),
@@ -1086,21 +1106,20 @@ function sp_get_text_options() {
1086
  __( 'Total', 'sportspress' ),
1087
  __( 'Venue', 'sportspress' ),
1088
  __( 'View all events', 'sportspress' ),
 
1089
  __( 'View full table', 'sportspress' ),
1090
  ));
1091
-
1092
- if ( SP()->mode == 'team' ):
1093
- $strings = array_merge( $strings, array(
1094
- __( 'Current Team', 'sportspress' ),
1095
- __( 'Past Teams', 'sportspress' ),
1096
- __( 'Player', 'sportspress' ),
1097
- __( 'Position', 'sportspress' ),
1098
- __( 'Staff', 'sportspress' ),
1099
- __( 'Substitutes', 'sportspress' ),
1100
- __( 'View all players', 'sportspress' ),
1101
- ));
1102
- endif;
1103
 
1104
  asort( $strings );
1105
- return $strings;
 
 
 
 
 
 
 
 
 
 
1106
  }
7
  * @author ThemeBoy
8
  * @category Core
9
  * @package SportsPress/Functions
10
+ * @version 1.3.2
11
  */
12
 
13
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
560
  'property' => null,
561
  'placeholder' => null,
562
  'chosen' => false,
563
+ 'filter' => false,
564
  );
565
  $args = array_merge( $defaults, $args );
566
 
587
 
588
  $chosen = $args['chosen'];
589
  unset( $args['chosen'] );
590
+
591
+ $filter = $args['filter'];
592
+ unset( $args['filter'] );
593
 
594
  $posts = get_posts( $args );
595
  if ( $posts || $args['prepend_options'] || $args['append_options'] ):
627
  $selected_prop = selected( $this_value, $selected, false );
628
  endif;
629
 
630
+ if ( $filter !== false ):
631
+ $class = 'sp-post sp-filter-0';
632
+ $filter_values = get_post_meta( $post->ID, $filter, false );
633
+ foreach ( $filter_values as $filter_value ):
634
+ $class .= ' sp-filter-' . $filter_value;
635
+ endforeach;
636
+ else:
637
+ $class = '';
638
+ endif;
639
+
640
+ printf( '<option value="%s" class="%s" %s>%s</option>', $this_value, $class, $selected_prop, $post->post_title . ( $args['show_dates'] ? ' (' . $post->post_date . ')' : '' ) );
641
  endforeach;
642
  wp_reset_postdata();
643
 
693
  }
694
 
695
  if ( !function_exists( 'sp_post_checklist' ) ) {
696
+ function sp_post_checklist( $post_id = null, $meta = 'post', $display = 'block', $filters = null, $index = null ) {
697
  if ( ! isset( $post_id ) )
698
  global $post_id;
699
  ?>
704
  <?php
705
  $selected = sp_array_between( (array)get_post_meta( $post_id, $meta, false ), 0, $index );
706
  if ( empty( $posts ) ):
707
+ $query = array( 'post_type' => $meta, 'numberposts' => -1, 'post_per_page' => -1 );
708
  if ( $meta == 'sp_player' ):
709
  $query['meta_key'] = 'sp_number';
710
  $query['orderby'] = 'meta_value_num';
711
  $query['order'] = 'ASC';
712
  endif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
713
  $posts = get_posts( $query );
714
  endif;
715
  foreach ( $posts as $post ):
716
  $parents = get_post_ancestors( $post );
717
+ if ( $filters ):
718
+ if ( is_array( $filters ) ):
719
+ $filter_values = array();
720
+ foreach ( $filters as $filter ):
721
+ if ( get_taxonomy( $filter ) ):
722
+ $terms = (array)get_the_terms( $post->ID, $filter );
723
+ foreach ( $terms as $term ):
724
+ if ( is_object( $term ) && property_exists( $term, 'term_id' ) )
725
+ $filter_values[] = $term->term_id;
726
+ endforeach;
727
+ else:
728
+ $filter_values = array_merge( $filter_values, (array)get_post_meta( $post->ID, $filter, false ) );
729
+ endif;
730
+ endforeach;
731
+ else:
732
+ $filter = $filters;
733
+ if ( get_taxonomy( $filter ) ):
734
+ $terms = (array)get_the_terms( $post->ID, $filter );
735
+ foreach ( $terms as $term ):
736
+ if ( is_object( $term ) && property_exists( $term, 'term_id' ) )
737
+ $filter_values[] = $term->term_id;
738
+ endforeach;
739
+ else:
740
+ $filter_values = (array)get_post_meta( $post->ID, $filter, false );
741
+ endif;
742
+ endif;
743
  endif;
744
  ?>
745
  <li class="sp-post sp-filter-0<?php
746
+ if ( $filters ):
747
  foreach ( $filter_values as $filter_value ):
748
  echo ' sp-filter-' . $filter_value;
749
  endforeach;
896
  }
897
 
898
  if ( !function_exists( 'sp_taxonomy_adder' ) ) {
899
+ function sp_taxonomy_adder( $taxonomy = 'category', $post_type = null, $label = null ) {
900
  $obj = get_taxonomy( $taxonomy );
901
  if ( $label == null )
902
  $label = __( 'Add New', 'sportspress' );
903
  ?>
904
  <div id="<?php echo $taxonomy; ?>-adder">
905
  <h4>
906
+ <a title="<?php echo esc_attr( $label ); ?>" href="<?php echo admin_url( 'edit-tags.php?taxonomy=' . $taxonomy . ( $post_type ? '&post_type=' . $post_type : '' ) ); ?>" target="_blank">
907
  + <?php echo $label; ?>
908
  </a>
909
  </h4>
1068
  'meta_query' => $args,
1069
  );
1070
  $posts = get_posts( $options );
1071
+ if ( $posts && is_array( $posts ) ) return array_pop( $posts );
1072
+ else return false;
1073
  }
1074
  }
1075
 
1080
  function sp_get_text_options() {
1081
  $strings = apply_filters( 'sportspress_text', array(
1082
  __( 'Article', 'sportspress' ),
1083
+ __( 'Current Team', 'sportspress' ),
1084
  __( 'Date', 'sportspress' ),
1085
  __( 'Details', 'sportspress' ),
1086
  __( 'Event', 'sportspress' ),
1087
  __( 'League', 'sportspress' ),
1088
  __( 'Nationality', 'sportspress' ),
1089
  __( 'Outcome', 'sportspress' ),
1090
+ __( 'Past Teams', 'sportspress' ),
1091
  __( 'Played', 'sportspress' ),
1092
+ __( 'Player', 'sportspress' ),
1093
  __( 'Pos', 'sportspress' ),
1094
+ __( 'Position', 'sportspress' ),
1095
  __( 'Preview', 'sportspress' ),
1096
  __( 'Rank', 'sportspress' ),
1097
  __( 'Recap', 'sportspress' ),
1098
  __( 'Team Results', 'sportspress' ),
1099
  __( 'Season', 'sportspress' ),
1100
+ __( 'Staff', 'sportspress' ),
1101
+ __( 'Substitutes', 'sportspress' ),
1102
  __( 'Team', 'sportspress' ),
1103
  __( 'Teams', 'sportspress' ),
1104
  __( 'Time', 'sportspress' ),
1106
  __( 'Total', 'sportspress' ),
1107
  __( 'Venue', 'sportspress' ),
1108
  __( 'View all events', 'sportspress' ),
1109
+ __( 'View all players', 'sportspress' ),
1110
  __( 'View full table', 'sportspress' ),
1111
  ));
 
 
 
 
 
 
 
 
 
 
 
 
1112
 
1113
  asort( $strings );
1114
+ return array_unique( $strings );
1115
+ }
1116
+
1117
+ function sp_review_link() {
1118
+ ?>
1119
+ <p>
1120
+ <a href="http://wordpress.org/support/view/plugin-reviews/sportspress?rate=5#postform">
1121
+ <?php _e( 'Love SportsPress? Help spread the word by rating us 5★ on WordPress.org', 'sportspress' ); ?>
1122
+ </a>
1123
+ </p>
1124
+ <?php
1125
  }
includes/sp-template-functions.php CHANGED
@@ -7,7 +7,7 @@
7
  * @author ThemeBoy
8
  * @category Core
9
  * @package SportsPress/Functions
10
- * @version 1.1
11
  */
12
 
13
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -133,7 +133,7 @@ if ( ! function_exists( 'sportspress_output_event_performance' ) ) {
133
  * @return void
134
  */
135
  function sportspress_output_event_performance() {
136
- if ( SP()->mode == 'team' ) sp_get_template( 'event-performance.php' );
137
  }
138
  }
139
 
@@ -173,17 +173,17 @@ if ( ! function_exists( 'sportspress_output_team_link' ) ) {
173
  sp_get_template( 'team-link.php' );
174
  }
175
  }
176
- if ( ! function_exists( 'sportspress_output_team_columns' ) ) {
177
 
178
  /**
179
- * Output the team columns.
180
  *
181
  * @access public
182
- * @subpackage Team/Columns
183
  * @return void
184
  */
185
- function sportspress_output_team_columns() {
186
- sp_get_template( 'team-columns.php' );
187
  }
188
  }
189
  if ( ! function_exists( 'sportspress_output_team_lists' ) ) {
7
  * @author ThemeBoy
8
  * @category Core
9
  * @package SportsPress/Functions
10
+ * @version 1.3
11
  */
12
 
13
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
133
  * @return void
134
  */
135
  function sportspress_output_event_performance() {
136
+ sp_get_template( 'event-performance.php' );
137
  }
138
  }
139
 
173
  sp_get_template( 'team-link.php' );
174
  }
175
  }
176
+ if ( ! function_exists( 'sportspress_output_team_tables' ) ) {
177
 
178
  /**
179
+ * Output the team tables.
180
  *
181
  * @access public
182
+ * @subpackage Team/Tables
183
  * @return void
184
  */
185
+ function sportspress_output_team_tables() {
186
+ sp_get_template( 'team-tables.php' );
187
  }
188
  }
189
  if ( ! function_exists( 'sportspress_output_team_lists' ) ) {
includes/sp-template-hooks.php CHANGED
@@ -7,7 +7,7 @@
7
  * @author ThemeBoy
8
  * @category Core
9
  * @package SportsPress/Functions
10
- * @version 1.1.4
11
  */
12
 
13
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -50,11 +50,11 @@ add_action( 'sportspress_single_calendar_content', 'sportspress_output_br_tag',
50
  * Single Team Content
51
  *
52
  * @see sportspress_output_team_link()
53
- * @see sportspress_output_team_columns()
54
  * @see sportspress_output_team_lists()
55
  */
56
- add_action( 'sportspress_single_team_content', 'sportspress_output_team_columns', 20 );
57
- add_action( 'sportspress_single_team_content', 'sportspress_output_team_lists', 30 );
58
  add_action( 'sportspress_single_team_content', 'sportspress_output_br_tag', 100 );
59
 
60
  add_action( 'sportspress_after_single_team', 'sportspress_output_team_link', 10 );
@@ -114,22 +114,26 @@ function sportspress_the_title( $title, $id = null ) {
114
  $title = '<strong>' . $number . '</strong> ' . $title;
115
  endif;
116
  elseif ( is_singular( 'sp_staff' ) ):
117
- $role = get_post_meta( $id, 'sp_role', true );
118
- if ( $role != null ):
119
- $title = '<strong>' . $role . '</strong> ' . $title;
 
120
  endif;
121
  elseif ( is_singular( 'sp_event' ) && get_option( 'sportspress_event_show_logos', 'yes' ) == 'yes' ):
122
  $teams = get_post_meta( $id, 'sp_team' );
123
  $teams = array_filter( $teams );
124
  if ( $teams ):
125
- $title .= '<div class="sp-event-teams">';
126
- $delimiter = get_option( 'sportspress_event_teams_delimiter', 'vs' );
127
  $team_logos = array();
128
  foreach ( $teams as $team ):
129
  $team_logos[] = get_the_post_thumbnail( $team, 'sportspress-fit-icon' );
130
  endforeach;
131
- $title .= implode( ' ' . $delimiter . ' ', $team_logos );
132
- $title .= '</div>';
 
 
 
 
 
133
  endif;
134
  endif;
135
  endif;
@@ -153,6 +157,18 @@ function sportspress_gettext( $translated_text, $untranslated_text, $domain = nu
153
  case 'Slug':
154
  $translated_text = ( in_array( $typenow, array( 'sp_column', 'sp_statistic' ) ) ) ? __( 'Key', 'sportspress' ) : __( 'Variable', 'sportspress' );
155
  break;
 
 
 
 
 
 
 
 
 
 
 
 
156
  endswitch;
157
  endif;
158
 
7
  * @author ThemeBoy
8
  * @category Core
9
  * @package SportsPress/Functions
10
+ * @version 1.3
11
  */
12
 
13
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
50
  * Single Team Content
51
  *
52
  * @see sportspress_output_team_link()
53
+ * @see sportspress_output_team_tables()
54
  * @see sportspress_output_team_lists()
55
  */
56
+ add_action( 'sportspress_single_team_content', 'sportspress_output_team_lists', 20 );
57
+ add_action( 'sportspress_single_team_content', 'sportspress_output_team_tables', 30 );
58
  add_action( 'sportspress_single_team_content', 'sportspress_output_br_tag', 100 );
59
 
60
  add_action( 'sportspress_after_single_team', 'sportspress_output_team_link', 10 );
114
  $title = '<strong>' . $number . '</strong> ' . $title;
115
  endif;
116
  elseif ( is_singular( 'sp_staff' ) ):
117
+ $staff = new SP_Staff( $id );
118
+ $role = $staff->role();
119
+ if ( $role ):
120
+ $title = '<strong>' . $role->name . '</strong> ' . $title;
121
  endif;
122
  elseif ( is_singular( 'sp_event' ) && get_option( 'sportspress_event_show_logos', 'yes' ) == 'yes' ):
123
  $teams = get_post_meta( $id, 'sp_team' );
124
  $teams = array_filter( $teams );
125
  if ( $teams ):
 
 
126
  $team_logos = array();
127
  foreach ( $teams as $team ):
128
  $team_logos[] = get_the_post_thumbnail( $team, 'sportspress-fit-icon' );
129
  endforeach;
130
+ $team_logos = array_filter( $team_logos );
131
+ if ( ! empty( $team_logos ) ):
132
+ $title .= '<div class="sp-event-teams">';
133
+ $delimiter = get_option( 'sportspress_event_teams_delimiter', 'vs' );
134
+ $title .= implode( ' ' . $delimiter . ' ', $team_logos );
135
+ $title .= '</div>';
136
+ endif;
137
  endif;
138
  endif;
139
  endif;
157
  case 'Slug':
158
  $translated_text = ( in_array( $typenow, array( 'sp_column', 'sp_statistic' ) ) ) ? __( 'Key', 'sportspress' ) : __( 'Variable', 'sportspress' );
159
  break;
160
+ case 'Featured Image':
161
+ $translated_text = __( 'Icon', 'sportspress' );
162
+ break;
163
+ case 'Set Featured Image':
164
+ $translated_text = __( 'Select Icon', 'sportspress' );
165
+ break;
166
+ case 'Set featured image':
167
+ $translated_text = __( 'Add icon', 'sportspress' );
168
+ break;
169
+ case 'Remove featured image':
170
+ $translated_text = __( 'Remove icon', 'sportspress' );
171
+ break;
172
  endswitch;
173
  endif;
174
 
includes/widgets/class-sp-widget-countdown.php CHANGED
@@ -3,25 +3,27 @@ class SP_Widget_Countdown extends WP_Widget {
3
 
4
  function __construct() {
5
  $widget_ops = array('classname' => 'widget_countdown widget_sp_countdown', 'description' => __( 'A clock that counts down to an upcoming event.', 'sportspress' ) );
6
- parent::__construct('sp_countdown', __( 'SportsPress Countdown', 'sportspress' ), $widget_ops);
7
  }
8
 
9
  function widget( $args, $instance ) {
10
  extract($args);
11
  $title = apply_filters('widget_title', empty($instance['title']) ? null : $instance['title'], $instance, $this->id_base);
 
12
  $id = empty($instance['id']) ? null : $instance['id'];
13
  $show_venue = empty($instance['show_venue']) ? false : $instance['show_venue'];
14
  $show_league = empty($instance['show_league']) ? false : $instance['show_league'];
15
  echo $before_widget;
16
  if ( $title )
17
  echo $before_title . $title . $after_title;
18
- sp_get_template( 'countdown.php', array( 'id' => $id, 'show_venue' => $show_venue, 'show_league' => $show_league ) );
19
  echo $after_widget;
20
  }
21
 
22
  function update( $new_instance, $old_instance ) {
23
  $instance = $old_instance;
24
  $instance['title'] = strip_tags($new_instance['title']);
 
25
  $instance['id'] = intval($new_instance['id']);
26
  $instance['show_venue'] = intval($new_instance['show_venue']);
27
  $instance['show_league'] = intval($new_instance['show_league']);
@@ -30,8 +32,9 @@ class SP_Widget_Countdown extends WP_Widget {
30
  }
31
 
32
  function form( $instance ) {
33
- $instance = wp_parse_args( (array) $instance, array( 'title' => '', 'id' => '', 'show_venue' => false, 'show_league' => false ) );
34
  $title = strip_tags($instance['title']);
 
35
  $id = intval($instance['id']);
36
  $show_venue = intval($instance['show_venue']);
37
  $show_league = intval($instance['show_league']);
@@ -39,7 +42,24 @@ class SP_Widget_Countdown extends WP_Widget {
39
  <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title:', 'sportspress' ); ?></label>
40
  <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>
41
 
42
- <p><label for="<?php echo $this->get_field_id('id'); ?>"><?php printf( __( 'Select %s:', 'sportspress' ), __( 'Event', 'sportspress' ) ); ?></label>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  <?php
44
  $args = array(
45
  'post_type' => 'sp_event',
@@ -51,6 +71,7 @@ class SP_Widget_Countdown extends WP_Widget {
51
  'class' => 'widefat',
52
  'show_dates' => true,
53
  'post_status' => 'future',
 
54
  );
55
  if ( ! sp_dropdown_pages( $args ) ):
56
  sp_post_adder( 'sp_event', __( 'Add New', 'sportspress' ) );
3
 
4
  function __construct() {
5
  $widget_ops = array('classname' => 'widget_countdown widget_sp_countdown', 'description' => __( 'A clock that counts down to an upcoming event.', 'sportspress' ) );
6
+ parent::__construct('sp_countdown', __( 'Countdown', 'sportspress' ) . ' (' . __( 'SportsPress', 'sportspress' ) . ')', $widget_ops);
7
  }
8
 
9
  function widget( $args, $instance ) {
10
  extract($args);
11
  $title = apply_filters('widget_title', empty($instance['title']) ? null : $instance['title'], $instance, $this->id_base);
12
+ $team = empty($instance['team']) ? null : $instance['team'];
13
  $id = empty($instance['id']) ? null : $instance['id'];
14
  $show_venue = empty($instance['show_venue']) ? false : $instance['show_venue'];
15
  $show_league = empty($instance['show_league']) ? false : $instance['show_league'];
16
  echo $before_widget;
17
  if ( $title )
18
  echo $before_title . $title . $after_title;
19
+ sp_get_template( 'countdown.php', array( 'team' => $team, 'id' => $id, 'show_venue' => $show_venue, 'show_league' => $show_league ) );
20
  echo $after_widget;
21
  }
22
 
23
  function update( $new_instance, $old_instance ) {
24
  $instance = $old_instance;
25
  $instance['title'] = strip_tags($new_instance['title']);
26
+ $instance['team'] = intval($new_instance['team']);
27
  $instance['id'] = intval($new_instance['id']);
28
  $instance['show_venue'] = intval($new_instance['show_venue']);
29
  $instance['show_league'] = intval($new_instance['show_league']);
32
  }
33
 
34
  function form( $instance ) {
35
+ $instance = wp_parse_args( (array) $instance, array( 'title' => '', 'team' => '', 'id' => '', 'show_venue' => false, 'show_league' => false ) );
36
  $title = strip_tags($instance['title']);
37
+ $team = intval($instance['team']);
38
  $id = intval($instance['id']);
39
  $show_venue = intval($instance['show_venue']);
40
  $show_league = intval($instance['show_league']);
42
  <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title:', 'sportspress' ); ?></label>
43
  <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>
44
 
45
+ <p class="sp-dropdown-filter"><label for="<?php echo $this->get_field_id('team'); ?>"><?php printf( __( 'Select %s:', 'sportspress' ), __( 'Team', 'sportspress' ) ); ?></label>
46
+ <?php
47
+ $args = array(
48
+ 'post_type' => 'sp_team',
49
+ 'name' => $this->get_field_name('team'),
50
+ 'id' => $this->get_field_id('team'),
51
+ 'selected' => $team,
52
+ 'show_option_all' => __( 'All', 'sportspress' ),
53
+ 'values' => 'ID',
54
+ 'class' => 'widefat',
55
+ );
56
+ if ( ! sp_dropdown_pages( $args ) ):
57
+ sp_post_adder( 'sp_team', __( 'Add New', 'sportspress' ) );
58
+ endif;
59
+ ?>
60
+ </p>
61
+
62
+ <p class="sp-dropdown-target"><label for="<?php echo $this->get_field_id('id'); ?>"><?php printf( __( 'Select %s:', 'sportspress' ), __( 'Event', 'sportspress' ) ); ?></label>
63
  <?php
64
  $args = array(
65
  'post_type' => 'sp_event',
71
  'class' => 'widefat',
72
  'show_dates' => true,
73
  'post_status' => 'future',
74
+ 'filter' => 'sp_team',
75
  );
76
  if ( ! sp_dropdown_pages( $args ) ):
77
  sp_post_adder( 'sp_event', __( 'Add New', 'sportspress' ) );
includes/widgets/class-sp-widget-event-blocks.php CHANGED
@@ -3,7 +3,7 @@ class SP_Widget_Event_Blocks extends WP_Widget {
3
 
4
  function __construct() {
5
  $widget_ops = array('classname' => 'widget_sp_event_blocks', 'description' => __( 'A list of events.', 'sportspress' ) );
6
- parent::__construct('sp_event_blocks', __( 'SportsPress Event Blocks', 'sportspress' ), $widget_ops);
7
  }
8
 
9
  function widget( $args, $instance ) {
3
 
4
  function __construct() {
5
  $widget_ops = array('classname' => 'widget_sp_event_blocks', 'description' => __( 'A list of events.', 'sportspress' ) );
6
+ parent::__construct('sp_event_blocks', __( 'Event Blocks', 'sportspress' ) . ' (' . __( 'SportsPress', 'sportspress' ) . ')', $widget_ops);
7
  }
8
 
9
  function widget( $args, $instance ) {
includes/widgets/class-sp-widget-event-calendar.php CHANGED
@@ -3,7 +3,7 @@ class SP_Widget_Event_Calendar extends WP_Widget {
3
 
4
  function __construct() {
5
  $widget_ops = array('classname' => 'widget_calendar widget_sp_event_calendar', 'description' => __( 'A calendar of events.', 'sportspress' ) );
6
- parent::__construct('sp_event_calendar', __( 'SportsPress Event Calendar', 'sportspress' ), $widget_ops);
7
  }
8
 
9
  function widget( $args, $instance ) {
3
 
4
  function __construct() {
5
  $widget_ops = array('classname' => 'widget_calendar widget_sp_event_calendar', 'description' => __( 'A calendar of events.', 'sportspress' ) );
6
+ parent::__construct('sp_event_calendar', __( 'Event Calendar', 'sportspress' ) . ' (' . __( 'SportsPress', 'sportspress' ) . ')', $widget_ops);
7
  }
8
 
9
  function widget( $args, $instance ) {
includes/widgets/class-sp-widget-event-list.php CHANGED
@@ -3,7 +3,7 @@ class SP_Widget_Event_List extends WP_Widget {
3
 
4
  function __construct() {
5
  $widget_ops = array('classname' => 'widget_sp_event_list', 'description' => __( 'A list of events.', 'sportspress' ) );
6
- parent::__construct('sp_event_list', __( 'SportsPress Event List', 'sportspress' ), $widget_ops);
7
  }
8
 
9
  function widget( $args, $instance ) {
@@ -109,7 +109,6 @@ class SP_Widget_Event_List extends WP_Widget {
109
  <?php
110
  $the_columns = array(
111
  'event' => __( 'Event', 'sportspress' ),
112
- 'teams' => __( 'Teams', 'sportspress' ),
113
  'time' => __( 'Time', 'sportspress' ),
114
  'venue' => __( 'Venue', 'sportspress' ),
115
  'article' => __( 'Article', 'sportspress' ),
3
 
4
  function __construct() {
5
  $widget_ops = array('classname' => 'widget_sp_event_list', 'description' => __( 'A list of events.', 'sportspress' ) );
6
+ parent::__construct('sp_event_list', __( 'Event List', 'sportspress' ) . ' (' . __( 'SportsPress', 'sportspress' ) . ')', $widget_ops);
7
  }
8
 
9
  function widget( $args, $instance ) {
109
  <?php
110
  $the_columns = array(
111
  'event' => __( 'Event', 'sportspress' ),
 
112
  'time' => __( 'Time', 'sportspress' ),
113
  'venue' => __( 'Venue', 'sportspress' ),
114
  'article' => __( 'Article', 'sportspress' ),
includes/widgets/class-sp-widget-league-table.php CHANGED
@@ -3,7 +3,7 @@ class SP_Widget_League_Table extends WP_Widget {
3
 
4
  function __construct() {
5
  $widget_ops = array('classname' => 'widget_league_table widget_sp_league_table', 'description' => __( 'Display a league table.', 'sportspress' ) );
6
- parent::__construct('sp_league_table', __( 'SportsPress League Table', 'sportspress' ), $widget_ops);
7
  }
8
 
9
  function widget( $args, $instance ) {
3
 
4
  function __construct() {
5
  $widget_ops = array('classname' => 'widget_league_table widget_sp_league_table', 'description' => __( 'Display a league table.', 'sportspress' ) );
6
+ parent::__construct('sp_league_table', __( 'League Table', 'sportspress' ) . ' (' . __( 'SportsPress', 'sportspress' ) . ')', $widget_ops);
7
  }
8
 
9
  function widget( $args, $instance ) {
includes/widgets/class-sp-widget-player-gallery.php CHANGED
@@ -3,7 +3,7 @@ class SP_Widget_Player_Gallery extends WP_Widget {
3
 
4
  function __construct() {
5
  $widget_ops = array('classname' => 'widget_player_gallery widget_sp_player_gallery', 'description' => __( 'Display a gallery of players.', 'sportspress' ) );
6
- parent::__construct('sp_player_gallery', __( 'SportsPress Player Gallery', 'sportspress' ), $widget_ops);
7
  }
8
 
9
  function widget( $args, $instance ) {
@@ -11,6 +11,7 @@ class SP_Widget_Player_Gallery extends WP_Widget {
11
  $title = apply_filters('widget_title', empty($instance['title']) ? '' : $instance['title'], $instance, $this->id_base);
12
  $id = empty($instance['id']) ? null : $instance['id'];
13
  $number = empty($instance['number']) ? null : $instance['number'];
 
14
  $orderby = empty($instance['orderby']) ? 'default' : $instance['orderby'];
15
  $order = empty($instance['order']) ? 'ASC' : $instance['order'];
16
  $show_all_players_link = empty($instance['show_all_players_link']) ? false : $instance['show_all_players_link'];
@@ -19,7 +20,7 @@ class SP_Widget_Player_Gallery extends WP_Widget {
19
  if ( $title )
20
  echo $before_title . $title . $after_title;
21
  echo '<div id="sp_player_gallery_wrap">';
22
- sp_get_template( 'player-gallery.php', array( 'id' => $id, 'number' => $number, 'orderby' => $orderby , 'order' => $order, 'grouping' => 0, 'show_all_players_link' => $show_all_players_link, 'show_names_on_hover' => $show_names_on_hover ) );
23
  echo '</div>';
24
  echo $after_widget;
25
  }
@@ -29,6 +30,7 @@ class SP_Widget_Player_Gallery extends WP_Widget {
29
  $instance['title'] = strip_tags($new_instance['title']);
30
  $instance['id'] = intval($new_instance['id']);
31
  $instance['number'] = intval($new_instance['number']);
 
32
  $instance['orderby'] = strip_tags($new_instance['orderby']);
33
  $instance['order'] = strip_tags($new_instance['order']);
34
  $instance['show_all_players_link'] = $new_instance['show_all_players_link'];
@@ -38,10 +40,11 @@ class SP_Widget_Player_Gallery extends WP_Widget {
38
  }
39
 
40
  function form( $instance ) {
41
- $instance = wp_parse_args( (array) $instance, array( 'title' => '', 'id' => '', 'number' => 5, 'orderby' => 'default', 'order' => 'ASC', 'show_all_players_link' => true, 'show_names_on_hover' => false ) );
42
  $title = strip_tags($instance['title']);
43
  $id = intval($instance['id']);
44
  $number = intval($instance['number']);
 
45
  $orderby = strip_tags($instance['orderby']);
46
  $order = strip_tags($instance['order']);
47
  $show_all_players_link = $instance['show_all_players_link'];
@@ -69,6 +72,9 @@ class SP_Widget_Player_Gallery extends WP_Widget {
69
  <p><label for="<?php echo $this->get_field_id('number'); ?>"><?php _e( 'Number of players to show:', 'sportspress' ); ?></label>
70
  <input id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo esc_attr($number); ?>" size="3"></p>
71
 
 
 
 
72
  <p><label for="<?php echo $this->get_field_id('orderby'); ?>"><?php _e( 'Sort by:', 'sportspress' ); ?></label>
73
  <?php
74
  $args = array(
3
 
4
  function __construct() {
5
  $widget_ops = array('classname' => 'widget_player_gallery widget_sp_player_gallery', 'description' => __( 'Display a gallery of players.', 'sportspress' ) );
6
+ parent::__construct('sp_player_gallery', __( 'Player Gallery', 'sportspress' ) . ' (' . __( 'SportsPress', 'sportspress' ) . ')', $widget_ops);
7
  }
8
 
9
  function widget( $args, $instance ) {
11
  $title = apply_filters('widget_title', empty($instance['title']) ? '' : $instance['title'], $instance, $this->id_base);
12
  $id = empty($instance['id']) ? null : $instance['id'];
13
  $number = empty($instance['number']) ? null : $instance['number'];
14
+ $columns = empty($instance['columns']) ? null : $instance['columns'];
15
  $orderby = empty($instance['orderby']) ? 'default' : $instance['orderby'];
16
  $order = empty($instance['order']) ? 'ASC' : $instance['order'];
17
  $show_all_players_link = empty($instance['show_all_players_link']) ? false : $instance['show_all_players_link'];
20
  if ( $title )
21
  echo $before_title . $title . $after_title;
22
  echo '<div id="sp_player_gallery_wrap">';
23
+ sp_get_template( 'player-gallery.php', array( 'id' => $id, 'number' => $number, 'columns' => $columns, 'orderby' => $orderby , 'order' => $order, 'grouping' => 0, 'show_all_players_link' => $show_all_players_link, 'show_names_on_hover' => $show_names_on_hover ) );
24
  echo '</div>';
25
  echo $after_widget;
26
  }
30
  $instance['title'] = strip_tags($new_instance['title']);
31
  $instance['id'] = intval($new_instance['id']);
32
  $instance['number'] = intval($new_instance['number']);
33
+ $instance['columns'] = intval($new_instance['columns']);
34
  $instance['orderby'] = strip_tags($new_instance['orderby']);
35
  $instance['order'] = strip_tags($new_instance['order']);
36
  $instance['show_all_players_link'] = $new_instance['show_all_players_link'];
40
  }
41
 
42
  function form( $instance ) {
43
+ $instance = wp_parse_args( (array) $instance, array( 'title' => '', 'id' => '', 'number' => 5, 'columns' => 2, 'orderby' => 'default', 'order' => 'ASC', 'show_all_players_link' => true, 'show_names_on_hover' => false ) );
44
  $title = strip_tags($instance['title']);
45
  $id = intval($instance['id']);
46
  $number = intval($instance['number']);
47
+ $columns = intval($instance['columns']);
48
  $orderby = strip_tags($instance['orderby']);
49
  $order = strip_tags($instance['order']);
50
  $show_all_players_link = $instance['show_all_players_link'];
72
  <p><label for="<?php echo $this->get_field_id('number'); ?>"><?php _e( 'Number of players to show:', 'sportspress' ); ?></label>
73
  <input id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo esc_attr($number); ?>" size="3"></p>
74
 
75
+ <p><label for="<?php echo $this->get_field_id('columns'); ?>"><?php _e( 'Columns:', 'sportspress' ); ?></label>
76
+ <input id="<?php echo $this->get_field_id('columns'); ?>" name="<?php echo $this->get_field_name('columns'); ?>" type="text" value="<?php echo esc_attr($columns); ?>" size="3"></p>
77
+
78
  <p><label for="<?php echo $this->get_field_id('orderby'); ?>"><?php _e( 'Sort by:', 'sportspress' ); ?></label>
79
  <?php
80
  $args = array(
includes/widgets/class-sp-widget-player-list.php CHANGED
@@ -3,7 +3,7 @@ class SP_Widget_Player_list extends WP_Widget {
3
 
4
  function __construct() {
5
  $widget_ops = array('classname' => 'widget_player_list widget_sp_player_list', 'description' => __( 'Display a list of players.', 'sportspress' ) );
6
- parent::__construct('sp_player_list', __( 'SportsPress Player List', 'sportspress' ), $widget_ops);
7
  }
8
 
9
  function widget( $args, $instance ) {
3
 
4
  function __construct() {
5
  $widget_ops = array('classname' => 'widget_player_list widget_sp_player_list', 'description' => __( 'Display a list of players.', 'sportspress' ) );
6
+ parent::__construct('sp_player_list', __( 'Player List', 'sportspress' ) . ' (' . __( 'SportsPress', 'sportspress' ) . ')', $widget_ops);
7
  }
8
 
9
  function widget( $args, $instance ) {
languages/sportspress-ar.mo CHANGED
Binary file
languages/sportspress-ar.po CHANGED
@@ -1,125 +1,503 @@
1
- #
2
  # Translators:
3
- # Adame <social@adame.co>, 2014
4
  # karama89 <ahmad.karama@hotmail.com>, 2014
5
  # hushiea <hushiea@gmail.com>, 2014
6
  # Mustafa Mohammed <mustafamsy@gmail.com>, 2014
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: SportsPress\n"
10
- "POT-Creation-Date: 2014-06-23 22:09+1000\n"
11
- "PO-Revision-Date: 2014-06-23 22:09+1000\n"
12
  "Last-Translator: ThemeBoy <support@themeboy.com>\n"
13
- "Language-Team: Arabic (http://www.transifex.com/projects/p/sportspress/"
14
- "language/ar/)\n"
15
- "Language: ar\n"
16
  "MIME-Version: 1.0\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
- "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
20
- "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
21
  "X-Generator: Poedit 1.6.3\n"
22
  "X-Poedit-Basepath: ..\n"
23
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
24
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
25
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
26
- "X-Poedit-SourceCharset: UTF-8\n"
27
  "X-Poedit-SearchPath-0: .\n"
 
28
 
29
- #: sportspress.php:87 sportspress.php:96
30
  msgid "Cheatin&#8217; huh?"
31
  msgstr "&#8217;تحاول الغش؟"
32
 
33
- #: sportspress.php:139 includes/admin/class-sp-admin-menus.php:102
34
  msgid "Settings"
35
- msgstr "الإعدادات"
36
 
37
- #: sportspress.php:140
38
- msgid "Themes"
39
  msgstr ""
40
 
41
- #: sportspress.php:141
42
- msgid "Extensions"
43
  msgstr ""
44
 
45
- #: sportspress.php:326 includes/class-sp-post-types.php:464
46
- #: includes/admin/class-sp-admin-permalink-settings.php:32
47
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:51
48
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:44
49
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:120
50
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:168
51
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:103
52
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:58
53
- #: includes/admin/settings/class-sp-settings-events.php:93
54
- #: includes/admin/settings/class-sp-settings-players.php:25
55
- #: includes/admin/settings/class-sp-settings-players.php:54
56
- msgid "Players"
57
- msgstr "لاعبين"
58
 
59
- #: sportspress.php:328 includes/class-sp-install.php:160
60
- #: includes/class-sp-player-list.php:366 includes/class-sp-post-types.php:465
61
- #: includes/sp-core-functions.php:1068
62
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:62
63
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:50
64
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:134
65
- #: templates/event-performance.php:59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  msgid "Player"
67
  msgstr "الاعب"
68
 
69
- #: sportspress.php:330
70
- #: includes/admin/settings/class-sp-settings-players.php:86
71
- msgid "players"
72
- msgstr "اللاعبين"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
 
74
- #: sportspress.php:332 includes/class-sp-post-types.php:466
75
- #: includes/admin/class-sp-admin-welcome.php:250
76
- msgid "Add New Player"
77
- msgstr "أضف لاعب جديد"
 
78
 
79
- #: sportspress.php:334 includes/class-sp-post-types.php:467
80
- msgid "Edit Player"
81
- msgstr "تحرير لاعب"
 
82
 
83
- #: sportspress.php:336
84
- #: includes/admin/settings/class-sp-settings-players.php:39
85
- msgid "Player Options"
86
- msgstr "خيارات اللاعب"
 
87
 
88
- #: sportspress.php:338 includes/class-sp-post-types.php:281
89
- #: includes/class-sp-post-types.php:282
90
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:127
91
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:35
92
- #: includes/admin/settings/class-sp-settings-config.php:225
93
- #: includes/admin/views/html-admin-page-status.php:247
94
- msgid "Player Performance"
95
- msgstr "أداء اللاعب"
 
96
 
97
- #: sportspress.php:340 includes/sp-template-hooks.php:173
98
- msgid "Photo"
99
- msgstr "الصورة"
 
 
 
 
 
 
 
 
100
 
101
- #: sportspress.php:342 includes/sp-template-hooks.php:179
102
- msgid "Add photo"
103
- msgstr "إضافة صورة"
 
 
 
 
 
 
 
 
104
 
105
- #: sportspress.php:344 includes/sp-template-hooks.php:182
106
- msgid "Remove photo"
107
- msgstr "ازالة الصورة"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
 
109
- #: sportspress.php:346 includes/sp-template-hooks.php:176
110
- msgid "Select Photo"
111
- msgstr "اختيار الصورة"
 
 
 
 
112
 
113
- #: sportspress.php:348
114
- #, fuzzy
115
- msgid "Display photos"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
  msgstr "عرض الشعارات"
117
 
118
- #: sportspress.php:350
119
- #: includes/admin/settings/class-sp-settings-events.php:102
120
- #: includes/admin/settings/class-sp-settings-players.php:55
121
- msgid "Link players"
122
- msgstr "رابط اللاعبين"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
 
124
  #: includes/class-sp-countries.php:29
125
  msgid "Africa"
@@ -151,15 +529,15 @@ msgstr "أندورا"
151
 
152
  #: includes/class-sp-countries.php:39
153
  msgid "United Arab Emirates"
154
- msgstr "الإمارات العربية المتحدة"
155
 
156
  #: includes/class-sp-countries.php:40
157
  msgid "Afghanistan"
158
- msgstr "افغانستان"
159
 
160
  #: includes/class-sp-countries.php:41
161
  msgid "Antigua and Barbuda"
162
- msgstr "أنتيغوا وباربودا"
163
 
164
  #: includes/class-sp-countries.php:42
165
  msgid "Albania"
@@ -171,7 +549,7 @@ msgstr "أرمينيا"
171
 
172
  #: includes/class-sp-countries.php:44
173
  msgid "Angola"
174
- msgstr "أنغولا"
175
 
176
  #: includes/class-sp-countries.php:45
177
  msgid "Argentina"
@@ -195,11 +573,11 @@ msgstr "البوسنة والهرسك"
195
 
196
  #: includes/class-sp-countries.php:50
197
  msgid "Barbados"
198
- msgstr "باربادوس"
199
 
200
  #: includes/class-sp-countries.php:51
201
  msgid "Bangladesh"
202
- msgstr "بنغلاديش"
203
 
204
  #: includes/class-sp-countries.php:52
205
  msgid "Belgium"
@@ -239,7 +617,7 @@ msgstr "البرازيل"
239
 
240
  #: includes/class-sp-countries.php:61
241
  msgid "Bahamas"
242
- msgstr "البهاما"
243
 
244
  #: includes/class-sp-countries.php:62
245
  msgid "Bhutan"
@@ -247,11 +625,11 @@ msgstr "بوتان"
247
 
248
  #: includes/class-sp-countries.php:63
249
  msgid "Botswana"
250
- msgstr "بوتسوانا"
251
 
252
  #: includes/class-sp-countries.php:64
253
  msgid "Belarus"
254
- msgstr "بيلاروسيا"
255
 
256
  #: includes/class-sp-countries.php:65
257
  msgid "Belize"
@@ -267,11 +645,11 @@ msgstr "جمهورية الكونغو الديمقراطية"
267
 
268
  #: includes/class-sp-countries.php:68
269
  msgid "Central African Republic"
270
- msgstr "جمهورية أفريقيا الوسطى"
271
 
272
  #: includes/class-sp-countries.php:69
273
  msgid "Republic of the Congo"
274
- msgstr "الكونغو"
275
 
276
  #: includes/class-sp-countries.php:70
277
  msgid "Switzerland"
@@ -283,7 +661,7 @@ msgstr "ساحل العاج"
283
 
284
  #: includes/class-sp-countries.php:72
285
  msgid "Chile"
286
- msgstr "تشيلي"
287
 
288
  #: includes/class-sp-countries.php:73
289
  msgid "Cameroon"
@@ -327,7 +705,7 @@ msgstr "جيبوتي"
327
 
328
  #: includes/class-sp-countries.php:83
329
  msgid "Denmark"
330
- msgstr "الدنمارك"
331
 
332
  #: includes/class-sp-countries.php:84
333
  msgid "Dominica"
@@ -335,11 +713,11 @@ msgstr "دومينيكا"
335
 
336
  #: includes/class-sp-countries.php:85
337
  msgid "Dominican Republic"
338
- msgstr "جمهورية الدومينيكان"
339
 
340
  #: includes/class-sp-countries.php:86
341
  msgid "Algeria"
342
- msgstr "ألجيريا"
343
 
344
  #: includes/class-sp-countries.php:87
345
  msgid "Ecuador"
@@ -363,15 +741,15 @@ msgstr "أنجلترا"
363
 
364
  #: includes/class-sp-countries.php:92
365
  msgid "Eritrea"
366
- msgstr "إريتريا"
367
 
368
  #: includes/class-sp-countries.php:93
369
  msgid "Spain"
370
- msgstr "إسبانيا"
371
 
372
  #: includes/class-sp-countries.php:94
373
  msgid "Ethiopia"
374
- msgstr "أثيوبيا"
375
 
376
  #: includes/class-sp-countries.php:95
377
  msgid "Finland"
@@ -391,7 +769,7 @@ msgstr "فرنسا"
391
 
392
  #: includes/class-sp-countries.php:99
393
  msgid "Gabon"
394
- msgstr "الغابون"
395
 
396
  #: includes/class-sp-countries.php:100
397
  msgid "United Kingdom"
@@ -399,7 +777,7 @@ msgstr "المملكة المتحدة"
399
 
400
  #: includes/class-sp-countries.php:101
401
  msgid "Grenada"
402
- msgstr "غرينادا"
403
 
404
  #: includes/class-sp-countries.php:102
405
  msgid "Georgia"
@@ -423,11 +801,11 @@ msgstr "غينيا الاستوائية"
423
 
424
  #: includes/class-sp-countries.php:107
425
  msgid "Greece"
426
- msgstr "يونان"
427
 
428
  #: includes/class-sp-countries.php:108
429
  msgid "Guatemala"
430
- msgstr "غواتيمالا"
431
 
432
  #: includes/class-sp-countries.php:109
433
  msgid "Guinea-Bissau"
@@ -439,7 +817,7 @@ msgstr "غيانا"
439
 
440
  #: includes/class-sp-countries.php:111
441
  msgid "Hong Kong"
442
- msgstr "هونغ كونغ"
443
 
444
  #: includes/class-sp-countries.php:112
445
  msgid "Honduras"
@@ -455,11 +833,11 @@ msgstr "هايتي"
455
 
456
  #: includes/class-sp-countries.php:115
457
  msgid "Hungary"
458
- msgstr "هنغاريا"
459
 
460
  #: includes/class-sp-countries.php:116
461
  msgid "Indonesia"
462
- msgstr "أندونيسيا"
463
 
464
  #: includes/class-sp-countries.php:117
465
  msgid "Ireland"
@@ -467,7 +845,7 @@ msgstr "أيرلندا"
467
 
468
  #: includes/class-sp-countries.php:118
469
  msgid "Israel"
470
- msgstr "فلسطين المحتلة (إسرائيل)"
471
 
472
  #: includes/class-sp-countries.php:119
473
  msgid "India"
@@ -479,15 +857,15 @@ msgstr "العراق"
479
 
480
  #: includes/class-sp-countries.php:121
481
  msgid "Iran"
482
- msgstr "إيران"
483
 
484
  #: includes/class-sp-countries.php:122
485
  msgid "Iceland"
486
- msgstr "آيسلندا"
487
 
488
  #: includes/class-sp-countries.php:123
489
  msgid "Italy"
490
- msgstr "إيطاليا"
491
 
492
  #: includes/class-sp-countries.php:124
493
  msgid "Jamaica"
@@ -575,7 +953,7 @@ msgstr "ليتوانيا"
575
 
576
  #: includes/class-sp-countries.php:145
577
  msgid "Luxembourg"
578
- msgstr "لوكسمبورغ"
579
 
580
  #: includes/class-sp-countries.php:146
581
  msgid "Latvia"
@@ -595,7 +973,7 @@ msgstr "موناكو"
595
 
596
  #: includes/class-sp-countries.php:150
597
  msgid "Moldova"
598
- msgstr "مولدوفا"
599
 
600
  #: includes/class-sp-countries.php:151
601
  msgid "Montenegro"
@@ -607,7 +985,7 @@ msgstr "مدغشقر"
607
 
608
  #: includes/class-sp-countries.php:153
609
  msgid "Marshall Islands"
610
- msgstr "جزر مارشال"
611
 
612
  #: includes/class-sp-countries.php:154
613
  msgid "Macedonia"
@@ -619,7 +997,7 @@ msgstr "مالي"
619
 
620
  #: includes/class-sp-countries.php:156
621
  msgid "Burma"
622
- msgstr "بورما"
623
 
624
  #: includes/class-sp-countries.php:157
625
  msgid "Mongolia"
@@ -627,7 +1005,7 @@ msgstr "منغوليا"
627
 
628
  #: includes/class-sp-countries.php:158
629
  msgid "Macau"
630
- msgstr "ماكاو"
631
 
632
  #: includes/class-sp-countries.php:159
633
  msgid "Mauritania"
@@ -643,7 +1021,7 @@ msgstr "موريشيوس"
643
 
644
  #: includes/class-sp-countries.php:162
645
  msgid "Maldives"
646
- msgstr "جزر المالديف"
647
 
648
  #: includes/class-sp-countries.php:163
649
  msgid "Malawi"
@@ -679,7 +1057,7 @@ msgstr "نيجيريا"
679
 
680
  #: includes/class-sp-countries.php:171
681
  msgid "Nicaragua"
682
- msgstr "نيكاراغوا"
683
 
684
  #: includes/class-sp-countries.php:172
685
  msgid "Netherlands"
@@ -695,11 +1073,11 @@ msgstr "نيبال"
695
 
696
  #: includes/class-sp-countries.php:175
697
  msgid "Nauru"
698
- msgstr "ناورو"
699
 
700
  #: includes/class-sp-countries.php:176
701
  msgid "New Zealand"
702
- msgstr "نيوزيلندا"
703
 
704
  #: includes/class-sp-countries.php:177
705
  msgid "Oman"
@@ -707,7 +1085,7 @@ msgstr "عمان"
707
 
708
  #: includes/class-sp-countries.php:178
709
  msgid "Panama"
710
- msgstr "بناما"
711
 
712
  #: includes/class-sp-countries.php:179
713
  msgid "Peru"
@@ -719,7 +1097,7 @@ msgstr "بابوا غينيا الجديدة"
719
 
720
  #: includes/class-sp-countries.php:181
721
  msgid "Philippines"
722
- msgstr "الفلبين"
723
 
724
  #: includes/class-sp-countries.php:182
725
  msgid "Pakistan"
@@ -739,7 +1117,7 @@ msgstr "بالاو"
739
 
740
  #: includes/class-sp-countries.php:186
741
  msgid "Paraguay"
742
- msgstr "باراغواي"
743
 
744
  #: includes/class-sp-countries.php:187
745
  msgid "Qatar"
@@ -763,7 +1141,7 @@ msgstr "رواندا"
763
 
764
  #: includes/class-sp-countries.php:192
765
  msgid "Saudi Arabia"
766
- msgstr "السعودية"
767
 
768
  #: includes/class-sp-countries.php:193
769
  msgid "Solomon Islands"
@@ -771,7 +1149,7 @@ msgstr "جزر سليمان"
771
 
772
  #: includes/class-sp-countries.php:194
773
  msgid "Seychelles"
774
- msgstr "سيشيل"
775
 
776
  #: includes/class-sp-countries.php:195
777
  msgid "Sudan"
@@ -819,7 +1197,7 @@ msgstr "سورينام"
819
 
820
  #: includes/class-sp-countries.php:206
821
  msgid "Sao Tome and Principe"
822
- msgstr "سان تومي وبرينسيبي"
823
 
824
  #: includes/class-sp-countries.php:207
825
  msgid "El Salvador"
@@ -835,15 +1213,15 @@ msgstr "تشاد"
835
 
836
  #: includes/class-sp-countries.php:210
837
  msgid "Togo"
838
- msgstr "توغو"
839
 
840
  #: includes/class-sp-countries.php:211
841
  msgid "Thailand"
842
- msgstr "تايلاند"
843
 
844
  #: includes/class-sp-countries.php:212
845
  msgid "Tajikistan"
846
- msgstr "طاجيكستان"
847
 
848
  #: includes/class-sp-countries.php:213
849
  msgid "East Timor"
@@ -855,11 +1233,11 @@ msgstr "تركمانستان"
855
 
856
  #: includes/class-sp-countries.php:215
857
  msgid "Tunisia"
858
- msgstr "نونس"
859
 
860
  #: includes/class-sp-countries.php:216
861
  msgid "Tonga"
862
- msgstr "تونغا"
863
 
864
  #: includes/class-sp-countries.php:217
865
  msgid "Turkey"
@@ -879,7 +1257,7 @@ msgstr "تايوان"
879
 
880
  #: includes/class-sp-countries.php:221
881
  msgid "Tanzania"
882
- msgstr "تنزانيا"
883
 
884
  #: includes/class-sp-countries.php:222
885
  msgid "Ukraine"
@@ -891,11 +1269,11 @@ msgstr "أوغندا"
891
 
892
  #: includes/class-sp-countries.php:224
893
  msgid "United States"
894
- msgstr "الولايات المتحدة"
895
 
896
  #: includes/class-sp-countries.php:225
897
  msgid "Uruguay"
898
- msgstr "أوروغواي"
899
 
900
  #: includes/class-sp-countries.php:226
901
  msgid "Uzbekistan"
@@ -903,11 +1281,11 @@ msgstr "أوزبكستان"
903
 
904
  #: includes/class-sp-countries.php:227
905
  msgid "Vatican City"
906
- msgstr "مدينة الفاتيكان"
907
 
908
  #: includes/class-sp-countries.php:228
909
  msgid "Saint Vincent and the Grenadines"
910
- msgstr "سانت فنسنت وجزر غرينادين"
911
 
912
  #: includes/class-sp-countries.php:229
913
  msgid "Venezuela"
@@ -935,7 +1313,7 @@ msgstr "اليمن"
935
 
936
  #: includes/class-sp-countries.php:235
937
  msgid "South Africa"
938
- msgstr "جنوب أفريقيا"
939
 
940
  #: includes/class-sp-countries.php:236
941
  msgid "Zambia"
@@ -945,80 +1323,67 @@ msgstr "زامبيا"
945
  msgid "Zimbabwe"
946
  msgstr "زيمبابوي"
947
 
948
- #: includes/class-sp-event.php:43 includes/class-sp-post-types.php:192
949
- #: includes/sp-core-functions.php:1046
 
950
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-results.php:57
951
  msgid "Outcome"
952
  msgstr "يخرج"
953
 
954
- #: includes/class-sp-event.php:96 includes/class-sp-post-types.php:123
955
- #: includes/sp-core-functions.php:1069
956
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:67
957
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:70
958
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:77
 
959
  msgid "Position"
960
- msgstr "الموقع"
961
 
962
  #: includes/class-sp-formats.php:27 includes/class-sp-post-types.php:36
963
- #: includes/sp-core-functions.php:1044
964
- #: includes/admin/importers/class-sp-event-importer.php:458
965
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:48
966
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:94
967
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:111
968
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:48
969
- #: includes/admin/post-types/class-sp-admin-cpt-table.php:48
 
970
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:53
971
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:28
972
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:30
973
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:27
974
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:61
975
- #: templates/event-details.php:24
 
976
  msgid "League"
977
  msgstr "بطلولة"
978
 
979
  #: includes/class-sp-formats.php:28
980
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:114
981
  msgid "Friendly"
982
  msgstr "ودي"
983
 
984
- #: includes/class-sp-formats.php:31 includes/class-sp-post-types.php:372
985
- #: includes/widgets/class-sp-widget-event-blocks.php:51
986
- #: includes/widgets/class-sp-widget-event-calendar.php:44
987
- #: includes/widgets/class-sp-widget-event-list.php:54
988
- msgid "Calendar"
989
- msgstr "تقويم"
990
-
991
- #: includes/class-sp-formats.php:32 includes/class-sp-formats.php:36
992
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:55
993
- msgid "List"
994
- msgstr "قائمة"
995
-
996
- #: includes/class-sp-formats.php:33
997
- msgid "Blocks"
998
- msgstr ""
999
-
1000
- #: includes/class-sp-formats.php:37
1001
- msgid "Gallery"
1002
- msgstr "المكتبة"
1003
-
1004
  #: includes/class-sp-frontend-scripts.php:57
1005
- #: includes/admin/class-sp-admin-assets.php:113
1006
- #: includes/admin/class-sp-admin-dashboard.php:80 templates/countdown.php:64
1007
  msgid "days"
1008
  msgstr "أيام"
1009
 
1010
  #: includes/class-sp-frontend-scripts.php:57
1011
- #: includes/admin/class-sp-admin-assets.php:114 templates/countdown.php:65
1012
  msgid "hrs"
1013
  msgstr "hrs"
1014
 
1015
  #: includes/class-sp-frontend-scripts.php:57
1016
- #: includes/admin/class-sp-admin-assets.php:115 templates/countdown.php:66
 
 
 
1017
  msgid "mins"
1018
  msgstr "mins"
1019
 
1020
  #: includes/class-sp-frontend-scripts.php:57
1021
- #: includes/admin/class-sp-admin-assets.php:116 templates/countdown.php:67
1022
  msgid "secs"
1023
  msgstr "secs"
1024
 
@@ -1030,13 +1395,13 @@ msgstr "السابق"
1030
  msgid "Next"
1031
  msgstr "التالي"
1032
 
1033
- #: includes/class-sp-install.php:192 includes/class-sp-post-types.php:525
1034
- #: includes/class-sp-post-types.php:526 includes/sp-core-functions.php:1070
1035
  #: includes/admin/class-sp-admin-permalink-settings.php:35
1036
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:45
1037
- #: includes/admin/settings/class-sp-settings-events.php:110
1038
  #: includes/admin/settings/class-sp-settings-staff.php:25
1039
- #: templates/event-staff.php:41
1040
  msgid "Staff"
1041
  msgstr "الطاقم"
1042
 
@@ -1056,123 +1421,129 @@ msgstr "إدارة البطولة"
1056
  msgid "What's new:"
1057
  msgstr "الجديد:"
1058
 
1059
- #: includes/class-sp-league-table.php:319
1060
- #: includes/class-sp-player-list.php:351 includes/class-sp-player-list.php:368
1061
- #: includes/class-sp-player.php:312 includes/class-sp-player.php:335
1062
- #: includes/class-sp-post-types.php:403 includes/sp-core-functions.php:1054
1063
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:51
1064
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:50
1065
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:63
1066
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:98
1067
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-results.php:45
1068
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:53
1069
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:58
1070
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:66
1071
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:53
1072
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:114
1073
- #: includes/admin/settings/class-sp-settings-events.php:192
1074
- #: templates/event-results.php:93
 
1075
  msgid "Team"
1076
  msgstr "الفريق"
1077
 
1078
- #: includes/class-sp-player.php:333 includes/class-sp-post-types.php:65
1079
- #: includes/class-sp-team.php:255 includes/sp-core-functions.php:1053
1080
- #: includes/admin/importers/class-sp-event-importer.php:473
1081
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:49
1082
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:95
1083
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:49
1084
- #: includes/admin/post-types/class-sp-admin-cpt-table.php:49
 
 
 
 
 
 
 
 
 
 
 
 
 
1085
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:68
1086
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:45
1087
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:44
1088
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:63
1089
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:41
1090
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:68
1091
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:64
1092
- #: templates/event-details.php:29
 
1093
  msgid "Season"
1094
  msgstr "الموسم"
1095
 
1096
  #: includes/class-sp-post-types.php:35 includes/class-sp-post-types.php:49
1097
- #: includes/admin/class-sp-admin-menus.php:57
1098
- #: includes/admin/class-sp-admin-menus.php:248
1099
  #: includes/admin/class-sp-admin-permalink-settings.php:29
1100
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:67
1101
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:66
1102
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:66
 
 
 
1103
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:116
1104
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
1105
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:40
1106
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:93
1107
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:100
1108
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:45
 
1109
  #: includes/admin/views/html-admin-page-status.php:296
1110
  msgid "Leagues"
1111
  msgstr "بطولات"
1112
 
1113
- #: includes/class-sp-post-types.php:37 includes/class-sp-post-types.php:66
1114
- #: includes/class-sp-post-types.php:95 includes/class-sp-post-types.php:124
1115
- #: includes/sp-core-functions.php:388 includes/sp-core-functions.php:419
1116
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:57
1117
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:72
1118
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:87
1119
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:102
1120
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:64
1121
- #: includes/widgets/class-sp-widget-event-blocks.php:55
1122
- #: includes/widgets/class-sp-widget-event-calendar.php:48
1123
- #: includes/widgets/class-sp-widget-event-list.php:58
1124
- msgid "All"
1125
- msgstr "كافة"
1126
-
1127
  #: includes/class-sp-post-types.php:38
1128
  msgid "Edit League"
1129
  msgstr "تحرير البطولة"
1130
 
1131
  #: includes/class-sp-post-types.php:39 includes/class-sp-post-types.php:68
1132
  #: includes/class-sp-post-types.php:97 includes/class-sp-post-types.php:126
1133
- #: includes/class-sp-post-types.php:166 includes/class-sp-post-types.php:196
1134
- #: includes/class-sp-post-types.php:226 includes/class-sp-post-types.php:256
1135
- #: includes/class-sp-post-types.php:286 includes/class-sp-post-types.php:316
1136
- #: includes/class-sp-post-types.php:346 includes/class-sp-post-types.php:376
1137
- #: includes/class-sp-post-types.php:407 includes/class-sp-post-types.php:437
1138
- #: includes/class-sp-post-types.php:469 includes/class-sp-post-types.php:499
1139
- #: includes/class-sp-post-types.php:530
1140
  msgid "View"
1141
  msgstr "عرض"
1142
 
1143
  #: includes/class-sp-post-types.php:40 includes/class-sp-post-types.php:69
1144
  #: includes/class-sp-post-types.php:98 includes/class-sp-post-types.php:127
 
1145
  msgid "Update"
1146
  msgstr "تحديث"
1147
 
1148
  #: includes/class-sp-post-types.php:41 includes/class-sp-post-types.php:70
1149
  #: includes/class-sp-post-types.php:99 includes/class-sp-post-types.php:128
1150
- #: includes/sp-core-functions.php:848 includes/sp-core-functions.php:865
1151
- #: includes/admin/class-sp-admin-menus.php:244
1152
- #: includes/admin/importers/class-sp-event-importer.php:468
1153
- #: includes/admin/importers/class-sp-event-importer.php:483
 
1154
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:64
1155
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:79
1156
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:94
1157
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:109
1158
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:39
1159
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:56
1160
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:73
1161
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:40
1162
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:54
1163
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:69
1164
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:106
1165
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-metrics.php:42
1166
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:37
1167
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:51
1168
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:58
1169
- #: includes/admin/settings/class-sp-settings-config.php:125
1170
- #: includes/admin/settings/class-sp-settings-config.php:198
1171
- #: includes/admin/settings/class-sp-settings-config.php:250
1172
- #: includes/admin/settings/class-sp-settings-config.php:308
1173
- #: includes/admin/settings/class-sp-settings-config.php:361
1174
- #: includes/admin/settings/class-sp-settings-config.php:417
1175
- #: includes/widgets/class-sp-widget-countdown.php:56
 
 
1176
  #: includes/widgets/class-sp-widget-event-blocks.php:63
1177
  #: includes/widgets/class-sp-widget-event-calendar.php:56
1178
  #: includes/widgets/class-sp-widget-event-list.php:66
@@ -1180,79 +1551,82 @@ msgstr "تحديث"
1180
  #: includes/widgets/class-sp-widget-player-gallery.php:64
1181
  #: includes/widgets/class-sp-widget-player-gallery.php:89
1182
  #: includes/widgets/class-sp-widget-player-list.php:64
1183
- #: includes/widgets/class-sp-widget-player-list.php:110
1184
  msgid "Add New"
1185
  msgstr "أضف"
1186
 
1187
- #: includes/class-sp-post-types.php:42 includes/class-sp-post-types.php:71
1188
- #: includes/class-sp-post-types.php:100 includes/class-sp-post-types.php:129
1189
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:52
1190
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:64
1191
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:52
1192
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:63
1193
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:51
1194
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:86
1195
- #: includes/widgets/class-sp-widget-player-gallery.php:78
1196
- #: includes/widgets/class-sp-widget-player-list.php:99
1197
- msgid "Name"
1198
- msgstr "الاسم"
1199
-
1200
  #: includes/class-sp-post-types.php:43 includes/class-sp-post-types.php:72
1201
  #: includes/class-sp-post-types.php:101 includes/class-sp-post-types.php:130
 
1202
  msgid "Parent"
1203
- msgstr "الاب"
1204
 
1205
  #: includes/class-sp-post-types.php:44 includes/class-sp-post-types.php:73
1206
  #: includes/class-sp-post-types.php:102 includes/class-sp-post-types.php:131
 
1207
  msgid "Parent:"
1208
  msgstr "الاب:"
1209
 
1210
  #: includes/class-sp-post-types.php:45 includes/class-sp-post-types.php:74
1211
  #: includes/class-sp-post-types.php:103 includes/class-sp-post-types.php:132
1212
- #: includes/class-sp-post-types.php:167 includes/class-sp-post-types.php:197
1213
- #: includes/class-sp-post-types.php:227 includes/class-sp-post-types.php:257
1214
- #: includes/class-sp-post-types.php:287 includes/class-sp-post-types.php:317
1215
- #: includes/class-sp-post-types.php:347 includes/class-sp-post-types.php:377
1216
- #: includes/class-sp-post-types.php:408 includes/class-sp-post-types.php:438
1217
- #: includes/class-sp-post-types.php:470 includes/class-sp-post-types.php:500
1218
- #: includes/class-sp-post-types.php:531
1219
  msgid "Search"
1220
  msgstr "البحث"
1221
 
1222
  #: includes/class-sp-post-types.php:46 includes/class-sp-post-types.php:75
1223
  #: includes/class-sp-post-types.php:104 includes/class-sp-post-types.php:133
1224
- #: includes/class-sp-post-types.php:168 includes/class-sp-post-types.php:169
1225
- #: includes/class-sp-post-types.php:198 includes/class-sp-post-types.php:199
1226
- #: includes/class-sp-post-types.php:228 includes/class-sp-post-types.php:229
1227
- #: includes/class-sp-post-types.php:258 includes/class-sp-post-types.php:259
1228
- #: includes/class-sp-post-types.php:288 includes/class-sp-post-types.php:289
1229
- #: includes/class-sp-post-types.php:318 includes/class-sp-post-types.php:319
1230
- #: includes/class-sp-post-types.php:348 includes/class-sp-post-types.php:349
1231
- #: includes/class-sp-post-types.php:378 includes/class-sp-post-types.php:379
1232
- #: includes/class-sp-post-types.php:409 includes/class-sp-post-types.php:410
1233
- #: includes/class-sp-post-types.php:439 includes/class-sp-post-types.php:440
1234
- #: includes/class-sp-post-types.php:471 includes/class-sp-post-types.php:472
1235
- #: includes/class-sp-post-types.php:501 includes/class-sp-post-types.php:502
1236
- #: includes/class-sp-post-types.php:532 includes/class-sp-post-types.php:533
1237
- #: includes/sp-core-functions.php:726 includes/sp-core-functions.php:766
1238
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:164
1239
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:113
 
1240
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:32
1241
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:101
 
 
 
 
 
 
 
 
 
1242
  msgid "No results found."
1243
  msgstr "لا توجد نتائج."
1244
 
1245
  #: includes/class-sp-post-types.php:64 includes/class-sp-post-types.php:78
1246
- #: includes/admin/class-sp-admin-menus.php:64
1247
- #: includes/admin/class-sp-admin-menus.php:256
1248
  #: includes/admin/class-sp-admin-permalink-settings.php:30
1249
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:68
1250
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:67
1251
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:67
 
 
 
1252
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:131
1253
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
1254
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:108
1255
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:115
 
1256
  #: includes/admin/views/html-admin-page-status.php:306
1257
  msgid "Seasons"
1258
  msgstr "المواسم"
@@ -1262,33 +1636,21 @@ msgid "Edit Season"
1262
  msgstr "تحرير الموسم"
1263
 
1264
  #: includes/class-sp-post-types.php:93 includes/class-sp-post-types.php:107
1265
- #: includes/admin/class-sp-admin-menus.php:260
1266
  #: includes/admin/class-sp-admin-permalink-settings.php:26
1267
- #: includes/admin/settings/class-sp-settings-events.php:139
1268
  #: includes/admin/views/html-admin-page-status.php:316
1269
  msgid "Venues"
1270
  msgstr "الملاعب"
1271
 
1272
- #: includes/class-sp-post-types.php:94 includes/sp-core-functions.php:1059
1273
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:50
1274
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:96
1275
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:70
1276
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:83
1277
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:62
1278
- #: includes/admin/settings/class-sp-settings-events.php:68
1279
- #: includes/widgets/class-sp-widget-event-list.php:114
1280
- #: templates/event-list.php:60 templates/event-venue.php:35
1281
- msgid "Venue"
1282
- msgstr "ملعب"
1283
-
1284
  #: includes/class-sp-post-types.php:96
1285
  msgid "Edit Venue"
1286
  msgstr "تحرير المكان"
1287
 
1288
  #: includes/class-sp-post-types.php:122 includes/class-sp-post-types.php:136
1289
- #: includes/admin/class-sp-admin-menus.php:252
1290
  #: includes/admin/class-sp-admin-permalink-settings.php:33
1291
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:65
 
1292
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:71
1293
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
1294
  #: includes/admin/views/html-admin-page-status.php:326
@@ -1299,427 +1661,401 @@ msgstr "المواقع"
1299
  msgid "Edit Position"
1300
  msgstr "تحرير المركز"
1301
 
1302
- #: includes/class-sp-post-types.php:161 includes/sp-core-functions.php:1052
1303
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:126
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1304
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:27
1305
- #: includes/admin/settings/class-sp-settings-config.php:154
1306
- #: includes/admin/settings/class-sp-settings-config.php:158
1307
  #: includes/admin/views/html-admin-page-status.php:237
1308
- #: templates/event-results.php:89
1309
  msgid "Team Results"
1310
  msgstr "نتائج الفريق"
1311
 
1312
- #: includes/class-sp-post-types.php:162
1313
  msgid "Result"
1314
  msgstr "النتيجة"
1315
 
1316
- #: includes/class-sp-post-types.php:163
1317
  msgid "Add New Result"
1318
  msgstr "أضف نتيجة جديدة"
1319
 
1320
- #: includes/class-sp-post-types.php:164
1321
  msgid "Edit Result"
1322
  msgstr "تحرير النتيجة"
1323
 
1324
- #: includes/class-sp-post-types.php:165 includes/class-sp-post-types.php:195
1325
- #: includes/class-sp-post-types.php:225 includes/class-sp-post-types.php:255
1326
- #: includes/class-sp-post-types.php:285 includes/class-sp-post-types.php:315
1327
- #: includes/class-sp-post-types.php:345 includes/class-sp-post-types.php:375
1328
- #: includes/class-sp-post-types.php:406 includes/class-sp-post-types.php:436
1329
- #: includes/class-sp-post-types.php:468 includes/class-sp-post-types.php:498
1330
- #: includes/class-sp-post-types.php:529
1331
  msgid "New"
1332
  msgstr "جديد"
1333
 
1334
- #: includes/class-sp-post-types.php:191
1335
- #: includes/admin/settings/class-sp-settings-config.php:100
1336
  #: includes/admin/views/html-admin-page-status.php:227
1337
  msgid "Event Outcomes"
1338
  msgstr "نتائج الأحداث"
1339
 
1340
- #: includes/class-sp-post-types.php:193
1341
  msgid "Add New Outcome"
1342
  msgstr "إضافة نتائج جديدة"
1343
 
1344
- #: includes/class-sp-post-types.php:194
1345
  msgid "Edit Outcome"
1346
  msgstr "تحرير النتائج"
1347
 
1348
- #: includes/class-sp-post-types.php:221
1349
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:141
1350
- #: includes/admin/settings/class-sp-settings-config.php:277
1351
  #: includes/admin/views/html-admin-page-status.php:257
1352
  msgid "Table Columns"
1353
  msgstr "اعمدة الجدول"
1354
 
1355
- #: includes/class-sp-post-types.php:222
1356
  msgid "Column"
1357
  msgstr "عمود"
1358
 
1359
- #: includes/class-sp-post-types.php:223
1360
  msgid "Add New Column"
1361
  msgstr "أضف عمود جديد"
1362
 
1363
- #: includes/class-sp-post-types.php:224
1364
  msgid "Edit Column"
1365
  msgstr "تحرير العمود"
1366
 
1367
- #: includes/class-sp-post-types.php:251
1368
- #: includes/admin/settings/class-sp-settings-config.php:336
1369
  #: includes/admin/views/html-admin-page-status.php:267
1370
  msgid "Player Metrics"
1371
  msgstr "مواصفات اللاعب"
1372
 
1373
- #: includes/class-sp-post-types.php:252
 
1374
  msgid "Metric"
1375
  msgstr "المقياس"
1376
 
1377
- #: includes/class-sp-post-types.php:253
1378
  msgid "Add New Metric"
1379
  msgstr "إضافة مواصفات جديدة"
1380
 
1381
- #: includes/class-sp-post-types.php:254
1382
  msgid "Edit Metric"
1383
  msgstr "تحرير المواصفات"
1384
 
1385
- #: includes/class-sp-post-types.php:283
 
 
 
 
 
 
 
 
 
1386
  msgid "Add New Performance"
1387
  msgstr ""
1388
 
1389
- #: includes/class-sp-post-types.php:284
1390
  msgid "Edit Performance"
1391
  msgstr "تحرير الأداء"
1392
 
1393
- #: includes/class-sp-post-types.php:311
1394
- #: includes/admin/settings/class-sp-settings-config.php:388
1395
  #: includes/admin/views/html-admin-page-status.php:277
1396
  msgid "Player Statistics"
1397
  msgstr "إحصائيات اللاعب"
1398
 
1399
- #: includes/class-sp-post-types.php:312
1400
  msgid "Statistic"
1401
  msgstr "إحصائية"
1402
 
1403
- #: includes/class-sp-post-types.php:313
1404
  msgid "Add New Statistic"
1405
  msgstr "أضف أحصائية جديدة"
1406
 
1407
- #: includes/class-sp-post-types.php:314
1408
  msgid "Edit Statistic"
1409
  msgstr "تحرير الإحصائية"
1410
 
1411
- #: includes/class-sp-post-types.php:341
1412
  #: includes/admin/class-sp-admin-permalink-settings.php:25
1413
  #: includes/admin/class-sp-admin-taxonomies.php:134
1414
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:52
1415
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:135
 
 
1416
  #: includes/admin/settings/class-sp-settings-events.php:25
1417
  msgid "Events"
1418
  msgstr "أحداث"
1419
 
1420
- #: includes/class-sp-post-types.php:342 includes/sp-core-functions.php:1043
1421
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:90
1422
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:217
1423
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:52
1424
- #: includes/widgets/class-sp-widget-countdown.php:42
1425
- #: includes/widgets/class-sp-widget-event-list.php:111
1426
- #: templates/event-list.php:51
1427
- msgid "Event"
1428
- msgstr "حدث"
1429
-
1430
- #: includes/class-sp-post-types.php:343
1431
- #: includes/admin/class-sp-admin-welcome.php:251
1432
  msgid "Add New Event"
1433
  msgstr "أضف حدث جديد"
1434
 
1435
- #: includes/class-sp-post-types.php:344
1436
  msgid "Edit Event"
1437
  msgstr "تحرير الحدث"
1438
 
1439
- #: includes/class-sp-post-types.php:371
 
 
 
 
1440
  #: includes/admin/class-sp-admin-permalink-settings.php:27
1441
- #: includes/admin/settings/class-sp-settings-events.php:128
1442
  msgid "Calendars"
1443
  msgstr "التقويمات"
1444
 
1445
- #: includes/class-sp-post-types.php:373
1446
  msgid "Add New Calendar"
1447
  msgstr "إضافة تقويم جديد"
1448
 
1449
- #: includes/class-sp-post-types.php:374
1450
  msgid "Edit Calendar"
1451
  msgstr "تحرير التقويم"
1452
 
1453
- #: includes/class-sp-post-types.php:402 includes/sp-core-functions.php:1055
1454
- #: includes/admin/class-sp-admin-permalink-settings.php:28
1455
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:93
1456
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:66
1457
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:65
1458
- #: includes/admin/post-types/class-sp-admin-cpt-table.php:50
1459
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:123
1460
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:58
1461
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
1462
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
1463
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:70
1464
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:85
1465
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:101
1466
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:145
1467
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:55
1468
- #: includes/admin/settings/class-sp-settings-events.php:60
1469
- #: includes/admin/settings/class-sp-settings-events.php:131
1470
- #: includes/admin/settings/class-sp-settings-players.php:64
1471
- #: includes/admin/settings/class-sp-settings-teams.php:25
1472
- #: includes/admin/settings/class-sp-settings-teams.php:48
1473
- #: includes/widgets/class-sp-widget-event-list.php:112
1474
- #: templates/event-list.php:54
1475
- msgid "Teams"
1476
- msgstr "الفرق"
1477
 
1478
- #: includes/class-sp-post-types.php:404
1479
- #: includes/admin/class-sp-admin-welcome.php:249
1480
  msgid "Add New Team"
1481
  msgstr "أضف فريق جديد"
1482
 
1483
- #: includes/class-sp-post-types.php:405
1484
  msgid "Edit Team"
1485
  msgstr "تحرير الفريق"
1486
 
1487
- #: includes/class-sp-post-types.php:432
 
 
 
 
1488
  #: includes/admin/class-sp-admin-permalink-settings.php:31
1489
- #: includes/admin/settings/class-sp-settings-teams.php:45
 
1490
  msgid "League Tables"
1491
  msgstr "جداول البطولة"
1492
 
1493
- #: includes/class-sp-post-types.php:433
1494
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:149
1495
- #: includes/widgets/class-sp-widget-league-table.php:50
1496
- msgid "League Table"
1497
- msgstr "جدول البطولة"
1498
-
1499
- #: includes/class-sp-post-types.php:434
1500
  msgid "Add New League Table"
1501
  msgstr "أضف جدول بطولة جديد"
1502
 
1503
- #: includes/class-sp-post-types.php:435
1504
  msgid "Edit League Table"
1505
  msgstr "تجرير جدول البطولة"
1506
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1507
  #: includes/class-sp-post-types.php:494
 
 
 
 
 
 
 
 
 
 
 
 
 
1508
  #: includes/admin/class-sp-admin-permalink-settings.php:34
1509
  #: includes/admin/post-types/class-sp-admin-meta-boxes.php:142
1510
- #: includes/admin/settings/class-sp-settings-players.php:51
1511
  msgid "Player Lists"
1512
  msgstr "قائمة اللاعبين"
1513
 
1514
- #: includes/class-sp-post-types.php:495
1515
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:166
1516
- #: includes/widgets/class-sp-widget-player-gallery.php:53
1517
- #: includes/widgets/class-sp-widget-player-list.php:53
1518
- msgid "Player List"
1519
- msgstr "قائمة اللعبين"
1520
-
1521
- #: includes/class-sp-post-types.php:496
1522
  msgid "Add New Player List"
1523
  msgstr "أضف قائمة لاعبين جديده"
1524
 
1525
- #: includes/class-sp-post-types.php:497
1526
  msgid "Edit Player List"
1527
  msgstr "تحرير قائمة اللاعب"
1528
 
1529
  #: includes/class-sp-post-types.php:527
 
 
 
 
1530
  msgid "Add New Staff"
1531
  msgstr "أضف إداري جديد"
1532
 
1533
- #: includes/class-sp-post-types.php:528
1534
  msgid "Edit Staff"
1535
  msgstr "تحرير إداري"
1536
 
1537
- #: includes/sp-core-functions.php:310
1538
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:28
 
 
 
 
 
1539
  #: templates/team-link.php:21
1540
  msgid "Visit Site"
1541
  msgstr ""
1542
 
1543
- #: includes/sp-core-functions.php:331 includes/sp-core-functions.php:335
1544
- #: includes/sp-core-functions.php:1058
1545
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:134
1546
- #: templates/event-performance.php:152
1547
- msgid "Total"
1548
- msgstr "المجموع"
1549
-
1550
- #: includes/sp-core-functions.php:331
1551
  msgid "Average"
1552
  msgstr "متوسط"
1553
 
1554
- #: includes/sp-core-functions.php:389
1555
  msgid "Published"
1556
  msgstr "منشور"
1557
 
1558
- #: includes/sp-core-functions.php:390
1559
  msgid "Scheduled"
1560
  msgstr "مجدول"
1561
 
1562
- #: includes/sp-core-functions.php:420
1563
- msgid "This week"
1564
- msgstr ""
1565
-
1566
- #: includes/sp-core-functions.php:421
1567
- msgid "Today"
1568
- msgstr ""
1569
-
1570
- #: includes/sp-core-functions.php:649 includes/sp-core-functions.php:789
1571
  msgid "(no title)"
1572
  msgstr "(بلا ​​عنوان)"
1573
 
1574
- #: includes/sp-core-functions.php:666 includes/sp-core-functions.php:746
1575
  msgid "Select All"
1576
- msgstr "حدد الكل"
1577
 
1578
- #: includes/sp-core-functions.php:727 includes/sp-core-functions.php:730
1579
- #, fuzzy
1580
  msgid "Show all"
1581
- msgstr "كرض كل الفرق"
1582
 
1583
- #: includes/sp-core-functions.php:1040
1584
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:129
1585
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:76
1586
- #: includes/widgets/class-sp-widget-event-list.php:115
1587
- #: templates/event-list.php:63
1588
- msgid "Article"
1589
- msgstr "مقالة"
1590
 
1591
- #: includes/sp-core-functions.php:1041
1592
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:91
1593
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:47
 
1594
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:42
1595
- #: templates/event-details.php:20 templates/event-list.php:48
1596
  msgid "Date"
1597
  msgstr "التاريخ"
1598
 
1599
- #: includes/sp-core-functions.php:1042
1600
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:100
1601
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:103
1602
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:106
1603
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:110
1604
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:113
1605
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:116
1606
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:122
1607
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:134
1608
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:139
1609
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:148
1610
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:154
1611
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:165
1612
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:170
1613
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:173
1614
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:31
1615
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
1616
- #: templates/event-details.php:32
1617
- msgid "Details"
1618
- msgstr "تفاصيل"
1619
-
1620
- #: includes/sp-core-functions.php:1045
1621
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:59
1622
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
1623
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:51
1624
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:52
1625
- #: includes/admin/settings/class-sp-settings-players.php:42
1626
- #: includes/admin/settings/class-sp-settings-staff.php:44
1627
  #: templates/player-details.php:34 templates/staff-details.php:32
1628
  msgid "Nationality"
1629
  msgstr "الجنسية"
1630
 
1631
- #: includes/sp-core-functions.php:1047
1632
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
1633
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
1634
- #: includes/widgets/class-sp-widget-player-gallery.php:79
1635
- #: includes/widgets/class-sp-widget-player-list.php:87
1636
- #: includes/widgets/class-sp-widget-player-list.php:100
1637
- msgid "Played"
1638
- msgstr "لعب"
1639
 
1640
- #: includes/sp-core-functions.php:1048 templates/league-table.php:49
1641
  msgid "Pos"
1642
  msgstr "أسم النادي"
1643
 
1644
- #: includes/sp-core-functions.php:1049
1645
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:151
1646
- #: templates/event-list.php:168
1647
  msgid "Preview"
1648
  msgstr "معاينة"
1649
 
1650
- #: includes/sp-core-functions.php:1050 templates/player-list.php:88
1651
  msgid "Rank"
1652
  msgstr "المرتبة"
1653
 
1654
- #: includes/sp-core-functions.php:1051
1655
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:149
1656
- #: templates/event-list.php:166
1657
  msgid "Recap"
1658
  msgstr "خلاصة"
1659
 
1660
- #: includes/sp-core-functions.php:1056
1661
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:92
1662
- #: includes/widgets/class-sp-widget-event-list.php:113
1663
- #: templates/event-details.php:20
1664
- msgid "Time"
1665
- msgstr "الوقت"
1666
 
1667
- #: includes/sp-core-functions.php:1057
1668
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:64
1669
- #: templates/event-list.php:57
1670
  msgid "Time/Results"
1671
  msgstr "الوقت/النتيجة"
1672
 
1673
- #: includes/sp-core-functions.php:1060 templates/event-blocks.php:108
1674
- #: templates/event-calendar.php:215 templates/event-list.php:186
1675
  msgid "View all events"
1676
  msgstr "عرض جميع الأحداث"
1677
 
1678
- #: includes/sp-core-functions.php:1061 templates/league-table.php:110
1679
- msgid "View full table"
1680
- msgstr "عرض جميع الجداول"
1681
-
1682
- #: includes/sp-core-functions.php:1066
1683
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:86
1684
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:134
1685
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:98
1686
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:95
1687
- #: templates/player-details.php:44 templates/staff-details.php:36
1688
- msgid "Current Team"
1689
- msgstr "الفريق الحالي"
1690
-
1691
- #: includes/sp-core-functions.php:1067
1692
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:101
1693
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:78
1694
- #: templates/player-details.php:53 templates/staff-details.php:43
1695
- msgid "Past Teams"
1696
- msgstr "الفرق السابقة"
1697
-
1698
- #: includes/sp-core-functions.php:1071
1699
- msgid "Substitutes"
1700
- msgstr "أستبدل"
1701
-
1702
- #: includes/sp-core-functions.php:1072 templates/player-gallery.php:146
1703
- #: templates/player-list.php:152
1704
  msgid "View all players"
1705
  msgstr "عرض جميع اللاعبين"
1706
 
 
 
 
 
1707
  #: includes/sp-template-hooks.php:151
1708
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:48
1709
  #: includes/admin/post-types/class-sp-admin-cpt-metric.php:45
1710
- #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:45
1711
  #: includes/admin/post-types/class-sp-admin-cpt-performance.php:45
1712
  #: includes/admin/post-types/class-sp-admin-cpt-result.php:45
1713
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:47
1714
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:136
1715
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:150
1716
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:167
1717
- #: includes/admin/settings/class-sp-settings-config.php:109
1718
- #: includes/admin/settings/class-sp-settings-config.php:165
1719
- #: includes/admin/settings/class-sp-settings-config.php:234
1720
- #: includes/admin/settings/class-sp-settings-config.php:289
1721
- #: includes/admin/settings/class-sp-settings-config.php:345
1722
- #: includes/admin/settings/class-sp-settings-config.php:399
1723
  msgid "Description"
1724
  msgstr "الوصف"
1725
 
@@ -1727,17 +2063,17 @@ msgstr "الوصف"
1727
  msgid ""
1728
  "The description is not prominent by default; however, some themes may show "
1729
  "it."
1730
- msgstr "الوصف لا يظهر بشكل افتراضي؛مع ذلك فإن بعض القوالب قد تتمكن من عرضه."
1731
 
1732
  #: includes/sp-template-hooks.php:157
1733
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:44
1734
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:44
1735
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:34
1736
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-statistic-details.php:31
1737
- #: includes/admin/settings/class-sp-settings-config.php:285
1738
- #: includes/admin/settings/class-sp-settings-config.php:396
1739
  msgid "Key"
1740
- msgstr "مفتاح"
1741
 
1742
  #: includes/sp-template-hooks.php:157
1743
  #: includes/admin/post-types/class-sp-admin-cpt-metric.php:44
@@ -1745,78 +2081,112 @@ msgstr "مفتاح"
1745
  #: includes/admin/post-types/class-sp-admin-cpt-performance.php:44
1746
  #: includes/admin/post-types/class-sp-admin-cpt-result.php:44
1747
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-metric-details.php:27
1748
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-outcome-details.php:27
1749
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-performance-details.php:27
1750
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-result-details.php:27
1751
- #: includes/admin/settings/class-sp-settings-config.php:108
1752
- #: includes/admin/settings/class-sp-settings-config.php:233
1753
- #: includes/admin/settings/class-sp-settings-config.php:344
1754
  msgid "Variable"
1755
  msgstr "المتغير"
1756
 
1757
- #: includes/sp-template-hooks.php:165
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1758
  msgid "User"
1759
  msgstr "مستخدم"
1760
 
1761
- #: includes/sp-template-hooks.php:190
1762
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1763
  msgid "Logo"
1764
  msgstr "شعار"
1765
 
1766
- #: includes/sp-template-hooks.php:193
1767
  msgid "Select Logo"
1768
  msgstr "اختيار الشعار"
1769
 
1770
- #: includes/sp-template-hooks.php:196
1771
  msgid "Add logo"
1772
  msgstr "اضافة شعار"
1773
 
1774
- #: includes/sp-template-hooks.php:199
1775
  msgid "Remove logo"
1776
  msgstr ""
1777
 
1778
- #: includes/sp-template-hooks.php:207
1779
  msgid "Date/Time:"
1780
  msgstr "تاريخ/وقت:"
1781
 
1782
- #: includes/sp-template-hooks.php:207
1783
  msgid "Now"
1784
  msgstr "الآن"
1785
 
1786
- #: includes/sp-template-hooks.php:323
1787
  #: includes/admin/class-sp-admin-post-types.php:62
1788
  msgid "Settings saved."
1789
- msgstr "تم حفظ الاعدادات"
1790
 
1791
- #: includes/sp-template-hooks.php:325
1792
  #: includes/admin/class-sp-admin-post-types.php:64
1793
- #: includes/admin/settings/class-sp-settings-config.php:124
1794
- #: includes/admin/settings/class-sp-settings-config.php:197
1795
- #: includes/admin/settings/class-sp-settings-config.php:249
1796
- #: includes/admin/settings/class-sp-settings-config.php:307
1797
- #: includes/admin/settings/class-sp-settings-config.php:360
1798
- #: includes/admin/settings/class-sp-settings-config.php:416
 
1799
  msgid "View All"
1800
- msgstr "مشاهدة الكل"
1801
 
1802
- #: includes/sp-template-hooks.php:331 includes/sp-template-hooks.php:334
1803
- #: includes/sp-template-hooks.php:339
1804
  #: includes/admin/class-sp-admin-post-types.php:69
1805
  #: includes/admin/class-sp-admin-post-types.php:72
1806
  #: includes/admin/class-sp-admin-post-types.php:77
1807
  msgid "Changes saved."
1808
- msgstr "تم حفظ التغييرات ."
1809
 
1810
- #: includes/sp-template-hooks.php:336 includes/sp-template-hooks.php:341
1811
- #: includes/sp-template-hooks.php:351
1812
  #: includes/admin/class-sp-admin-post-types.php:74
1813
  #: includes/admin/class-sp-admin-post-types.php:79
1814
  #: includes/admin/class-sp-admin-post-types.php:89
1815
  msgid "Success!"
1816
- msgstr "نجح!"
1817
 
1818
- #: includes/sp-template-hooks.php:343 includes/sp-template-hooks.php:349
1819
- #: includes/sp-template-hooks.php:353
1820
  #: includes/admin/class-sp-admin-post-types.php:81
1821
  #: includes/admin/class-sp-admin-post-types.php:87
1822
  #: includes/admin/class-sp-admin-post-types.php:91
@@ -1824,35 +2194,55 @@ msgstr "نجح!"
1824
  msgid "Preview %s"
1825
  msgstr "معاينة %s"
1826
 
1827
- #: includes/sp-template-hooks.php:346
1828
  #: includes/admin/class-sp-admin-post-types.php:84
1829
  #, php-format
1830
  msgid "Scheduled for: <b>%1$s</b>."
1831
  msgstr "المقرر إلى: <b>%1$s</b>."
1832
 
1833
- #: includes/sp-template-hooks.php:347
1834
  #: includes/admin/class-sp-admin-post-types.php:85
1835
- msgid "M j, Y @ G:i"
1836
- msgstr "M j، Y @ G:i"
1837
-
1838
- #: includes/admin/class-sp-admin-assets.php:111
1839
- #: includes/admin/class-sp-admin-settings.php:117
1840
- #: includes/admin/importers/class-sp-event-importer.php:467
1841
- #: includes/admin/importers/class-sp-event-importer.php:482
1842
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:147
1843
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:186
1844
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:76
1845
  #: includes/admin/views/html-admin-page-status.php:224
1846
  msgid "None"
1847
  msgstr "بدون"
1848
 
1849
- #: includes/admin/class-sp-admin-assets.php:112
1850
  msgid "&mdash; Remove &mdash;"
1851
  msgstr "&mdash; حذف &mdash;"
1852
 
 
 
 
 
 
 
1853
  #: includes/admin/class-sp-admin-dashboard.php:34
1854
- #: includes/admin/class-sp-admin-menus.php:50
1855
  #: includes/admin/class-sp-admin-permalink-settings.php:47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1856
  msgid "SportsPress"
1857
  msgstr "وو كومرس"
1858
 
@@ -1926,42 +2316,54 @@ msgstr ""
1926
  msgid "Import <strong>staff</strong> from a csv file."
1927
  msgstr ""
1928
 
1929
- #: includes/admin/class-sp-admin-menus.php:50
1930
- msgid "SportsPress Settings"
1931
- msgstr "إعدادات SportsPress"
 
 
 
 
 
 
1932
 
1933
- #: includes/admin/class-sp-admin-menus.php:71
1934
  #: includes/admin/views/html-admin-page-status.php:2
1935
  #: includes/admin/views/html-notice-template-check.php:6
1936
  msgid "System Status"
1937
  msgstr "حالة النظام"
1938
 
1939
- #: includes/admin/class-sp-admin-menus.php:79
1940
- msgid "SportsPress Add-ons/Extensions"
1941
- msgstr "إضافات SportsPress "
1942
-
1943
- #: includes/admin/class-sp-admin-menus.php:79
1944
- msgid "Add-ons"
1945
- msgstr "الإضافات"
1946
-
1947
  #: includes/admin/class-sp-admin-permalink-settings.php:75
1948
  msgid ""
1949
  "These settings control the permalinks used for SportsPress. These settings "
1950
  "only apply when <strong>not using \"default\" permalinks above</strong>."
1951
- msgstr ""
1952
- "تستخدم هذه الإعدادات روابط بريما في SportsPress. تطبيق هذه الإعدادات فقط "
1953
- "عندما <strong>لا تستخدم \"default\" روابط بريما فوق</strong>."
1954
 
1955
- #: includes/admin/class-sp-admin-settings.php:60
1956
  msgid "Action failed. Please refresh the page and retry."
1957
  msgstr "فشل تنفيذ الإجراء. رجاءً حدث الصفحة وحاول مجددا"
1958
 
1959
- #: includes/admin/class-sp-admin-settings.php:67
1960
- #: includes/admin/class-sp-admin-welcome.php:196
1961
  msgid "Your settings have been saved."
1962
  msgstr "تم حفظ إعداداتك"
1963
 
1964
- #: includes/admin/class-sp-admin-sports.php:42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1965
  msgid "Custom"
1966
  msgstr "مخصص"
1967
 
@@ -2012,301 +2414,262 @@ msgstr ""
2012
  #: includes/admin/class-sp-admin-welcome.php:150
2013
  #, php-format
2014
  msgid "Version %s"
2015
- msgstr "%s"
2016
 
2017
  #: includes/admin/class-sp-admin-welcome.php:159
2018
  #: includes/admin/views/html-notice-install.php:7
2019
  msgid "Get Started"
2020
- msgstr "البدء"
2021
 
2022
- #: includes/admin/class-sp-admin-welcome.php:202
2023
- #: includes/admin/settings/class-sp-settings-general.php:216
2024
- #: includes/admin/settings/class-sp-settings-general.php:219
2025
- msgid "Base Location"
2026
- msgstr "الدولة"
2027
 
2028
- #: includes/admin/class-sp-admin-welcome.php:208
2029
- #: includes/admin/settings/class-sp-settings-general.php:220
2030
- msgid "Choose a country&hellip;"
2031
- msgstr "اختر دولة&hellip;"
2032
-
2033
- #: includes/admin/class-sp-admin-welcome.php:212
2034
- #: includes/admin/settings/class-sp-settings-general.php:50
2035
  #: includes/admin/views/html-admin-page-status.php:223
2036
  msgid "Sport"
2037
  msgstr "الرياضة"
2038
 
2039
- #: includes/admin/class-sp-admin-welcome.php:225
2040
- #: includes/admin/settings/class-sp-settings-general.php:57
2041
- msgid "Mode"
2042
- msgstr ""
2043
-
2044
- #: includes/admin/class-sp-admin-welcome.php:233
2045
- #: includes/admin/settings/class-sp-settings-general.php:62
2046
- #, fuzzy
2047
- msgctxt "mode select"
2048
- msgid "Team"
2049
- msgstr "الفريق"
2050
-
2051
- #: includes/admin/class-sp-admin-welcome.php:234
2052
- #: includes/admin/settings/class-sp-settings-general.php:63
2053
- #, fuzzy
2054
- msgctxt "mode select"
2055
- msgid "Individual"
2056
- msgstr "الهند"
2057
-
2058
- #: includes/admin/class-sp-admin-welcome.php:240
2059
- #: includes/admin/views/html-admin-settings.php:16
2060
  msgid "Save changes"
2061
  msgstr "حفظ الإعدادات"
2062
 
2063
- #: includes/admin/class-sp-admin-welcome.php:247
2064
  msgid "Next Steps"
2065
  msgstr "الخطوات التالية"
2066
 
2067
- #: includes/admin/class-sp-admin-welcome.php:255
 
 
 
 
2068
  msgid "Translators"
2069
  msgstr "المترجمين"
2070
 
2071
- #: includes/admin/class-sp-admin-welcome.php:256
2072
  msgid ""
2073
  "SportsPress has been kindly translated into several other languages thanks "
2074
- "to our translation team. Want to see your name? <a href=\"https://www."
2075
- "transifex.com/projects/p/sportspress/\">Translate SportsPress</a>."
 
2076
  msgstr ""
2077
 
2078
- #: includes/admin/class-sp-admin-welcome.php:272
2079
  msgid "Go to SportsPress Settings"
2080
  msgstr "أذهب لإعدادات SportsPress"
2081
 
2082
- #: includes/admin/importers/class-sp-event-importer.php:361
2083
- #: includes/admin/importers/class-sp-importer.php:93
2084
- #: includes/admin/importers/class-sp-importer.php:108
2085
- #: includes/admin/importers/class-sp-player-importer.php:128
2086
- #: includes/admin/importers/class-sp-staff-importer.php:121
2087
- #: includes/admin/importers/class-sp-team-importer.php:85
2088
- msgid "Sorry, there has been an error."
2089
- msgstr "نأسف، يبدو أن هناك مشكلة."
2090
-
2091
- #: includes/admin/importers/class-sp-event-importer.php:362
2092
- #: includes/admin/importers/class-sp-player-importer.php:129
2093
- #: includes/admin/importers/class-sp-staff-importer.php:122
2094
- #: includes/admin/importers/class-sp-team-importer.php:86
2095
- msgid "The CSV is invalid."
2096
- msgstr "ملف CSV غير صالح."
2097
 
2098
- #: includes/admin/importers/class-sp-event-importer.php:373
2099
  #, php-format
2100
  msgid ""
2101
- "Import complete - imported <strong>%s</strong> events and skipped <strong>"
2102
- "%s</strong>."
2103
- msgstr ""
2104
- "استيراد كامل - المستوردة<strong>%s</strong> الأحداث وتخطي<strong>%s</strong>."
2105
 
2106
- #: includes/admin/importers/class-sp-event-importer.php:383
2107
- #: includes/admin/importers/class-sp-player-importer.php:150
2108
- #: includes/admin/importers/class-sp-staff-importer.php:143
2109
- #: includes/admin/importers/class-sp-team-importer.php:107
2110
  msgid "All done!"
2111
  msgstr "اكتمل!"
2112
 
2113
- #: includes/admin/importers/class-sp-event-importer.php:383
2114
  msgid "View Events"
2115
  msgstr "عرض الأحداث"
2116
 
2117
- #: includes/admin/importers/class-sp-event-importer.php:395
2118
- msgid "Import Events"
2119
- msgstr "استيراد الأحداث"
2120
-
2121
- #: includes/admin/importers/class-sp-event-importer.php:407
2122
- #: includes/admin/importers/class-sp-player-importer.php:174
2123
- #: includes/admin/importers/class-sp-staff-importer.php:167
2124
- #: includes/admin/importers/class-sp-team-importer.php:131
2125
  msgid ""
2126
- "Hi there! Choose a .csv file to upload, then click \"Upload file and import"
2127
- "\"."
2128
  msgstr ""
2129
 
2130
- #: includes/admin/importers/class-sp-event-importer.php:409
2131
  #, php-format
2132
  msgid ""
2133
  "Events need to be defined with columns in a specific order (3+ columns). <a "
2134
  "href=\"%s\">Click here to download a sample</a>."
2135
  msgstr ""
2136
 
2137
- #: includes/admin/importers/class-sp-event-importer.php:417
2138
- #: includes/admin/importers/class-sp-player-importer.php:184
2139
- #: includes/admin/importers/class-sp-staff-importer.php:177
2140
- #: includes/admin/importers/class-sp-team-importer.php:141
2141
- msgid ""
2142
- "Before you can upload your import file, you will need to fix the following "
2143
- "error:"
2144
- msgstr "قبل البدء برفع الملف، يجب إصلاح الأعطال التالية:"
2145
-
2146
- #: includes/admin/importers/class-sp-event-importer.php:426
2147
- #: includes/admin/importers/class-sp-player-importer.php:193
2148
- #: includes/admin/importers/class-sp-staff-importer.php:186
2149
- #: includes/admin/importers/class-sp-team-importer.php:150
2150
- msgid "Choose a file from your computer:"
2151
- msgstr "أختر ملف من جهازك:"
2152
-
2153
- #: includes/admin/importers/class-sp-event-importer.php:432
2154
- #: includes/admin/importers/class-sp-player-importer.php:199
2155
- #: includes/admin/importers/class-sp-staff-importer.php:192
2156
- #: includes/admin/importers/class-sp-team-importer.php:156
2157
- #, php-format
2158
- msgid "Maximum size: %s"
2159
- msgstr "الحجم الأقصى: %s"
2160
-
2161
- #: includes/admin/importers/class-sp-event-importer.php:437
2162
- #: includes/admin/importers/class-sp-player-importer.php:204
2163
- #: includes/admin/importers/class-sp-staff-importer.php:197
2164
- #: includes/admin/importers/class-sp-team-importer.php:161
2165
- msgid "OR enter path to file:"
2166
- msgstr "أو أدخل مسار الملف"
2167
-
2168
- #: includes/admin/importers/class-sp-event-importer.php:444
2169
- #: includes/admin/importers/class-sp-player-importer.php:211
2170
- #: includes/admin/importers/class-sp-staff-importer.php:204
2171
- #: includes/admin/importers/class-sp-team-importer.php:168
2172
- #: includes/admin/settings/class-sp-settings-events.php:197
2173
- #: includes/admin/settings/class-sp-settings-events.php:201
2174
- msgid "Delimiter"
2175
- msgstr "الفاصل"
2176
-
2177
  #: includes/admin/importers/class-sp-event-importer.php:448
2178
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:89
2179
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:121
 
 
 
 
2180
  msgid "Format"
2181
  msgstr "البنية"
2182
 
2183
- #: includes/admin/importers/class-sp-event-importer.php:464
2184
- #: includes/admin/importers/class-sp-event-importer.php:479
2185
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:36
2186
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:53
2187
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:70
2188
  msgid "-- Not set --"
2189
  msgstr "-- غير معين --"
2190
 
2191
- #: includes/admin/importers/class-sp-event-importer.php:490
2192
- #: includes/admin/importers/class-sp-player-importer.php:217
2193
- #: includes/admin/importers/class-sp-staff-importer.php:210
2194
- #: includes/admin/importers/class-sp-team-importer.php:174
2195
- msgid "Upload file and import"
2196
- msgstr "رفع الملف واستيراده"
2197
 
2198
- #: includes/admin/importers/class-sp-importer.php:125
2199
- msgid "Import"
2200
- msgstr "إستيراد "
 
 
2201
 
2202
- #: includes/admin/importers/class-sp-player-importer.php:140
2203
- #, php-format
2204
- msgid ""
2205
- "Import complete - imported <strong>%s</strong> players and skipped <strong>"
2206
- "%s</strong>."
2207
  msgstr ""
2208
 
2209
- #: includes/admin/importers/class-sp-player-importer.php:150
2210
- msgid "View Players"
2211
- msgstr "عرض اللاعبين"
 
 
 
 
 
 
2212
 
2213
- #: includes/admin/importers/class-sp-player-importer.php:162
 
2214
  msgid "Import Players"
2215
  msgstr "أستيراد اللاعبين"
2216
 
2217
- #: includes/admin/importers/class-sp-player-importer.php:176
2218
  #, php-format
2219
  msgid ""
2220
- "Players need to be defined with columns in a specific order (7 columns). <a "
2221
- "href=\"%s\">Click here to download a sample</a>."
2222
  msgstr ""
2223
 
2224
- #: includes/admin/importers/class-sp-staff-importer.php:133
 
 
 
 
2225
  #, php-format
2226
  msgid ""
2227
- "Import complete - imported <strong>%s</strong> staff and skipped <strong>%s</"
2228
- "strong>."
2229
  msgstr ""
2230
 
2231
- #: includes/admin/importers/class-sp-staff-importer.php:143
2232
- msgid "View Staff"
2233
- msgstr "عرض الطاقم"
2234
-
2235
- #: includes/admin/importers/class-sp-staff-importer.php:155
2236
  msgid "Import Staff"
2237
  msgstr "إستيراد الطاقم"
2238
 
2239
- #: includes/admin/importers/class-sp-staff-importer.php:169
 
 
 
 
 
 
 
2240
  #, php-format
2241
  msgid ""
2242
- "Staff need to be defined with columns in a specific order (5 columns). <a "
2243
  "href=\"%s\">Click here to download a sample</a>."
2244
  msgstr ""
2245
 
2246
- #: includes/admin/importers/class-sp-team-importer.php:97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2247
  #, php-format
2248
  msgid ""
2249
- "Import complete - imported <strong>%s</strong> teams and skipped <strong>%s</"
2250
- "strong>."
2251
  msgstr ""
2252
 
2253
- #: includes/admin/importers/class-sp-team-importer.php:107
2254
  msgid "View Teams"
2255
  msgstr "عرض الفرق"
2256
 
2257
- #: includes/admin/importers/class-sp-team-importer.php:119
2258
- msgid "Import Teams"
2259
- msgstr "أستيراد الفرق"
2260
-
2261
- #: includes/admin/importers/class-sp-team-importer.php:133
2262
  #, php-format
2263
  msgid ""
2264
  "Teams need to be defined with columns in a specific order (3 columns). <a "
2265
  "href=\"%s\">Click here to download a sample</a>."
2266
- msgstr ""
2267
- "تحتاج إلى تعريف فرق مع الأعمدة في ترتيب معين (3 أعمدة). <a href=\"%s\">أضغط "
2268
- "هنا لتحميل العينة</a>."
2269
 
2270
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:47
2271
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:47
2272
- #: includes/admin/post-types/class-sp-admin-cpt-table.php:47
 
2273
  msgid "Title"
2274
  msgstr "الاسم"
2275
 
2276
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:53
2277
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:52
2278
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:133
2279
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:163
2280
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:67
2281
  msgid "Layout"
2282
- msgstr "التخطيط"
2283
-
2284
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:114
2285
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:174
2286
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:102
2287
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:138
2288
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:132
2289
- #: includes/admin/post-types/class-sp-admin-cpt-table.php:84
2290
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:108
2291
  msgid "Show all leagues"
2292
  msgstr "عرض جميع البطولات"
2293
 
2294
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:123
2295
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:183
2296
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:111
2297
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:147
2298
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:141
2299
- #: includes/admin/post-types/class-sp-admin-cpt-table.php:93
2300
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:117
2301
  msgid "Show all seasons"
2302
  msgstr "عرض جميع المواسم"
2303
 
2304
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:134
2305
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:166
2306
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:122
2307
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:130
2308
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:124
2309
- #: includes/admin/post-types/class-sp-admin-cpt-table.php:104
2310
  msgid "Show all teams"
2311
  msgstr "كرض كل الفرق"
2312
 
@@ -2316,21 +2679,21 @@ msgstr "كرض كل الفرق"
2316
  #: includes/admin/post-types/class-sp-admin-cpt-performance.php:43
2317
  #: includes/admin/post-types/class-sp-admin-cpt-result.php:43
2318
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:43
2319
- #: includes/admin/settings/class-sp-settings-config.php:107
2320
- #: includes/admin/settings/class-sp-settings-config.php:163
2321
- #: includes/admin/settings/class-sp-settings-config.php:232
2322
- #: includes/admin/settings/class-sp-settings-config.php:284
2323
- #: includes/admin/settings/class-sp-settings-config.php:343
2324
- #: includes/admin/settings/class-sp-settings-config.php:395
2325
  msgid "Label"
2326
  msgstr "ملصق"
2327
 
2328
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:45
2329
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:45
2330
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:107
2331
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:117
2332
- #: includes/admin/settings/class-sp-settings-config.php:286
2333
- #: includes/admin/settings/class-sp-settings-config.php:397
2334
  msgid "Equation"
2335
  msgstr "معادلة"
2336
 
@@ -2338,47 +2701,28 @@ msgstr "معادلة"
2338
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:46
2339
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:39
2340
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-statistic-details.php:36
2341
- #: includes/admin/settings/class-sp-settings-config.php:287
2342
- #: includes/admin/settings/class-sp-settings-config.php:398
2343
  msgid "Rounding"
2344
  msgstr "التقريب"
2345
 
2346
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:47
2347
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:113
2348
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:43
2349
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:96
2350
- #: includes/admin/settings/class-sp-settings-config.php:288
2351
  msgid "Sort Order"
2352
  msgstr "الترتيب"
2353
 
2354
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:55
2355
- #: includes/widgets/class-sp-widget-countdown.php:49
2356
- msgid "(Auto)"
2357
- msgstr "(تلقائي)"
2358
-
2359
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:63
2360
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:85
2361
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:56
2362
- #: includes/widgets/class-sp-widget-player-gallery.php:77
2363
- #: includes/widgets/class-sp-widget-player-list.php:98
2364
- msgid "Number"
2365
- msgstr "رقم"
2366
-
2367
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:64
2368
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:48
2369
- msgid "Role"
2370
- msgstr "القاعدة"
2371
 
2372
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:64
2373
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:31
2374
  msgid "URL"
2375
  msgstr "URL"
2376
 
2377
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:65
2378
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:31
2379
- msgid "Abbreviation"
2380
- msgstr "الإختصار"
2381
-
2382
  #: includes/admin/post-types/class-sp-admin-cpt.php:42
2383
  #, php-format
2384
  msgid "Insert into %s"
@@ -2389,102 +2733,76 @@ msgstr "إدخال إلى %s"
2389
  msgid "Uploaded to this %s"
2390
  msgstr "تم الرفع إلى %s"
2391
 
2392
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:120
 
2393
  msgid "Shortcodes"
2394
  msgstr "الأكواد المختصرة"
2395
 
2396
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:124
2397
  msgid "Video"
2398
  msgstr "فيديو"
2399
 
2400
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:132
2401
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:147
2402
  #: includes/admin/post-types/class-sp-admin-meta-boxes.php:162
2403
- msgid "Shortcode"
2404
- msgstr "رمز أختصار"
2405
-
2406
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:144
2407
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:159
2408
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:171
2409
  msgid "Profile"
2410
- msgstr "الملف الشخصي"
2411
 
2412
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:153
2413
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:164
2414
  msgid "Columns"
2415
  msgstr "أعمدة"
2416
 
2417
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:155
2418
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:26
2419
  msgid "Metrics"
2420
  msgstr "المقاييس"
2421
 
2422
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:157
2423
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:27
2424
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:26
2425
- msgid "Statistics"
2426
- msgstr "احصائيات"
2427
 
2428
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:173
2429
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:120
2430
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:168
2431
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
2432
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
2433
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
2434
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
2435
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
2436
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
2437
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:40
2438
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:52
2439
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:70
2440
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:85
2441
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:100
2442
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:115
2443
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:101
2444
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:145
2445
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:45
 
 
2446
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
 
2447
  #, php-format
2448
  msgid "Select %s"
2449
- msgstr "اختر %s"
2450
 
2451
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:31
2452
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:85
2453
  msgid "Status"
2454
  msgstr "الحالة"
2455
 
2456
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:116
2457
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
2458
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:99
2459
- #: includes/widgets/class-sp-widget-event-blocks.php:100
2460
- #: includes/widgets/class-sp-widget-event-list.php:103
2461
- #: includes/widgets/class-sp-widget-player-gallery.php:96
2462
- #: includes/widgets/class-sp-widget-player-list.php:117
2463
- msgid "Ascending"
2464
- msgstr "تصاعدي"
2465
-
2466
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:117
2467
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
2468
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:100
2469
- #: includes/widgets/class-sp-widget-event-blocks.php:101
2470
- #: includes/widgets/class-sp-widget-event-list.php:104
2471
- #: includes/widgets/class-sp-widget-player-gallery.php:97
2472
- #: includes/widgets/class-sp-widget-player-list.php:118
2473
- msgid "Descending"
2474
- msgstr "تنازلي"
2475
-
2476
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-shortcode.php:26
2477
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:24
2478
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-shortcode.php:26
 
2479
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-shortcode.php:24
2480
  msgid ""
2481
  "Copy this code and paste it into your post, page or text widget content."
2482
  msgstr "أنسخ هذا الرمز وألصقه في آخر، أو نص صفحة المحتويات القطعة الخاصة بك."
2483
 
2484
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:47
2485
- msgid "Disable"
2486
- msgstr "تعطيل"
2487
-
2488
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2489
  msgid "Attended"
2490
  msgstr "حضر"
@@ -2497,6 +2815,11 @@ msgstr "أساسي"
2497
  msgid "Substituted"
2498
  msgstr "أستبدل"
2499
 
 
 
 
 
 
2500
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
2501
  msgid "for"
2502
  msgstr ""
@@ -2505,6 +2828,13 @@ msgstr ""
2505
  msgid "against"
2506
  msgstr ""
2507
 
 
 
 
 
 
 
 
2508
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:44
2509
  msgid "Streak"
2510
  msgstr "خط"
@@ -2517,16 +2847,29 @@ msgstr "آخر 5"
2517
  msgid "Last 10"
2518
  msgstr "آخر 10"
2519
 
2520
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:160
 
 
 
 
 
 
 
 
 
 
 
 
 
2521
  msgid "Starting Lineup"
2522
  msgstr "التشكيلة الأساسية"
2523
 
2524
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:161
2525
  msgid "Substitute"
2526
  msgstr "استبدل"
2527
 
2528
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:34
2529
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:92
2530
  msgid "&mdash; None &mdash;"
2531
  msgstr "&mdash; لا يوجد &mdash;"
2532
 
@@ -2534,338 +2877,347 @@ msgstr "&mdash; لا يوجد &mdash;"
2534
  msgid "Remove video"
2535
  msgstr "حذف الفيديو"
2536
 
2537
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:33
2538
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:86
2539
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:83
2540
- msgid "Cancel"
2541
- msgstr "إلغاء"
2542
-
2543
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:36
2544
  msgid "Add video"
2545
  msgstr "أضف فيديو"
2546
 
2547
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:25
2548
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:25
2549
- msgid "Performance"
2550
- msgstr "الأداء"
2551
-
2552
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:42
2553
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:46
2554
  msgid "Values"
2555
  msgstr "القيم"
2556
 
2557
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:43
2558
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:47
2559
  msgid "Adjustments"
2560
  msgstr "الضوابط"
2561
 
2562
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:82
2563
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:79
2564
- #: includes/admin/settings/class-sp-settings-config.php:118
2565
- #: includes/admin/settings/class-sp-settings-config.php:191
2566
- #: includes/admin/settings/class-sp-settings-config.php:243
2567
- #: includes/admin/settings/class-sp-settings-config.php:301
2568
- #: includes/admin/settings/class-sp-settings-config.php:354
2569
- #: includes/admin/settings/class-sp-settings-config.php:410
2570
  msgid "Edit"
2571
  msgstr "تحرير"
2572
 
2573
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:87
2574
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:84
2575
  msgid "Save"
2576
  msgstr "حفظ"
2577
 
2578
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:73
2579
- msgid "Grouping"
2580
- msgstr "التجميع"
2581
-
2582
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:80
2583
- msgid "Sort by"
2584
- msgstr "فرز حسب"
2585
-
2586
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:86
2587
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:63
2588
- msgid "Current Teams"
2589
- msgstr "الفرق الحالية"
2590
-
2591
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:25
2592
- #: includes/admin/views/html-admin-page-status.php:24
2593
- msgid "Site URL"
2594
- msgstr "رابط الموقع"
2595
-
2596
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:33
2597
- msgid ""
2598
- "The abbreviation is not prominent by default; however, some themes may show "
2599
- "it"
2600
- msgstr ""
2601
-
2602
- #: includes/admin/settings/class-sp-settings-config.php:25
2603
- msgid "Configure"
2604
- msgstr "إعداد"
2605
-
2606
- #: includes/admin/settings/class-sp-settings-config.php:46
2607
- msgid "Configure SportsPress"
2608
- msgstr "إعداد سبورت بريس"
2609
-
2610
- #: includes/admin/settings/class-sp-settings-config.php:101
2611
- #: includes/admin/settings/class-sp-settings-config.php:155
2612
- #: includes/admin/settings/class-sp-settings-config.php:226
2613
- msgid "Used for events."
2614
- msgstr ""
2615
-
2616
- #: includes/admin/settings/class-sp-settings-config.php:162
2617
- #: includes/admin/settings/class-sp-settings-general.php:252
2618
- msgid "Primary"
2619
- msgstr "الأساسي"
2620
-
2621
- #: includes/admin/settings/class-sp-settings-config.php:164
2622
- msgid "Variables"
2623
- msgstr "المتغيرات"
2624
-
2625
- #: includes/admin/settings/class-sp-settings-config.php:177
2626
- #, php-format
2627
- msgid "Default (%s)"
2628
- msgstr "أفتراضي (%s)"
2629
-
2630
- #: includes/admin/settings/class-sp-settings-config.php:179
2631
- #: includes/admin/settings/class-sp-settings-general.php:73
2632
- #: includes/admin/settings/class-sp-settings-general.php:92
2633
- #: includes/admin/views/html-admin-page-status.php:65
2634
- #: includes/widgets/class-sp-widget-event-blocks.php:71
2635
- #: includes/widgets/class-sp-widget-event-blocks.php:84
2636
- #: includes/widgets/class-sp-widget-event-blocks.php:99
2637
- #: includes/widgets/class-sp-widget-event-calendar.php:64
2638
- #: includes/widgets/class-sp-widget-event-list.php:74
2639
- #: includes/widgets/class-sp-widget-event-list.php:87
2640
- #: includes/widgets/class-sp-widget-event-list.php:102
2641
- #: includes/widgets/class-sp-widget-player-gallery.php:76
2642
- #: includes/widgets/class-sp-widget-player-list.php:97
2643
- msgid "Default"
2644
- msgstr "الافتراضي"
2645
-
2646
- #: includes/admin/settings/class-sp-settings-config.php:278
2647
- msgid "Used for league tables."
2648
- msgstr "يستخدم في جداول الدوري"
2649
 
2650
- #: includes/admin/settings/class-sp-settings-config.php:337
2651
- #: includes/admin/settings/class-sp-settings-config.php:389
2652
- msgid "Used for player lists."
2653
- msgstr "يستخدم في قوائم اللاعبين"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2654
 
2655
  #: includes/admin/settings/class-sp-settings-events.php:42
2656
  msgid "Event Options"
2657
  msgstr "خيارات الحدث"
2658
 
2659
  #: includes/admin/settings/class-sp-settings-events.php:45
2660
- #: includes/admin/settings/class-sp-settings-events.php:155
2661
- #: includes/admin/settings/class-sp-settings-players.php:82
2662
- #: includes/admin/settings/class-sp-settings-teams.php:73
2663
- msgid "Limit"
2664
- msgstr "الحد الأقصى"
2665
-
2666
- #: includes/admin/settings/class-sp-settings-events.php:49
2667
- #: includes/admin/settings/class-sp-settings-teams.php:77
2668
- msgid "teams"
2669
- msgstr "فرق"
2670
-
2671
- #: includes/admin/settings/class-sp-settings-events.php:61
2672
- #: includes/admin/settings/class-sp-settings-teams.php:49
2673
- #: includes/widgets/class-sp-widget-league-table.php:90
2674
- msgid "Display logos"
2675
- msgstr "عرض الشعارات"
2676
 
2677
- #: includes/admin/settings/class-sp-settings-events.php:69
2678
- msgid "Display maps"
2679
- msgstr "عرض الخرائط"
2680
 
2681
- #: includes/admin/settings/class-sp-settings-events.php:77
2682
- #: includes/admin/settings/class-sp-settings-events.php:140
2683
  msgid "Link venues"
2684
  msgstr "رابط الملعب"
2685
 
2686
- #: includes/admin/settings/class-sp-settings-events.php:85
2687
- msgid "Results"
2688
- msgstr "النتائج"
 
 
 
 
 
 
 
 
 
2689
 
2690
  #: includes/admin/settings/class-sp-settings-events.php:86
2691
- msgid "Display outcomes"
2692
- msgstr "عرض النتائج"
2693
 
2694
  #: includes/admin/settings/class-sp-settings-events.php:94
2695
- #, fuzzy
2696
- msgid "Display players"
2697
- msgstr "عرض البطولة"
2698
 
2699
- #: includes/admin/settings/class-sp-settings-events.php:111
2700
- #, fuzzy
2701
- msgid "Display staff"
 
 
 
2702
  msgstr "عرض الخرائط"
2703
 
2704
- #: includes/admin/settings/class-sp-settings-events.php:119
2705
- #, fuzzy
2706
- msgid "Link staff"
2707
- msgstr "رابط الفريق"
2708
 
2709
- #: includes/admin/settings/class-sp-settings-events.php:132
2710
- #: includes/admin/settings/class-sp-settings-players.php:65
2711
- #: includes/admin/settings/class-sp-settings-teams.php:57
2712
- msgid "Link teams"
2713
- msgstr "رابط الفريق"
2714
 
2715
- #: includes/admin/settings/class-sp-settings-events.php:147
2716
- #: includes/admin/settings/class-sp-settings-players.php:74
2717
- #: includes/admin/settings/class-sp-settings-teams.php:65
 
2718
  msgid "Pagination"
2719
  msgstr "أرقام الصفحات"
2720
 
2721
- #: includes/admin/settings/class-sp-settings-events.php:148
2722
- #: includes/admin/settings/class-sp-settings-players.php:75
2723
- #: includes/admin/settings/class-sp-settings-teams.php:66
 
2724
  msgid "Paginate"
2725
  msgstr "ترقيم الصفحات"
2726
 
2727
- #: includes/admin/settings/class-sp-settings-events.php:159
 
2728
  msgid "events"
2729
  msgstr "أحداث"
2730
 
2731
- #: includes/admin/settings/class-sp-settings-events.php:206
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2732
  msgid "Custom:"
2733
- msgstr "مخصص"
2734
 
2735
  #: includes/admin/settings/class-sp-settings-general.php:25
2736
  msgid "General"
2737
  msgstr "عام"
2738
 
2739
- #: includes/admin/settings/class-sp-settings-general.php:45
2740
  msgid "General Options"
2741
  msgstr "إعدادات عامة"
2742
 
2743
- #: includes/admin/settings/class-sp-settings-general.php:68
2744
  msgid "Google Maps"
2745
  msgstr ""
2746
 
2747
- #: includes/admin/settings/class-sp-settings-general.php:74
2748
  msgid "Satellite"
2749
  msgstr ""
2750
 
2751
- #: includes/admin/settings/class-sp-settings-general.php:75
2752
  msgid "Hybrid"
2753
  msgstr ""
2754
 
2755
- #: includes/admin/settings/class-sp-settings-general.php:76
2756
  msgid "Terrain"
2757
  msgstr ""
2758
 
2759
- #: includes/admin/settings/class-sp-settings-general.php:82
2760
  msgid "Styles and Scripts"
2761
  msgstr "المظهر وجافاسكربت"
2762
 
2763
- #: includes/admin/settings/class-sp-settings-general.php:87
2764
  msgid "Align"
2765
  msgstr ""
2766
 
2767
- #: includes/admin/settings/class-sp-settings-general.php:93
2768
  msgid "Left"
2769
  msgstr ""
2770
 
2771
- #: includes/admin/settings/class-sp-settings-general.php:94
2772
  msgid "Center"
2773
  msgstr ""
2774
 
2775
- #: includes/admin/settings/class-sp-settings-general.php:95
2776
  msgid "Right"
2777
  msgstr ""
2778
 
2779
- #: includes/admin/settings/class-sp-settings-general.php:100
2780
- #, fuzzy
2781
  msgid "Padding"
2782
- msgstr "العنوان"
2783
-
2784
- #: includes/admin/settings/class-sp-settings-general.php:104
2785
- #: includes/admin/settings/class-sp-settings-general.php:152
2786
- msgid "Auto"
2787
  msgstr ""
2788
 
2789
- #: includes/admin/settings/class-sp-settings-general.php:113
2790
  msgid "Custom CSS"
2791
  msgstr "نمط مخصص"
2792
 
2793
- #: includes/admin/settings/class-sp-settings-general.php:120
2794
  msgid "Scripts"
2795
  msgstr "جافاسكربت"
2796
 
 
 
 
 
2797
  #: includes/admin/settings/class-sp-settings-general.php:121
2798
- msgid "Responsive tables"
2799
- msgstr "جداول متلائمة"
2800
 
2801
- #: includes/admin/settings/class-sp-settings-general.php:126
2802
- msgid "This will enable a script allowing the tables to be responsive."
2803
- msgstr "هاذا سوف يمكن الكود الذي يسمح للجداول بأن تكون متلائمة"
2804
 
2805
  #: includes/admin/settings/class-sp-settings-general.php:130
2806
- msgid "Sortable tables"
2807
- msgstr "جداول قابلة للفرز"
 
 
 
 
 
2808
 
2809
  #: includes/admin/settings/class-sp-settings-general.php:135
2810
- msgid "This will enable a script allowing the tables to be sortable."
2811
- msgstr "هاذا سوف يمكن الكود الذي يسمح للجداول بأن تكون قابلة للفرز"
2812
 
2813
- #: includes/admin/settings/class-sp-settings-general.php:139
2814
- msgid "Live countdowns"
2815
- msgstr "العد التنازلي المباشر"
2816
 
2817
- #: includes/admin/settings/class-sp-settings-general.php:144
2818
- msgid "This will enable a script allowing the countdowns to be animated."
2819
- msgstr "هاذا سوف يمكن الكود الذي يسمح للعد التنازلي أن يكون متحركاً"
2820
 
2821
- #: includes/admin/settings/class-sp-settings-general.php:148
2822
  msgid "Header Offset"
2823
  msgstr ""
2824
 
2825
- #: includes/admin/settings/class-sp-settings-general.php:237
2826
  msgid "Frontend Styles"
2827
  msgstr "أنماط الواجهة الأمامية"
2828
 
2829
- #: includes/admin/settings/class-sp-settings-general.php:253
 
 
 
 
 
2830
  msgid "Background"
2831
  msgstr "الخلفية"
2832
 
2833
- #: includes/admin/settings/class-sp-settings-general.php:254
2834
  #: includes/admin/settings/class-sp-settings-text.php:25
2835
  #: includes/admin/settings/class-sp-settings-text.php:41
2836
  msgid "Text"
2837
  msgstr "حقل نص"
2838
 
2839
- #: includes/admin/settings/class-sp-settings-general.php:255
2840
  msgid "Heading"
2841
  msgstr "العنوان"
2842
 
2843
- #: includes/admin/settings/class-sp-settings-general.php:256
2844
- msgid "Link"
2845
- msgstr ""
2846
-
2847
- #: includes/admin/settings/class-sp-settings-general.php:262
2848
  msgid "Enable"
2849
- msgstr "تمكين"
 
 
 
 
2850
 
2851
  #: includes/admin/settings/class-sp-settings-players.php:43
2852
- #: includes/admin/settings/class-sp-settings-staff.php:45
 
 
 
 
2853
  msgid "Display national flags"
2854
  msgstr "عرض أعلام الدول"
2855
 
 
 
 
 
 
 
 
 
2856
  #: includes/admin/settings/class-sp-settings-staff.php:41
2857
- #, fuzzy
2858
  msgid "Staff Options"
2859
- msgstr "خيارات الفريق"
 
 
 
 
2860
 
2861
  #: includes/admin/settings/class-sp-settings-teams.php:41
2862
  msgid "Team Options"
2863
  msgstr "خيارات الفريق"
2864
 
 
 
 
 
2865
  #: includes/admin/settings/class-sp-settings-text.php:41
2866
  msgid "The following options affect how words are displayed on the frontend."
2867
  msgstr "هذه الخيارات تؤثر في كيفية عرض الكلمات في الواجهة الأمامية"
2868
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2869
  #: includes/admin/views/html-admin-page-status.php:5
2870
  msgid "Please include this information when requesting support:"
2871
  msgstr "رجاءً ضمن هذه البيانات عند طلب الدعم"
@@ -2921,11 +3273,9 @@ msgstr "حدود ذاكرة ووردبريس"
2921
  #: includes/admin/views/html-admin-page-status.php:53
2922
  #, php-format
2923
  msgid ""
2924
- "%s - We recommend setting memory to at least 64MB. See: <a href=\"%s"
2925
- "\">Increasing memory allocated to PHP</a>"
2926
- msgstr ""
2927
- "%s - نحن نفضل أن يكون كحد ادنى 64MB. شاهد: <a href=\"%s\">زيادة الذاكرة "
2928
- "المخصصة لل PHP</a>"
2929
 
2930
  #: includes/admin/views/html-admin-page-status.php:60
2931
  msgid "WP Debug Mode"
@@ -2990,9 +3340,7 @@ msgid ""
2990
  "Your server does not have fsockopen or cURL enabled - PayPal IPN and other "
2991
  "scripts which communicate with other servers will not work. Contact your "
2992
  "hosting provider."
2993
- msgstr ""
2994
- "الخام يمنع كل من fsockopen و cURL - خدمات PayPal IPN والخدمات التي تتصل "
2995
- "بخوادم أخرى لن تعمل. تواصل مع خادمك لتفعيلها."
2996
 
2997
  #: includes/admin/views/html-admin-page-status.php:120
2998
  msgid "SOAP Client"
@@ -3005,11 +3353,9 @@ msgstr "خادمك يمكن عميل SOAP."
3005
  #: includes/admin/views/html-admin-page-status.php:125
3006
  #, php-format
3007
  msgid ""
3008
- "Your server does not have the <a href=\"%s\">SOAP Client</a> class enabled - "
3009
- "some gateway plugins which use SOAP may not work as expected."
3010
- msgstr ""
3011
- "خادمك لا يمكن <a href=\"%s\">عميل SOAP</a> - بعض إضافات طرق الدفع تستخدمه "
3012
- "وقد لا تعمل كما يجب."
3013
 
3014
  #: includes/admin/views/html-admin-page-status.php:148
3015
  msgid "Plugins"
@@ -3017,11 +3363,11 @@ msgstr "الإضافات"
3017
 
3018
  #: includes/admin/views/html-admin-page-status.php:154
3019
  msgid "Installed Plugins"
3020
- msgstr "الإضافات المثبتة"
3021
 
3022
  #: includes/admin/views/html-admin-page-status.php:174
3023
  msgid "Visit plugin homepage"
3024
- msgstr "زيارة موقع الإضافة"
3025
 
3026
  #: includes/admin/views/html-admin-page-status.php:198
3027
  #: includes/admin/views/html-admin-page-status.php:413
@@ -3050,7 +3396,7 @@ msgstr ""
3050
 
3051
  #: includes/admin/views/html-admin-page-status.php:365
3052
  msgid "Theme"
3053
- msgstr "القالب"
3054
 
3055
  #: includes/admin/views/html-admin-page-status.php:402
3056
  msgid "Theme Name"
@@ -3066,7 +3412,7 @@ msgstr "رابط الكاتب"
3066
 
3067
  #: includes/admin/views/html-admin-page-status.php:426
3068
  msgid "Templates"
3069
- msgstr "القوالب"
3070
 
3071
  #: includes/admin/views/html-admin-page-status.php:459
3072
  #, php-format
@@ -3098,8 +3444,8 @@ msgstr "أخف هذا الإشعار"
3098
  #: includes/admin/views/html-notice-template-check.php:5
3099
  msgid ""
3100
  "<strong>Your theme has bundled outdated copies of SportsPress template "
3101
- "files</strong> &#8211; if you encounter functionality issues on the frontend "
3102
- "this could the reason. Ensure you update or remove them (in general we "
3103
  "recommend only bundling the template files you actually need to customize). "
3104
  "See the system report for full details."
3105
  msgstr ""
@@ -3109,9 +3455,7 @@ msgid ""
3109
  "<strong>Your theme does not declare SportsPress support</strong> &#8211; if "
3110
  "you encounter layout issues please read our integration guide or choose a "
3111
  "SportsPress theme :)"
3112
- msgstr ""
3113
- "<strong>قالبك الحالي لا يدعم SportsPress</strong> &#8211; إذا واجهت مشاكل في "
3114
- "التصميم رجاءً أقرأ دليل التكامل أو ثبت أحد قوالب SportsPress :)"
3115
 
3116
  #: includes/admin/views/html-notice-theme-support.php:7
3117
  msgid "Theme Integration Guide"
@@ -3121,11 +3465,7 @@ msgstr "دليل تكامل القوالب"
3121
  msgid "A clock that counts down to an upcoming event."
3122
  msgstr "ساعة العد التنازلي للحدث القادم ."
3123
 
3124
- #: includes/widgets/class-sp-widget-countdown.php:6
3125
- msgid "SportsPress Countdown"
3126
- msgstr "SportsPress العد التنازلي"
3127
-
3128
- #: includes/widgets/class-sp-widget-countdown.php:39
3129
  #: includes/widgets/class-sp-widget-event-blocks.php:48
3130
  #: includes/widgets/class-sp-widget-event-calendar.php:41
3131
  #: includes/widgets/class-sp-widget-event-list.php:51
@@ -3135,173 +3475,43 @@ msgstr "SportsPress العد التنازلي"
3135
  msgid "Title:"
3136
  msgstr "العنوان:"
3137
 
3138
- #: includes/widgets/class-sp-widget-countdown.php:42
3139
- #: includes/widgets/class-sp-widget-event-blocks.php:51
3140
- #: includes/widgets/class-sp-widget-event-calendar.php:44
3141
- #: includes/widgets/class-sp-widget-event-list.php:54
3142
- #: includes/widgets/class-sp-widget-league-table.php:50
3143
- #: includes/widgets/class-sp-widget-player-gallery.php:53
3144
- #: includes/widgets/class-sp-widget-player-list.php:53
3145
- #, php-format
3146
- msgid "Select %s:"
3147
- msgstr "حدد %s:"
3148
-
3149
- #: includes/widgets/class-sp-widget-countdown.php:62
3150
- msgid "Display venue"
3151
- msgstr "عرض الملعب"
3152
-
3153
- #: includes/widgets/class-sp-widget-countdown.php:65
3154
- msgid "Display league"
3155
- msgstr "عرض البطولة"
3156
-
3157
  #: includes/widgets/class-sp-widget-event-blocks.php:5
3158
  #: includes/widgets/class-sp-widget-event-list.php:5
3159
  msgid "A list of events."
3160
  msgstr "قائمة الأحداث."
3161
 
3162
- #: includes/widgets/class-sp-widget-event-blocks.php:6
3163
- msgid "SportsPress Event Blocks"
3164
- msgstr ""
3165
-
3166
- #: includes/widgets/class-sp-widget-event-blocks.php:68
3167
- #: includes/widgets/class-sp-widget-event-calendar.php:61
3168
- #: includes/widgets/class-sp-widget-event-list.php:71
3169
- msgid "Status:"
3170
- msgstr "الحالة:"
3171
-
3172
- #: includes/widgets/class-sp-widget-event-blocks.php:81
3173
- #: includes/widgets/class-sp-widget-event-list.php:84
3174
- #, fuzzy
3175
- msgid "Date:"
3176
- msgstr "التاريخ"
3177
-
3178
- #: includes/widgets/class-sp-widget-event-blocks.php:94
3179
- #: includes/widgets/class-sp-widget-event-list.php:97
3180
- msgid "Number of events to show:"
3181
- msgstr "عدد الأحداث المعروضة"
3182
-
3183
- #: includes/widgets/class-sp-widget-event-blocks.php:97
3184
- #: includes/widgets/class-sp-widget-event-list.php:100
3185
- #: includes/widgets/class-sp-widget-player-gallery.php:94
3186
- #: includes/widgets/class-sp-widget-player-list.php:115
3187
- msgid "Sort Order:"
3188
- msgstr "الترتيب:"
3189
-
3190
- #: includes/widgets/class-sp-widget-event-blocks.php:105
3191
- #: includes/widgets/class-sp-widget-event-calendar.php:75
3192
- #: includes/widgets/class-sp-widget-event-list.php:126
3193
- msgid "Display link to view all events"
3194
- msgstr "عرض رابط لعرض جميع الأحداث"
3195
-
3196
  #: includes/widgets/class-sp-widget-event-calendar.php:5
3197
  msgid "A calendar of events."
3198
  msgstr "تقويم الأحداث."
3199
 
3200
  #: includes/widgets/class-sp-widget-event-calendar.php:6
3201
- msgid "SportsPress Event Calendar"
3202
- msgstr ""
3203
-
3204
- #: includes/widgets/class-sp-widget-event-list.php:6
3205
- msgid "SportsPress Event List"
3206
  msgstr ""
3207
 
3208
- #: includes/widgets/class-sp-widget-event-list.php:108
3209
- #: includes/widgets/class-sp-widget-league-table.php:70
3210
- msgid "Columns:"
3211
- msgstr "أعمدة :"
3212
-
3213
  #: includes/widgets/class-sp-widget-league-table.php:5
3214
  msgid "Display a league table."
3215
  msgstr "عرض جدول الدوري."
3216
 
3217
- #: includes/widgets/class-sp-widget-league-table.php:6
3218
- msgid "SportsPress League Table"
3219
- msgstr "جدول بطولة SportsPress"
3220
-
3221
- #: includes/widgets/class-sp-widget-league-table.php:66
3222
- msgid "Number of teams to show:"
3223
- msgstr "عدد الفرق إلى المعرض:"
3224
-
3225
- #: includes/widgets/class-sp-widget-league-table.php:93
3226
- msgid "Display link to view full table"
3227
- msgstr "عرض رابط لعرض الجدول الكامل"
3228
-
3229
  #: includes/widgets/class-sp-widget-player-gallery.php:5
3230
  msgid "Display a gallery of players."
3231
  msgstr "عرض معرض اللاعبين."
3232
 
3233
  #: includes/widgets/class-sp-widget-player-gallery.php:6
3234
- msgid "SportsPress Player Gallery"
3235
- msgstr "SportsPress معرض لاعبين"
3236
-
3237
- #: includes/widgets/class-sp-widget-player-gallery.php:69
3238
- #: includes/widgets/class-sp-widget-player-list.php:69
3239
- msgid "Number of players to show:"
3240
- msgstr "عرض عدد اللاعبين للعرض :"
3241
-
3242
- #: includes/widgets/class-sp-widget-player-gallery.php:72
3243
- #: includes/widgets/class-sp-widget-player-list.php:93
3244
- msgid "Sort by:"
3245
- msgstr "ترتيب حسب:"
3246
-
3247
- #: includes/widgets/class-sp-widget-player-gallery.php:101
3248
- #: includes/widgets/class-sp-widget-player-list.php:122
3249
- msgid "Display link to view all players"
3250
- msgstr "عرض رابط لعرض جميع اللاعبين"
3251
-
3252
- #: includes/widgets/class-sp-widget-player-gallery.php:104
3253
- msgid "Display player names on hover"
3254
- msgstr "عرض أسماء اللاعبين المرفرفين"
3255
 
3256
  #: includes/widgets/class-sp-widget-player-list.php:5
3257
  msgid "Display a list of players."
3258
  msgstr "عرض قائمة اللاعبين."
3259
 
3260
- #: includes/widgets/class-sp-widget-player-list.php:6
3261
- msgid "SportsPress Player List"
3262
- msgstr "قائمة لاعبين SportsPress "
3263
-
3264
  #: includes/widgets/class-sp-widget-player-list.php:73
3265
  msgid "Performance:"
3266
  msgstr "الأداء:"
3267
 
3268
  #. translators: Calendar caption: 1: month name, 2: 4-digit year
3269
- #: templates/event-calendar.php:92 templates/event-calendar.php:120
3270
- #: templates/event-calendar.php:128
3271
  #, php-format
3272
  msgctxt "calendar caption"
3273
  msgid "%1$s %2$s"
3274
  msgstr ""
3275
-
3276
- #~ msgid "Baseball"
3277
- #~ msgstr "بيسبول"
3278
-
3279
- #~ msgid "Basketball"
3280
- #~ msgstr "كرة السلة"
3281
-
3282
- #~ msgid "Cricket"
3283
- #~ msgstr "كركت"
3284
-
3285
- #~ msgid "American Football"
3286
- #~ msgstr "كرة القدم الأمريكية"
3287
-
3288
- #~ msgid "Australian Rules Football"
3289
- #~ msgstr "قوانين كرة القدم الأسترالية"
3290
-
3291
- #~ msgid "Competitive Gaming"
3292
- #~ msgstr "الألعاب التنافسية"
3293
-
3294
- #~ msgid "Golf"
3295
- #~ msgstr "قولف"
3296
-
3297
- #~ msgid "Hockey"
3298
- #~ msgstr "هوكي"
3299
-
3300
- #~ msgid "Racing"
3301
- #~ msgstr "سباق"
3302
-
3303
- #~ msgid "Rugby"
3304
- #~ msgstr "الركبي"
3305
-
3306
- #~ msgid "Soccer (Association Football)"
3307
- #~ msgstr "كرة القدم (اتحاد كرة القدم)"
1
+ #
2
  # Translators:
3
+ # Adame <inactive+adamedotco@transifex.com>, 2014
4
  # karama89 <ahmad.karama@hotmail.com>, 2014
5
  # hushiea <hushiea@gmail.com>, 2014
6
  # Mustafa Mohammed <mustafamsy@gmail.com>, 2014
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: SportsPress\n"
10
+ "POT-Creation-Date: 2014-08-26 02:27+1000\n"
11
+ "PO-Revision-Date: 2014-08-25 16:30+0000\n"
12
  "Last-Translator: ThemeBoy <support@themeboy.com>\n"
13
+ "Language-Team: Arabic (http://www.transifex.com/projects/p/sportspress/language/ar/)\n"
 
 
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
+ "Language: ar\n"
18
+ "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
19
  "X-Generator: Poedit 1.6.3\n"
20
  "X-Poedit-Basepath: ..\n"
21
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
 
 
22
  "X-Poedit-SearchPath-0: .\n"
23
+ "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
+ #: sportspress.php:82 sportspress.php:91
26
  msgid "Cheatin&#8217; huh?"
27
  msgstr "&#8217;تحاول الغش؟"
28
 
29
+ #: sportspress.php:132 includes/admin/class-sp-admin-menus.php:113
30
  msgid "Settings"
31
+ msgstr "إعدادات"
32
 
33
+ #: sportspress.php:133
34
+ msgid "Docs"
35
  msgstr ""
36
 
37
+ #: sportspress.php:134
38
+ msgid "Upgrade"
39
  msgstr ""
40
 
41
+ #: assets/js/admin/editor-lang.php:5
42
+ msgid "SportsPress Shortcodes"
43
+ msgstr ""
44
+
45
+ #: assets/js/admin/editor-lang.php:6
46
+ #: includes/admin/settings/class-sp-settings-general.php:96
47
+ #: includes/admin/settings/class-sp-settings-general.php:163
48
+ msgid "Auto"
49
+ msgstr ""
50
+
51
+ #: assets/js/admin/editor-lang.php:7
52
+ msgid "Manual"
53
+ msgstr ""
54
 
55
+ #: assets/js/admin/editor-lang.php:8
56
+ msgid "Select..."
57
+ msgstr ""
58
+
59
+ #: assets/js/admin/editor-lang.php:9 includes/class-sp-ajax.php:57
60
+ #: includes/class-sp-ajax.php:101 includes/class-sp-ajax.php:130
61
+ #: includes/class-sp-ajax.php:159 includes/class-sp-ajax.php:290
62
+ #: includes/class-sp-post-types.php:371 includes/sp-core-functions.php:1086
63
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:99
64
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:225
65
+ #: includes/widgets/class-sp-widget-countdown.php:62
66
+ #: includes/widgets/class-sp-widget-event-list.php:111
67
+ #: templates/event-list.php:66
68
+ msgid "Event"
69
+ msgstr "حدث"
70
+
71
+ #: assets/js/admin/editor-lang.php:10 includes/sp-core-functions.php:1085
72
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:101
73
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:104
74
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:107
75
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:111
76
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:114
77
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:117
78
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:123
79
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:135
80
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:140
81
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:150
82
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:157
83
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:168
84
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:173
85
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:189
86
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:31
87
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:27
88
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
89
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:106
90
+ #: includes/admin/settings/class-sp-settings-events.php:173
91
+ #: templates/event-details.php:34
92
+ msgid "Details"
93
+ msgstr "تفاصيل"
94
+
95
+ #: assets/js/admin/editor-lang.php:11
96
+ #: includes/admin/importers/class-sp-event-importer.php:30
97
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
98
+ msgid "Results"
99
+ msgstr "النتائج"
100
+
101
+ #: assets/js/admin/editor-lang.php:12
102
+ #: includes/widgets/class-sp-widget-countdown.php:6
103
+ msgid "Countdown"
104
+ msgstr ""
105
+
106
+ #: assets/js/admin/editor-lang.php:13
107
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:49
108
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:25
109
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:25
110
+ msgid "Performance"
111
+ msgstr "الأداء"
112
+
113
+ #: assets/js/admin/editor-lang.php:14 includes/class-sp-ajax.php:188
114
+ #: includes/class-sp-ajax.php:236 includes/class-sp-ajax.php:327
115
+ #: includes/class-sp-formats.php:31 includes/class-sp-post-types.php:401
116
+ #: includes/widgets/class-sp-widget-event-blocks.php:51
117
+ #: includes/widgets/class-sp-widget-event-calendar.php:44
118
+ #: includes/widgets/class-sp-widget-event-list.php:54
119
+ msgid "Calendar"
120
+ msgstr "تقويم"
121
+
122
+ #: assets/js/admin/editor-lang.php:15
123
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:160
124
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:27
125
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:26
126
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:31
127
+ msgid "Statistics"
128
+ msgstr "احصائيات"
129
+
130
+ #: assets/js/admin/editor-lang.php:16 includes/class-sp-ajax.php:401
131
+ #: includes/class-sp-post-types.php:462
132
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:151
133
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:55
134
+ #: includes/widgets/class-sp-widget-league-table.php:6
135
+ #: includes/widgets/class-sp-widget-league-table.php:50
136
+ msgid "League Table"
137
+ msgstr "جدول البطولة"
138
+
139
+ #: assets/js/admin/editor-lang.php:17 includes/class-sp-ajax.php:525
140
+ #: includes/class-sp-ajax.php:615 includes/class-sp-post-types.php:523
141
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:169
142
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:55
143
+ #: includes/widgets/class-sp-widget-player-gallery.php:53
144
+ #: includes/widgets/class-sp-widget-player-list.php:6
145
+ #: includes/widgets/class-sp-widget-player-list.php:53
146
+ msgid "Player List"
147
+ msgstr "قائمة اللعبين"
148
+
149
+ #: assets/js/admin/editor-lang.php:18 includes/class-sp-formats.php:32
150
+ #: includes/class-sp-formats.php:36
151
+ msgid "List"
152
+ msgstr "قائمة"
153
+
154
+ #: assets/js/admin/editor-lang.php:19 includes/class-sp-formats.php:33
155
+ msgid "Blocks"
156
+ msgstr ""
157
+
158
+ #: assets/js/admin/editor-lang.php:20 includes/class-sp-ajax.php:467
159
+ #: includes/class-sp-ajax.php:496 includes/class-sp-install.php:160
160
+ #: includes/class-sp-player-list.php:376 includes/class-sp-post-types.php:493
161
+ #: includes/sp-core-functions.php:1092
162
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:63
163
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:51
164
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:136
165
+ #: templates/event-performance.php:75
166
  msgid "Player"
167
  msgstr "الاعب"
168
 
169
+ #: assets/js/admin/editor-lang.php:21 includes/class-sp-formats.php:37
170
+ msgid "Gallery"
171
+ msgstr "معرض"
172
+
173
+ #: includes/class-sp-ajax.php:57 includes/class-sp-ajax.php:101
174
+ #: includes/class-sp-ajax.php:130 includes/class-sp-ajax.php:159
175
+ #: includes/class-sp-ajax.php:188 includes/class-sp-ajax.php:236
176
+ #: includes/class-sp-ajax.php:327 includes/class-sp-ajax.php:401
177
+ #: includes/class-sp-ajax.php:467 includes/class-sp-ajax.php:496
178
+ #: includes/class-sp-ajax.php:525 includes/class-sp-ajax.php:615
179
+ #: includes/widgets/class-sp-widget-countdown.php:45
180
+ #: includes/widgets/class-sp-widget-countdown.php:62
181
+ #: includes/widgets/class-sp-widget-event-blocks.php:51
182
+ #: includes/widgets/class-sp-widget-event-calendar.php:44
183
+ #: includes/widgets/class-sp-widget-event-list.php:54
184
+ #: includes/widgets/class-sp-widget-league-table.php:50
185
+ #: includes/widgets/class-sp-widget-player-gallery.php:53
186
+ #: includes/widgets/class-sp-widget-player-list.php:53
187
+ #, php-format
188
+ msgid "Select %s:"
189
+ msgstr "حدد %s:"
190
 
191
+ #: includes/class-sp-ajax.php:63
192
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:55
193
+ #: includes/widgets/class-sp-widget-countdown.php:69
194
+ msgid "(Auto)"
195
+ msgstr "(تلقائي)"
196
 
197
+ #: includes/class-sp-ajax.php:74
198
+ #: includes/widgets/class-sp-widget-countdown.php:83
199
+ msgid "Display venue"
200
+ msgstr "عرض الملعب"
201
 
202
+ #: includes/class-sp-ajax.php:80
203
+ #: includes/admin/settings/class-sp-settings-events.php:174
204
+ #: includes/widgets/class-sp-widget-countdown.php:86
205
+ msgid "Display league"
206
+ msgstr "عرض البطولة"
207
 
208
+ #: includes/class-sp-ajax.php:84 includes/class-sp-ajax.php:113
209
+ #: includes/class-sp-ajax.php:142 includes/class-sp-ajax.php:171
210
+ #: includes/class-sp-ajax.php:219 includes/class-sp-ajax.php:310
211
+ #: includes/class-sp-ajax.php:384 includes/class-sp-ajax.php:450
212
+ #: includes/class-sp-ajax.php:479 includes/class-sp-ajax.php:508
213
+ #: includes/class-sp-ajax.php:598 includes/class-sp-ajax.php:675
214
+ #, php-format
215
+ msgid "Insert %s"
216
+ msgstr ""
217
 
218
+ #: includes/class-sp-ajax.php:84 includes/class-sp-ajax.php:113
219
+ #: includes/class-sp-ajax.php:142 includes/class-sp-ajax.php:171
220
+ #: includes/class-sp-ajax.php:219 includes/class-sp-ajax.php:310
221
+ #: includes/class-sp-ajax.php:384 includes/class-sp-ajax.php:450
222
+ #: includes/class-sp-ajax.php:479 includes/class-sp-ajax.php:508
223
+ #: includes/class-sp-ajax.php:598 includes/class-sp-ajax.php:675
224
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:133
225
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:149
226
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:165
227
+ msgid "Shortcode"
228
+ msgstr "رمز أختصار"
229
 
230
+ #: includes/class-sp-ajax.php:85 includes/class-sp-ajax.php:114
231
+ #: includes/class-sp-ajax.php:143 includes/class-sp-ajax.php:172
232
+ #: includes/class-sp-ajax.php:220 includes/class-sp-ajax.php:311
233
+ #: includes/class-sp-ajax.php:385 includes/class-sp-ajax.php:451
234
+ #: includes/class-sp-ajax.php:480 includes/class-sp-ajax.php:509
235
+ #: includes/class-sp-ajax.php:599 includes/class-sp-ajax.php:676
236
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:33
237
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:88
238
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:88
239
+ msgid "Cancel"
240
+ msgstr "إلغاء"
241
 
242
+ #: includes/class-sp-ajax.php:194 includes/class-sp-ajax.php:264
243
+ #: includes/class-sp-ajax.php:355 includes/class-sp-post-types.php:37
244
+ #: includes/class-sp-post-types.php:66 includes/class-sp-post-types.php:95
245
+ #: includes/class-sp-post-types.php:124 includes/class-sp-post-types.php:153
246
+ #: includes/sp-core-functions.php:407 includes/sp-core-functions.php:438
247
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:57
248
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:72
249
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:87
250
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:102
251
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:36
252
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:49
253
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:36
254
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:51
255
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:66
256
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:33
257
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:48
258
+ #: includes/admin/views/html-admin-overview.php:79
259
+ #: includes/widgets/class-sp-widget-countdown.php:52
260
+ #: includes/widgets/class-sp-widget-event-blocks.php:55
261
+ #: includes/widgets/class-sp-widget-event-calendar.php:48
262
+ #: includes/widgets/class-sp-widget-event-list.php:58
263
+ msgid "All"
264
+ msgstr "الكل"
265
 
266
+ #: includes/class-sp-ajax.php:202 includes/class-sp-ajax.php:249
267
+ #: includes/class-sp-ajax.php:340
268
+ #: includes/widgets/class-sp-widget-event-blocks.php:68
269
+ #: includes/widgets/class-sp-widget-event-calendar.php:61
270
+ #: includes/widgets/class-sp-widget-event-list.php:71
271
+ msgid "Status:"
272
+ msgstr "الحالة:"
273
 
274
+ #: includes/class-sp-ajax.php:206 includes/class-sp-ajax.php:253
275
+ #: includes/class-sp-ajax.php:263 includes/class-sp-ajax.php:280
276
+ #: includes/class-sp-ajax.php:344 includes/class-sp-ajax.php:354
277
+ #: includes/class-sp-ajax.php:371 includes/class-sp-ajax.php:567
278
+ #: includes/class-sp-ajax.php:585 includes/class-sp-ajax.php:638
279
+ #: includes/class-sp-ajax.php:656
280
+ #: includes/admin/settings/class-sp-settings-general.php:62
281
+ #: includes/admin/settings/class-sp-settings-general.php:84
282
+ #: includes/admin/views/html-admin-config.php:101
283
+ #: includes/admin/views/html-admin-page-status.php:65
284
+ #: includes/widgets/class-sp-widget-event-blocks.php:71
285
+ #: includes/widgets/class-sp-widget-event-blocks.php:84
286
+ #: includes/widgets/class-sp-widget-event-blocks.php:99
287
+ #: includes/widgets/class-sp-widget-event-calendar.php:64
288
+ #: includes/widgets/class-sp-widget-event-list.php:74
289
+ #: includes/widgets/class-sp-widget-event-list.php:87
290
+ #: includes/widgets/class-sp-widget-event-list.php:102
291
+ #: includes/widgets/class-sp-widget-player-gallery.php:76
292
+ #: includes/widgets/class-sp-widget-player-list.php:96
293
+ msgid "Default"
294
+ msgstr "الافتراضي"
295
+
296
+ #: includes/class-sp-ajax.php:214 includes/class-sp-ajax.php:306
297
+ #: includes/class-sp-ajax.php:380
298
+ #: includes/widgets/class-sp-widget-event-blocks.php:105
299
+ #: includes/widgets/class-sp-widget-event-calendar.php:75
300
+ #: includes/widgets/class-sp-widget-event-list.php:126
301
+ msgid "Display link to view all events"
302
+ msgstr "عرض رابط لعرض جميع الأحداث"
303
+
304
+ #: includes/class-sp-ajax.php:261 includes/class-sp-ajax.php:352
305
+ #: includes/widgets/class-sp-widget-event-blocks.php:81
306
+ #: includes/widgets/class-sp-widget-event-list.php:84
307
+ msgid "Date:"
308
+ msgstr ""
309
+
310
+ #: includes/class-sp-ajax.php:265 includes/class-sp-ajax.php:356
311
+ #: includes/sp-core-functions.php:439
312
+ msgid "This week"
313
+ msgstr ""
314
+
315
+ #: includes/class-sp-ajax.php:266 includes/class-sp-ajax.php:357
316
+ #: includes/sp-core-functions.php:440
317
+ msgid "Today"
318
+ msgstr "اليوم"
319
+
320
+ #: includes/class-sp-ajax.php:272 includes/class-sp-ajax.php:363
321
+ #: includes/widgets/class-sp-widget-event-blocks.php:94
322
+ #: includes/widgets/class-sp-widget-event-list.php:97
323
+ msgid "Number of events to show:"
324
+ msgstr "عدد الأحداث المعروضة"
325
+
326
+ #: includes/class-sp-ajax.php:278 includes/class-sp-ajax.php:369
327
+ #: includes/class-sp-ajax.php:583 includes/class-sp-ajax.php:654
328
+ #: includes/widgets/class-sp-widget-event-blocks.php:97
329
+ #: includes/widgets/class-sp-widget-event-list.php:100
330
+ #: includes/widgets/class-sp-widget-player-gallery.php:94
331
+ #: includes/widgets/class-sp-widget-player-list.php:114
332
+ msgid "Sort Order:"
333
+ msgstr "الترتيب:"
334
+
335
+ #: includes/class-sp-ajax.php:281 includes/class-sp-ajax.php:372
336
+ #: includes/class-sp-ajax.php:586 includes/class-sp-ajax.php:657
337
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:116
338
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
339
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:101
340
+ #: includes/widgets/class-sp-widget-event-blocks.php:100
341
+ #: includes/widgets/class-sp-widget-event-list.php:103
342
+ #: includes/widgets/class-sp-widget-player-gallery.php:96
343
+ #: includes/widgets/class-sp-widget-player-list.php:116
344
+ msgid "Ascending"
345
+ msgstr "تصاعدي"
346
+
347
+ #: includes/class-sp-ajax.php:282 includes/class-sp-ajax.php:373
348
+ #: includes/class-sp-ajax.php:587 includes/class-sp-ajax.php:658
349
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:117
350
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
351
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:102
352
+ #: includes/widgets/class-sp-widget-event-blocks.php:101
353
+ #: includes/widgets/class-sp-widget-event-list.php:104
354
+ #: includes/widgets/class-sp-widget-player-gallery.php:97
355
+ #: includes/widgets/class-sp-widget-player-list.php:117
356
+ msgid "Descending"
357
+ msgstr "تنازلي"
358
+
359
+ #: includes/class-sp-ajax.php:287 includes/class-sp-ajax.php:419
360
+ #: includes/class-sp-ajax.php:543
361
+ #: includes/widgets/class-sp-widget-event-list.php:108
362
+ #: includes/widgets/class-sp-widget-league-table.php:70
363
+ msgid "Columns:"
364
+ msgstr "أعمدة :"
365
+
366
+ #: includes/class-sp-ajax.php:291 includes/class-sp-post-types.php:431
367
+ #: includes/sp-core-functions.php:1103
368
+ #: includes/admin/class-sp-admin-permalink-settings.php:28
369
+ #: includes/admin/importers/class-sp-event-importer.php:29
370
+ #: includes/admin/importers/class-sp-player-importer.php:29
371
+ #: includes/admin/importers/class-sp-staff-importer.php:28
372
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:94
373
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:67
374
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:66
375
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:51
376
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:124
377
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:56
378
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
379
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
380
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:90
381
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:105
382
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:106
383
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:150
384
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:57
385
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:58
386
+ #: includes/admin/settings/class-sp-settings-events.php:77
387
+ #: includes/admin/settings/class-sp-settings-teams.php:25
388
+ #: includes/admin/settings/class-sp-settings-teams.php:56
389
+ #: includes/widgets/class-sp-widget-event-list.php:112
390
+ #: templates/event-list.php:64
391
+ msgid "Teams"
392
+ msgstr "الفرق"
393
+
394
+ #: includes/class-sp-ajax.php:292 includes/sp-core-functions.php:1104
395
+ #: includes/admin/importers/class-sp-event-importer.php:27
396
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:93
397
+ #: includes/widgets/class-sp-widget-event-list.php:113
398
+ #: templates/event-details.php:21
399
+ msgid "Time"
400
+ msgstr "الوقت"
401
+
402
+ #: includes/class-sp-ajax.php:293 includes/class-sp-post-types.php:94
403
+ #: includes/sp-core-functions.php:1107
404
+ #: includes/admin/importers/class-sp-event-importer.php:28
405
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:51
406
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:97
407
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:82
408
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:83
409
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:71
410
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:87
411
+ #: includes/admin/settings/class-sp-settings-events.php:113
412
+ #: includes/widgets/class-sp-widget-event-list.php:114
413
+ #: templates/event-list.php:80 templates/event-venue.php:36
414
+ msgid "Venue"
415
+ msgstr "ملعب"
416
+
417
+ #: includes/class-sp-ajax.php:294 includes/sp-core-functions.php:1082
418
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:130
419
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:88
420
+ #: includes/widgets/class-sp-widget-event-list.php:115
421
+ #: templates/event-list.php:83
422
+ msgid "Article"
423
+ msgstr "مقالة"
424
+
425
+ #: includes/class-sp-ajax.php:414
426
+ #: includes/widgets/class-sp-widget-league-table.php:66
427
+ msgid "Number of teams to show:"
428
+ msgstr "عدد الفرق إلى المعرض:"
429
+
430
+ #: includes/class-sp-ajax.php:440
431
+ #: includes/admin/settings/class-sp-settings-events.php:78
432
+ #: includes/admin/settings/class-sp-settings-teams.php:57
433
+ #: includes/widgets/class-sp-widget-league-table.php:90
434
+ msgid "Display logos"
435
  msgstr "عرض الشعارات"
436
 
437
+ #: includes/class-sp-ajax.php:446
438
+ #: includes/widgets/class-sp-widget-league-table.php:93
439
+ msgid "Display link to view full table"
440
+ msgstr "عرض رابط لعرض الجدول الكامل"
441
+
442
+ #: includes/class-sp-ajax.php:538 includes/class-sp-ajax.php:628
443
+ #: includes/widgets/class-sp-widget-player-gallery.php:69
444
+ #: includes/widgets/class-sp-widget-player-list.php:69
445
+ msgid "Number of players to show:"
446
+ msgstr "عرض عدد اللاعبين للعرض :"
447
+
448
+ #: includes/class-sp-ajax.php:563 includes/class-sp-ajax.php:634
449
+ #: includes/widgets/class-sp-widget-player-gallery.php:72
450
+ #: includes/widgets/class-sp-widget-player-list.php:92
451
+ msgid "Sort by:"
452
+ msgstr "ترتيب حسب:"
453
+
454
+ #: includes/class-sp-ajax.php:568 includes/class-sp-ajax.php:639
455
+ #: includes/admin/importers/class-sp-player-importer.php:26
456
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:64
457
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:87
458
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:56
459
+ #: includes/widgets/class-sp-widget-player-gallery.php:77
460
+ #: includes/widgets/class-sp-widget-player-list.php:97
461
+ msgid "Number"
462
+ msgstr "رقم"
463
+
464
+ #: includes/class-sp-ajax.php:569 includes/class-sp-ajax.php:640
465
+ #: includes/class-sp-post-types.php:42 includes/class-sp-post-types.php:71
466
+ #: includes/class-sp-post-types.php:100 includes/class-sp-post-types.php:129
467
+ #: includes/class-sp-post-types.php:158
468
+ #: includes/admin/importers/class-sp-player-importer.php:27
469
+ #: includes/admin/importers/class-sp-staff-importer.php:26
470
+ #: includes/admin/importers/class-sp-team-importer.php:26
471
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:52
472
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:71
473
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:52
474
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:70
475
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:51
476
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:88
477
+ #: includes/widgets/class-sp-widget-player-gallery.php:78
478
+ #: includes/widgets/class-sp-widget-player-list.php:98
479
+ msgid "Name"
480
+ msgstr "الاسم"
481
+
482
+ #: includes/class-sp-ajax.php:570 includes/class-sp-ajax.php:641
483
+ #: includes/sp-core-functions.php:1091
484
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
485
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
486
+ #: includes/widgets/class-sp-widget-player-gallery.php:79
487
+ #: includes/widgets/class-sp-widget-player-list.php:99
488
+ msgid "Played"
489
+ msgstr "لعب"
490
+
491
+ #: includes/class-sp-ajax.php:594 includes/class-sp-ajax.php:665
492
+ #: includes/widgets/class-sp-widget-player-gallery.php:101
493
+ #: includes/widgets/class-sp-widget-player-list.php:121
494
+ msgid "Display link to view all players"
495
+ msgstr "عرض رابط لعرض جميع اللاعبين"
496
+
497
+ #: includes/class-sp-ajax.php:671
498
+ #: includes/widgets/class-sp-widget-player-gallery.php:104
499
+ msgid "Display player names on hover"
500
+ msgstr "عرض أسماء اللاعبين المرفرفين"
501
 
502
  #: includes/class-sp-countries.php:29
503
  msgid "Africa"
529
 
530
  #: includes/class-sp-countries.php:39
531
  msgid "United Arab Emirates"
532
+ msgstr "الامارات العربية المتحدة"
533
 
534
  #: includes/class-sp-countries.php:40
535
  msgid "Afghanistan"
536
+ msgstr "أفغانستان"
537
 
538
  #: includes/class-sp-countries.php:41
539
  msgid "Antigua and Barbuda"
540
+ msgstr "أنتيجوا وبربودا"
541
 
542
  #: includes/class-sp-countries.php:42
543
  msgid "Albania"
549
 
550
  #: includes/class-sp-countries.php:44
551
  msgid "Angola"
552
+ msgstr "أنجولا"
553
 
554
  #: includes/class-sp-countries.php:45
555
  msgid "Argentina"
573
 
574
  #: includes/class-sp-countries.php:50
575
  msgid "Barbados"
576
+ msgstr "بربادوس"
577
 
578
  #: includes/class-sp-countries.php:51
579
  msgid "Bangladesh"
580
+ msgstr "بنجلاديش"
581
 
582
  #: includes/class-sp-countries.php:52
583
  msgid "Belgium"
617
 
618
  #: includes/class-sp-countries.php:61
619
  msgid "Bahamas"
620
+ msgstr "الباهاما"
621
 
622
  #: includes/class-sp-countries.php:62
623
  msgid "Bhutan"
625
 
626
  #: includes/class-sp-countries.php:63
627
  msgid "Botswana"
628
+ msgstr "بتسوانا"
629
 
630
  #: includes/class-sp-countries.php:64
631
  msgid "Belarus"
632
+ msgstr "روسيا البيضاء"
633
 
634
  #: includes/class-sp-countries.php:65
635
  msgid "Belize"
645
 
646
  #: includes/class-sp-countries.php:68
647
  msgid "Central African Republic"
648
+ msgstr "جمهورية افريقيا الوسطى"
649
 
650
  #: includes/class-sp-countries.php:69
651
  msgid "Republic of the Congo"
652
+ msgstr "الكونغو - برازافيل"
653
 
654
  #: includes/class-sp-countries.php:70
655
  msgid "Switzerland"
661
 
662
  #: includes/class-sp-countries.php:72
663
  msgid "Chile"
664
+ msgstr "شيلي"
665
 
666
  #: includes/class-sp-countries.php:73
667
  msgid "Cameroon"
705
 
706
  #: includes/class-sp-countries.php:83
707
  msgid "Denmark"
708
+ msgstr "الدانمرك"
709
 
710
  #: includes/class-sp-countries.php:84
711
  msgid "Dominica"
713
 
714
  #: includes/class-sp-countries.php:85
715
  msgid "Dominican Republic"
716
+ msgstr "جمهورية الدومينيك"
717
 
718
  #: includes/class-sp-countries.php:86
719
  msgid "Algeria"
720
+ msgstr "الجزائر"
721
 
722
  #: includes/class-sp-countries.php:87
723
  msgid "Ecuador"
741
 
742
  #: includes/class-sp-countries.php:92
743
  msgid "Eritrea"
744
+ msgstr "اريتريا"
745
 
746
  #: includes/class-sp-countries.php:93
747
  msgid "Spain"
748
+ msgstr "أسبانيا"
749
 
750
  #: includes/class-sp-countries.php:94
751
  msgid "Ethiopia"
752
+ msgstr "اثيوبيا"
753
 
754
  #: includes/class-sp-countries.php:95
755
  msgid "Finland"
769
 
770
  #: includes/class-sp-countries.php:99
771
  msgid "Gabon"
772
+ msgstr "الجابون"
773
 
774
  #: includes/class-sp-countries.php:100
775
  msgid "United Kingdom"
777
 
778
  #: includes/class-sp-countries.php:101
779
  msgid "Grenada"
780
+ msgstr "جرينادا"
781
 
782
  #: includes/class-sp-countries.php:102
783
  msgid "Georgia"
801
 
802
  #: includes/class-sp-countries.php:107
803
  msgid "Greece"
804
+ msgstr "اليونان"
805
 
806
  #: includes/class-sp-countries.php:108
807
  msgid "Guatemala"
808
+ msgstr "جواتيمالا"
809
 
810
  #: includes/class-sp-countries.php:109
811
  msgid "Guinea-Bissau"
817
 
818
  #: includes/class-sp-countries.php:111
819
  msgid "Hong Kong"
820
+ msgstr "هونج كونج الصينية"
821
 
822
  #: includes/class-sp-countries.php:112
823
  msgid "Honduras"
833
 
834
  #: includes/class-sp-countries.php:115
835
  msgid "Hungary"
836
+ msgstr "المجر"
837
 
838
  #: includes/class-sp-countries.php:116
839
  msgid "Indonesia"
840
+ msgstr "اندونيسيا"
841
 
842
  #: includes/class-sp-countries.php:117
843
  msgid "Ireland"
845
 
846
  #: includes/class-sp-countries.php:118
847
  msgid "Israel"
848
+ msgstr "اسرائيل"
849
 
850
  #: includes/class-sp-countries.php:119
851
  msgid "India"
857
 
858
  #: includes/class-sp-countries.php:121
859
  msgid "Iran"
860
+ msgstr "ايران"
861
 
862
  #: includes/class-sp-countries.php:122
863
  msgid "Iceland"
864
+ msgstr "أيسلندا"
865
 
866
  #: includes/class-sp-countries.php:123
867
  msgid "Italy"
868
+ msgstr "ايطاليا"
869
 
870
  #: includes/class-sp-countries.php:124
871
  msgid "Jamaica"
953
 
954
  #: includes/class-sp-countries.php:145
955
  msgid "Luxembourg"
956
+ msgstr "لوكسمبورج"
957
 
958
  #: includes/class-sp-countries.php:146
959
  msgid "Latvia"
973
 
974
  #: includes/class-sp-countries.php:150
975
  msgid "Moldova"
976
+ msgstr "مولدافيا"
977
 
978
  #: includes/class-sp-countries.php:151
979
  msgid "Montenegro"
985
 
986
  #: includes/class-sp-countries.php:153
987
  msgid "Marshall Islands"
988
+ msgstr "جزر المارشال"
989
 
990
  #: includes/class-sp-countries.php:154
991
  msgid "Macedonia"
997
 
998
  #: includes/class-sp-countries.php:156
999
  msgid "Burma"
1000
+ msgstr "ميانمار"
1001
 
1002
  #: includes/class-sp-countries.php:157
1003
  msgid "Mongolia"
1005
 
1006
  #: includes/class-sp-countries.php:158
1007
  msgid "Macau"
1008
+ msgstr "ماكاو الصينية"
1009
 
1010
  #: includes/class-sp-countries.php:159
1011
  msgid "Mauritania"
1021
 
1022
  #: includes/class-sp-countries.php:162
1023
  msgid "Maldives"
1024
+ msgstr "جزر الملديف"
1025
 
1026
  #: includes/class-sp-countries.php:163
1027
  msgid "Malawi"
1057
 
1058
  #: includes/class-sp-countries.php:171
1059
  msgid "Nicaragua"
1060
+ msgstr "نيكاراجوا"
1061
 
1062
  #: includes/class-sp-countries.php:172
1063
  msgid "Netherlands"
1073
 
1074
  #: includes/class-sp-countries.php:175
1075
  msgid "Nauru"
1076
+ msgstr "نورو"
1077
 
1078
  #: includes/class-sp-countries.php:176
1079
  msgid "New Zealand"
1080
+ msgstr "نيوزيلاندا"
1081
 
1082
  #: includes/class-sp-countries.php:177
1083
  msgid "Oman"
1085
 
1086
  #: includes/class-sp-countries.php:178
1087
  msgid "Panama"
1088
+ msgstr "بنما"
1089
 
1090
  #: includes/class-sp-countries.php:179
1091
  msgid "Peru"
1097
 
1098
  #: includes/class-sp-countries.php:181
1099
  msgid "Philippines"
1100
+ msgstr "الفيلبين"
1101
 
1102
  #: includes/class-sp-countries.php:182
1103
  msgid "Pakistan"
1117
 
1118
  #: includes/class-sp-countries.php:186
1119
  msgid "Paraguay"
1120
+ msgstr "باراجواي"
1121
 
1122
  #: includes/class-sp-countries.php:187
1123
  msgid "Qatar"
1141
 
1142
  #: includes/class-sp-countries.php:192
1143
  msgid "Saudi Arabia"
1144
+ msgstr "المملكة العربية السعودية"
1145
 
1146
  #: includes/class-sp-countries.php:193
1147
  msgid "Solomon Islands"
1149
 
1150
  #: includes/class-sp-countries.php:194
1151
  msgid "Seychelles"
1152
+ msgstr "سيشل"
1153
 
1154
  #: includes/class-sp-countries.php:195
1155
  msgid "Sudan"
1197
 
1198
  #: includes/class-sp-countries.php:206
1199
  msgid "Sao Tome and Principe"
1200
+ msgstr "ساو تومي وبرينسيبي"
1201
 
1202
  #: includes/class-sp-countries.php:207
1203
  msgid "El Salvador"
1213
 
1214
  #: includes/class-sp-countries.php:210
1215
  msgid "Togo"
1216
+ msgstr "توجو"
1217
 
1218
  #: includes/class-sp-countries.php:211
1219
  msgid "Thailand"
1220
+ msgstr "تايلند"
1221
 
1222
  #: includes/class-sp-countries.php:212
1223
  msgid "Tajikistan"
1224
+ msgstr "طاجكستان"
1225
 
1226
  #: includes/class-sp-countries.php:213
1227
  msgid "East Timor"
1233
 
1234
  #: includes/class-sp-countries.php:215
1235
  msgid "Tunisia"
1236
+ msgstr "تونس"
1237
 
1238
  #: includes/class-sp-countries.php:216
1239
  msgid "Tonga"
1240
+ msgstr "تونجا"
1241
 
1242
  #: includes/class-sp-countries.php:217
1243
  msgid "Turkey"
1257
 
1258
  #: includes/class-sp-countries.php:221
1259
  msgid "Tanzania"
1260
+ msgstr "تانزانيا"
1261
 
1262
  #: includes/class-sp-countries.php:222
1263
  msgid "Ukraine"
1269
 
1270
  #: includes/class-sp-countries.php:224
1271
  msgid "United States"
1272
+ msgstr "الولايات المتحدة الأمريكية"
1273
 
1274
  #: includes/class-sp-countries.php:225
1275
  msgid "Uruguay"
1276
+ msgstr "أورجواي"
1277
 
1278
  #: includes/class-sp-countries.php:226
1279
  msgid "Uzbekistan"
1281
 
1282
  #: includes/class-sp-countries.php:227
1283
  msgid "Vatican City"
1284
+ msgstr "الفاتيكان"
1285
 
1286
  #: includes/class-sp-countries.php:228
1287
  msgid "Saint Vincent and the Grenadines"
1288
+ msgstr "سانت فنسنت وغرنادين"
1289
 
1290
  #: includes/class-sp-countries.php:229
1291
  msgid "Venezuela"
1313
 
1314
  #: includes/class-sp-countries.php:235
1315
  msgid "South Africa"
1316
+ msgstr "جمهورية جنوب افريقيا"
1317
 
1318
  #: includes/class-sp-countries.php:236
1319
  msgid "Zambia"
1323
  msgid "Zimbabwe"
1324
  msgstr "زيمبابوي"
1325
 
1326
+ #: includes/class-sp-event.php:45 includes/class-sp-post-types.php:221
1327
+ #: includes/sp-core-functions.php:1089
1328
+ #: includes/admin/importers/class-sp-event-importer.php:31
1329
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-results.php:57
1330
  msgid "Outcome"
1331
  msgstr "يخرج"
1332
 
1333
+ #: includes/class-sp-event.php:100 includes/class-sp-post-types.php:123
1334
+ #: includes/sp-core-functions.php:1094
1335
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:68
1336
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:71
1337
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:79
1338
+ #: templates/player-details.php:43
1339
  msgid "Position"
1340
+ msgstr "موضع"
1341
 
1342
  #: includes/class-sp-formats.php:27 includes/class-sp-post-types.php:36
1343
+ #: includes/sp-core-functions.php:1087
1344
+ #: includes/admin/importers/class-sp-event-importer.php:478
1345
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:49
1346
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:95
1347
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:114
1348
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:49
1349
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:49
1350
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:70
1351
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:53
1352
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:35
1353
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:30
1354
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:27
1355
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:61
1356
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:61
1357
+ #: templates/event-details.php:25 templates/event-list.php:74
1358
  msgid "League"
1359
  msgstr "بطلولة"
1360
 
1361
  #: includes/class-sp-formats.php:28
1362
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:117
1363
  msgid "Friendly"
1364
  msgstr "ودي"
1365
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1366
  #: includes/class-sp-frontend-scripts.php:57
1367
+ #: includes/admin/class-sp-admin-assets.php:108
1368
+ #: includes/admin/class-sp-admin-dashboard.php:80 templates/countdown.php:66
1369
  msgid "days"
1370
  msgstr "أيام"
1371
 
1372
  #: includes/class-sp-frontend-scripts.php:57
1373
+ #: includes/admin/class-sp-admin-assets.php:109 templates/countdown.php:67
1374
  msgid "hrs"
1375
  msgstr "hrs"
1376
 
1377
  #: includes/class-sp-frontend-scripts.php:57
1378
+ #: includes/admin/class-sp-admin-assets.php:110
1379
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:31
1380
+ #: includes/admin/settings/class-sp-settings-events.php:135
1381
+ #: templates/countdown.php:68
1382
  msgid "mins"
1383
  msgstr "mins"
1384
 
1385
  #: includes/class-sp-frontend-scripts.php:57
1386
+ #: includes/admin/class-sp-admin-assets.php:111 templates/countdown.php:69
1387
  msgid "secs"
1388
  msgstr "secs"
1389
 
1395
  msgid "Next"
1396
  msgstr "التالي"
1397
 
1398
+ #: includes/class-sp-install.php:192 includes/class-sp-post-types.php:553
1399
+ #: includes/class-sp-post-types.php:554 includes/sp-core-functions.php:1100
1400
  #: includes/admin/class-sp-admin-permalink-settings.php:35
1401
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:70
1402
+ #: includes/admin/settings/class-sp-settings-events.php:122
1403
  #: includes/admin/settings/class-sp-settings-staff.php:25
1404
+ #: templates/event-staff.php:43
1405
  msgid "Staff"
1406
  msgstr "الطاقم"
1407
 
1421
  msgid "What's new:"
1422
  msgstr "الجديد:"
1423
 
1424
+ #: includes/class-sp-league-table.php:332
1425
+ #: includes/class-sp-player-list.php:361 includes/class-sp-player-list.php:378
1426
+ #: includes/class-sp-player.php:326 includes/class-sp-player.php:349
1427
+ #: includes/class-sp-post-types.php:432 includes/sp-core-functions.php:1102
1428
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:52
1429
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:51
1430
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:70
1431
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:98
1432
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-results.php:45
1433
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:54
1434
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:60
1435
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:64
1436
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:57
1437
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:119
1438
+ #: includes/admin/settings/class-sp-settings-events.php:235
1439
+ #: includes/widgets/class-sp-widget-countdown.php:45
1440
+ #: templates/event-results.php:94
1441
  msgid "Team"
1442
  msgstr "الفريق"
1443
 
1444
+ #: includes/class-sp-player.php:87 includes/class-sp-team.php:65
1445
+ #: includes/sp-core-functions.php:350 includes/sp-core-functions.php:354
1446
+ #: includes/sp-core-functions.php:1106
1447
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:93
1448
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:36
1449
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:82
1450
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:38
1451
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:76
1452
+ #: templates/event-performance.php:181
1453
+ msgid "Total"
1454
+ msgstr "المجموع"
1455
+
1456
+ #: includes/class-sp-player.php:347 includes/class-sp-post-types.php:65
1457
+ #: includes/sp-core-functions.php:1099
1458
+ #: includes/admin/importers/class-sp-event-importer.php:493
1459
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:50
1460
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:96
1461
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:50
1462
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:50
1463
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:76
1464
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:68
1465
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:53
1466
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:45
1467
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:60
1468
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:42
1469
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:60
1470
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:64
1471
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:64
1472
+ #: templates/event-details.php:30 templates/event-list.php:77
1473
  msgid "Season"
1474
  msgstr "الموسم"
1475
 
1476
  #: includes/class-sp-post-types.php:35 includes/class-sp-post-types.php:49
1477
+ #: includes/admin/class-sp-admin-menus.php:72
1478
+ #: includes/admin/class-sp-admin-menus.php:269
1479
  #: includes/admin/class-sp-admin-permalink-settings.php:29
1480
+ #: includes/admin/importers/class-sp-player-importer.php:30
1481
+ #: includes/admin/importers/class-sp-staff-importer.php:29
1482
+ #: includes/admin/importers/class-sp-team-importer.php:27
1483
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:68
1484
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:67
1485
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:67
1486
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:116
1487
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
1488
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:113
1489
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:120
1490
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:50
1491
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:57
1492
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:72
1493
  #: includes/admin/views/html-admin-page-status.php:296
1494
  msgid "Leagues"
1495
  msgstr "بطولات"
1496
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1497
  #: includes/class-sp-post-types.php:38
1498
  msgid "Edit League"
1499
  msgstr "تحرير البطولة"
1500
 
1501
  #: includes/class-sp-post-types.php:39 includes/class-sp-post-types.php:68
1502
  #: includes/class-sp-post-types.php:97 includes/class-sp-post-types.php:126
1503
+ #: includes/class-sp-post-types.php:155 includes/class-sp-post-types.php:195
1504
+ #: includes/class-sp-post-types.php:225 includes/class-sp-post-types.php:255
1505
+ #: includes/class-sp-post-types.php:285 includes/class-sp-post-types.php:315
1506
+ #: includes/class-sp-post-types.php:345
 
 
 
1507
  msgid "View"
1508
  msgstr "عرض"
1509
 
1510
  #: includes/class-sp-post-types.php:40 includes/class-sp-post-types.php:69
1511
  #: includes/class-sp-post-types.php:98 includes/class-sp-post-types.php:127
1512
+ #: includes/class-sp-post-types.php:156
1513
  msgid "Update"
1514
  msgstr "تحديث"
1515
 
1516
  #: includes/class-sp-post-types.php:41 includes/class-sp-post-types.php:70
1517
  #: includes/class-sp-post-types.php:99 includes/class-sp-post-types.php:128
1518
+ #: includes/class-sp-post-types.php:157 includes/sp-core-functions.php:885
1519
+ #: includes/sp-core-functions.php:902
1520
+ #: includes/admin/class-sp-admin-menus.php:265
1521
+ #: includes/admin/importers/class-sp-event-importer.php:488
1522
+ #: includes/admin/importers/class-sp-event-importer.php:503
1523
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:64
1524
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:79
1525
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:94
1526
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:109
1527
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:47
1528
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:65
1529
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:82
1530
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:41
1531
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:56
1532
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:71
1533
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:108
1534
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-metrics.php:42
1535
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:67
1536
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:38
1537
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:53
1538
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:60
1539
+ #: includes/admin/views/html-admin-config.php:49
1540
+ #: includes/admin/views/html-admin-config.php:124
1541
+ #: includes/admin/views/html-admin-config.php:177
1542
+ #: includes/admin/views/html-admin-config.php:234
1543
+ #: includes/admin/views/html-admin-config.php:286
1544
+ #: includes/admin/views/html-admin-config.php:341
1545
+ #: includes/widgets/class-sp-widget-countdown.php:57
1546
+ #: includes/widgets/class-sp-widget-countdown.php:77
1547
  #: includes/widgets/class-sp-widget-event-blocks.php:63
1548
  #: includes/widgets/class-sp-widget-event-calendar.php:56
1549
  #: includes/widgets/class-sp-widget-event-list.php:66
1551
  #: includes/widgets/class-sp-widget-player-gallery.php:64
1552
  #: includes/widgets/class-sp-widget-player-gallery.php:89
1553
  #: includes/widgets/class-sp-widget-player-list.php:64
1554
+ #: includes/widgets/class-sp-widget-player-list.php:109
1555
  msgid "Add New"
1556
  msgstr "أضف"
1557
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1558
  #: includes/class-sp-post-types.php:43 includes/class-sp-post-types.php:72
1559
  #: includes/class-sp-post-types.php:101 includes/class-sp-post-types.php:130
1560
+ #: includes/class-sp-post-types.php:159
1561
  msgid "Parent"
1562
+ msgstr "أب"
1563
 
1564
  #: includes/class-sp-post-types.php:44 includes/class-sp-post-types.php:73
1565
  #: includes/class-sp-post-types.php:102 includes/class-sp-post-types.php:131
1566
+ #: includes/class-sp-post-types.php:160
1567
  msgid "Parent:"
1568
  msgstr "الاب:"
1569
 
1570
  #: includes/class-sp-post-types.php:45 includes/class-sp-post-types.php:74
1571
  #: includes/class-sp-post-types.php:103 includes/class-sp-post-types.php:132
1572
+ #: includes/class-sp-post-types.php:161 includes/class-sp-post-types.php:196
1573
+ #: includes/class-sp-post-types.php:226 includes/class-sp-post-types.php:256
1574
+ #: includes/class-sp-post-types.php:286 includes/class-sp-post-types.php:316
1575
+ #: includes/class-sp-post-types.php:346 includes/class-sp-post-types.php:376
1576
+ #: includes/class-sp-post-types.php:406 includes/class-sp-post-types.php:437
1577
+ #: includes/class-sp-post-types.php:467 includes/class-sp-post-types.php:498
1578
+ #: includes/class-sp-post-types.php:528 includes/class-sp-post-types.php:559
1579
  msgid "Search"
1580
  msgstr "البحث"
1581
 
1582
  #: includes/class-sp-post-types.php:46 includes/class-sp-post-types.php:75
1583
  #: includes/class-sp-post-types.php:104 includes/class-sp-post-types.php:133
1584
+ #: includes/class-sp-post-types.php:162 includes/class-sp-post-types.php:197
1585
+ #: includes/class-sp-post-types.php:198 includes/class-sp-post-types.php:227
1586
+ #: includes/class-sp-post-types.php:228 includes/class-sp-post-types.php:257
1587
+ #: includes/class-sp-post-types.php:258 includes/class-sp-post-types.php:287
1588
+ #: includes/class-sp-post-types.php:288 includes/class-sp-post-types.php:317
1589
+ #: includes/class-sp-post-types.php:318 includes/class-sp-post-types.php:347
1590
+ #: includes/class-sp-post-types.php:348 includes/class-sp-post-types.php:377
1591
+ #: includes/class-sp-post-types.php:378 includes/class-sp-post-types.php:407
1592
+ #: includes/class-sp-post-types.php:408 includes/class-sp-post-types.php:438
1593
+ #: includes/class-sp-post-types.php:439 includes/class-sp-post-types.php:468
1594
+ #: includes/class-sp-post-types.php:469 includes/class-sp-post-types.php:499
1595
+ #: includes/class-sp-post-types.php:500 includes/class-sp-post-types.php:529
1596
+ #: includes/class-sp-post-types.php:530 includes/class-sp-post-types.php:560
1597
+ #: includes/class-sp-post-types.php:561 includes/sp-core-functions.php:763
1598
+ #: includes/sp-core-functions.php:803
1599
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:180
1600
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:114
1601
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:32
1602
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:101
1603
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:32
1604
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:97
1605
+ #: includes/admin/views/html-admin-config.php:43
1606
+ #: includes/admin/views/html-admin-config.php:117
1607
+ #: includes/admin/views/html-admin-config.php:171
1608
+ #: includes/admin/views/html-admin-config.php:228
1609
+ #: includes/admin/views/html-admin-config.php:280
1610
+ #: includes/admin/views/html-admin-config.php:335
1611
+ #: includes/admin/views/html-admin-overview.php:282
1612
  msgid "No results found."
1613
  msgstr "لا توجد نتائج."
1614
 
1615
  #: includes/class-sp-post-types.php:64 includes/class-sp-post-types.php:78
1616
+ #: includes/admin/class-sp-admin-menus.php:79
1617
+ #: includes/admin/class-sp-admin-menus.php:277
1618
  #: includes/admin/class-sp-admin-permalink-settings.php:30
1619
+ #: includes/admin/importers/class-sp-player-importer.php:31
1620
+ #: includes/admin/importers/class-sp-staff-importer.php:30
1621
+ #: includes/admin/importers/class-sp-team-importer.php:28
1622
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:69
1623
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:68
1624
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:68
1625
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:131
1626
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
1627
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:128
1628
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:135
1629
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:65
1630
  #: includes/admin/views/html-admin-page-status.php:306
1631
  msgid "Seasons"
1632
  msgstr "المواسم"
1636
  msgstr "تحرير الموسم"
1637
 
1638
  #: includes/class-sp-post-types.php:93 includes/class-sp-post-types.php:107
1639
+ #: includes/admin/class-sp-admin-menus.php:281
1640
  #: includes/admin/class-sp-admin-permalink-settings.php:26
 
1641
  #: includes/admin/views/html-admin-page-status.php:316
1642
  msgid "Venues"
1643
  msgstr "الملاعب"
1644
 
 
 
 
 
 
 
 
 
 
 
 
 
1645
  #: includes/class-sp-post-types.php:96
1646
  msgid "Edit Venue"
1647
  msgstr "تحرير المكان"
1648
 
1649
  #: includes/class-sp-post-types.php:122 includes/class-sp-post-types.php:136
1650
+ #: includes/admin/class-sp-admin-menus.php:273
1651
  #: includes/admin/class-sp-admin-permalink-settings.php:33
1652
+ #: includes/admin/importers/class-sp-player-importer.php:28
1653
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:66
1654
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:71
1655
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
1656
  #: includes/admin/views/html-admin-page-status.php:326
1661
  msgid "Edit Position"
1662
  msgstr "تحرير المركز"
1663
 
1664
+ #: includes/class-sp-post-types.php:151 includes/class-sp-post-types.php:165
1665
+ #: includes/admin/class-sp-admin-menus.php:238
1666
+ #: includes/admin/importers/class-sp-staff-importer.php:27
1667
+ msgid "Roles"
1668
+ msgstr ""
1669
+
1670
+ #: includes/class-sp-post-types.php:152
1671
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:65
1672
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:55
1673
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:62
1674
+ msgid "Role"
1675
+ msgstr "الرتبة"
1676
+
1677
+ #: includes/class-sp-post-types.php:154
1678
+ msgid "Edit Role"
1679
+ msgstr ""
1680
+
1681
+ #: includes/class-sp-post-types.php:190 includes/sp-core-functions.php:1098
1682
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:127
1683
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:27
1684
+ #: includes/admin/views/html-admin-config.php:74
1685
+ #: includes/admin/views/html-admin-config.php:78
1686
  #: includes/admin/views/html-admin-page-status.php:237
1687
+ #: templates/event-results.php:90
1688
  msgid "Team Results"
1689
  msgstr "نتائج الفريق"
1690
 
1691
+ #: includes/class-sp-post-types.php:191
1692
  msgid "Result"
1693
  msgstr "النتيجة"
1694
 
1695
+ #: includes/class-sp-post-types.php:192
1696
  msgid "Add New Result"
1697
  msgstr "أضف نتيجة جديدة"
1698
 
1699
+ #: includes/class-sp-post-types.php:193
1700
  msgid "Edit Result"
1701
  msgstr "تحرير النتيجة"
1702
 
1703
+ #: includes/class-sp-post-types.php:194 includes/class-sp-post-types.php:224
1704
+ #: includes/class-sp-post-types.php:254 includes/class-sp-post-types.php:284
1705
+ #: includes/class-sp-post-types.php:314 includes/class-sp-post-types.php:344
1706
+ #: includes/class-sp-post-types.php:374 includes/class-sp-post-types.php:404
1707
+ #: includes/class-sp-post-types.php:435 includes/class-sp-post-types.php:465
1708
+ #: includes/class-sp-post-types.php:496 includes/class-sp-post-types.php:526
1709
+ #: includes/class-sp-post-types.php:557
1710
  msgid "New"
1711
  msgstr "جديد"
1712
 
1713
+ #: includes/class-sp-post-types.php:220
1714
+ #: includes/admin/views/html-admin-config.php:19
1715
  #: includes/admin/views/html-admin-page-status.php:227
1716
  msgid "Event Outcomes"
1717
  msgstr "نتائج الأحداث"
1718
 
1719
+ #: includes/class-sp-post-types.php:222
1720
  msgid "Add New Outcome"
1721
  msgstr "إضافة نتائج جديدة"
1722
 
1723
+ #: includes/class-sp-post-types.php:223
1724
  msgid "Edit Outcome"
1725
  msgstr "تحرير النتائج"
1726
 
1727
+ #: includes/class-sp-post-types.php:250
1728
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:144
1729
+ #: includes/admin/views/html-admin-config.php:200
1730
  #: includes/admin/views/html-admin-page-status.php:257
1731
  msgid "Table Columns"
1732
  msgstr "اعمدة الجدول"
1733
 
1734
+ #: includes/class-sp-post-types.php:251
1735
  msgid "Column"
1736
  msgstr "عمود"
1737
 
1738
+ #: includes/class-sp-post-types.php:252
1739
  msgid "Add New Column"
1740
  msgstr "أضف عمود جديد"
1741
 
1742
+ #: includes/class-sp-post-types.php:253
1743
  msgid "Edit Column"
1744
  msgstr "تحرير العمود"
1745
 
1746
+ #: includes/class-sp-post-types.php:280
1747
+ #: includes/admin/views/html-admin-config.php:258
1748
  #: includes/admin/views/html-admin-page-status.php:267
1749
  msgid "Player Metrics"
1750
  msgstr "مواصفات اللاعب"
1751
 
1752
+ #: includes/class-sp-post-types.php:281
1753
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:52
1754
  msgid "Metric"
1755
  msgstr "المقياس"
1756
 
1757
+ #: includes/class-sp-post-types.php:282
1758
  msgid "Add New Metric"
1759
  msgstr "إضافة مواصفات جديدة"
1760
 
1761
+ #: includes/class-sp-post-types.php:283
1762
  msgid "Edit Metric"
1763
  msgstr "تحرير المواصفات"
1764
 
1765
+ #: includes/class-sp-post-types.php:310 includes/class-sp-post-types.php:311
1766
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:128
1767
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:35
1768
+ #: includes/admin/settings/class-sp-settings-events.php:102
1769
+ #: includes/admin/views/html-admin-config.php:147
1770
+ #: includes/admin/views/html-admin-page-status.php:247
1771
+ msgid "Player Performance"
1772
+ msgstr "أداء اللاعب"
1773
+
1774
+ #: includes/class-sp-post-types.php:312
1775
  msgid "Add New Performance"
1776
  msgstr ""
1777
 
1778
+ #: includes/class-sp-post-types.php:313
1779
  msgid "Edit Performance"
1780
  msgstr "تحرير الأداء"
1781
 
1782
+ #: includes/class-sp-post-types.php:340
1783
+ #: includes/admin/views/html-admin-config.php:309
1784
  #: includes/admin/views/html-admin-page-status.php:277
1785
  msgid "Player Statistics"
1786
  msgstr "إحصائيات اللاعب"
1787
 
1788
+ #: includes/class-sp-post-types.php:341
1789
  msgid "Statistic"
1790
  msgstr "إحصائية"
1791
 
1792
+ #: includes/class-sp-post-types.php:342
1793
  msgid "Add New Statistic"
1794
  msgstr "أضف أحصائية جديدة"
1795
 
1796
+ #: includes/class-sp-post-types.php:343
1797
  msgid "Edit Statistic"
1798
  msgstr "تحرير الإحصائية"
1799
 
1800
+ #: includes/class-sp-post-types.php:370
1801
  #: includes/admin/class-sp-admin-permalink-settings.php:25
1802
  #: includes/admin/class-sp-admin-taxonomies.php:134
1803
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:53
1804
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:136
1805
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
1806
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
1807
  #: includes/admin/settings/class-sp-settings-events.php:25
1808
  msgid "Events"
1809
  msgstr "أحداث"
1810
 
1811
+ #: includes/class-sp-post-types.php:372
1812
+ #: includes/admin/class-sp-admin-welcome.php:247
 
 
 
 
 
 
 
 
 
 
1813
  msgid "Add New Event"
1814
  msgstr "أضف حدث جديد"
1815
 
1816
+ #: includes/class-sp-post-types.php:373
1817
  msgid "Edit Event"
1818
  msgstr "تحرير الحدث"
1819
 
1820
+ #: includes/class-sp-post-types.php:375
1821
+ msgid "View Event"
1822
+ msgstr ""
1823
+
1824
+ #: includes/class-sp-post-types.php:400
1825
  #: includes/admin/class-sp-admin-permalink-settings.php:27
 
1826
  msgid "Calendars"
1827
  msgstr "التقويمات"
1828
 
1829
+ #: includes/class-sp-post-types.php:402
1830
  msgid "Add New Calendar"
1831
  msgstr "إضافة تقويم جديد"
1832
 
1833
+ #: includes/class-sp-post-types.php:403
1834
  msgid "Edit Calendar"
1835
  msgstr "تحرير التقويم"
1836
 
1837
+ #: includes/class-sp-post-types.php:405
1838
+ msgid "View Calendar"
1839
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1840
 
1841
+ #: includes/class-sp-post-types.php:433
1842
+ #: includes/admin/class-sp-admin-welcome.php:245
1843
  msgid "Add New Team"
1844
  msgstr "أضف فريق جديد"
1845
 
1846
+ #: includes/class-sp-post-types.php:434
1847
  msgid "Edit Team"
1848
  msgstr "تحرير الفريق"
1849
 
1850
+ #: includes/class-sp-post-types.php:436
1851
+ msgid "View Team"
1852
+ msgstr ""
1853
+
1854
+ #: includes/class-sp-post-types.php:461
1855
  #: includes/admin/class-sp-admin-permalink-settings.php:31
1856
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:143
1857
+ #: includes/admin/settings/class-sp-settings-teams.php:53
1858
  msgid "League Tables"
1859
  msgstr "جداول البطولة"
1860
 
1861
+ #: includes/class-sp-post-types.php:463
 
 
 
 
 
 
1862
  msgid "Add New League Table"
1863
  msgstr "أضف جدول بطولة جديد"
1864
 
1865
+ #: includes/class-sp-post-types.php:464
1866
  msgid "Edit League Table"
1867
  msgstr "تجرير جدول البطولة"
1868
 
1869
+ #: includes/class-sp-post-types.php:466
1870
+ msgid "View League Table"
1871
+ msgstr ""
1872
+
1873
+ #: includes/class-sp-post-types.php:492
1874
+ #: includes/admin/class-sp-admin-permalink-settings.php:32
1875
+ #: includes/admin/importers/class-sp-event-importer.php:32
1876
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:52
1877
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:69
1878
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:122
1879
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:170
1880
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:105
1881
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:58
1882
+ #: includes/admin/settings/class-sp-settings-players.php:25
1883
+ #: includes/admin/settings/class-sp-settings-players.php:62
1884
+ msgid "Players"
1885
+ msgstr "لاعبين"
1886
+
1887
  #: includes/class-sp-post-types.php:494
1888
+ #: includes/admin/class-sp-admin-welcome.php:246
1889
+ msgid "Add New Player"
1890
+ msgstr "أضف لاعب جديد"
1891
+
1892
+ #: includes/class-sp-post-types.php:495
1893
+ msgid "Edit Player"
1894
+ msgstr "تحرير لاعب"
1895
+
1896
+ #: includes/class-sp-post-types.php:497
1897
+ msgid "View Player"
1898
+ msgstr ""
1899
+
1900
+ #: includes/class-sp-post-types.php:522
1901
  #: includes/admin/class-sp-admin-permalink-settings.php:34
1902
  #: includes/admin/post-types/class-sp-admin-meta-boxes.php:142
1903
+ #: includes/admin/settings/class-sp-settings-players.php:59
1904
  msgid "Player Lists"
1905
  msgstr "قائمة اللاعبين"
1906
 
1907
+ #: includes/class-sp-post-types.php:524
 
 
 
 
 
 
 
1908
  msgid "Add New Player List"
1909
  msgstr "أضف قائمة لاعبين جديده"
1910
 
1911
+ #: includes/class-sp-post-types.php:525
1912
  msgid "Edit Player List"
1913
  msgstr "تحرير قائمة اللاعب"
1914
 
1915
  #: includes/class-sp-post-types.php:527
1916
+ msgid "View Player List"
1917
+ msgstr ""
1918
+
1919
+ #: includes/class-sp-post-types.php:555
1920
  msgid "Add New Staff"
1921
  msgstr "أضف إداري جديد"
1922
 
1923
+ #: includes/class-sp-post-types.php:556
1924
  msgid "Edit Staff"
1925
  msgstr "تحرير إداري"
1926
 
1927
+ #: includes/class-sp-post-types.php:558
1928
+ #: includes/admin/importers/class-sp-staff-importer.php:141
1929
+ msgid "View Staff"
1930
+ msgstr "عرض الطاقم"
1931
+
1932
+ #: includes/sp-core-functions.php:318
1933
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:98
1934
  #: templates/team-link.php:21
1935
  msgid "Visit Site"
1936
  msgstr ""
1937
 
1938
+ #: includes/sp-core-functions.php:350
 
 
 
 
 
 
 
1939
  msgid "Average"
1940
  msgstr "متوسط"
1941
 
1942
+ #: includes/sp-core-functions.php:408
1943
  msgid "Published"
1944
  msgstr "منشور"
1945
 
1946
+ #: includes/sp-core-functions.php:409
1947
  msgid "Scheduled"
1948
  msgstr "مجدول"
1949
 
1950
+ #: includes/sp-core-functions.php:686 includes/sp-core-functions.php:826
 
 
 
 
 
 
 
 
1951
  msgid "(no title)"
1952
  msgstr "(بلا ​​عنوان)"
1953
 
1954
+ #: includes/sp-core-functions.php:703 includes/sp-core-functions.php:783
1955
  msgid "Select All"
1956
+ msgstr "حدّد الكل"
1957
 
1958
+ #: includes/sp-core-functions.php:764 includes/sp-core-functions.php:767
 
1959
  msgid "Show all"
1960
+ msgstr ""
1961
 
1962
+ #: includes/sp-core-functions.php:1083
1963
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:87
1964
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:101
1965
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:97
1966
+ #: templates/player-details.php:52 templates/staff-details.php:36
1967
+ msgid "Current Team"
1968
+ msgstr "الفريق الحالي"
1969
 
1970
+ #: includes/sp-core-functions.php:1084
1971
+ #: includes/admin/importers/class-sp-event-importer.php:26
1972
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:92
1973
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:49
1974
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:42
1975
+ #: templates/event-details.php:21 templates/event-list.php:57
1976
  msgid "Date"
1977
  msgstr "التاريخ"
1978
 
1979
+ #: includes/sp-core-functions.php:1088
1980
+ #: includes/admin/importers/class-sp-player-importer.php:32
1981
+ #: includes/admin/importers/class-sp-staff-importer.php:31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1982
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:59
1983
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
1984
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:71
1985
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:72
1986
+ #: includes/admin/settings/class-sp-settings-players.php:50
1987
+ #: includes/admin/settings/class-sp-settings-staff.php:52
1988
  #: templates/player-details.php:34 templates/staff-details.php:32
1989
  msgid "Nationality"
1990
  msgstr "الجنسية"
1991
 
1992
+ #: includes/sp-core-functions.php:1090
1993
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:101
1994
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:98
1995
+ #: templates/player-details.php:61 templates/staff-details.php:43
1996
+ msgid "Past Teams"
1997
+ msgstr "الفرق السابقة"
 
 
1998
 
1999
+ #: includes/sp-core-functions.php:1093 templates/league-table.php:53
2000
  msgid "Pos"
2001
  msgstr "أسم النادي"
2002
 
2003
+ #: includes/sp-core-functions.php:1095
2004
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:167
2005
+ #: templates/event-list.php:215
2006
  msgid "Preview"
2007
  msgstr "معاينة"
2008
 
2009
+ #: includes/sp-core-functions.php:1096 templates/player-list.php:90
2010
  msgid "Rank"
2011
  msgstr "المرتبة"
2012
 
2013
+ #: includes/sp-core-functions.php:1097
2014
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:165
2015
+ #: templates/event-list.php:213
2016
  msgid "Recap"
2017
  msgstr "خلاصة"
2018
 
2019
+ #: includes/sp-core-functions.php:1101
2020
+ msgid "Substitutes"
2021
+ msgstr "أستبدل"
 
 
 
2022
 
2023
+ #: includes/sp-core-functions.php:1105
2024
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:64
2025
+ #: templates/event-list.php:71
2026
  msgid "Time/Results"
2027
  msgstr "الوقت/النتيجة"
2028
 
2029
+ #: includes/sp-core-functions.php:1108 templates/event-blocks.php:118
2030
+ #: templates/event-calendar.php:211 templates/event-list.php:234
2031
  msgid "View all events"
2032
  msgstr "عرض جميع الأحداث"
2033
 
2034
+ #: includes/sp-core-functions.php:1109 templates/player-gallery.php:149
2035
+ #: templates/player-list.php:164
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2036
  msgid "View all players"
2037
  msgstr "عرض جميع اللاعبين"
2038
 
2039
+ #: includes/sp-core-functions.php:1110 templates/league-table.php:154
2040
+ msgid "View full table"
2041
+ msgstr "عرض جميع الجداول"
2042
+
2043
  #: includes/sp-template-hooks.php:151
2044
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:48
2045
  #: includes/admin/post-types/class-sp-admin-cpt-metric.php:45
2046
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:46
2047
  #: includes/admin/post-types/class-sp-admin-cpt-performance.php:45
2048
  #: includes/admin/post-types/class-sp-admin-cpt-result.php:45
2049
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:47
2050
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:137
2051
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:152
2052
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:170
2053
+ #: includes/admin/views/html-admin-config.php:29
2054
+ #: includes/admin/views/html-admin-config.php:87
2055
+ #: includes/admin/views/html-admin-config.php:157
2056
+ #: includes/admin/views/html-admin-config.php:212
2057
+ #: includes/admin/views/html-admin-config.php:267
2058
+ #: includes/admin/views/html-admin-config.php:320
2059
  msgid "Description"
2060
  msgstr "الوصف"
2061
 
2063
  msgid ""
2064
  "The description is not prominent by default; however, some themes may show "
2065
  "it."
2066
+ msgstr "الوصف لا يظهر بشكل افتراضي لكن بعض القوالب قادرة على إظهاره."
2067
 
2068
  #: includes/sp-template-hooks.php:157
2069
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:44
2070
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:44
2071
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:34
2072
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-statistic-details.php:31
2073
+ #: includes/admin/views/html-admin-config.php:208
2074
+ #: includes/admin/views/html-admin-config.php:317
2075
  msgid "Key"
2076
+ msgstr "الاسم"
2077
 
2078
  #: includes/sp-template-hooks.php:157
2079
  #: includes/admin/post-types/class-sp-admin-cpt-metric.php:44
2081
  #: includes/admin/post-types/class-sp-admin-cpt-performance.php:44
2082
  #: includes/admin/post-types/class-sp-admin-cpt-result.php:44
2083
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-metric-details.php:27
2084
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-outcome-details.php:28
2085
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-performance-details.php:27
2086
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-result-details.php:27
2087
+ #: includes/admin/views/html-admin-config.php:27
2088
+ #: includes/admin/views/html-admin-config.php:156
2089
+ #: includes/admin/views/html-admin-config.php:266
2090
  msgid "Variable"
2091
  msgstr "المتغير"
2092
 
2093
+ #: includes/sp-template-hooks.php:160
2094
+ #: includes/admin/views/html-admin-config.php:154
2095
+ msgid "Icon"
2096
+ msgstr ""
2097
+
2098
+ #: includes/sp-template-hooks.php:163
2099
+ msgid "Select Icon"
2100
+ msgstr ""
2101
+
2102
+ #: includes/sp-template-hooks.php:166
2103
+ msgid "Add icon"
2104
+ msgstr ""
2105
+
2106
+ #: includes/sp-template-hooks.php:169
2107
+ msgid "Remove icon"
2108
+ msgstr ""
2109
+
2110
+ #: includes/sp-template-hooks.php:177
2111
  msgid "User"
2112
  msgstr "مستخدم"
2113
 
2114
+ #: includes/sp-template-hooks.php:185
2115
+ msgid "Photo"
2116
+ msgstr "الصورة"
2117
+
2118
+ #: includes/sp-template-hooks.php:188
2119
+ msgid "Select Photo"
2120
+ msgstr "اختيار الصورة"
2121
+
2122
+ #: includes/sp-template-hooks.php:191
2123
+ msgid "Add photo"
2124
+ msgstr "إضافة صورة"
2125
+
2126
+ #: includes/sp-template-hooks.php:194
2127
+ msgid "Remove photo"
2128
+ msgstr "ازالة الصورة"
2129
+
2130
+ #: includes/sp-template-hooks.php:202
2131
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:63
2132
  msgid "Logo"
2133
  msgstr "شعار"
2134
 
2135
+ #: includes/sp-template-hooks.php:205
2136
  msgid "Select Logo"
2137
  msgstr "اختيار الشعار"
2138
 
2139
+ #: includes/sp-template-hooks.php:208
2140
  msgid "Add logo"
2141
  msgstr "اضافة شعار"
2142
 
2143
+ #: includes/sp-template-hooks.php:211
2144
  msgid "Remove logo"
2145
  msgstr ""
2146
 
2147
+ #: includes/sp-template-hooks.php:219
2148
  msgid "Date/Time:"
2149
  msgstr "تاريخ/وقت:"
2150
 
2151
+ #: includes/sp-template-hooks.php:219
2152
  msgid "Now"
2153
  msgstr "الآن"
2154
 
2155
+ #: includes/sp-template-hooks.php:348
2156
  #: includes/admin/class-sp-admin-post-types.php:62
2157
  msgid "Settings saved."
2158
+ msgstr "تمّ حفظ الإعدادات."
2159
 
2160
+ #: includes/sp-template-hooks.php:350
2161
  #: includes/admin/class-sp-admin-post-types.php:64
2162
+ #: includes/admin/views/html-admin-config.php:50
2163
+ #: includes/admin/views/html-admin-config.php:125
2164
+ #: includes/admin/views/html-admin-config.php:178
2165
+ #: includes/admin/views/html-admin-config.php:235
2166
+ #: includes/admin/views/html-admin-config.php:287
2167
+ #: includes/admin/views/html-admin-config.php:342
2168
+ #: includes/admin/views/html-admin-overview.php:225
2169
  msgid "View All"
2170
+ msgstr "إظهار الكل"
2171
 
2172
+ #: includes/sp-template-hooks.php:356 includes/sp-template-hooks.php:359
2173
+ #: includes/sp-template-hooks.php:364
2174
  #: includes/admin/class-sp-admin-post-types.php:69
2175
  #: includes/admin/class-sp-admin-post-types.php:72
2176
  #: includes/admin/class-sp-admin-post-types.php:77
2177
  msgid "Changes saved."
2178
+ msgstr "تم حفظ التغييرات"
2179
 
2180
+ #: includes/sp-template-hooks.php:361 includes/sp-template-hooks.php:366
2181
+ #: includes/sp-template-hooks.php:376
2182
  #: includes/admin/class-sp-admin-post-types.php:74
2183
  #: includes/admin/class-sp-admin-post-types.php:79
2184
  #: includes/admin/class-sp-admin-post-types.php:89
2185
  msgid "Success!"
2186
+ msgstr "تمّ بنجاح!"
2187
 
2188
+ #: includes/sp-template-hooks.php:368 includes/sp-template-hooks.php:374
2189
+ #: includes/sp-template-hooks.php:378
2190
  #: includes/admin/class-sp-admin-post-types.php:81
2191
  #: includes/admin/class-sp-admin-post-types.php:87
2192
  #: includes/admin/class-sp-admin-post-types.php:91
2194
  msgid "Preview %s"
2195
  msgstr "معاينة %s"
2196
 
2197
+ #: includes/sp-template-hooks.php:371
2198
  #: includes/admin/class-sp-admin-post-types.php:84
2199
  #, php-format
2200
  msgid "Scheduled for: <b>%1$s</b>."
2201
  msgstr "المقرر إلى: <b>%1$s</b>."
2202
 
2203
+ #: includes/sp-template-hooks.php:372
2204
  #: includes/admin/class-sp-admin-post-types.php:85
2205
+ msgid "M j, Y @ G:i"
2206
+ msgstr "j F, Y @ G:i"
2207
+
2208
+ #: includes/admin/class-sp-admin-assets.php:106
2209
+ #: includes/admin/class-sp-admin-settings.php:114
2210
+ #: includes/admin/importers/class-sp-event-importer.php:487
2211
+ #: includes/admin/importers/class-sp-event-importer.php:502
2212
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:163
2213
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:189
2214
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:78
2215
  #: includes/admin/views/html-admin-page-status.php:224
2216
  msgid "None"
2217
  msgstr "بدون"
2218
 
2219
+ #: includes/admin/class-sp-admin-assets.php:107
2220
  msgid "&mdash; Remove &mdash;"
2221
  msgstr "&mdash; حذف &mdash;"
2222
 
2223
+ #: includes/admin/class-sp-admin-assets.php:112
2224
+ #: includes/admin/importers/class-sp-importer.php:176
2225
+ #, php-format
2226
+ msgid "Displaying %s&#8211;%s of %s"
2227
+ msgstr ""
2228
+
2229
  #: includes/admin/class-sp-admin-dashboard.php:34
2230
+ #: includes/admin/class-sp-admin-menus.php:51
2231
  #: includes/admin/class-sp-admin-permalink-settings.php:47
2232
+ #: includes/admin/views/html-admin-overview.php:19
2233
+ #: includes/admin/views/html-admin-overview.php:76
2234
+ #: includes/admin/views/html-admin-overview.php:127
2235
+ #: includes/admin/views/html-admin-overview.php:148
2236
+ #: includes/admin/views/html-admin-overview.php:230
2237
+ #: includes/admin/views/html-admin-overview.php:275
2238
+ #: includes/admin/views/html-admin-overview.php:295
2239
+ #: includes/widgets/class-sp-widget-countdown.php:6
2240
+ #: includes/widgets/class-sp-widget-event-blocks.php:6
2241
+ #: includes/widgets/class-sp-widget-event-calendar.php:6
2242
+ #: includes/widgets/class-sp-widget-event-list.php:6
2243
+ #: includes/widgets/class-sp-widget-league-table.php:6
2244
+ #: includes/widgets/class-sp-widget-player-gallery.php:6
2245
+ #: includes/widgets/class-sp-widget-player-list.php:6
2246
  msgid "SportsPress"
2247
  msgstr "وو كومرس"
2248
 
2316
  msgid "Import <strong>staff</strong> from a csv file."
2317
  msgstr ""
2318
 
2319
+ #: includes/admin/class-sp-admin-menus.php:58
2320
+ #: includes/admin/views/html-admin-overview.php:3
2321
+ msgid "Overview"
2322
+ msgstr ""
2323
+
2324
+ #: includes/admin/class-sp-admin-menus.php:65
2325
+ #: includes/admin/views/html-admin-config.php:3
2326
+ msgid "Configure"
2327
+ msgstr "إعدادات"
2328
 
2329
+ #: includes/admin/class-sp-admin-menus.php:86
2330
  #: includes/admin/views/html-admin-page-status.php:2
2331
  #: includes/admin/views/html-notice-template-check.php:6
2332
  msgid "System Status"
2333
  msgstr "حالة النظام"
2334
 
 
 
 
 
 
 
 
 
2335
  #: includes/admin/class-sp-admin-permalink-settings.php:75
2336
  msgid ""
2337
  "These settings control the permalinks used for SportsPress. These settings "
2338
  "only apply when <strong>not using \"default\" permalinks above</strong>."
2339
+ msgstr "تستخدم هذه الإعدادات روابط بريما في SportsPress. تطبيق هذه الإعدادات فقط عندما <strong>لا تستخدم \"default\" روابط بريما فوق</strong>."
 
 
2340
 
2341
+ #: includes/admin/class-sp-admin-settings.php:57
2342
  msgid "Action failed. Please refresh the page and retry."
2343
  msgstr "فشل تنفيذ الإجراء. رجاءً حدث الصفحة وحاول مجددا"
2344
 
2345
+ #: includes/admin/class-sp-admin-settings.php:64
2346
+ #: includes/admin/class-sp-admin-welcome.php:192
2347
  msgid "Your settings have been saved."
2348
  msgstr "تم حفظ إعداداتك"
2349
 
2350
+ #: includes/admin/class-sp-admin-sports.php:25
2351
+ #: includes/admin/class-sp-admin-sports.php:46
2352
+ #: includes/admin/class-sp-admin-sports.php:48
2353
+ msgid "Traditional Sports"
2354
+ msgstr ""
2355
+
2356
+ #: includes/admin/class-sp-admin-sports.php:26
2357
+ #: includes/admin/class-sp-admin-sports.php:66
2358
+ #: includes/admin/class-sp-admin-sports.php:68
2359
+ msgid "Esports"
2360
+ msgstr ""
2361
+
2362
+ #: includes/admin/class-sp-admin-sports.php:27
2363
+ msgid "Other"
2364
+ msgstr ""
2365
+
2366
+ #: includes/admin/class-sp-admin-sports.php:27
2367
  msgid "Custom"
2368
  msgstr "مخصص"
2369
 
2414
  #: includes/admin/class-sp-admin-welcome.php:150
2415
  #, php-format
2416
  msgid "Version %s"
2417
+ msgstr "الإصدار %s"
2418
 
2419
  #: includes/admin/class-sp-admin-welcome.php:159
2420
  #: includes/admin/views/html-notice-install.php:7
2421
  msgid "Get Started"
2422
+ msgstr "الشروع في ..."
2423
 
2424
+ #: includes/admin/class-sp-admin-welcome.php:198
2425
+ #: includes/admin/settings/class-sp-settings-general.php:245
2426
+ #: includes/admin/settings/class-sp-settings-general.php:248
2427
+ msgid "Timezone"
2428
+ msgstr "المنطقة الزمنيّة"
2429
 
2430
+ #: includes/admin/class-sp-admin-welcome.php:222
2431
+ #: includes/admin/settings/class-sp-settings-general.php:49
 
 
 
 
 
2432
  #: includes/admin/views/html-admin-page-status.php:223
2433
  msgid "Sport"
2434
  msgstr "الرياضة"
2435
 
2436
+ #: includes/admin/class-sp-admin-welcome.php:235
2437
+ #: includes/admin/views/html-admin-settings.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2438
  msgid "Save changes"
2439
  msgstr "حفظ الإعدادات"
2440
 
2441
+ #: includes/admin/class-sp-admin-welcome.php:242
2442
  msgid "Next Steps"
2443
  msgstr "الخطوات التالية"
2444
 
2445
+ #: includes/admin/class-sp-admin-welcome.php:243
2446
+ msgid "We&#8217;ve assembled some links to get you started:"
2447
+ msgstr ""
2448
+
2449
+ #: includes/admin/class-sp-admin-welcome.php:251
2450
  msgid "Translators"
2451
  msgstr "المترجمين"
2452
 
2453
+ #: includes/admin/class-sp-admin-welcome.php:252
2454
  msgid ""
2455
  "SportsPress has been kindly translated into several other languages thanks "
2456
+ "to our translation team. Want to see your name? <a "
2457
+ "href=\"https://www.transifex.com/projects/p/sportspress/\">Translate "
2458
+ "SportsPress</a>."
2459
  msgstr ""
2460
 
2461
+ #: includes/admin/class-sp-admin-welcome.php:268
2462
  msgid "Go to SportsPress Settings"
2463
  msgstr "أذهب لإعدادات SportsPress"
2464
 
2465
+ #: includes/admin/importers/class-sp-event-importer.php:24
2466
+ msgid "Import Events"
2467
+ msgstr "استيراد الأحداث"
 
 
 
 
 
 
 
 
 
 
 
 
2468
 
2469
+ #: includes/admin/importers/class-sp-event-importer.php:407
2470
  #, php-format
2471
  msgid ""
2472
+ "Import complete - imported <strong>%s</strong> events and skipped "
2473
+ "<strong>%s</strong>."
2474
+ msgstr "استيراد كامل - المستوردة<strong>%s</strong> الأحداث وتخطي<strong>%s</strong>."
 
2475
 
2476
+ #: includes/admin/importers/class-sp-event-importer.php:417
2477
+ #: includes/admin/importers/class-sp-player-importer.php:145
2478
+ #: includes/admin/importers/class-sp-staff-importer.php:141
2479
+ #: includes/admin/importers/class-sp-team-importer.php:102
2480
  msgid "All done!"
2481
  msgstr "اكتمل!"
2482
 
2483
+ #: includes/admin/importers/class-sp-event-importer.php:417
2484
  msgid "View Events"
2485
  msgstr "عرض الأحداث"
2486
 
2487
+ #: includes/admin/importers/class-sp-event-importer.php:430
2488
+ #: includes/admin/importers/class-sp-player-importer.php:168
2489
+ #: includes/admin/importers/class-sp-staff-importer.php:164
2490
+ #: includes/admin/importers/class-sp-team-importer.php:115
 
 
 
 
2491
  msgid ""
2492
+ "Hi there! Choose a .csv file to upload, then click \"Upload file and "
2493
+ "import\"."
2494
  msgstr ""
2495
 
2496
+ #: includes/admin/importers/class-sp-event-importer.php:431
2497
  #, php-format
2498
  msgid ""
2499
  "Events need to be defined with columns in a specific order (3+ columns). <a "
2500
  "href=\"%s\">Click here to download a sample</a>."
2501
  msgstr ""
2502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2503
  #: includes/admin/importers/class-sp-event-importer.php:448
2504
+ msgid "Date Format"
2505
+ msgstr ""
2506
+
2507
+ #: includes/admin/importers/class-sp-event-importer.php:467
2508
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:90
2509
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:122
2510
  msgid "Format"
2511
  msgstr "البنية"
2512
 
2513
+ #: includes/admin/importers/class-sp-event-importer.php:484
2514
+ #: includes/admin/importers/class-sp-event-importer.php:499
2515
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:44
2516
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:62
2517
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:79
2518
  msgid "-- Not set --"
2519
  msgstr "-- غير معين --"
2520
 
2521
+ #: includes/admin/importers/class-sp-importer.php:100
2522
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:47
2523
+ msgid "Disable"
2524
+ msgstr "تعطيل"
 
 
2525
 
2526
+ #: includes/admin/importers/class-sp-importer.php:145
2527
+ #: includes/admin/importers/class-sp-importer.php:159
2528
+ #: includes/admin/importers/class-sp-importer.php:170
2529
+ msgid "Insert row after"
2530
+ msgstr ""
2531
 
2532
+ #: includes/admin/importers/class-sp-importer.php:158
2533
+ msgid "Delete row"
 
 
 
2534
  msgstr ""
2535
 
2536
+ #: includes/admin/importers/class-sp-importer.php:185
2537
+ #: includes/admin/importers/class-sp-importer.php:221
2538
+ #: includes/admin/importers/class-sp-importer.php:236
2539
+ msgid "Sorry, there has been an error."
2540
+ msgstr "نأسف، يبدو أن هناك مشكلة."
2541
+
2542
+ #: includes/admin/importers/class-sp-importer.php:186
2543
+ msgid "The CSV is invalid."
2544
+ msgstr "ملف CSV غير صالح."
2545
 
2546
+ #: includes/admin/importers/class-sp-player-importer.php:24
2547
+ #: includes/admin/importers/class-sp-player-importer.php:157
2548
  msgid "Import Players"
2549
  msgstr "أستيراد اللاعبين"
2550
 
2551
+ #: includes/admin/importers/class-sp-player-importer.php:135
2552
  #, php-format
2553
  msgid ""
2554
+ "Import complete - imported <strong>%s</strong> players and skipped "
2555
+ "<strong>%s</strong>."
2556
  msgstr ""
2557
 
2558
+ #: includes/admin/importers/class-sp-player-importer.php:145
2559
+ msgid "View Players"
2560
+ msgstr "عرض اللاعبين"
2561
+
2562
+ #: includes/admin/importers/class-sp-player-importer.php:169
2563
  #, php-format
2564
  msgid ""
2565
+ "Players need to be defined with columns in a specific order (7 columns). <a "
2566
+ "href=\"%s\">Click here to download a sample</a>."
2567
  msgstr ""
2568
 
2569
+ #: includes/admin/importers/class-sp-staff-importer.php:24
2570
+ #: includes/admin/importers/class-sp-staff-importer.php:153
 
 
 
2571
  msgid "Import Staff"
2572
  msgstr "إستيراد الطاقم"
2573
 
2574
+ #: includes/admin/importers/class-sp-staff-importer.php:131
2575
+ #, php-format
2576
+ msgid ""
2577
+ "Import complete - imported <strong>%s</strong> staff and skipped "
2578
+ "<strong>%s</strong>."
2579
+ msgstr ""
2580
+
2581
+ #: includes/admin/importers/class-sp-staff-importer.php:165
2582
  #, php-format
2583
  msgid ""
2584
+ "Staff need to be defined with columns in a specific order (6 columns). <a "
2585
  "href=\"%s\">Click here to download a sample</a>."
2586
  msgstr ""
2587
 
2588
+ #: includes/admin/importers/class-sp-team-importer.php:24
2589
+ msgid "Import Teams"
2590
+ msgstr "أستيراد الفرق"
2591
+
2592
+ #: includes/admin/importers/class-sp-team-importer.php:29
2593
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:95
2594
+ #: includes/admin/views/html-admin-page-status.php:24
2595
+ msgid "Site URL"
2596
+ msgstr "رابط الموقع"
2597
+
2598
+ #: includes/admin/importers/class-sp-team-importer.php:30
2599
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:45
2600
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:66
2601
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-outcome-details.php:33
2602
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:101
2603
+ #: includes/admin/views/html-admin-config.php:28
2604
+ msgid "Abbreviation"
2605
+ msgstr "الإختصار"
2606
+
2607
+ #: includes/admin/importers/class-sp-team-importer.php:31
2608
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:57
2609
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:80
2610
+ #: templates/event-list.php:61
2611
+ msgid "Home"
2612
+ msgstr ""
2613
+
2614
+ #: includes/admin/importers/class-sp-team-importer.php:92
2615
  #, php-format
2616
  msgid ""
2617
+ "Import complete - imported <strong>%s</strong> teams and skipped "
2618
+ "<strong>%s</strong>."
2619
  msgstr ""
2620
 
2621
+ #: includes/admin/importers/class-sp-team-importer.php:102
2622
  msgid "View Teams"
2623
  msgstr "عرض الفرق"
2624
 
2625
+ #: includes/admin/importers/class-sp-team-importer.php:116
 
 
 
 
2626
  #, php-format
2627
  msgid ""
2628
  "Teams need to be defined with columns in a specific order (3 columns). <a "
2629
  "href=\"%s\">Click here to download a sample</a>."
2630
+ msgstr "تحتاج إلى تعريف فرق مع الأعمدة في ترتيب معين (3 أعمدة). <a href=\"%s\">أضغط هنا لتحميل العينة</a>."
 
 
2631
 
2632
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:48
2633
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:48
2634
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:48
2635
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:55
2636
  msgid "Title"
2637
  msgstr "الاسم"
2638
 
2639
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:54
2640
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:53
2641
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:134
2642
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:166
2643
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:67
2644
  msgid "Layout"
2645
+ msgstr "الشكل العام"
2646
+
2647
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:115
2648
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:194
2649
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:103
2650
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:150
2651
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:134
2652
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:85
2653
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:111
2654
  msgid "Show all leagues"
2655
  msgstr "عرض جميع البطولات"
2656
 
2657
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:124
2658
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:203
2659
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:112
2660
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:159
2661
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:143
2662
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:94
2663
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:120
2664
  msgid "Show all seasons"
2665
  msgstr "عرض جميع المواسم"
2666
 
2667
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:135
2668
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:186
2669
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:123
2670
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:142
2671
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:126
2672
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:105
2673
  msgid "Show all teams"
2674
  msgstr "كرض كل الفرق"
2675
 
2679
  #: includes/admin/post-types/class-sp-admin-cpt-performance.php:43
2680
  #: includes/admin/post-types/class-sp-admin-cpt-result.php:43
2681
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:43
2682
+ #: includes/admin/views/html-admin-config.php:26
2683
+ #: includes/admin/views/html-admin-config.php:85
2684
+ #: includes/admin/views/html-admin-config.php:155
2685
+ #: includes/admin/views/html-admin-config.php:207
2686
+ #: includes/admin/views/html-admin-config.php:265
2687
+ #: includes/admin/views/html-admin-config.php:316
2688
  msgid "Label"
2689
  msgstr "ملصق"
2690
 
2691
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:45
2692
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:45
2693
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:108
2694
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:118
2695
+ #: includes/admin/views/html-admin-config.php:209
2696
+ #: includes/admin/views/html-admin-config.php:318
2697
  msgid "Equation"
2698
  msgstr "معادلة"
2699
 
2701
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:46
2702
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:39
2703
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-statistic-details.php:36
2704
+ #: includes/admin/views/html-admin-config.php:210
2705
+ #: includes/admin/views/html-admin-config.php:319
2706
  msgid "Rounding"
2707
  msgstr "التقريب"
2708
 
2709
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:47
2710
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:113
2711
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:43
2712
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:98
2713
+ #: includes/admin/views/html-admin-config.php:211
2714
  msgid "Sort Order"
2715
  msgstr "الترتيب"
2716
 
2717
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:131
2718
+ msgid "Show all positions"
2719
+ msgstr "مشاهدة جميع المراكز"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2720
 
2721
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:65
2722
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:31
2723
  msgid "URL"
2724
  msgstr "URL"
2725
 
 
 
 
 
 
2726
  #: includes/admin/post-types/class-sp-admin-cpt.php:42
2727
  #, php-format
2728
  msgid "Insert into %s"
2733
  msgid "Uploaded to this %s"
2734
  msgstr "تم الرفع إلى %s"
2735
 
2736
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:121
2737
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:155
2738
  msgid "Shortcodes"
2739
  msgstr "الأكواد المختصرة"
2740
 
2741
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:125
2742
  msgid "Video"
2743
  msgstr "فيديو"
2744
 
2745
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:146
 
2746
  #: includes/admin/post-types/class-sp-admin-meta-boxes.php:162
2747
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:174
 
 
 
 
 
2748
  msgid "Profile"
2749
+ msgstr "حسابك"
2750
 
2751
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:156
2752
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:167
2753
  msgid "Columns"
2754
  msgstr "أعمدة"
2755
 
2756
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:158
2757
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:26
2758
  msgid "Metrics"
2759
  msgstr "المقاييس"
2760
 
2761
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:57
2762
+ #: templates/event-list.php:62
2763
+ msgid "Away"
2764
+ msgstr ""
 
2765
 
2766
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:189
2767
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:122
2768
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:170
2769
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
2770
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
2771
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
2772
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
2773
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
2774
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
2775
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:62
2776
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:72
2777
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:90
2778
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:105
2779
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:120
2780
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:135
2781
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:106
2782
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:150
2783
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:57
2784
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:72
2785
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:87
2786
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
2787
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:106
2788
  #, php-format
2789
  msgid "Select %s"
2790
+ msgstr "اختيار %s"
2791
 
2792
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:31
2793
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:86
2794
  msgid "Status"
2795
  msgstr "الحالة"
2796
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2797
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-shortcode.php:26
2798
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:24
2799
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-shortcode.php:26
2800
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:24
2801
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-shortcode.php:24
2802
  msgid ""
2803
  "Copy this code and paste it into your post, page or text widget content."
2804
  msgstr "أنسخ هذا الرمز وألصقه في آخر، أو نص صفحة المحتويات القطعة الخاصة بك."
2805
 
 
 
 
 
2806
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2807
  msgid "Attended"
2808
  msgstr "حضر"
2815
  msgid "Substituted"
2816
  msgstr "أستبدل"
2817
 
2818
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2819
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
2820
+ msgid "Minutes"
2821
+ msgstr ""
2822
+
2823
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
2824
  msgid "for"
2825
  msgstr ""
2828
  msgid "against"
2829
  msgstr ""
2830
 
2831
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:43
2832
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:44
2833
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:45
2834
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:46
2835
+ msgid "Outcomes"
2836
+ msgstr "يخرج"
2837
+
2838
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:44
2839
  msgid "Streak"
2840
  msgstr "خط"
2847
  msgid "Last 10"
2848
  msgstr "آخر 10"
2849
 
2850
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:58
2851
+ msgid "Operators"
2852
+ msgstr "مشغلي"
2853
+
2854
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:71
2855
+ msgid "Constants"
2856
+ msgstr "الثوابت"
2857
+
2858
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:28
2859
+ #: includes/admin/settings/class-sp-settings-events.php:131
2860
+ msgid "Full Time"
2861
+ msgstr ""
2862
+
2863
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:163
2864
  msgid "Starting Lineup"
2865
  msgstr "التشكيلة الأساسية"
2866
 
2867
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:164
2868
  msgid "Substitute"
2869
  msgstr "استبدل"
2870
 
2871
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:62
2872
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:93
2873
  msgid "&mdash; None &mdash;"
2874
  msgstr "&mdash; لا يوجد &mdash;"
2875
 
2877
  msgid "Remove video"
2878
  msgstr "حذف الفيديو"
2879
 
 
 
 
 
 
 
2880
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:36
2881
  msgid "Add video"
2882
  msgstr "أضف فيديو"
2883
 
2884
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:43
2885
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:49
2886
+ #: includes/admin/settings/class-sp-settings-events.php:107
 
 
 
 
2887
  msgid "Values"
2888
  msgstr "القيم"
2889
 
2890
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:44
2891
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:50
2892
  msgid "Adjustments"
2893
  msgstr "الضوابط"
2894
 
2895
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:84
2896
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:84
2897
+ #: includes/admin/views/html-admin-config.php:39
2898
+ #: includes/admin/views/html-admin-config.php:113
2899
+ #: includes/admin/views/html-admin-config.php:167
2900
+ #: includes/admin/views/html-admin-config.php:224
2901
+ #: includes/admin/views/html-admin-config.php:276
2902
+ #: includes/admin/views/html-admin-config.php:331
2903
  msgid "Edit"
2904
  msgstr "تحرير"
2905
 
2906
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:89
2907
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:89
2908
  msgid "Save"
2909
  msgstr "حفظ"
2910
 
2911
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:75
2912
+ msgid "Grouping"
2913
+ msgstr "التجميع"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2914
 
2915
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:82
2916
+ msgid "Sort by"
2917
+ msgstr "فرز حسب"
2918
+
2919
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:86
2920
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:83
2921
+ msgid "Current Teams"
2922
+ msgstr "الفرق الحالية"
2923
+
2924
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:56
2925
+ msgid "Highlight"
2926
+ msgstr ""
2927
+
2928
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:103
2929
+ msgid ""
2930
+ "The abbreviation is not prominent by default; however, some themes may show "
2931
+ "it"
2932
+ msgstr ""
2933
 
2934
  #: includes/admin/settings/class-sp-settings-events.php:42
2935
  msgid "Event Options"
2936
  msgstr "خيارات الحدث"
2937
 
2938
  #: includes/admin/settings/class-sp-settings-events.php:45
2939
+ #: includes/admin/settings/class-sp-settings-general.php:285
2940
+ #: includes/admin/settings/class-sp-settings-players.php:42
2941
+ #: includes/admin/settings/class-sp-settings-staff.php:44
2942
+ #: includes/admin/settings/class-sp-settings-teams.php:44
2943
+ msgid "Link"
2944
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
2945
 
2946
+ #: includes/admin/settings/class-sp-settings-events.php:46
2947
+ msgid "Link events"
2948
+ msgstr ""
2949
 
2950
+ #: includes/admin/settings/class-sp-settings-events.php:54
 
2951
  msgid "Link venues"
2952
  msgstr "رابط الملعب"
2953
 
2954
+ #: includes/admin/settings/class-sp-settings-events.php:62
2955
+ #: includes/admin/settings/class-sp-settings-events.php:156
2956
+ #: includes/admin/settings/class-sp-settings-events.php:198
2957
+ #: includes/admin/settings/class-sp-settings-players.php:78
2958
+ #: includes/admin/settings/class-sp-settings-teams.php:72
2959
+ msgid "Limit"
2960
+ msgstr "الحد الأقصى"
2961
+
2962
+ #: includes/admin/settings/class-sp-settings-events.php:66
2963
+ #: includes/admin/settings/class-sp-settings-teams.php:76
2964
+ msgid "teams"
2965
+ msgstr "فرق"
2966
 
2967
  #: includes/admin/settings/class-sp-settings-events.php:86
2968
+ msgid "Display players"
2969
+ msgstr ""
2970
 
2971
  #: includes/admin/settings/class-sp-settings-events.php:94
2972
+ msgid "Display total"
2973
+ msgstr ""
 
2974
 
2975
+ #: includes/admin/settings/class-sp-settings-events.php:108
2976
+ msgid "Icons"
2977
+ msgstr ""
2978
+
2979
+ #: includes/admin/settings/class-sp-settings-events.php:114
2980
+ msgid "Display maps"
2981
  msgstr "عرض الخرائط"
2982
 
2983
+ #: includes/admin/settings/class-sp-settings-events.php:123
2984
+ msgid "Display staff"
2985
+ msgstr ""
 
2986
 
2987
+ #: includes/admin/settings/class-sp-settings-events.php:145
2988
+ #: includes/widgets/class-sp-widget-event-list.php:6
2989
+ msgid "Event List"
2990
+ msgstr ""
 
2991
 
2992
+ #: includes/admin/settings/class-sp-settings-events.php:148
2993
+ #: includes/admin/settings/class-sp-settings-events.php:190
2994
+ #: includes/admin/settings/class-sp-settings-players.php:70
2995
+ #: includes/admin/settings/class-sp-settings-teams.php:64
2996
  msgid "Pagination"
2997
  msgstr "أرقام الصفحات"
2998
 
2999
+ #: includes/admin/settings/class-sp-settings-events.php:149
3000
+ #: includes/admin/settings/class-sp-settings-events.php:191
3001
+ #: includes/admin/settings/class-sp-settings-players.php:71
3002
+ #: includes/admin/settings/class-sp-settings-teams.php:65
3003
  msgid "Paginate"
3004
  msgstr "ترقيم الصفحات"
3005
 
3006
+ #: includes/admin/settings/class-sp-settings-events.php:160
3007
+ #: includes/admin/settings/class-sp-settings-events.php:202
3008
  msgid "events"
3009
  msgstr "أحداث"
3010
 
3011
+ #: includes/admin/settings/class-sp-settings-events.php:170
3012
+ #: includes/widgets/class-sp-widget-event-blocks.php:6
3013
+ msgid "Event Blocks"
3014
+ msgstr ""
3015
+
3016
+ #: includes/admin/settings/class-sp-settings-events.php:182
3017
+ msgid "Display season"
3018
+ msgstr ""
3019
+
3020
+ #: includes/admin/settings/class-sp-settings-events.php:240
3021
+ #: includes/admin/settings/class-sp-settings-events.php:244
3022
+ msgid "Delimiter"
3023
+ msgstr "الفاصل"
3024
+
3025
+ #: includes/admin/settings/class-sp-settings-events.php:249
3026
  msgid "Custom:"
3027
+ msgstr "مخصص:"
3028
 
3029
  #: includes/admin/settings/class-sp-settings-general.php:25
3030
  msgid "General"
3031
  msgstr "عام"
3032
 
3033
+ #: includes/admin/settings/class-sp-settings-general.php:44
3034
  msgid "General Options"
3035
  msgstr "إعدادات عامة"
3036
 
3037
+ #: includes/admin/settings/class-sp-settings-general.php:57
3038
  msgid "Google Maps"
3039
  msgstr ""
3040
 
3041
+ #: includes/admin/settings/class-sp-settings-general.php:63
3042
  msgid "Satellite"
3043
  msgstr ""
3044
 
3045
+ #: includes/admin/settings/class-sp-settings-general.php:64
3046
  msgid "Hybrid"
3047
  msgstr ""
3048
 
3049
+ #: includes/admin/settings/class-sp-settings-general.php:65
3050
  msgid "Terrain"
3051
  msgstr ""
3052
 
3053
+ #: includes/admin/settings/class-sp-settings-general.php:71
3054
  msgid "Styles and Scripts"
3055
  msgstr "المظهر وجافاسكربت"
3056
 
3057
+ #: includes/admin/settings/class-sp-settings-general.php:79
3058
  msgid "Align"
3059
  msgstr ""
3060
 
3061
+ #: includes/admin/settings/class-sp-settings-general.php:85
3062
  msgid "Left"
3063
  msgstr ""
3064
 
3065
+ #: includes/admin/settings/class-sp-settings-general.php:86
3066
  msgid "Center"
3067
  msgstr ""
3068
 
3069
+ #: includes/admin/settings/class-sp-settings-general.php:87
3070
  msgid "Right"
3071
  msgstr ""
3072
 
3073
+ #: includes/admin/settings/class-sp-settings-general.php:92
 
3074
  msgid "Padding"
 
 
 
 
 
3075
  msgstr ""
3076
 
3077
+ #: includes/admin/settings/class-sp-settings-general.php:108
3078
  msgid "Custom CSS"
3079
  msgstr "نمط مخصص"
3080
 
3081
+ #: includes/admin/settings/class-sp-settings-general.php:115
3082
  msgid "Scripts"
3083
  msgstr "جافاسكربت"
3084
 
3085
+ #: includes/admin/settings/class-sp-settings-general.php:116
3086
+ msgid "Live countdowns"
3087
+ msgstr "العد التنازلي المباشر"
3088
+
3089
  #: includes/admin/settings/class-sp-settings-general.php:121
3090
+ msgid "This will enable a script allowing the countdowns to be animated."
3091
+ msgstr "هاذا سوف يمكن الكود الذي يسمح للعد التنازلي أن يكون متحركاً"
3092
 
3093
+ #: includes/admin/settings/class-sp-settings-general.php:125
3094
+ msgid "Shortcode menu"
3095
+ msgstr ""
3096
 
3097
  #: includes/admin/settings/class-sp-settings-general.php:130
3098
+ msgid ""
3099
+ "This will enable a shortcode menu to be displayed in the visual editor."
3100
+ msgstr ""
3101
+
3102
+ #: includes/admin/settings/class-sp-settings-general.php:134
3103
+ msgid "Tables"
3104
+ msgstr ""
3105
 
3106
  #: includes/admin/settings/class-sp-settings-general.php:135
3107
+ msgid "Responsive"
3108
+ msgstr ""
3109
 
3110
+ #: includes/admin/settings/class-sp-settings-general.php:143
3111
+ msgid "Sortable"
3112
+ msgstr ""
3113
 
3114
+ #: includes/admin/settings/class-sp-settings-general.php:151
3115
+ msgid "Scrollable"
3116
+ msgstr ""
3117
 
3118
+ #: includes/admin/settings/class-sp-settings-general.php:159
3119
  msgid "Header Offset"
3120
  msgstr ""
3121
 
3122
+ #: includes/admin/settings/class-sp-settings-general.php:266
3123
  msgid "Frontend Styles"
3124
  msgstr "أنماط الواجهة الأمامية"
3125
 
3126
+ #: includes/admin/settings/class-sp-settings-general.php:281
3127
+ #: includes/admin/views/html-admin-config.php:84
3128
+ msgid "Primary"
3129
+ msgstr "الأساسي"
3130
+
3131
+ #: includes/admin/settings/class-sp-settings-general.php:282
3132
  msgid "Background"
3133
  msgstr "الخلفية"
3134
 
3135
+ #: includes/admin/settings/class-sp-settings-general.php:283
3136
  #: includes/admin/settings/class-sp-settings-text.php:25
3137
  #: includes/admin/settings/class-sp-settings-text.php:41
3138
  msgid "Text"
3139
  msgstr "حقل نص"
3140
 
3141
+ #: includes/admin/settings/class-sp-settings-general.php:284
3142
  msgid "Heading"
3143
  msgstr "العنوان"
3144
 
3145
+ #: includes/admin/settings/class-sp-settings-general.php:291
 
 
 
 
3146
  msgid "Enable"
3147
+ msgstr "تفعيل"
3148
+
3149
+ #: includes/admin/settings/class-sp-settings-players.php:39
3150
+ msgid "Player Options"
3151
+ msgstr "خيارات اللاعب"
3152
 
3153
  #: includes/admin/settings/class-sp-settings-players.php:43
3154
+ msgid "Link players"
3155
+ msgstr "رابط اللاعبين"
3156
+
3157
+ #: includes/admin/settings/class-sp-settings-players.php:51
3158
+ #: includes/admin/settings/class-sp-settings-staff.php:53
3159
  msgid "Display national flags"
3160
  msgstr "عرض أعلام الدول"
3161
 
3162
+ #: includes/admin/settings/class-sp-settings-players.php:63
3163
+ msgid "Display photos"
3164
+ msgstr ""
3165
+
3166
+ #: includes/admin/settings/class-sp-settings-players.php:82
3167
+ msgid "players"
3168
+ msgstr "اللاعبين"
3169
+
3170
  #: includes/admin/settings/class-sp-settings-staff.php:41
 
3171
  msgid "Staff Options"
3172
+ msgstr ""
3173
+
3174
+ #: includes/admin/settings/class-sp-settings-staff.php:45
3175
+ msgid "Link staff"
3176
+ msgstr ""
3177
 
3178
  #: includes/admin/settings/class-sp-settings-teams.php:41
3179
  msgid "Team Options"
3180
  msgstr "خيارات الفريق"
3181
 
3182
+ #: includes/admin/settings/class-sp-settings-teams.php:45
3183
+ msgid "Link teams"
3184
+ msgstr "رابط الفريق"
3185
+
3186
  #: includes/admin/settings/class-sp-settings-text.php:41
3187
  msgid "The following options affect how words are displayed on the frontend."
3188
  msgstr "هذه الخيارات تؤثر في كيفية عرض الكلمات في الواجهة الأمامية"
3189
 
3190
+ #: includes/admin/views/html-admin-config.php:20
3191
+ #: includes/admin/views/html-admin-config.php:75
3192
+ #: includes/admin/views/html-admin-config.php:148
3193
+ msgid "Used for events."
3194
+ msgstr ""
3195
+
3196
+ #: includes/admin/views/html-admin-config.php:86
3197
+ msgid "Variables"
3198
+ msgstr "المتغيرات"
3199
+
3200
+ #: includes/admin/views/html-admin-config.php:99
3201
+ #, php-format
3202
+ msgid "Default (%s)"
3203
+ msgstr "أفتراضي (%s)"
3204
+
3205
+ #: includes/admin/views/html-admin-config.php:201
3206
+ msgid "Used for league tables."
3207
+ msgstr "يستخدم في جداول الدوري"
3208
+
3209
+ #: includes/admin/views/html-admin-config.php:259
3210
+ #: includes/admin/views/html-admin-config.php:310
3211
+ msgid "Used for player lists."
3212
+ msgstr "يستخدم في قوائم اللاعبين"
3213
+
3214
+ #: includes/admin/views/html-admin-config.php:353
3215
+ #: includes/admin/views/html-admin-overview.php:333
3216
+ #: includes/admin/views/html-admin-settings.php:22
3217
+ msgid ""
3218
+ "Love SportsPress? Help spread the word by rating us 5★ on WordPress.org"
3219
+ msgstr ""
3220
+
3221
  #: includes/admin/views/html-admin-page-status.php:5
3222
  msgid "Please include this information when requesting support:"
3223
  msgstr "رجاءً ضمن هذه البيانات عند طلب الدعم"
3273
  #: includes/admin/views/html-admin-page-status.php:53
3274
  #, php-format
3275
  msgid ""
3276
+ "%s - We recommend setting memory to at least 64MB. See: <a "
3277
+ "href=\"%s\">Increasing memory allocated to PHP</a>"
3278
+ msgstr "%s - نحن نفضل أن يكون كحد ادنى 64MB. شاهد: <a href=\"%s\">زيادة الذاكرة المخصصة لل PHP</a>"
 
 
3279
 
3280
  #: includes/admin/views/html-admin-page-status.php:60
3281
  msgid "WP Debug Mode"
3340
  "Your server does not have fsockopen or cURL enabled - PayPal IPN and other "
3341
  "scripts which communicate with other servers will not work. Contact your "
3342
  "hosting provider."
3343
+ msgstr "الخام يمنع كل من fsockopen و cURL - خدمات PayPal IPN والخدمات التي تتصل بخوادم أخرى لن تعمل. تواصل مع خادمك لتفعيلها."
 
 
3344
 
3345
  #: includes/admin/views/html-admin-page-status.php:120
3346
  msgid "SOAP Client"
3353
  #: includes/admin/views/html-admin-page-status.php:125
3354
  #, php-format
3355
  msgid ""
3356
+ "Your server does not have the <a href=\"%s\">SOAP Client</a> class enabled -"
3357
+ " some gateway plugins which use SOAP may not work as expected."
3358
+ msgstr "خادمك لا يمكن <a href=\"%s\">عميل SOAP</a> - بعض إضافات طرق الدفع تستخدمه وقد لا تعمل كما يجب."
 
 
3359
 
3360
  #: includes/admin/views/html-admin-page-status.php:148
3361
  msgid "Plugins"
3363
 
3364
  #: includes/admin/views/html-admin-page-status.php:154
3365
  msgid "Installed Plugins"
3366
+ msgstr "الإضافات المنصّبة"
3367
 
3368
  #: includes/admin/views/html-admin-page-status.php:174
3369
  msgid "Visit plugin homepage"
3370
+ msgstr "زيارة صفحة الإضافة"
3371
 
3372
  #: includes/admin/views/html-admin-page-status.php:198
3373
  #: includes/admin/views/html-admin-page-status.php:413
3396
 
3397
  #: includes/admin/views/html-admin-page-status.php:365
3398
  msgid "Theme"
3399
+ msgstr "قالب"
3400
 
3401
  #: includes/admin/views/html-admin-page-status.php:402
3402
  msgid "Theme Name"
3412
 
3413
  #: includes/admin/views/html-admin-page-status.php:426
3414
  msgid "Templates"
3415
+ msgstr "ملفات القالب"
3416
 
3417
  #: includes/admin/views/html-admin-page-status.php:459
3418
  #, php-format
3444
  #: includes/admin/views/html-notice-template-check.php:5
3445
  msgid ""
3446
  "<strong>Your theme has bundled outdated copies of SportsPress template "
3447
+ "files</strong> &#8211; if you encounter functionality issues on the frontend"
3448
+ " this could the reason. Ensure you update or remove them (in general we "
3449
  "recommend only bundling the template files you actually need to customize). "
3450
  "See the system report for full details."
3451
  msgstr ""
3455
  "<strong>Your theme does not declare SportsPress support</strong> &#8211; if "
3456
  "you encounter layout issues please read our integration guide or choose a "
3457
  "SportsPress theme :)"
3458
+ msgstr "<strong>قالبك الحالي لا يدعم SportsPress</strong> &#8211; إذا واجهت مشاكل في التصميم رجاءً أقرأ دليل التكامل أو ثبت أحد قوالب SportsPress :)"
 
 
3459
 
3460
  #: includes/admin/views/html-notice-theme-support.php:7
3461
  msgid "Theme Integration Guide"
3465
  msgid "A clock that counts down to an upcoming event."
3466
  msgstr "ساعة العد التنازلي للحدث القادم ."
3467
 
3468
+ #: includes/widgets/class-sp-widget-countdown.php:42
 
 
 
 
3469
  #: includes/widgets/class-sp-widget-event-blocks.php:48
3470
  #: includes/widgets/class-sp-widget-event-calendar.php:41
3471
  #: includes/widgets/class-sp-widget-event-list.php:51
3475
  msgid "Title:"
3476
  msgstr "العنوان:"
3477
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3478
  #: includes/widgets/class-sp-widget-event-blocks.php:5
3479
  #: includes/widgets/class-sp-widget-event-list.php:5
3480
  msgid "A list of events."
3481
  msgstr "قائمة الأحداث."
3482
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3483
  #: includes/widgets/class-sp-widget-event-calendar.php:5
3484
  msgid "A calendar of events."
3485
  msgstr "تقويم الأحداث."
3486
 
3487
  #: includes/widgets/class-sp-widget-event-calendar.php:6
3488
+ msgid "Event Calendar"
 
 
 
 
3489
  msgstr ""
3490
 
 
 
 
 
 
3491
  #: includes/widgets/class-sp-widget-league-table.php:5
3492
  msgid "Display a league table."
3493
  msgstr "عرض جدول الدوري."
3494
 
 
 
 
 
 
 
 
 
 
 
 
 
3495
  #: includes/widgets/class-sp-widget-player-gallery.php:5
3496
  msgid "Display a gallery of players."
3497
  msgstr "عرض معرض اللاعبين."
3498
 
3499
  #: includes/widgets/class-sp-widget-player-gallery.php:6
3500
+ msgid "Player Gallery"
3501
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3502
 
3503
  #: includes/widgets/class-sp-widget-player-list.php:5
3504
  msgid "Display a list of players."
3505
  msgstr "عرض قائمة اللاعبين."
3506
 
 
 
 
 
3507
  #: includes/widgets/class-sp-widget-player-list.php:73
3508
  msgid "Performance:"
3509
  msgstr "الأداء:"
3510
 
3511
  #. translators: Calendar caption: 1: month name, 2: 4-digit year
3512
+ #: templates/event-calendar.php:88 templates/event-calendar.php:116
3513
+ #: templates/event-calendar.php:124
3514
  #, php-format
3515
  msgctxt "calendar caption"
3516
  msgid "%1$s %2$s"
3517
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/sportspress-az.mo ADDED
Binary file
languages/sportspress-az.po ADDED
@@ -0,0 +1,3501 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: SportsPress\n"
6
+ "POT-Creation-Date: 2014-08-26 02:27+1000\n"
7
+ "PO-Revision-Date: 2014-08-25 16:28+0000\n"
8
+ "Last-Translator: ThemeBoy <support@themeboy.com>\n"
9
+ "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/sportspress/language/az/)\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Language: az\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Generator: Poedit 1.6.3\n"
16
+ "X-Poedit-Basepath: ..\n"
17
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SourceCharset: UTF-8\n"
20
+
21
+ #: sportspress.php:82 sportspress.php:91
22
+ msgid "Cheatin&#8217; huh?"
23
+ msgstr ""
24
+
25
+ #: sportspress.php:132 includes/admin/class-sp-admin-menus.php:113
26
+ msgid "Settings"
27
+ msgstr ""
28
+
29
+ #: sportspress.php:133
30
+ msgid "Docs"
31
+ msgstr ""
32
+
33
+ #: sportspress.php:134
34
+ msgid "Upgrade"
35
+ msgstr ""
36
+
37
+ #: assets/js/admin/editor-lang.php:5
38
+ msgid "SportsPress Shortcodes"
39
+ msgstr ""
40
+
41
+ #: assets/js/admin/editor-lang.php:6
42
+ #: includes/admin/settings/class-sp-settings-general.php:96
43
+ #: includes/admin/settings/class-sp-settings-general.php:163
44
+ msgid "Auto"
45
+ msgstr ""
46
+
47
+ #: assets/js/admin/editor-lang.php:7
48
+ msgid "Manual"
49
+ msgstr ""
50
+
51
+ #: assets/js/admin/editor-lang.php:8
52
+ msgid "Select..."
53
+ msgstr ""
54
+
55
+ #: assets/js/admin/editor-lang.php:9 includes/class-sp-ajax.php:57
56
+ #: includes/class-sp-ajax.php:101 includes/class-sp-ajax.php:130
57
+ #: includes/class-sp-ajax.php:159 includes/class-sp-ajax.php:290
58
+ #: includes/class-sp-post-types.php:371 includes/sp-core-functions.php:1086
59
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:99
60
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:225
61
+ #: includes/widgets/class-sp-widget-countdown.php:62
62
+ #: includes/widgets/class-sp-widget-event-list.php:111
63
+ #: templates/event-list.php:66
64
+ msgid "Event"
65
+ msgstr ""
66
+
67
+ #: assets/js/admin/editor-lang.php:10 includes/sp-core-functions.php:1085
68
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:101
69
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:104
70
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:107
71
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:111
72
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:114
73
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:117
74
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:123
75
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:135
76
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:140
77
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:150
78
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:157
79
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:168
80
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:173
81
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:189
82
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:31
83
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:27
84
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
85
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:106
86
+ #: includes/admin/settings/class-sp-settings-events.php:173
87
+ #: templates/event-details.php:34
88
+ msgid "Details"
89
+ msgstr ""
90
+
91
+ #: assets/js/admin/editor-lang.php:11
92
+ #: includes/admin/importers/class-sp-event-importer.php:30
93
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
94
+ msgid "Results"
95
+ msgstr ""
96
+
97
+ #: assets/js/admin/editor-lang.php:12
98
+ #: includes/widgets/class-sp-widget-countdown.php:6
99
+ msgid "Countdown"
100
+ msgstr ""
101
+
102
+ #: assets/js/admin/editor-lang.php:13
103
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:49
104
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:25
105
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:25
106
+ msgid "Performance"
107
+ msgstr ""
108
+
109
+ #: assets/js/admin/editor-lang.php:14 includes/class-sp-ajax.php:188
110
+ #: includes/class-sp-ajax.php:236 includes/class-sp-ajax.php:327
111
+ #: includes/class-sp-formats.php:31 includes/class-sp-post-types.php:401
112
+ #: includes/widgets/class-sp-widget-event-blocks.php:51
113
+ #: includes/widgets/class-sp-widget-event-calendar.php:44
114
+ #: includes/widgets/class-sp-widget-event-list.php:54
115
+ msgid "Calendar"
116
+ msgstr ""
117
+
118
+ #: assets/js/admin/editor-lang.php:15
119
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:160
120
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:27
121
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:26
122
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:31
123
+ msgid "Statistics"
124
+ msgstr ""
125
+
126
+ #: assets/js/admin/editor-lang.php:16 includes/class-sp-ajax.php:401
127
+ #: includes/class-sp-post-types.php:462
128
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:151
129
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:55
130
+ #: includes/widgets/class-sp-widget-league-table.php:6
131
+ #: includes/widgets/class-sp-widget-league-table.php:50
132
+ msgid "League Table"
133
+ msgstr ""
134
+
135
+ #: assets/js/admin/editor-lang.php:17 includes/class-sp-ajax.php:525
136
+ #: includes/class-sp-ajax.php:615 includes/class-sp-post-types.php:523
137
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:169
138
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:55
139
+ #: includes/widgets/class-sp-widget-player-gallery.php:53
140
+ #: includes/widgets/class-sp-widget-player-list.php:6
141
+ #: includes/widgets/class-sp-widget-player-list.php:53
142
+ msgid "Player List"
143
+ msgstr ""
144
+
145
+ #: assets/js/admin/editor-lang.php:18 includes/class-sp-formats.php:32
146
+ #: includes/class-sp-formats.php:36
147
+ msgid "List"
148
+ msgstr ""
149
+
150
+ #: assets/js/admin/editor-lang.php:19 includes/class-sp-formats.php:33
151
+ msgid "Blocks"
152
+ msgstr ""
153
+
154
+ #: assets/js/admin/editor-lang.php:20 includes/class-sp-ajax.php:467
155
+ #: includes/class-sp-ajax.php:496 includes/class-sp-install.php:160
156
+ #: includes/class-sp-player-list.php:376 includes/class-sp-post-types.php:493
157
+ #: includes/sp-core-functions.php:1092
158
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:63
159
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:51
160
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:136
161
+ #: templates/event-performance.php:75
162
+ msgid "Player"
163
+ msgstr ""
164
+
165
+ #: assets/js/admin/editor-lang.php:21 includes/class-sp-formats.php:37
166
+ msgid "Gallery"
167
+ msgstr ""
168
+
169
+ #: includes/class-sp-ajax.php:57 includes/class-sp-ajax.php:101
170
+ #: includes/class-sp-ajax.php:130 includes/class-sp-ajax.php:159
171
+ #: includes/class-sp-ajax.php:188 includes/class-sp-ajax.php:236
172
+ #: includes/class-sp-ajax.php:327 includes/class-sp-ajax.php:401
173
+ #: includes/class-sp-ajax.php:467 includes/class-sp-ajax.php:496
174
+ #: includes/class-sp-ajax.php:525 includes/class-sp-ajax.php:615
175
+ #: includes/widgets/class-sp-widget-countdown.php:45
176
+ #: includes/widgets/class-sp-widget-countdown.php:62
177
+ #: includes/widgets/class-sp-widget-event-blocks.php:51
178
+ #: includes/widgets/class-sp-widget-event-calendar.php:44
179
+ #: includes/widgets/class-sp-widget-event-list.php:54
180
+ #: includes/widgets/class-sp-widget-league-table.php:50
181
+ #: includes/widgets/class-sp-widget-player-gallery.php:53
182
+ #: includes/widgets/class-sp-widget-player-list.php:53
183
+ #, php-format
184
+ msgid "Select %s:"
185
+ msgstr ""
186
+
187
+ #: includes/class-sp-ajax.php:63
188
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:55
189
+ #: includes/widgets/class-sp-widget-countdown.php:69
190
+ msgid "(Auto)"
191
+ msgstr ""
192
+
193
+ #: includes/class-sp-ajax.php:74
194
+ #: includes/widgets/class-sp-widget-countdown.php:83
195
+ msgid "Display venue"
196
+ msgstr ""
197
+
198
+ #: includes/class-sp-ajax.php:80
199
+ #: includes/admin/settings/class-sp-settings-events.php:174
200
+ #: includes/widgets/class-sp-widget-countdown.php:86
201
+ msgid "Display league"
202
+ msgstr ""
203
+
204
+ #: includes/class-sp-ajax.php:84 includes/class-sp-ajax.php:113
205
+ #: includes/class-sp-ajax.php:142 includes/class-sp-ajax.php:171
206
+ #: includes/class-sp-ajax.php:219 includes/class-sp-ajax.php:310
207
+ #: includes/class-sp-ajax.php:384 includes/class-sp-ajax.php:450
208
+ #: includes/class-sp-ajax.php:479 includes/class-sp-ajax.php:508
209
+ #: includes/class-sp-ajax.php:598 includes/class-sp-ajax.php:675
210
+ #, php-format
211
+ msgid "Insert %s"
212
+ msgstr ""
213
+
214
+ #: includes/class-sp-ajax.php:84 includes/class-sp-ajax.php:113
215
+ #: includes/class-sp-ajax.php:142 includes/class-sp-ajax.php:171
216
+ #: includes/class-sp-ajax.php:219 includes/class-sp-ajax.php:310
217
+ #: includes/class-sp-ajax.php:384 includes/class-sp-ajax.php:450
218
+ #: includes/class-sp-ajax.php:479 includes/class-sp-ajax.php:508
219
+ #: includes/class-sp-ajax.php:598 includes/class-sp-ajax.php:675
220
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:133
221
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:149
222
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:165
223
+ msgid "Shortcode"
224
+ msgstr ""
225
+
226
+ #: includes/class-sp-ajax.php:85 includes/class-sp-ajax.php:114
227
+ #: includes/class-sp-ajax.php:143 includes/class-sp-ajax.php:172
228
+ #: includes/class-sp-ajax.php:220 includes/class-sp-ajax.php:311
229
+ #: includes/class-sp-ajax.php:385 includes/class-sp-ajax.php:451
230
+ #: includes/class-sp-ajax.php:480 includes/class-sp-ajax.php:509
231
+ #: includes/class-sp-ajax.php:599 includes/class-sp-ajax.php:676
232
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:33
233
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:88
234
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:88
235
+ msgid "Cancel"
236
+ msgstr ""
237
+
238
+ #: includes/class-sp-ajax.php:194 includes/class-sp-ajax.php:264
239
+ #: includes/class-sp-ajax.php:355 includes/class-sp-post-types.php:37
240
+ #: includes/class-sp-post-types.php:66 includes/class-sp-post-types.php:95
241
+ #: includes/class-sp-post-types.php:124 includes/class-sp-post-types.php:153
242
+ #: includes/sp-core-functions.php:407 includes/sp-core-functions.php:438
243
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:57
244
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:72
245
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:87
246
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:102
247
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:36
248
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:49
249
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:36
250
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:51
251
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:66
252
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:33
253
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:48
254
+ #: includes/admin/views/html-admin-overview.php:79
255
+ #: includes/widgets/class-sp-widget-countdown.php:52
256
+ #: includes/widgets/class-sp-widget-event-blocks.php:55
257
+ #: includes/widgets/class-sp-widget-event-calendar.php:48
258
+ #: includes/widgets/class-sp-widget-event-list.php:58
259
+ msgid "All"
260
+ msgstr ""
261
+
262
+ #: includes/class-sp-ajax.php:202 includes/class-sp-ajax.php:249
263
+ #: includes/class-sp-ajax.php:340
264
+ #: includes/widgets/class-sp-widget-event-blocks.php:68
265
+ #: includes/widgets/class-sp-widget-event-calendar.php:61
266
+ #: includes/widgets/class-sp-widget-event-list.php:71
267
+ msgid "Status:"
268
+ msgstr ""
269
+
270
+ #: includes/class-sp-ajax.php:206 includes/class-sp-ajax.php:253
271
+ #: includes/class-sp-ajax.php:263 includes/class-sp-ajax.php:280
272
+ #: includes/class-sp-ajax.php:344 includes/class-sp-ajax.php:354
273
+ #: includes/class-sp-ajax.php:371 includes/class-sp-ajax.php:567
274
+ #: includes/class-sp-ajax.php:585 includes/class-sp-ajax.php:638
275
+ #: includes/class-sp-ajax.php:656
276
+ #: includes/admin/settings/class-sp-settings-general.php:62
277
+ #: includes/admin/settings/class-sp-settings-general.php:84
278
+ #: includes/admin/views/html-admin-config.php:101
279
+ #: includes/admin/views/html-admin-page-status.php:65
280
+ #: includes/widgets/class-sp-widget-event-blocks.php:71
281
+ #: includes/widgets/class-sp-widget-event-blocks.php:84
282
+ #: includes/widgets/class-sp-widget-event-blocks.php:99
283
+ #: includes/widgets/class-sp-widget-event-calendar.php:64
284
+ #: includes/widgets/class-sp-widget-event-list.php:74
285
+ #: includes/widgets/class-sp-widget-event-list.php:87
286
+ #: includes/widgets/class-sp-widget-event-list.php:102
287
+ #: includes/widgets/class-sp-widget-player-gallery.php:76
288
+ #: includes/widgets/class-sp-widget-player-list.php:96
289
+ msgid "Default"
290
+ msgstr ""
291
+
292
+ #: includes/class-sp-ajax.php:214 includes/class-sp-ajax.php:306
293
+ #: includes/class-sp-ajax.php:380
294
+ #: includes/widgets/class-sp-widget-event-blocks.php:105
295
+ #: includes/widgets/class-sp-widget-event-calendar.php:75
296
+ #: includes/widgets/class-sp-widget-event-list.php:126
297
+ msgid "Display link to view all events"
298
+ msgstr ""
299
+
300
+ #: includes/class-sp-ajax.php:261 includes/class-sp-ajax.php:352
301
+ #: includes/widgets/class-sp-widget-event-blocks.php:81
302
+ #: includes/widgets/class-sp-widget-event-list.php:84
303
+ msgid "Date:"
304
+ msgstr ""
305
+
306
+ #: includes/class-sp-ajax.php:265 includes/class-sp-ajax.php:356
307
+ #: includes/sp-core-functions.php:439
308
+ msgid "This week"
309
+ msgstr ""
310
+
311
+ #: includes/class-sp-ajax.php:266 includes/class-sp-ajax.php:357
312
+ #: includes/sp-core-functions.php:440
313
+ msgid "Today"
314
+ msgstr ""
315
+
316
+ #: includes/class-sp-ajax.php:272 includes/class-sp-ajax.php:363
317
+ #: includes/widgets/class-sp-widget-event-blocks.php:94
318
+ #: includes/widgets/class-sp-widget-event-list.php:97
319
+ msgid "Number of events to show:"
320
+ msgstr ""
321
+
322
+ #: includes/class-sp-ajax.php:278 includes/class-sp-ajax.php:369
323
+ #: includes/class-sp-ajax.php:583 includes/class-sp-ajax.php:654
324
+ #: includes/widgets/class-sp-widget-event-blocks.php:97
325
+ #: includes/widgets/class-sp-widget-event-list.php:100
326
+ #: includes/widgets/class-sp-widget-player-gallery.php:94
327
+ #: includes/widgets/class-sp-widget-player-list.php:114
328
+ msgid "Sort Order:"
329
+ msgstr ""
330
+
331
+ #: includes/class-sp-ajax.php:281 includes/class-sp-ajax.php:372
332
+ #: includes/class-sp-ajax.php:586 includes/class-sp-ajax.php:657
333
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:116
334
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
335
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:101
336
+ #: includes/widgets/class-sp-widget-event-blocks.php:100
337
+ #: includes/widgets/class-sp-widget-event-list.php:103
338
+ #: includes/widgets/class-sp-widget-player-gallery.php:96
339
+ #: includes/widgets/class-sp-widget-player-list.php:116
340
+ msgid "Ascending"
341
+ msgstr ""
342
+
343
+ #: includes/class-sp-ajax.php:282 includes/class-sp-ajax.php:373
344
+ #: includes/class-sp-ajax.php:587 includes/class-sp-ajax.php:658
345
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:117
346
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
347
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:102
348
+ #: includes/widgets/class-sp-widget-event-blocks.php:101
349
+ #: includes/widgets/class-sp-widget-event-list.php:104
350
+ #: includes/widgets/class-sp-widget-player-gallery.php:97
351
+ #: includes/widgets/class-sp-widget-player-list.php:117
352
+ msgid "Descending"
353
+ msgstr ""
354
+
355
+ #: includes/class-sp-ajax.php:287 includes/class-sp-ajax.php:419
356
+ #: includes/class-sp-ajax.php:543
357
+ #: includes/widgets/class-sp-widget-event-list.php:108
358
+ #: includes/widgets/class-sp-widget-league-table.php:70
359
+ msgid "Columns:"
360
+ msgstr ""
361
+
362
+ #: includes/class-sp-ajax.php:291 includes/class-sp-post-types.php:431
363
+ #: includes/sp-core-functions.php:1103
364
+ #: includes/admin/class-sp-admin-permalink-settings.php:28
365
+ #: includes/admin/importers/class-sp-event-importer.php:29
366
+ #: includes/admin/importers/class-sp-player-importer.php:29
367
+ #: includes/admin/importers/class-sp-staff-importer.php:28
368
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:94
369
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:67
370
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:66
371
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:51
372
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:124
373
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:56
374
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
375
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
376
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:90
377
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:105
378
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:106
379
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:150
380
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:57
381
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:58
382
+ #: includes/admin/settings/class-sp-settings-events.php:77
383
+ #: includes/admin/settings/class-sp-settings-teams.php:25
384
+ #: includes/admin/settings/class-sp-settings-teams.php:56
385
+ #: includes/widgets/class-sp-widget-event-list.php:112
386
+ #: templates/event-list.php:64
387
+ msgid "Teams"
388
+ msgstr ""
389
+
390
+ #: includes/class-sp-ajax.php:292 includes/sp-core-functions.php:1104
391
+ #: includes/admin/importers/class-sp-event-importer.php:27
392
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:93
393
+ #: includes/widgets/class-sp-widget-event-list.php:113
394
+ #: templates/event-details.php:21
395
+ msgid "Time"
396
+ msgstr ""
397
+
398
+ #: includes/class-sp-ajax.php:293 includes/class-sp-post-types.php:94
399
+ #: includes/sp-core-functions.php:1107
400
+ #: includes/admin/importers/class-sp-event-importer.php:28
401
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:51
402
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:97
403
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:82
404
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:83
405
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:71
406
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:87
407
+ #: includes/admin/settings/class-sp-settings-events.php:113
408
+ #: includes/widgets/class-sp-widget-event-list.php:114
409
+ #: templates/event-list.php:80 templates/event-venue.php:36
410
+ msgid "Venue"
411
+ msgstr ""
412
+
413
+ #: includes/class-sp-ajax.php:294 includes/sp-core-functions.php:1082
414
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:130
415
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:88
416
+ #: includes/widgets/class-sp-widget-event-list.php:115
417
+ #: templates/event-list.php:83
418
+ msgid "Article"
419
+ msgstr ""
420
+
421
+ #: includes/class-sp-ajax.php:414
422
+ #: includes/widgets/class-sp-widget-league-table.php:66
423
+ msgid "Number of teams to show:"
424
+ msgstr ""
425
+
426
+ #: includes/class-sp-ajax.php:440
427
+ #: includes/admin/settings/class-sp-settings-events.php:78
428
+ #: includes/admin/settings/class-sp-settings-teams.php:57
429
+ #: includes/widgets/class-sp-widget-league-table.php:90
430
+ msgid "Display logos"
431
+ msgstr ""
432
+
433
+ #: includes/class-sp-ajax.php:446
434
+ #: includes/widgets/class-sp-widget-league-table.php:93
435
+ msgid "Display link to view full table"
436
+ msgstr ""
437
+
438
+ #: includes/class-sp-ajax.php:538 includes/class-sp-ajax.php:628
439
+ #: includes/widgets/class-sp-widget-player-gallery.php:69
440
+ #: includes/widgets/class-sp-widget-player-list.php:69
441
+ msgid "Number of players to show:"
442
+ msgstr ""
443
+
444
+ #: includes/class-sp-ajax.php:563 includes/class-sp-ajax.php:634
445
+ #: includes/widgets/class-sp-widget-player-gallery.php:72
446
+ #: includes/widgets/class-sp-widget-player-list.php:92
447
+ msgid "Sort by:"
448
+ msgstr ""
449
+
450
+ #: includes/class-sp-ajax.php:568 includes/class-sp-ajax.php:639
451
+ #: includes/admin/importers/class-sp-player-importer.php:26
452
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:64
453
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:87
454
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:56
455
+ #: includes/widgets/class-sp-widget-player-gallery.php:77
456
+ #: includes/widgets/class-sp-widget-player-list.php:97
457
+ msgid "Number"
458
+ msgstr ""
459
+
460
+ #: includes/class-sp-ajax.php:569 includes/class-sp-ajax.php:640
461
+ #: includes/class-sp-post-types.php:42 includes/class-sp-post-types.php:71
462
+ #: includes/class-sp-post-types.php:100 includes/class-sp-post-types.php:129
463
+ #: includes/class-sp-post-types.php:158
464
+ #: includes/admin/importers/class-sp-player-importer.php:27
465
+ #: includes/admin/importers/class-sp-staff-importer.php:26
466
+ #: includes/admin/importers/class-sp-team-importer.php:26
467
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:52
468
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:71
469
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:52
470
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:70
471
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:51
472
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:88
473
+ #: includes/widgets/class-sp-widget-player-gallery.php:78
474
+ #: includes/widgets/class-sp-widget-player-list.php:98
475
+ msgid "Name"
476
+ msgstr ""
477
+
478
+ #: includes/class-sp-ajax.php:570 includes/class-sp-ajax.php:641
479
+ #: includes/sp-core-functions.php:1091
480
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
481
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
482
+ #: includes/widgets/class-sp-widget-player-gallery.php:79
483
+ #: includes/widgets/class-sp-widget-player-list.php:99
484
+ msgid "Played"
485
+ msgstr ""
486
+
487
+ #: includes/class-sp-ajax.php:594 includes/class-sp-ajax.php:665
488
+ #: includes/widgets/class-sp-widget-player-gallery.php:101
489
+ #: includes/widgets/class-sp-widget-player-list.php:121
490
+ msgid "Display link to view all players"
491
+ msgstr ""
492
+
493
+ #: includes/class-sp-ajax.php:671
494
+ #: includes/widgets/class-sp-widget-player-gallery.php:104
495
+ msgid "Display player names on hover"
496
+ msgstr ""
497
+
498
+ #: includes/class-sp-countries.php:29
499
+ msgid "Africa"
500
+ msgstr ""
501
+
502
+ #: includes/class-sp-countries.php:30
503
+ msgid "Asia"
504
+ msgstr ""
505
+
506
+ #: includes/class-sp-countries.php:31
507
+ msgid "Europe"
508
+ msgstr ""
509
+
510
+ #: includes/class-sp-countries.php:32
511
+ msgid "North America"
512
+ msgstr ""
513
+
514
+ #: includes/class-sp-countries.php:33
515
+ msgid "Oceania"
516
+ msgstr ""
517
+
518
+ #: includes/class-sp-countries.php:34
519
+ msgid "South America"
520
+ msgstr ""
521
+
522
+ #: includes/class-sp-countries.php:38
523
+ msgid "Andorra"
524
+ msgstr "Andorra"
525
+
526
+ #: includes/class-sp-countries.php:39
527
+ msgid "United Arab Emirates"
528
+ msgstr "Birləşmiş Ərəb Emiratları"
529
+
530
+ #: includes/class-sp-countries.php:40
531
+ msgid "Afghanistan"
532
+ msgstr "Əfqənistan"
533
+
534
+ #: includes/class-sp-countries.php:41
535
+ msgid "Antigua and Barbuda"
536
+ msgstr "Antiqua və Barbuda"
537
+
538
+ #: includes/class-sp-countries.php:42
539
+ msgid "Albania"
540
+ msgstr "Albaniya"
541
+
542
+ #: includes/class-sp-countries.php:43
543
+ msgid "Armenia"
544
+ msgstr "Ermənistan"
545
+
546
+ #: includes/class-sp-countries.php:44
547
+ msgid "Angola"
548
+ msgstr "Angola"
549
+
550
+ #: includes/class-sp-countries.php:45
551
+ msgid "Argentina"
552
+ msgstr "Arqentina"
553
+
554
+ #: includes/class-sp-countries.php:46
555
+ msgid "Austria"
556
+ msgstr "Avstriya"
557
+
558
+ #: includes/class-sp-countries.php:47
559
+ msgid "Australia"
560
+ msgstr "Avstraliya"
561
+
562
+ #: includes/class-sp-countries.php:48
563
+ msgid "Azerbaijan"
564
+ msgstr "Azərbaycan"
565
+
566
+ #: includes/class-sp-countries.php:49
567
+ msgid "Bosnia and Herzegovina"
568
+ msgstr "Bosniya və Herzokovina"
569
+
570
+ #: includes/class-sp-countries.php:50
571
+ msgid "Barbados"
572
+ msgstr "Barbados"
573
+
574
+ #: includes/class-sp-countries.php:51
575
+ msgid "Bangladesh"
576
+ msgstr "Banqladeş"
577
+
578
+ #: includes/class-sp-countries.php:52
579
+ msgid "Belgium"
580
+ msgstr "Belçika"
581
+
582
+ #: includes/class-sp-countries.php:53
583
+ msgid "Burkina Faso"
584
+ msgstr "Burkina Faso"
585
+
586
+ #: includes/class-sp-countries.php:54
587
+ msgid "Bulgaria"
588
+ msgstr "Bolqariya"
589
+
590
+ #: includes/class-sp-countries.php:55
591
+ msgid "Bahrain"
592
+ msgstr "Bahreyn"
593
+
594
+ #: includes/class-sp-countries.php:56
595
+ msgid "Burundi"
596
+ msgstr "Burundi"
597
+
598
+ #: includes/class-sp-countries.php:57
599
+ msgid "Benin"
600
+ msgstr "Benin"
601
+
602
+ #: includes/class-sp-countries.php:58
603
+ msgid "Brunei"
604
+ msgstr "Bruney"
605
+
606
+ #: includes/class-sp-countries.php:59
607
+ msgid "Bolivia"
608
+ msgstr "Boliviya"
609
+
610
+ #: includes/class-sp-countries.php:60
611
+ msgid "Brazil"
612
+ msgstr "Braziliya"
613
+
614
+ #: includes/class-sp-countries.php:61
615
+ msgid "Bahamas"
616
+ msgstr "Bahamalar"
617
+
618
+ #: includes/class-sp-countries.php:62
619
+ msgid "Bhutan"
620
+ msgstr "Butan"
621
+
622
+ #: includes/class-sp-countries.php:63
623
+ msgid "Botswana"
624
+ msgstr "Botsvana"
625
+
626
+ #: includes/class-sp-countries.php:64
627
+ msgid "Belarus"
628
+ msgstr "Belarus"
629
+
630
+ #: includes/class-sp-countries.php:65
631
+ msgid "Belize"
632
+ msgstr "Beliz"
633
+
634
+ #: includes/class-sp-countries.php:66
635
+ msgid "Canada"
636
+ msgstr "Kanada"
637
+
638
+ #: includes/class-sp-countries.php:67
639
+ msgid "Democratic Republic of the Congo"
640
+ msgstr "Konqo - Kinşasa"
641
+
642
+ #: includes/class-sp-countries.php:68
643
+ msgid "Central African Republic"
644
+ msgstr "Orta Afrika respublikası"
645
+
646
+ #: includes/class-sp-countries.php:69
647
+ msgid "Republic of the Congo"
648
+ msgstr "Konqo - Brazavil"
649
+
650
+ #: includes/class-sp-countries.php:70
651
+ msgid "Switzerland"
652
+ msgstr "isveçriya"
653
+
654
+ #: includes/class-sp-countries.php:71
655
+ msgid "Ivory Coast"
656
+ msgstr "İvori Sahili"
657
+
658
+ #: includes/class-sp-countries.php:72
659
+ msgid "Chile"
660
+ msgstr "Çile"
661
+
662
+ #: includes/class-sp-countries.php:73
663
+ msgid "Cameroon"
664
+ msgstr "Kamerun"
665
+
666
+ #: includes/class-sp-countries.php:74
667
+ msgid "China"
668
+ msgstr "Çin"
669
+
670
+ #: includes/class-sp-countries.php:75
671
+ msgid "Colombia"
672
+ msgstr "Kolumbiya"
673
+
674
+ #: includes/class-sp-countries.php:76
675
+ msgid "Costa Rica"
676
+ msgstr "Kosta Rika"
677
+
678
+ #: includes/class-sp-countries.php:77
679
+ msgid "Cuba"
680
+ msgstr "Kuba"
681
+
682
+ #: includes/class-sp-countries.php:78
683
+ msgid "Cape Verde"
684
+ msgstr "Kape Verde"
685
+
686
+ #: includes/class-sp-countries.php:79
687
+ msgid "Cyprus"
688
+ msgstr "Kipr"
689
+
690
+ #: includes/class-sp-countries.php:80
691
+ msgid "Czech Republic"
692
+ msgstr "Çex respublikası"
693
+
694
+ #: includes/class-sp-countries.php:81
695
+ msgid "Germany"
696
+ msgstr "Almaniya"
697
+
698
+ #: includes/class-sp-countries.php:82
699
+ msgid "Djibouti"
700
+ msgstr "Ciboti"
701
+
702
+ #: includes/class-sp-countries.php:83
703
+ msgid "Denmark"
704
+ msgstr "Danemarka"
705
+
706
+ #: includes/class-sp-countries.php:84
707
+ msgid "Dominica"
708
+ msgstr "Dominika"
709
+
710
+ #: includes/class-sp-countries.php:85
711
+ msgid "Dominican Republic"
712
+ msgstr "Dominik Respublikası"
713
+
714
+ #: includes/class-sp-countries.php:86
715
+ msgid "Algeria"
716
+ msgstr "Cezayır"
717
+
718
+ #: includes/class-sp-countries.php:87
719
+ msgid "Ecuador"
720
+ msgstr "Ekvador"
721
+
722
+ #: includes/class-sp-countries.php:88
723
+ msgid "Estonia"
724
+ msgstr "Estoniya"
725
+
726
+ #: includes/class-sp-countries.php:89
727
+ msgid "Egypt"
728
+ msgstr "Misir"
729
+
730
+ #: includes/class-sp-countries.php:90
731
+ msgid "Western Sahara"
732
+ msgstr "Qərb Sahara"
733
+
734
+ #: includes/class-sp-countries.php:91
735
+ msgid "England"
736
+ msgstr ""
737
+
738
+ #: includes/class-sp-countries.php:92
739
+ msgid "Eritrea"
740
+ msgstr "Eritreya"
741
+
742
+ #: includes/class-sp-countries.php:93
743
+ msgid "Spain"
744
+ msgstr "İspaniya"
745
+
746
+ #: includes/class-sp-countries.php:94
747
+ msgid "Ethiopia"
748
+ msgstr "Efiopiya"
749
+
750
+ #: includes/class-sp-countries.php:95
751
+ msgid "Finland"
752
+ msgstr "Finlandiya"
753
+
754
+ #: includes/class-sp-countries.php:96
755
+ msgid "Fiji"
756
+ msgstr "Fici"
757
+
758
+ #: includes/class-sp-countries.php:97
759
+ msgid "Micronesia"
760
+ msgstr "Mikronesiya"
761
+
762
+ #: includes/class-sp-countries.php:98
763
+ msgid "France"
764
+ msgstr "Fransa"
765
+
766
+ #: includes/class-sp-countries.php:99
767
+ msgid "Gabon"
768
+ msgstr "Qabon"
769
+
770
+ #: includes/class-sp-countries.php:100
771
+ msgid "United Kingdom"
772
+ msgstr "Birləşmiş Krallıq"
773
+
774
+ #: includes/class-sp-countries.php:101
775
+ msgid "Grenada"
776
+ msgstr "Qrenada"
777
+
778
+ #: includes/class-sp-countries.php:102
779
+ msgid "Georgia"
780
+ msgstr "Gürcüstan"
781
+
782
+ #: includes/class-sp-countries.php:103
783
+ msgid "Ghana"
784
+ msgstr "Qana"
785
+
786
+ #: includes/class-sp-countries.php:104
787
+ msgid "Gambia"
788
+ msgstr "Qambiya"
789
+
790
+ #: includes/class-sp-countries.php:105
791
+ msgid "Guinea"
792
+ msgstr "Qvineya"
793
+
794
+ #: includes/class-sp-countries.php:106
795
+ msgid "Equatorial Guinea"
796
+ msgstr "Ekvator Qineya"
797
+
798
+ #: includes/class-sp-countries.php:107
799
+ msgid "Greece"
800
+ msgstr "Yunanıstan"
801
+
802
+ #: includes/class-sp-countries.php:108
803
+ msgid "Guatemala"
804
+ msgstr "Qvatemala"
805
+
806
+ #: includes/class-sp-countries.php:109
807
+ msgid "Guinea-Bissau"
808
+ msgstr "Qvineya-Bisau"
809
+
810
+ #: includes/class-sp-countries.php:110
811
+ msgid "Guyana"
812
+ msgstr "Quyana"
813
+
814
+ #: includes/class-sp-countries.php:111
815
+ msgid "Hong Kong"
816
+ msgstr "Honk Konq çina"
817
+
818
+ #: includes/class-sp-countries.php:112
819
+ msgid "Honduras"
820
+ msgstr "Qonduras"
821
+
822
+ #: includes/class-sp-countries.php:113
823
+ msgid "Croatia"
824
+ msgstr "Xorvatiya"
825
+
826
+ #: includes/class-sp-countries.php:114
827
+ msgid "Haiti"
828
+ msgstr "Haiti"
829
+
830
+ #: includes/class-sp-countries.php:115
831
+ msgid "Hungary"
832
+ msgstr "Macaristan"
833
+
834
+ #: includes/class-sp-countries.php:116
835
+ msgid "Indonesia"
836
+ msgstr "İndoneziya"
837
+
838
+ #: includes/class-sp-countries.php:117
839
+ msgid "Ireland"
840
+ msgstr "İrlandiya"
841
+
842
+ #: includes/class-sp-countries.php:118
843
+ msgid "Israel"
844
+ msgstr "İzrail"
845
+
846
+ #: includes/class-sp-countries.php:119
847
+ msgid "India"
848
+ msgstr "Hindistan"
849
+
850
+ #: includes/class-sp-countries.php:120
851
+ msgid "Iraq"
852
+ msgstr "İrak"
853
+
854
+ #: includes/class-sp-countries.php:121
855
+ msgid "Iran"
856
+ msgstr "İran"
857
+
858
+ #: includes/class-sp-countries.php:122
859
+ msgid "Iceland"
860
+ msgstr "İslandiya"
861
+
862
+ #: includes/class-sp-countries.php:123
863
+ msgid "Italy"
864
+ msgstr "İtaliya"
865
+
866
+ #: includes/class-sp-countries.php:124
867
+ msgid "Jamaica"
868
+ msgstr "Yamayka"
869
+
870
+ #: includes/class-sp-countries.php:125
871
+ msgid "Jordan"
872
+ msgstr "Ürdün"
873
+
874
+ #: includes/class-sp-countries.php:126
875
+ msgid "Japan"
876
+ msgstr "Yaponiya"
877
+
878
+ #: includes/class-sp-countries.php:127
879
+ msgid "Kenya"
880
+ msgstr "Kenya"
881
+
882
+ #: includes/class-sp-countries.php:128
883
+ msgid "Kyrgyzstan"
884
+ msgstr "Kırqızstan"
885
+
886
+ #: includes/class-sp-countries.php:129
887
+ msgid "Cambodia"
888
+ msgstr "Kambodiya"
889
+
890
+ #: includes/class-sp-countries.php:130
891
+ msgid "Kiribati"
892
+ msgstr "Kiribati"
893
+
894
+ #: includes/class-sp-countries.php:131
895
+ msgid "Comoros"
896
+ msgstr "Komoros"
897
+
898
+ #: includes/class-sp-countries.php:132
899
+ msgid "Saint Kitts and Nevis"
900
+ msgstr "Seynt Kits və Nevis"
901
+
902
+ #: includes/class-sp-countries.php:133
903
+ msgid "North Korea"
904
+ msgstr "Şimal Koreya"
905
+
906
+ #: includes/class-sp-countries.php:134
907
+ msgid "South Korea"
908
+ msgstr "Cənub Koreya"
909
+
910
+ #: includes/class-sp-countries.php:135
911
+ msgid "Kuwait"
912
+ msgstr "Kuveyt"
913
+
914
+ #: includes/class-sp-countries.php:136
915
+ msgid "Kazakhstan"
916
+ msgstr "Kazaxstan"
917
+
918
+ #: includes/class-sp-countries.php:137
919
+ msgid "Laos"
920
+ msgstr "Laos"
921
+
922
+ #: includes/class-sp-countries.php:138
923
+ msgid "Lebanon"
924
+ msgstr "Lebanon"
925
+
926
+ #: includes/class-sp-countries.php:139
927
+ msgid "Saint Lucia"
928
+ msgstr "Seynt Lusiya"
929
+
930
+ #: includes/class-sp-countries.php:140
931
+ msgid "Liechtenstein"
932
+ msgstr "Lixtenşteyn"
933
+
934
+ #: includes/class-sp-countries.php:141
935
+ msgid "Sri Lanka"
936
+ msgstr "Şri Lanka"
937
+
938
+ #: includes/class-sp-countries.php:142
939
+ msgid "Liberia"
940
+ msgstr "Liberiya"
941
+
942
+ #: includes/class-sp-countries.php:143
943
+ msgid "Lesotho"
944
+ msgstr "Lesoto"
945
+
946
+ #: includes/class-sp-countries.php:144
947
+ msgid "Lithuania"
948
+ msgstr "Litva"
949
+
950
+ #: includes/class-sp-countries.php:145
951
+ msgid "Luxembourg"
952
+ msgstr "Lüksemburq"
953
+
954
+ #: includes/class-sp-countries.php:146
955
+ msgid "Latvia"
956
+ msgstr "Latviya"
957
+
958
+ #: includes/class-sp-countries.php:147
959
+ msgid "Libya"
960
+ msgstr "Libya"
961
+
962
+ #: includes/class-sp-countries.php:148
963
+ msgid "Morocco"
964
+ msgstr "Morokko"
965
+
966
+ #: includes/class-sp-countries.php:149
967
+ msgid "Monaco"
968
+ msgstr "Monako"
969
+
970
+ #: includes/class-sp-countries.php:150
971
+ msgid "Moldova"
972
+ msgstr "Moldova"
973
+
974
+ #: includes/class-sp-countries.php:151
975
+ msgid "Montenegro"
976
+ msgstr "Monteneqro"
977
+
978
+ #: includes/class-sp-countries.php:152
979
+ msgid "Madagascar"
980
+ msgstr "Madaqaskar"
981
+
982
+ #: includes/class-sp-countries.php:153
983
+ msgid "Marshall Islands"
984
+ msgstr "Marşal Adaları"
985
+
986
+ #: includes/class-sp-countries.php:154
987
+ msgid "Macedonia"
988
+ msgstr "Masedoniya"
989
+
990
+ #: includes/class-sp-countries.php:155
991
+ msgid "Mali"
992
+ msgstr "Mali"
993
+
994
+ #: includes/class-sp-countries.php:156
995
+ msgid "Burma"
996
+ msgstr "Myanmar"
997
+
998
+ #: includes/class-sp-countries.php:157
999
+ msgid "Mongolia"
1000
+ msgstr "Monqoliya"
1001
+
1002
+ #: includes/class-sp-countries.php:158
1003
+ msgid "Macau"
1004
+ msgstr "Makao Çina"
1005
+
1006
+ #: includes/class-sp-countries.php:159
1007
+ msgid "Mauritania"
1008
+ msgstr "Mavritaniya"
1009
+
1010
+ #: includes/class-sp-countries.php:160
1011
+ msgid "Malta"
1012
+ msgstr "Malta"
1013
+
1014
+ #: includes/class-sp-countries.php:161
1015
+ msgid "Mauritius"
1016
+ msgstr "Mavritis"
1017
+
1018
+ #: includes/class-sp-countries.php:162
1019
+ msgid "Maldives"
1020
+ msgstr "Maldiv"
1021
+
1022
+ #: includes/class-sp-countries.php:163
1023
+ msgid "Malawi"
1024
+ msgstr "Malavi"
1025
+
1026
+ #: includes/class-sp-countries.php:164
1027
+ msgid "Mexico"
1028
+ msgstr "Meksika"
1029
+
1030
+ #: includes/class-sp-countries.php:165
1031
+ msgid "Malaysia"
1032
+ msgstr "Malaysiya"
1033
+
1034
+ #: includes/class-sp-countries.php:166
1035
+ msgid "Mozambique"
1036
+ msgstr "Mazambik"
1037
+
1038
+ #: includes/class-sp-countries.php:167
1039
+ msgid "Namibia"
1040
+ msgstr "Namibiya"
1041
+
1042
+ #: includes/class-sp-countries.php:168
1043
+ msgid "Northern Ireland"
1044
+ msgstr ""
1045
+
1046
+ #: includes/class-sp-countries.php:169
1047
+ msgid "Niger"
1048
+ msgstr "nijer"
1049
+
1050
+ #: includes/class-sp-countries.php:170
1051
+ msgid "Nigeria"
1052
+ msgstr "Nijeriya"
1053
+
1054
+ #: includes/class-sp-countries.php:171
1055
+ msgid "Nicaragua"
1056
+ msgstr "Nikaraqua"
1057
+
1058
+ #: includes/class-sp-countries.php:172
1059
+ msgid "Netherlands"
1060
+ msgstr "Hollandiya"
1061
+
1062
+ #: includes/class-sp-countries.php:173
1063
+ msgid "Norway"
1064
+ msgstr "Norvec"
1065
+
1066
+ #: includes/class-sp-countries.php:174
1067
+ msgid "Nepal"
1068
+ msgstr "Nepal"
1069
+
1070
+ #: includes/class-sp-countries.php:175
1071
+ msgid "Nauru"
1072
+ msgstr "Nauru"
1073
+
1074
+ #: includes/class-sp-countries.php:176
1075
+ msgid "New Zealand"
1076
+ msgstr "Yeni Zelandiya"
1077
+
1078
+ #: includes/class-sp-countries.php:177
1079
+ msgid "Oman"
1080
+ msgstr "Oman"
1081
+
1082
+ #: includes/class-sp-countries.php:178
1083
+ msgid "Panama"
1084
+ msgstr "Panama"
1085
+
1086
+ #: includes/class-sp-countries.php:179
1087
+ msgid "Peru"
1088
+ msgstr "Peru"
1089
+
1090
+ #: includes/class-sp-countries.php:180
1091
+ msgid "Papua New Guinea"
1092
+ msgstr "Papua Yeni Qvineya"
1093
+
1094
+ #: includes/class-sp-countries.php:181
1095
+ msgid "Philippines"
1096
+ msgstr "Filipin"
1097
+
1098
+ #: includes/class-sp-countries.php:182
1099
+ msgid "Pakistan"
1100
+ msgstr "Pakistan"
1101
+
1102
+ #: includes/class-sp-countries.php:183
1103
+ msgid "Poland"
1104
+ msgstr "Polşa"
1105
+
1106
+ #: includes/class-sp-countries.php:184
1107
+ msgid "Portugal"
1108
+ msgstr "Portuqal"
1109
+
1110
+ #: includes/class-sp-countries.php:185
1111
+ msgid "Palau"
1112
+ msgstr "Palav"
1113
+
1114
+ #: includes/class-sp-countries.php:186
1115
+ msgid "Paraguay"
1116
+ msgstr "Paraqvay"
1117
+
1118
+ #: includes/class-sp-countries.php:187
1119
+ msgid "Qatar"
1120
+ msgstr "Qatar"
1121
+
1122
+ #: includes/class-sp-countries.php:188
1123
+ msgid "Romania"
1124
+ msgstr "Romaniya"
1125
+
1126
+ #: includes/class-sp-countries.php:189
1127
+ msgid "Serbia"
1128
+ msgstr "Serbiya"
1129
+
1130
+ #: includes/class-sp-countries.php:190
1131
+ msgid "Russia"
1132
+ msgstr "Rusiya"
1133
+
1134
+ #: includes/class-sp-countries.php:191
1135
+ msgid "Rwanda"
1136
+ msgstr "Rvanda"
1137
+
1138
+ #: includes/class-sp-countries.php:192
1139
+ msgid "Saudi Arabia"
1140
+ msgstr "Saudi Ərəbistan"
1141
+
1142
+ #: includes/class-sp-countries.php:193
1143
+ msgid "Solomon Islands"
1144
+ msgstr "Solomon Adaları"
1145
+
1146
+ #: includes/class-sp-countries.php:194
1147
+ msgid "Seychelles"
1148
+ msgstr "Seyçels"
1149
+
1150
+ #: includes/class-sp-countries.php:195
1151
+ msgid "Sudan"
1152
+ msgstr "sudan"
1153
+
1154
+ #: includes/class-sp-countries.php:196
1155
+ msgid "Sweden"
1156
+ msgstr "isveç"
1157
+
1158
+ #: includes/class-sp-countries.php:197
1159
+ msgid "Scotland"
1160
+ msgstr ""
1161
+
1162
+ #: includes/class-sp-countries.php:198
1163
+ msgid "Singapore"
1164
+ msgstr "Sinqapur"
1165
+
1166
+ #: includes/class-sp-countries.php:199
1167
+ msgid "Slovenia"
1168
+ msgstr "Sloveniya"
1169
+
1170
+ #: includes/class-sp-countries.php:200
1171
+ msgid "Slovakia"
1172
+ msgstr "Slovakiya"
1173
+
1174
+ #: includes/class-sp-countries.php:201
1175
+ msgid "Sierra Leone"
1176
+ msgstr "Siyera Leon"
1177
+
1178
+ #: includes/class-sp-countries.php:202
1179
+ msgid "San Marino"
1180
+ msgstr "San Marino"
1181
+
1182
+ #: includes/class-sp-countries.php:203
1183
+ msgid "Senegal"
1184
+ msgstr "Seneqal"
1185
+
1186
+ #: includes/class-sp-countries.php:204
1187
+ msgid "Somalia"
1188
+ msgstr "Somaliya"
1189
+
1190
+ #: includes/class-sp-countries.php:205
1191
+ msgid "Suriname"
1192
+ msgstr "surinamə"
1193
+
1194
+ #: includes/class-sp-countries.php:206
1195
+ msgid "Sao Tome and Principe"
1196
+ msgstr "Sao Tom və Prinsip"
1197
+
1198
+ #: includes/class-sp-countries.php:207
1199
+ msgid "El Salvador"
1200
+ msgstr "El Salvador"
1201
+
1202
+ #: includes/class-sp-countries.php:208
1203
+ msgid "Swaziland"
1204
+ msgstr "svazilənd"
1205
+
1206
+ #: includes/class-sp-countries.php:209
1207
+ msgid "Chad"
1208
+ msgstr "Çad"
1209
+
1210
+ #: includes/class-sp-countries.php:210
1211
+ msgid "Togo"
1212
+ msgstr "Toqo"
1213
+
1214
+ #: includes/class-sp-countries.php:211
1215
+ msgid "Thailand"
1216
+ msgstr "tayland"
1217
+
1218
+ #: includes/class-sp-countries.php:212
1219
+ msgid "Tajikistan"
1220
+ msgstr "tacikistan"
1221
+
1222
+ #: includes/class-sp-countries.php:213
1223
+ msgid "East Timor"
1224
+ msgstr "Şərq Timor"
1225
+
1226
+ #: includes/class-sp-countries.php:214
1227
+ msgid "Turkmenistan"
1228
+ msgstr "Türkmənistan"
1229
+
1230
+ #: includes/class-sp-countries.php:215
1231
+ msgid "Tunisia"
1232
+ msgstr "Tunisiya"
1233
+
1234
+ #: includes/class-sp-countries.php:216
1235
+ msgid "Tonga"
1236
+ msgstr "Tonqa"
1237
+
1238
+ #: includes/class-sp-countries.php:217
1239
+ msgid "Turkey"
1240
+ msgstr "Türkiya"
1241
+
1242
+ #: includes/class-sp-countries.php:218
1243
+ msgid "Trinidad and Tobago"
1244
+ msgstr "Trinidan və Tobaqo"
1245
+
1246
+ #: includes/class-sp-countries.php:219
1247
+ msgid "Tuvalu"
1248
+ msgstr "Tuvalu"
1249
+
1250
+ #: includes/class-sp-countries.php:220
1251
+ msgid "Taiwan"
1252
+ msgstr "tayvan"
1253
+
1254
+ #: includes/class-sp-countries.php:221
1255
+ msgid "Tanzania"
1256
+ msgstr "tanzaniya"
1257
+
1258
+ #: includes/class-sp-countries.php:222
1259
+ msgid "Ukraine"
1260
+ msgstr "Ukraina"
1261
+
1262
+ #: includes/class-sp-countries.php:223
1263
+ msgid "Uganda"
1264
+ msgstr "Uqanda"
1265
+
1266
+ #: includes/class-sp-countries.php:224
1267
+ msgid "United States"
1268
+ msgstr "Amerika Birləşmiş Ştatları"
1269
+
1270
+ #: includes/class-sp-countries.php:225
1271
+ msgid "Uruguay"
1272
+ msgstr "Uruqvay"
1273
+
1274
+ #: includes/class-sp-countries.php:226
1275
+ msgid "Uzbekistan"
1276
+ msgstr "Özbəkistan"
1277
+
1278
+ #: includes/class-sp-countries.php:227
1279
+ msgid "Vatican City"
1280
+ msgstr "Vatikan"
1281
+
1282
+ #: includes/class-sp-countries.php:228
1283
+ msgid "Saint Vincent and the Grenadines"
1284
+ msgstr "Seynt Vinsent və Qrenada"
1285
+
1286
+ #: includes/class-sp-countries.php:229
1287
+ msgid "Venezuela"
1288
+ msgstr "Venesuela"
1289
+
1290
+ #: includes/class-sp-countries.php:230
1291
+ msgid "Vietnam"
1292
+ msgstr "Vyetnam"
1293
+
1294
+ #: includes/class-sp-countries.php:231
1295
+ msgid "Vanuatu"
1296
+ msgstr "Vanuatu"
1297
+
1298
+ #: includes/class-sp-countries.php:232
1299
+ msgid "Wales"
1300
+ msgstr ""
1301
+
1302
+ #: includes/class-sp-countries.php:233
1303
+ msgid "Samoa"
1304
+ msgstr "Samoa"
1305
+
1306
+ #: includes/class-sp-countries.php:234
1307
+ msgid "Yemen"
1308
+ msgstr "Yemen"
1309
+
1310
+ #: includes/class-sp-countries.php:235
1311
+ msgid "South Africa"
1312
+ msgstr "Cənub Afrika"
1313
+
1314
+ #: includes/class-sp-countries.php:236
1315
+ msgid "Zambia"
1316
+ msgstr "Zambiya"
1317
+
1318
+ #: includes/class-sp-countries.php:237
1319
+ msgid "Zimbabwe"
1320
+ msgstr "Zimbabve"
1321
+
1322
+ #: includes/class-sp-event.php:45 includes/class-sp-post-types.php:221
1323
+ #: includes/sp-core-functions.php:1089
1324
+ #: includes/admin/importers/class-sp-event-importer.php:31
1325
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-results.php:57
1326
+ msgid "Outcome"
1327
+ msgstr ""
1328
+
1329
+ #: includes/class-sp-event.php:100 includes/class-sp-post-types.php:123
1330
+ #: includes/sp-core-functions.php:1094
1331
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:68
1332
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:71
1333
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:79
1334
+ #: templates/player-details.php:43
1335
+ msgid "Position"
1336
+ msgstr ""
1337
+
1338
+ #: includes/class-sp-formats.php:27 includes/class-sp-post-types.php:36
1339
+ #: includes/sp-core-functions.php:1087
1340
+ #: includes/admin/importers/class-sp-event-importer.php:478
1341
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:49
1342
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:95
1343
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:114
1344
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:49
1345
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:49
1346
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:70
1347
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:53
1348
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:35
1349
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:30
1350
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:27
1351
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:61
1352
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:61
1353
+ #: templates/event-details.php:25 templates/event-list.php:74
1354
+ msgid "League"
1355
+ msgstr ""
1356
+
1357
+ #: includes/class-sp-formats.php:28
1358
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:117
1359
+ msgid "Friendly"
1360
+ msgstr ""
1361
+
1362
+ #: includes/class-sp-frontend-scripts.php:57
1363
+ #: includes/admin/class-sp-admin-assets.php:108
1364
+ #: includes/admin/class-sp-admin-dashboard.php:80 templates/countdown.php:66
1365
+ msgid "days"
1366
+ msgstr ""
1367
+
1368
+ #: includes/class-sp-frontend-scripts.php:57
1369
+ #: includes/admin/class-sp-admin-assets.php:109 templates/countdown.php:67
1370
+ msgid "hrs"
1371
+ msgstr ""
1372
+
1373
+ #: includes/class-sp-frontend-scripts.php:57
1374
+ #: includes/admin/class-sp-admin-assets.php:110
1375
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:31
1376
+ #: includes/admin/settings/class-sp-settings-events.php:135
1377
+ #: templates/countdown.php:68
1378
+ msgid "mins"
1379
+ msgstr ""
1380
+
1381
+ #: includes/class-sp-frontend-scripts.php:57
1382
+ #: includes/admin/class-sp-admin-assets.php:111 templates/countdown.php:69
1383
+ msgid "secs"
1384
+ msgstr ""
1385
+
1386
+ #: includes/class-sp-frontend-scripts.php:57
1387
+ msgid "Previous"
1388
+ msgstr ""
1389
+
1390
+ #: includes/class-sp-frontend-scripts.php:57
1391
+ msgid "Next"
1392
+ msgstr ""
1393
+
1394
+ #: includes/class-sp-install.php:192 includes/class-sp-post-types.php:553
1395
+ #: includes/class-sp-post-types.php:554 includes/sp-core-functions.php:1100
1396
+ #: includes/admin/class-sp-admin-permalink-settings.php:35
1397
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:70
1398
+ #: includes/admin/settings/class-sp-settings-events.php:122
1399
+ #: includes/admin/settings/class-sp-settings-staff.php:25
1400
+ #: templates/event-staff.php:43
1401
+ msgid "Staff"
1402
+ msgstr ""
1403
+
1404
+ #: includes/class-sp-install.php:230
1405
+ msgid "Event Manager"
1406
+ msgstr ""
1407
+
1408
+ #: includes/class-sp-install.php:273
1409
+ msgid "Team Manager"
1410
+ msgstr ""
1411
+
1412
+ #: includes/class-sp-install.php:337
1413
+ msgid "League Manager"
1414
+ msgstr ""
1415
+
1416
+ #: includes/class-sp-install.php:534
1417
+ msgid "What's new:"
1418
+ msgstr ""
1419
+
1420
+ #: includes/class-sp-league-table.php:332
1421
+ #: includes/class-sp-player-list.php:361 includes/class-sp-player-list.php:378
1422
+ #: includes/class-sp-player.php:326 includes/class-sp-player.php:349
1423
+ #: includes/class-sp-post-types.php:432 includes/sp-core-functions.php:1102
1424
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:52
1425
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:51
1426
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:70
1427
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:98
1428
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-results.php:45
1429
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:54
1430
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:60
1431
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:64
1432
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:57
1433
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:119
1434
+ #: includes/admin/settings/class-sp-settings-events.php:235
1435
+ #: includes/widgets/class-sp-widget-countdown.php:45
1436
+ #: templates/event-results.php:94
1437
+ msgid "Team"
1438
+ msgstr ""
1439
+
1440
+ #: includes/class-sp-player.php:87 includes/class-sp-team.php:65
1441
+ #: includes/sp-core-functions.php:350 includes/sp-core-functions.php:354
1442
+ #: includes/sp-core-functions.php:1106
1443
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:93
1444
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:36
1445
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:82
1446
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:38
1447
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:76
1448
+ #: templates/event-performance.php:181
1449
+ msgid "Total"
1450
+ msgstr ""
1451
+
1452
+ #: includes/class-sp-player.php:347 includes/class-sp-post-types.php:65
1453
+ #: includes/sp-core-functions.php:1099
1454
+ #: includes/admin/importers/class-sp-event-importer.php:493
1455
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:50
1456
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:96
1457
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:50
1458
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:50
1459
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:76
1460
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:68
1461
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:53
1462
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:45
1463
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:60
1464
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:42
1465
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:60
1466
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:64
1467
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:64
1468
+ #: templates/event-details.php:30 templates/event-list.php:77
1469
+ msgid "Season"
1470
+ msgstr ""
1471
+
1472
+ #: includes/class-sp-post-types.php:35 includes/class-sp-post-types.php:49
1473
+ #: includes/admin/class-sp-admin-menus.php:72
1474
+ #: includes/admin/class-sp-admin-menus.php:269
1475
+ #: includes/admin/class-sp-admin-permalink-settings.php:29
1476
+ #: includes/admin/importers/class-sp-player-importer.php:30
1477
+ #: includes/admin/importers/class-sp-staff-importer.php:29
1478
+ #: includes/admin/importers/class-sp-team-importer.php:27
1479
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:68
1480
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:67
1481
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:67
1482
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:116
1483
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
1484
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:113
1485
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:120
1486
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:50
1487
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:57
1488
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:72
1489
+ #: includes/admin/views/html-admin-page-status.php:296
1490
+ msgid "Leagues"
1491
+ msgstr ""
1492
+
1493
+ #: includes/class-sp-post-types.php:38
1494
+ msgid "Edit League"
1495
+ msgstr ""
1496
+
1497
+ #: includes/class-sp-post-types.php:39 includes/class-sp-post-types.php:68
1498
+ #: includes/class-sp-post-types.php:97 includes/class-sp-post-types.php:126
1499
+ #: includes/class-sp-post-types.php:155 includes/class-sp-post-types.php:195
1500
+ #: includes/class-sp-post-types.php:225 includes/class-sp-post-types.php:255
1501
+ #: includes/class-sp-post-types.php:285 includes/class-sp-post-types.php:315
1502
+ #: includes/class-sp-post-types.php:345
1503
+ msgid "View"
1504
+ msgstr ""
1505
+
1506
+ #: includes/class-sp-post-types.php:40 includes/class-sp-post-types.php:69
1507
+ #: includes/class-sp-post-types.php:98 includes/class-sp-post-types.php:127
1508
+ #: includes/class-sp-post-types.php:156
1509
+ msgid "Update"
1510
+ msgstr ""
1511
+
1512
+ #: includes/class-sp-post-types.php:41 includes/class-sp-post-types.php:70
1513
+ #: includes/class-sp-post-types.php:99 includes/class-sp-post-types.php:128
1514
+ #: includes/class-sp-post-types.php:157 includes/sp-core-functions.php:885
1515
+ #: includes/sp-core-functions.php:902
1516
+ #: includes/admin/class-sp-admin-menus.php:265
1517
+ #: includes/admin/importers/class-sp-event-importer.php:488
1518
+ #: includes/admin/importers/class-sp-event-importer.php:503
1519
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:64
1520
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:79
1521
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:94
1522
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:109
1523
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:47
1524
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:65
1525
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:82
1526
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:41
1527
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:56
1528
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:71
1529
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:108
1530
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-metrics.php:42
1531
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:67
1532
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:38
1533
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:53
1534
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:60
1535
+ #: includes/admin/views/html-admin-config.php:49
1536
+ #: includes/admin/views/html-admin-config.php:124
1537
+ #: includes/admin/views/html-admin-config.php:177
1538
+ #: includes/admin/views/html-admin-config.php:234
1539
+ #: includes/admin/views/html-admin-config.php:286
1540
+ #: includes/admin/views/html-admin-config.php:341
1541
+ #: includes/widgets/class-sp-widget-countdown.php:57
1542
+ #: includes/widgets/class-sp-widget-countdown.php:77
1543
+ #: includes/widgets/class-sp-widget-event-blocks.php:63
1544
+ #: includes/widgets/class-sp-widget-event-calendar.php:56
1545
+ #: includes/widgets/class-sp-widget-event-list.php:66
1546
+ #: includes/widgets/class-sp-widget-league-table.php:61
1547
+ #: includes/widgets/class-sp-widget-player-gallery.php:64
1548
+ #: includes/widgets/class-sp-widget-player-gallery.php:89
1549
+ #: includes/widgets/class-sp-widget-player-list.php:64
1550
+ #: includes/widgets/class-sp-widget-player-list.php:109
1551
+ msgid "Add New"
1552
+ msgstr ""
1553
+
1554
+ #: includes/class-sp-post-types.php:43 includes/class-sp-post-types.php:72
1555
+ #: includes/class-sp-post-types.php:101 includes/class-sp-post-types.php:130
1556
+ #: includes/class-sp-post-types.php:159
1557
+ msgid "Parent"
1558
+ msgstr ""
1559
+
1560
+ #: includes/class-sp-post-types.php:44 includes/class-sp-post-types.php:73
1561
+ #: includes/class-sp-post-types.php:102 includes/class-sp-post-types.php:131
1562
+ #: includes/class-sp-post-types.php:160
1563
+ msgid "Parent:"
1564
+ msgstr ""
1565
+
1566
+ #: includes/class-sp-post-types.php:45 includes/class-sp-post-types.php:74
1567
+ #: includes/class-sp-post-types.php:103 includes/class-sp-post-types.php:132
1568
+ #: includes/class-sp-post-types.php:161 includes/class-sp-post-types.php:196
1569
+ #: includes/class-sp-post-types.php:226 includes/class-sp-post-types.php:256
1570
+ #: includes/class-sp-post-types.php:286 includes/class-sp-post-types.php:316
1571
+ #: includes/class-sp-post-types.php:346 includes/class-sp-post-types.php:376
1572
+ #: includes/class-sp-post-types.php:406 includes/class-sp-post-types.php:437
1573
+ #: includes/class-sp-post-types.php:467 includes/class-sp-post-types.php:498
1574
+ #: includes/class-sp-post-types.php:528 includes/class-sp-post-types.php:559
1575
+ msgid "Search"
1576
+ msgstr ""
1577
+
1578
+ #: includes/class-sp-post-types.php:46 includes/class-sp-post-types.php:75
1579
+ #: includes/class-sp-post-types.php:104 includes/class-sp-post-types.php:133
1580
+ #: includes/class-sp-post-types.php:162 includes/class-sp-post-types.php:197
1581
+ #: includes/class-sp-post-types.php:198 includes/class-sp-post-types.php:227
1582
+ #: includes/class-sp-post-types.php:228 includes/class-sp-post-types.php:257
1583
+ #: includes/class-sp-post-types.php:258 includes/class-sp-post-types.php:287
1584
+ #: includes/class-sp-post-types.php:288 includes/class-sp-post-types.php:317
1585
+ #: includes/class-sp-post-types.php:318 includes/class-sp-post-types.php:347
1586
+ #: includes/class-sp-post-types.php:348 includes/class-sp-post-types.php:377
1587
+ #: includes/class-sp-post-types.php:378 includes/class-sp-post-types.php:407
1588
+ #: includes/class-sp-post-types.php:408 includes/class-sp-post-types.php:438
1589
+ #: includes/class-sp-post-types.php:439 includes/class-sp-post-types.php:468
1590
+ #: includes/class-sp-post-types.php:469 includes/class-sp-post-types.php:499
1591
+ #: includes/class-sp-post-types.php:500 includes/class-sp-post-types.php:529
1592
+ #: includes/class-sp-post-types.php:530 includes/class-sp-post-types.php:560
1593
+ #: includes/class-sp-post-types.php:561 includes/sp-core-functions.php:763
1594
+ #: includes/sp-core-functions.php:803
1595
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:180
1596
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:114
1597
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:32
1598
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:101
1599
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:32
1600
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:97
1601
+ #: includes/admin/views/html-admin-config.php:43
1602
+ #: includes/admin/views/html-admin-config.php:117
1603
+ #: includes/admin/views/html-admin-config.php:171
1604
+ #: includes/admin/views/html-admin-config.php:228
1605
+ #: includes/admin/views/html-admin-config.php:280
1606
+ #: includes/admin/views/html-admin-config.php:335
1607
+ #: includes/admin/views/html-admin-overview.php:282
1608
+ msgid "No results found."
1609
+ msgstr ""
1610
+
1611
+ #: includes/class-sp-post-types.php:64 includes/class-sp-post-types.php:78
1612
+ #: includes/admin/class-sp-admin-menus.php:79
1613
+ #: includes/admin/class-sp-admin-menus.php:277
1614
+ #: includes/admin/class-sp-admin-permalink-settings.php:30
1615
+ #: includes/admin/importers/class-sp-player-importer.php:31
1616
+ #: includes/admin/importers/class-sp-staff-importer.php:30
1617
+ #: includes/admin/importers/class-sp-team-importer.php:28
1618
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:69
1619
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:68
1620
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:68
1621
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:131
1622
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
1623
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:128
1624
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:135
1625
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:65
1626
+ #: includes/admin/views/html-admin-page-status.php:306
1627
+ msgid "Seasons"
1628
+ msgstr ""
1629
+
1630
+ #: includes/class-sp-post-types.php:67
1631
+ msgid "Edit Season"
1632
+ msgstr ""
1633
+
1634
+ #: includes/class-sp-post-types.php:93 includes/class-sp-post-types.php:107
1635
+ #: includes/admin/class-sp-admin-menus.php:281
1636
+ #: includes/admin/class-sp-admin-permalink-settings.php:26
1637
+ #: includes/admin/views/html-admin-page-status.php:316
1638
+ msgid "Venues"
1639
+ msgstr ""
1640
+
1641
+ #: includes/class-sp-post-types.php:96
1642
+ msgid "Edit Venue"
1643
+ msgstr ""
1644
+
1645
+ #: includes/class-sp-post-types.php:122 includes/class-sp-post-types.php:136
1646
+ #: includes/admin/class-sp-admin-menus.php:273
1647
+ #: includes/admin/class-sp-admin-permalink-settings.php:33
1648
+ #: includes/admin/importers/class-sp-player-importer.php:28
1649
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:66
1650
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:71
1651
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
1652
+ #: includes/admin/views/html-admin-page-status.php:326
1653
+ msgid "Positions"
1654
+ msgstr ""
1655
+
1656
+ #: includes/class-sp-post-types.php:125
1657
+ msgid "Edit Position"
1658
+ msgstr ""
1659
+
1660
+ #: includes/class-sp-post-types.php:151 includes/class-sp-post-types.php:165
1661
+ #: includes/admin/class-sp-admin-menus.php:238
1662
+ #: includes/admin/importers/class-sp-staff-importer.php:27
1663
+ msgid "Roles"
1664
+ msgstr ""
1665
+
1666
+ #: includes/class-sp-post-types.php:152
1667
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:65
1668
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:55
1669
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:62
1670
+ msgid "Role"
1671
+ msgstr ""
1672
+
1673
+ #: includes/class-sp-post-types.php:154
1674
+ msgid "Edit Role"
1675
+ msgstr ""
1676
+
1677
+ #: includes/class-sp-post-types.php:190 includes/sp-core-functions.php:1098
1678
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:127
1679
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:27
1680
+ #: includes/admin/views/html-admin-config.php:74
1681
+ #: includes/admin/views/html-admin-config.php:78
1682
+ #: includes/admin/views/html-admin-page-status.php:237
1683
+ #: templates/event-results.php:90
1684
+ msgid "Team Results"
1685
+ msgstr ""
1686
+
1687
+ #: includes/class-sp-post-types.php:191
1688
+ msgid "Result"
1689
+ msgstr ""
1690
+
1691
+ #: includes/class-sp-post-types.php:192
1692
+ msgid "Add New Result"
1693
+ msgstr ""
1694
+
1695
+ #: includes/class-sp-post-types.php:193
1696
+ msgid "Edit Result"
1697
+ msgstr ""
1698
+
1699
+ #: includes/class-sp-post-types.php:194 includes/class-sp-post-types.php:224
1700
+ #: includes/class-sp-post-types.php:254 includes/class-sp-post-types.php:284
1701
+ #: includes/class-sp-post-types.php:314 includes/class-sp-post-types.php:344
1702
+ #: includes/class-sp-post-types.php:374 includes/class-sp-post-types.php:404
1703
+ #: includes/class-sp-post-types.php:435 includes/class-sp-post-types.php:465
1704
+ #: includes/class-sp-post-types.php:496 includes/class-sp-post-types.php:526
1705
+ #: includes/class-sp-post-types.php:557
1706
+ msgid "New"
1707
+ msgstr ""
1708
+
1709
+ #: includes/class-sp-post-types.php:220
1710
+ #: includes/admin/views/html-admin-config.php:19
1711
+ #: includes/admin/views/html-admin-page-status.php:227
1712
+ msgid "Event Outcomes"
1713
+ msgstr ""
1714
+
1715
+ #: includes/class-sp-post-types.php:222
1716
+ msgid "Add New Outcome"
1717
+ msgstr ""
1718
+
1719
+ #: includes/class-sp-post-types.php:223
1720
+ msgid "Edit Outcome"
1721
+ msgstr ""
1722
+
1723
+ #: includes/class-sp-post-types.php:250
1724
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:144
1725
+ #: includes/admin/views/html-admin-config.php:200
1726
+ #: includes/admin/views/html-admin-page-status.php:257
1727
+ msgid "Table Columns"
1728
+ msgstr ""
1729
+
1730
+ #: includes/class-sp-post-types.php:251
1731
+ msgid "Column"
1732
+ msgstr ""
1733
+
1734
+ #: includes/class-sp-post-types.php:252
1735
+ msgid "Add New Column"
1736
+ msgstr ""
1737
+
1738
+ #: includes/class-sp-post-types.php:253
1739
+ msgid "Edit Column"
1740
+ msgstr ""
1741
+
1742
+ #: includes/class-sp-post-types.php:280
1743
+ #: includes/admin/views/html-admin-config.php:258
1744
+ #: includes/admin/views/html-admin-page-status.php:267
1745
+ msgid "Player Metrics"
1746
+ msgstr ""
1747
+
1748
+ #: includes/class-sp-post-types.php:281
1749
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:52
1750
+ msgid "Metric"
1751
+ msgstr ""
1752
+
1753
+ #: includes/class-sp-post-types.php:282
1754
+ msgid "Add New Metric"
1755
+ msgstr ""
1756
+
1757
+ #: includes/class-sp-post-types.php:283
1758
+ msgid "Edit Metric"
1759
+ msgstr ""
1760
+
1761
+ #: includes/class-sp-post-types.php:310 includes/class-sp-post-types.php:311
1762
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:128
1763
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:35
1764
+ #: includes/admin/settings/class-sp-settings-events.php:102
1765
+ #: includes/admin/views/html-admin-config.php:147
1766
+ #: includes/admin/views/html-admin-page-status.php:247
1767
+ msgid "Player Performance"
1768
+ msgstr ""
1769
+
1770
+ #: includes/class-sp-post-types.php:312
1771
+ msgid "Add New Performance"
1772
+ msgstr ""
1773
+
1774
+ #: includes/class-sp-post-types.php:313
1775
+ msgid "Edit Performance"
1776
+ msgstr ""
1777
+
1778
+ #: includes/class-sp-post-types.php:340
1779
+ #: includes/admin/views/html-admin-config.php:309
1780
+ #: includes/admin/views/html-admin-page-status.php:277
1781
+ msgid "Player Statistics"
1782
+ msgstr ""
1783
+
1784
+ #: includes/class-sp-post-types.php:341
1785
+ msgid "Statistic"
1786
+ msgstr ""
1787
+
1788
+ #: includes/class-sp-post-types.php:342
1789
+ msgid "Add New Statistic"
1790
+ msgstr ""
1791
+
1792
+ #: includes/class-sp-post-types.php:343
1793
+ msgid "Edit Statistic"
1794
+ msgstr ""
1795
+
1796
+ #: includes/class-sp-post-types.php:370
1797
+ #: includes/admin/class-sp-admin-permalink-settings.php:25
1798
+ #: includes/admin/class-sp-admin-taxonomies.php:134
1799
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:53
1800
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:136
1801
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
1802
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
1803
+ #: includes/admin/settings/class-sp-settings-events.php:25
1804
+ msgid "Events"
1805
+ msgstr ""
1806
+
1807
+ #: includes/class-sp-post-types.php:372
1808
+ #: includes/admin/class-sp-admin-welcome.php:247
1809
+ msgid "Add New Event"
1810
+ msgstr ""
1811
+
1812
+ #: includes/class-sp-post-types.php:373
1813
+ msgid "Edit Event"
1814
+ msgstr ""
1815
+
1816
+ #: includes/class-sp-post-types.php:375
1817
+ msgid "View Event"
1818
+ msgstr ""
1819
+
1820
+ #: includes/class-sp-post-types.php:400
1821
+ #: includes/admin/class-sp-admin-permalink-settings.php:27
1822
+ msgid "Calendars"
1823
+ msgstr ""
1824
+
1825
+ #: includes/class-sp-post-types.php:402
1826
+ msgid "Add New Calendar"
1827
+ msgstr ""
1828
+
1829
+ #: includes/class-sp-post-types.php:403
1830
+ msgid "Edit Calendar"
1831
+ msgstr ""
1832
+
1833
+ #: includes/class-sp-post-types.php:405
1834
+ msgid "View Calendar"
1835
+ msgstr ""
1836
+
1837
+ #: includes/class-sp-post-types.php:433
1838
+ #: includes/admin/class-sp-admin-welcome.php:245
1839
+ msgid "Add New Team"
1840
+ msgstr ""
1841
+
1842
+ #: includes/class-sp-post-types.php:434
1843
+ msgid "Edit Team"
1844
+ msgstr ""
1845
+
1846
+ #: includes/class-sp-post-types.php:436
1847
+ msgid "View Team"
1848
+ msgstr ""
1849
+
1850
+ #: includes/class-sp-post-types.php:461
1851
+ #: includes/admin/class-sp-admin-permalink-settings.php:31
1852
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:143
1853
+ #: includes/admin/settings/class-sp-settings-teams.php:53
1854
+ msgid "League Tables"
1855
+ msgstr ""
1856
+
1857
+ #: includes/class-sp-post-types.php:463
1858
+ msgid "Add New League Table"
1859
+ msgstr ""
1860
+
1861
+ #: includes/class-sp-post-types.php:464
1862
+ msgid "Edit League Table"
1863
+ msgstr ""
1864
+
1865
+ #: includes/class-sp-post-types.php:466
1866
+ msgid "View League Table"
1867
+ msgstr ""
1868
+
1869
+ #: includes/class-sp-post-types.php:492
1870
+ #: includes/admin/class-sp-admin-permalink-settings.php:32
1871
+ #: includes/admin/importers/class-sp-event-importer.php:32
1872
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:52
1873
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:69
1874
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:122
1875
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:170
1876
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:105
1877
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:58
1878
+ #: includes/admin/settings/class-sp-settings-players.php:25
1879
+ #: includes/admin/settings/class-sp-settings-players.php:62
1880
+ msgid "Players"
1881
+ msgstr ""
1882
+
1883
+ #: includes/class-sp-post-types.php:494
1884
+ #: includes/admin/class-sp-admin-welcome.php:246
1885
+ msgid "Add New Player"
1886
+ msgstr ""
1887
+
1888
+ #: includes/class-sp-post-types.php:495
1889
+ msgid "Edit Player"
1890
+ msgstr ""
1891
+
1892
+ #: includes/class-sp-post-types.php:497
1893
+ msgid "View Player"
1894
+ msgstr ""
1895
+
1896
+ #: includes/class-sp-post-types.php:522
1897
+ #: includes/admin/class-sp-admin-permalink-settings.php:34
1898
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:142
1899
+ #: includes/admin/settings/class-sp-settings-players.php:59
1900
+ msgid "Player Lists"
1901
+ msgstr ""
1902
+
1903
+ #: includes/class-sp-post-types.php:524
1904
+ msgid "Add New Player List"
1905
+ msgstr ""
1906
+
1907
+ #: includes/class-sp-post-types.php:525
1908
+ msgid "Edit Player List"
1909
+ msgstr ""
1910
+
1911
+ #: includes/class-sp-post-types.php:527
1912
+ msgid "View Player List"
1913
+ msgstr ""
1914
+
1915
+ #: includes/class-sp-post-types.php:555
1916
+ msgid "Add New Staff"
1917
+ msgstr ""
1918
+
1919
+ #: includes/class-sp-post-types.php:556
1920
+ msgid "Edit Staff"
1921
+ msgstr ""
1922
+
1923
+ #: includes/class-sp-post-types.php:558
1924
+ #: includes/admin/importers/class-sp-staff-importer.php:141
1925
+ msgid "View Staff"
1926
+ msgstr ""
1927
+
1928
+ #: includes/sp-core-functions.php:318
1929
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:98
1930
+ #: templates/team-link.php:21
1931
+ msgid "Visit Site"
1932
+ msgstr ""
1933
+
1934
+ #: includes/sp-core-functions.php:350
1935
+ msgid "Average"
1936
+ msgstr ""
1937
+
1938
+ #: includes/sp-core-functions.php:408
1939
+ msgid "Published"
1940
+ msgstr ""
1941
+
1942
+ #: includes/sp-core-functions.php:409
1943
+ msgid "Scheduled"
1944
+ msgstr ""
1945
+
1946
+ #: includes/sp-core-functions.php:686 includes/sp-core-functions.php:826
1947
+ msgid "(no title)"
1948
+ msgstr ""
1949
+
1950
+ #: includes/sp-core-functions.php:703 includes/sp-core-functions.php:783
1951
+ msgid "Select All"
1952
+ msgstr ""
1953
+
1954
+ #: includes/sp-core-functions.php:764 includes/sp-core-functions.php:767
1955
+ msgid "Show all"
1956
+ msgstr ""
1957
+
1958
+ #: includes/sp-core-functions.php:1083
1959
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:87
1960
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:101
1961
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:97
1962
+ #: templates/player-details.php:52 templates/staff-details.php:36
1963
+ msgid "Current Team"
1964
+ msgstr ""
1965
+
1966
+ #: includes/sp-core-functions.php:1084
1967
+ #: includes/admin/importers/class-sp-event-importer.php:26
1968
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:92
1969
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:49
1970
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:42
1971
+ #: templates/event-details.php:21 templates/event-list.php:57
1972
+ msgid "Date"
1973
+ msgstr ""
1974
+
1975
+ #: includes/sp-core-functions.php:1088
1976
+ #: includes/admin/importers/class-sp-player-importer.php:32
1977
+ #: includes/admin/importers/class-sp-staff-importer.php:31
1978
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:59
1979
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
1980
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:71
1981
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:72
1982
+ #: includes/admin/settings/class-sp-settings-players.php:50
1983
+ #: includes/admin/settings/class-sp-settings-staff.php:52
1984
+ #: templates/player-details.php:34 templates/staff-details.php:32
1985
+ msgid "Nationality"
1986
+ msgstr ""
1987
+
1988
+ #: includes/sp-core-functions.php:1090
1989
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:101
1990
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:98
1991
+ #: templates/player-details.php:61 templates/staff-details.php:43
1992
+ msgid "Past Teams"
1993
+ msgstr ""
1994
+
1995
+ #: includes/sp-core-functions.php:1093 templates/league-table.php:53
1996
+ msgid "Pos"
1997
+ msgstr ""
1998
+
1999
+ #: includes/sp-core-functions.php:1095
2000
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:167
2001
+ #: templates/event-list.php:215
2002
+ msgid "Preview"
2003
+ msgstr ""
2004
+
2005
+ #: includes/sp-core-functions.php:1096 templates/player-list.php:90
2006
+ msgid "Rank"
2007
+ msgstr ""
2008
+
2009
+ #: includes/sp-core-functions.php:1097
2010
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:165
2011
+ #: templates/event-list.php:213
2012
+ msgid "Recap"
2013
+ msgstr ""
2014
+
2015
+ #: includes/sp-core-functions.php:1101
2016
+ msgid "Substitutes"
2017
+ msgstr ""
2018
+
2019
+ #: includes/sp-core-functions.php:1105
2020
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:64
2021
+ #: templates/event-list.php:71
2022
+ msgid "Time/Results"
2023
+ msgstr ""
2024
+
2025
+ #: includes/sp-core-functions.php:1108 templates/event-blocks.php:118
2026
+ #: templates/event-calendar.php:211 templates/event-list.php:234
2027
+ msgid "View all events"
2028
+ msgstr ""
2029
+
2030
+ #: includes/sp-core-functions.php:1109 templates/player-gallery.php:149
2031
+ #: templates/player-list.php:164
2032
+ msgid "View all players"
2033
+ msgstr ""
2034
+
2035
+ #: includes/sp-core-functions.php:1110 templates/league-table.php:154
2036
+ msgid "View full table"
2037
+ msgstr ""
2038
+
2039
+ #: includes/sp-template-hooks.php:151
2040
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:48
2041
+ #: includes/admin/post-types/class-sp-admin-cpt-metric.php:45
2042
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:46
2043
+ #: includes/admin/post-types/class-sp-admin-cpt-performance.php:45
2044
+ #: includes/admin/post-types/class-sp-admin-cpt-result.php:45
2045
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:47
2046
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:137
2047
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:152
2048
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:170
2049
+ #: includes/admin/views/html-admin-config.php:29
2050
+ #: includes/admin/views/html-admin-config.php:87
2051
+ #: includes/admin/views/html-admin-config.php:157
2052
+ #: includes/admin/views/html-admin-config.php:212
2053
+ #: includes/admin/views/html-admin-config.php:267
2054
+ #: includes/admin/views/html-admin-config.php:320
2055
+ msgid "Description"
2056
+ msgstr ""
2057
+
2058
+ #: includes/sp-template-hooks.php:154
2059
+ msgid ""
2060
+ "The description is not prominent by default; however, some themes may show "
2061
+ "it."
2062
+ msgstr ""
2063
+
2064
+ #: includes/sp-template-hooks.php:157
2065
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:44
2066
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:44
2067
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:34
2068
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-statistic-details.php:31
2069
+ #: includes/admin/views/html-admin-config.php:208
2070
+ #: includes/admin/views/html-admin-config.php:317
2071
+ msgid "Key"
2072
+ msgstr ""
2073
+
2074
+ #: includes/sp-template-hooks.php:157
2075
+ #: includes/admin/post-types/class-sp-admin-cpt-metric.php:44
2076
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:44
2077
+ #: includes/admin/post-types/class-sp-admin-cpt-performance.php:44
2078
+ #: includes/admin/post-types/class-sp-admin-cpt-result.php:44
2079
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-metric-details.php:27
2080
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-outcome-details.php:28
2081
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-performance-details.php:27
2082
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-result-details.php:27
2083
+ #: includes/admin/views/html-admin-config.php:27
2084
+ #: includes/admin/views/html-admin-config.php:156
2085
+ #: includes/admin/views/html-admin-config.php:266
2086
+ msgid "Variable"
2087
+ msgstr ""
2088
+
2089
+ #: includes/sp-template-hooks.php:160
2090
+ #: includes/admin/views/html-admin-config.php:154
2091
+ msgid "Icon"
2092
+ msgstr ""
2093
+
2094
+ #: includes/sp-template-hooks.php:163
2095
+ msgid "Select Icon"
2096
+ msgstr ""
2097
+
2098
+ #: includes/sp-template-hooks.php:166
2099
+ msgid "Add icon"
2100
+ msgstr ""
2101
+
2102
+ #: includes/sp-template-hooks.php:169
2103
+ msgid "Remove icon"
2104
+ msgstr ""
2105
+
2106
+ #: includes/sp-template-hooks.php:177
2107
+ msgid "User"
2108
+ msgstr ""
2109
+
2110
+ #: includes/sp-template-hooks.php:185
2111
+ msgid "Photo"
2112
+ msgstr ""
2113
+
2114
+ #: includes/sp-template-hooks.php:188
2115
+ msgid "Select Photo"
2116
+ msgstr ""
2117
+
2118
+ #: includes/sp-template-hooks.php:191
2119
+ msgid "Add photo"
2120
+ msgstr ""
2121
+
2122
+ #: includes/sp-template-hooks.php:194
2123
+ msgid "Remove photo"
2124
+ msgstr ""
2125
+
2126
+ #: includes/sp-template-hooks.php:202
2127
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:63
2128
+ msgid "Logo"
2129
+ msgstr ""
2130
+
2131
+ #: includes/sp-template-hooks.php:205
2132
+ msgid "Select Logo"
2133
+ msgstr ""
2134
+
2135
+ #: includes/sp-template-hooks.php:208
2136
+ msgid "Add logo"
2137
+ msgstr ""
2138
+
2139
+ #: includes/sp-template-hooks.php:211
2140
+ msgid "Remove logo"
2141
+ msgstr ""
2142
+
2143
+ #: includes/sp-template-hooks.php:219
2144
+ msgid "Date/Time:"
2145
+ msgstr ""
2146
+
2147
+ #: includes/sp-template-hooks.php:219
2148
+ msgid "Now"
2149
+ msgstr ""
2150
+
2151
+ #: includes/sp-template-hooks.php:348
2152
+ #: includes/admin/class-sp-admin-post-types.php:62
2153
+ msgid "Settings saved."
2154
+ msgstr ""
2155
+
2156
+ #: includes/sp-template-hooks.php:350
2157
+ #: includes/admin/class-sp-admin-post-types.php:64
2158
+ #: includes/admin/views/html-admin-config.php:50
2159
+ #: includes/admin/views/html-admin-config.php:125
2160
+ #: includes/admin/views/html-admin-config.php:178
2161
+ #: includes/admin/views/html-admin-config.php:235
2162
+ #: includes/admin/views/html-admin-config.php:287
2163
+ #: includes/admin/views/html-admin-config.php:342
2164
+ #: includes/admin/views/html-admin-overview.php:225
2165
+ msgid "View All"
2166
+ msgstr ""
2167
+
2168
+ #: includes/sp-template-hooks.php:356 includes/sp-template-hooks.php:359
2169
+ #: includes/sp-template-hooks.php:364
2170
+ #: includes/admin/class-sp-admin-post-types.php:69
2171
+ #: includes/admin/class-sp-admin-post-types.php:72
2172
+ #: includes/admin/class-sp-admin-post-types.php:77
2173
+ msgid "Changes saved."
2174
+ msgstr ""
2175
+
2176
+ #: includes/sp-template-hooks.php:361 includes/sp-template-hooks.php:366
2177
+ #: includes/sp-template-hooks.php:376
2178
+ #: includes/admin/class-sp-admin-post-types.php:74
2179
+ #: includes/admin/class-sp-admin-post-types.php:79
2180
+ #: includes/admin/class-sp-admin-post-types.php:89
2181
+ msgid "Success!"
2182
+ msgstr ""
2183
+
2184
+ #: includes/sp-template-hooks.php:368 includes/sp-template-hooks.php:374
2185
+ #: includes/sp-template-hooks.php:378
2186
+ #: includes/admin/class-sp-admin-post-types.php:81
2187
+ #: includes/admin/class-sp-admin-post-types.php:87
2188
+ #: includes/admin/class-sp-admin-post-types.php:91
2189
+ #, php-format
2190
+ msgid "Preview %s"
2191
+ msgstr ""
2192
+
2193
+ #: includes/sp-template-hooks.php:371
2194
+ #: includes/admin/class-sp-admin-post-types.php:84
2195
+ #, php-format
2196
+ msgid "Scheduled for: <b>%1$s</b>."
2197
+ msgstr ""
2198
+
2199
+ #: includes/sp-template-hooks.php:372
2200
+ #: includes/admin/class-sp-admin-post-types.php:85
2201
+ msgid "M j, Y @ G:i"
2202
+ msgstr ""
2203
+
2204
+ #: includes/admin/class-sp-admin-assets.php:106
2205
+ #: includes/admin/class-sp-admin-settings.php:114
2206
+ #: includes/admin/importers/class-sp-event-importer.php:487
2207
+ #: includes/admin/importers/class-sp-event-importer.php:502
2208
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:163
2209
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:189
2210
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:78
2211
+ #: includes/admin/views/html-admin-page-status.php:224
2212
+ msgid "None"
2213
+ msgstr ""
2214
+
2215
+ #: includes/admin/class-sp-admin-assets.php:107
2216
+ msgid "&mdash; Remove &mdash;"
2217
+ msgstr ""
2218
+
2219
+ #: includes/admin/class-sp-admin-assets.php:112
2220
+ #: includes/admin/importers/class-sp-importer.php:176
2221
+ #, php-format
2222
+ msgid "Displaying %s&#8211;%s of %s"
2223
+ msgstr ""
2224
+
2225
+ #: includes/admin/class-sp-admin-dashboard.php:34
2226
+ #: includes/admin/class-sp-admin-menus.php:51
2227
+ #: includes/admin/class-sp-admin-permalink-settings.php:47
2228
+ #: includes/admin/views/html-admin-overview.php:19
2229
+ #: includes/admin/views/html-admin-overview.php:76
2230
+ #: includes/admin/views/html-admin-overview.php:127
2231
+ #: includes/admin/views/html-admin-overview.php:148
2232
+ #: includes/admin/views/html-admin-overview.php:230
2233
+ #: includes/admin/views/html-admin-overview.php:275
2234
+ #: includes/admin/views/html-admin-overview.php:295
2235
+ #: includes/widgets/class-sp-widget-countdown.php:6
2236
+ #: includes/widgets/class-sp-widget-event-blocks.php:6
2237
+ #: includes/widgets/class-sp-widget-event-calendar.php:6
2238
+ #: includes/widgets/class-sp-widget-event-list.php:6
2239
+ #: includes/widgets/class-sp-widget-league-table.php:6
2240
+ #: includes/widgets/class-sp-widget-player-gallery.php:6
2241
+ #: includes/widgets/class-sp-widget-player-list.php:6
2242
+ msgid "SportsPress"
2243
+ msgstr ""
2244
+
2245
+ #: includes/admin/class-sp-admin-dashboard.php:49
2246
+ #, php-format
2247
+ msgid "%s "
2248
+ msgid_plural "%s "
2249
+ msgstr[0] ""
2250
+ msgstr[1] ""
2251
+
2252
+ #: includes/admin/class-sp-admin-dashboard.php:80
2253
+ #, php-format
2254
+ msgid "<strong>%s</strong> until next event"
2255
+ msgstr ""
2256
+
2257
+ #: includes/admin/class-sp-admin-dashboard.php:87
2258
+ #, php-format
2259
+ msgid "<strong>%s event</strong> scheduled"
2260
+ msgid_plural "<strong>%s events</strong> scheduled"
2261
+ msgstr[0] ""
2262
+ msgstr[1] ""
2263
+
2264
+ #: includes/admin/class-sp-admin-dashboard.php:92
2265
+ #, php-format
2266
+ msgid "<strong>%s event</strong> published"
2267
+ msgid_plural "<strong>%s events</strong> published"
2268
+ msgstr[0] ""
2269
+ msgstr[1] ""
2270
+
2271
+ #: includes/admin/class-sp-admin-importers.php:31
2272
+ msgid "SportsPress Events (CSV)"
2273
+ msgstr ""
2274
+
2275
+ #: includes/admin/class-sp-admin-importers.php:31
2276
+ msgid "Import <strong>events</strong> from a csv file."
2277
+ msgstr ""
2278
+
2279
+ #: includes/admin/class-sp-admin-importers.php:32
2280
+ msgid "SportsPress Teams (CSV)"
2281
+ msgstr ""
2282
+
2283
+ #: includes/admin/class-sp-admin-importers.php:32
2284
+ msgid "Import <strong>teams</strong> from a csv file."
2285
+ msgstr ""
2286
+
2287
+ #: includes/admin/class-sp-admin-importers.php:33
2288
+ msgid "SportsPress Players (CSV)"
2289
+ msgstr ""
2290
+
2291
+ #: includes/admin/class-sp-admin-importers.php:33
2292
+ msgid "Import <strong>players</strong> from a csv file."
2293
+ msgstr ""
2294
+
2295
+ #: includes/admin/class-sp-admin-importers.php:34
2296
+ msgid "SportsPress Staff (CSV)"
2297
+ msgstr ""
2298
+
2299
+ #: includes/admin/class-sp-admin-importers.php:34
2300
+ msgid "Import <strong>staff</strong> from a csv file."
2301
+ msgstr ""
2302
+
2303
+ #: includes/admin/class-sp-admin-menus.php:58
2304
+ #: includes/admin/views/html-admin-overview.php:3
2305
+ msgid "Overview"
2306
+ msgstr ""
2307
+
2308
+ #: includes/admin/class-sp-admin-menus.php:65
2309
+ #: includes/admin/views/html-admin-config.php:3
2310
+ msgid "Configure"
2311
+ msgstr ""
2312
+
2313
+ #: includes/admin/class-sp-admin-menus.php:86
2314
+ #: includes/admin/views/html-admin-page-status.php:2
2315
+ #: includes/admin/views/html-notice-template-check.php:6
2316
+ msgid "System Status"
2317
+ msgstr ""
2318
+
2319
+ #: includes/admin/class-sp-admin-permalink-settings.php:75
2320
+ msgid ""
2321
+ "These settings control the permalinks used for SportsPress. These settings "
2322
+ "only apply when <strong>not using \"default\" permalinks above</strong>."
2323
+ msgstr ""
2324
+
2325
+ #: includes/admin/class-sp-admin-settings.php:57
2326
+ msgid "Action failed. Please refresh the page and retry."
2327
+ msgstr ""
2328
+
2329
+ #: includes/admin/class-sp-admin-settings.php:64
2330
+ #: includes/admin/class-sp-admin-welcome.php:192
2331
+ msgid "Your settings have been saved."
2332
+ msgstr ""
2333
+
2334
+ #: includes/admin/class-sp-admin-sports.php:25
2335
+ #: includes/admin/class-sp-admin-sports.php:46
2336
+ #: includes/admin/class-sp-admin-sports.php:48
2337
+ msgid "Traditional Sports"
2338
+ msgstr ""
2339
+
2340
+ #: includes/admin/class-sp-admin-sports.php:26
2341
+ #: includes/admin/class-sp-admin-sports.php:66
2342
+ #: includes/admin/class-sp-admin-sports.php:68
2343
+ msgid "Esports"
2344
+ msgstr ""
2345
+
2346
+ #: includes/admin/class-sp-admin-sports.php:27
2347
+ msgid "Other"
2348
+ msgstr ""
2349
+
2350
+ #: includes/admin/class-sp-admin-sports.php:27
2351
+ msgid "Custom"
2352
+ msgstr ""
2353
+
2354
+ #: includes/admin/class-sp-admin-taxonomies.php:61
2355
+ #: includes/admin/class-sp-admin-taxonomies.php:81
2356
+ #: includes/admin/class-sp-admin-taxonomies.php:133
2357
+ msgid "Address"
2358
+ msgstr ""
2359
+
2360
+ #: includes/admin/class-sp-admin-taxonomies.php:66
2361
+ #: includes/admin/class-sp-admin-taxonomies.php:85
2362
+ msgid "Drag the marker to the venue's location."
2363
+ msgstr ""
2364
+
2365
+ #: includes/admin/class-sp-admin-taxonomies.php:89
2366
+ msgid "Latitude"
2367
+ msgstr ""
2368
+
2369
+ #: includes/admin/class-sp-admin-taxonomies.php:95
2370
+ msgid "Longitude"
2371
+ msgstr ""
2372
+
2373
+ #: includes/admin/class-sp-admin-welcome.php:45
2374
+ msgid "Welcome to SportsPress"
2375
+ msgstr ""
2376
+
2377
+ #: includes/admin/class-sp-admin-welcome.php:135
2378
+ msgid "Welcome to SportsPress!"
2379
+ msgstr ""
2380
+
2381
+ #: includes/admin/class-sp-admin-welcome.php:140
2382
+ msgid "Thanks, all done!"
2383
+ msgstr ""
2384
+
2385
+ #: includes/admin/class-sp-admin-welcome.php:142
2386
+ msgid "Thank you for updating to the latest version!"
2387
+ msgstr ""
2388
+
2389
+ #: includes/admin/class-sp-admin-welcome.php:144
2390
+ msgid "Thanks for installing!"
2391
+ msgstr ""
2392
+
2393
+ #: includes/admin/class-sp-admin-welcome.php:146
2394
+ #, php-format
2395
+ msgid "%s SportsPress %s has lots of refinements we think you&#8217;ll love."
2396
+ msgstr ""
2397
+
2398
+ #: includes/admin/class-sp-admin-welcome.php:150
2399
+ #, php-format
2400
+ msgid "Version %s"
2401
+ msgstr ""
2402
+
2403
+ #: includes/admin/class-sp-admin-welcome.php:159
2404
+ #: includes/admin/views/html-notice-install.php:7
2405
+ msgid "Get Started"
2406
+ msgstr ""
2407
+
2408
+ #: includes/admin/class-sp-admin-welcome.php:198
2409
+ #: includes/admin/settings/class-sp-settings-general.php:245
2410
+ #: includes/admin/settings/class-sp-settings-general.php:248
2411
+ msgid "Timezone"
2412
+ msgstr ""
2413
+
2414
+ #: includes/admin/class-sp-admin-welcome.php:222
2415
+ #: includes/admin/settings/class-sp-settings-general.php:49
2416
+ #: includes/admin/views/html-admin-page-status.php:223
2417
+ msgid "Sport"
2418
+ msgstr ""
2419
+
2420
+ #: includes/admin/class-sp-admin-welcome.php:235
2421
+ #: includes/admin/views/html-admin-settings.php:14
2422
+ msgid "Save changes"
2423
+ msgstr ""
2424
+
2425
+ #: includes/admin/class-sp-admin-welcome.php:242
2426
+ msgid "Next Steps"
2427
+ msgstr ""
2428
+
2429
+ #: includes/admin/class-sp-admin-welcome.php:243
2430
+ msgid "We&#8217;ve assembled some links to get you started:"
2431
+ msgstr ""
2432
+
2433
+ #: includes/admin/class-sp-admin-welcome.php:251
2434
+ msgid "Translators"
2435
+ msgstr ""
2436
+
2437
+ #: includes/admin/class-sp-admin-welcome.php:252
2438
+ msgid ""
2439
+ "SportsPress has been kindly translated into several other languages thanks "
2440
+ "to our translation team. Want to see your name? <a "
2441
+ "href=\"https://www.transifex.com/projects/p/sportspress/\">Translate "
2442
+ "SportsPress</a>."
2443
+ msgstr ""
2444
+
2445
+ #: includes/admin/class-sp-admin-welcome.php:268
2446
+ msgid "Go to SportsPress Settings"
2447
+ msgstr ""
2448
+
2449
+ #: includes/admin/importers/class-sp-event-importer.php:24
2450
+ msgid "Import Events"
2451
+ msgstr ""
2452
+
2453
+ #: includes/admin/importers/class-sp-event-importer.php:407
2454
+ #, php-format
2455
+ msgid ""
2456
+ "Import complete - imported <strong>%s</strong> events and skipped "
2457
+ "<strong>%s</strong>."
2458
+ msgstr ""
2459
+
2460
+ #: includes/admin/importers/class-sp-event-importer.php:417
2461
+ #: includes/admin/importers/class-sp-player-importer.php:145
2462
+ #: includes/admin/importers/class-sp-staff-importer.php:141
2463
+ #: includes/admin/importers/class-sp-team-importer.php:102
2464
+ msgid "All done!"
2465
+ msgstr ""
2466
+
2467
+ #: includes/admin/importers/class-sp-event-importer.php:417
2468
+ msgid "View Events"
2469
+ msgstr ""
2470
+
2471
+ #: includes/admin/importers/class-sp-event-importer.php:430
2472
+ #: includes/admin/importers/class-sp-player-importer.php:168
2473
+ #: includes/admin/importers/class-sp-staff-importer.php:164
2474
+ #: includes/admin/importers/class-sp-team-importer.php:115
2475
+ msgid ""
2476
+ "Hi there! Choose a .csv file to upload, then click \"Upload file and "
2477
+ "import\"."
2478
+ msgstr ""
2479
+
2480
+ #: includes/admin/importers/class-sp-event-importer.php:431
2481
+ #, php-format
2482
+ msgid ""
2483
+ "Events need to be defined with columns in a specific order (3+ columns). <a "
2484
+ "href=\"%s\">Click here to download a sample</a>."
2485
+ msgstr ""
2486
+
2487
+ #: includes/admin/importers/class-sp-event-importer.php:448
2488
+ msgid "Date Format"
2489
+ msgstr ""
2490
+
2491
+ #: includes/admin/importers/class-sp-event-importer.php:467
2492
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:90
2493
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:122
2494
+ msgid "Format"
2495
+ msgstr ""
2496
+
2497
+ #: includes/admin/importers/class-sp-event-importer.php:484
2498
+ #: includes/admin/importers/class-sp-event-importer.php:499
2499
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:44
2500
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:62
2501
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:79
2502
+ msgid "-- Not set --"
2503
+ msgstr ""
2504
+
2505
+ #: includes/admin/importers/class-sp-importer.php:100
2506
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:47
2507
+ msgid "Disable"
2508
+ msgstr ""
2509
+
2510
+ #: includes/admin/importers/class-sp-importer.php:145
2511
+ #: includes/admin/importers/class-sp-importer.php:159
2512
+ #: includes/admin/importers/class-sp-importer.php:170
2513
+ msgid "Insert row after"
2514
+ msgstr ""
2515
+
2516
+ #: includes/admin/importers/class-sp-importer.php:158
2517
+ msgid "Delete row"
2518
+ msgstr ""
2519
+
2520
+ #: includes/admin/importers/class-sp-importer.php:185
2521
+ #: includes/admin/importers/class-sp-importer.php:221
2522
+ #: includes/admin/importers/class-sp-importer.php:236
2523
+ msgid "Sorry, there has been an error."
2524
+ msgstr ""
2525
+
2526
+ #: includes/admin/importers/class-sp-importer.php:186
2527
+ msgid "The CSV is invalid."
2528
+ msgstr ""
2529
+
2530
+ #: includes/admin/importers/class-sp-player-importer.php:24
2531
+ #: includes/admin/importers/class-sp-player-importer.php:157
2532
+ msgid "Import Players"
2533
+ msgstr ""
2534
+
2535
+ #: includes/admin/importers/class-sp-player-importer.php:135
2536
+ #, php-format
2537
+ msgid ""
2538
+ "Import complete - imported <strong>%s</strong> players and skipped "
2539
+ "<strong>%s</strong>."
2540
+ msgstr ""
2541
+
2542
+ #: includes/admin/importers/class-sp-player-importer.php:145
2543
+ msgid "View Players"
2544
+ msgstr ""
2545
+
2546
+ #: includes/admin/importers/class-sp-player-importer.php:169
2547
+ #, php-format
2548
+ msgid ""
2549
+ "Players need to be defined with columns in a specific order (7 columns). <a "
2550
+ "href=\"%s\">Click here to download a sample</a>."
2551
+ msgstr ""
2552
+
2553
+ #: includes/admin/importers/class-sp-staff-importer.php:24
2554
+ #: includes/admin/importers/class-sp-staff-importer.php:153
2555
+ msgid "Import Staff"
2556
+ msgstr ""
2557
+
2558
+ #: includes/admin/importers/class-sp-staff-importer.php:131
2559
+ #, php-format
2560
+ msgid ""
2561
+ "Import complete - imported <strong>%s</strong> staff and skipped "
2562
+ "<strong>%s</strong>."
2563
+ msgstr ""
2564
+
2565
+ #: includes/admin/importers/class-sp-staff-importer.php:165
2566
+ #, php-format
2567
+ msgid ""
2568
+ "Staff need to be defined with columns in a specific order (6 columns). <a "
2569
+ "href=\"%s\">Click here to download a sample</a>."
2570
+ msgstr ""
2571
+
2572
+ #: includes/admin/importers/class-sp-team-importer.php:24
2573
+ msgid "Import Teams"
2574
+ msgstr ""
2575
+
2576
+ #: includes/admin/importers/class-sp-team-importer.php:29
2577
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:95
2578
+ #: includes/admin/views/html-admin-page-status.php:24
2579
+ msgid "Site URL"
2580
+ msgstr ""
2581
+
2582
+ #: includes/admin/importers/class-sp-team-importer.php:30
2583
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:45
2584
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:66
2585
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-outcome-details.php:33
2586
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:101
2587
+ #: includes/admin/views/html-admin-config.php:28
2588
+ msgid "Abbreviation"
2589
+ msgstr ""
2590
+
2591
+ #: includes/admin/importers/class-sp-team-importer.php:31
2592
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:57
2593
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:80
2594
+ #: templates/event-list.php:61
2595
+ msgid "Home"
2596
+ msgstr ""
2597
+
2598
+ #: includes/admin/importers/class-sp-team-importer.php:92
2599
+ #, php-format
2600
+ msgid ""
2601
+ "Import complete - imported <strong>%s</strong> teams and skipped "
2602
+ "<strong>%s</strong>."
2603
+ msgstr ""
2604
+
2605
+ #: includes/admin/importers/class-sp-team-importer.php:102
2606
+ msgid "View Teams"
2607
+ msgstr ""
2608
+
2609
+ #: includes/admin/importers/class-sp-team-importer.php:116
2610
+ #, php-format
2611
+ msgid ""
2612
+ "Teams need to be defined with columns in a specific order (3 columns). <a "
2613
+ "href=\"%s\">Click here to download a sample</a>."
2614
+ msgstr ""
2615
+
2616
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:48
2617
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:48
2618
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:48
2619
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:55
2620
+ msgid "Title"
2621
+ msgstr ""
2622
+
2623
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:54
2624
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:53
2625
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:134
2626
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:166
2627
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:67
2628
+ msgid "Layout"
2629
+ msgstr ""
2630
+
2631
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:115
2632
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:194
2633
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:103
2634
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:150
2635
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:134
2636
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:85
2637
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:111
2638
+ msgid "Show all leagues"
2639
+ msgstr ""
2640
+
2641
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:124
2642
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:203
2643
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:112
2644
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:159
2645
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:143
2646
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:94
2647
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:120
2648
+ msgid "Show all seasons"
2649
+ msgstr ""
2650
+
2651
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:135
2652
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:186
2653
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:123
2654
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:142
2655
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:126
2656
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:105
2657
+ msgid "Show all teams"
2658
+ msgstr ""
2659
+
2660
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:43
2661
+ #: includes/admin/post-types/class-sp-admin-cpt-metric.php:43
2662
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:43
2663
+ #: includes/admin/post-types/class-sp-admin-cpt-performance.php:43
2664
+ #: includes/admin/post-types/class-sp-admin-cpt-result.php:43
2665
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:43
2666
+ #: includes/admin/views/html-admin-config.php:26
2667
+ #: includes/admin/views/html-admin-config.php:85
2668
+ #: includes/admin/views/html-admin-config.php:155
2669
+ #: includes/admin/views/html-admin-config.php:207
2670
+ #: includes/admin/views/html-admin-config.php:265
2671
+ #: includes/admin/views/html-admin-config.php:316
2672
+ msgid "Label"
2673
+ msgstr ""
2674
+
2675
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:45
2676
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:45
2677
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:108
2678
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:118
2679
+ #: includes/admin/views/html-admin-config.php:209
2680
+ #: includes/admin/views/html-admin-config.php:318
2681
+ msgid "Equation"
2682
+ msgstr ""
2683
+
2684
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:46
2685
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:46
2686
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:39
2687
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-statistic-details.php:36
2688
+ #: includes/admin/views/html-admin-config.php:210
2689
+ #: includes/admin/views/html-admin-config.php:319
2690
+ msgid "Rounding"
2691
+ msgstr ""
2692
+
2693
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:47
2694
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:113
2695
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:43
2696
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:98
2697
+ #: includes/admin/views/html-admin-config.php:211
2698
+ msgid "Sort Order"
2699
+ msgstr ""
2700
+
2701
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:131
2702
+ msgid "Show all positions"
2703
+ msgstr ""
2704
+
2705
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:65
2706
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:31
2707
+ msgid "URL"
2708
+ msgstr ""
2709
+
2710
+ #: includes/admin/post-types/class-sp-admin-cpt.php:42
2711
+ #, php-format
2712
+ msgid "Insert into %s"
2713
+ msgstr ""
2714
+
2715
+ #: includes/admin/post-types/class-sp-admin-cpt.php:43
2716
+ #, php-format
2717
+ msgid "Uploaded to this %s"
2718
+ msgstr ""
2719
+
2720
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:121
2721
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:155
2722
+ msgid "Shortcodes"
2723
+ msgstr ""
2724
+
2725
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:125
2726
+ msgid "Video"
2727
+ msgstr ""
2728
+
2729
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:146
2730
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:162
2731
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:174
2732
+ msgid "Profile"
2733
+ msgstr ""
2734
+
2735
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:156
2736
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:167
2737
+ msgid "Columns"
2738
+ msgstr ""
2739
+
2740
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:158
2741
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:26
2742
+ msgid "Metrics"
2743
+ msgstr ""
2744
+
2745
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:57
2746
+ #: templates/event-list.php:62
2747
+ msgid "Away"
2748
+ msgstr ""
2749
+
2750
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:189
2751
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:122
2752
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:170
2753
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
2754
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
2755
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
2756
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
2757
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
2758
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
2759
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:62
2760
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:72
2761
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:90
2762
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:105
2763
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:120
2764
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:135
2765
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:106
2766
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:150
2767
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:57
2768
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:72
2769
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:87
2770
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
2771
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:106
2772
+ #, php-format
2773
+ msgid "Select %s"
2774
+ msgstr ""
2775
+
2776
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:31
2777
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:86
2778
+ msgid "Status"
2779
+ msgstr ""
2780
+
2781
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-shortcode.php:26
2782
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:24
2783
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-shortcode.php:26
2784
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:24
2785
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-shortcode.php:24
2786
+ msgid ""
2787
+ "Copy this code and paste it into your post, page or text widget content."
2788
+ msgstr ""
2789
+
2790
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2791
+ msgid "Attended"
2792
+ msgstr ""
2793
+
2794
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2795
+ msgid "Started"
2796
+ msgstr ""
2797
+
2798
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2799
+ msgid "Substituted"
2800
+ msgstr ""
2801
+
2802
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2803
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
2804
+ msgid "Minutes"
2805
+ msgstr ""
2806
+
2807
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
2808
+ msgid "for"
2809
+ msgstr ""
2810
+
2811
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
2812
+ msgid "against"
2813
+ msgstr ""
2814
+
2815
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:43
2816
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:44
2817
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:45
2818
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:46
2819
+ msgid "Outcomes"
2820
+ msgstr ""
2821
+
2822
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:44
2823
+ msgid "Streak"
2824
+ msgstr ""
2825
+
2826
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:45
2827
+ msgid "Last 5"
2828
+ msgstr ""
2829
+
2830
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:46
2831
+ msgid "Last 10"
2832
+ msgstr ""
2833
+
2834
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:58
2835
+ msgid "Operators"
2836
+ msgstr ""
2837
+
2838
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:71
2839
+ msgid "Constants"
2840
+ msgstr ""
2841
+
2842
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:28
2843
+ #: includes/admin/settings/class-sp-settings-events.php:131
2844
+ msgid "Full Time"
2845
+ msgstr ""
2846
+
2847
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:163
2848
+ msgid "Starting Lineup"
2849
+ msgstr ""
2850
+
2851
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:164
2852
+ msgid "Substitute"
2853
+ msgstr ""
2854
+
2855
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:62
2856
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:93
2857
+ msgid "&mdash; None &mdash;"
2858
+ msgstr ""
2859
+
2860
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:27
2861
+ msgid "Remove video"
2862
+ msgstr ""
2863
+
2864
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:36
2865
+ msgid "Add video"
2866
+ msgstr ""
2867
+
2868
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:43
2869
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:49
2870
+ #: includes/admin/settings/class-sp-settings-events.php:107
2871
+ msgid "Values"
2872
+ msgstr ""
2873
+
2874
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:44
2875
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:50
2876
+ msgid "Adjustments"
2877
+ msgstr ""
2878
+
2879
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:84
2880
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:84
2881
+ #: includes/admin/views/html-admin-config.php:39
2882
+ #: includes/admin/views/html-admin-config.php:113
2883
+ #: includes/admin/views/html-admin-config.php:167
2884
+ #: includes/admin/views/html-admin-config.php:224
2885
+ #: includes/admin/views/html-admin-config.php:276
2886
+ #: includes/admin/views/html-admin-config.php:331
2887
+ msgid "Edit"
2888
+ msgstr ""
2889
+
2890
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:89
2891
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:89
2892
+ msgid "Save"
2893
+ msgstr ""
2894
+
2895
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:75
2896
+ msgid "Grouping"
2897
+ msgstr ""
2898
+
2899
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:82
2900
+ msgid "Sort by"
2901
+ msgstr ""
2902
+
2903
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:86
2904
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:83
2905
+ msgid "Current Teams"
2906
+ msgstr ""
2907
+
2908
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:56
2909
+ msgid "Highlight"
2910
+ msgstr ""
2911
+
2912
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:103
2913
+ msgid ""
2914
+ "The abbreviation is not prominent by default; however, some themes may show "
2915
+ "it"
2916
+ msgstr ""
2917
+
2918
+ #: includes/admin/settings/class-sp-settings-events.php:42
2919
+ msgid "Event Options"
2920
+ msgstr ""
2921
+
2922
+ #: includes/admin/settings/class-sp-settings-events.php:45
2923
+ #: includes/admin/settings/class-sp-settings-general.php:285
2924
+ #: includes/admin/settings/class-sp-settings-players.php:42
2925
+ #: includes/admin/settings/class-sp-settings-staff.php:44
2926
+ #: includes/admin/settings/class-sp-settings-teams.php:44
2927
+ msgid "Link"
2928
+ msgstr ""
2929
+
2930
+ #: includes/admin/settings/class-sp-settings-events.php:46
2931
+ msgid "Link events"
2932
+ msgstr ""
2933
+
2934
+ #: includes/admin/settings/class-sp-settings-events.php:54
2935
+ msgid "Link venues"
2936
+ msgstr ""
2937
+
2938
+ #: includes/admin/settings/class-sp-settings-events.php:62
2939
+ #: includes/admin/settings/class-sp-settings-events.php:156
2940
+ #: includes/admin/settings/class-sp-settings-events.php:198
2941
+ #: includes/admin/settings/class-sp-settings-players.php:78
2942
+ #: includes/admin/settings/class-sp-settings-teams.php:72
2943
+ msgid "Limit"
2944
+ msgstr ""
2945
+
2946
+ #: includes/admin/settings/class-sp-settings-events.php:66
2947
+ #: includes/admin/settings/class-sp-settings-teams.php:76
2948
+ msgid "teams"
2949
+ msgstr ""
2950
+
2951
+ #: includes/admin/settings/class-sp-settings-events.php:86
2952
+ msgid "Display players"
2953
+ msgstr ""
2954
+
2955
+ #: includes/admin/settings/class-sp-settings-events.php:94
2956
+ msgid "Display total"
2957
+ msgstr ""
2958
+
2959
+ #: includes/admin/settings/class-sp-settings-events.php:108
2960
+ msgid "Icons"
2961
+ msgstr ""
2962
+
2963
+ #: includes/admin/settings/class-sp-settings-events.php:114
2964
+ msgid "Display maps"
2965
+ msgstr ""
2966
+
2967
+ #: includes/admin/settings/class-sp-settings-events.php:123
2968
+ msgid "Display staff"
2969
+ msgstr ""
2970
+
2971
+ #: includes/admin/settings/class-sp-settings-events.php:145
2972
+ #: includes/widgets/class-sp-widget-event-list.php:6
2973
+ msgid "Event List"
2974
+ msgstr ""
2975
+
2976
+ #: includes/admin/settings/class-sp-settings-events.php:148
2977
+ #: includes/admin/settings/class-sp-settings-events.php:190
2978
+ #: includes/admin/settings/class-sp-settings-players.php:70
2979
+ #: includes/admin/settings/class-sp-settings-teams.php:64
2980
+ msgid "Pagination"
2981
+ msgstr ""
2982
+
2983
+ #: includes/admin/settings/class-sp-settings-events.php:149
2984
+ #: includes/admin/settings/class-sp-settings-events.php:191
2985
+ #: includes/admin/settings/class-sp-settings-players.php:71
2986
+ #: includes/admin/settings/class-sp-settings-teams.php:65
2987
+ msgid "Paginate"
2988
+ msgstr ""
2989
+
2990
+ #: includes/admin/settings/class-sp-settings-events.php:160
2991
+ #: includes/admin/settings/class-sp-settings-events.php:202
2992
+ msgid "events"
2993
+ msgstr ""
2994
+
2995
+ #: includes/admin/settings/class-sp-settings-events.php:170
2996
+ #: includes/widgets/class-sp-widget-event-blocks.php:6
2997
+ msgid "Event Blocks"
2998
+ msgstr ""
2999
+
3000
+ #: includes/admin/settings/class-sp-settings-events.php:182
3001
+ msgid "Display season"
3002
+ msgstr ""
3003
+
3004
+ #: includes/admin/settings/class-sp-settings-events.php:240
3005
+ #: includes/admin/settings/class-sp-settings-events.php:244
3006
+ msgid "Delimiter"
3007
+ msgstr ""
3008
+
3009
+ #: includes/admin/settings/class-sp-settings-events.php:249
3010
+ msgid "Custom:"
3011
+ msgstr ""
3012
+
3013
+ #: includes/admin/settings/class-sp-settings-general.php:25
3014
+ msgid "General"
3015
+ msgstr ""
3016
+
3017
+ #: includes/admin/settings/class-sp-settings-general.php:44
3018
+ msgid "General Options"
3019
+ msgstr ""
3020
+
3021
+ #: includes/admin/settings/class-sp-settings-general.php:57
3022
+ msgid "Google Maps"
3023
+ msgstr ""
3024
+
3025
+ #: includes/admin/settings/class-sp-settings-general.php:63
3026
+ msgid "Satellite"
3027
+ msgstr ""
3028
+
3029
+ #: includes/admin/settings/class-sp-settings-general.php:64
3030
+ msgid "Hybrid"
3031
+ msgstr ""
3032
+
3033
+ #: includes/admin/settings/class-sp-settings-general.php:65
3034
+ msgid "Terrain"
3035
+ msgstr ""
3036
+
3037
+ #: includes/admin/settings/class-sp-settings-general.php:71
3038
+ msgid "Styles and Scripts"
3039
+ msgstr ""
3040
+
3041
+ #: includes/admin/settings/class-sp-settings-general.php:79
3042
+ msgid "Align"
3043
+ msgstr ""
3044
+
3045
+ #: includes/admin/settings/class-sp-settings-general.php:85
3046
+ msgid "Left"
3047
+ msgstr ""
3048
+
3049
+ #: includes/admin/settings/class-sp-settings-general.php:86
3050
+ msgid "Center"
3051
+ msgstr ""
3052
+
3053
+ #: includes/admin/settings/class-sp-settings-general.php:87
3054
+ msgid "Right"
3055
+ msgstr ""
3056
+
3057
+ #: includes/admin/settings/class-sp-settings-general.php:92
3058
+ msgid "Padding"
3059
+ msgstr ""
3060
+
3061
+ #: includes/admin/settings/class-sp-settings-general.php:108
3062
+ msgid "Custom CSS"
3063
+ msgstr ""
3064
+
3065
+ #: includes/admin/settings/class-sp-settings-general.php:115
3066
+ msgid "Scripts"
3067
+ msgstr ""
3068
+
3069
+ #: includes/admin/settings/class-sp-settings-general.php:116
3070
+ msgid "Live countdowns"
3071
+ msgstr ""
3072
+
3073
+ #: includes/admin/settings/class-sp-settings-general.php:121
3074
+ msgid "This will enable a script allowing the countdowns to be animated."
3075
+ msgstr ""
3076
+
3077
+ #: includes/admin/settings/class-sp-settings-general.php:125
3078
+ msgid "Shortcode menu"
3079
+ msgstr ""
3080
+
3081
+ #: includes/admin/settings/class-sp-settings-general.php:130
3082
+ msgid ""
3083
+ "This will enable a shortcode menu to be displayed in the visual editor."
3084
+ msgstr ""
3085
+
3086
+ #: includes/admin/settings/class-sp-settings-general.php:134
3087
+ msgid "Tables"
3088
+ msgstr ""
3089
+
3090
+ #: includes/admin/settings/class-sp-settings-general.php:135
3091
+ msgid "Responsive"
3092
+ msgstr ""
3093
+
3094
+ #: includes/admin/settings/class-sp-settings-general.php:143
3095
+ msgid "Sortable"
3096
+ msgstr ""
3097
+
3098
+ #: includes/admin/settings/class-sp-settings-general.php:151
3099
+ msgid "Scrollable"
3100
+ msgstr ""
3101
+
3102
+ #: includes/admin/settings/class-sp-settings-general.php:159
3103
+ msgid "Header Offset"
3104
+ msgstr ""
3105
+
3106
+ #: includes/admin/settings/class-sp-settings-general.php:266
3107
+ msgid "Frontend Styles"
3108
+ msgstr ""
3109
+
3110
+ #: includes/admin/settings/class-sp-settings-general.php:281
3111
+ #: includes/admin/views/html-admin-config.php:84
3112
+ msgid "Primary"
3113
+ msgstr ""
3114
+
3115
+ #: includes/admin/settings/class-sp-settings-general.php:282
3116
+ msgid "Background"
3117
+ msgstr ""
3118
+
3119
+ #: includes/admin/settings/class-sp-settings-general.php:283
3120
+ #: includes/admin/settings/class-sp-settings-text.php:25
3121
+ #: includes/admin/settings/class-sp-settings-text.php:41
3122
+ msgid "Text"
3123
+ msgstr ""
3124
+
3125
+ #: includes/admin/settings/class-sp-settings-general.php:284
3126
+ msgid "Heading"
3127
+ msgstr ""
3128
+
3129
+ #: includes/admin/settings/class-sp-settings-general.php:291
3130
+ msgid "Enable"
3131
+ msgstr ""
3132
+
3133
+ #: includes/admin/settings/class-sp-settings-players.php:39
3134
+ msgid "Player Options"
3135
+ msgstr ""
3136
+
3137
+ #: includes/admin/settings/class-sp-settings-players.php:43
3138
+ msgid "Link players"
3139
+ msgstr ""
3140
+
3141
+ #: includes/admin/settings/class-sp-settings-players.php:51
3142
+ #: includes/admin/settings/class-sp-settings-staff.php:53
3143
+ msgid "Display national flags"
3144
+ msgstr ""
3145
+
3146
+ #: includes/admin/settings/class-sp-settings-players.php:63
3147
+ msgid "Display photos"
3148
+ msgstr ""
3149
+
3150
+ #: includes/admin/settings/class-sp-settings-players.php:82
3151
+ msgid "players"
3152
+ msgstr ""
3153
+
3154
+ #: includes/admin/settings/class-sp-settings-staff.php:41
3155
+ msgid "Staff Options"
3156
+ msgstr ""
3157
+
3158
+ #: includes/admin/settings/class-sp-settings-staff.php:45
3159
+ msgid "Link staff"
3160
+ msgstr ""
3161
+
3162
+ #: includes/admin/settings/class-sp-settings-teams.php:41
3163
+ msgid "Team Options"
3164
+ msgstr ""
3165
+
3166
+ #: includes/admin/settings/class-sp-settings-teams.php:45
3167
+ msgid "Link teams"
3168
+ msgstr ""
3169
+
3170
+ #: includes/admin/settings/class-sp-settings-text.php:41
3171
+ msgid "The following options affect how words are displayed on the frontend."
3172
+ msgstr ""
3173
+
3174
+ #: includes/admin/views/html-admin-config.php:20
3175
+ #: includes/admin/views/html-admin-config.php:75
3176
+ #: includes/admin/views/html-admin-config.php:148
3177
+ msgid "Used for events."
3178
+ msgstr ""
3179
+
3180
+ #: includes/admin/views/html-admin-config.php:86
3181
+ msgid "Variables"
3182
+ msgstr ""
3183
+
3184
+ #: includes/admin/views/html-admin-config.php:99
3185
+ #, php-format
3186
+ msgid "Default (%s)"
3187
+ msgstr ""
3188
+
3189
+ #: includes/admin/views/html-admin-config.php:201
3190
+ msgid "Used for league tables."
3191
+ msgstr ""
3192
+
3193
+ #: includes/admin/views/html-admin-config.php:259
3194
+ #: includes/admin/views/html-admin-config.php:310
3195
+ msgid "Used for player lists."
3196
+ msgstr ""
3197
+
3198
+ #: includes/admin/views/html-admin-config.php:353
3199
+ #: includes/admin/views/html-admin-overview.php:333
3200
+ #: includes/admin/views/html-admin-settings.php:22
3201
+ msgid ""
3202
+ "Love SportsPress? Help spread the word by rating us 5★ on WordPress.org"
3203
+ msgstr ""
3204
+
3205
+ #: includes/admin/views/html-admin-page-status.php:5
3206
+ msgid "Please include this information when requesting support:"
3207
+ msgstr ""
3208
+
3209
+ #: includes/admin/views/html-admin-page-status.php:6
3210
+ msgid "Get System Report"
3211
+ msgstr ""
3212
+
3213
+ #: includes/admin/views/html-admin-page-status.php:14
3214
+ msgid "Environment"
3215
+ msgstr ""
3216
+
3217
+ #: includes/admin/views/html-admin-page-status.php:20
3218
+ msgid "Home URL"
3219
+ msgstr ""
3220
+
3221
+ #: includes/admin/views/html-admin-page-status.php:28
3222
+ msgid "SP Version"
3223
+ msgstr ""
3224
+
3225
+ #: includes/admin/views/html-admin-page-status.php:32
3226
+ msgid "WP Version"
3227
+ msgstr ""
3228
+
3229
+ #: includes/admin/views/html-admin-page-status.php:36
3230
+ msgid "WP Multisite Enabled"
3231
+ msgstr ""
3232
+
3233
+ #: includes/admin/views/html-admin-page-status.php:37
3234
+ #: includes/admin/views/html-admin-page-status.php:61
3235
+ #: includes/admin/views/html-admin-page-status.php:86
3236
+ msgid "Yes"
3237
+ msgstr ""
3238
+
3239
+ #: includes/admin/views/html-admin-page-status.php:37
3240
+ #: includes/admin/views/html-admin-page-status.php:61
3241
+ #: includes/admin/views/html-admin-page-status.php:86
3242
+ msgid "No"
3243
+ msgstr ""
3244
+
3245
+ #: includes/admin/views/html-admin-page-status.php:40
3246
+ msgid "Web Server Info"
3247
+ msgstr ""
3248
+
3249
+ #: includes/admin/views/html-admin-page-status.php:44
3250
+ msgid "PHP Version"
3251
+ msgstr ""
3252
+
3253
+ #: includes/admin/views/html-admin-page-status.php:48
3254
+ msgid "WP Memory Limit"
3255
+ msgstr ""
3256
+
3257
+ #: includes/admin/views/html-admin-page-status.php:53
3258
+ #, php-format
3259
+ msgid ""
3260
+ "%s - We recommend setting memory to at least 64MB. See: <a "
3261
+ "href=\"%s\">Increasing memory allocated to PHP</a>"
3262
+ msgstr ""
3263
+
3264
+ #: includes/admin/views/html-admin-page-status.php:60
3265
+ msgid "WP Debug Mode"
3266
+ msgstr ""
3267
+
3268
+ #: includes/admin/views/html-admin-page-status.php:64
3269
+ msgid "WP Language"
3270
+ msgstr ""
3271
+
3272
+ #: includes/admin/views/html-admin-page-status.php:68
3273
+ msgid "WP Max Upload Size"
3274
+ msgstr ""
3275
+
3276
+ #: includes/admin/views/html-admin-page-status.php:73
3277
+ msgid "PHP Post Max Size"
3278
+ msgstr ""
3279
+
3280
+ #: includes/admin/views/html-admin-page-status.php:77
3281
+ msgid "PHP Time Limit"
3282
+ msgstr ""
3283
+
3284
+ #: includes/admin/views/html-admin-page-status.php:81
3285
+ msgid "PHP Max Input Vars"
3286
+ msgstr ""
3287
+
3288
+ #: includes/admin/views/html-admin-page-status.php:85
3289
+ msgid "SUHOSIN Installed"
3290
+ msgstr ""
3291
+
3292
+ #: includes/admin/views/html-admin-page-status.php:90
3293
+ msgid "Default Timezone"
3294
+ msgstr ""
3295
+
3296
+ #: includes/admin/views/html-admin-page-status.php:94
3297
+ #, php-format
3298
+ msgid "Default timezone is %s - it should be UTC"
3299
+ msgstr ""
3300
+
3301
+ #: includes/admin/views/html-admin-page-status.php:96
3302
+ #, php-format
3303
+ msgid "Default timezone is %s"
3304
+ msgstr ""
3305
+
3306
+ #: includes/admin/views/html-admin-page-status.php:104
3307
+ msgid "fsockopen/cURL"
3308
+ msgstr ""
3309
+
3310
+ #: includes/admin/views/html-admin-page-status.php:107
3311
+ msgid "Your server has fsockopen and cURL enabled."
3312
+ msgstr ""
3313
+
3314
+ #: includes/admin/views/html-admin-page-status.php:109
3315
+ msgid "Your server has fsockopen enabled, cURL is disabled."
3316
+ msgstr ""
3317
+
3318
+ #: includes/admin/views/html-admin-page-status.php:111
3319
+ msgid "Your server has cURL enabled, fsockopen is disabled."
3320
+ msgstr ""
3321
+
3322
+ #: includes/admin/views/html-admin-page-status.php:115
3323
+ msgid ""
3324
+ "Your server does not have fsockopen or cURL enabled - PayPal IPN and other "
3325
+ "scripts which communicate with other servers will not work. Contact your "
3326
+ "hosting provider."
3327
+ msgstr ""
3328
+
3329
+ #: includes/admin/views/html-admin-page-status.php:120
3330
+ msgid "SOAP Client"
3331
+ msgstr ""
3332
+
3333
+ #: includes/admin/views/html-admin-page-status.php:122
3334
+ msgid "Your server has the SOAP Client class enabled."
3335
+ msgstr ""
3336
+
3337
+ #: includes/admin/views/html-admin-page-status.php:125
3338
+ #, php-format
3339
+ msgid ""
3340
+ "Your server does not have the <a href=\"%s\">SOAP Client</a> class enabled -"
3341
+ " some gateway plugins which use SOAP may not work as expected."
3342
+ msgstr ""
3343
+
3344
+ #: includes/admin/views/html-admin-page-status.php:148
3345
+ msgid "Plugins"
3346
+ msgstr ""
3347
+
3348
+ #: includes/admin/views/html-admin-page-status.php:154
3349
+ msgid "Installed Plugins"
3350
+ msgstr ""
3351
+
3352
+ #: includes/admin/views/html-admin-page-status.php:174
3353
+ msgid "Visit plugin homepage"
3354
+ msgstr ""
3355
+
3356
+ #: includes/admin/views/html-admin-page-status.php:198
3357
+ #: includes/admin/views/html-admin-page-status.php:413
3358
+ msgid "is available"
3359
+ msgstr ""
3360
+
3361
+ #: includes/admin/views/html-admin-page-status.php:201
3362
+ msgid "by"
3363
+ msgstr ""
3364
+
3365
+ #: includes/admin/views/html-admin-page-status.php:201
3366
+ msgid "version"
3367
+ msgstr ""
3368
+
3369
+ #: includes/admin/views/html-admin-page-status.php:217
3370
+ msgid "SP Configuration"
3371
+ msgstr ""
3372
+
3373
+ #: includes/admin/views/html-admin-page-status.php:290
3374
+ msgid "SP Taxonomies"
3375
+ msgstr ""
3376
+
3377
+ #: includes/admin/views/html-admin-page-status.php:339
3378
+ msgid "SP Post Types"
3379
+ msgstr ""
3380
+
3381
+ #: includes/admin/views/html-admin-page-status.php:365
3382
+ msgid "Theme"
3383
+ msgstr ""
3384
+
3385
+ #: includes/admin/views/html-admin-page-status.php:402
3386
+ msgid "Theme Name"
3387
+ msgstr ""
3388
+
3389
+ #: includes/admin/views/html-admin-page-status.php:408
3390
+ msgid "Theme Version"
3391
+ msgstr ""
3392
+
3393
+ #: includes/admin/views/html-admin-page-status.php:417
3394
+ msgid "Author URL"
3395
+ msgstr ""
3396
+
3397
+ #: includes/admin/views/html-admin-page-status.php:426
3398
+ msgid "Templates"
3399
+ msgstr ""
3400
+
3401
+ #: includes/admin/views/html-admin-page-status.php:459
3402
+ #, php-format
3403
+ msgid ""
3404
+ "<code>%s</code> version <strong style=\"color:red\">%s</strong> is out of "
3405
+ "date. The core version is %s"
3406
+ msgstr ""
3407
+
3408
+ #: includes/admin/views/html-admin-page-status.php:470
3409
+ #: includes/admin/views/html-admin-page-status.php:476
3410
+ msgid "Template Overrides"
3411
+ msgstr ""
3412
+
3413
+ #: includes/admin/views/html-admin-page-status.php:477
3414
+ msgid "No overrides present in theme."
3415
+ msgstr ""
3416
+
3417
+ #: includes/admin/views/html-notice-install.php:5
3418
+ #, php-format
3419
+ msgid "Welcome to SportsPress %s"
3420
+ msgstr ""
3421
+
3422
+ #: includes/admin/views/html-notice-install.php:8
3423
+ #: includes/admin/views/html-notice-template-check.php:6
3424
+ #: includes/admin/views/html-notice-theme-support.php:8
3425
+ msgid "Hide this notice"
3426
+ msgstr ""
3427
+
3428
+ #: includes/admin/views/html-notice-template-check.php:5
3429
+ msgid ""
3430
+ "<strong>Your theme has bundled outdated copies of SportsPress template "
3431
+ "files</strong> &#8211; if you encounter functionality issues on the frontend"
3432
+ " this could the reason. Ensure you update or remove them (in general we "
3433
+ "recommend only bundling the template files you actually need to customize). "
3434
+ "See the system report for full details."
3435
+ msgstr ""
3436
+
3437
+ #: includes/admin/views/html-notice-theme-support.php:5
3438
+ msgid ""
3439
+ "<strong>Your theme does not declare SportsPress support</strong> &#8211; if "
3440
+ "you encounter layout issues please read our integration guide or choose a "
3441
+ "SportsPress theme :)"
3442
+ msgstr ""
3443
+
3444
+ #: includes/admin/views/html-notice-theme-support.php:7
3445
+ msgid "Theme Integration Guide"
3446
+ msgstr ""
3447
+
3448
+ #: includes/widgets/class-sp-widget-countdown.php:5
3449
+ msgid "A clock that counts down to an upcoming event."
3450
+ msgstr ""
3451
+
3452
+ #: includes/widgets/class-sp-widget-countdown.php:42
3453
+ #: includes/widgets/class-sp-widget-event-blocks.php:48
3454
+ #: includes/widgets/class-sp-widget-event-calendar.php:41
3455
+ #: includes/widgets/class-sp-widget-event-list.php:51
3456
+ #: includes/widgets/class-sp-widget-league-table.php:47
3457
+ #: includes/widgets/class-sp-widget-player-gallery.php:50
3458
+ #: includes/widgets/class-sp-widget-player-list.php:50
3459
+ msgid "Title:"
3460
+ msgstr ""
3461
+
3462
+ #: includes/widgets/class-sp-widget-event-blocks.php:5
3463
+ #: includes/widgets/class-sp-widget-event-list.php:5
3464
+ msgid "A list of events."
3465
+ msgstr ""
3466
+
3467
+ #: includes/widgets/class-sp-widget-event-calendar.php:5
3468
+ msgid "A calendar of events."
3469
+ msgstr ""
3470
+
3471
+ #: includes/widgets/class-sp-widget-event-calendar.php:6
3472
+ msgid "Event Calendar"
3473
+ msgstr ""
3474
+
3475
+ #: includes/widgets/class-sp-widget-league-table.php:5
3476
+ msgid "Display a league table."
3477
+ msgstr ""
3478
+
3479
+ #: includes/widgets/class-sp-widget-player-gallery.php:5
3480
+ msgid "Display a gallery of players."
3481
+ msgstr ""
3482
+
3483
+ #: includes/widgets/class-sp-widget-player-gallery.php:6
3484
+ msgid "Player Gallery"
3485
+ msgstr ""
3486
+
3487
+ #: includes/widgets/class-sp-widget-player-list.php:5
3488
+ msgid "Display a list of players."
3489
+ msgstr ""
3490
+
3491
+ #: includes/widgets/class-sp-widget-player-list.php:73
3492
+ msgid "Performance:"
3493
+ msgstr ""
3494
+
3495
+ #. translators: Calendar caption: 1: month name, 2: 4-digit year
3496
+ #: templates/event-calendar.php:88 templates/event-calendar.php:116
3497
+ #: templates/event-calendar.php:124
3498
+ #, php-format
3499
+ msgctxt "calendar caption"
3500
+ msgid "%1$s %2$s"
3501
+ msgstr ""
languages/sportspress-be_BY.mo ADDED
Binary file
languages/sportspress-be_BY.po ADDED
@@ -0,0 +1,3501 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: SportsPress\n"
6
+ "POT-Creation-Date: 2014-08-26 02:27+1000\n"
7
+ "PO-Revision-Date: 2014-08-25 16:28+0000\n"
8
+ "Last-Translator: ThemeBoy <support@themeboy.com>\n"
9
+ "Language-Team: Belarusian (Belarus) (http://www.transifex.com/projects/p/sportspress/language/be_BY/)\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Language: be_BY\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Generator: Poedit 1.6.3\n"
16
+ "X-Poedit-Basepath: ..\n"
17
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SourceCharset: UTF-8\n"
20
+
21
+ #: sportspress.php:82 sportspress.php:91
22
+ msgid "Cheatin&#8217; huh?"
23
+ msgstr ""
24
+
25
+ #: sportspress.php:132 includes/admin/class-sp-admin-menus.php:113
26
+ msgid "Settings"
27
+ msgstr "Налады"
28
+
29
+ #: sportspress.php:133
30
+ msgid "Docs"
31
+ msgstr ""
32
+
33
+ #: sportspress.php:134
34
+ msgid "Upgrade"
35
+ msgstr ""
36
+
37
+ #: assets/js/admin/editor-lang.php:5
38
+ msgid "SportsPress Shortcodes"
39
+ msgstr ""
40
+
41
+ #: assets/js/admin/editor-lang.php:6
42
+ #: includes/admin/settings/class-sp-settings-general.php:96
43
+ #: includes/admin/settings/class-sp-settings-general.php:163
44
+ msgid "Auto"
45
+ msgstr ""
46
+
47
+ #: assets/js/admin/editor-lang.php:7
48
+ msgid "Manual"
49
+ msgstr ""
50
+
51
+ #: assets/js/admin/editor-lang.php:8
52
+ msgid "Select..."
53
+ msgstr ""
54
+
55
+ #: assets/js/admin/editor-lang.php:9 includes/class-sp-ajax.php:57
56
+ #: includes/class-sp-ajax.php:101 includes/class-sp-ajax.php:130
57
+ #: includes/class-sp-ajax.php:159 includes/class-sp-ajax.php:290
58
+ #: includes/class-sp-post-types.php:371 includes/sp-core-functions.php:1086
59
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:99
60
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:225
61
+ #: includes/widgets/class-sp-widget-countdown.php:62
62
+ #: includes/widgets/class-sp-widget-event-list.php:111
63
+ #: templates/event-list.php:66
64
+ msgid "Event"
65
+ msgstr ""
66
+
67
+ #: assets/js/admin/editor-lang.php:10 includes/sp-core-functions.php:1085
68
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:101
69
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:104
70
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:107
71
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:111
72
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:114
73
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:117
74
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:123
75
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:135
76
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:140
77
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:150
78
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:157
79
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:168
80
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:173
81
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:189
82
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:31
83
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:27
84
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
85
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:106
86
+ #: includes/admin/settings/class-sp-settings-events.php:173
87
+ #: templates/event-details.php:34
88
+ msgid "Details"
89
+ msgstr ""
90
+
91
+ #: assets/js/admin/editor-lang.php:11
92
+ #: includes/admin/importers/class-sp-event-importer.php:30
93
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
94
+ msgid "Results"
95
+ msgstr ""
96
+
97
+ #: assets/js/admin/editor-lang.php:12
98
+ #: includes/widgets/class-sp-widget-countdown.php:6
99
+ msgid "Countdown"
100
+ msgstr ""
101
+
102
+ #: assets/js/admin/editor-lang.php:13
103
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:49
104
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:25
105
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:25
106
+ msgid "Performance"
107
+ msgstr ""
108
+
109
+ #: assets/js/admin/editor-lang.php:14 includes/class-sp-ajax.php:188
110
+ #: includes/class-sp-ajax.php:236 includes/class-sp-ajax.php:327
111
+ #: includes/class-sp-formats.php:31 includes/class-sp-post-types.php:401
112
+ #: includes/widgets/class-sp-widget-event-blocks.php:51
113
+ #: includes/widgets/class-sp-widget-event-calendar.php:44
114
+ #: includes/widgets/class-sp-widget-event-list.php:54
115
+ msgid "Calendar"
116
+ msgstr ""
117
+
118
+ #: assets/js/admin/editor-lang.php:15
119
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:160
120
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:27
121
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:26
122
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:31
123
+ msgid "Statistics"
124
+ msgstr ""
125
+
126
+ #: assets/js/admin/editor-lang.php:16 includes/class-sp-ajax.php:401
127
+ #: includes/class-sp-post-types.php:462
128
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:151
129
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:55
130
+ #: includes/widgets/class-sp-widget-league-table.php:6
131
+ #: includes/widgets/class-sp-widget-league-table.php:50
132
+ msgid "League Table"
133
+ msgstr ""
134
+
135
+ #: assets/js/admin/editor-lang.php:17 includes/class-sp-ajax.php:525
136
+ #: includes/class-sp-ajax.php:615 includes/class-sp-post-types.php:523
137
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:169
138
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:55
139
+ #: includes/widgets/class-sp-widget-player-gallery.php:53
140
+ #: includes/widgets/class-sp-widget-player-list.php:6
141
+ #: includes/widgets/class-sp-widget-player-list.php:53
142
+ msgid "Player List"
143
+ msgstr ""
144
+
145
+ #: assets/js/admin/editor-lang.php:18 includes/class-sp-formats.php:32
146
+ #: includes/class-sp-formats.php:36
147
+ msgid "List"
148
+ msgstr ""
149
+
150
+ #: assets/js/admin/editor-lang.php:19 includes/class-sp-formats.php:33
151
+ msgid "Blocks"
152
+ msgstr ""
153
+
154
+ #: assets/js/admin/editor-lang.php:20 includes/class-sp-ajax.php:467
155
+ #: includes/class-sp-ajax.php:496 includes/class-sp-install.php:160
156
+ #: includes/class-sp-player-list.php:376 includes/class-sp-post-types.php:493
157
+ #: includes/sp-core-functions.php:1092
158
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:63
159
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:51
160
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:136
161
+ #: templates/event-performance.php:75
162
+ msgid "Player"
163
+ msgstr ""
164
+
165
+ #: assets/js/admin/editor-lang.php:21 includes/class-sp-formats.php:37
166
+ msgid "Gallery"
167
+ msgstr ""
168
+
169
+ #: includes/class-sp-ajax.php:57 includes/class-sp-ajax.php:101
170
+ #: includes/class-sp-ajax.php:130 includes/class-sp-ajax.php:159
171
+ #: includes/class-sp-ajax.php:188 includes/class-sp-ajax.php:236
172
+ #: includes/class-sp-ajax.php:327 includes/class-sp-ajax.php:401
173
+ #: includes/class-sp-ajax.php:467 includes/class-sp-ajax.php:496
174
+ #: includes/class-sp-ajax.php:525 includes/class-sp-ajax.php:615
175
+ #: includes/widgets/class-sp-widget-countdown.php:45
176
+ #: includes/widgets/class-sp-widget-countdown.php:62
177
+ #: includes/widgets/class-sp-widget-event-blocks.php:51
178
+ #: includes/widgets/class-sp-widget-event-calendar.php:44
179
+ #: includes/widgets/class-sp-widget-event-list.php:54
180
+ #: includes/widgets/class-sp-widget-league-table.php:50
181
+ #: includes/widgets/class-sp-widget-player-gallery.php:53
182
+ #: includes/widgets/class-sp-widget-player-list.php:53
183
+ #, php-format
184
+ msgid "Select %s:"
185
+ msgstr ""
186
+
187
+ #: includes/class-sp-ajax.php:63
188
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:55
189
+ #: includes/widgets/class-sp-widget-countdown.php:69
190
+ msgid "(Auto)"
191
+ msgstr ""
192
+
193
+ #: includes/class-sp-ajax.php:74
194
+ #: includes/widgets/class-sp-widget-countdown.php:83
195
+ msgid "Display venue"
196
+ msgstr ""
197
+
198
+ #: includes/class-sp-ajax.php:80
199
+ #: includes/admin/settings/class-sp-settings-events.php:174
200
+ #: includes/widgets/class-sp-widget-countdown.php:86
201
+ msgid "Display league"
202
+ msgstr ""
203
+
204
+ #: includes/class-sp-ajax.php:84 includes/class-sp-ajax.php:113
205
+ #: includes/class-sp-ajax.php:142 includes/class-sp-ajax.php:171
206
+ #: includes/class-sp-ajax.php:219 includes/class-sp-ajax.php:310
207
+ #: includes/class-sp-ajax.php:384 includes/class-sp-ajax.php:450
208
+ #: includes/class-sp-ajax.php:479 includes/class-sp-ajax.php:508
209
+ #: includes/class-sp-ajax.php:598 includes/class-sp-ajax.php:675
210
+ #, php-format
211
+ msgid "Insert %s"
212
+ msgstr ""
213
+
214
+ #: includes/class-sp-ajax.php:84 includes/class-sp-ajax.php:113
215
+ #: includes/class-sp-ajax.php:142 includes/class-sp-ajax.php:171
216
+ #: includes/class-sp-ajax.php:219 includes/class-sp-ajax.php:310
217
+ #: includes/class-sp-ajax.php:384 includes/class-sp-ajax.php:450
218
+ #: includes/class-sp-ajax.php:479 includes/class-sp-ajax.php:508
219
+ #: includes/class-sp-ajax.php:598 includes/class-sp-ajax.php:675
220
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:133
221
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:149
222
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:165
223
+ msgid "Shortcode"
224
+ msgstr ""
225
+
226
+ #: includes/class-sp-ajax.php:85 includes/class-sp-ajax.php:114
227
+ #: includes/class-sp-ajax.php:143 includes/class-sp-ajax.php:172
228
+ #: includes/class-sp-ajax.php:220 includes/class-sp-ajax.php:311
229
+ #: includes/class-sp-ajax.php:385 includes/class-sp-ajax.php:451
230
+ #: includes/class-sp-ajax.php:480 includes/class-sp-ajax.php:509
231
+ #: includes/class-sp-ajax.php:599 includes/class-sp-ajax.php:676
232
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:33
233
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:88
234
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:88
235
+ msgid "Cancel"
236
+ msgstr "Скасаваць"
237
+
238
+ #: includes/class-sp-ajax.php:194 includes/class-sp-ajax.php:264
239
+ #: includes/class-sp-ajax.php:355 includes/class-sp-post-types.php:37
240
+ #: includes/class-sp-post-types.php:66 includes/class-sp-post-types.php:95
241
+ #: includes/class-sp-post-types.php:124 includes/class-sp-post-types.php:153
242
+ #: includes/sp-core-functions.php:407 includes/sp-core-functions.php:438
243
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:57
244
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:72
245
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:87
246
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:102
247
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:36
248
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:49
249
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:36
250
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:51
251
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:66
252
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:33
253
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:48
254
+ #: includes/admin/views/html-admin-overview.php:79
255
+ #: includes/widgets/class-sp-widget-countdown.php:52
256
+ #: includes/widgets/class-sp-widget-event-blocks.php:55
257
+ #: includes/widgets/class-sp-widget-event-calendar.php:48
258
+ #: includes/widgets/class-sp-widget-event-list.php:58
259
+ msgid "All"
260
+ msgstr ""
261
+
262
+ #: includes/class-sp-ajax.php:202 includes/class-sp-ajax.php:249
263
+ #: includes/class-sp-ajax.php:340
264
+ #: includes/widgets/class-sp-widget-event-blocks.php:68
265
+ #: includes/widgets/class-sp-widget-event-calendar.php:61
266
+ #: includes/widgets/class-sp-widget-event-list.php:71
267
+ msgid "Status:"
268
+ msgstr ""
269
+
270
+ #: includes/class-sp-ajax.php:206 includes/class-sp-ajax.php:253
271
+ #: includes/class-sp-ajax.php:263 includes/class-sp-ajax.php:280
272
+ #: includes/class-sp-ajax.php:344 includes/class-sp-ajax.php:354
273
+ #: includes/class-sp-ajax.php:371 includes/class-sp-ajax.php:567
274
+ #: includes/class-sp-ajax.php:585 includes/class-sp-ajax.php:638
275
+ #: includes/class-sp-ajax.php:656
276
+ #: includes/admin/settings/class-sp-settings-general.php:62
277
+ #: includes/admin/settings/class-sp-settings-general.php:84
278
+ #: includes/admin/views/html-admin-config.php:101
279
+ #: includes/admin/views/html-admin-page-status.php:65
280
+ #: includes/widgets/class-sp-widget-event-blocks.php:71
281
+ #: includes/widgets/class-sp-widget-event-blocks.php:84
282
+ #: includes/widgets/class-sp-widget-event-blocks.php:99
283
+ #: includes/widgets/class-sp-widget-event-calendar.php:64
284
+ #: includes/widgets/class-sp-widget-event-list.php:74
285
+ #: includes/widgets/class-sp-widget-event-list.php:87
286
+ #: includes/widgets/class-sp-widget-event-list.php:102
287
+ #: includes/widgets/class-sp-widget-player-gallery.php:76
288
+ #: includes/widgets/class-sp-widget-player-list.php:96
289
+ msgid "Default"
290
+ msgstr "Па змаўчанні"
291
+
292
+ #: includes/class-sp-ajax.php:214 includes/class-sp-ajax.php:306
293
+ #: includes/class-sp-ajax.php:380
294
+ #: includes/widgets/class-sp-widget-event-blocks.php:105
295
+ #: includes/widgets/class-sp-widget-event-calendar.php:75
296
+ #: includes/widgets/class-sp-widget-event-list.php:126
297
+ msgid "Display link to view all events"
298
+ msgstr ""
299
+
300
+ #: includes/class-sp-ajax.php:261 includes/class-sp-ajax.php:352
301
+ #: includes/widgets/class-sp-widget-event-blocks.php:81
302
+ #: includes/widgets/class-sp-widget-event-list.php:84
303
+ msgid "Date:"
304
+ msgstr ""
305
+
306
+ #: includes/class-sp-ajax.php:265 includes/class-sp-ajax.php:356
307
+ #: includes/sp-core-functions.php:439
308
+ msgid "This week"
309
+ msgstr ""
310
+
311
+ #: includes/class-sp-ajax.php:266 includes/class-sp-ajax.php:357
312
+ #: includes/sp-core-functions.php:440
313
+ msgid "Today"
314
+ msgstr ""
315
+
316
+ #: includes/class-sp-ajax.php:272 includes/class-sp-ajax.php:363
317
+ #: includes/widgets/class-sp-widget-event-blocks.php:94
318
+ #: includes/widgets/class-sp-widget-event-list.php:97
319
+ msgid "Number of events to show:"
320
+ msgstr ""
321
+
322
+ #: includes/class-sp-ajax.php:278 includes/class-sp-ajax.php:369
323
+ #: includes/class-sp-ajax.php:583 includes/class-sp-ajax.php:654
324
+ #: includes/widgets/class-sp-widget-event-blocks.php:97
325
+ #: includes/widgets/class-sp-widget-event-list.php:100
326
+ #: includes/widgets/class-sp-widget-player-gallery.php:94
327
+ #: includes/widgets/class-sp-widget-player-list.php:114
328
+ msgid "Sort Order:"
329
+ msgstr ""
330
+
331
+ #: includes/class-sp-ajax.php:281 includes/class-sp-ajax.php:372
332
+ #: includes/class-sp-ajax.php:586 includes/class-sp-ajax.php:657
333
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:116
334
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
335
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:101
336
+ #: includes/widgets/class-sp-widget-event-blocks.php:100
337
+ #: includes/widgets/class-sp-widget-event-list.php:103
338
+ #: includes/widgets/class-sp-widget-player-gallery.php:96
339
+ #: includes/widgets/class-sp-widget-player-list.php:116
340
+ msgid "Ascending"
341
+ msgstr "Па ўзрастанні"
342
+
343
+ #: includes/class-sp-ajax.php:282 includes/class-sp-ajax.php:373
344
+ #: includes/class-sp-ajax.php:587 includes/class-sp-ajax.php:658
345
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:117
346
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
347
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:102
348
+ #: includes/widgets/class-sp-widget-event-blocks.php:101
349
+ #: includes/widgets/class-sp-widget-event-list.php:104
350
+ #: includes/widgets/class-sp-widget-player-gallery.php:97
351
+ #: includes/widgets/class-sp-widget-player-list.php:117
352
+ msgid "Descending"
353
+ msgstr "Па ўбыванні"
354
+
355
+ #: includes/class-sp-ajax.php:287 includes/class-sp-ajax.php:419
356
+ #: includes/class-sp-ajax.php:543
357
+ #: includes/widgets/class-sp-widget-event-list.php:108
358
+ #: includes/widgets/class-sp-widget-league-table.php:70
359
+ msgid "Columns:"
360
+ msgstr ""
361
+
362
+ #: includes/class-sp-ajax.php:291 includes/class-sp-post-types.php:431
363
+ #: includes/sp-core-functions.php:1103
364
+ #: includes/admin/class-sp-admin-permalink-settings.php:28
365
+ #: includes/admin/importers/class-sp-event-importer.php:29
366
+ #: includes/admin/importers/class-sp-player-importer.php:29
367
+ #: includes/admin/importers/class-sp-staff-importer.php:28
368
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:94
369
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:67
370
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:66
371
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:51
372
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:124
373
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:56
374
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
375
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
376
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:90
377
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:105
378
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:106
379
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:150
380
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:57
381
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:58
382
+ #: includes/admin/settings/class-sp-settings-events.php:77
383
+ #: includes/admin/settings/class-sp-settings-teams.php:25
384
+ #: includes/admin/settings/class-sp-settings-teams.php:56
385
+ #: includes/widgets/class-sp-widget-event-list.php:112
386
+ #: templates/event-list.php:64
387
+ msgid "Teams"
388
+ msgstr ""
389
+
390
+ #: includes/class-sp-ajax.php:292 includes/sp-core-functions.php:1104
391
+ #: includes/admin/importers/class-sp-event-importer.php:27
392
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:93
393
+ #: includes/widgets/class-sp-widget-event-list.php:113
394
+ #: templates/event-details.php:21
395
+ msgid "Time"
396
+ msgstr "Час"
397
+
398
+ #: includes/class-sp-ajax.php:293 includes/class-sp-post-types.php:94
399
+ #: includes/sp-core-functions.php:1107
400
+ #: includes/admin/importers/class-sp-event-importer.php:28
401
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:51
402
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:97
403
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:82
404
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:83
405
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:71
406
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:87
407
+ #: includes/admin/settings/class-sp-settings-events.php:113
408
+ #: includes/widgets/class-sp-widget-event-list.php:114
409
+ #: templates/event-list.php:80 templates/event-venue.php:36
410
+ msgid "Venue"
411
+ msgstr ""
412
+
413
+ #: includes/class-sp-ajax.php:294 includes/sp-core-functions.php:1082
414
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:130
415
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:88
416
+ #: includes/widgets/class-sp-widget-event-list.php:115
417
+ #: templates/event-list.php:83
418
+ msgid "Article"
419
+ msgstr ""
420
+
421
+ #: includes/class-sp-ajax.php:414
422
+ #: includes/widgets/class-sp-widget-league-table.php:66
423
+ msgid "Number of teams to show:"
424
+ msgstr ""
425
+
426
+ #: includes/class-sp-ajax.php:440
427
+ #: includes/admin/settings/class-sp-settings-events.php:78
428
+ #: includes/admin/settings/class-sp-settings-teams.php:57
429
+ #: includes/widgets/class-sp-widget-league-table.php:90
430
+ msgid "Display logos"
431
+ msgstr ""
432
+
433
+ #: includes/class-sp-ajax.php:446
434
+ #: includes/widgets/class-sp-widget-league-table.php:93
435
+ msgid "Display link to view full table"
436
+ msgstr ""
437
+
438
+ #: includes/class-sp-ajax.php:538 includes/class-sp-ajax.php:628
439
+ #: includes/widgets/class-sp-widget-player-gallery.php:69
440
+ #: includes/widgets/class-sp-widget-player-list.php:69
441
+ msgid "Number of players to show:"
442
+ msgstr ""
443
+
444
+ #: includes/class-sp-ajax.php:563 includes/class-sp-ajax.php:634
445
+ #: includes/widgets/class-sp-widget-player-gallery.php:72
446
+ #: includes/widgets/class-sp-widget-player-list.php:92
447
+ msgid "Sort by:"
448
+ msgstr "Сартаваць паводле:"
449
+
450
+ #: includes/class-sp-ajax.php:568 includes/class-sp-ajax.php:639
451
+ #: includes/admin/importers/class-sp-player-importer.php:26
452
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:64
453
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:87
454
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:56
455
+ #: includes/widgets/class-sp-widget-player-gallery.php:77
456
+ #: includes/widgets/class-sp-widget-player-list.php:97
457
+ msgid "Number"
458
+ msgstr ""
459
+
460
+ #: includes/class-sp-ajax.php:569 includes/class-sp-ajax.php:640
461
+ #: includes/class-sp-post-types.php:42 includes/class-sp-post-types.php:71
462
+ #: includes/class-sp-post-types.php:100 includes/class-sp-post-types.php:129
463
+ #: includes/class-sp-post-types.php:158
464
+ #: includes/admin/importers/class-sp-player-importer.php:27
465
+ #: includes/admin/importers/class-sp-staff-importer.php:26
466
+ #: includes/admin/importers/class-sp-team-importer.php:26
467
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:52
468
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:71
469
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:52
470
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:70
471
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:51
472
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:88
473
+ #: includes/widgets/class-sp-widget-player-gallery.php:78
474
+ #: includes/widgets/class-sp-widget-player-list.php:98
475
+ msgid "Name"
476
+ msgstr "Імя"
477
+
478
+ #: includes/class-sp-ajax.php:570 includes/class-sp-ajax.php:641
479
+ #: includes/sp-core-functions.php:1091
480
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
481
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
482
+ #: includes/widgets/class-sp-widget-player-gallery.php:79
483
+ #: includes/widgets/class-sp-widget-player-list.php:99
484
+ msgid "Played"
485
+ msgstr ""
486
+
487
+ #: includes/class-sp-ajax.php:594 includes/class-sp-ajax.php:665
488
+ #: includes/widgets/class-sp-widget-player-gallery.php:101
489
+ #: includes/widgets/class-sp-widget-player-list.php:121
490
+ msgid "Display link to view all players"
491
+ msgstr ""
492
+
493
+ #: includes/class-sp-ajax.php:671
494
+ #: includes/widgets/class-sp-widget-player-gallery.php:104
495
+ msgid "Display player names on hover"
496
+ msgstr ""
497
+
498
+ #: includes/class-sp-countries.php:29
499
+ msgid "Africa"
500
+ msgstr ""
501
+
502
+ #: includes/class-sp-countries.php:30
503
+ msgid "Asia"
504
+ msgstr ""
505
+
506
+ #: includes/class-sp-countries.php:31
507
+ msgid "Europe"
508
+ msgstr ""
509
+
510
+ #: includes/class-sp-countries.php:32
511
+ msgid "North America"
512
+ msgstr ""
513
+
514
+ #: includes/class-sp-countries.php:33
515
+ msgid "Oceania"
516
+ msgstr ""
517
+
518
+ #: includes/class-sp-countries.php:34
519
+ msgid "South America"
520
+ msgstr ""
521
+
522
+ #: includes/class-sp-countries.php:38
523
+ msgid "Andorra"
524
+ msgstr "Андора"
525
+
526
+ #: includes/class-sp-countries.php:39
527
+ msgid "United Arab Emirates"
528
+ msgstr "Аб'яднаныя Арабскія Эміраты"
529
+
530
+ #: includes/class-sp-countries.php:40
531
+ msgid "Afghanistan"
532
+ msgstr "Афганістан"
533
+
534
+ #: includes/class-sp-countries.php:41
535
+ msgid "Antigua and Barbuda"
536
+ msgstr "Антыгуа і Барбуда"
537
+
538
+ #: includes/class-sp-countries.php:42
539
+ msgid "Albania"
540
+ msgstr "Албанія"
541
+
542
+ #: includes/class-sp-countries.php:43
543
+ msgid "Armenia"
544
+ msgstr "Арменія"
545
+
546
+ #: includes/class-sp-countries.php:44
547
+ msgid "Angola"
548
+ msgstr "Ангола"
549
+
550
+ #: includes/class-sp-countries.php:45
551
+ msgid "Argentina"
552
+ msgstr "Аргентына"
553
+
554
+ #: includes/class-sp-countries.php:46
555
+ msgid "Austria"
556
+ msgstr "Аўстрыя"
557
+
558
+ #: includes/class-sp-countries.php:47
559
+ msgid "Australia"
560
+ msgstr "Аўстралія"
561
+
562
+ #: includes/class-sp-countries.php:48
563
+ msgid "Azerbaijan"
564
+ msgstr "Азербайджан"
565
+
566
+ #: includes/class-sp-countries.php:49
567
+ msgid "Bosnia and Herzegovina"
568
+ msgstr "Боснія і Герцагавіна"
569
+
570
+ #: includes/class-sp-countries.php:50
571
+ msgid "Barbados"
572
+ msgstr "Барбадос"
573
+
574
+ #: includes/class-sp-countries.php:51
575
+ msgid "Bangladesh"
576
+ msgstr "Бангладэш"
577
+
578
+ #: includes/class-sp-countries.php:52
579
+ msgid "Belgium"
580
+ msgstr "Бельгія"
581
+
582
+ #: includes/class-sp-countries.php:53
583
+ msgid "Burkina Faso"
584
+ msgstr "Буркіна-Фасо"
585
+
586
+ #: includes/class-sp-countries.php:54
587
+ msgid "Bulgaria"
588
+ msgstr "Балгарыя"
589
+
590
+ #: includes/class-sp-countries.php:55
591
+ msgid "Bahrain"
592
+ msgstr "Бахрэйн"
593
+
594
+ #: includes/class-sp-countries.php:56
595
+ msgid "Burundi"
596
+ msgstr "Бурундзі"
597
+
598
+ #: includes/class-sp-countries.php:57
599
+ msgid "Benin"
600
+ msgstr "Бенін"
601
+
602
+ #: includes/class-sp-countries.php:58
603
+ msgid "Brunei"
604
+ msgstr "Бруней"
605
+
606
+ #: includes/class-sp-countries.php:59
607
+ msgid "Bolivia"
608
+ msgstr "Балівія"
609
+
610
+ #: includes/class-sp-countries.php:60
611
+ msgid "Brazil"
612
+ msgstr "Бразілія"
613
+
614
+ #: includes/class-sp-countries.php:61
615
+ msgid "Bahamas"
616
+ msgstr ""
617
+
618
+ #: includes/class-sp-countries.php:62
619
+ msgid "Bhutan"
620
+ msgstr "Бутан"
621
+
622
+ #: includes/class-sp-countries.php:63
623
+ msgid "Botswana"
624
+ msgstr "Батсвана"
625
+
626
+ #: includes/class-sp-countries.php:64
627
+ msgid "Belarus"
628
+ msgstr "Беларусь"
629
+
630
+ #: includes/class-sp-countries.php:65
631
+ msgid "Belize"
632
+ msgstr "Беліз"
633
+
634
+ #: includes/class-sp-countries.php:66
635
+ msgid "Canada"
636
+ msgstr "Канада"
637
+
638
+ #: includes/class-sp-countries.php:67
639
+ msgid "Democratic Republic of the Congo"
640
+ msgstr ""
641
+
642
+ #: includes/class-sp-countries.php:68
643
+ msgid "Central African Republic"
644
+ msgstr "Цэнтральна-Афрыканская Рэспубліка"
645
+
646
+ #: includes/class-sp-countries.php:69
647
+ msgid "Republic of the Congo"
648
+ msgstr ""
649
+
650
+ #: includes/class-sp-countries.php:70
651
+ msgid "Switzerland"
652
+ msgstr "Швейцарыя"
653
+
654
+ #: includes/class-sp-countries.php:71
655
+ msgid "Ivory Coast"
656
+ msgstr "Кот д’Івуар"
657
+
658
+ #: includes/class-sp-countries.php:72
659
+ msgid "Chile"
660
+ msgstr "Чылі"
661
+
662
+ #: includes/class-sp-countries.php:73
663
+ msgid "Cameroon"
664
+ msgstr "Камерун"
665
+
666
+ #: includes/class-sp-countries.php:74
667
+ msgid "China"
668
+ msgstr "Кітай"
669
+
670
+ #: includes/class-sp-countries.php:75
671
+ msgid "Colombia"
672
+ msgstr "Калумбія"
673
+
674
+ #: includes/class-sp-countries.php:76
675
+ msgid "Costa Rica"
676
+ msgstr "Коста-Рыка"
677
+
678
+ #: includes/class-sp-countries.php:77
679
+ msgid "Cuba"
680
+ msgstr "Куба"
681
+
682
+ #: includes/class-sp-countries.php:78
683
+ msgid "Cape Verde"
684
+ msgstr "Каба-Вэрдэ"
685
+
686
+ #: includes/class-sp-countries.php:79
687
+ msgid "Cyprus"
688
+ msgstr "Кіпр"
689
+
690
+ #: includes/class-sp-countries.php:80
691
+ msgid "Czech Republic"
692
+ msgstr "Чэшская Рэспубліка"
693
+
694
+ #: includes/class-sp-countries.php:81
695
+ msgid "Germany"
696
+ msgstr "Германія"
697
+
698
+ #: includes/class-sp-countries.php:82
699
+ msgid "Djibouti"
700
+ msgstr "Джыбуці"
701
+
702
+ #: includes/class-sp-countries.php:83
703
+ msgid "Denmark"
704
+ msgstr "Данія"
705
+
706
+ #: includes/class-sp-countries.php:84
707
+ msgid "Dominica"
708
+ msgstr "Дамініка"
709
+
710
+ #: includes/class-sp-countries.php:85
711
+ msgid "Dominican Republic"
712
+ msgstr "Дамініканская Рэспубліка"
713
+
714
+ #: includes/class-sp-countries.php:86
715
+ msgid "Algeria"
716
+ msgstr "Алжыр"
717
+
718
+ #: includes/class-sp-countries.php:87
719
+ msgid "Ecuador"
720
+ msgstr "Эквадор"
721
+
722
+ #: includes/class-sp-countries.php:88
723
+ msgid "Estonia"
724
+ msgstr "Эстонія"
725
+
726
+ #: includes/class-sp-countries.php:89
727
+ msgid "Egypt"
728
+ msgstr "Егіпет"
729
+
730
+ #: includes/class-sp-countries.php:90
731
+ msgid "Western Sahara"
732
+ msgstr "Заходняя Сахара"
733
+
734
+ #: includes/class-sp-countries.php:91
735
+ msgid "England"
736
+ msgstr ""
737
+
738
+ #: includes/class-sp-countries.php:92
739
+ msgid "Eritrea"
740
+ msgstr "Эрытрэя"
741
+
742
+ #: includes/class-sp-countries.php:93
743
+ msgid "Spain"
744
+ msgstr "Іспанія"
745
+
746
+ #: includes/class-sp-countries.php:94
747
+ msgid "Ethiopia"
748
+ msgstr "Эфіёпія"
749
+
750
+ #: includes/class-sp-countries.php:95
751
+ msgid "Finland"
752
+ msgstr "Фінляндыя"
753
+
754
+ #: includes/class-sp-countries.php:96
755
+ msgid "Fiji"
756
+ msgstr "Фіджы"
757
+
758
+ #: includes/class-sp-countries.php:97
759
+ msgid "Micronesia"
760
+ msgstr "Мікранэзія"
761
+
762
+ #: includes/class-sp-countries.php:98
763
+ msgid "France"
764
+ msgstr "Францыя"
765
+
766
+ #: includes/class-sp-countries.php:99
767
+ msgid "Gabon"
768
+ msgstr "Габон"
769
+
770
+ #: includes/class-sp-countries.php:100
771
+ msgid "United Kingdom"
772
+ msgstr "Вялікабрытанія"
773
+
774
+ #: includes/class-sp-countries.php:101
775
+ msgid "Grenada"
776
+ msgstr "Грэнада"
777
+
778
+ #: includes/class-sp-countries.php:102
779
+ msgid "Georgia"
780
+ msgstr "Грузія"
781
+
782
+ #: includes/class-sp-countries.php:103
783
+ msgid "Ghana"
784
+ msgstr "Гана"
785
+
786
+ #: includes/class-sp-countries.php:104
787
+ msgid "Gambia"
788
+ msgstr ""
789
+
790
+ #: includes/class-sp-countries.php:105
791
+ msgid "Guinea"
792
+ msgstr "Гвінея"
793
+
794
+ #: includes/class-sp-countries.php:106
795
+ msgid "Equatorial Guinea"
796
+ msgstr "Экватарыяльная Гвінея"
797
+
798
+ #: includes/class-sp-countries.php:107
799
+ msgid "Greece"
800
+ msgstr "Грэцыя"
801
+
802
+ #: includes/class-sp-countries.php:108
803
+ msgid "Guatemala"
804
+ msgstr "Гватэмала"
805
+
806
+ #: includes/class-sp-countries.php:109
807
+ msgid "Guinea-Bissau"
808
+ msgstr "Гвінея-Бісау"
809
+
810
+ #: includes/class-sp-countries.php:110
811
+ msgid "Guyana"
812
+ msgstr "Гаяна"
813
+
814
+ #: includes/class-sp-countries.php:111
815
+ msgid "Hong Kong"
816
+ msgstr ""
817
+
818
+ #: includes/class-sp-countries.php:112
819
+ msgid "Honduras"
820
+ msgstr "Гандурас"
821
+
822
+ #: includes/class-sp-countries.php:113
823
+ msgid "Croatia"
824
+ msgstr "Харватыя"
825
+
826
+ #: includes/class-sp-countries.php:114
827
+ msgid "Haiti"
828
+ msgstr "Гаіці"
829
+
830
+ #: includes/class-sp-countries.php:115
831
+ msgid "Hungary"
832
+ msgstr "Венгрыя"
833
+
834
+ #: includes/class-sp-countries.php:116
835
+ msgid "Indonesia"
836
+ msgstr "Інданезія"
837
+
838
+ #: includes/class-sp-countries.php:117
839
+ msgid "Ireland"
840
+ msgstr "Ірландыя"
841
+
842
+ #: includes/class-sp-countries.php:118
843
+ msgid "Israel"
844
+ msgstr "Ізраіль"
845
+
846
+ #: includes/class-sp-countries.php:119
847
+ msgid "India"
848
+ msgstr "Індыя"
849
+
850
+ #: includes/class-sp-countries.php:120
851
+ msgid "Iraq"
852
+ msgstr "Ірак"
853
+
854
+ #: includes/class-sp-countries.php:121
855
+ msgid "Iran"
856
+ msgstr "Іран"
857
+
858
+ #: includes/class-sp-countries.php:122
859
+ msgid "Iceland"
860
+ msgstr "Ісландыя"
861
+
862
+ #: includes/class-sp-countries.php:123
863
+ msgid "Italy"
864
+ msgstr "Італія"
865
+
866
+ #: includes/class-sp-countries.php:124
867
+ msgid "Jamaica"
868
+ msgstr "Ямайка"
869
+
870
+ #: includes/class-sp-countries.php:125
871
+ msgid "Jordan"
872
+ msgstr "Іярданія"
873
+
874
+ #: includes/class-sp-countries.php:126
875
+ msgid "Japan"
876
+ msgstr "Японія"
877
+
878
+ #: includes/class-sp-countries.php:127
879
+ msgid "Kenya"
880
+ msgstr "Кенія"
881
+
882
+ #: includes/class-sp-countries.php:128
883
+ msgid "Kyrgyzstan"
884
+ msgstr "Кіргізія"
885
+
886
+ #: includes/class-sp-countries.php:129
887
+ msgid "Cambodia"
888
+ msgstr "Камбоджа"
889
+
890
+ #: includes/class-sp-countries.php:130
891
+ msgid "Kiribati"
892
+ msgstr "Кірыбаці"
893
+
894
+ #: includes/class-sp-countries.php:131
895
+ msgid "Comoros"
896
+ msgstr "Каморы"
897
+
898
+ #: includes/class-sp-countries.php:132
899
+ msgid "Saint Kitts and Nevis"
900
+ msgstr ""
901
+
902
+ #: includes/class-sp-countries.php:133
903
+ msgid "North Korea"
904
+ msgstr ""
905
+
906
+ #: includes/class-sp-countries.php:134
907
+ msgid "South Korea"
908
+ msgstr "Паўднёвая Карэя"
909
+
910
+ #: includes/class-sp-countries.php:135
911
+ msgid "Kuwait"
912
+ msgstr "Кувейт"
913
+
914
+ #: includes/class-sp-countries.php:136
915
+ msgid "Kazakhstan"
916
+ msgstr "Казахстан"
917
+
918
+ #: includes/class-sp-countries.php:137
919
+ msgid "Laos"
920
+ msgstr "Лаос"
921
+
922
+ #: includes/class-sp-countries.php:138
923
+ msgid "Lebanon"
924
+ msgstr "Ліван"
925
+
926
+ #: includes/class-sp-countries.php:139
927
+ msgid "Saint Lucia"
928
+ msgstr ""
929
+
930
+ #: includes/class-sp-countries.php:140
931
+ msgid "Liechtenstein"
932
+ msgstr "Ліхтэнштэйн"
933
+
934
+ #: includes/class-sp-countries.php:141
935
+ msgid "Sri Lanka"
936
+ msgstr "Шры-Ланка"
937
+
938
+ #: includes/class-sp-countries.php:142
939
+ msgid "Liberia"
940
+ msgstr "Ліберыя"
941
+
942
+ #: includes/class-sp-countries.php:143
943
+ msgid "Lesotho"
944
+ msgstr "Лесота"
945
+
946
+ #: includes/class-sp-countries.php:144
947
+ msgid "Lithuania"
948
+ msgstr "Літва"
949
+
950
+ #: includes/class-sp-countries.php:145
951
+ msgid "Luxembourg"
952
+ msgstr "Люксембург"
953
+
954
+ #: includes/class-sp-countries.php:146
955
+ msgid "Latvia"
956
+ msgstr "Латвія"
957
+
958
+ #: includes/class-sp-countries.php:147
959
+ msgid "Libya"
960
+ msgstr "Лівія"
961
+
962
+ #: includes/class-sp-countries.php:148
963
+ msgid "Morocco"
964
+ msgstr "Марока"
965
+
966
+ #: includes/class-sp-countries.php:149
967
+ msgid "Monaco"
968
+ msgstr "Манака"
969
+
970
+ #: includes/class-sp-countries.php:150
971
+ msgid "Moldova"
972
+ msgstr "Малдова"
973
+
974
+ #: includes/class-sp-countries.php:151
975
+ msgid "Montenegro"
976
+ msgstr "Чарнагорыя"
977
+
978
+ #: includes/class-sp-countries.php:152
979
+ msgid "Madagascar"
980
+ msgstr "Мадагаскар"
981
+
982
+ #: includes/class-sp-countries.php:153
983
+ msgid "Marshall Islands"
984
+ msgstr "Маршалавы выспы"
985
+
986
+ #: includes/class-sp-countries.php:154
987
+ msgid "Macedonia"
988
+ msgstr "Македонія"
989
+
990
+ #: includes/class-sp-countries.php:155
991
+ msgid "Mali"
992
+ msgstr "Малі"
993
+
994
+ #: includes/class-sp-countries.php:156
995
+ msgid "Burma"
996
+ msgstr ""
997
+
998
+ #: includes/class-sp-countries.php:157
999
+ msgid "Mongolia"
1000
+ msgstr "Манголія"
1001
+
1002
+ #: includes/class-sp-countries.php:158
1003
+ msgid "Macau"
1004
+ msgstr ""
1005
+
1006
+ #: includes/class-sp-countries.php:159
1007
+ msgid "Mauritania"
1008
+ msgstr "Маўрытанія"
1009
+
1010
+ #: includes/class-sp-countries.php:160
1011
+ msgid "Malta"
1012
+ msgstr "Мальта"
1013
+
1014
+ #: includes/class-sp-countries.php:161
1015
+ msgid "Mauritius"
1016
+ msgstr "Маўрыкій"
1017
+
1018
+ #: includes/class-sp-countries.php:162
1019
+ msgid "Maldives"
1020
+ msgstr "Мальдывы"
1021
+
1022
+ #: includes/class-sp-countries.php:163
1023
+ msgid "Malawi"
1024
+ msgstr "Малаві"
1025
+
1026
+ #: includes/class-sp-countries.php:164
1027
+ msgid "Mexico"
1028
+ msgstr "Мексіка"
1029
+
1030
+ #: includes/class-sp-countries.php:165
1031
+ msgid "Malaysia"
1032
+ msgstr "Малайзія"
1033
+
1034
+ #: includes/class-sp-countries.php:166
1035
+ msgid "Mozambique"
1036
+ msgstr "Мазамбік"
1037
+
1038
+ #: includes/class-sp-countries.php:167
1039
+ msgid "Namibia"
1040
+ msgstr "Намібія"
1041
+
1042
+ #: includes/class-sp-countries.php:168
1043
+ msgid "Northern Ireland"
1044
+ msgstr ""
1045
+
1046
+ #: includes/class-sp-countries.php:169
1047
+ msgid "Niger"
1048
+ msgstr "Нігер"
1049
+
1050
+ #: includes/class-sp-countries.php:170
1051
+ msgid "Nigeria"
1052
+ msgstr "Нігерыя"
1053
+
1054
+ #: includes/class-sp-countries.php:171
1055
+ msgid "Nicaragua"
1056
+ msgstr "Нікарагуа"
1057
+
1058
+ #: includes/class-sp-countries.php:172
1059
+ msgid "Netherlands"
1060
+ msgstr ""
1061
+
1062
+ #: includes/class-sp-countries.php:173
1063
+ msgid "Norway"
1064
+ msgstr "Нарвегія"
1065
+
1066
+ #: includes/class-sp-countries.php:174
1067
+ msgid "Nepal"
1068
+ msgstr "Непал"
1069
+
1070
+ #: includes/class-sp-countries.php:175
1071
+ msgid "Nauru"
1072
+ msgstr "Науру"
1073
+
1074
+ #: includes/class-sp-countries.php:176
1075
+ msgid "New Zealand"
1076
+ msgstr "Новая Зеландыя"
1077
+
1078
+ #: includes/class-sp-countries.php:177
1079
+ msgid "Oman"
1080
+ msgstr "Аман"
1081
+
1082
+ #: includes/class-sp-countries.php:178
1083
+ msgid "Panama"
1084
+ msgstr "Панама"
1085
+
1086
+ #: includes/class-sp-countries.php:179
1087
+ msgid "Peru"
1088
+ msgstr "Перу"
1089
+
1090
+ #: includes/class-sp-countries.php:180
1091
+ msgid "Papua New Guinea"
1092
+ msgstr "Папуа — Новая Гвінея"
1093
+
1094
+ #: includes/class-sp-countries.php:181
1095
+ msgid "Philippines"
1096
+ msgstr "Філіпіны"
1097
+
1098
+ #: includes/class-sp-countries.php:182
1099
+ msgid "Pakistan"
1100
+ msgstr "Пакістан"
1101
+
1102
+ #: includes/class-sp-countries.php:183
1103
+ msgid "Poland"
1104
+ msgstr "Польшча"
1105
+
1106
+ #: includes/class-sp-countries.php:184
1107
+ msgid "Portugal"
1108
+ msgstr "Партугалія"
1109
+
1110
+ #: includes/class-sp-countries.php:185
1111
+ msgid "Palau"
1112
+ msgstr "Палау"
1113
+
1114
+ #: includes/class-sp-countries.php:186
1115
+ msgid "Paraguay"
1116
+ msgstr "Парагвай"
1117
+
1118
+ #: includes/class-sp-countries.php:187
1119
+ msgid "Qatar"
1120
+ msgstr "Катар"
1121
+
1122
+ #: includes/class-sp-countries.php:188
1123
+ msgid "Romania"
1124
+ msgstr "Румынія"
1125
+
1126
+ #: includes/class-sp-countries.php:189
1127
+ msgid "Serbia"
1128
+ msgstr "Сербія"
1129
+
1130
+ #: includes/class-sp-countries.php:190
1131
+ msgid "Russia"
1132
+ msgstr "Расія"
1133
+
1134
+ #: includes/class-sp-countries.php:191
1135
+ msgid "Rwanda"
1136
+ msgstr "Руанда"
1137
+
1138
+ #: includes/class-sp-countries.php:192
1139
+ msgid "Saudi Arabia"
1140
+ msgstr "Саудаўская Аравія"
1141
+
1142
+ #: includes/class-sp-countries.php:193
1143
+ msgid "Solomon Islands"
1144
+ msgstr "Саламонавы выспы"
1145
+
1146
+ #: includes/class-sp-countries.php:194
1147
+ msgid "Seychelles"
1148
+ msgstr "Сейшэлы"
1149
+
1150
+ #: includes/class-sp-countries.php:195
1151
+ msgid "Sudan"
1152
+ msgstr "Судан"
1153
+
1154
+ #: includes/class-sp-countries.php:196
1155
+ msgid "Sweden"
1156
+ msgstr "Швецыя"
1157
+
1158
+ #: includes/class-sp-countries.php:197
1159
+ msgid "Scotland"
1160
+ msgstr ""
1161
+
1162
+ #: includes/class-sp-countries.php:198
1163
+ msgid "Singapore"
1164
+ msgstr "Сінгапур"
1165
+
1166
+ #: includes/class-sp-countries.php:199
1167
+ msgid "Slovenia"
1168
+ msgstr "Славенія"
1169
+
1170
+ #: includes/class-sp-countries.php:200
1171
+ msgid "Slovakia"
1172
+ msgstr "Славакія"
1173
+
1174
+ #: includes/class-sp-countries.php:201
1175
+ msgid "Sierra Leone"
1176
+ msgstr "Сьера-Леонэ"
1177
+
1178
+ #: includes/class-sp-countries.php:202
1179
+ msgid "San Marino"
1180
+ msgstr "Сан-Марына"
1181
+
1182
+ #: includes/class-sp-countries.php:203
1183
+ msgid "Senegal"
1184
+ msgstr "Сенегал"
1185
+
1186
+ #: includes/class-sp-countries.php:204
1187
+ msgid "Somalia"
1188
+ msgstr "Самалі"
1189
+
1190
+ #: includes/class-sp-countries.php:205
1191
+ msgid "Suriname"
1192
+ msgstr "Сурынам"
1193
+
1194
+ #: includes/class-sp-countries.php:206
1195
+ msgid "Sao Tome and Principe"
1196
+ msgstr "Сан-Тамэ і Прынсіпі"
1197
+
1198
+ #: includes/class-sp-countries.php:207
1199
+ msgid "El Salvador"
1200
+ msgstr "Сальвадор"
1201
+
1202
+ #: includes/class-sp-countries.php:208
1203
+ msgid "Swaziland"
1204
+ msgstr "Свазіленд"
1205
+
1206
+ #: includes/class-sp-countries.php:209
1207
+ msgid "Chad"
1208
+ msgstr "Чад"
1209
+
1210
+ #: includes/class-sp-countries.php:210
1211
+ msgid "Togo"
1212
+ msgstr "Таго"
1213
+
1214
+ #: includes/class-sp-countries.php:211
1215
+ msgid "Thailand"
1216
+ msgstr "Тайланд"
1217
+
1218
+ #: includes/class-sp-countries.php:212
1219
+ msgid "Tajikistan"
1220
+ msgstr "Таджыкістан"
1221
+
1222
+ #: includes/class-sp-countries.php:213
1223
+ msgid "East Timor"
1224
+ msgstr ""
1225
+
1226
+ #: includes/class-sp-countries.php:214
1227
+ msgid "Turkmenistan"
1228
+ msgstr "Туркменія"
1229
+
1230
+ #: includes/class-sp-countries.php:215
1231
+ msgid "Tunisia"
1232
+ msgstr "Туніс"
1233
+
1234
+ #: includes/class-sp-countries.php:216
1235
+ msgid "Tonga"
1236
+ msgstr "Тонга"
1237
+
1238
+ #: includes/class-sp-countries.php:217
1239
+ msgid "Turkey"
1240
+ msgstr "Турцыя"
1241
+
1242
+ #: includes/class-sp-countries.php:218
1243
+ msgid "Trinidad and Tobago"
1244
+ msgstr "Трынідад і Табага"
1245
+
1246
+ #: includes/class-sp-countries.php:219
1247
+ msgid "Tuvalu"
1248
+ msgstr "Тувалу"
1249
+
1250
+ #: includes/class-sp-countries.php:220
1251
+ msgid "Taiwan"
1252
+ msgstr "Тайвань"
1253
+
1254
+ #: includes/class-sp-countries.php:221
1255
+ msgid "Tanzania"
1256
+ msgstr ""
1257
+
1258
+ #: includes/class-sp-countries.php:222
1259
+ msgid "Ukraine"
1260
+ msgstr "Украіна"
1261
+
1262
+ #: includes/class-sp-countries.php:223
1263
+ msgid "Uganda"
1264
+ msgstr "Уганда"
1265
+
1266
+ #: includes/class-sp-countries.php:224
1267
+ msgid "United States"
1268
+ msgstr "ЗША"
1269
+
1270
+ #: includes/class-sp-countries.php:225
1271
+ msgid "Uruguay"
1272
+ msgstr "Уругвай"
1273
+
1274
+ #: includes/class-sp-countries.php:226
1275
+ msgid "Uzbekistan"
1276
+ msgstr "Узбекістан"
1277
+
1278
+ #: includes/class-sp-countries.php:227
1279
+ msgid "Vatican City"
1280
+ msgstr "Ватыкан"
1281
+
1282
+ #: includes/class-sp-countries.php:228
1283
+ msgid "Saint Vincent and the Grenadines"
1284
+ msgstr ""
1285
+
1286
+ #: includes/class-sp-countries.php:229
1287
+ msgid "Venezuela"
1288
+ msgstr "Венесуэла"
1289
+
1290
+ #: includes/class-sp-countries.php:230
1291
+ msgid "Vietnam"
1292
+ msgstr "В'етнам"
1293
+
1294
+ #: includes/class-sp-countries.php:231
1295
+ msgid "Vanuatu"
1296
+ msgstr "Вануату"
1297
+
1298
+ #: includes/class-sp-countries.php:232
1299
+ msgid "Wales"
1300
+ msgstr ""
1301
+
1302
+ #: includes/class-sp-countries.php:233
1303
+ msgid "Samoa"
1304
+ msgstr ""
1305
+
1306
+ #: includes/class-sp-countries.php:234
1307
+ msgid "Yemen"
1308
+ msgstr "Емен"
1309
+
1310
+ #: includes/class-sp-countries.php:235
1311
+ msgid "South Africa"
1312
+ msgstr "Паўднёва-Афрыканская Рэспубліка"
1313
+
1314
+ #: includes/class-sp-countries.php:236
1315
+ msgid "Zambia"
1316
+ msgstr "Замбія"
1317
+
1318
+ #: includes/class-sp-countries.php:237
1319
+ msgid "Zimbabwe"
1320
+ msgstr "Зімбабвэ"
1321
+
1322
+ #: includes/class-sp-event.php:45 includes/class-sp-post-types.php:221
1323
+ #: includes/sp-core-functions.php:1089
1324
+ #: includes/admin/importers/class-sp-event-importer.php:31
1325
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-results.php:57
1326
+ msgid "Outcome"
1327
+ msgstr ""
1328
+
1329
+ #: includes/class-sp-event.php:100 includes/class-sp-post-types.php:123
1330
+ #: includes/sp-core-functions.php:1094
1331
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:68
1332
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:71
1333
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:79
1334
+ #: templates/player-details.php:43
1335
+ msgid "Position"
1336
+ msgstr ""
1337
+
1338
+ #: includes/class-sp-formats.php:27 includes/class-sp-post-types.php:36
1339
+ #: includes/sp-core-functions.php:1087
1340
+ #: includes/admin/importers/class-sp-event-importer.php:478
1341
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:49
1342
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:95
1343
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:114
1344
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:49
1345
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:49
1346
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:70
1347
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:53
1348
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:35
1349
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:30
1350
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:27
1351
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:61
1352
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:61
1353
+ #: templates/event-details.php:25 templates/event-list.php:74
1354
+ msgid "League"
1355
+ msgstr ""
1356
+
1357
+ #: includes/class-sp-formats.php:28
1358
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:117
1359
+ msgid "Friendly"
1360
+ msgstr ""
1361
+
1362
+ #: includes/class-sp-frontend-scripts.php:57
1363
+ #: includes/admin/class-sp-admin-assets.php:108
1364
+ #: includes/admin/class-sp-admin-dashboard.php:80 templates/countdown.php:66
1365
+ msgid "days"
1366
+ msgstr ""
1367
+
1368
+ #: includes/class-sp-frontend-scripts.php:57
1369
+ #: includes/admin/class-sp-admin-assets.php:109 templates/countdown.php:67
1370
+ msgid "hrs"
1371
+ msgstr ""
1372
+
1373
+ #: includes/class-sp-frontend-scripts.php:57
1374
+ #: includes/admin/class-sp-admin-assets.php:110
1375
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:31
1376
+ #: includes/admin/settings/class-sp-settings-events.php:135
1377
+ #: templates/countdown.php:68
1378
+ msgid "mins"
1379
+ msgstr ""
1380
+
1381
+ #: includes/class-sp-frontend-scripts.php:57
1382
+ #: includes/admin/class-sp-admin-assets.php:111 templates/countdown.php:69
1383
+ msgid "secs"
1384
+ msgstr ""
1385
+
1386
+ #: includes/class-sp-frontend-scripts.php:57
1387
+ msgid "Previous"
1388
+ msgstr ""
1389
+
1390
+ #: includes/class-sp-frontend-scripts.php:57
1391
+ msgid "Next"
1392
+ msgstr ""
1393
+
1394
+ #: includes/class-sp-install.php:192 includes/class-sp-post-types.php:553
1395
+ #: includes/class-sp-post-types.php:554 includes/sp-core-functions.php:1100
1396
+ #: includes/admin/class-sp-admin-permalink-settings.php:35
1397
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:70
1398
+ #: includes/admin/settings/class-sp-settings-events.php:122
1399
+ #: includes/admin/settings/class-sp-settings-staff.php:25
1400
+ #: templates/event-staff.php:43
1401
+ msgid "Staff"
1402
+ msgstr ""
1403
+
1404
+ #: includes/class-sp-install.php:230
1405
+ msgid "Event Manager"
1406
+ msgstr ""
1407
+
1408
+ #: includes/class-sp-install.php:273
1409
+ msgid "Team Manager"
1410
+ msgstr ""
1411
+
1412
+ #: includes/class-sp-install.php:337
1413
+ msgid "League Manager"
1414
+ msgstr ""
1415
+
1416
+ #: includes/class-sp-install.php:534
1417
+ msgid "What's new:"
1418
+ msgstr ""
1419
+
1420
+ #: includes/class-sp-league-table.php:332
1421
+ #: includes/class-sp-player-list.php:361 includes/class-sp-player-list.php:378
1422
+ #: includes/class-sp-player.php:326 includes/class-sp-player.php:349
1423
+ #: includes/class-sp-post-types.php:432 includes/sp-core-functions.php:1102
1424
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:52
1425
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:51
1426
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:70
1427
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:98
1428
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-results.php:45
1429
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:54
1430
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:60
1431
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:64
1432
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:57
1433
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:119
1434
+ #: includes/admin/settings/class-sp-settings-events.php:235
1435
+ #: includes/widgets/class-sp-widget-countdown.php:45
1436
+ #: templates/event-results.php:94
1437
+ msgid "Team"
1438
+ msgstr "Час"
1439
+
1440
+ #: includes/class-sp-player.php:87 includes/class-sp-team.php:65
1441
+ #: includes/sp-core-functions.php:350 includes/sp-core-functions.php:354
1442
+ #: includes/sp-core-functions.php:1106
1443
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:93
1444
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:36
1445
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:82
1446
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:38
1447
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:76
1448
+ #: templates/event-performance.php:181
1449
+ msgid "Total"
1450
+ msgstr ""
1451
+
1452
+ #: includes/class-sp-player.php:347 includes/class-sp-post-types.php:65
1453
+ #: includes/sp-core-functions.php:1099
1454
+ #: includes/admin/importers/class-sp-event-importer.php:493
1455
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:50
1456
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:96
1457
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:50
1458
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:50
1459
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:76
1460
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:68
1461
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:53
1462
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:45
1463
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:60
1464
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:42
1465
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:60
1466
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:64
1467
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:64
1468
+ #: templates/event-details.php:30 templates/event-list.php:77
1469
+ msgid "Season"
1470
+ msgstr ""
1471
+
1472
+ #: includes/class-sp-post-types.php:35 includes/class-sp-post-types.php:49
1473
+ #: includes/admin/class-sp-admin-menus.php:72
1474
+ #: includes/admin/class-sp-admin-menus.php:269
1475
+ #: includes/admin/class-sp-admin-permalink-settings.php:29
1476
+ #: includes/admin/importers/class-sp-player-importer.php:30
1477
+ #: includes/admin/importers/class-sp-staff-importer.php:29
1478
+ #: includes/admin/importers/class-sp-team-importer.php:27
1479
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:68
1480
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:67
1481
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:67
1482
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:116
1483
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
1484
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:113
1485
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:120
1486
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:50
1487
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:57
1488
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:72
1489
+ #: includes/admin/views/html-admin-page-status.php:296
1490
+ msgid "Leagues"
1491
+ msgstr ""
1492
+
1493
+ #: includes/class-sp-post-types.php:38
1494
+ msgid "Edit League"
1495
+ msgstr ""
1496
+
1497
+ #: includes/class-sp-post-types.php:39 includes/class-sp-post-types.php:68
1498
+ #: includes/class-sp-post-types.php:97 includes/class-sp-post-types.php:126
1499
+ #: includes/class-sp-post-types.php:155 includes/class-sp-post-types.php:195
1500
+ #: includes/class-sp-post-types.php:225 includes/class-sp-post-types.php:255
1501
+ #: includes/class-sp-post-types.php:285 includes/class-sp-post-types.php:315
1502
+ #: includes/class-sp-post-types.php:345
1503
+ msgid "View"
1504
+ msgstr "Прагледзець"
1505
+
1506
+ #: includes/class-sp-post-types.php:40 includes/class-sp-post-types.php:69
1507
+ #: includes/class-sp-post-types.php:98 includes/class-sp-post-types.php:127
1508
+ #: includes/class-sp-post-types.php:156
1509
+ msgid "Update"
1510
+ msgstr "Абнавіць"
1511
+
1512
+ #: includes/class-sp-post-types.php:41 includes/class-sp-post-types.php:70
1513
+ #: includes/class-sp-post-types.php:99 includes/class-sp-post-types.php:128
1514
+ #: includes/class-sp-post-types.php:157 includes/sp-core-functions.php:885
1515
+ #: includes/sp-core-functions.php:902
1516
+ #: includes/admin/class-sp-admin-menus.php:265
1517
+ #: includes/admin/importers/class-sp-event-importer.php:488
1518
+ #: includes/admin/importers/class-sp-event-importer.php:503
1519
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:64
1520
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:79
1521
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:94
1522
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:109
1523
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:47
1524
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:65
1525
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:82
1526
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:41
1527
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:56
1528
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:71
1529
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:108
1530
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-metrics.php:42
1531
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:67
1532
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:38
1533
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:53
1534
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:60
1535
+ #: includes/admin/views/html-admin-config.php:49
1536
+ #: includes/admin/views/html-admin-config.php:124
1537
+ #: includes/admin/views/html-admin-config.php:177
1538
+ #: includes/admin/views/html-admin-config.php:234
1539
+ #: includes/admin/views/html-admin-config.php:286
1540
+ #: includes/admin/views/html-admin-config.php:341
1541
+ #: includes/widgets/class-sp-widget-countdown.php:57
1542
+ #: includes/widgets/class-sp-widget-countdown.php:77
1543
+ #: includes/widgets/class-sp-widget-event-blocks.php:63
1544
+ #: includes/widgets/class-sp-widget-event-calendar.php:56
1545
+ #: includes/widgets/class-sp-widget-event-list.php:66
1546
+ #: includes/widgets/class-sp-widget-league-table.php:61
1547
+ #: includes/widgets/class-sp-widget-player-gallery.php:64
1548
+ #: includes/widgets/class-sp-widget-player-gallery.php:89
1549
+ #: includes/widgets/class-sp-widget-player-list.php:64
1550
+ #: includes/widgets/class-sp-widget-player-list.php:109
1551
+ msgid "Add New"
1552
+ msgstr "Дадаць новы"
1553
+
1554
+ #: includes/class-sp-post-types.php:43 includes/class-sp-post-types.php:72
1555
+ #: includes/class-sp-post-types.php:101 includes/class-sp-post-types.php:130
1556
+ #: includes/class-sp-post-types.php:159
1557
+ msgid "Parent"
1558
+ msgstr "Бацькоўскі"
1559
+
1560
+ #: includes/class-sp-post-types.php:44 includes/class-sp-post-types.php:73
1561
+ #: includes/class-sp-post-types.php:102 includes/class-sp-post-types.php:131
1562
+ #: includes/class-sp-post-types.php:160
1563
+ msgid "Parent:"
1564
+ msgstr ""
1565
+
1566
+ #: includes/class-sp-post-types.php:45 includes/class-sp-post-types.php:74
1567
+ #: includes/class-sp-post-types.php:103 includes/class-sp-post-types.php:132
1568
+ #: includes/class-sp-post-types.php:161 includes/class-sp-post-types.php:196
1569
+ #: includes/class-sp-post-types.php:226 includes/class-sp-post-types.php:256
1570
+ #: includes/class-sp-post-types.php:286 includes/class-sp-post-types.php:316
1571
+ #: includes/class-sp-post-types.php:346 includes/class-sp-post-types.php:376
1572
+ #: includes/class-sp-post-types.php:406 includes/class-sp-post-types.php:437
1573
+ #: includes/class-sp-post-types.php:467 includes/class-sp-post-types.php:498
1574
+ #: includes/class-sp-post-types.php:528 includes/class-sp-post-types.php:559
1575
+ msgid "Search"
1576
+ msgstr "Знайсці"
1577
+
1578
+ #: includes/class-sp-post-types.php:46 includes/class-sp-post-types.php:75
1579
+ #: includes/class-sp-post-types.php:104 includes/class-sp-post-types.php:133
1580
+ #: includes/class-sp-post-types.php:162 includes/class-sp-post-types.php:197
1581
+ #: includes/class-sp-post-types.php:198 includes/class-sp-post-types.php:227
1582
+ #: includes/class-sp-post-types.php:228 includes/class-sp-post-types.php:257
1583
+ #: includes/class-sp-post-types.php:258 includes/class-sp-post-types.php:287
1584
+ #: includes/class-sp-post-types.php:288 includes/class-sp-post-types.php:317
1585
+ #: includes/class-sp-post-types.php:318 includes/class-sp-post-types.php:347
1586
+ #: includes/class-sp-post-types.php:348 includes/class-sp-post-types.php:377
1587
+ #: includes/class-sp-post-types.php:378 includes/class-sp-post-types.php:407
1588
+ #: includes/class-sp-post-types.php:408 includes/class-sp-post-types.php:438
1589
+ #: includes/class-sp-post-types.php:439 includes/class-sp-post-types.php:468
1590
+ #: includes/class-sp-post-types.php:469 includes/class-sp-post-types.php:499
1591
+ #: includes/class-sp-post-types.php:500 includes/class-sp-post-types.php:529
1592
+ #: includes/class-sp-post-types.php:530 includes/class-sp-post-types.php:560
1593
+ #: includes/class-sp-post-types.php:561 includes/sp-core-functions.php:763
1594
+ #: includes/sp-core-functions.php:803
1595
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:180
1596
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:114
1597
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:32
1598
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:101
1599
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:32
1600
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:97
1601
+ #: includes/admin/views/html-admin-config.php:43
1602
+ #: includes/admin/views/html-admin-config.php:117
1603
+ #: includes/admin/views/html-admin-config.php:171
1604
+ #: includes/admin/views/html-admin-config.php:228
1605
+ #: includes/admin/views/html-admin-config.php:280
1606
+ #: includes/admin/views/html-admin-config.php:335
1607
+ #: includes/admin/views/html-admin-overview.php:282
1608
+ msgid "No results found."
1609
+ msgstr "Вынікаў не знойдзена."
1610
+
1611
+ #: includes/class-sp-post-types.php:64 includes/class-sp-post-types.php:78
1612
+ #: includes/admin/class-sp-admin-menus.php:79
1613
+ #: includes/admin/class-sp-admin-menus.php:277
1614
+ #: includes/admin/class-sp-admin-permalink-settings.php:30
1615
+ #: includes/admin/importers/class-sp-player-importer.php:31
1616
+ #: includes/admin/importers/class-sp-staff-importer.php:30
1617
+ #: includes/admin/importers/class-sp-team-importer.php:28
1618
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:69
1619
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:68
1620
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:68
1621
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:131
1622
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
1623
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:128
1624
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:135
1625
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:65
1626
+ #: includes/admin/views/html-admin-page-status.php:306
1627
+ msgid "Seasons"
1628
+ msgstr ""
1629
+
1630
+ #: includes/class-sp-post-types.php:67
1631
+ msgid "Edit Season"
1632
+ msgstr ""
1633
+
1634
+ #: includes/class-sp-post-types.php:93 includes/class-sp-post-types.php:107
1635
+ #: includes/admin/class-sp-admin-menus.php:281
1636
+ #: includes/admin/class-sp-admin-permalink-settings.php:26
1637
+ #: includes/admin/views/html-admin-page-status.php:316
1638
+ msgid "Venues"
1639
+ msgstr ""
1640
+
1641
+ #: includes/class-sp-post-types.php:96
1642
+ msgid "Edit Venue"
1643
+ msgstr ""
1644
+
1645
+ #: includes/class-sp-post-types.php:122 includes/class-sp-post-types.php:136
1646
+ #: includes/admin/class-sp-admin-menus.php:273
1647
+ #: includes/admin/class-sp-admin-permalink-settings.php:33
1648
+ #: includes/admin/importers/class-sp-player-importer.php:28
1649
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:66
1650
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:71
1651
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
1652
+ #: includes/admin/views/html-admin-page-status.php:326
1653
+ msgid "Positions"
1654
+ msgstr ""
1655
+
1656
+ #: includes/class-sp-post-types.php:125
1657
+ msgid "Edit Position"
1658
+ msgstr ""
1659
+
1660
+ #: includes/class-sp-post-types.php:151 includes/class-sp-post-types.php:165
1661
+ #: includes/admin/class-sp-admin-menus.php:238
1662
+ #: includes/admin/importers/class-sp-staff-importer.php:27
1663
+ msgid "Roles"
1664
+ msgstr ""
1665
+
1666
+ #: includes/class-sp-post-types.php:152
1667
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:65
1668
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:55
1669
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:62
1670
+ msgid "Role"
1671
+ msgstr ""
1672
+
1673
+ #: includes/class-sp-post-types.php:154
1674
+ msgid "Edit Role"
1675
+ msgstr ""
1676
+
1677
+ #: includes/class-sp-post-types.php:190 includes/sp-core-functions.php:1098
1678
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:127
1679
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:27
1680
+ #: includes/admin/views/html-admin-config.php:74
1681
+ #: includes/admin/views/html-admin-config.php:78
1682
+ #: includes/admin/views/html-admin-page-status.php:237
1683
+ #: templates/event-results.php:90
1684
+ msgid "Team Results"
1685
+ msgstr ""
1686
+
1687
+ #: includes/class-sp-post-types.php:191
1688
+ msgid "Result"
1689
+ msgstr ""
1690
+
1691
+ #: includes/class-sp-post-types.php:192
1692
+ msgid "Add New Result"
1693
+ msgstr ""
1694
+
1695
+ #: includes/class-sp-post-types.php:193
1696
+ msgid "Edit Result"
1697
+ msgstr ""
1698
+
1699
+ #: includes/class-sp-post-types.php:194 includes/class-sp-post-types.php:224
1700
+ #: includes/class-sp-post-types.php:254 includes/class-sp-post-types.php:284
1701
+ #: includes/class-sp-post-types.php:314 includes/class-sp-post-types.php:344
1702
+ #: includes/class-sp-post-types.php:374 includes/class-sp-post-types.php:404
1703
+ #: includes/class-sp-post-types.php:435 includes/class-sp-post-types.php:465
1704
+ #: includes/class-sp-post-types.php:496 includes/class-sp-post-types.php:526
1705
+ #: includes/class-sp-post-types.php:557
1706
+ msgid "New"
1707
+ msgstr ""
1708
+
1709
+ #: includes/class-sp-post-types.php:220
1710
+ #: includes/admin/views/html-admin-config.php:19
1711
+ #: includes/admin/views/html-admin-page-status.php:227
1712
+ msgid "Event Outcomes"
1713
+ msgstr ""
1714
+
1715
+ #: includes/class-sp-post-types.php:222
1716
+ msgid "Add New Outcome"
1717
+ msgstr ""
1718
+
1719
+ #: includes/class-sp-post-types.php:223
1720
+ msgid "Edit Outcome"
1721
+ msgstr ""
1722
+
1723
+ #: includes/class-sp-post-types.php:250
1724
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:144
1725
+ #: includes/admin/views/html-admin-config.php:200
1726
+ #: includes/admin/views/html-admin-page-status.php:257
1727
+ msgid "Table Columns"
1728
+ msgstr ""
1729
+
1730
+ #: includes/class-sp-post-types.php:251
1731
+ msgid "Column"
1732
+ msgstr "Слупок"
1733
+
1734
+ #: includes/class-sp-post-types.php:252
1735
+ msgid "Add New Column"
1736
+ msgstr ""
1737
+
1738
+ #: includes/class-sp-post-types.php:253
1739
+ msgid "Edit Column"
1740
+ msgstr ""
1741
+
1742
+ #: includes/class-sp-post-types.php:280
1743
+ #: includes/admin/views/html-admin-config.php:258
1744
+ #: includes/admin/views/html-admin-page-status.php:267
1745
+ msgid "Player Metrics"
1746
+ msgstr ""
1747
+
1748
+ #: includes/class-sp-post-types.php:281
1749
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:52
1750
+ msgid "Metric"
1751
+ msgstr ""
1752
+
1753
+ #: includes/class-sp-post-types.php:282
1754
+ msgid "Add New Metric"
1755
+ msgstr ""
1756
+
1757
+ #: includes/class-sp-post-types.php:283
1758
+ msgid "Edit Metric"
1759
+ msgstr ""
1760
+
1761
+ #: includes/class-sp-post-types.php:310 includes/class-sp-post-types.php:311
1762
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:128
1763
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:35
1764
+ #: includes/admin/settings/class-sp-settings-events.php:102
1765
+ #: includes/admin/views/html-admin-config.php:147
1766
+ #: includes/admin/views/html-admin-page-status.php:247
1767
+ msgid "Player Performance"
1768
+ msgstr ""
1769
+
1770
+ #: includes/class-sp-post-types.php:312
1771
+ msgid "Add New Performance"
1772
+ msgstr ""
1773
+
1774
+ #: includes/class-sp-post-types.php:313
1775
+ msgid "Edit Performance"
1776
+ msgstr ""
1777
+
1778
+ #: includes/class-sp-post-types.php:340
1779
+ #: includes/admin/views/html-admin-config.php:309
1780
+ #: includes/admin/views/html-admin-page-status.php:277
1781
+ msgid "Player Statistics"
1782
+ msgstr ""
1783
+
1784
+ #: includes/class-sp-post-types.php:341
1785
+ msgid "Statistic"
1786
+ msgstr ""
1787
+
1788
+ #: includes/class-sp-post-types.php:342
1789
+ msgid "Add New Statistic"
1790
+ msgstr ""
1791
+
1792
+ #: includes/class-sp-post-types.php:343
1793
+ msgid "Edit Statistic"
1794
+ msgstr ""
1795
+
1796
+ #: includes/class-sp-post-types.php:370
1797
+ #: includes/admin/class-sp-admin-permalink-settings.php:25
1798
+ #: includes/admin/class-sp-admin-taxonomies.php:134
1799
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:53
1800
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:136
1801
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
1802
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
1803
+ #: includes/admin/settings/class-sp-settings-events.php:25
1804
+ msgid "Events"
1805
+ msgstr ""
1806
+
1807
+ #: includes/class-sp-post-types.php:372
1808
+ #: includes/admin/class-sp-admin-welcome.php:247
1809
+ msgid "Add New Event"
1810
+ msgstr ""
1811
+
1812
+ #: includes/class-sp-post-types.php:373
1813
+ msgid "Edit Event"
1814
+ msgstr ""
1815
+
1816
+ #: includes/class-sp-post-types.php:375
1817
+ msgid "View Event"
1818
+ msgstr ""
1819
+
1820
+ #: includes/class-sp-post-types.php:400
1821
+ #: includes/admin/class-sp-admin-permalink-settings.php:27
1822
+ msgid "Calendars"
1823
+ msgstr ""
1824
+
1825
+ #: includes/class-sp-post-types.php:402
1826
+ msgid "Add New Calendar"
1827
+ msgstr ""
1828
+
1829
+ #: includes/class-sp-post-types.php:403
1830
+ msgid "Edit Calendar"
1831
+ msgstr ""
1832
+
1833
+ #: includes/class-sp-post-types.php:405
1834
+ msgid "View Calendar"
1835
+ msgstr ""
1836
+
1837
+ #: includes/class-sp-post-types.php:433
1838
+ #: includes/admin/class-sp-admin-welcome.php:245
1839
+ msgid "Add New Team"
1840
+ msgstr ""
1841
+
1842
+ #: includes/class-sp-post-types.php:434
1843
+ msgid "Edit Team"
1844
+ msgstr ""
1845
+
1846
+ #: includes/class-sp-post-types.php:436
1847
+ msgid "View Team"
1848
+ msgstr ""
1849
+
1850
+ #: includes/class-sp-post-types.php:461
1851
+ #: includes/admin/class-sp-admin-permalink-settings.php:31
1852
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:143
1853
+ #: includes/admin/settings/class-sp-settings-teams.php:53
1854
+ msgid "League Tables"
1855
+ msgstr ""
1856
+
1857
+ #: includes/class-sp-post-types.php:463
1858
+ msgid "Add New League Table"
1859
+ msgstr ""
1860
+
1861
+ #: includes/class-sp-post-types.php:464
1862
+ msgid "Edit League Table"
1863
+ msgstr ""
1864
+
1865
+ #: includes/class-sp-post-types.php:466
1866
+ msgid "View League Table"
1867
+ msgstr ""
1868
+
1869
+ #: includes/class-sp-post-types.php:492
1870
+ #: includes/admin/class-sp-admin-permalink-settings.php:32
1871
+ #: includes/admin/importers/class-sp-event-importer.php:32
1872
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:52
1873
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:69
1874
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:122
1875
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:170
1876
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:105
1877
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:58
1878
+ #: includes/admin/settings/class-sp-settings-players.php:25
1879
+ #: includes/admin/settings/class-sp-settings-players.php:62
1880
+ msgid "Players"
1881
+ msgstr ""
1882
+
1883
+ #: includes/class-sp-post-types.php:494
1884
+ #: includes/admin/class-sp-admin-welcome.php:246
1885
+ msgid "Add New Player"
1886
+ msgstr ""
1887
+
1888
+ #: includes/class-sp-post-types.php:495
1889
+ msgid "Edit Player"
1890
+ msgstr ""
1891
+
1892
+ #: includes/class-sp-post-types.php:497
1893
+ msgid "View Player"
1894
+ msgstr ""
1895
+
1896
+ #: includes/class-sp-post-types.php:522
1897
+ #: includes/admin/class-sp-admin-permalink-settings.php:34
1898
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:142
1899
+ #: includes/admin/settings/class-sp-settings-players.php:59
1900
+ msgid "Player Lists"
1901
+ msgstr ""
1902
+
1903
+ #: includes/class-sp-post-types.php:524
1904
+ msgid "Add New Player List"
1905
+ msgstr ""
1906
+
1907
+ #: includes/class-sp-post-types.php:525
1908
+ msgid "Edit Player List"
1909
+ msgstr ""
1910
+
1911
+ #: includes/class-sp-post-types.php:527
1912
+ msgid "View Player List"
1913
+ msgstr ""
1914
+
1915
+ #: includes/class-sp-post-types.php:555
1916
+ msgid "Add New Staff"
1917
+ msgstr ""
1918
+
1919
+ #: includes/class-sp-post-types.php:556
1920
+ msgid "Edit Staff"
1921
+ msgstr ""
1922
+
1923
+ #: includes/class-sp-post-types.php:558
1924
+ #: includes/admin/importers/class-sp-staff-importer.php:141
1925
+ msgid "View Staff"
1926
+ msgstr ""
1927
+
1928
+ #: includes/sp-core-functions.php:318
1929
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:98
1930
+ #: templates/team-link.php:21
1931
+ msgid "Visit Site"
1932
+ msgstr ""
1933
+
1934
+ #: includes/sp-core-functions.php:350
1935
+ msgid "Average"
1936
+ msgstr ""
1937
+
1938
+ #: includes/sp-core-functions.php:408
1939
+ msgid "Published"
1940
+ msgstr ""
1941
+
1942
+ #: includes/sp-core-functions.php:409
1943
+ msgid "Scheduled"
1944
+ msgstr "Запланаваныя"
1945
+
1946
+ #: includes/sp-core-functions.php:686 includes/sp-core-functions.php:826
1947
+ msgid "(no title)"
1948
+ msgstr "(без загалоўку)"
1949
+
1950
+ #: includes/sp-core-functions.php:703 includes/sp-core-functions.php:783
1951
+ msgid "Select All"
1952
+ msgstr "Вылучыць усё"
1953
+
1954
+ #: includes/sp-core-functions.php:764 includes/sp-core-functions.php:767
1955
+ msgid "Show all"
1956
+ msgstr ""
1957
+
1958
+ #: includes/sp-core-functions.php:1083
1959
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:87
1960
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:101
1961
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:97
1962
+ #: templates/player-details.php:52 templates/staff-details.php:36
1963
+ msgid "Current Team"
1964
+ msgstr ""
1965
+
1966
+ #: includes/sp-core-functions.php:1084
1967
+ #: includes/admin/importers/class-sp-event-importer.php:26
1968
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:92
1969
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:49
1970
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:42
1971
+ #: templates/event-details.php:21 templates/event-list.php:57
1972
+ msgid "Date"
1973
+ msgstr "Дата"
1974
+
1975
+ #: includes/sp-core-functions.php:1088
1976
+ #: includes/admin/importers/class-sp-player-importer.php:32
1977
+ #: includes/admin/importers/class-sp-staff-importer.php:31
1978
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:59
1979
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
1980
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:71
1981
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:72
1982
+ #: includes/admin/settings/class-sp-settings-players.php:50
1983
+ #: includes/admin/settings/class-sp-settings-staff.php:52
1984
+ #: templates/player-details.php:34 templates/staff-details.php:32
1985
+ msgid "Nationality"
1986
+ msgstr ""
1987
+
1988
+ #: includes/sp-core-functions.php:1090
1989
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:101
1990
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:98
1991
+ #: templates/player-details.php:61 templates/staff-details.php:43
1992
+ msgid "Past Teams"
1993
+ msgstr ""
1994
+
1995
+ #: includes/sp-core-functions.php:1093 templates/league-table.php:53
1996
+ msgid "Pos"
1997
+ msgstr ""
1998
+
1999
+ #: includes/sp-core-functions.php:1095
2000
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:167
2001
+ #: templates/event-list.php:215
2002
+ msgid "Preview"
2003
+ msgstr ""
2004
+
2005
+ #: includes/sp-core-functions.php:1096 templates/player-list.php:90
2006
+ msgid "Rank"
2007
+ msgstr ""
2008
+
2009
+ #: includes/sp-core-functions.php:1097
2010
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:165
2011
+ #: templates/event-list.php:213
2012
+ msgid "Recap"
2013
+ msgstr ""
2014
+
2015
+ #: includes/sp-core-functions.php:1101
2016
+ msgid "Substitutes"
2017
+ msgstr ""
2018
+
2019
+ #: includes/sp-core-functions.php:1105
2020
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:64
2021
+ #: templates/event-list.php:71
2022
+ msgid "Time/Results"
2023
+ msgstr ""
2024
+
2025
+ #: includes/sp-core-functions.php:1108 templates/event-blocks.php:118
2026
+ #: templates/event-calendar.php:211 templates/event-list.php:234
2027
+ msgid "View all events"
2028
+ msgstr ""
2029
+
2030
+ #: includes/sp-core-functions.php:1109 templates/player-gallery.php:149
2031
+ #: templates/player-list.php:164
2032
+ msgid "View all players"
2033
+ msgstr ""
2034
+
2035
+ #: includes/sp-core-functions.php:1110 templates/league-table.php:154
2036
+ msgid "View full table"
2037
+ msgstr ""
2038
+
2039
+ #: includes/sp-template-hooks.php:151
2040
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:48
2041
+ #: includes/admin/post-types/class-sp-admin-cpt-metric.php:45
2042
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:46
2043
+ #: includes/admin/post-types/class-sp-admin-cpt-performance.php:45
2044
+ #: includes/admin/post-types/class-sp-admin-cpt-result.php:45
2045
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:47
2046
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:137
2047
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:152
2048
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:170
2049
+ #: includes/admin/views/html-admin-config.php:29
2050
+ #: includes/admin/views/html-admin-config.php:87
2051
+ #: includes/admin/views/html-admin-config.php:157
2052
+ #: includes/admin/views/html-admin-config.php:212
2053
+ #: includes/admin/views/html-admin-config.php:267
2054
+ #: includes/admin/views/html-admin-config.php:320
2055
+ msgid "Description"
2056
+ msgstr ""
2057
+
2058
+ #: includes/sp-template-hooks.php:154
2059
+ msgid ""
2060
+ "The description is not prominent by default; however, some themes may show "
2061
+ "it."
2062
+ msgstr ""
2063
+
2064
+ #: includes/sp-template-hooks.php:157
2065
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:44
2066
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:44
2067
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:34
2068
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-statistic-details.php:31
2069
+ #: includes/admin/views/html-admin-config.php:208
2070
+ #: includes/admin/views/html-admin-config.php:317
2071
+ msgid "Key"
2072
+ msgstr "Ключ"
2073
+
2074
+ #: includes/sp-template-hooks.php:157
2075
+ #: includes/admin/post-types/class-sp-admin-cpt-metric.php:44
2076
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:44
2077
+ #: includes/admin/post-types/class-sp-admin-cpt-performance.php:44
2078
+ #: includes/admin/post-types/class-sp-admin-cpt-result.php:44
2079
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-metric-details.php:27
2080
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-outcome-details.php:28
2081
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-performance-details.php:27
2082
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-result-details.php:27
2083
+ #: includes/admin/views/html-admin-config.php:27
2084
+ #: includes/admin/views/html-admin-config.php:156
2085
+ #: includes/admin/views/html-admin-config.php:266
2086
+ msgid "Variable"
2087
+ msgstr ""
2088
+
2089
+ #: includes/sp-template-hooks.php:160
2090
+ #: includes/admin/views/html-admin-config.php:154
2091
+ msgid "Icon"
2092
+ msgstr ""
2093
+
2094
+ #: includes/sp-template-hooks.php:163
2095
+ msgid "Select Icon"
2096
+ msgstr ""
2097
+
2098
+ #: includes/sp-template-hooks.php:166
2099
+ msgid "Add icon"
2100
+ msgstr ""
2101
+
2102
+ #: includes/sp-template-hooks.php:169
2103
+ msgid "Remove icon"
2104
+ msgstr ""
2105
+
2106
+ #: includes/sp-template-hooks.php:177
2107
+ msgid "User"
2108
+ msgstr ""
2109
+
2110
+ #: includes/sp-template-hooks.php:185
2111
+ msgid "Photo"
2112
+ msgstr ""
2113
+
2114
+ #: includes/sp-template-hooks.php:188
2115
+ msgid "Select Photo"
2116
+ msgstr ""
2117
+
2118
+ #: includes/sp-template-hooks.php:191
2119
+ msgid "Add photo"
2120
+ msgstr ""
2121
+
2122
+ #: includes/sp-template-hooks.php:194
2123
+ msgid "Remove photo"
2124
+ msgstr ""
2125
+
2126
+ #: includes/sp-template-hooks.php:202
2127
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:63
2128
+ msgid "Logo"
2129
+ msgstr ""
2130
+
2131
+ #: includes/sp-template-hooks.php:205
2132
+ msgid "Select Logo"
2133
+ msgstr ""
2134
+
2135
+ #: includes/sp-template-hooks.php:208
2136
+ msgid "Add logo"
2137
+ msgstr ""
2138
+
2139
+ #: includes/sp-template-hooks.php:211
2140
+ msgid "Remove logo"
2141
+ msgstr ""
2142
+
2143
+ #: includes/sp-template-hooks.php:219
2144
+ msgid "Date/Time:"
2145
+ msgstr ""
2146
+
2147
+ #: includes/sp-template-hooks.php:219
2148
+ msgid "Now"
2149
+ msgstr ""
2150
+
2151
+ #: includes/sp-template-hooks.php:348
2152
+ #: includes/admin/class-sp-admin-post-types.php:62
2153
+ msgid "Settings saved."
2154
+ msgstr "Налады захаваныя."
2155
+
2156
+ #: includes/sp-template-hooks.php:350
2157
+ #: includes/admin/class-sp-admin-post-types.php:64
2158
+ #: includes/admin/views/html-admin-config.php:50
2159
+ #: includes/admin/views/html-admin-config.php:125
2160
+ #: includes/admin/views/html-admin-config.php:178
2161
+ #: includes/admin/views/html-admin-config.php:235
2162
+ #: includes/admin/views/html-admin-config.php:287
2163
+ #: includes/admin/views/html-admin-config.php:342
2164
+ #: includes/admin/views/html-admin-overview.php:225
2165
+ msgid "View All"
2166
+ msgstr ""
2167
+
2168
+ #: includes/sp-template-hooks.php:356 includes/sp-template-hooks.php:359
2169
+ #: includes/sp-template-hooks.php:364
2170
+ #: includes/admin/class-sp-admin-post-types.php:69
2171
+ #: includes/admin/class-sp-admin-post-types.php:72
2172
+ #: includes/admin/class-sp-admin-post-types.php:77
2173
+ msgid "Changes saved."
2174
+ msgstr "Змены захаваныя."
2175
+
2176
+ #: includes/sp-template-hooks.php:361 includes/sp-template-hooks.php:366
2177
+ #: includes/sp-template-hooks.php:376
2178
+ #: includes/admin/class-sp-admin-post-types.php:74
2179
+ #: includes/admin/class-sp-admin-post-types.php:79
2180
+ #: includes/admin/class-sp-admin-post-types.php:89
2181
+ msgid "Success!"
2182
+ msgstr "Гатова!"
2183
+
2184
+ #: includes/sp-template-hooks.php:368 includes/sp-template-hooks.php:374
2185
+ #: includes/sp-template-hooks.php:378
2186
+ #: includes/admin/class-sp-admin-post-types.php:81
2187
+ #: includes/admin/class-sp-admin-post-types.php:87
2188
+ #: includes/admin/class-sp-admin-post-types.php:91
2189
+ #, php-format
2190
+ msgid "Preview %s"
2191
+ msgstr ""
2192
+
2193
+ #: includes/sp-template-hooks.php:371
2194
+ #: includes/admin/class-sp-admin-post-types.php:84
2195
+ #, php-format
2196
+ msgid "Scheduled for: <b>%1$s</b>."
2197
+ msgstr ""
2198
+
2199
+ #: includes/sp-template-hooks.php:372
2200
+ #: includes/admin/class-sp-admin-post-types.php:85
2201
+ msgid "M j, Y @ G:i"
2202
+ msgstr ""
2203
+
2204
+ #: includes/admin/class-sp-admin-assets.php:106
2205
+ #: includes/admin/class-sp-admin-settings.php:114
2206
+ #: includes/admin/importers/class-sp-event-importer.php:487
2207
+ #: includes/admin/importers/class-sp-event-importer.php:502
2208
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:163
2209
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:189
2210
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:78
2211
+ #: includes/admin/views/html-admin-page-status.php:224
2212
+ msgid "None"
2213
+ msgstr "няма"
2214
+
2215
+ #: includes/admin/class-sp-admin-assets.php:107
2216
+ msgid "&mdash; Remove &mdash;"
2217
+ msgstr ""
2218
+
2219
+ #: includes/admin/class-sp-admin-assets.php:112
2220
+ #: includes/admin/importers/class-sp-importer.php:176
2221
+ #, php-format
2222
+ msgid "Displaying %s&#8211;%s of %s"
2223
+ msgstr ""
2224
+
2225
+ #: includes/admin/class-sp-admin-dashboard.php:34
2226
+ #: includes/admin/class-sp-admin-menus.php:51
2227
+ #: includes/admin/class-sp-admin-permalink-settings.php:47
2228
+ #: includes/admin/views/html-admin-overview.php:19
2229
+ #: includes/admin/views/html-admin-overview.php:76
2230
+ #: includes/admin/views/html-admin-overview.php:127
2231
+ #: includes/admin/views/html-admin-overview.php:148
2232
+ #: includes/admin/views/html-admin-overview.php:230
2233
+ #: includes/admin/views/html-admin-overview.php:275
2234
+ #: includes/admin/views/html-admin-overview.php:295
2235
+ #: includes/widgets/class-sp-widget-countdown.php:6
2236
+ #: includes/widgets/class-sp-widget-event-blocks.php:6
2237
+ #: includes/widgets/class-sp-widget-event-calendar.php:6
2238
+ #: includes/widgets/class-sp-widget-event-list.php:6
2239
+ #: includes/widgets/class-sp-widget-league-table.php:6
2240
+ #: includes/widgets/class-sp-widget-player-gallery.php:6
2241
+ #: includes/widgets/class-sp-widget-player-list.php:6
2242
+ msgid "SportsPress"
2243
+ msgstr ""
2244
+
2245
+ #: includes/admin/class-sp-admin-dashboard.php:49
2246
+ #, php-format
2247
+ msgid "%s "
2248
+ msgid_plural "%s "
2249
+ msgstr[0] ""
2250
+ msgstr[1] ""
2251
+
2252
+ #: includes/admin/class-sp-admin-dashboard.php:80
2253
+ #, php-format
2254
+ msgid "<strong>%s</strong> until next event"
2255
+ msgstr ""
2256
+
2257
+ #: includes/admin/class-sp-admin-dashboard.php:87
2258
+ #, php-format
2259
+ msgid "<strong>%s event</strong> scheduled"
2260
+ msgid_plural "<strong>%s events</strong> scheduled"
2261
+ msgstr[0] ""
2262
+ msgstr[1] ""
2263
+
2264
+ #: includes/admin/class-sp-admin-dashboard.php:92
2265
+ #, php-format
2266
+ msgid "<strong>%s event</strong> published"
2267
+ msgid_plural "<strong>%s events</strong> published"
2268
+ msgstr[0] ""
2269
+ msgstr[1] ""
2270
+
2271
+ #: includes/admin/class-sp-admin-importers.php:31
2272
+ msgid "SportsPress Events (CSV)"
2273
+ msgstr ""
2274
+
2275
+ #: includes/admin/class-sp-admin-importers.php:31
2276
+ msgid "Import <strong>events</strong> from a csv file."
2277
+ msgstr ""
2278
+
2279
+ #: includes/admin/class-sp-admin-importers.php:32
2280
+ msgid "SportsPress Teams (CSV)"
2281
+ msgstr ""
2282
+
2283
+ #: includes/admin/class-sp-admin-importers.php:32
2284
+ msgid "Import <strong>teams</strong> from a csv file."
2285
+ msgstr ""
2286
+
2287
+ #: includes/admin/class-sp-admin-importers.php:33
2288
+ msgid "SportsPress Players (CSV)"
2289
+ msgstr ""
2290
+
2291
+ #: includes/admin/class-sp-admin-importers.php:33
2292
+ msgid "Import <strong>players</strong> from a csv file."
2293
+ msgstr ""
2294
+
2295
+ #: includes/admin/class-sp-admin-importers.php:34
2296
+ msgid "SportsPress Staff (CSV)"
2297
+ msgstr ""
2298
+
2299
+ #: includes/admin/class-sp-admin-importers.php:34
2300
+ msgid "Import <strong>staff</strong> from a csv file."
2301
+ msgstr ""
2302
+
2303
+ #: includes/admin/class-sp-admin-menus.php:58
2304
+ #: includes/admin/views/html-admin-overview.php:3
2305
+ msgid "Overview"
2306
+ msgstr ""
2307
+
2308
+ #: includes/admin/class-sp-admin-menus.php:65
2309
+ #: includes/admin/views/html-admin-config.php:3
2310
+ msgid "Configure"
2311
+ msgstr ""
2312
+
2313
+ #: includes/admin/class-sp-admin-menus.php:86
2314
+ #: includes/admin/views/html-admin-page-status.php:2
2315
+ #: includes/admin/views/html-notice-template-check.php:6
2316
+ msgid "System Status"
2317
+ msgstr ""
2318
+
2319
+ #: includes/admin/class-sp-admin-permalink-settings.php:75
2320
+ msgid ""
2321
+ "These settings control the permalinks used for SportsPress. These settings "
2322
+ "only apply when <strong>not using \"default\" permalinks above</strong>."
2323
+ msgstr ""
2324
+
2325
+ #: includes/admin/class-sp-admin-settings.php:57
2326
+ msgid "Action failed. Please refresh the page and retry."
2327
+ msgstr ""
2328
+
2329
+ #: includes/admin/class-sp-admin-settings.php:64
2330
+ #: includes/admin/class-sp-admin-welcome.php:192
2331
+ msgid "Your settings have been saved."
2332
+ msgstr ""
2333
+
2334
+ #: includes/admin/class-sp-admin-sports.php:25
2335
+ #: includes/admin/class-sp-admin-sports.php:46
2336
+ #: includes/admin/class-sp-admin-sports.php:48
2337
+ msgid "Traditional Sports"
2338
+ msgstr ""
2339
+
2340
+ #: includes/admin/class-sp-admin-sports.php:26
2341
+ #: includes/admin/class-sp-admin-sports.php:66
2342
+ #: includes/admin/class-sp-admin-sports.php:68
2343
+ msgid "Esports"
2344
+ msgstr ""
2345
+
2346
+ #: includes/admin/class-sp-admin-sports.php:27
2347
+ msgid "Other"
2348
+ msgstr ""
2349
+
2350
+ #: includes/admin/class-sp-admin-sports.php:27
2351
+ msgid "Custom"
2352
+ msgstr ""
2353
+
2354
+ #: includes/admin/class-sp-admin-taxonomies.php:61
2355
+ #: includes/admin/class-sp-admin-taxonomies.php:81
2356
+ #: includes/admin/class-sp-admin-taxonomies.php:133
2357
+ msgid "Address"
2358
+ msgstr "Адрас"
2359
+
2360
+ #: includes/admin/class-sp-admin-taxonomies.php:66
2361
+ #: includes/admin/class-sp-admin-taxonomies.php:85
2362
+ msgid "Drag the marker to the venue's location."
2363
+ msgstr ""
2364
+
2365
+ #: includes/admin/class-sp-admin-taxonomies.php:89
2366
+ msgid "Latitude"
2367
+ msgstr ""
2368
+
2369
+ #: includes/admin/class-sp-admin-taxonomies.php:95
2370
+ msgid "Longitude"
2371
+ msgstr ""
2372
+
2373
+ #: includes/admin/class-sp-admin-welcome.php:45
2374
+ msgid "Welcome to SportsPress"
2375
+ msgstr ""
2376
+
2377
+ #: includes/admin/class-sp-admin-welcome.php:135
2378
+ msgid "Welcome to SportsPress!"
2379
+ msgstr ""
2380
+
2381
+ #: includes/admin/class-sp-admin-welcome.php:140
2382
+ msgid "Thanks, all done!"
2383
+ msgstr ""
2384
+
2385
+ #: includes/admin/class-sp-admin-welcome.php:142
2386
+ msgid "Thank you for updating to the latest version!"
2387
+ msgstr ""
2388
+
2389
+ #: includes/admin/class-sp-admin-welcome.php:144
2390
+ msgid "Thanks for installing!"
2391
+ msgstr ""
2392
+
2393
+ #: includes/admin/class-sp-admin-welcome.php:146
2394
+ #, php-format
2395
+ msgid "%s SportsPress %s has lots of refinements we think you&#8217;ll love."
2396
+ msgstr ""
2397
+
2398
+ #: includes/admin/class-sp-admin-welcome.php:150
2399
+ #, php-format
2400
+ msgid "Version %s"
2401
+ msgstr ""
2402
+
2403
+ #: includes/admin/class-sp-admin-welcome.php:159
2404
+ #: includes/admin/views/html-notice-install.php:7
2405
+ msgid "Get Started"
2406
+ msgstr ""
2407
+
2408
+ #: includes/admin/class-sp-admin-welcome.php:198
2409
+ #: includes/admin/settings/class-sp-settings-general.php:245
2410
+ #: includes/admin/settings/class-sp-settings-general.php:248
2411
+ msgid "Timezone"
2412
+ msgstr ""
2413
+
2414
+ #: includes/admin/class-sp-admin-welcome.php:222
2415
+ #: includes/admin/settings/class-sp-settings-general.php:49
2416
+ #: includes/admin/views/html-admin-page-status.php:223
2417
+ msgid "Sport"
2418
+ msgstr ""
2419
+
2420
+ #: includes/admin/class-sp-admin-welcome.php:235
2421
+ #: includes/admin/views/html-admin-settings.php:14
2422
+ msgid "Save changes"
2423
+ msgstr ""
2424
+
2425
+ #: includes/admin/class-sp-admin-welcome.php:242
2426
+ msgid "Next Steps"
2427
+ msgstr ""
2428
+
2429
+ #: includes/admin/class-sp-admin-welcome.php:243
2430
+ msgid "We&#8217;ve assembled some links to get you started:"
2431
+ msgstr ""
2432
+
2433
+ #: includes/admin/class-sp-admin-welcome.php:251
2434
+ msgid "Translators"
2435
+ msgstr ""
2436
+
2437
+ #: includes/admin/class-sp-admin-welcome.php:252
2438
+ msgid ""
2439
+ "SportsPress has been kindly translated into several other languages thanks "
2440
+ "to our translation team. Want to see your name? <a "
2441
+ "href=\"https://www.transifex.com/projects/p/sportspress/\">Translate "
2442
+ "SportsPress</a>."
2443
+ msgstr ""
2444
+
2445
+ #: includes/admin/class-sp-admin-welcome.php:268
2446
+ msgid "Go to SportsPress Settings"
2447
+ msgstr ""
2448
+
2449
+ #: includes/admin/importers/class-sp-event-importer.php:24
2450
+ msgid "Import Events"
2451
+ msgstr ""
2452
+
2453
+ #: includes/admin/importers/class-sp-event-importer.php:407
2454
+ #, php-format
2455
+ msgid ""
2456
+ "Import complete - imported <strong>%s</strong> events and skipped "
2457
+ "<strong>%s</strong>."
2458
+ msgstr ""
2459
+
2460
+ #: includes/admin/importers/class-sp-event-importer.php:417
2461
+ #: includes/admin/importers/class-sp-player-importer.php:145
2462
+ #: includes/admin/importers/class-sp-staff-importer.php:141
2463
+ #: includes/admin/importers/class-sp-team-importer.php:102
2464
+ msgid "All done!"
2465
+ msgstr ""
2466
+
2467
+ #: includes/admin/importers/class-sp-event-importer.php:417
2468
+ msgid "View Events"
2469
+ msgstr ""
2470
+
2471
+ #: includes/admin/importers/class-sp-event-importer.php:430
2472
+ #: includes/admin/importers/class-sp-player-importer.php:168
2473
+ #: includes/admin/importers/class-sp-staff-importer.php:164
2474
+ #: includes/admin/importers/class-sp-team-importer.php:115
2475
+ msgid ""
2476
+ "Hi there! Choose a .csv file to upload, then click \"Upload file and "
2477
+ "import\"."
2478
+ msgstr ""
2479
+
2480
+ #: includes/admin/importers/class-sp-event-importer.php:431
2481
+ #, php-format
2482
+ msgid ""
2483
+ "Events need to be defined with columns in a specific order (3+ columns). <a "
2484
+ "href=\"%s\">Click here to download a sample</a>."
2485
+ msgstr ""
2486
+
2487
+ #: includes/admin/importers/class-sp-event-importer.php:448
2488
+ msgid "Date Format"
2489
+ msgstr ""
2490
+
2491
+ #: includes/admin/importers/class-sp-event-importer.php:467
2492
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:90
2493
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:122
2494
+ msgid "Format"
2495
+ msgstr ""
2496
+
2497
+ #: includes/admin/importers/class-sp-event-importer.php:484
2498
+ #: includes/admin/importers/class-sp-event-importer.php:499
2499
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:44
2500
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:62
2501
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:79
2502
+ msgid "-- Not set --"
2503
+ msgstr "-- Не абрана --"
2504
+
2505
+ #: includes/admin/importers/class-sp-importer.php:100
2506
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:47
2507
+ msgid "Disable"
2508
+ msgstr ""
2509
+
2510
+ #: includes/admin/importers/class-sp-importer.php:145
2511
+ #: includes/admin/importers/class-sp-importer.php:159
2512
+ #: includes/admin/importers/class-sp-importer.php:170
2513
+ msgid "Insert row after"
2514
+ msgstr ""
2515
+
2516
+ #: includes/admin/importers/class-sp-importer.php:158
2517
+ msgid "Delete row"
2518
+ msgstr ""
2519
+
2520
+ #: includes/admin/importers/class-sp-importer.php:185
2521
+ #: includes/admin/importers/class-sp-importer.php:221
2522
+ #: includes/admin/importers/class-sp-importer.php:236
2523
+ msgid "Sorry, there has been an error."
2524
+ msgstr "Выбачайце, адбылася памылка."
2525
+
2526
+ #: includes/admin/importers/class-sp-importer.php:186
2527
+ msgid "The CSV is invalid."
2528
+ msgstr ""
2529
+
2530
+ #: includes/admin/importers/class-sp-player-importer.php:24
2531
+ #: includes/admin/importers/class-sp-player-importer.php:157
2532
+ msgid "Import Players"
2533
+ msgstr ""
2534
+
2535
+ #: includes/admin/importers/class-sp-player-importer.php:135
2536
+ #, php-format
2537
+ msgid ""
2538
+ "Import complete - imported <strong>%s</strong> players and skipped "
2539
+ "<strong>%s</strong>."
2540
+ msgstr ""
2541
+
2542
+ #: includes/admin/importers/class-sp-player-importer.php:145
2543
+ msgid "View Players"
2544
+ msgstr ""
2545
+
2546
+ #: includes/admin/importers/class-sp-player-importer.php:169
2547
+ #, php-format
2548
+ msgid ""
2549
+ "Players need to be defined with columns in a specific order (7 columns). <a "
2550
+ "href=\"%s\">Click here to download a sample</a>."
2551
+ msgstr ""
2552
+
2553
+ #: includes/admin/importers/class-sp-staff-importer.php:24
2554
+ #: includes/admin/importers/class-sp-staff-importer.php:153
2555
+ msgid "Import Staff"
2556
+ msgstr ""
2557
+
2558
+ #: includes/admin/importers/class-sp-staff-importer.php:131
2559
+ #, php-format
2560
+ msgid ""
2561
+ "Import complete - imported <strong>%s</strong> staff and skipped "
2562
+ "<strong>%s</strong>."
2563
+ msgstr ""
2564
+
2565
+ #: includes/admin/importers/class-sp-staff-importer.php:165
2566
+ #, php-format
2567
+ msgid ""
2568
+ "Staff need to be defined with columns in a specific order (6 columns). <a "
2569
+ "href=\"%s\">Click here to download a sample</a>."
2570
+ msgstr ""
2571
+
2572
+ #: includes/admin/importers/class-sp-team-importer.php:24
2573
+ msgid "Import Teams"
2574
+ msgstr ""
2575
+
2576
+ #: includes/admin/importers/class-sp-team-importer.php:29
2577
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:95
2578
+ #: includes/admin/views/html-admin-page-status.php:24
2579
+ msgid "Site URL"
2580
+ msgstr ""
2581
+
2582
+ #: includes/admin/importers/class-sp-team-importer.php:30
2583
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:45
2584
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:66
2585
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-outcome-details.php:33
2586
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:101
2587
+ #: includes/admin/views/html-admin-config.php:28
2588
+ msgid "Abbreviation"
2589
+ msgstr ""
2590
+
2591
+ #: includes/admin/importers/class-sp-team-importer.php:31
2592
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:57
2593
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:80
2594
+ #: templates/event-list.php:61
2595
+ msgid "Home"
2596
+ msgstr ""
2597
+
2598
+ #: includes/admin/importers/class-sp-team-importer.php:92
2599
+ #, php-format
2600
+ msgid ""
2601
+ "Import complete - imported <strong>%s</strong> teams and skipped "
2602
+ "<strong>%s</strong>."
2603
+ msgstr ""
2604
+
2605
+ #: includes/admin/importers/class-sp-team-importer.php:102
2606
+ msgid "View Teams"
2607
+ msgstr ""
2608
+
2609
+ #: includes/admin/importers/class-sp-team-importer.php:116
2610
+ #, php-format
2611
+ msgid ""
2612
+ "Teams need to be defined with columns in a specific order (3 columns). <a "
2613
+ "href=\"%s\">Click here to download a sample</a>."
2614
+ msgstr ""
2615
+
2616
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:48
2617
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:48
2618
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:48
2619
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:55
2620
+ msgid "Title"
2621
+ msgstr "Загаловак"
2622
+
2623
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:54
2624
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:53
2625
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:134
2626
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:166
2627
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:67
2628
+ msgid "Layout"
2629
+ msgstr ""
2630
+
2631
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:115
2632
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:194
2633
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:103
2634
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:150
2635
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:134
2636
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:85
2637
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:111
2638
+ msgid "Show all leagues"
2639
+ msgstr ""
2640
+
2641
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:124
2642
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:203
2643
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:112
2644
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:159
2645
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:143
2646
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:94
2647
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:120
2648
+ msgid "Show all seasons"
2649
+ msgstr ""
2650
+
2651
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:135
2652
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:186
2653
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:123
2654
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:142
2655
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:126
2656
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:105
2657
+ msgid "Show all teams"
2658
+ msgstr ""
2659
+
2660
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:43
2661
+ #: includes/admin/post-types/class-sp-admin-cpt-metric.php:43
2662
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:43
2663
+ #: includes/admin/post-types/class-sp-admin-cpt-performance.php:43
2664
+ #: includes/admin/post-types/class-sp-admin-cpt-result.php:43
2665
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:43
2666
+ #: includes/admin/views/html-admin-config.php:26
2667
+ #: includes/admin/views/html-admin-config.php:85
2668
+ #: includes/admin/views/html-admin-config.php:155
2669
+ #: includes/admin/views/html-admin-config.php:207
2670
+ #: includes/admin/views/html-admin-config.php:265
2671
+ #: includes/admin/views/html-admin-config.php:316
2672
+ msgid "Label"
2673
+ msgstr ""
2674
+
2675
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:45
2676
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:45
2677
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:108
2678
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:118
2679
+ #: includes/admin/views/html-admin-config.php:209
2680
+ #: includes/admin/views/html-admin-config.php:318
2681
+ msgid "Equation"
2682
+ msgstr ""
2683
+
2684
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:46
2685
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:46
2686
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:39
2687
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-statistic-details.php:36
2688
+ #: includes/admin/views/html-admin-config.php:210
2689
+ #: includes/admin/views/html-admin-config.php:319
2690
+ msgid "Rounding"
2691
+ msgstr ""
2692
+
2693
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:47
2694
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:113
2695
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:43
2696
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:98
2697
+ #: includes/admin/views/html-admin-config.php:211
2698
+ msgid "Sort Order"
2699
+ msgstr ""
2700
+
2701
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:131
2702
+ msgid "Show all positions"
2703
+ msgstr ""
2704
+
2705
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:65
2706
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:31
2707
+ msgid "URL"
2708
+ msgstr ""
2709
+
2710
+ #: includes/admin/post-types/class-sp-admin-cpt.php:42
2711
+ #, php-format
2712
+ msgid "Insert into %s"
2713
+ msgstr ""
2714
+
2715
+ #: includes/admin/post-types/class-sp-admin-cpt.php:43
2716
+ #, php-format
2717
+ msgid "Uploaded to this %s"
2718
+ msgstr ""
2719
+
2720
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:121
2721
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:155
2722
+ msgid "Shortcodes"
2723
+ msgstr ""
2724
+
2725
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:125
2726
+ msgid "Video"
2727
+ msgstr ""
2728
+
2729
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:146
2730
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:162
2731
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:174
2732
+ msgid "Profile"
2733
+ msgstr "Профіль"
2734
+
2735
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:156
2736
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:167
2737
+ msgid "Columns"
2738
+ msgstr ""
2739
+
2740
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:158
2741
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:26
2742
+ msgid "Metrics"
2743
+ msgstr ""
2744
+
2745
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:57
2746
+ #: templates/event-list.php:62
2747
+ msgid "Away"
2748
+ msgstr ""
2749
+
2750
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:189
2751
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:122
2752
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:170
2753
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
2754
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
2755
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
2756
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
2757
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
2758
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
2759
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:62
2760
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:72
2761
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:90
2762
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:105
2763
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:120
2764
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:135
2765
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:106
2766
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:150
2767
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:57
2768
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:72
2769
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:87
2770
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
2771
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:106
2772
+ #, php-format
2773
+ msgid "Select %s"
2774
+ msgstr ""
2775
+
2776
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:31
2777
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:86
2778
+ msgid "Status"
2779
+ msgstr "Статус"
2780
+
2781
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-shortcode.php:26
2782
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:24
2783
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-shortcode.php:26
2784
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:24
2785
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-shortcode.php:24
2786
+ msgid ""
2787
+ "Copy this code and paste it into your post, page or text widget content."
2788
+ msgstr ""
2789
+
2790
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2791
+ msgid "Attended"
2792
+ msgstr ""
2793
+
2794
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2795
+ msgid "Started"
2796
+ msgstr ""
2797
+
2798
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2799
+ msgid "Substituted"
2800
+ msgstr ""
2801
+
2802
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2803
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
2804
+ msgid "Minutes"
2805
+ msgstr ""
2806
+
2807
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
2808
+ msgid "for"
2809
+ msgstr ""
2810
+
2811
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
2812
+ msgid "against"
2813
+ msgstr ""
2814
+
2815
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:43
2816
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:44
2817
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:45
2818
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:46
2819
+ msgid "Outcomes"
2820
+ msgstr ""
2821
+
2822
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:44
2823
+ msgid "Streak"
2824
+ msgstr ""
2825
+
2826
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:45
2827
+ msgid "Last 5"
2828
+ msgstr ""
2829
+
2830
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:46
2831
+ msgid "Last 10"
2832
+ msgstr ""
2833
+
2834
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:58
2835
+ msgid "Operators"
2836
+ msgstr ""
2837
+
2838
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:71
2839
+ msgid "Constants"
2840
+ msgstr ""
2841
+
2842
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:28
2843
+ #: includes/admin/settings/class-sp-settings-events.php:131
2844
+ msgid "Full Time"
2845
+ msgstr ""
2846
+
2847
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:163
2848
+ msgid "Starting Lineup"
2849
+ msgstr ""
2850
+
2851
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:164
2852
+ msgid "Substitute"
2853
+ msgstr ""
2854
+
2855
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:62
2856
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:93
2857
+ msgid "&mdash; None &mdash;"
2858
+ msgstr ""
2859
+
2860
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:27
2861
+ msgid "Remove video"
2862
+ msgstr ""
2863
+
2864
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:36
2865
+ msgid "Add video"
2866
+ msgstr ""
2867
+
2868
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:43
2869
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:49
2870
+ #: includes/admin/settings/class-sp-settings-events.php:107
2871
+ msgid "Values"
2872
+ msgstr ""
2873
+
2874
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:44
2875
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:50
2876
+ msgid "Adjustments"
2877
+ msgstr ""
2878
+
2879
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:84
2880
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:84
2881
+ #: includes/admin/views/html-admin-config.php:39
2882
+ #: includes/admin/views/html-admin-config.php:113
2883
+ #: includes/admin/views/html-admin-config.php:167
2884
+ #: includes/admin/views/html-admin-config.php:224
2885
+ #: includes/admin/views/html-admin-config.php:276
2886
+ #: includes/admin/views/html-admin-config.php:331
2887
+ msgid "Edit"
2888
+ msgstr "Змяніць"
2889
+
2890
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:89
2891
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:89
2892
+ msgid "Save"
2893
+ msgstr "Захаваць"
2894
+
2895
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:75
2896
+ msgid "Grouping"
2897
+ msgstr ""
2898
+
2899
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:82
2900
+ msgid "Sort by"
2901
+ msgstr ""
2902
+
2903
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:86
2904
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:83
2905
+ msgid "Current Teams"
2906
+ msgstr ""
2907
+
2908
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:56
2909
+ msgid "Highlight"
2910
+ msgstr ""
2911
+
2912
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:103
2913
+ msgid ""
2914
+ "The abbreviation is not prominent by default; however, some themes may show "
2915
+ "it"
2916
+ msgstr ""
2917
+
2918
+ #: includes/admin/settings/class-sp-settings-events.php:42
2919
+ msgid "Event Options"
2920
+ msgstr ""
2921
+
2922
+ #: includes/admin/settings/class-sp-settings-events.php:45
2923
+ #: includes/admin/settings/class-sp-settings-general.php:285
2924
+ #: includes/admin/settings/class-sp-settings-players.php:42
2925
+ #: includes/admin/settings/class-sp-settings-staff.php:44
2926
+ #: includes/admin/settings/class-sp-settings-teams.php:44
2927
+ msgid "Link"
2928
+ msgstr ""
2929
+
2930
+ #: includes/admin/settings/class-sp-settings-events.php:46
2931
+ msgid "Link events"
2932
+ msgstr ""
2933
+
2934
+ #: includes/admin/settings/class-sp-settings-events.php:54
2935
+ msgid "Link venues"
2936
+ msgstr ""
2937
+
2938
+ #: includes/admin/settings/class-sp-settings-events.php:62
2939
+ #: includes/admin/settings/class-sp-settings-events.php:156
2940
+ #: includes/admin/settings/class-sp-settings-events.php:198
2941
+ #: includes/admin/settings/class-sp-settings-players.php:78
2942
+ #: includes/admin/settings/class-sp-settings-teams.php:72
2943
+ msgid "Limit"
2944
+ msgstr ""
2945
+
2946
+ #: includes/admin/settings/class-sp-settings-events.php:66
2947
+ #: includes/admin/settings/class-sp-settings-teams.php:76
2948
+ msgid "teams"
2949
+ msgstr ""
2950
+
2951
+ #: includes/admin/settings/class-sp-settings-events.php:86
2952
+ msgid "Display players"
2953
+ msgstr ""
2954
+
2955
+ #: includes/admin/settings/class-sp-settings-events.php:94
2956
+ msgid "Display total"
2957
+ msgstr ""
2958
+
2959
+ #: includes/admin/settings/class-sp-settings-events.php:108
2960
+ msgid "Icons"
2961
+ msgstr ""
2962
+
2963
+ #: includes/admin/settings/class-sp-settings-events.php:114
2964
+ msgid "Display maps"
2965
+ msgstr ""
2966
+
2967
+ #: includes/admin/settings/class-sp-settings-events.php:123
2968
+ msgid "Display staff"
2969
+ msgstr ""
2970
+
2971
+ #: includes/admin/settings/class-sp-settings-events.php:145
2972
+ #: includes/widgets/class-sp-widget-event-list.php:6
2973
+ msgid "Event List"
2974
+ msgstr ""
2975
+
2976
+ #: includes/admin/settings/class-sp-settings-events.php:148
2977
+ #: includes/admin/settings/class-sp-settings-events.php:190
2978
+ #: includes/admin/settings/class-sp-settings-players.php:70
2979
+ #: includes/admin/settings/class-sp-settings-teams.php:64
2980
+ msgid "Pagination"
2981
+ msgstr ""
2982
+
2983
+ #: includes/admin/settings/class-sp-settings-events.php:149
2984
+ #: includes/admin/settings/class-sp-settings-events.php:191
2985
+ #: includes/admin/settings/class-sp-settings-players.php:71
2986
+ #: includes/admin/settings/class-sp-settings-teams.php:65
2987
+ msgid "Paginate"
2988
+ msgstr ""
2989
+
2990
+ #: includes/admin/settings/class-sp-settings-events.php:160
2991
+ #: includes/admin/settings/class-sp-settings-events.php:202
2992
+ msgid "events"
2993
+ msgstr ""
2994
+
2995
+ #: includes/admin/settings/class-sp-settings-events.php:170
2996
+ #: includes/widgets/class-sp-widget-event-blocks.php:6
2997
+ msgid "Event Blocks"
2998
+ msgstr ""
2999
+
3000
+ #: includes/admin/settings/class-sp-settings-events.php:182
3001
+ msgid "Display season"
3002
+ msgstr ""
3003
+
3004
+ #: includes/admin/settings/class-sp-settings-events.php:240
3005
+ #: includes/admin/settings/class-sp-settings-events.php:244
3006
+ msgid "Delimiter"
3007
+ msgstr ""
3008
+
3009
+ #: includes/admin/settings/class-sp-settings-events.php:249
3010
+ msgid "Custom:"
3011
+ msgstr ""
3012
+
3013
+ #: includes/admin/settings/class-sp-settings-general.php:25
3014
+ msgid "General"
3015
+ msgstr "Агульныя"
3016
+
3017
+ #: includes/admin/settings/class-sp-settings-general.php:44
3018
+ msgid "General Options"
3019
+ msgstr ""
3020
+
3021
+ #: includes/admin/settings/class-sp-settings-general.php:57
3022
+ msgid "Google Maps"
3023
+ msgstr ""
3024
+
3025
+ #: includes/admin/settings/class-sp-settings-general.php:63
3026
+ msgid "Satellite"
3027
+ msgstr ""
3028
+
3029
+ #: includes/admin/settings/class-sp-settings-general.php:64
3030
+ msgid "Hybrid"
3031
+ msgstr ""
3032
+
3033
+ #: includes/admin/settings/class-sp-settings-general.php:65
3034
+ msgid "Terrain"
3035
+ msgstr ""
3036
+
3037
+ #: includes/admin/settings/class-sp-settings-general.php:71
3038
+ msgid "Styles and Scripts"
3039
+ msgstr ""
3040
+
3041
+ #: includes/admin/settings/class-sp-settings-general.php:79
3042
+ msgid "Align"
3043
+ msgstr ""
3044
+
3045
+ #: includes/admin/settings/class-sp-settings-general.php:85
3046
+ msgid "Left"
3047
+ msgstr ""
3048
+
3049
+ #: includes/admin/settings/class-sp-settings-general.php:86
3050
+ msgid "Center"
3051
+ msgstr ""
3052
+
3053
+ #: includes/admin/settings/class-sp-settings-general.php:87
3054
+ msgid "Right"
3055
+ msgstr ""
3056
+
3057
+ #: includes/admin/settings/class-sp-settings-general.php:92
3058
+ msgid "Padding"
3059
+ msgstr ""
3060
+
3061
+ #: includes/admin/settings/class-sp-settings-general.php:108
3062
+ msgid "Custom CSS"
3063
+ msgstr ""
3064
+
3065
+ #: includes/admin/settings/class-sp-settings-general.php:115
3066
+ msgid "Scripts"
3067
+ msgstr ""
3068
+
3069
+ #: includes/admin/settings/class-sp-settings-general.php:116
3070
+ msgid "Live countdowns"
3071
+ msgstr ""
3072
+
3073
+ #: includes/admin/settings/class-sp-settings-general.php:121
3074
+ msgid "This will enable a script allowing the countdowns to be animated."
3075
+ msgstr ""
3076
+
3077
+ #: includes/admin/settings/class-sp-settings-general.php:125
3078
+ msgid "Shortcode menu"
3079
+ msgstr ""
3080
+
3081
+ #: includes/admin/settings/class-sp-settings-general.php:130
3082
+ msgid ""
3083
+ "This will enable a shortcode menu to be displayed in the visual editor."
3084
+ msgstr ""
3085
+
3086
+ #: includes/admin/settings/class-sp-settings-general.php:134
3087
+ msgid "Tables"
3088
+ msgstr ""
3089
+
3090
+ #: includes/admin/settings/class-sp-settings-general.php:135
3091
+ msgid "Responsive"
3092
+ msgstr ""
3093
+
3094
+ #: includes/admin/settings/class-sp-settings-general.php:143
3095
+ msgid "Sortable"
3096
+ msgstr ""
3097
+
3098
+ #: includes/admin/settings/class-sp-settings-general.php:151
3099
+ msgid "Scrollable"
3100
+ msgstr ""
3101
+
3102
+ #: includes/admin/settings/class-sp-settings-general.php:159
3103
+ msgid "Header Offset"
3104
+ msgstr ""
3105
+
3106
+ #: includes/admin/settings/class-sp-settings-general.php:266
3107
+ msgid "Frontend Styles"
3108
+ msgstr ""
3109
+
3110
+ #: includes/admin/settings/class-sp-settings-general.php:281
3111
+ #: includes/admin/views/html-admin-config.php:84
3112
+ msgid "Primary"
3113
+ msgstr ""
3114
+
3115
+ #: includes/admin/settings/class-sp-settings-general.php:282
3116
+ msgid "Background"
3117
+ msgstr ""
3118
+
3119
+ #: includes/admin/settings/class-sp-settings-general.php:283
3120
+ #: includes/admin/settings/class-sp-settings-text.php:25
3121
+ #: includes/admin/settings/class-sp-settings-text.php:41
3122
+ msgid "Text"
3123
+ msgstr ""
3124
+
3125
+ #: includes/admin/settings/class-sp-settings-general.php:284
3126
+ msgid "Heading"
3127
+ msgstr ""
3128
+
3129
+ #: includes/admin/settings/class-sp-settings-general.php:291
3130
+ msgid "Enable"
3131
+ msgstr ""
3132
+
3133
+ #: includes/admin/settings/class-sp-settings-players.php:39
3134
+ msgid "Player Options"
3135
+ msgstr ""
3136
+
3137
+ #: includes/admin/settings/class-sp-settings-players.php:43
3138
+ msgid "Link players"
3139
+ msgstr ""
3140
+
3141
+ #: includes/admin/settings/class-sp-settings-players.php:51
3142
+ #: includes/admin/settings/class-sp-settings-staff.php:53
3143
+ msgid "Display national flags"
3144
+ msgstr ""
3145
+
3146
+ #: includes/admin/settings/class-sp-settings-players.php:63
3147
+ msgid "Display photos"
3148
+ msgstr ""
3149
+
3150
+ #: includes/admin/settings/class-sp-settings-players.php:82
3151
+ msgid "players"
3152
+ msgstr ""
3153
+
3154
+ #: includes/admin/settings/class-sp-settings-staff.php:41
3155
+ msgid "Staff Options"
3156
+ msgstr ""
3157
+
3158
+ #: includes/admin/settings/class-sp-settings-staff.php:45
3159
+ msgid "Link staff"
3160
+ msgstr ""
3161
+
3162
+ #: includes/admin/settings/class-sp-settings-teams.php:41
3163
+ msgid "Team Options"
3164
+ msgstr ""
3165
+
3166
+ #: includes/admin/settings/class-sp-settings-teams.php:45
3167
+ msgid "Link teams"
3168
+ msgstr ""
3169
+
3170
+ #: includes/admin/settings/class-sp-settings-text.php:41
3171
+ msgid "The following options affect how words are displayed on the frontend."
3172
+ msgstr ""
3173
+
3174
+ #: includes/admin/views/html-admin-config.php:20
3175
+ #: includes/admin/views/html-admin-config.php:75
3176
+ #: includes/admin/views/html-admin-config.php:148
3177
+ msgid "Used for events."
3178
+ msgstr ""
3179
+
3180
+ #: includes/admin/views/html-admin-config.php:86
3181
+ msgid "Variables"
3182
+ msgstr ""
3183
+
3184
+ #: includes/admin/views/html-admin-config.php:99
3185
+ #, php-format
3186
+ msgid "Default (%s)"
3187
+ msgstr ""
3188
+
3189
+ #: includes/admin/views/html-admin-config.php:201
3190
+ msgid "Used for league tables."
3191
+ msgstr ""
3192
+
3193
+ #: includes/admin/views/html-admin-config.php:259
3194
+ #: includes/admin/views/html-admin-config.php:310
3195
+ msgid "Used for player lists."
3196
+ msgstr ""
3197
+
3198
+ #: includes/admin/views/html-admin-config.php:353
3199
+ #: includes/admin/views/html-admin-overview.php:333
3200
+ #: includes/admin/views/html-admin-settings.php:22
3201
+ msgid ""
3202
+ "Love SportsPress? Help spread the word by rating us 5★ on WordPress.org"
3203
+ msgstr ""
3204
+
3205
+ #: includes/admin/views/html-admin-page-status.php:5
3206
+ msgid "Please include this information when requesting support:"
3207
+ msgstr ""
3208
+
3209
+ #: includes/admin/views/html-admin-page-status.php:6
3210
+ msgid "Get System Report"
3211
+ msgstr ""
3212
+
3213
+ #: includes/admin/views/html-admin-page-status.php:14
3214
+ msgid "Environment"
3215
+ msgstr ""
3216
+
3217
+ #: includes/admin/views/html-admin-page-status.php:20
3218
+ msgid "Home URL"
3219
+ msgstr ""
3220
+
3221
+ #: includes/admin/views/html-admin-page-status.php:28
3222
+ msgid "SP Version"
3223
+ msgstr ""
3224
+
3225
+ #: includes/admin/views/html-admin-page-status.php:32
3226
+ msgid "WP Version"
3227
+ msgstr ""
3228
+
3229
+ #: includes/admin/views/html-admin-page-status.php:36
3230
+ msgid "WP Multisite Enabled"
3231
+ msgstr ""
3232
+
3233
+ #: includes/admin/views/html-admin-page-status.php:37
3234
+ #: includes/admin/views/html-admin-page-status.php:61
3235
+ #: includes/admin/views/html-admin-page-status.php:86
3236
+ msgid "Yes"
3237
+ msgstr ""
3238
+
3239
+ #: includes/admin/views/html-admin-page-status.php:37
3240
+ #: includes/admin/views/html-admin-page-status.php:61
3241
+ #: includes/admin/views/html-admin-page-status.php:86
3242
+ msgid "No"
3243
+ msgstr ""
3244
+
3245
+ #: includes/admin/views/html-admin-page-status.php:40
3246
+ msgid "Web Server Info"
3247
+ msgstr ""
3248
+
3249
+ #: includes/admin/views/html-admin-page-status.php:44
3250
+ msgid "PHP Version"
3251
+ msgstr ""
3252
+
3253
+ #: includes/admin/views/html-admin-page-status.php:48
3254
+ msgid "WP Memory Limit"
3255
+ msgstr ""
3256
+
3257
+ #: includes/admin/views/html-admin-page-status.php:53
3258
+ #, php-format
3259
+ msgid ""
3260
+ "%s - We recommend setting memory to at least 64MB. See: <a "
3261
+ "href=\"%s\">Increasing memory allocated to PHP</a>"
3262
+ msgstr ""
3263
+
3264
+ #: includes/admin/views/html-admin-page-status.php:60
3265
+ msgid "WP Debug Mode"
3266
+ msgstr ""
3267
+
3268
+ #: includes/admin/views/html-admin-page-status.php:64
3269
+ msgid "WP Language"
3270
+ msgstr ""
3271
+
3272
+ #: includes/admin/views/html-admin-page-status.php:68
3273
+ msgid "WP Max Upload Size"
3274
+ msgstr ""
3275
+
3276
+ #: includes/admin/views/html-admin-page-status.php:73
3277
+ msgid "PHP Post Max Size"
3278
+ msgstr ""
3279
+
3280
+ #: includes/admin/views/html-admin-page-status.php:77
3281
+ msgid "PHP Time Limit"
3282
+ msgstr ""
3283
+
3284
+ #: includes/admin/views/html-admin-page-status.php:81
3285
+ msgid "PHP Max Input Vars"
3286
+ msgstr ""
3287
+
3288
+ #: includes/admin/views/html-admin-page-status.php:85
3289
+ msgid "SUHOSIN Installed"
3290
+ msgstr ""
3291
+
3292
+ #: includes/admin/views/html-admin-page-status.php:90
3293
+ msgid "Default Timezone"
3294
+ msgstr ""
3295
+
3296
+ #: includes/admin/views/html-admin-page-status.php:94
3297
+ #, php-format
3298
+ msgid "Default timezone is %s - it should be UTC"
3299
+ msgstr ""
3300
+
3301
+ #: includes/admin/views/html-admin-page-status.php:96
3302
+ #, php-format
3303
+ msgid "Default timezone is %s"
3304
+ msgstr ""
3305
+
3306
+ #: includes/admin/views/html-admin-page-status.php:104
3307
+ msgid "fsockopen/cURL"
3308
+ msgstr ""
3309
+
3310
+ #: includes/admin/views/html-admin-page-status.php:107
3311
+ msgid "Your server has fsockopen and cURL enabled."
3312
+ msgstr ""
3313
+
3314
+ #: includes/admin/views/html-admin-page-status.php:109
3315
+ msgid "Your server has fsockopen enabled, cURL is disabled."
3316
+ msgstr ""
3317
+
3318
+ #: includes/admin/views/html-admin-page-status.php:111
3319
+ msgid "Your server has cURL enabled, fsockopen is disabled."
3320
+ msgstr ""
3321
+
3322
+ #: includes/admin/views/html-admin-page-status.php:115
3323
+ msgid ""
3324
+ "Your server does not have fsockopen or cURL enabled - PayPal IPN and other "
3325
+ "scripts which communicate with other servers will not work. Contact your "
3326
+ "hosting provider."
3327
+ msgstr ""
3328
+
3329
+ #: includes/admin/views/html-admin-page-status.php:120
3330
+ msgid "SOAP Client"
3331
+ msgstr ""
3332
+
3333
+ #: includes/admin/views/html-admin-page-status.php:122
3334
+ msgid "Your server has the SOAP Client class enabled."
3335
+ msgstr ""
3336
+
3337
+ #: includes/admin/views/html-admin-page-status.php:125
3338
+ #, php-format
3339
+ msgid ""
3340
+ "Your server does not have the <a href=\"%s\">SOAP Client</a> class enabled -"
3341
+ " some gateway plugins which use SOAP may not work as expected."
3342
+ msgstr ""
3343
+
3344
+ #: includes/admin/views/html-admin-page-status.php:148
3345
+ msgid "Plugins"
3346
+ msgstr ""
3347
+
3348
+ #: includes/admin/views/html-admin-page-status.php:154
3349
+ msgid "Installed Plugins"
3350
+ msgstr ""
3351
+
3352
+ #: includes/admin/views/html-admin-page-status.php:174
3353
+ msgid "Visit plugin homepage"
3354
+ msgstr ""
3355
+
3356
+ #: includes/admin/views/html-admin-page-status.php:198
3357
+ #: includes/admin/views/html-admin-page-status.php:413
3358
+ msgid "is available"
3359
+ msgstr ""
3360
+
3361
+ #: includes/admin/views/html-admin-page-status.php:201
3362
+ msgid "by"
3363
+ msgstr ""
3364
+
3365
+ #: includes/admin/views/html-admin-page-status.php:201
3366
+ msgid "version"
3367
+ msgstr ""
3368
+
3369
+ #: includes/admin/views/html-admin-page-status.php:217
3370
+ msgid "SP Configuration"
3371
+ msgstr ""
3372
+
3373
+ #: includes/admin/views/html-admin-page-status.php:290
3374
+ msgid "SP Taxonomies"
3375
+ msgstr ""
3376
+
3377
+ #: includes/admin/views/html-admin-page-status.php:339
3378
+ msgid "SP Post Types"
3379
+ msgstr ""
3380
+
3381
+ #: includes/admin/views/html-admin-page-status.php:365
3382
+ msgid "Theme"
3383
+ msgstr ""
3384
+
3385
+ #: includes/admin/views/html-admin-page-status.php:402
3386
+ msgid "Theme Name"
3387
+ msgstr ""
3388
+
3389
+ #: includes/admin/views/html-admin-page-status.php:408
3390
+ msgid "Theme Version"
3391
+ msgstr ""
3392
+
3393
+ #: includes/admin/views/html-admin-page-status.php:417
3394
+ msgid "Author URL"
3395
+ msgstr ""
3396
+
3397
+ #: includes/admin/views/html-admin-page-status.php:426
3398
+ msgid "Templates"
3399
+ msgstr ""
3400
+
3401
+ #: includes/admin/views/html-admin-page-status.php:459
3402
+ #, php-format
3403
+ msgid ""
3404
+ "<code>%s</code> version <strong style=\"color:red\">%s</strong> is out of "
3405
+ "date. The core version is %s"
3406
+ msgstr ""
3407
+
3408
+ #: includes/admin/views/html-admin-page-status.php:470
3409
+ #: includes/admin/views/html-admin-page-status.php:476
3410
+ msgid "Template Overrides"
3411
+ msgstr ""
3412
+
3413
+ #: includes/admin/views/html-admin-page-status.php:477
3414
+ msgid "No overrides present in theme."
3415
+ msgstr ""
3416
+
3417
+ #: includes/admin/views/html-notice-install.php:5
3418
+ #, php-format
3419
+ msgid "Welcome to SportsPress %s"
3420
+ msgstr ""
3421
+
3422
+ #: includes/admin/views/html-notice-install.php:8
3423
+ #: includes/admin/views/html-notice-template-check.php:6
3424
+ #: includes/admin/views/html-notice-theme-support.php:8
3425
+ msgid "Hide this notice"
3426
+ msgstr ""
3427
+
3428
+ #: includes/admin/views/html-notice-template-check.php:5
3429
+ msgid ""
3430
+ "<strong>Your theme has bundled outdated copies of SportsPress template "
3431
+ "files</strong> &#8211; if you encounter functionality issues on the frontend"
3432
+ " this could the reason. Ensure you update or remove them (in general we "
3433
+ "recommend only bundling the template files you actually need to customize). "
3434
+ "See the system report for full details."
3435
+ msgstr ""
3436
+
3437
+ #: includes/admin/views/html-notice-theme-support.php:5
3438
+ msgid ""
3439
+ "<strong>Your theme does not declare SportsPress support</strong> &#8211; if "
3440
+ "you encounter layout issues please read our integration guide or choose a "
3441
+ "SportsPress theme :)"
3442
+ msgstr ""
3443
+
3444
+ #: includes/admin/views/html-notice-theme-support.php:7
3445
+ msgid "Theme Integration Guide"
3446
+ msgstr ""
3447
+
3448
+ #: includes/widgets/class-sp-widget-countdown.php:5
3449
+ msgid "A clock that counts down to an upcoming event."
3450
+ msgstr ""
3451
+
3452
+ #: includes/widgets/class-sp-widget-countdown.php:42
3453
+ #: includes/widgets/class-sp-widget-event-blocks.php:48
3454
+ #: includes/widgets/class-sp-widget-event-calendar.php:41
3455
+ #: includes/widgets/class-sp-widget-event-list.php:51
3456
+ #: includes/widgets/class-sp-widget-league-table.php:47
3457
+ #: includes/widgets/class-sp-widget-player-gallery.php:50
3458
+ #: includes/widgets/class-sp-widget-player-list.php:50
3459
+ msgid "Title:"
3460
+ msgstr "Загаловак:"
3461
+
3462
+ #: includes/widgets/class-sp-widget-event-blocks.php:5
3463
+ #: includes/widgets/class-sp-widget-event-list.php:5
3464
+ msgid "A list of events."
3465
+ msgstr ""
3466
+
3467
+ #: includes/widgets/class-sp-widget-event-calendar.php:5
3468
+ msgid "A calendar of events."
3469
+ msgstr ""
3470
+
3471
+ #: includes/widgets/class-sp-widget-event-calendar.php:6
3472
+ msgid "Event Calendar"
3473
+ msgstr ""
3474
+
3475
+ #: includes/widgets/class-sp-widget-league-table.php:5
3476
+ msgid "Display a league table."
3477
+ msgstr ""
3478
+
3479
+ #: includes/widgets/class-sp-widget-player-gallery.php:5
3480
+ msgid "Display a gallery of players."
3481
+ msgstr ""
3482
+
3483
+ #: includes/widgets/class-sp-widget-player-gallery.php:6
3484
+ msgid "Player Gallery"
3485
+ msgstr ""
3486
+
3487
+ #: includes/widgets/class-sp-widget-player-list.php:5
3488
+ msgid "Display a list of players."
3489
+ msgstr ""
3490
+
3491
+ #: includes/widgets/class-sp-widget-player-list.php:73
3492
+ msgid "Performance:"
3493
+ msgstr ""
3494
+
3495
+ #. translators: Calendar caption: 1: month name, 2: 4-digit year
3496
+ #: templates/event-calendar.php:88 templates/event-calendar.php:116
3497
+ #: templates/event-calendar.php:124
3498
+ #, php-format
3499
+ msgctxt "calendar caption"
3500
+ msgid "%1$s %2$s"
3501
+ msgstr ""
languages/sportspress-bg_BG.mo CHANGED
Binary file
languages/sportspress-bg_BG.po CHANGED
@@ -1,4 +1,4 @@
1
- #
2
  # Translators:
3
  # den_zlateva <den_zlateva@yahoo.com>, 2014
4
  # ThemeBoy <support@themeboy.com>, 2014
@@ -7,125 +7,44 @@
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: SportsPress\n"
10
- "POT-Creation-Date: 2014-07-21 15:46+1000\n"
11
- "PO-Revision-Date: 2014-08-03 23:36+1000\n"
12
- "Last-Translator: den_zlateva <den_zlateva@yahoo.com>\n"
13
- "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/"
14
- "sportspress/language/bg_BG/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
  "Language: bg_BG\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
- "X-Generator: Poedit 1.6.5\n"
21
  "X-Poedit-Basepath: ..\n"
22
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
23
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
24
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
25
- "X-Poedit-SourceCharset: UTF-8\n"
26
  "X-Poedit-SearchPath-0: .\n"
 
27
 
28
- #: sportspress.php:87 sportspress.php:96
29
  msgid "Cheatin&#8217; huh?"
30
  msgstr "Правиме се на луди, а?"
31
 
32
- #: sportspress.php:138 includes/admin/class-sp-admin-menus.php:102
33
  msgid "Settings"
34
  msgstr "Настройки"
35
 
36
- #: sportspress.php:139
37
  msgid "Docs"
38
  msgstr "Документи"
39
 
40
- #: sportspress.php:140
41
  msgid "Upgrade"
42
  msgstr "Ъпгрейд"
43
 
44
- #: sportspress.php:335 includes/class-sp-post-types.php:464
45
- #: includes/admin/class-sp-admin-permalink-settings.php:32
46
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:51
47
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:44
48
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:120
49
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:168
50
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:103
51
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:58
52
- #: includes/admin/settings/class-sp-settings-players.php:25
53
- #: includes/admin/settings/class-sp-settings-players.php:54
54
- msgid "Players"
55
- msgstr "Играчи"
56
-
57
- #: sportspress.php:337 assets/js/admin/editor-lang.php:19
58
- #: includes/class-sp-ajax.php:467 includes/class-sp-ajax.php:496
59
- #: includes/class-sp-install.php:160 includes/class-sp-player-list.php:366
60
- #: includes/class-sp-post-types.php:465 includes/sp-core-functions.php:1096
61
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:62
62
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:50
63
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:134
64
- #: templates/event-performance.php:64
65
- msgid "Player"
66
- msgstr "Играч"
67
-
68
- #: sportspress.php:339
69
- #: includes/admin/settings/class-sp-settings-players.php:86
70
- msgid "players"
71
- msgstr "играчи"
72
-
73
- #: sportspress.php:341 includes/class-sp-post-types.php:466
74
- #: includes/admin/class-sp-admin-welcome.php:263
75
- msgid "Add New Player"
76
- msgstr "Добави Нов Играч"
77
-
78
- #: sportspress.php:343 includes/class-sp-post-types.php:467
79
- msgid "Edit Player"
80
- msgstr "Редактирай Играч"
81
-
82
- #: sportspress.php:345
83
- #: includes/admin/settings/class-sp-settings-players.php:39
84
- msgid "Player Options"
85
- msgstr "Настройки на Играчи"
86
-
87
- #: sportspress.php:347 includes/class-sp-post-types.php:281
88
- #: includes/class-sp-post-types.php:282
89
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:127
90
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:35
91
- #: includes/admin/settings/class-sp-settings-config.php:227
92
- #: includes/admin/settings/class-sp-settings-events.php:85
93
- #: includes/admin/views/html-admin-page-status.php:247
94
- msgid "Player Performance"
95
- msgstr "Изпълнение на Играч"
96
-
97
- #: sportspress.php:349 includes/sp-template-hooks.php:170
98
- msgid "Photo"
99
- msgstr "Снимка"
100
-
101
- #: sportspress.php:351 includes/sp-template-hooks.php:176
102
- msgid "Add photo"
103
- msgstr "Добави снимка"
104
-
105
- #: sportspress.php:353 includes/sp-template-hooks.php:179
106
- msgid "Remove photo"
107
- msgstr "Изтрий снимка"
108
-
109
- #: sportspress.php:355 includes/sp-template-hooks.php:173
110
- msgid "Select Photo"
111
- msgstr "Избери снимка"
112
-
113
- #: sportspress.php:357
114
- msgid "Display photos"
115
- msgstr "Покажи снимки"
116
-
117
- #: sportspress.php:359 includes/admin/settings/class-sp-settings-events.php:94
118
- #: includes/admin/settings/class-sp-settings-players.php:55
119
- msgid "Link players"
120
- msgstr "Свържи играчи"
121
-
122
  #: assets/js/admin/editor-lang.php:5
123
  msgid "SportsPress Shortcodes"
124
  msgstr "SportsPress Шорткоди"
125
 
126
  #: assets/js/admin/editor-lang.php:6
127
- #: includes/admin/settings/class-sp-settings-general.php:107
128
- #: includes/admin/settings/class-sp-settings-general.php:167
129
  msgid "Auto"
130
  msgstr "Автоматично"
131
 
@@ -134,97 +53,120 @@ msgid "Manual"
134
  msgstr "Ръчен"
135
 
136
  #: assets/js/admin/editor-lang.php:8
137
- msgid "Single"
138
- msgstr "Единичен"
139
-
140
- #: assets/js/admin/editor-lang.php:9
141
  msgid "Select..."
142
  msgstr "Избери..."
143
 
144
- #: assets/js/admin/editor-lang.php:10
145
- msgid "Countdown"
146
- msgstr "Отброяване"
147
-
148
- #: assets/js/admin/editor-lang.php:11 includes/class-sp-ajax.php:57
149
  #: includes/class-sp-ajax.php:101 includes/class-sp-ajax.php:130
150
  #: includes/class-sp-ajax.php:159 includes/class-sp-ajax.php:290
151
- #: includes/class-sp-post-types.php:342 includes/sp-core-functions.php:1071
152
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:90
153
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:223
154
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:52
155
- #: includes/widgets/class-sp-widget-countdown.php:42
156
  #: includes/widgets/class-sp-widget-event-list.php:111
157
- #: templates/event-list.php:57
158
  msgid "Event"
159
  msgstr "Събитие"
160
 
161
- #: assets/js/admin/editor-lang.php:12 includes/sp-core-functions.php:1070
162
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:100
163
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:103
164
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:106
165
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:110
166
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:113
167
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:116
168
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:122
169
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:134
170
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:139
171
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:148
172
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:155
173
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:166
174
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:171
175
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:173
176
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:31
177
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:27
178
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
179
- #: templates/event-details.php:32
 
 
180
  msgid "Details"
181
  msgstr "Подробности"
182
 
183
- #: assets/js/admin/editor-lang.php:13
 
 
184
  msgid "Results"
185
  msgstr "Резултати"
186
 
187
- #: assets/js/admin/editor-lang.php:14
 
 
 
 
 
 
188
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:25
189
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:25
190
  msgid "Performance"
191
  msgstr "Изпълнение"
192
 
193
- #: assets/js/admin/editor-lang.php:15 includes/class-sp-ajax.php:188
194
  #: includes/class-sp-ajax.php:236 includes/class-sp-ajax.php:327
195
- #: includes/class-sp-formats.php:31 includes/class-sp-post-types.php:372
196
  #: includes/widgets/class-sp-widget-event-blocks.php:51
197
  #: includes/widgets/class-sp-widget-event-calendar.php:44
198
  #: includes/widgets/class-sp-widget-event-list.php:54
199
  msgid "Calendar"
200
  msgstr "Календар"
201
 
202
- #: assets/js/admin/editor-lang.php:16 assets/js/admin/editor-lang.php:21
203
- #: includes/class-sp-formats.php:32 includes/class-sp-formats.php:36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
204
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:55
 
 
 
 
 
 
 
 
205
  msgid "List"
206
  msgstr "Списък"
207
 
208
- #: assets/js/admin/editor-lang.php:17 includes/class-sp-formats.php:33
209
  msgid "Blocks"
210
  msgstr "Блокове"
211
 
212
- #: assets/js/admin/editor-lang.php:18 includes/class-sp-ajax.php:401
213
- #: includes/class-sp-post-types.php:433
214
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:149
215
- #: includes/widgets/class-sp-widget-league-table.php:50
216
- msgid "League Table"
217
- msgstr "Таблица на Лигата"
218
-
219
- #: assets/js/admin/editor-lang.php:20
220
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:158
221
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:27
222
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:26
223
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:31
224
- msgid "Statistics"
225
- msgstr "Статистики"
226
 
227
- #: assets/js/admin/editor-lang.php:22 includes/class-sp-formats.php:37
228
  msgid "Gallery"
229
  msgstr "Галерия"
230
 
@@ -234,7 +176,8 @@ msgstr "Галерия"
234
  #: includes/class-sp-ajax.php:327 includes/class-sp-ajax.php:401
235
  #: includes/class-sp-ajax.php:467 includes/class-sp-ajax.php:496
236
  #: includes/class-sp-ajax.php:525 includes/class-sp-ajax.php:615
237
- #: includes/widgets/class-sp-widget-countdown.php:42
 
238
  #: includes/widgets/class-sp-widget-event-blocks.php:51
239
  #: includes/widgets/class-sp-widget-event-calendar.php:44
240
  #: includes/widgets/class-sp-widget-event-list.php:54
@@ -247,17 +190,18 @@ msgstr "Избери %s:"
247
 
248
  #: includes/class-sp-ajax.php:63
249
  #: includes/admin/post-types/class-sp-admin-cpt-event.php:55
250
- #: includes/widgets/class-sp-widget-countdown.php:49
251
  msgid "(Auto)"
252
  msgstr "(Автоматично)"
253
 
254
  #: includes/class-sp-ajax.php:74
255
- #: includes/widgets/class-sp-widget-countdown.php:62
256
  msgid "Display venue"
257
  msgstr "Покажи местоположение"
258
 
259
  #: includes/class-sp-ajax.php:80
260
- #: includes/widgets/class-sp-widget-countdown.php:65
 
261
  msgid "Display league"
262
  msgstr "Покажи лига"
263
 
@@ -277,9 +221,9 @@ msgstr "Внеси %s"
277
  #: includes/class-sp-ajax.php:384 includes/class-sp-ajax.php:450
278
  #: includes/class-sp-ajax.php:479 includes/class-sp-ajax.php:508
279
  #: includes/class-sp-ajax.php:598 includes/class-sp-ajax.php:675
280
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:132
281
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:147
282
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:163
283
  msgid "Shortcode"
284
  msgstr "Шорткод"
285
 
@@ -290,21 +234,29 @@ msgstr "Шорткод"
290
  #: includes/class-sp-ajax.php:480 includes/class-sp-ajax.php:509
291
  #: includes/class-sp-ajax.php:599 includes/class-sp-ajax.php:676
292
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:33
293
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:86
294
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:83
295
  msgid "Cancel"
296
  msgstr "Отказ"
297
 
298
  #: includes/class-sp-ajax.php:194 includes/class-sp-ajax.php:264
299
  #: includes/class-sp-ajax.php:355 includes/class-sp-post-types.php:37
300
  #: includes/class-sp-post-types.php:66 includes/class-sp-post-types.php:95
301
- #: includes/class-sp-post-types.php:124 includes/sp-core-functions.php:407
302
- #: includes/sp-core-functions.php:438
303
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:57
304
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:72
305
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:87
306
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:102
307
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:64
 
 
 
 
 
 
 
 
308
  #: includes/widgets/class-sp-widget-event-blocks.php:55
309
  #: includes/widgets/class-sp-widget-event-calendar.php:48
310
  #: includes/widgets/class-sp-widget-event-list.php:58
@@ -325,9 +277,9 @@ msgstr "Статус:"
325
  #: includes/class-sp-ajax.php:371 includes/class-sp-ajax.php:567
326
  #: includes/class-sp-ajax.php:585 includes/class-sp-ajax.php:638
327
  #: includes/class-sp-ajax.php:656
328
- #: includes/admin/settings/class-sp-settings-config.php:181
329
- #: includes/admin/settings/class-sp-settings-general.php:73
330
- #: includes/admin/settings/class-sp-settings-general.php:95
331
  #: includes/admin/views/html-admin-page-status.php:65
332
  #: includes/widgets/class-sp-widget-event-blocks.php:71
333
  #: includes/widgets/class-sp-widget-event-blocks.php:84
@@ -384,7 +336,7 @@ msgstr "Подредба:"
384
  #: includes/class-sp-ajax.php:586 includes/class-sp-ajax.php:657
385
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:116
386
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
387
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:99
388
  #: includes/widgets/class-sp-widget-event-blocks.php:100
389
  #: includes/widgets/class-sp-widget-event-list.php:103
390
  #: includes/widgets/class-sp-widget-player-gallery.php:96
@@ -396,7 +348,7 @@ msgstr "Нарастващ"
396
  #: includes/class-sp-ajax.php:587 includes/class-sp-ajax.php:658
397
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:117
398
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
399
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:100
400
  #: includes/widgets/class-sp-widget-event-blocks.php:101
401
  #: includes/widgets/class-sp-widget-event-list.php:104
402
  #: includes/widgets/class-sp-widget-player-gallery.php:97
@@ -411,58 +363,62 @@ msgstr "Намаляващ"
411
  msgid "Columns:"
412
  msgstr "Колони:"
413
 
414
- #: includes/class-sp-ajax.php:291 includes/class-sp-post-types.php:402
415
- #: includes/sp-core-functions.php:1083
416
  #: includes/admin/class-sp-admin-permalink-settings.php:28
417
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:93
418
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:66
419
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:65
420
- #: includes/admin/post-types/class-sp-admin-cpt-table.php:50
421
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:123
422
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:58
 
 
 
423
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
424
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
425
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:70
426
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:85
427
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:101
428
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:145
429
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:55
430
- #: includes/admin/settings/class-sp-settings-events.php:60
431
- #: includes/admin/settings/class-sp-settings-events.php:131
432
- #: includes/admin/settings/class-sp-settings-players.php:64
433
  #: includes/admin/settings/class-sp-settings-teams.php:25
434
- #: includes/admin/settings/class-sp-settings-teams.php:48
435
  #: includes/widgets/class-sp-widget-event-list.php:112
436
- #: templates/event-list.php:60
437
  msgid "Teams"
438
  msgstr "Отбори:"
439
 
440
- #: includes/class-sp-ajax.php:292 includes/sp-core-functions.php:1084
441
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:92
 
442
  #: includes/widgets/class-sp-widget-event-list.php:113
443
- #: templates/event-details.php:20
444
  msgid "Time"
445
  msgstr "Време"
446
 
447
  #: includes/class-sp-ajax.php:293 includes/class-sp-post-types.php:94
448
- #: includes/sp-core-functions.php:1087
449
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:50
450
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:96
451
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:70
 
452
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:83
453
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:62
454
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:86
455
- #: includes/admin/settings/class-sp-settings-events.php:68
456
  #: includes/widgets/class-sp-widget-event-list.php:114
457
- #: templates/event-list.php:66 templates/event-venue.php:35
458
  msgid "Venue"
459
  msgstr "Местоположение"
460
 
461
- #: includes/class-sp-ajax.php:294 includes/sp-core-functions.php:1068
462
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:129
463
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:76
464
  #: includes/widgets/class-sp-widget-event-list.php:115
465
- #: templates/event-list.php:69
466
  msgid "Article"
467
  msgstr "Статия"
468
 
@@ -472,8 +428,8 @@ msgid "Number of teams to show:"
472
  msgstr "Покажи брой отбори:"
473
 
474
  #: includes/class-sp-ajax.php:440
475
- #: includes/admin/settings/class-sp-settings-events.php:61
476
- #: includes/admin/settings/class-sp-settings-teams.php:49
477
  #: includes/widgets/class-sp-widget-league-table.php:90
478
  msgid "Display logos"
479
  msgstr "Покажи лога"
@@ -483,14 +439,6 @@ msgstr "Покажи лога"
483
  msgid "Display link to view full table"
484
  msgstr "Покажи връзка за преглед на цялата таблица"
485
 
486
- #: includes/class-sp-ajax.php:525 includes/class-sp-ajax.php:615
487
- #: includes/class-sp-post-types.php:495
488
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:167
489
- #: includes/widgets/class-sp-widget-player-gallery.php:53
490
- #: includes/widgets/class-sp-widget-player-list.php:53
491
- msgid "Player List"
492
- msgstr "Списък на Играчи"
493
-
494
  #: includes/class-sp-ajax.php:538 includes/class-sp-ajax.php:628
495
  #: includes/widgets/class-sp-widget-player-gallery.php:69
496
  #: includes/widgets/class-sp-widget-player-list.php:69
@@ -504,8 +452,9 @@ msgid "Sort by:"
504
  msgstr "Сортиране по:"
505
 
506
  #: includes/class-sp-ajax.php:568 includes/class-sp-ajax.php:639
507
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:63
508
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:85
 
509
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:56
510
  #: includes/widgets/class-sp-widget-player-gallery.php:77
511
  #: includes/widgets/class-sp-widget-player-list.php:97
@@ -515,19 +464,23 @@ msgstr "Брой"
515
  #: includes/class-sp-ajax.php:569 includes/class-sp-ajax.php:640
516
  #: includes/class-sp-post-types.php:42 includes/class-sp-post-types.php:71
517
  #: includes/class-sp-post-types.php:100 includes/class-sp-post-types.php:129
 
 
 
 
518
  #: includes/admin/post-types/class-sp-admin-cpt-player.php:52
519
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:64
520
  #: includes/admin/post-types/class-sp-admin-cpt-staff.php:52
521
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:63
522
  #: includes/admin/post-types/class-sp-admin-cpt-team.php:51
523
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:86
524
  #: includes/widgets/class-sp-widget-player-gallery.php:78
525
  #: includes/widgets/class-sp-widget-player-list.php:98
526
  msgid "Name"
527
  msgstr "Име"
528
 
529
  #: includes/class-sp-ajax.php:570 includes/class-sp-ajax.php:641
530
- #: includes/sp-core-functions.php:1075
531
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
532
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
533
  #: includes/widgets/class-sp-widget-player-gallery.php:79
@@ -1370,60 +1323,67 @@ msgstr "Замбия"
1370
  msgid "Zimbabwe"
1371
  msgstr "Зимбабве"
1372
 
1373
- #: includes/class-sp-event.php:45 includes/class-sp-post-types.php:192
1374
- #: includes/sp-core-functions.php:1074
 
1375
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-results.php:57
1376
  msgid "Outcome"
1377
  msgstr "Изход"
1378
 
1379
  #: includes/class-sp-event.php:100 includes/class-sp-post-types.php:123
1380
- #: includes/sp-core-functions.php:1097
1381
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:67
1382
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:70
1383
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:77
 
1384
  msgid "Position"
1385
  msgstr "Позиция"
1386
 
1387
  #: includes/class-sp-formats.php:27 includes/class-sp-post-types.php:36
1388
- #: includes/sp-core-functions.php:1072
1389
- #: includes/admin/importers/class-sp-event-importer.php:458
1390
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:48
1391
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:94
1392
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:111
1393
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:48
1394
- #: includes/admin/post-types/class-sp-admin-cpt-table.php:48
 
1395
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:53
1396
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:28
1397
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:30
1398
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:27
1399
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:61
1400
- #: templates/event-details.php:24
 
1401
  msgid "League"
1402
  msgstr "Лига"
1403
 
1404
  #: includes/class-sp-formats.php:28
1405
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:114
1406
  msgid "Friendly"
1407
  msgstr "Приятелска"
1408
 
1409
  #: includes/class-sp-frontend-scripts.php:57
1410
- #: includes/admin/class-sp-admin-assets.php:110
1411
- #: includes/admin/class-sp-admin-dashboard.php:80 templates/countdown.php:64
1412
  msgid "days"
1413
  msgstr "дни"
1414
 
1415
  #: includes/class-sp-frontend-scripts.php:57
1416
- #: includes/admin/class-sp-admin-assets.php:111 templates/countdown.php:65
1417
  msgid "hrs"
1418
  msgstr "часове"
1419
 
1420
  #: includes/class-sp-frontend-scripts.php:57
1421
- #: includes/admin/class-sp-admin-assets.php:112 templates/countdown.php:66
 
 
 
1422
  msgid "mins"
1423
  msgstr "минути"
1424
 
1425
  #: includes/class-sp-frontend-scripts.php:57
1426
- #: includes/admin/class-sp-admin-assets.php:113 templates/countdown.php:67
1427
  msgid "secs"
1428
  msgstr "секудни"
1429
 
@@ -1435,13 +1395,13 @@ msgstr "Предишни"
1435
  msgid "Next"
1436
  msgstr "Напред"
1437
 
1438
- #: includes/class-sp-install.php:192 includes/class-sp-post-types.php:525
1439
- #: includes/class-sp-post-types.php:526 includes/sp-core-functions.php:1098
1440
  #: includes/admin/class-sp-admin-permalink-settings.php:35
1441
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:45
1442
- #: includes/admin/settings/class-sp-settings-events.php:110
1443
  #: includes/admin/settings/class-sp-settings-staff.php:25
1444
- #: templates/event-staff.php:41
1445
  msgid "Staff"
1446
  msgstr "Персонал"
1447
 
@@ -1461,59 +1421,75 @@ msgstr "Администратор на Лига"
1461
  msgid "What's new:"
1462
  msgstr "Какво ново:"
1463
 
1464
- #: includes/class-sp-league-table.php:322
1465
- #: includes/class-sp-player-list.php:351 includes/class-sp-player-list.php:368
1466
- #: includes/class-sp-player.php:313 includes/class-sp-player.php:336
1467
- #: includes/class-sp-post-types.php:403 includes/sp-core-functions.php:1082
1468
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:51
1469
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:50
1470
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:63
1471
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:98
1472
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-results.php:45
1473
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:53
1474
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:58
1475
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:66
1476
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:53
1477
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:114
1478
- #: includes/admin/settings/class-sp-settings-events.php:192
1479
- #: templates/event-results.php:93
 
1480
  msgid "Team"
1481
  msgstr "Отбор"
1482
 
1483
- #: includes/class-sp-player.php:334 includes/class-sp-post-types.php:65
1484
- #: includes/class-sp-team.php:261 includes/sp-core-functions.php:1081
1485
- #: includes/admin/importers/class-sp-event-importer.php:473
1486
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:49
1487
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:95
1488
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:49
1489
- #: includes/admin/post-types/class-sp-admin-cpt-table.php:49
 
 
 
 
 
 
 
 
 
 
 
 
 
1490
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:68
1491
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:45
1492
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:44
1493
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:63
1494
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:41
1495
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:68
1496
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:64
1497
- #: templates/event-details.php:29
 
1498
  msgid "Season"
1499
  msgstr "Сезон"
1500
 
1501
  #: includes/class-sp-post-types.php:35 includes/class-sp-post-types.php:49
1502
- #: includes/admin/class-sp-admin-menus.php:57
1503
- #: includes/admin/class-sp-admin-menus.php:246
1504
  #: includes/admin/class-sp-admin-permalink-settings.php:29
1505
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:67
1506
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:66
1507
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:66
 
 
 
1508
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:116
1509
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
1510
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:40
1511
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:93
1512
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:100
1513
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:45
1514
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:49
1515
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:56
1516
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:71
1517
  #: includes/admin/views/html-admin-page-status.php:296
1518
  msgid "Leagues"
1519
  msgstr "Лиги"
@@ -1524,49 +1500,50 @@ msgstr "Редактирай Лига"
1524
 
1525
  #: includes/class-sp-post-types.php:39 includes/class-sp-post-types.php:68
1526
  #: includes/class-sp-post-types.php:97 includes/class-sp-post-types.php:126
1527
- #: includes/class-sp-post-types.php:166 includes/class-sp-post-types.php:196
1528
- #: includes/class-sp-post-types.php:226 includes/class-sp-post-types.php:256
1529
- #: includes/class-sp-post-types.php:286 includes/class-sp-post-types.php:316
1530
- #: includes/class-sp-post-types.php:346 includes/class-sp-post-types.php:376
1531
- #: includes/class-sp-post-types.php:407 includes/class-sp-post-types.php:437
1532
- #: includes/class-sp-post-types.php:469 includes/class-sp-post-types.php:499
1533
- #: includes/class-sp-post-types.php:530
1534
  msgid "View"
1535
  msgstr "Преглед"
1536
 
1537
  #: includes/class-sp-post-types.php:40 includes/class-sp-post-types.php:69
1538
  #: includes/class-sp-post-types.php:98 includes/class-sp-post-types.php:127
 
1539
  msgid "Update"
1540
  msgstr "Обновяване"
1541
 
1542
  #: includes/class-sp-post-types.php:41 includes/class-sp-post-types.php:70
1543
  #: includes/class-sp-post-types.php:99 includes/class-sp-post-types.php:128
1544
- #: includes/sp-core-functions.php:871 includes/sp-core-functions.php:888
1545
- #: includes/admin/class-sp-admin-menus.php:242
1546
- #: includes/admin/importers/class-sp-event-importer.php:468
1547
- #: includes/admin/importers/class-sp-event-importer.php:483
 
1548
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:64
1549
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:79
1550
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:94
1551
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:109
1552
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:39
1553
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:56
1554
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:73
1555
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:40
1556
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:54
1557
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:69
1558
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:106
1559
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-metrics.php:42
1560
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:37
1561
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:51
1562
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:58
1563
- #: includes/admin/settings/class-sp-settings-config.php:127
1564
- #: includes/admin/settings/class-sp-settings-config.php:200
1565
- #: includes/admin/settings/class-sp-settings-config.php:252
1566
- #: includes/admin/settings/class-sp-settings-config.php:310
1567
- #: includes/admin/settings/class-sp-settings-config.php:363
1568
- #: includes/admin/settings/class-sp-settings-config.php:419
1569
- #: includes/widgets/class-sp-widget-countdown.php:56
 
 
1570
  #: includes/widgets/class-sp-widget-event-blocks.php:63
1571
  #: includes/widgets/class-sp-widget-event-calendar.php:56
1572
  #: includes/widgets/class-sp-widget-event-list.php:66
@@ -1580,61 +1557,76 @@ msgstr "Добави Нов"
1580
 
1581
  #: includes/class-sp-post-types.php:43 includes/class-sp-post-types.php:72
1582
  #: includes/class-sp-post-types.php:101 includes/class-sp-post-types.php:130
 
1583
  msgid "Parent"
1584
  msgstr "Родител"
1585
 
1586
  #: includes/class-sp-post-types.php:44 includes/class-sp-post-types.php:73
1587
  #: includes/class-sp-post-types.php:102 includes/class-sp-post-types.php:131
 
1588
  msgid "Parent:"
1589
  msgstr "Родител:"
1590
 
1591
  #: includes/class-sp-post-types.php:45 includes/class-sp-post-types.php:74
1592
  #: includes/class-sp-post-types.php:103 includes/class-sp-post-types.php:132
1593
- #: includes/class-sp-post-types.php:167 includes/class-sp-post-types.php:197
1594
- #: includes/class-sp-post-types.php:227 includes/class-sp-post-types.php:257
1595
- #: includes/class-sp-post-types.php:287 includes/class-sp-post-types.php:317
1596
- #: includes/class-sp-post-types.php:347 includes/class-sp-post-types.php:377
1597
- #: includes/class-sp-post-types.php:408 includes/class-sp-post-types.php:438
1598
- #: includes/class-sp-post-types.php:470 includes/class-sp-post-types.php:500
1599
- #: includes/class-sp-post-types.php:531
1600
  msgid "Search"
1601
  msgstr "Търсене"
1602
 
1603
  #: includes/class-sp-post-types.php:46 includes/class-sp-post-types.php:75
1604
  #: includes/class-sp-post-types.php:104 includes/class-sp-post-types.php:133
1605
- #: includes/class-sp-post-types.php:168 includes/class-sp-post-types.php:169
1606
- #: includes/class-sp-post-types.php:198 includes/class-sp-post-types.php:199
1607
- #: includes/class-sp-post-types.php:228 includes/class-sp-post-types.php:229
1608
- #: includes/class-sp-post-types.php:258 includes/class-sp-post-types.php:259
1609
- #: includes/class-sp-post-types.php:288 includes/class-sp-post-types.php:289
1610
- #: includes/class-sp-post-types.php:318 includes/class-sp-post-types.php:319
1611
- #: includes/class-sp-post-types.php:348 includes/class-sp-post-types.php:349
1612
- #: includes/class-sp-post-types.php:378 includes/class-sp-post-types.php:379
1613
- #: includes/class-sp-post-types.php:409 includes/class-sp-post-types.php:410
1614
- #: includes/class-sp-post-types.php:439 includes/class-sp-post-types.php:440
1615
- #: includes/class-sp-post-types.php:471 includes/class-sp-post-types.php:472
1616
- #: includes/class-sp-post-types.php:501 includes/class-sp-post-types.php:502
1617
- #: includes/class-sp-post-types.php:532 includes/class-sp-post-types.php:533
1618
- #: includes/sp-core-functions.php:749 includes/sp-core-functions.php:789
1619
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:164
1620
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:111
 
1621
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:32
1622
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:101
 
 
 
 
 
 
 
 
 
1623
  msgid "No results found."
1624
  msgstr "Няма резултати."
1625
 
1626
  #: includes/class-sp-post-types.php:64 includes/class-sp-post-types.php:78
1627
- #: includes/admin/class-sp-admin-menus.php:64
1628
- #: includes/admin/class-sp-admin-menus.php:254
1629
  #: includes/admin/class-sp-admin-permalink-settings.php:30
1630
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:68
1631
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:67
1632
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:67
 
 
 
1633
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:131
1634
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
1635
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:108
1636
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:115
1637
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:64
1638
  #: includes/admin/views/html-admin-page-status.php:306
1639
  msgid "Seasons"
1640
  msgstr "Сезони"
@@ -1644,9 +1636,8 @@ msgid "Edit Season"
1644
  msgstr "Редактирай Сезон"
1645
 
1646
  #: includes/class-sp-post-types.php:93 includes/class-sp-post-types.php:107
1647
- #: includes/admin/class-sp-admin-menus.php:258
1648
  #: includes/admin/class-sp-admin-permalink-settings.php:26
1649
- #: includes/admin/settings/class-sp-settings-events.php:139
1650
  #: includes/admin/views/html-admin-page-status.php:316
1651
  msgid "Venues"
1652
  msgstr "Местоположения"
@@ -1656,9 +1647,10 @@ msgid "Edit Venue"
1656
  msgstr "Редактирай Местоположение"
1657
 
1658
  #: includes/class-sp-post-types.php:122 includes/class-sp-post-types.php:136
1659
- #: includes/admin/class-sp-admin-menus.php:250
1660
  #: includes/admin/class-sp-admin-permalink-settings.php:33
1661
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:65
 
1662
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:71
1663
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
1664
  #: includes/admin/views/html-admin-page-status.php:326
@@ -1669,206 +1661,280 @@ msgstr "Позиции"
1669
  msgid "Edit Position"
1670
  msgstr "Редактирай Позиция"
1671
 
1672
- #: includes/class-sp-post-types.php:161 includes/sp-core-functions.php:1080
1673
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:126
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1674
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:27
1675
- #: includes/admin/settings/class-sp-settings-config.php:156
1676
- #: includes/admin/settings/class-sp-settings-config.php:160
1677
  #: includes/admin/views/html-admin-page-status.php:237
1678
- #: templates/event-results.php:89
1679
  msgid "Team Results"
1680
  msgstr "Резултати на Отбор"
1681
 
1682
- #: includes/class-sp-post-types.php:162
1683
  msgid "Result"
1684
  msgstr "Резултат"
1685
 
1686
- #: includes/class-sp-post-types.php:163
1687
  msgid "Add New Result"
1688
  msgstr "Добави Нов Резултат"
1689
 
1690
- #: includes/class-sp-post-types.php:164
1691
  msgid "Edit Result"
1692
  msgstr "Редактирай Резултат"
1693
 
1694
- #: includes/class-sp-post-types.php:165 includes/class-sp-post-types.php:195
1695
- #: includes/class-sp-post-types.php:225 includes/class-sp-post-types.php:255
1696
- #: includes/class-sp-post-types.php:285 includes/class-sp-post-types.php:315
1697
- #: includes/class-sp-post-types.php:345 includes/class-sp-post-types.php:375
1698
- #: includes/class-sp-post-types.php:406 includes/class-sp-post-types.php:436
1699
- #: includes/class-sp-post-types.php:468 includes/class-sp-post-types.php:498
1700
- #: includes/class-sp-post-types.php:529
1701
  msgid "New"
1702
  msgstr "Нов"
1703
 
1704
- #: includes/class-sp-post-types.php:191
1705
- #: includes/admin/settings/class-sp-settings-config.php:100
1706
  #: includes/admin/views/html-admin-page-status.php:227
1707
  msgid "Event Outcomes"
1708
  msgstr "Изходи от Събитие"
1709
 
1710
- #: includes/class-sp-post-types.php:193
1711
  msgid "Add New Outcome"
1712
  msgstr "Добави Нов Изход"
1713
 
1714
- #: includes/class-sp-post-types.php:194
1715
  msgid "Edit Outcome"
1716
  msgstr "Редактирай Изход"
1717
 
1718
- #: includes/class-sp-post-types.php:221
1719
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:141
1720
- #: includes/admin/settings/class-sp-settings-config.php:279
1721
  #: includes/admin/views/html-admin-page-status.php:257
1722
  msgid "Table Columns"
1723
  msgstr "Колони на Таблицата"
1724
 
1725
- #: includes/class-sp-post-types.php:222
1726
  msgid "Column"
1727
  msgstr "Колона"
1728
 
1729
- #: includes/class-sp-post-types.php:223
1730
  msgid "Add New Column"
1731
  msgstr "Добави Нова Колона"
1732
 
1733
- #: includes/class-sp-post-types.php:224
1734
  msgid "Edit Column"
1735
  msgstr "Редактирай Колона"
1736
 
1737
- #: includes/class-sp-post-types.php:251
1738
- #: includes/admin/settings/class-sp-settings-config.php:338
1739
  #: includes/admin/views/html-admin-page-status.php:267
1740
  msgid "Player Metrics"
1741
  msgstr "Характеристики на Играч"
1742
 
1743
- #: includes/class-sp-post-types.php:252
 
1744
  msgid "Metric"
1745
  msgstr "Характеристика"
1746
 
1747
- #: includes/class-sp-post-types.php:253
1748
  msgid "Add New Metric"
1749
  msgstr "Добави Нова Характеристика"
1750
 
1751
- #: includes/class-sp-post-types.php:254
1752
  msgid "Edit Metric"
1753
  msgstr "Редактирай Характеристика"
1754
 
1755
- #: includes/class-sp-post-types.php:283
 
 
 
 
 
 
 
 
 
1756
  msgid "Add New Performance"
1757
  msgstr "Добави ново изпълнение"
1758
 
1759
- #: includes/class-sp-post-types.php:284
1760
  msgid "Edit Performance"
1761
  msgstr "Редактирай Изпълнение"
1762
 
1763
- #: includes/class-sp-post-types.php:311
1764
- #: includes/admin/settings/class-sp-settings-config.php:390
1765
  #: includes/admin/views/html-admin-page-status.php:277
1766
  msgid "Player Statistics"
1767
  msgstr "Статистики на Играчи"
1768
 
1769
- #: includes/class-sp-post-types.php:312
1770
  msgid "Statistic"
1771
  msgstr "Статистики"
1772
 
1773
- #: includes/class-sp-post-types.php:313
1774
  msgid "Add New Statistic"
1775
  msgstr "Добави Нова Статистика"
1776
 
1777
- #: includes/class-sp-post-types.php:314
1778
  msgid "Edit Statistic"
1779
  msgstr "Редактирай Статистика"
1780
 
1781
- #: includes/class-sp-post-types.php:341
1782
  #: includes/admin/class-sp-admin-permalink-settings.php:25
1783
  #: includes/admin/class-sp-admin-taxonomies.php:134
1784
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:52
1785
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:135
1786
- #: includes/admin/settings/class-sp-settings-events.php:25
1787
- msgid "Events"
1788
- msgstr "Събития"
 
 
1789
 
1790
- #: includes/class-sp-post-types.php:343
1791
- #: includes/admin/class-sp-admin-welcome.php:264
1792
  msgid "Add New Event"
1793
  msgstr "Добави Ново Събитие"
1794
 
1795
- #: includes/class-sp-post-types.php:344
1796
  msgid "Edit Event"
1797
  msgstr "Редактирай Събитие"
1798
 
1799
- #: includes/class-sp-post-types.php:371
 
 
 
 
1800
  #: includes/admin/class-sp-admin-permalink-settings.php:27
1801
- #: includes/admin/settings/class-sp-settings-events.php:128
1802
  msgid "Calendars"
1803
  msgstr "Календари"
1804
 
1805
- #: includes/class-sp-post-types.php:373
1806
  msgid "Add New Calendar"
1807
  msgstr "Добави Нов Календар"
1808
 
1809
- #: includes/class-sp-post-types.php:374
1810
  msgid "Edit Calendar"
1811
  msgstr "Редактирай Календар"
1812
 
1813
- #: includes/class-sp-post-types.php:404
1814
- #: includes/admin/class-sp-admin-welcome.php:262
 
 
 
 
1815
  msgid "Add New Team"
1816
  msgstr "Добави Нов Отбор"
1817
 
1818
- #: includes/class-sp-post-types.php:405
1819
  msgid "Edit Team"
1820
  msgstr "Редактирай Отбор"
1821
 
1822
- #: includes/class-sp-post-types.php:432
 
 
 
 
1823
  #: includes/admin/class-sp-admin-permalink-settings.php:31
1824
- #: includes/admin/settings/class-sp-settings-teams.php:45
 
1825
  msgid "League Tables"
1826
  msgstr "Таблици на Лигите"
1827
 
1828
- #: includes/class-sp-post-types.php:434
1829
  msgid "Add New League Table"
1830
  msgstr "Добави Нова Таблица на Лига"
1831
 
1832
- #: includes/class-sp-post-types.php:435
1833
  msgid "Edit League Table"
1834
  msgstr "Редактирай Таблица на Лига"
1835
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1836
  #: includes/class-sp-post-types.php:494
 
 
 
 
 
 
 
 
 
 
 
 
 
1837
  #: includes/admin/class-sp-admin-permalink-settings.php:34
1838
  #: includes/admin/post-types/class-sp-admin-meta-boxes.php:142
1839
- #: includes/admin/settings/class-sp-settings-players.php:51
1840
  msgid "Player Lists"
1841
  msgstr "Списъци с Играчи"
1842
 
1843
- #: includes/class-sp-post-types.php:496
1844
  msgid "Add New Player List"
1845
  msgstr "Добави Нов Списък с Играчи"
1846
 
1847
- #: includes/class-sp-post-types.php:497
1848
  msgid "Edit Player List"
1849
  msgstr "Редактирай Списък с Играчи"
1850
 
1851
  #: includes/class-sp-post-types.php:527
 
 
 
 
1852
  msgid "Add New Staff"
1853
  msgstr "Добави Нов Персонал"
1854
 
1855
- #: includes/class-sp-post-types.php:528
1856
  msgid "Edit Staff"
1857
  msgstr "Редактирай Персонал"
1858
 
 
 
 
 
 
1859
  #: includes/sp-core-functions.php:318
1860
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:97
1861
  #: templates/team-link.php:21
1862
  msgid "Visit Site"
1863
  msgstr "Към сайта"
1864
 
1865
- #: includes/sp-core-functions.php:350 includes/sp-core-functions.php:354
1866
- #: includes/sp-core-functions.php:1086
1867
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:134
1868
- #: templates/event-performance.php:157
1869
- msgid "Total"
1870
- msgstr "Общо"
1871
-
1872
  #: includes/sp-core-functions.php:350
1873
  msgid "Average"
1874
  msgstr "Средно"
@@ -1881,133 +1947,135 @@ msgstr "Публична"
1881
  msgid "Scheduled"
1882
  msgstr "Планирана"
1883
 
1884
- #: includes/sp-core-functions.php:672 includes/sp-core-functions.php:812
1885
  msgid "(no title)"
1886
  msgstr "(без заглавие)"
1887
 
1888
- #: includes/sp-core-functions.php:689 includes/sp-core-functions.php:769
1889
  msgid "Select All"
1890
  msgstr "Избор на всички"
1891
 
1892
- #: includes/sp-core-functions.php:750 includes/sp-core-functions.php:753
1893
  msgid "Show all"
1894
  msgstr "Покажи Всички"
1895
 
1896
- #: includes/sp-core-functions.php:1069
1897
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:91
1898
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:47
 
 
 
 
 
 
 
 
 
1899
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:42
1900
- #: templates/event-details.php:20 templates/event-list.php:54
1901
  msgid "Date"
1902
  msgstr "Дата"
1903
 
1904
- #: includes/sp-core-functions.php:1073
 
 
1905
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:59
1906
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
1907
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:51
1908
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:52
1909
- #: includes/admin/settings/class-sp-settings-players.php:42
1910
- #: includes/admin/settings/class-sp-settings-staff.php:44
1911
  #: templates/player-details.php:34 templates/staff-details.php:32
1912
  msgid "Nationality"
1913
  msgstr "Националност"
1914
 
1915
- #: includes/sp-core-functions.php:1076 templates/league-table.php:49
 
 
 
 
 
 
 
1916
  msgid "Pos"
1917
  msgstr "Позиция"
1918
 
1919
- #: includes/sp-core-functions.php:1077
1920
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:151
1921
- #: templates/event-list.php:174
1922
  msgid "Preview"
1923
  msgstr "Преглед"
1924
 
1925
- #: includes/sp-core-functions.php:1078 templates/player-list.php:88
1926
  msgid "Rank"
1927
  msgstr "Място"
1928
 
1929
- #: includes/sp-core-functions.php:1079
1930
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:149
1931
- #: templates/event-list.php:172
1932
  msgid "Recap"
1933
  msgstr "Кратък Преглед"
1934
 
1935
- #: includes/sp-core-functions.php:1085
 
 
 
 
1936
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:64
1937
- #: templates/event-list.php:63
1938
  msgid "Time/Results"
1939
  msgstr "Време/Резултати"
1940
 
1941
- #: includes/sp-core-functions.php:1088 templates/event-blocks.php:108
1942
- #: templates/event-calendar.php:215 templates/event-list.php:192
1943
  msgid "View all events"
1944
  msgstr "Прегледай всички събития"
1945
 
1946
- #: includes/sp-core-functions.php:1089 templates/league-table.php:110
1947
- msgid "View full table"
1948
- msgstr "Прегледай Цялата Таблица"
1949
-
1950
- #: includes/sp-core-functions.php:1094
1951
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:86
1952
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:98
1953
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:95
1954
- #: templates/player-details.php:44 templates/staff-details.php:36
1955
- msgid "Current Team"
1956
- msgstr "Текущ Отбор"
1957
-
1958
- #: includes/sp-core-functions.php:1095
1959
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:101
1960
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:78
1961
- #: templates/player-details.php:53 templates/staff-details.php:43
1962
- msgid "Past Teams"
1963
- msgstr "Предишни Отбори"
1964
-
1965
- #: includes/sp-core-functions.php:1099
1966
- msgid "Substitutes"
1967
- msgstr "Заместници"
1968
-
1969
- #: includes/sp-core-functions.php:1100 templates/player-gallery.php:146
1970
- #: templates/player-list.php:152
1971
  msgid "View all players"
1972
  msgstr "Прегледай Всички Играчи"
1973
 
1974
- #: includes/sp-template-hooks.php:148
 
 
 
 
1975
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:48
1976
  #: includes/admin/post-types/class-sp-admin-cpt-metric.php:45
1977
  #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:46
1978
  #: includes/admin/post-types/class-sp-admin-cpt-performance.php:45
1979
  #: includes/admin/post-types/class-sp-admin-cpt-result.php:45
1980
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:47
1981
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:136
1982
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:150
1983
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:168
1984
- #: includes/admin/settings/class-sp-settings-config.php:110
1985
- #: includes/admin/settings/class-sp-settings-config.php:167
1986
- #: includes/admin/settings/class-sp-settings-config.php:236
1987
- #: includes/admin/settings/class-sp-settings-config.php:291
1988
- #: includes/admin/settings/class-sp-settings-config.php:347
1989
- #: includes/admin/settings/class-sp-settings-config.php:401
1990
  msgid "Description"
1991
  msgstr "Описание"
1992
 
1993
- #: includes/sp-template-hooks.php:151
1994
  msgid ""
1995
  "The description is not prominent by default; however, some themes may show "
1996
  "it."
1997
- msgstr ""
1998
- "Описанието не се показва по подразбиране, но някои теми може да ги използват."
1999
 
2000
- #: includes/sp-template-hooks.php:154
2001
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:44
2002
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:44
2003
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:34
2004
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-statistic-details.php:31
2005
- #: includes/admin/settings/class-sp-settings-config.php:287
2006
- #: includes/admin/settings/class-sp-settings-config.php:398
2007
  msgid "Key"
2008
  msgstr "Ключ"
2009
 
2010
- #: includes/sp-template-hooks.php:154
2011
  #: includes/admin/post-types/class-sp-admin-cpt-metric.php:44
2012
  #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:44
2013
  #: includes/admin/post-types/class-sp-admin-cpt-performance.php:44
@@ -2016,75 +2084,109 @@ msgstr "Ключ"
2016
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-outcome-details.php:28
2017
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-performance-details.php:27
2018
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-result-details.php:27
2019
- #: includes/admin/settings/class-sp-settings-config.php:108
2020
- #: includes/admin/settings/class-sp-settings-config.php:235
2021
- #: includes/admin/settings/class-sp-settings-config.php:346
2022
  msgid "Variable"
2023
  msgstr "Променлива"
2024
 
2025
- #: includes/sp-template-hooks.php:162
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2026
  msgid "User"
2027
  msgstr "Потребител"
2028
 
2029
- #: includes/sp-template-hooks.php:187
2030
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2031
  msgid "Logo"
2032
  msgstr "Лого"
2033
 
2034
- #: includes/sp-template-hooks.php:190
2035
  msgid "Select Logo"
2036
  msgstr "Избери Лого"
2037
 
2038
- #: includes/sp-template-hooks.php:193
2039
  msgid "Add logo"
2040
  msgstr "Добави лого"
2041
 
2042
- #: includes/sp-template-hooks.php:196
2043
  msgid "Remove logo"
2044
  msgstr "Премахни лого"
2045
 
2046
- #: includes/sp-template-hooks.php:204
2047
  msgid "Date/Time:"
2048
  msgstr "Дата/Час"
2049
 
2050
- #: includes/sp-template-hooks.php:204
2051
  msgid "Now"
2052
  msgstr "Сега"
2053
 
2054
- #: includes/sp-template-hooks.php:333
2055
  #: includes/admin/class-sp-admin-post-types.php:62
2056
  msgid "Settings saved."
2057
  msgstr "Настройките са запазени."
2058
 
2059
- #: includes/sp-template-hooks.php:335
2060
  #: includes/admin/class-sp-admin-post-types.php:64
2061
- #: includes/admin/settings/class-sp-settings-config.php:126
2062
- #: includes/admin/settings/class-sp-settings-config.php:199
2063
- #: includes/admin/settings/class-sp-settings-config.php:251
2064
- #: includes/admin/settings/class-sp-settings-config.php:309
2065
- #: includes/admin/settings/class-sp-settings-config.php:362
2066
- #: includes/admin/settings/class-sp-settings-config.php:418
 
2067
  msgid "View All"
2068
  msgstr "Всички"
2069
 
2070
- #: includes/sp-template-hooks.php:341 includes/sp-template-hooks.php:344
2071
- #: includes/sp-template-hooks.php:349
2072
  #: includes/admin/class-sp-admin-post-types.php:69
2073
  #: includes/admin/class-sp-admin-post-types.php:72
2074
  #: includes/admin/class-sp-admin-post-types.php:77
2075
  msgid "Changes saved."
2076
  msgstr "Промените са записани."
2077
 
2078
- #: includes/sp-template-hooks.php:346 includes/sp-template-hooks.php:351
2079
- #: includes/sp-template-hooks.php:361
2080
  #: includes/admin/class-sp-admin-post-types.php:74
2081
  #: includes/admin/class-sp-admin-post-types.php:79
2082
  #: includes/admin/class-sp-admin-post-types.php:89
2083
  msgid "Success!"
2084
  msgstr "Готово!"
2085
 
2086
- #: includes/sp-template-hooks.php:353 includes/sp-template-hooks.php:359
2087
- #: includes/sp-template-hooks.php:363
2088
  #: includes/admin/class-sp-admin-post-types.php:81
2089
  #: includes/admin/class-sp-admin-post-types.php:87
2090
  #: includes/admin/class-sp-admin-post-types.php:91
@@ -2092,35 +2194,55 @@ msgstr "Готово!"
2092
  msgid "Preview %s"
2093
  msgstr "Преглед на %s"
2094
 
2095
- #: includes/sp-template-hooks.php:356
2096
  #: includes/admin/class-sp-admin-post-types.php:84
2097
  #, php-format
2098
  msgid "Scheduled for: <b>%1$s</b>."
2099
  msgstr "Планиран за: <b>%1$s</b>."
2100
 
2101
- #: includes/sp-template-hooks.php:357
2102
  #: includes/admin/class-sp-admin-post-types.php:85
2103
  msgid "M j, Y @ G:i"
2104
  msgstr "d.m.Y G:i"
2105
 
2106
- #: includes/admin/class-sp-admin-assets.php:108
2107
- #: includes/admin/class-sp-admin-settings.php:117
2108
- #: includes/admin/importers/class-sp-event-importer.php:467
2109
- #: includes/admin/importers/class-sp-event-importer.php:482
2110
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:147
2111
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:186
2112
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:76
2113
  #: includes/admin/views/html-admin-page-status.php:224
2114
  msgid "None"
2115
  msgstr "Без"
2116
 
2117
- #: includes/admin/class-sp-admin-assets.php:109
2118
  msgid "&mdash; Remove &mdash;"
2119
  msgstr "&mdash; Премахни &mdash;"
2120
 
 
 
 
 
 
 
2121
  #: includes/admin/class-sp-admin-dashboard.php:34
2122
- #: includes/admin/class-sp-admin-menus.php:50
2123
  #: includes/admin/class-sp-admin-permalink-settings.php:47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2124
  msgid "SportsPress"
2125
  msgstr "SportsPress"
2126
 
@@ -2182,43 +2304,54 @@ msgstr "SportsPress Персонал (CSV)"
2182
  msgid "Import <strong>staff</strong> from a csv file."
2183
  msgstr "Импортиране на <strong>персонал</strong> от csv файл."
2184
 
2185
- #: includes/admin/class-sp-admin-menus.php:50
2186
- msgid "SportsPress Settings"
2187
- msgstr "SportsPress настройки"
 
2188
 
2189
- #: includes/admin/class-sp-admin-menus.php:71
 
 
 
 
 
2190
  #: includes/admin/views/html-admin-page-status.php:2
2191
  #: includes/admin/views/html-notice-template-check.php:6
2192
  msgid "System Status"
2193
  msgstr "Система"
2194
 
2195
- #: includes/admin/class-sp-admin-menus.php:79
2196
- msgid "SportsPress Add-ons/Extensions"
2197
- msgstr "SportsPress разширения и добавки"
2198
-
2199
- #: includes/admin/class-sp-admin-menus.php:79
2200
- msgid "Add-ons"
2201
- msgstr "Добвки"
2202
-
2203
  #: includes/admin/class-sp-admin-permalink-settings.php:75
2204
  msgid ""
2205
  "These settings control the permalinks used for SportsPress. These settings "
2206
  "only apply when <strong>not using \"default\" permalinks above</strong>."
2207
- msgstr ""
2208
- "Тези настройки управляват пермалинковете, които се използват за SportsPress. "
2209
- "Тези настройки се прилагат само когато <strong>пермалинковете по "
2210
- "подразбиране не са избрани по-горе</strong>."
2211
 
2212
- #: includes/admin/class-sp-admin-settings.php:60
2213
  msgid "Action failed. Please refresh the page and retry."
2214
  msgstr "Действието беше неуспешно. Моля опитайте отново."
2215
 
2216
- #: includes/admin/class-sp-admin-settings.php:67
2217
- #: includes/admin/class-sp-admin-welcome.php:196
2218
  msgid "Your settings have been saved."
2219
  msgstr "Настройките ви са записани."
2220
 
2221
- #: includes/admin/class-sp-admin-sports.php:42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2222
  msgid "Custom"
2223
  msgstr "Собствено"
2224
 
@@ -2276,306 +2409,255 @@ msgstr "Версия %s"
2276
  msgid "Get Started"
2277
  msgstr "Първи стъпки"
2278
 
2279
- #: includes/admin/class-sp-admin-welcome.php:202
2280
- #: includes/admin/settings/class-sp-settings-general.php:249
2281
- #: includes/admin/settings/class-sp-settings-general.php:252
2282
  msgid "Timezone"
2283
  msgstr "Часова зона"
2284
 
2285
- #: includes/admin/class-sp-admin-welcome.php:226
2286
  #: includes/admin/settings/class-sp-settings-general.php:49
2287
  #: includes/admin/views/html-admin-page-status.php:223
2288
  msgid "Sport"
2289
  msgstr "Спорт"
2290
 
2291
- #: includes/admin/class-sp-admin-welcome.php:238
2292
- #: includes/admin/settings/class-sp-settings-general.php:57
2293
- msgid "Mode"
2294
- msgstr "Вид на Спорт"
2295
-
2296
- #: includes/admin/class-sp-admin-welcome.php:246
2297
- #: includes/admin/settings/class-sp-settings-general.php:62
2298
- msgctxt "mode select"
2299
- msgid "Team"
2300
- msgstr "Отбор"
2301
-
2302
- #: includes/admin/class-sp-admin-welcome.php:247
2303
- #: includes/admin/settings/class-sp-settings-general.php:63
2304
- msgctxt "mode select"
2305
- msgid "Individual"
2306
- msgstr "Индивидуален човек"
2307
-
2308
- #: includes/admin/class-sp-admin-welcome.php:253
2309
- #: includes/admin/views/html-admin-settings.php:16
2310
  msgid "Save changes"
2311
  msgstr "Запиши промените"
2312
 
2313
- #: includes/admin/class-sp-admin-welcome.php:260
2314
  msgid "Next Steps"
2315
  msgstr "Следващи стъпки"
2316
 
2317
- #: includes/admin/class-sp-admin-welcome.php:268
 
 
 
 
2318
  msgid "Translators"
2319
  msgstr "Преводачи"
2320
 
2321
- #: includes/admin/class-sp-admin-welcome.php:269
2322
  msgid ""
2323
  "SportsPress has been kindly translated into several other languages thanks "
2324
- "to our translation team. Want to see your name? <a href=\"https://www."
2325
- "transifex.com/projects/p/sportspress/\">Translate SportsPress</a>."
2326
- msgstr ""
2327
- "SportsPress е любезно преведен на няколко езика благодарение на нашия екип "
2328
- "от преводачи. Искаш ли да видиш своето име? <a href=\"https://www.transifex."
2329
- "com/projects/p/sportspress/\">Преведи SportsPress</a>."
2330
 
2331
- #: includes/admin/class-sp-admin-welcome.php:285
2332
  msgid "Go to SportsPress Settings"
2333
  msgstr "Към настройките на SportsPress"
2334
 
2335
- #: includes/admin/importers/class-sp-event-importer.php:361
2336
- #: includes/admin/importers/class-sp-importer.php:93
2337
- #: includes/admin/importers/class-sp-importer.php:108
2338
- #: includes/admin/importers/class-sp-player-importer.php:128
2339
- #: includes/admin/importers/class-sp-staff-importer.php:121
2340
- #: includes/admin/importers/class-sp-team-importer.php:85
2341
- msgid "Sorry, there has been an error."
2342
- msgstr "Съжаляваме, станала е някаква грешка."
2343
-
2344
- #: includes/admin/importers/class-sp-event-importer.php:362
2345
- #: includes/admin/importers/class-sp-player-importer.php:129
2346
- #: includes/admin/importers/class-sp-staff-importer.php:122
2347
- #: includes/admin/importers/class-sp-team-importer.php:86
2348
- msgid "The CSV is invalid."
2349
- msgstr "CSV файла е невалиден."
2350
 
2351
- #: includes/admin/importers/class-sp-event-importer.php:373
2352
  #, php-format
2353
  msgid ""
2354
- "Import complete - imported <strong>%s</strong> events and skipped <strong>"
2355
- "%s</strong>."
2356
- msgstr ""
2357
- "Имопортирането е завършено - импортирани <strong>%s</strong> събития и "
2358
- "пропуснати <strong>%s</strong>."
2359
 
2360
- #: includes/admin/importers/class-sp-event-importer.php:383
2361
- #: includes/admin/importers/class-sp-player-importer.php:150
2362
- #: includes/admin/importers/class-sp-staff-importer.php:143
2363
- #: includes/admin/importers/class-sp-team-importer.php:107
2364
  msgid "All done!"
2365
  msgstr "Всичко приключи успешно!"
2366
 
2367
- #: includes/admin/importers/class-sp-event-importer.php:383
2368
  msgid "View Events"
2369
  msgstr "Прегледай Събития"
2370
 
2371
- #: includes/admin/importers/class-sp-event-importer.php:395
2372
- msgid "Import Events"
2373
- msgstr "Импортирай Събития"
2374
-
2375
- #: includes/admin/importers/class-sp-event-importer.php:407
2376
- #: includes/admin/importers/class-sp-player-importer.php:174
2377
- #: includes/admin/importers/class-sp-staff-importer.php:167
2378
- #: includes/admin/importers/class-sp-team-importer.php:131
2379
  msgid ""
2380
- "Hi there! Choose a .csv file to upload, then click \"Upload file and import"
2381
- "\"."
2382
- msgstr ""
2383
- "Здравей! Избери .csv файл за качване, и след това избееи \"Качване и "
2384
- "импортиране от файл\"."
2385
 
2386
- #: includes/admin/importers/class-sp-event-importer.php:409
2387
  #, php-format
2388
  msgid ""
2389
  "Events need to be defined with columns in a specific order (3+ columns). <a "
2390
  "href=\"%s\">Click here to download a sample</a>."
2391
- msgstr ""
2392
- "Събитията трабва да бъдат определени в колони с определен ред (3+ колони). "
2393
- "<a href=\"%s\">Кликни тук за да изтеглиш пример</a>."
2394
 
2395
- #: includes/admin/importers/class-sp-event-importer.php:417
2396
- #: includes/admin/importers/class-sp-player-importer.php:184
2397
- #: includes/admin/importers/class-sp-staff-importer.php:177
2398
- #: includes/admin/importers/class-sp-team-importer.php:141
2399
- msgid ""
2400
- "Before you can upload your import file, you will need to fix the following "
2401
- "error:"
2402
  msgstr ""
2403
- "Преди да качите файла за импортиране трябва да поправите следната грешка:"
2404
-
2405
- #: includes/admin/importers/class-sp-event-importer.php:426
2406
- #: includes/admin/importers/class-sp-player-importer.php:193
2407
- #: includes/admin/importers/class-sp-staff-importer.php:186
2408
- #: includes/admin/importers/class-sp-team-importer.php:150
2409
- msgid "Choose a file from your computer:"
2410
- msgstr "Избор на файл:"
2411
-
2412
- #: includes/admin/importers/class-sp-event-importer.php:432
2413
- #: includes/admin/importers/class-sp-player-importer.php:199
2414
- #: includes/admin/importers/class-sp-staff-importer.php:192
2415
- #: includes/admin/importers/class-sp-team-importer.php:156
2416
- #, php-format
2417
- msgid "Maximum size: %s"
2418
- msgstr "Максимален размер: %s"
2419
-
2420
- #: includes/admin/importers/class-sp-event-importer.php:437
2421
- #: includes/admin/importers/class-sp-player-importer.php:204
2422
- #: includes/admin/importers/class-sp-staff-importer.php:197
2423
- #: includes/admin/importers/class-sp-team-importer.php:161
2424
- msgid "OR enter path to file:"
2425
- msgstr "ИЛИ въведете път до файла:"
2426
-
2427
- #: includes/admin/importers/class-sp-event-importer.php:444
2428
- #: includes/admin/importers/class-sp-player-importer.php:211
2429
- #: includes/admin/importers/class-sp-staff-importer.php:204
2430
- #: includes/admin/importers/class-sp-team-importer.php:168
2431
- #: includes/admin/settings/class-sp-settings-events.php:197
2432
- #: includes/admin/settings/class-sp-settings-events.php:201
2433
- msgid "Delimiter"
2434
- msgstr "Разделител"
2435
 
2436
- #: includes/admin/importers/class-sp-event-importer.php:448
2437
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:89
2438
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:121
2439
  msgid "Format"
2440
  msgstr "Формат"
2441
 
2442
- #: includes/admin/importers/class-sp-event-importer.php:464
2443
- #: includes/admin/importers/class-sp-event-importer.php:479
2444
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:36
2445
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:53
2446
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:70
2447
  msgid "-- Not set --"
2448
  msgstr "-- Празно --"
2449
 
2450
- #: includes/admin/importers/class-sp-event-importer.php:490
2451
- #: includes/admin/importers/class-sp-player-importer.php:217
2452
- #: includes/admin/importers/class-sp-staff-importer.php:210
2453
- #: includes/admin/importers/class-sp-team-importer.php:174
2454
- msgid "Upload file and import"
2455
- msgstr "Качване и импортиране от файл"
2456
 
2457
- #: includes/admin/importers/class-sp-importer.php:125
2458
- msgid "Import"
2459
- msgstr "Импорт"
 
 
2460
 
2461
- #: includes/admin/importers/class-sp-player-importer.php:140
2462
- #, php-format
2463
- msgid ""
2464
- "Import complete - imported <strong>%s</strong> players and skipped <strong>"
2465
- "%s</strong>."
2466
  msgstr ""
2467
- "Импортването е завършено - импортирани <strong>%s</strong> играчи и "
2468
- "пропуснати <strong>%s</strong>."
2469
 
2470
- #: includes/admin/importers/class-sp-player-importer.php:150
2471
- msgid "View Players"
2472
- msgstr "Прегледай Играчи"
 
 
 
 
 
 
2473
 
2474
- #: includes/admin/importers/class-sp-player-importer.php:162
 
2475
  msgid "Import Players"
2476
  msgstr "Импортирай Играчи"
2477
 
2478
- #: includes/admin/importers/class-sp-player-importer.php:176
2479
  #, php-format
2480
  msgid ""
2481
- "Players need to be defined with columns in a specific order (7 columns). <a "
2482
- "href=\"%s\">Click here to download a sample</a>."
2483
- msgstr ""
2484
- "Събитията трабва да бъдат определени в колони с определен ред (7 колони). "
2485
- "<a href=\"%s\">Кликни тук за да изтеглиш пример</a>."
2486
 
2487
- #: includes/admin/importers/class-sp-staff-importer.php:133
 
 
 
 
2488
  #, php-format
2489
  msgid ""
2490
- "Import complete - imported <strong>%s</strong> staff and skipped <strong>%s</"
2491
- "strong>."
2492
- msgstr ""
2493
- "Импортването е завършено - импортирани <strong>%s</strong> персонали и "
2494
- "пропуснати <strong>%s</strong>."
2495
-
2496
- #: includes/admin/importers/class-sp-staff-importer.php:143
2497
- msgid "View Staff"
2498
- msgstr "Прегледай Персонал"
2499
 
2500
- #: includes/admin/importers/class-sp-staff-importer.php:155
 
2501
  msgid "Import Staff"
2502
  msgstr "Импортирай Персонал"
2503
 
2504
- #: includes/admin/importers/class-sp-staff-importer.php:169
 
 
 
 
 
 
 
2505
  #, php-format
2506
  msgid ""
2507
- "Staff need to be defined with columns in a specific order (5 columns). <a "
2508
  "href=\"%s\">Click here to download a sample</a>."
2509
  msgstr ""
2510
- "Персоналът трябва да се определи в колони с определен ред (5 колони). <a "
2511
- "href=\"%s\">Кликни тук да изтеглиш пример</a>."
2512
 
2513
- #: includes/admin/importers/class-sp-team-importer.php:97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2514
  #, php-format
2515
  msgid ""
2516
- "Import complete - imported <strong>%s</strong> teams and skipped <strong>%s</"
2517
- "strong>."
2518
- msgstr ""
2519
- "Импортването е завършено - импортирани <strong>%s</strong> отбори и "
2520
- "пропуснати <strong>%s</strong>."
2521
 
2522
- #: includes/admin/importers/class-sp-team-importer.php:107
2523
  msgid "View Teams"
2524
  msgstr "Прегледай Отбори"
2525
 
2526
- #: includes/admin/importers/class-sp-team-importer.php:119
2527
- msgid "Import Teams"
2528
- msgstr "Импортирай Отбори"
2529
-
2530
- #: includes/admin/importers/class-sp-team-importer.php:133
2531
  #, php-format
2532
  msgid ""
2533
  "Teams need to be defined with columns in a specific order (3 columns). <a "
2534
  "href=\"%s\">Click here to download a sample</a>."
2535
- msgstr ""
2536
- "Отборите трабва да бъдат определени в колони с определен ред (3 колони). <a "
2537
- "href=\"%s\">Кликни тук за да изтеглиш пример</a>."
2538
 
2539
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:47
2540
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:47
2541
- #: includes/admin/post-types/class-sp-admin-cpt-table.php:47
 
2542
  msgid "Title"
2543
  msgstr "Заглавие"
2544
 
2545
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:53
2546
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:52
2547
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:133
2548
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:164
2549
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:67
2550
  msgid "Layout"
2551
  msgstr "Разположение"
2552
 
2553
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:114
2554
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:191
2555
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:102
2556
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:138
2557
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:132
2558
- #: includes/admin/post-types/class-sp-admin-cpt-table.php:84
2559
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:108
2560
  msgid "Show all leagues"
2561
  msgstr "Покажи всички лиги"
2562
 
2563
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:123
2564
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:200
2565
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:111
2566
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:147
2567
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:141
2568
- #: includes/admin/post-types/class-sp-admin-cpt-table.php:93
2569
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:117
2570
  msgid "Show all seasons"
2571
  msgstr "Покажи всички сезони"
2572
 
2573
- #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:134
2574
- #: includes/admin/post-types/class-sp-admin-cpt-event.php:183
2575
- #: includes/admin/post-types/class-sp-admin-cpt-list.php:122
2576
- #: includes/admin/post-types/class-sp-admin-cpt-player.php:130
2577
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:124
2578
- #: includes/admin/post-types/class-sp-admin-cpt-table.php:104
2579
  msgid "Show all teams"
2580
  msgstr "Покажи всички отбори"
2581
 
@@ -2585,21 +2667,21 @@ msgstr "Покажи всички отбори"
2585
  #: includes/admin/post-types/class-sp-admin-cpt-performance.php:43
2586
  #: includes/admin/post-types/class-sp-admin-cpt-result.php:43
2587
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:43
2588
- #: includes/admin/settings/class-sp-settings-config.php:107
2589
- #: includes/admin/settings/class-sp-settings-config.php:165
2590
- #: includes/admin/settings/class-sp-settings-config.php:234
2591
- #: includes/admin/settings/class-sp-settings-config.php:286
2592
- #: includes/admin/settings/class-sp-settings-config.php:345
2593
- #: includes/admin/settings/class-sp-settings-config.php:397
2594
  msgid "Label"
2595
  msgstr "Етикет"
2596
 
2597
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:45
2598
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:45
2599
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:107
2600
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:117
2601
- #: includes/admin/settings/class-sp-settings-config.php:288
2602
- #: includes/admin/settings/class-sp-settings-config.php:399
2603
  msgid "Equation"
2604
  msgstr "Уравнение"
2605
 
@@ -2607,33 +2689,24 @@ msgstr "Уравнение"
2607
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:46
2608
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:39
2609
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-statistic-details.php:36
2610
- #: includes/admin/settings/class-sp-settings-config.php:289
2611
- #: includes/admin/settings/class-sp-settings-config.php:400
2612
  msgid "Rounding"
2613
  msgstr "Закръгляне"
2614
 
2615
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:47
2616
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:113
2617
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:43
2618
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:96
2619
- #: includes/admin/settings/class-sp-settings-config.php:290
2620
  msgid "Sort Order"
2621
  msgstr "Сортирай Ред"
2622
 
2623
- #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:45
2624
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:65
2625
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-outcome-details.php:33
2626
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:100
2627
- #: includes/admin/settings/class-sp-settings-config.php:109
2628
- msgid "Abbreviation"
2629
- msgstr "Абревиатура"
2630
-
2631
- #: includes/admin/post-types/class-sp-admin-cpt-staff.php:64
2632
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:48
2633
- msgid "Role"
2634
- msgstr "Роля"
2635
 
2636
- #: includes/admin/post-types/class-sp-admin-cpt-team.php:64
2637
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:31
2638
  msgid "URL"
2639
  msgstr "Адрес"
@@ -2648,59 +2721,64 @@ msgstr "Вмъкване към %s"
2648
  msgid "Uploaded to this %s"
2649
  msgstr "Качено към %s"
2650
 
2651
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:120
2652
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:153
2653
  msgid "Shortcodes"
2654
  msgstr "Шорткоди"
2655
 
2656
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:124
2657
  msgid "Video"
2658
  msgstr "Видео"
2659
 
2660
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:144
2661
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:160
2662
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:172
2663
  msgid "Profile"
2664
  msgstr "Профил"
2665
 
2666
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:154
2667
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:165
2668
  msgid "Columns"
2669
  msgstr "Колони"
2670
 
2671
- #: includes/admin/post-types/class-sp-admin-meta-boxes.php:156
2672
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:26
2673
  msgid "Metrics"
2674
  msgstr "Характеристики"
2675
 
2676
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:173
2677
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:120
2678
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:168
 
 
 
 
 
2679
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
2680
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
2681
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
2682
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
2683
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
2684
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
2685
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:40
2686
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:52
2687
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:70
2688
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:85
2689
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:100
2690
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:115
2691
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:101
2692
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:145
2693
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:45
2694
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:56
2695
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:71
2696
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:86
2697
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
 
2698
  #, php-format
2699
  msgid "Select %s"
2700
  msgstr "Избиране на %s"
2701
 
2702
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:31
2703
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:85
2704
  msgid "Status"
2705
  msgstr "Статус"
2706
 
@@ -2711,13 +2789,7 @@ msgstr "Статус"
2711
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-shortcode.php:24
2712
  msgid ""
2713
  "Copy this code and paste it into your post, page or text widget content."
2714
- msgstr ""
2715
- "Копирай този код и го вмъкни в твоята публикация, страница или съдържание на "
2716
- "текстова джаджа."
2717
-
2718
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:47
2719
- msgid "Disable"
2720
- msgstr "Изключване"
2721
 
2722
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2723
  msgid "Attended"
@@ -2731,6 +2803,11 @@ msgstr "Започнал"
2731
  msgid "Substituted"
2732
  msgstr "Заместен"
2733
 
 
 
 
 
 
2734
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
2735
  msgid "for"
2736
  msgstr "за"
@@ -2739,6 +2816,13 @@ msgstr "за"
2739
  msgid "against"
2740
  msgstr "против"
2741
 
 
 
 
 
 
 
 
2742
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:44
2743
  msgid "Streak"
2744
  msgstr "Поредица"
@@ -2751,16 +2835,29 @@ msgstr "Последни 5"
2751
  msgid "Last 10"
2752
  msgstr "Последни 10"
2753
 
2754
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:160
 
 
 
 
 
 
 
 
 
 
 
 
 
2755
  msgid "Starting Lineup"
2756
  msgstr "Титулярен Отбор"
2757
 
2758
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:161
2759
  msgid "Substitute"
2760
  msgstr "Замести"
2761
 
2762
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:34
2763
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:90
2764
  msgid "&mdash; None &mdash;"
2765
  msgstr "&mdash; Избери &mdash;"
2766
 
@@ -2772,163 +2869,148 @@ msgstr "Премахни видео"
2772
  msgid "Add video"
2773
  msgstr "Добави видео"
2774
 
2775
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:42
2776
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:46
 
2777
  msgid "Values"
2778
  msgstr "Стойности"
2779
 
2780
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:43
2781
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:47
2782
  msgid "Adjustments"
2783
  msgstr "Нагласяване"
2784
 
2785
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:82
2786
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:79
2787
- #: includes/admin/settings/class-sp-settings-config.php:120
2788
- #: includes/admin/settings/class-sp-settings-config.php:193
2789
- #: includes/admin/settings/class-sp-settings-config.php:245
2790
- #: includes/admin/settings/class-sp-settings-config.php:303
2791
- #: includes/admin/settings/class-sp-settings-config.php:356
2792
- #: includes/admin/settings/class-sp-settings-config.php:412
2793
  msgid "Edit"
2794
  msgstr "Редактиране"
2795
 
2796
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:87
2797
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:84
2798
  msgid "Save"
2799
  msgstr "Запис"
2800
 
2801
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:73
2802
  msgid "Grouping"
2803
  msgstr "Групиране"
2804
 
2805
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:80
2806
  msgid "Sort by"
2807
  msgstr "Сортирай според"
2808
 
2809
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:86
2810
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:63
2811
  msgid "Current Teams"
2812
  msgstr "Текущи Отбори"
2813
 
2814
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:79
2815
- msgid "Home"
2816
- msgstr "Начало"
2817
 
2818
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:94
2819
- #: includes/admin/views/html-admin-page-status.php:24
2820
- msgid "Site URL"
2821
- msgstr "Адрес на сайта"
2822
-
2823
- #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:102
2824
  msgid ""
2825
  "The abbreviation is not prominent by default; however, some themes may show "
2826
  "it"
2827
- msgstr ""
2828
- "Съкращението не се използва по подразбиране; въпреки това, някои теми може "
2829
- "да го показват"
2830
-
2831
- #: includes/admin/settings/class-sp-settings-config.php:25
2832
- msgid "Configure"
2833
- msgstr "Настройки"
2834
-
2835
- #: includes/admin/settings/class-sp-settings-config.php:46
2836
- msgid "Configure SportsPress"
2837
- msgstr "SportsPress Настройки"
2838
-
2839
- #: includes/admin/settings/class-sp-settings-config.php:101
2840
- #: includes/admin/settings/class-sp-settings-config.php:157
2841
- #: includes/admin/settings/class-sp-settings-config.php:228
2842
- msgid "Used for events."
2843
- msgstr "Използван за събития."
2844
-
2845
- #: includes/admin/settings/class-sp-settings-config.php:164
2846
- #: includes/admin/settings/class-sp-settings-general.php:285
2847
- msgid "Primary"
2848
- msgstr "Първичен"
2849
-
2850
- #: includes/admin/settings/class-sp-settings-config.php:166
2851
- msgid "Variables"
2852
- msgstr "Променливи"
2853
-
2854
- #: includes/admin/settings/class-sp-settings-config.php:179
2855
- #, php-format
2856
- msgid "Default (%s)"
2857
- msgstr "Default (%s)"
2858
-
2859
- #: includes/admin/settings/class-sp-settings-config.php:280
2860
- msgid "Used for league tables."
2861
- msgstr "Използван за таблици на лиги."
2862
-
2863
- #: includes/admin/settings/class-sp-settings-config.php:339
2864
- #: includes/admin/settings/class-sp-settings-config.php:391
2865
- msgid "Used for player lists."
2866
- msgstr "Използван за списъци с играчи."
2867
 
2868
  #: includes/admin/settings/class-sp-settings-events.php:42
2869
  msgid "Event Options"
2870
  msgstr "Опции на Събития"
2871
 
2872
  #: includes/admin/settings/class-sp-settings-events.php:45
2873
- #: includes/admin/settings/class-sp-settings-events.php:155
2874
- #: includes/admin/settings/class-sp-settings-players.php:82
2875
- #: includes/admin/settings/class-sp-settings-teams.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2876
  msgid "Limit"
2877
  msgstr "Лимит"
2878
 
2879
- #: includes/admin/settings/class-sp-settings-events.php:49
2880
- #: includes/admin/settings/class-sp-settings-teams.php:77
2881
  msgid "teams"
2882
  msgstr "отбори"
2883
 
2884
- #: includes/admin/settings/class-sp-settings-events.php:69
2885
- msgid "Display maps"
2886
- msgstr "Покажи карти"
2887
-
2888
- #: includes/admin/settings/class-sp-settings-events.php:77
2889
- #: includes/admin/settings/class-sp-settings-events.php:140
2890
- msgid "Link venues"
2891
- msgstr "Свържи местоположения"
2892
-
2893
  #: includes/admin/settings/class-sp-settings-events.php:86
2894
  msgid "Display players"
2895
  msgstr "Покажи играчи"
2896
 
2897
- #: includes/admin/settings/class-sp-settings-events.php:102
2898
  msgid "Display total"
2899
  msgstr "Покажи общо"
2900
 
2901
- #: includes/admin/settings/class-sp-settings-events.php:111
 
 
 
 
 
 
 
 
2902
  msgid "Display staff"
2903
  msgstr "Покажи персонал"
2904
 
2905
- #: includes/admin/settings/class-sp-settings-events.php:119
2906
- msgid "Link staff"
2907
- msgstr "Свържи персонал"
2908
-
2909
- #: includes/admin/settings/class-sp-settings-events.php:132
2910
- #: includes/admin/settings/class-sp-settings-players.php:65
2911
- #: includes/admin/settings/class-sp-settings-teams.php:57
2912
- msgid "Link teams"
2913
- msgstr "Свържи отбори"
2914
 
2915
- #: includes/admin/settings/class-sp-settings-events.php:147
2916
- #: includes/admin/settings/class-sp-settings-players.php:74
2917
- #: includes/admin/settings/class-sp-settings-teams.php:65
 
2918
  msgid "Pagination"
2919
  msgstr "Странциране"
2920
 
2921
- #: includes/admin/settings/class-sp-settings-events.php:148
2922
- #: includes/admin/settings/class-sp-settings-players.php:75
2923
- #: includes/admin/settings/class-sp-settings-teams.php:66
 
2924
  msgid "Paginate"
2925
  msgstr "Странцирай"
2926
 
2927
- #: includes/admin/settings/class-sp-settings-events.php:159
 
2928
  msgid "events"
2929
  msgstr "събития"
2930
 
2931
- #: includes/admin/settings/class-sp-settings-events.php:206
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2932
  msgid "Custom:"
2933
  msgstr "Друг:"
2934
 
@@ -2940,134 +3022,190 @@ msgstr "Общи"
2940
  msgid "General Options"
2941
  msgstr "Основни настройки"
2942
 
2943
- #: includes/admin/settings/class-sp-settings-general.php:68
2944
  msgid "Google Maps"
2945
  msgstr "Google Карти"
2946
 
2947
- #: includes/admin/settings/class-sp-settings-general.php:74
2948
  msgid "Satellite"
2949
  msgstr "Сателит"
2950
 
2951
- #: includes/admin/settings/class-sp-settings-general.php:75
2952
  msgid "Hybrid"
2953
  msgstr "Хибрид"
2954
 
2955
- #: includes/admin/settings/class-sp-settings-general.php:76
2956
  msgid "Terrain"
2957
  msgstr "Терен"
2958
 
2959
- #: includes/admin/settings/class-sp-settings-general.php:82
2960
  msgid "Styles and Scripts"
2961
  msgstr "Стилове и скриптове"
2962
 
2963
- #: includes/admin/settings/class-sp-settings-general.php:90
2964
  msgid "Align"
2965
  msgstr "Подравняване"
2966
 
2967
- #: includes/admin/settings/class-sp-settings-general.php:96
2968
  msgid "Left"
2969
  msgstr "Ляво"
2970
 
2971
- #: includes/admin/settings/class-sp-settings-general.php:97
2972
  msgid "Center"
2973
  msgstr "Център"
2974
 
2975
- #: includes/admin/settings/class-sp-settings-general.php:98
2976
  msgid "Right"
2977
  msgstr "Дясно"
2978
 
2979
- #: includes/admin/settings/class-sp-settings-general.php:103
2980
  msgid "Padding"
2981
  msgstr "Padding"
2982
 
2983
- #: includes/admin/settings/class-sp-settings-general.php:119
2984
  msgid "Custom CSS"
2985
  msgstr "Собствен CSS"
2986
 
2987
- #: includes/admin/settings/class-sp-settings-general.php:126
2988
  msgid "Scripts"
2989
  msgstr "Скриптове"
2990
 
2991
- #: includes/admin/settings/class-sp-settings-general.php:127
2992
- msgid "Responsive tables"
2993
- msgstr "Респонсивни Таблици"
2994
-
2995
- #: includes/admin/settings/class-sp-settings-general.php:132
2996
- msgid "This will enable a script allowing the tables to be responsive."
2997
- msgstr "Това ще активира скрипт, който ще направи таблиците респонсивни."
2998
-
2999
- #: includes/admin/settings/class-sp-settings-general.php:136
3000
- msgid "Sortable tables"
3001
- msgstr "Сортиращи таблици"
3002
-
3003
- #: includes/admin/settings/class-sp-settings-general.php:141
3004
- msgid "This will enable a script allowing the tables to be sortable."
3005
- msgstr "Това ще активира скрипт, който позволява таблиците да се сортират."
3006
-
3007
- #: includes/admin/settings/class-sp-settings-general.php:145
3008
  msgid "Live countdowns"
3009
  msgstr "Отброявания на живо"
3010
 
3011
- #: includes/admin/settings/class-sp-settings-general.php:150
3012
  msgid "This will enable a script allowing the countdowns to be animated."
3013
- msgstr ""
3014
- "Това ще активира скрипт, който позволява отброяванията да бъдат анимирани."
3015
 
3016
- #: includes/admin/settings/class-sp-settings-general.php:154
3017
  msgid "Shortcode menu"
3018
  msgstr "Меню с шорткоди"
3019
 
3020
- #: includes/admin/settings/class-sp-settings-general.php:159
3021
- msgid "This will enable a shortcode menu to be displayed in the visual editor."
 
3022
  msgstr "Това ще добави меню с шорткоди във визуалния редактор."
3023
 
3024
- #: includes/admin/settings/class-sp-settings-general.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3025
  msgid "Header Offset"
3026
  msgstr "Позиция на Заглавния Елемент"
3027
 
3028
- #: includes/admin/settings/class-sp-settings-general.php:270
3029
  msgid "Frontend Styles"
3030
  msgstr "Стилове на началната страница"
3031
 
3032
- #: includes/admin/settings/class-sp-settings-general.php:286
 
 
 
 
 
3033
  msgid "Background"
3034
  msgstr "Фон"
3035
 
3036
- #: includes/admin/settings/class-sp-settings-general.php:287
3037
  #: includes/admin/settings/class-sp-settings-text.php:25
3038
  #: includes/admin/settings/class-sp-settings-text.php:41
3039
  msgid "Text"
3040
  msgstr "Текст"
3041
 
3042
- #: includes/admin/settings/class-sp-settings-general.php:288
3043
  msgid "Heading"
3044
  msgstr "Заглавие"
3045
 
3046
- #: includes/admin/settings/class-sp-settings-general.php:289
3047
- msgid "Link"
3048
- msgstr "Връзка"
3049
-
3050
- #: includes/admin/settings/class-sp-settings-general.php:295
3051
  msgid "Enable"
3052
  msgstr "Разрешаване"
3053
 
 
 
 
 
3054
  #: includes/admin/settings/class-sp-settings-players.php:43
3055
- #: includes/admin/settings/class-sp-settings-staff.php:45
 
 
 
 
3056
  msgid "Display national flags"
3057
  msgstr "Покажи национални флагове"
3058
 
 
 
 
 
 
 
 
 
3059
  #: includes/admin/settings/class-sp-settings-staff.php:41
3060
  msgid "Staff Options"
3061
  msgstr "Настройки на Персонал"
3062
 
 
 
 
 
3063
  #: includes/admin/settings/class-sp-settings-teams.php:41
3064
  msgid "Team Options"
3065
  msgstr "Настройки на Отбор"
3066
 
 
 
 
 
3067
  #: includes/admin/settings/class-sp-settings-text.php:41
3068
  msgid "The following options affect how words are displayed on the frontend."
3069
  msgstr "Следните настройки определят как думите се показват на сайта."
3070
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3071
  #: includes/admin/views/html-admin-page-status.php:5
3072
  msgid "Please include this information when requesting support:"
3073
  msgstr "Моля включете следната информация при заявка за подръжка:"
@@ -3123,11 +3261,9 @@ msgstr "WP лимит за паметта"
3123
  #: includes/admin/views/html-admin-page-status.php:53
3124
  #, php-format
3125
  msgid ""
3126
- "%s - We recommend setting memory to at least 64MB. See: <a href=\"%s"
3127
- "\">Increasing memory allocated to PHP</a>"
3128
- msgstr ""
3129
- "%s - Препоръчваме използването на поне 64MB. Вижте: <a href=\"%s"
3130
- "\">Увеличаване на паметта в PHP</a>"
3131
 
3132
  #: includes/admin/views/html-admin-page-status.php:60
3133
  msgid "WP Debug Mode"
@@ -3192,10 +3328,7 @@ msgid ""
3192
  "Your server does not have fsockopen or cURL enabled - PayPal IPN and other "
3193
  "scripts which communicate with other servers will not work. Contact your "
3194
  "hosting provider."
3195
- msgstr ""
3196
- "Вашият сървър не разполага с включени fsockopen или cURL - PayPal IPN и "
3197
- "други услуги които работят със сървъри от трети страни няма да работят. "
3198
- "Свържете се с вашият хостинг доставчик."
3199
 
3200
  #: includes/admin/views/html-admin-page-status.php:120
3201
  msgid "SOAP Client"
@@ -3208,11 +3341,9 @@ msgstr "Сървърът ви разполага с класът SOAP Client и
3208
  #: includes/admin/views/html-admin-page-status.php:125
3209
  #, php-format
3210
  msgid ""
3211
- "Your server does not have the <a href=\"%s\">SOAP Client</a> class enabled - "
3212
- "some gateway plugins which use SOAP may not work as expected."
3213
- msgstr ""
3214
- "Вашият сървър няма класът <a href=\"%s\">SOAP Client</a> включен - някои "
3215
- "методи за разплащане го използват и могат да не работят както се очаква."
3216
 
3217
  #: includes/admin/views/html-admin-page-status.php:148
3218
  msgid "Plugins"
@@ -3276,9 +3407,7 @@ msgstr "Шаблони"
3276
  msgid ""
3277
  "<code>%s</code> version <strong style=\"color:red\">%s</strong> is out of "
3278
  "date. The core version is %s"
3279
- msgstr ""
3280
- "<code>%s</code> версия <strong style=\"color:red\">%s</strong> не е "
3281
- "актуална. Версията на ядрото е %s"
3282
 
3283
  #: includes/admin/views/html-admin-page-status.php:470
3284
  #: includes/admin/views/html-admin-page-status.php:476
@@ -3303,27 +3432,18 @@ msgstr "Скриване на това съобщение"
3303
  #: includes/admin/views/html-notice-template-check.php:5
3304
  msgid ""
3305
  "<strong>Your theme has bundled outdated copies of SportsPress template "
3306
- "files</strong> &#8211; if you encounter functionality issues on the frontend "
3307
- "this could the reason. Ensure you update or remove them (in general we "
3308
  "recommend only bundling the template files you actually need to customize). "
3309
  "See the system report for full details."
3310
- msgstr ""
3311
- "<strong>Вашата тема е окомплектована с неактуални шаблонни файлове от "
3312
- "SportsPress </strong> &#8211; това може да причини нефункциониращи части на "
3313
- "потребителския интерфейс. Уверете се, че сте обновили шаблоните, ако това не "
3314
- "е възможно ги премахнете (по принцип препоръчваме комплектоването на шаблони "
3315
- "които наистина се нуждаят от персонализация). Вижте системния доклад за "
3316
- "повече информация."
3317
 
3318
  #: includes/admin/views/html-notice-theme-support.php:5
3319
  msgid ""
3320
  "<strong>Your theme does not declare SportsPress support</strong> &#8211; if "
3321
  "you encounter layout issues please read our integration guide or choose a "
3322
  "SportsPress theme :)"
3323
- msgstr ""
3324
- "<strong>Вашата текуща тема не е заявила че поддържа SportsPress</strong> "
3325
- "&#8211; ако имате проблем с визуализацията на продукти, моля прочетете "
3326
- "нашите напътствия за интеграция или си изберете подходяща SportsPress тема :)"
3327
 
3328
  #: includes/admin/views/html-notice-theme-support.php:7
3329
  msgid "Theme Integration Guide"
@@ -3333,11 +3453,7 @@ msgstr "Напътствия за интеграция на теми"
3333
  msgid "A clock that counts down to an upcoming event."
3334
  msgstr "Часовник, който отброява предстоящо събитие."
3335
 
3336
- #: includes/widgets/class-sp-widget-countdown.php:6
3337
- msgid "SportsPress Countdown"
3338
- msgstr "SportsPress Отброяване"
3339
-
3340
- #: includes/widgets/class-sp-widget-countdown.php:39
3341
  #: includes/widgets/class-sp-widget-event-blocks.php:48
3342
  #: includes/widgets/class-sp-widget-event-calendar.php:41
3343
  #: includes/widgets/class-sp-widget-event-list.php:51
@@ -3352,53 +3468,37 @@ msgstr "Заглавие:"
3352
  msgid "A list of events."
3353
  msgstr "Списък със събития."
3354
 
3355
- #: includes/widgets/class-sp-widget-event-blocks.php:6
3356
- msgid "SportsPress Event Blocks"
3357
- msgstr "SportsPress Блокове от Събития"
3358
-
3359
  #: includes/widgets/class-sp-widget-event-calendar.php:5
3360
  msgid "A calendar of events."
3361
  msgstr "Календар със събития."
3362
 
3363
  #: includes/widgets/class-sp-widget-event-calendar.php:6
3364
- msgid "SportsPress Event Calendar"
3365
- msgstr "SportsPress Календар със Събития"
3366
-
3367
- #: includes/widgets/class-sp-widget-event-list.php:6
3368
- msgid "SportsPress Event List"
3369
- msgstr "SportsPress Списък със Събития"
3370
 
3371
  #: includes/widgets/class-sp-widget-league-table.php:5
3372
  msgid "Display a league table."
3373
  msgstr "Покажи таблица на лигата."
3374
 
3375
- #: includes/widgets/class-sp-widget-league-table.php:6
3376
- msgid "SportsPress League Table"
3377
- msgstr "SportsPress Таблица на Лигата"
3378
-
3379
  #: includes/widgets/class-sp-widget-player-gallery.php:5
3380
  msgid "Display a gallery of players."
3381
  msgstr "Покажи галерия на играчи"
3382
 
3383
  #: includes/widgets/class-sp-widget-player-gallery.php:6
3384
- msgid "SportsPress Player Gallery"
3385
- msgstr "SportsPress Галерия на Играчи"
3386
 
3387
  #: includes/widgets/class-sp-widget-player-list.php:5
3388
  msgid "Display a list of players."
3389
  msgstr "Покажи списък с играчи."
3390
 
3391
- #: includes/widgets/class-sp-widget-player-list.php:6
3392
- msgid "SportsPress Player List"
3393
- msgstr "SportsPress Списък с Играчи"
3394
-
3395
  #: includes/widgets/class-sp-widget-player-list.php:73
3396
  msgid "Performance:"
3397
  msgstr "Изпъление"
3398
 
3399
  #. translators: Calendar caption: 1: month name, 2: 4-digit year
3400
- #: templates/event-calendar.php:92 templates/event-calendar.php:120
3401
- #: templates/event-calendar.php:128
3402
  #, php-format
3403
  msgctxt "calendar caption"
3404
  msgid "%1$s %2$s"
1
+ #
2
  # Translators:
3
  # den_zlateva <den_zlateva@yahoo.com>, 2014
4
  # ThemeBoy <support@themeboy.com>, 2014
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: SportsPress\n"
10
+ "POT-Creation-Date: 2014-08-26 02:27+1000\n"
11
+ "PO-Revision-Date: 2014-08-25 16:30+0000\n"
12
+ "Last-Translator: ThemeBoy <support@themeboy.com>\n"
13
+ "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/sportspress/language/bg_BG/)\n"
 
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: bg_BG\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Generator: Poedit 1.6.3\n"
20
  "X-Poedit-Basepath: ..\n"
21
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
 
 
22
  "X-Poedit-SearchPath-0: .\n"
23
+ "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
+ #: sportspress.php:82 sportspress.php:91
26
  msgid "Cheatin&#8217; huh?"
27
  msgstr "Правиме се на луди, а?"
28
 
29
+ #: sportspress.php:132 includes/admin/class-sp-admin-menus.php:113
30
  msgid "Settings"
31
  msgstr "Настройки"
32
 
33
+ #: sportspress.php:133
34
  msgid "Docs"
35
  msgstr "Документи"
36
 
37
+ #: sportspress.php:134
38
  msgid "Upgrade"
39
  msgstr "Ъпгрейд"
40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  #: assets/js/admin/editor-lang.php:5
42
  msgid "SportsPress Shortcodes"
43
  msgstr "SportsPress Шорткоди"
44
 
45
  #: assets/js/admin/editor-lang.php:6
46
+ #: includes/admin/settings/class-sp-settings-general.php:96
47
+ #: includes/admin/settings/class-sp-settings-general.php:163
48
  msgid "Auto"
49
  msgstr "Автоматично"
50
 
53
  msgstr "Ръчен"
54
 
55
  #: assets/js/admin/editor-lang.php:8
 
 
 
 
56
  msgid "Select..."
57
  msgstr "Избери..."
58
 
59
+ #: assets/js/admin/editor-lang.php:9 includes/class-sp-ajax.php:57
 
 
 
 
60
  #: includes/class-sp-ajax.php:101 includes/class-sp-ajax.php:130
61
  #: includes/class-sp-ajax.php:159 includes/class-sp-ajax.php:290
62
+ #: includes/class-sp-post-types.php:371 includes/sp-core-functions.php:1086
63
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:99
64
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:225
65
+ #: includes/widgets/class-sp-widget-countdown.php:62
 
66
  #: includes/widgets/class-sp-widget-event-list.php:111
67
+ #: templates/event-list.php:66
68
  msgid "Event"
69
  msgstr "Събитие"
70
 
71
+ #: assets/js/admin/editor-lang.php:10 includes/sp-core-functions.php:1085
72
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:101
73
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:104
74
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:107
75
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:111
76
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:114
77
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:117
78
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:123
79
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:135
80
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:140
81
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:150
82
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:157
83
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:168
84
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:173
85
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:189
86
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:31
87
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:27
88
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
89
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:106
90
+ #: includes/admin/settings/class-sp-settings-events.php:173
91
+ #: templates/event-details.php:34
92
  msgid "Details"
93
  msgstr "Подробности"
94
 
95
+ #: assets/js/admin/editor-lang.php:11
96
+ #: includes/admin/importers/class-sp-event-importer.php:30
97
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
98
  msgid "Results"
99
  msgstr "Резултати"
100
 
101
+ #: assets/js/admin/editor-lang.php:12
102
+ #: includes/widgets/class-sp-widget-countdown.php:6
103
+ msgid "Countdown"
104
+ msgstr "Отброяване"
105
+
106
+ #: assets/js/admin/editor-lang.php:13
107
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:49
108
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:25
109
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:25
110
  msgid "Performance"
111
  msgstr "Изпълнение"
112
 
113
+ #: assets/js/admin/editor-lang.php:14 includes/class-sp-ajax.php:188
114
  #: includes/class-sp-ajax.php:236 includes/class-sp-ajax.php:327
115
+ #: includes/class-sp-formats.php:31 includes/class-sp-post-types.php:401
116
  #: includes/widgets/class-sp-widget-event-blocks.php:51
117
  #: includes/widgets/class-sp-widget-event-calendar.php:44
118
  #: includes/widgets/class-sp-widget-event-list.php:54
119
  msgid "Calendar"
120
  msgstr "Календар"
121
 
122
+ #: assets/js/admin/editor-lang.php:15
123
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:160
124
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:27
125
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:26
126
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:31
127
+ msgid "Statistics"
128
+ msgstr "Статистики"
129
+
130
+ #: assets/js/admin/editor-lang.php:16 includes/class-sp-ajax.php:401
131
+ #: includes/class-sp-post-types.php:462
132
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:151
133
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:55
134
+ #: includes/widgets/class-sp-widget-league-table.php:6
135
+ #: includes/widgets/class-sp-widget-league-table.php:50
136
+ msgid "League Table"
137
+ msgstr "Таблица на Лигата"
138
+
139
+ #: assets/js/admin/editor-lang.php:17 includes/class-sp-ajax.php:525
140
+ #: includes/class-sp-ajax.php:615 includes/class-sp-post-types.php:523
141
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:169
142
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:55
143
+ #: includes/widgets/class-sp-widget-player-gallery.php:53
144
+ #: includes/widgets/class-sp-widget-player-list.php:6
145
+ #: includes/widgets/class-sp-widget-player-list.php:53
146
+ msgid "Player List"
147
+ msgstr "Списък на Играчи"
148
+
149
+ #: assets/js/admin/editor-lang.php:18 includes/class-sp-formats.php:32
150
+ #: includes/class-sp-formats.php:36
151
  msgid "List"
152
  msgstr "Списък"
153
 
154
+ #: assets/js/admin/editor-lang.php:19 includes/class-sp-formats.php:33
155
  msgid "Blocks"
156
  msgstr "Блокове"
157
 
158
+ #: assets/js/admin/editor-lang.php:20 includes/class-sp-ajax.php:467
159
+ #: includes/class-sp-ajax.php:496 includes/class-sp-install.php:160
160
+ #: includes/class-sp-player-list.php:376 includes/class-sp-post-types.php:493
161
+ #: includes/sp-core-functions.php:1092
162
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:63
163
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:51
164
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:136
165
+ #: templates/event-performance.php:75
166
+ msgid "Player"
167
+ msgstr "Играч"
 
 
 
 
168
 
169
+ #: assets/js/admin/editor-lang.php:21 includes/class-sp-formats.php:37
170
  msgid "Gallery"
171
  msgstr "Галерия"
172
 
176
  #: includes/class-sp-ajax.php:327 includes/class-sp-ajax.php:401
177
  #: includes/class-sp-ajax.php:467 includes/class-sp-ajax.php:496
178
  #: includes/class-sp-ajax.php:525 includes/class-sp-ajax.php:615
179
+ #: includes/widgets/class-sp-widget-countdown.php:45
180
+ #: includes/widgets/class-sp-widget-countdown.php:62
181
  #: includes/widgets/class-sp-widget-event-blocks.php:51
182
  #: includes/widgets/class-sp-widget-event-calendar.php:44
183
  #: includes/widgets/class-sp-widget-event-list.php:54
190
 
191
  #: includes/class-sp-ajax.php:63
192
  #: includes/admin/post-types/class-sp-admin-cpt-event.php:55
193
+ #: includes/widgets/class-sp-widget-countdown.php:69
194
  msgid "(Auto)"
195
  msgstr "(Автоматично)"
196
 
197
  #: includes/class-sp-ajax.php:74
198
+ #: includes/widgets/class-sp-widget-countdown.php:83
199
  msgid "Display venue"
200
  msgstr "Покажи местоположение"
201
 
202
  #: includes/class-sp-ajax.php:80
203
+ #: includes/admin/settings/class-sp-settings-events.php:174
204
+ #: includes/widgets/class-sp-widget-countdown.php:86
205
  msgid "Display league"
206
  msgstr "Покажи лига"
207
 
221
  #: includes/class-sp-ajax.php:384 includes/class-sp-ajax.php:450
222
  #: includes/class-sp-ajax.php:479 includes/class-sp-ajax.php:508
223
  #: includes/class-sp-ajax.php:598 includes/class-sp-ajax.php:675
224
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:133
225
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:149
226
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:165
227
  msgid "Shortcode"
228
  msgstr "Шорткод"
229
 
234
  #: includes/class-sp-ajax.php:480 includes/class-sp-ajax.php:509
235
  #: includes/class-sp-ajax.php:599 includes/class-sp-ajax.php:676
236
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:33
237
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:88
238
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:88
239
  msgid "Cancel"
240
  msgstr "Отказ"
241
 
242
  #: includes/class-sp-ajax.php:194 includes/class-sp-ajax.php:264
243
  #: includes/class-sp-ajax.php:355 includes/class-sp-post-types.php:37
244
  #: includes/class-sp-post-types.php:66 includes/class-sp-post-types.php:95
245
+ #: includes/class-sp-post-types.php:124 includes/class-sp-post-types.php:153
246
+ #: includes/sp-core-functions.php:407 includes/sp-core-functions.php:438
247
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:57
248
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:72
249
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:87
250
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:102
251
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:36
252
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:49
253
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:36
254
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:51
255
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:66
256
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:33
257
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:48
258
+ #: includes/admin/views/html-admin-overview.php:79
259
+ #: includes/widgets/class-sp-widget-countdown.php:52
260
  #: includes/widgets/class-sp-widget-event-blocks.php:55
261
  #: includes/widgets/class-sp-widget-event-calendar.php:48
262
  #: includes/widgets/class-sp-widget-event-list.php:58
277
  #: includes/class-sp-ajax.php:371 includes/class-sp-ajax.php:567
278
  #: includes/class-sp-ajax.php:585 includes/class-sp-ajax.php:638
279
  #: includes/class-sp-ajax.php:656
280
+ #: includes/admin/settings/class-sp-settings-general.php:62
281
+ #: includes/admin/settings/class-sp-settings-general.php:84
282
+ #: includes/admin/views/html-admin-config.php:101
283
  #: includes/admin/views/html-admin-page-status.php:65
284
  #: includes/widgets/class-sp-widget-event-blocks.php:71
285
  #: includes/widgets/class-sp-widget-event-blocks.php:84
336
  #: includes/class-sp-ajax.php:586 includes/class-sp-ajax.php:657
337
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:116
338
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
339
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:101
340
  #: includes/widgets/class-sp-widget-event-blocks.php:100
341
  #: includes/widgets/class-sp-widget-event-list.php:103
342
  #: includes/widgets/class-sp-widget-player-gallery.php:96
348
  #: includes/class-sp-ajax.php:587 includes/class-sp-ajax.php:658
349
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:117
350
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
351
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:102
352
  #: includes/widgets/class-sp-widget-event-blocks.php:101
353
  #: includes/widgets/class-sp-widget-event-list.php:104
354
  #: includes/widgets/class-sp-widget-player-gallery.php:97
363
  msgid "Columns:"
364
  msgstr "Колони:"
365
 
366
+ #: includes/class-sp-ajax.php:291 includes/class-sp-post-types.php:431
367
+ #: includes/sp-core-functions.php:1103
368
  #: includes/admin/class-sp-admin-permalink-settings.php:28
369
+ #: includes/admin/importers/class-sp-event-importer.php:29
370
+ #: includes/admin/importers/class-sp-player-importer.php:29
371
+ #: includes/admin/importers/class-sp-staff-importer.php:28
372
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:94
373
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:67
374
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:66
375
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:51
376
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:124
377
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:56
378
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
379
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
380
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:90
381
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:105
382
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:106
383
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:150
384
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:57
385
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:58
386
+ #: includes/admin/settings/class-sp-settings-events.php:77
 
387
  #: includes/admin/settings/class-sp-settings-teams.php:25
388
+ #: includes/admin/settings/class-sp-settings-teams.php:56
389
  #: includes/widgets/class-sp-widget-event-list.php:112
390
+ #: templates/event-list.php:64
391
  msgid "Teams"
392
  msgstr "Отбори:"
393
 
394
+ #: includes/class-sp-ajax.php:292 includes/sp-core-functions.php:1104
395
+ #: includes/admin/importers/class-sp-event-importer.php:27
396
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:93
397
  #: includes/widgets/class-sp-widget-event-list.php:113
398
+ #: templates/event-details.php:21
399
  msgid "Time"
400
  msgstr "Време"
401
 
402
  #: includes/class-sp-ajax.php:293 includes/class-sp-post-types.php:94
403
+ #: includes/sp-core-functions.php:1107
404
+ #: includes/admin/importers/class-sp-event-importer.php:28
405
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:51
406
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:97
407
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:82
408
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:83
409
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:71
410
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:87
411
+ #: includes/admin/settings/class-sp-settings-events.php:113
412
  #: includes/widgets/class-sp-widget-event-list.php:114
413
+ #: templates/event-list.php:80 templates/event-venue.php:36
414
  msgid "Venue"
415
  msgstr "Местоположение"
416
 
417
+ #: includes/class-sp-ajax.php:294 includes/sp-core-functions.php:1082
418
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:130
419
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:88
420
  #: includes/widgets/class-sp-widget-event-list.php:115
421
+ #: templates/event-list.php:83
422
  msgid "Article"
423
  msgstr "Статия"
424
 
428
  msgstr "Покажи брой отбори:"
429
 
430
  #: includes/class-sp-ajax.php:440
431
+ #: includes/admin/settings/class-sp-settings-events.php:78
432
+ #: includes/admin/settings/class-sp-settings-teams.php:57
433
  #: includes/widgets/class-sp-widget-league-table.php:90
434
  msgid "Display logos"
435
  msgstr "Покажи лога"
439
  msgid "Display link to view full table"
440
  msgstr "Покажи връзка за преглед на цялата таблица"
441
 
 
 
 
 
 
 
 
 
442
  #: includes/class-sp-ajax.php:538 includes/class-sp-ajax.php:628
443
  #: includes/widgets/class-sp-widget-player-gallery.php:69
444
  #: includes/widgets/class-sp-widget-player-list.php:69
452
  msgstr "Сортиране по:"
453
 
454
  #: includes/class-sp-ajax.php:568 includes/class-sp-ajax.php:639
455
+ #: includes/admin/importers/class-sp-player-importer.php:26
456
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:64
457
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:87
458
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:56
459
  #: includes/widgets/class-sp-widget-player-gallery.php:77
460
  #: includes/widgets/class-sp-widget-player-list.php:97
464
  #: includes/class-sp-ajax.php:569 includes/class-sp-ajax.php:640
465
  #: includes/class-sp-post-types.php:42 includes/class-sp-post-types.php:71
466
  #: includes/class-sp-post-types.php:100 includes/class-sp-post-types.php:129
467
+ #: includes/class-sp-post-types.php:158
468
+ #: includes/admin/importers/class-sp-player-importer.php:27
469
+ #: includes/admin/importers/class-sp-staff-importer.php:26
470
+ #: includes/admin/importers/class-sp-team-importer.php:26
471
  #: includes/admin/post-types/class-sp-admin-cpt-player.php:52
472
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:71
473
  #: includes/admin/post-types/class-sp-admin-cpt-staff.php:52
474
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:70
475
  #: includes/admin/post-types/class-sp-admin-cpt-team.php:51
476
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:88
477
  #: includes/widgets/class-sp-widget-player-gallery.php:78
478
  #: includes/widgets/class-sp-widget-player-list.php:98
479
  msgid "Name"
480
  msgstr "Име"
481
 
482
  #: includes/class-sp-ajax.php:570 includes/class-sp-ajax.php:641
483
+ #: includes/sp-core-functions.php:1091
484
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
485
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
486
  #: includes/widgets/class-sp-widget-player-gallery.php:79
1323
  msgid "Zimbabwe"
1324
  msgstr "Зимбабве"
1325
 
1326
+ #: includes/class-sp-event.php:45 includes/class-sp-post-types.php:221
1327
+ #: includes/sp-core-functions.php:1089
1328
+ #: includes/admin/importers/class-sp-event-importer.php:31
1329
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-results.php:57
1330
  msgid "Outcome"
1331
  msgstr "Изход"
1332
 
1333
  #: includes/class-sp-event.php:100 includes/class-sp-post-types.php:123
1334
+ #: includes/sp-core-functions.php:1094
1335
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:68
1336
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:71
1337
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:79
1338
+ #: templates/player-details.php:43
1339
  msgid "Position"
1340
  msgstr "Позиция"
1341
 
1342
  #: includes/class-sp-formats.php:27 includes/class-sp-post-types.php:36
1343
+ #: includes/sp-core-functions.php:1087
1344
+ #: includes/admin/importers/class-sp-event-importer.php:478
1345
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:49
1346
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:95
1347
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:114
1348
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:49
1349
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:49
1350
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:70
1351
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:53
1352
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:35
1353
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:30
1354
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:27
1355
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:61
1356
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:61
1357
+ #: templates/event-details.php:25 templates/event-list.php:74
1358
  msgid "League"
1359
  msgstr "Лига"
1360
 
1361
  #: includes/class-sp-formats.php:28
1362
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:117
1363
  msgid "Friendly"
1364
  msgstr "Приятелска"
1365
 
1366
  #: includes/class-sp-frontend-scripts.php:57
1367
+ #: includes/admin/class-sp-admin-assets.php:108
1368
+ #: includes/admin/class-sp-admin-dashboard.php:80 templates/countdown.php:66
1369
  msgid "days"
1370
  msgstr "дни"
1371
 
1372
  #: includes/class-sp-frontend-scripts.php:57
1373
+ #: includes/admin/class-sp-admin-assets.php:109 templates/countdown.php:67
1374
  msgid "hrs"
1375
  msgstr "часове"
1376
 
1377
  #: includes/class-sp-frontend-scripts.php:57
1378
+ #: includes/admin/class-sp-admin-assets.php:110
1379
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:31
1380
+ #: includes/admin/settings/class-sp-settings-events.php:135
1381
+ #: templates/countdown.php:68
1382
  msgid "mins"
1383
  msgstr "минути"
1384
 
1385
  #: includes/class-sp-frontend-scripts.php:57
1386
+ #: includes/admin/class-sp-admin-assets.php:111 templates/countdown.php:69
1387
  msgid "secs"
1388
  msgstr "секудни"
1389
 
1395
  msgid "Next"
1396
  msgstr "Напред"
1397
 
1398
+ #: includes/class-sp-install.php:192 includes/class-sp-post-types.php:553
1399
+ #: includes/class-sp-post-types.php:554 includes/sp-core-functions.php:1100
1400
  #: includes/admin/class-sp-admin-permalink-settings.php:35
1401
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:70
1402
+ #: includes/admin/settings/class-sp-settings-events.php:122
1403
  #: includes/admin/settings/class-sp-settings-staff.php:25
1404
+ #: templates/event-staff.php:43
1405
  msgid "Staff"
1406
  msgstr "Персонал"
1407
 
1421
  msgid "What's new:"
1422
  msgstr "Какво ново:"
1423
 
1424
+ #: includes/class-sp-league-table.php:332
1425
+ #: includes/class-sp-player-list.php:361 includes/class-sp-player-list.php:378
1426
+ #: includes/class-sp-player.php:326 includes/class-sp-player.php:349
1427
+ #: includes/class-sp-post-types.php:432 includes/sp-core-functions.php:1102
1428
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:52
1429
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:51
1430
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:70
1431
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:98
1432
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-results.php:45
1433
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:54
1434
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:60
1435
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:64
1436
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:57
1437
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:119
1438
+ #: includes/admin/settings/class-sp-settings-events.php:235
1439
+ #: includes/widgets/class-sp-widget-countdown.php:45
1440
+ #: templates/event-results.php:94
1441
  msgid "Team"
1442
  msgstr "Отбор"
1443
 
1444
+ #: includes/class-sp-player.php:87 includes/class-sp-team.php:65
1445
+ #: includes/sp-core-functions.php:350 includes/sp-core-functions.php:354
1446
+ #: includes/sp-core-functions.php:1106
1447
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:93
1448
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:36
1449
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:82
1450
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:38
1451
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:76
1452
+ #: templates/event-performance.php:181
1453
+ msgid "Total"
1454
+ msgstr "Общо"
1455
+
1456
+ #: includes/class-sp-player.php:347 includes/class-sp-post-types.php:65
1457
+ #: includes/sp-core-functions.php:1099
1458
+ #: includes/admin/importers/class-sp-event-importer.php:493
1459
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:50
1460
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:96
1461
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:50
1462
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:50
1463
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:76
1464
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:68
1465
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:53
1466
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:45
1467
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:60
1468
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:42
1469
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:60
1470
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:64
1471
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:64
1472
+ #: templates/event-details.php:30 templates/event-list.php:77
1473
  msgid "Season"
1474
  msgstr "Сезон"
1475
 
1476
  #: includes/class-sp-post-types.php:35 includes/class-sp-post-types.php:49
1477
+ #: includes/admin/class-sp-admin-menus.php:72
1478
+ #: includes/admin/class-sp-admin-menus.php:269
1479
  #: includes/admin/class-sp-admin-permalink-settings.php:29
1480
+ #: includes/admin/importers/class-sp-player-importer.php:30
1481
+ #: includes/admin/importers/class-sp-staff-importer.php:29
1482
+ #: includes/admin/importers/class-sp-team-importer.php:27
1483
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:68
1484
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:67
1485
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:67
1486
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:116
1487
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
1488
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:113
1489
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:120
1490
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:50
1491
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:57
1492
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:72
 
 
1493
  #: includes/admin/views/html-admin-page-status.php:296
1494
  msgid "Leagues"
1495
  msgstr "Лиги"
1500
 
1501
  #: includes/class-sp-post-types.php:39 includes/class-sp-post-types.php:68
1502
  #: includes/class-sp-post-types.php:97 includes/class-sp-post-types.php:126
1503
+ #: includes/class-sp-post-types.php:155 includes/class-sp-post-types.php:195
1504
+ #: includes/class-sp-post-types.php:225 includes/class-sp-post-types.php:255
1505
+ #: includes/class-sp-post-types.php:285 includes/class-sp-post-types.php:315
1506
+ #: includes/class-sp-post-types.php:345
 
 
 
1507
  msgid "View"
1508
  msgstr "Преглед"
1509
 
1510
  #: includes/class-sp-post-types.php:40 includes/class-sp-post-types.php:69
1511
  #: includes/class-sp-post-types.php:98 includes/class-sp-post-types.php:127
1512
+ #: includes/class-sp-post-types.php:156
1513
  msgid "Update"
1514
  msgstr "Обновяване"
1515
 
1516
  #: includes/class-sp-post-types.php:41 includes/class-sp-post-types.php:70
1517
  #: includes/class-sp-post-types.php:99 includes/class-sp-post-types.php:128
1518
+ #: includes/class-sp-post-types.php:157 includes/sp-core-functions.php:885
1519
+ #: includes/sp-core-functions.php:902
1520
+ #: includes/admin/class-sp-admin-menus.php:265
1521
+ #: includes/admin/importers/class-sp-event-importer.php:488
1522
+ #: includes/admin/importers/class-sp-event-importer.php:503
1523
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:64
1524
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:79
1525
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:94
1526
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:109
1527
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:47
1528
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:65
1529
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:82
1530
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:41
1531
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:56
1532
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:71
1533
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:108
1534
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-metrics.php:42
1535
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:67
1536
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:38
1537
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:53
1538
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:60
1539
+ #: includes/admin/views/html-admin-config.php:49
1540
+ #: includes/admin/views/html-admin-config.php:124
1541
+ #: includes/admin/views/html-admin-config.php:177
1542
+ #: includes/admin/views/html-admin-config.php:234
1543
+ #: includes/admin/views/html-admin-config.php:286
1544
+ #: includes/admin/views/html-admin-config.php:341
1545
+ #: includes/widgets/class-sp-widget-countdown.php:57
1546
+ #: includes/widgets/class-sp-widget-countdown.php:77
1547
  #: includes/widgets/class-sp-widget-event-blocks.php:63
1548
  #: includes/widgets/class-sp-widget-event-calendar.php:56
1549
  #: includes/widgets/class-sp-widget-event-list.php:66
1557
 
1558
  #: includes/class-sp-post-types.php:43 includes/class-sp-post-types.php:72
1559
  #: includes/class-sp-post-types.php:101 includes/class-sp-post-types.php:130
1560
+ #: includes/class-sp-post-types.php:159
1561
  msgid "Parent"
1562
  msgstr "Родител"
1563
 
1564
  #: includes/class-sp-post-types.php:44 includes/class-sp-post-types.php:73
1565
  #: includes/class-sp-post-types.php:102 includes/class-sp-post-types.php:131
1566
+ #: includes/class-sp-post-types.php:160
1567
  msgid "Parent:"
1568
  msgstr "Родител:"
1569
 
1570
  #: includes/class-sp-post-types.php:45 includes/class-sp-post-types.php:74
1571
  #: includes/class-sp-post-types.php:103 includes/class-sp-post-types.php:132
1572
+ #: includes/class-sp-post-types.php:161 includes/class-sp-post-types.php:196
1573
+ #: includes/class-sp-post-types.php:226 includes/class-sp-post-types.php:256
1574
+ #: includes/class-sp-post-types.php:286 includes/class-sp-post-types.php:316
1575
+ #: includes/class-sp-post-types.php:346 includes/class-sp-post-types.php:376
1576
+ #: includes/class-sp-post-types.php:406 includes/class-sp-post-types.php:437
1577
+ #: includes/class-sp-post-types.php:467 includes/class-sp-post-types.php:498
1578
+ #: includes/class-sp-post-types.php:528 includes/class-sp-post-types.php:559
1579
  msgid "Search"
1580
  msgstr "Търсене"
1581
 
1582
  #: includes/class-sp-post-types.php:46 includes/class-sp-post-types.php:75
1583
  #: includes/class-sp-post-types.php:104 includes/class-sp-post-types.php:133
1584
+ #: includes/class-sp-post-types.php:162 includes/class-sp-post-types.php:197
1585
+ #: includes/class-sp-post-types.php:198 includes/class-sp-post-types.php:227
1586
+ #: includes/class-sp-post-types.php:228 includes/class-sp-post-types.php:257
1587
+ #: includes/class-sp-post-types.php:258 includes/class-sp-post-types.php:287
1588
+ #: includes/class-sp-post-types.php:288 includes/class-sp-post-types.php:317
1589
+ #: includes/class-sp-post-types.php:318 includes/class-sp-post-types.php:347
1590
+ #: includes/class-sp-post-types.php:348 includes/class-sp-post-types.php:377
1591
+ #: includes/class-sp-post-types.php:378 includes/class-sp-post-types.php:407
1592
+ #: includes/class-sp-post-types.php:408 includes/class-sp-post-types.php:438
1593
+ #: includes/class-sp-post-types.php:439 includes/class-sp-post-types.php:468
1594
+ #: includes/class-sp-post-types.php:469 includes/class-sp-post-types.php:499
1595
+ #: includes/class-sp-post-types.php:500 includes/class-sp-post-types.php:529
1596
+ #: includes/class-sp-post-types.php:530 includes/class-sp-post-types.php:560
1597
+ #: includes/class-sp-post-types.php:561 includes/sp-core-functions.php:763
1598
+ #: includes/sp-core-functions.php:803
1599
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:180
1600
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:114
1601
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:32
1602
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:101
1603
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:32
1604
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:97
1605
+ #: includes/admin/views/html-admin-config.php:43
1606
+ #: includes/admin/views/html-admin-config.php:117
1607
+ #: includes/admin/views/html-admin-config.php:171
1608
+ #: includes/admin/views/html-admin-config.php:228
1609
+ #: includes/admin/views/html-admin-config.php:280
1610
+ #: includes/admin/views/html-admin-config.php:335
1611
+ #: includes/admin/views/html-admin-overview.php:282
1612
  msgid "No results found."
1613
  msgstr "Няма резултати."
1614
 
1615
  #: includes/class-sp-post-types.php:64 includes/class-sp-post-types.php:78
1616
+ #: includes/admin/class-sp-admin-menus.php:79
1617
+ #: includes/admin/class-sp-admin-menus.php:277
1618
  #: includes/admin/class-sp-admin-permalink-settings.php:30
1619
+ #: includes/admin/importers/class-sp-player-importer.php:31
1620
+ #: includes/admin/importers/class-sp-staff-importer.php:30
1621
+ #: includes/admin/importers/class-sp-team-importer.php:28
1622
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:69
1623
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:68
1624
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:68
1625
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:131
1626
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
1627
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:128
1628
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:135
1629
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:65
1630
  #: includes/admin/views/html-admin-page-status.php:306
1631
  msgid "Seasons"
1632
  msgstr "Сезони"
1636
  msgstr "Редактирай Сезон"
1637
 
1638
  #: includes/class-sp-post-types.php:93 includes/class-sp-post-types.php:107
1639
+ #: includes/admin/class-sp-admin-menus.php:281
1640
  #: includes/admin/class-sp-admin-permalink-settings.php:26
 
1641
  #: includes/admin/views/html-admin-page-status.php:316
1642
  msgid "Venues"
1643
  msgstr "Местоположения"
1647
  msgstr "Редактирай Местоположение"
1648
 
1649
  #: includes/class-sp-post-types.php:122 includes/class-sp-post-types.php:136
1650
+ #: includes/admin/class-sp-admin-menus.php:273
1651
  #: includes/admin/class-sp-admin-permalink-settings.php:33
1652
+ #: includes/admin/importers/class-sp-player-importer.php:28
1653
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:66
1654
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:71
1655
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
1656
  #: includes/admin/views/html-admin-page-status.php:326
1661
  msgid "Edit Position"
1662
  msgstr "Редактирай Позиция"
1663
 
1664
+ #: includes/class-sp-post-types.php:151 includes/class-sp-post-types.php:165
1665
+ #: includes/admin/class-sp-admin-menus.php:238
1666
+ #: includes/admin/importers/class-sp-staff-importer.php:27
1667
+ msgid "Roles"
1668
+ msgstr ""
1669
+
1670
+ #: includes/class-sp-post-types.php:152
1671
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:65
1672
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:55
1673
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:62
1674
+ msgid "Role"
1675
+ msgstr "Роля"
1676
+
1677
+ #: includes/class-sp-post-types.php:154
1678
+ msgid "Edit Role"
1679
+ msgstr ""
1680
+
1681
+ #: includes/class-sp-post-types.php:190 includes/sp-core-functions.php:1098
1682
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:127
1683
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:27
1684
+ #: includes/admin/views/html-admin-config.php:74
1685
+ #: includes/admin/views/html-admin-config.php:78
1686
  #: includes/admin/views/html-admin-page-status.php:237
1687
+ #: templates/event-results.php:90
1688
  msgid "Team Results"
1689
  msgstr "Резултати на Отбор"
1690
 
1691
+ #: includes/class-sp-post-types.php:191
1692
  msgid "Result"
1693
  msgstr "Резултат"
1694
 
1695
+ #: includes/class-sp-post-types.php:192
1696
  msgid "Add New Result"
1697
  msgstr "Добави Нов Резултат"
1698
 
1699
+ #: includes/class-sp-post-types.php:193
1700
  msgid "Edit Result"
1701
  msgstr "Редактирай Резултат"
1702
 
1703
+ #: includes/class-sp-post-types.php:194 includes/class-sp-post-types.php:224
1704
+ #: includes/class-sp-post-types.php:254 includes/class-sp-post-types.php:284
1705
+ #: includes/class-sp-post-types.php:314 includes/class-sp-post-types.php:344
1706
+ #: includes/class-sp-post-types.php:374 includes/class-sp-post-types.php:404
1707
+ #: includes/class-sp-post-types.php:435 includes/class-sp-post-types.php:465
1708
+ #: includes/class-sp-post-types.php:496 includes/class-sp-post-types.php:526
1709
+ #: includes/class-sp-post-types.php:557
1710
  msgid "New"
1711
  msgstr "Нов"
1712
 
1713
+ #: includes/class-sp-post-types.php:220
1714
+ #: includes/admin/views/html-admin-config.php:19
1715
  #: includes/admin/views/html-admin-page-status.php:227
1716
  msgid "Event Outcomes"
1717
  msgstr "Изходи от Събитие"
1718
 
1719
+ #: includes/class-sp-post-types.php:222
1720
  msgid "Add New Outcome"
1721
  msgstr "Добави Нов Изход"
1722
 
1723
+ #: includes/class-sp-post-types.php:223
1724
  msgid "Edit Outcome"
1725
  msgstr "Редактирай Изход"
1726
 
1727
+ #: includes/class-sp-post-types.php:250
1728
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:144
1729
+ #: includes/admin/views/html-admin-config.php:200
1730
  #: includes/admin/views/html-admin-page-status.php:257
1731
  msgid "Table Columns"
1732
  msgstr "Колони на Таблицата"
1733
 
1734
+ #: includes/class-sp-post-types.php:251
1735
  msgid "Column"
1736
  msgstr "Колона"
1737
 
1738
+ #: includes/class-sp-post-types.php:252
1739
  msgid "Add New Column"
1740
  msgstr "Добави Нова Колона"
1741
 
1742
+ #: includes/class-sp-post-types.php:253
1743
  msgid "Edit Column"
1744
  msgstr "Редактирай Колона"
1745
 
1746
+ #: includes/class-sp-post-types.php:280
1747
+ #: includes/admin/views/html-admin-config.php:258
1748
  #: includes/admin/views/html-admin-page-status.php:267
1749
  msgid "Player Metrics"
1750
  msgstr "Характеристики на Играч"
1751
 
1752
+ #: includes/class-sp-post-types.php:281
1753
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:52
1754
  msgid "Metric"
1755
  msgstr "Характеристика"
1756
 
1757
+ #: includes/class-sp-post-types.php:282
1758
  msgid "Add New Metric"
1759
  msgstr "Добави Нова Характеристика"
1760
 
1761
+ #: includes/class-sp-post-types.php:283
1762
  msgid "Edit Metric"
1763
  msgstr "Редактирай Характеристика"
1764
 
1765
+ #: includes/class-sp-post-types.php:310 includes/class-sp-post-types.php:311
1766
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:128
1767
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:35
1768
+ #: includes/admin/settings/class-sp-settings-events.php:102
1769
+ #: includes/admin/views/html-admin-config.php:147
1770
+ #: includes/admin/views/html-admin-page-status.php:247
1771
+ msgid "Player Performance"
1772
+ msgstr "Изпълнение на Играч"
1773
+
1774
+ #: includes/class-sp-post-types.php:312
1775
  msgid "Add New Performance"
1776
  msgstr "Добави ново изпълнение"
1777
 
1778
+ #: includes/class-sp-post-types.php:313
1779
  msgid "Edit Performance"
1780
  msgstr "Редактирай Изпълнение"
1781
 
1782
+ #: includes/class-sp-post-types.php:340
1783
+ #: includes/admin/views/html-admin-config.php:309
1784
  #: includes/admin/views/html-admin-page-status.php:277
1785
  msgid "Player Statistics"
1786
  msgstr "Статистики на Играчи"
1787
 
1788
+ #: includes/class-sp-post-types.php:341
1789
  msgid "Statistic"
1790
  msgstr "Статистики"
1791
 
1792
+ #: includes/class-sp-post-types.php:342
1793
  msgid "Add New Statistic"
1794
  msgstr "Добави Нова Статистика"
1795
 
1796
+ #: includes/class-sp-post-types.php:343
1797
  msgid "Edit Statistic"
1798
  msgstr "Редактирай Статистика"
1799
 
1800
+ #: includes/class-sp-post-types.php:370
1801
  #: includes/admin/class-sp-admin-permalink-settings.php:25
1802
  #: includes/admin/class-sp-admin-taxonomies.php:134
1803
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:53
1804
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:136
1805
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
1806
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
1807
+ #: includes/admin/settings/class-sp-settings-events.php:25
1808
+ msgid "Events"
1809
+ msgstr "Събития"
1810
 
1811
+ #: includes/class-sp-post-types.php:372
1812
+ #: includes/admin/class-sp-admin-welcome.php:247
1813
  msgid "Add New Event"
1814
  msgstr "Добави Ново Събитие"
1815
 
1816
+ #: includes/class-sp-post-types.php:373
1817
  msgid "Edit Event"
1818
  msgstr "Редактирай Събитие"
1819
 
1820
+ #: includes/class-sp-post-types.php:375
1821
+ msgid "View Event"
1822
+ msgstr ""
1823
+
1824
+ #: includes/class-sp-post-types.php:400
1825
  #: includes/admin/class-sp-admin-permalink-settings.php:27
 
1826
  msgid "Calendars"
1827
  msgstr "Календари"
1828
 
1829
+ #: includes/class-sp-post-types.php:402
1830
  msgid "Add New Calendar"
1831
  msgstr "Добави Нов Календар"
1832
 
1833
+ #: includes/class-sp-post-types.php:403
1834
  msgid "Edit Calendar"
1835
  msgstr "Редактирай Календар"
1836
 
1837
+ #: includes/class-sp-post-types.php:405
1838
+ msgid "View Calendar"
1839
+ msgstr ""
1840
+
1841
+ #: includes/class-sp-post-types.php:433
1842
+ #: includes/admin/class-sp-admin-welcome.php:245
1843
  msgid "Add New Team"
1844
  msgstr "Добави Нов Отбор"
1845
 
1846
+ #: includes/class-sp-post-types.php:434
1847
  msgid "Edit Team"
1848
  msgstr "Редактирай Отбор"
1849
 
1850
+ #: includes/class-sp-post-types.php:436
1851
+ msgid "View Team"
1852
+ msgstr ""
1853
+
1854
+ #: includes/class-sp-post-types.php:461
1855
  #: includes/admin/class-sp-admin-permalink-settings.php:31
1856
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:143
1857
+ #: includes/admin/settings/class-sp-settings-teams.php:53
1858
  msgid "League Tables"
1859
  msgstr "Таблици на Лигите"
1860
 
1861
+ #: includes/class-sp-post-types.php:463
1862
  msgid "Add New League Table"
1863
  msgstr "Добави Нова Таблица на Лига"
1864
 
1865
+ #: includes/class-sp-post-types.php:464
1866
  msgid "Edit League Table"
1867
  msgstr "Редактирай Таблица на Лига"
1868
 
1869
+ #: includes/class-sp-post-types.php:466
1870
+ msgid "View League Table"
1871
+ msgstr ""
1872
+
1873
+ #: includes/class-sp-post-types.php:492
1874
+ #: includes/admin/class-sp-admin-permalink-settings.php:32
1875
+ #: includes/admin/importers/class-sp-event-importer.php:32
1876
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:52
1877
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:69
1878
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:122
1879
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:170
1880
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:105
1881
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:58
1882
+ #: includes/admin/settings/class-sp-settings-players.php:25
1883
+ #: includes/admin/settings/class-sp-settings-players.php:62
1884
+ msgid "Players"
1885
+ msgstr "Играчи"
1886
+
1887
  #: includes/class-sp-post-types.php:494
1888
+ #: includes/admin/class-sp-admin-welcome.php:246
1889
+ msgid "Add New Player"
1890
+ msgstr "Добави Нов Играч"
1891
+
1892
+ #: includes/class-sp-post-types.php:495
1893
+ msgid "Edit Player"
1894
+ msgstr "Редактирай Играч"
1895
+
1896
+ #: includes/class-sp-post-types.php:497
1897
+ msgid "View Player"
1898
+ msgstr ""
1899
+
1900
+ #: includes/class-sp-post-types.php:522
1901
  #: includes/admin/class-sp-admin-permalink-settings.php:34
1902
  #: includes/admin/post-types/class-sp-admin-meta-boxes.php:142
1903
+ #: includes/admin/settings/class-sp-settings-players.php:59
1904
  msgid "Player Lists"
1905
  msgstr "Списъци с Играчи"
1906
 
1907
+ #: includes/class-sp-post-types.php:524
1908
  msgid "Add New Player List"
1909
  msgstr "Добави Нов Списък с Играчи"
1910
 
1911
+ #: includes/class-sp-post-types.php:525
1912
  msgid "Edit Player List"
1913
  msgstr "Редактирай Списък с Играчи"
1914
 
1915
  #: includes/class-sp-post-types.php:527
1916
+ msgid "View Player List"
1917
+ msgstr ""
1918
+
1919
+ #: includes/class-sp-post-types.php:555
1920
  msgid "Add New Staff"
1921
  msgstr "Добави Нов Персонал"
1922
 
1923
+ #: includes/class-sp-post-types.php:556
1924
  msgid "Edit Staff"
1925
  msgstr "Редактирай Персонал"
1926
 
1927
+ #: includes/class-sp-post-types.php:558
1928
+ #: includes/admin/importers/class-sp-staff-importer.php:141
1929
+ msgid "View Staff"
1930
+ msgstr "Прегледай Персонал"
1931
+
1932
  #: includes/sp-core-functions.php:318
1933
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:98
1934
  #: templates/team-link.php:21
1935
  msgid "Visit Site"
1936
  msgstr "Към сайта"
1937
 
 
 
 
 
 
 
 
1938
  #: includes/sp-core-functions.php:350
1939
  msgid "Average"
1940
  msgstr "Средно"
1947
  msgid "Scheduled"
1948
  msgstr "Планирана"
1949
 
1950
+ #: includes/sp-core-functions.php:686 includes/sp-core-functions.php:826
1951
  msgid "(no title)"
1952
  msgstr "(без заглавие)"
1953
 
1954
+ #: includes/sp-core-functions.php:703 includes/sp-core-functions.php:783
1955
  msgid "Select All"
1956
  msgstr "Избор на всички"
1957
 
1958
+ #: includes/sp-core-functions.php:764 includes/sp-core-functions.php:767
1959
  msgid "Show all"
1960
  msgstr "Покажи Всички"
1961
 
1962
+ #: includes/sp-core-functions.php:1083
1963
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:87
1964
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:101
1965
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:97
1966
+ #: templates/player-details.php:52 templates/staff-details.php:36
1967
+ msgid "Current Team"
1968
+ msgstr "Текущ Отбор"
1969
+
1970
+ #: includes/sp-core-functions.php:1084
1971
+ #: includes/admin/importers/class-sp-event-importer.php:26
1972
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:92
1973
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:49
1974
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:42
1975
+ #: templates/event-details.php:21 templates/event-list.php:57
1976
  msgid "Date"
1977
  msgstr "Дата"
1978
 
1979
+ #: includes/sp-core-functions.php:1088
1980
+ #: includes/admin/importers/class-sp-player-importer.php:32
1981
+ #: includes/admin/importers/class-sp-staff-importer.php:31
1982
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:59
1983
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
1984
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:71
1985
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:72
1986
+ #: includes/admin/settings/class-sp-settings-players.php:50
1987
+ #: includes/admin/settings/class-sp-settings-staff.php:52
1988
  #: templates/player-details.php:34 templates/staff-details.php:32
1989
  msgid "Nationality"
1990
  msgstr "Националност"
1991
 
1992
+ #: includes/sp-core-functions.php:1090
1993
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:101
1994
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:98
1995
+ #: templates/player-details.php:61 templates/staff-details.php:43
1996
+ msgid "Past Teams"
1997
+ msgstr "Предишни Отбори"
1998
+
1999
+ #: includes/sp-core-functions.php:1093 templates/league-table.php:53
2000
  msgid "Pos"
2001
  msgstr "Позиция"
2002
 
2003
+ #: includes/sp-core-functions.php:1095
2004
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:167
2005
+ #: templates/event-list.php:215
2006
  msgid "Preview"
2007
  msgstr "Преглед"
2008
 
2009
+ #: includes/sp-core-functions.php:1096 templates/player-list.php:90
2010
  msgid "Rank"
2011
  msgstr "Място"
2012
 
2013
+ #: includes/sp-core-functions.php:1097
2014
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:165
2015
+ #: templates/event-list.php:213
2016
  msgid "Recap"
2017
  msgstr "Кратък Преглед"
2018
 
2019
+ #: includes/sp-core-functions.php:1101
2020
+ msgid "Substitutes"
2021
+ msgstr "Заместници"
2022
+
2023
+ #: includes/sp-core-functions.php:1105
2024
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:64
2025
+ #: templates/event-list.php:71
2026
  msgid "Time/Results"
2027
  msgstr "Време/Резултати"
2028
 
2029
+ #: includes/sp-core-functions.php:1108 templates/event-blocks.php:118
2030
+ #: templates/event-calendar.php:211 templates/event-list.php:234
2031
  msgid "View all events"
2032
  msgstr "Прегледай всички събития"
2033
 
2034
+ #: includes/sp-core-functions.php:1109 templates/player-gallery.php:149
2035
+ #: templates/player-list.php:164
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2036
  msgid "View all players"
2037
  msgstr "Прегледай Всички Играчи"
2038
 
2039
+ #: includes/sp-core-functions.php:1110 templates/league-table.php:154
2040
+ msgid "View full table"
2041
+ msgstr "Прегледай Цялата Таблица"
2042
+
2043
+ #: includes/sp-template-hooks.php:151
2044
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:48
2045
  #: includes/admin/post-types/class-sp-admin-cpt-metric.php:45
2046
  #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:46
2047
  #: includes/admin/post-types/class-sp-admin-cpt-performance.php:45
2048
  #: includes/admin/post-types/class-sp-admin-cpt-result.php:45
2049
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:47
2050
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:137
2051
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:152
2052
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:170
2053
+ #: includes/admin/views/html-admin-config.php:29
2054
+ #: includes/admin/views/html-admin-config.php:87
2055
+ #: includes/admin/views/html-admin-config.php:157
2056
+ #: includes/admin/views/html-admin-config.php:212
2057
+ #: includes/admin/views/html-admin-config.php:267
2058
+ #: includes/admin/views/html-admin-config.php:320
2059
  msgid "Description"
2060
  msgstr "Описание"
2061
 
2062
+ #: includes/sp-template-hooks.php:154
2063
  msgid ""
2064
  "The description is not prominent by default; however, some themes may show "
2065
  "it."
2066
+ msgstr "Описанието не се показва по подразбиране, но някои теми може да ги използват."
 
2067
 
2068
+ #: includes/sp-template-hooks.php:157
2069
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:44
2070
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:44
2071
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:34
2072
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-statistic-details.php:31
2073
+ #: includes/admin/views/html-admin-config.php:208
2074
+ #: includes/admin/views/html-admin-config.php:317
2075
  msgid "Key"
2076
  msgstr "Ключ"
2077
 
2078
+ #: includes/sp-template-hooks.php:157
2079
  #: includes/admin/post-types/class-sp-admin-cpt-metric.php:44
2080
  #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:44
2081
  #: includes/admin/post-types/class-sp-admin-cpt-performance.php:44
2084
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-outcome-details.php:28
2085
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-performance-details.php:27
2086
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-result-details.php:27
2087
+ #: includes/admin/views/html-admin-config.php:27
2088
+ #: includes/admin/views/html-admin-config.php:156
2089
+ #: includes/admin/views/html-admin-config.php:266
2090
  msgid "Variable"
2091
  msgstr "Променлива"
2092
 
2093
+ #: includes/sp-template-hooks.php:160
2094
+ #: includes/admin/views/html-admin-config.php:154
2095
+ msgid "Icon"
2096
+ msgstr "Икона"
2097
+
2098
+ #: includes/sp-template-hooks.php:163
2099
+ msgid "Select Icon"
2100
+ msgstr ""
2101
+
2102
+ #: includes/sp-template-hooks.php:166
2103
+ msgid "Add icon"
2104
+ msgstr ""
2105
+
2106
+ #: includes/sp-template-hooks.php:169
2107
+ msgid "Remove icon"
2108
+ msgstr ""
2109
+
2110
+ #: includes/sp-template-hooks.php:177
2111
  msgid "User"
2112
  msgstr "Потребител"
2113
 
2114
+ #: includes/sp-template-hooks.php:185
2115
+ msgid "Photo"
2116
+ msgstr "Снимка"
2117
+
2118
+ #: includes/sp-template-hooks.php:188
2119
+ msgid "Select Photo"
2120
+ msgstr "Избери снимка"
2121
+
2122
+ #: includes/sp-template-hooks.php:191
2123
+ msgid "Add photo"
2124
+ msgstr "Добави снимка"
2125
+
2126
+ #: includes/sp-template-hooks.php:194
2127
+ msgid "Remove photo"
2128
+ msgstr "Изтрий снимка"
2129
+
2130
+ #: includes/sp-template-hooks.php:202
2131
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:63
2132
  msgid "Logo"
2133
  msgstr "Лого"
2134
 
2135
+ #: includes/sp-template-hooks.php:205
2136
  msgid "Select Logo"
2137
  msgstr "Избери Лого"
2138
 
2139
+ #: includes/sp-template-hooks.php:208
2140
  msgid "Add logo"
2141
  msgstr "Добави лого"
2142
 
2143
+ #: includes/sp-template-hooks.php:211
2144
  msgid "Remove logo"
2145
  msgstr "Премахни лого"
2146
 
2147
+ #: includes/sp-template-hooks.php:219
2148
  msgid "Date/Time:"
2149
  msgstr "Дата/Час"
2150
 
2151
+ #: includes/sp-template-hooks.php:219
2152
  msgid "Now"
2153
  msgstr "Сега"
2154
 
2155
+ #: includes/sp-template-hooks.php:348
2156
  #: includes/admin/class-sp-admin-post-types.php:62
2157
  msgid "Settings saved."
2158
  msgstr "Настройките са запазени."
2159
 
2160
+ #: includes/sp-template-hooks.php:350
2161
  #: includes/admin/class-sp-admin-post-types.php:64
2162
+ #: includes/admin/views/html-admin-config.php:50
2163
+ #: includes/admin/views/html-admin-config.php:125
2164
+ #: includes/admin/views/html-admin-config.php:178
2165
+ #: includes/admin/views/html-admin-config.php:235
2166
+ #: includes/admin/views/html-admin-config.php:287
2167
+ #: includes/admin/views/html-admin-config.php:342
2168
+ #: includes/admin/views/html-admin-overview.php:225
2169
  msgid "View All"
2170
  msgstr "Всички"
2171
 
2172
+ #: includes/sp-template-hooks.php:356 includes/sp-template-hooks.php:359
2173
+ #: includes/sp-template-hooks.php:364
2174
  #: includes/admin/class-sp-admin-post-types.php:69
2175
  #: includes/admin/class-sp-admin-post-types.php:72
2176
  #: includes/admin/class-sp-admin-post-types.php:77
2177
  msgid "Changes saved."
2178
  msgstr "Промените са записани."
2179
 
2180
+ #: includes/sp-template-hooks.php:361 includes/sp-template-hooks.php:366
2181
+ #: includes/sp-template-hooks.php:376
2182
  #: includes/admin/class-sp-admin-post-types.php:74
2183
  #: includes/admin/class-sp-admin-post-types.php:79
2184
  #: includes/admin/class-sp-admin-post-types.php:89
2185
  msgid "Success!"
2186
  msgstr "Готово!"
2187
 
2188
+ #: includes/sp-template-hooks.php:368 includes/sp-template-hooks.php:374
2189
+ #: includes/sp-template-hooks.php:378
2190
  #: includes/admin/class-sp-admin-post-types.php:81
2191
  #: includes/admin/class-sp-admin-post-types.php:87
2192
  #: includes/admin/class-sp-admin-post-types.php:91
2194
  msgid "Preview %s"
2195
  msgstr "Преглед на %s"
2196
 
2197
+ #: includes/sp-template-hooks.php:371
2198
  #: includes/admin/class-sp-admin-post-types.php:84
2199
  #, php-format
2200
  msgid "Scheduled for: <b>%1$s</b>."
2201
  msgstr "Планиран за: <b>%1$s</b>."
2202
 
2203
+ #: includes/sp-template-hooks.php:372
2204
  #: includes/admin/class-sp-admin-post-types.php:85
2205
  msgid "M j, Y @ G:i"
2206
  msgstr "d.m.Y G:i"
2207
 
2208
+ #: includes/admin/class-sp-admin-assets.php:106
2209
+ #: includes/admin/class-sp-admin-settings.php:114
2210
+ #: includes/admin/importers/class-sp-event-importer.php:487
2211
+ #: includes/admin/importers/class-sp-event-importer.php:502
2212
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:163
2213
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:189
2214
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:78
2215
  #: includes/admin/views/html-admin-page-status.php:224
2216
  msgid "None"
2217
  msgstr "Без"
2218
 
2219
+ #: includes/admin/class-sp-admin-assets.php:107
2220
  msgid "&mdash; Remove &mdash;"
2221
  msgstr "&mdash; Премахни &mdash;"
2222
 
2223
+ #: includes/admin/class-sp-admin-assets.php:112
2224
+ #: includes/admin/importers/class-sp-importer.php:176
2225
+ #, php-format
2226
+ msgid "Displaying %s&#8211;%s of %s"
2227
+ msgstr ""
2228
+
2229
  #: includes/admin/class-sp-admin-dashboard.php:34
2230
+ #: includes/admin/class-sp-admin-menus.php:51
2231
  #: includes/admin/class-sp-admin-permalink-settings.php:47
2232
+ #: includes/admin/views/html-admin-overview.php:19
2233
+ #: includes/admin/views/html-admin-overview.php:76
2234
+ #: includes/admin/views/html-admin-overview.php:127
2235
+ #: includes/admin/views/html-admin-overview.php:148
2236
+ #: includes/admin/views/html-admin-overview.php:230
2237
+ #: includes/admin/views/html-admin-overview.php:275
2238
+ #: includes/admin/views/html-admin-overview.php:295
2239
+ #: includes/widgets/class-sp-widget-countdown.php:6
2240
+ #: includes/widgets/class-sp-widget-event-blocks.php:6
2241
+ #: includes/widgets/class-sp-widget-event-calendar.php:6
2242
+ #: includes/widgets/class-sp-widget-event-list.php:6
2243
+ #: includes/widgets/class-sp-widget-league-table.php:6
2244
+ #: includes/widgets/class-sp-widget-player-gallery.php:6
2245
+ #: includes/widgets/class-sp-widget-player-list.php:6
2246
  msgid "SportsPress"
2247
  msgstr "SportsPress"
2248
 
2304
  msgid "Import <strong>staff</strong> from a csv file."
2305
  msgstr "Импортиране на <strong>персонал</strong> от csv файл."
2306
 
2307
+ #: includes/admin/class-sp-admin-menus.php:58
2308
+ #: includes/admin/views/html-admin-overview.php:3
2309
+ msgid "Overview"
2310
+ msgstr ""
2311
 
2312
+ #: includes/admin/class-sp-admin-menus.php:65
2313
+ #: includes/admin/views/html-admin-config.php:3
2314
+ msgid "Configure"
2315
+ msgstr "Настройки"
2316
+
2317
+ #: includes/admin/class-sp-admin-menus.php:86
2318
  #: includes/admin/views/html-admin-page-status.php:2
2319
  #: includes/admin/views/html-notice-template-check.php:6
2320
  msgid "System Status"
2321
  msgstr "Система"
2322
 
 
 
 
 
 
 
 
 
2323
  #: includes/admin/class-sp-admin-permalink-settings.php:75
2324
  msgid ""
2325
  "These settings control the permalinks used for SportsPress. These settings "
2326
  "only apply when <strong>not using \"default\" permalinks above</strong>."
2327
+ msgstr "Тези настройки управляват пермалинковете, които се използват за SportsPress. Тези настройки се прилагат само когато <strong>пермалинковете по подразбиране не са избрани по-горе</strong>."
 
 
 
2328
 
2329
+ #: includes/admin/class-sp-admin-settings.php:57
2330
  msgid "Action failed. Please refresh the page and retry."
2331
  msgstr "Действието беше неуспешно. Моля опитайте отново."
2332
 
2333
+ #: includes/admin/class-sp-admin-settings.php:64
2334
+ #: includes/admin/class-sp-admin-welcome.php:192
2335
  msgid "Your settings have been saved."
2336
  msgstr "Настройките ви са записани."
2337
 
2338
+ #: includes/admin/class-sp-admin-sports.php:25
2339
+ #: includes/admin/class-sp-admin-sports.php:46
2340
+ #: includes/admin/class-sp-admin-sports.php:48
2341
+ msgid "Traditional Sports"
2342
+ msgstr ""
2343
+
2344
+ #: includes/admin/class-sp-admin-sports.php:26
2345
+ #: includes/admin/class-sp-admin-sports.php:66
2346
+ #: includes/admin/class-sp-admin-sports.php:68
2347
+ msgid "Esports"
2348
+ msgstr ""
2349
+
2350
+ #: includes/admin/class-sp-admin-sports.php:27
2351
+ msgid "Other"
2352
+ msgstr ""
2353
+
2354
+ #: includes/admin/class-sp-admin-sports.php:27
2355
  msgid "Custom"
2356
  msgstr "Собствено"
2357
 
2409
  msgid "Get Started"
2410
  msgstr "Първи стъпки"
2411
 
2412
+ #: includes/admin/class-sp-admin-welcome.php:198
2413
+ #: includes/admin/settings/class-sp-settings-general.php:245
2414
+ #: includes/admin/settings/class-sp-settings-general.php:248
2415
  msgid "Timezone"
2416
  msgstr "Часова зона"
2417
 
2418
+ #: includes/admin/class-sp-admin-welcome.php:222
2419
  #: includes/admin/settings/class-sp-settings-general.php:49
2420
  #: includes/admin/views/html-admin-page-status.php:223
2421
  msgid "Sport"
2422
  msgstr "Спорт"
2423
 
2424
+ #: includes/admin/class-sp-admin-welcome.php:235
2425
+ #: includes/admin/views/html-admin-settings.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2426
  msgid "Save changes"
2427
  msgstr "Запиши промените"
2428
 
2429
+ #: includes/admin/class-sp-admin-welcome.php:242
2430
  msgid "Next Steps"
2431
  msgstr "Следващи стъпки"
2432
 
2433
+ #: includes/admin/class-sp-admin-welcome.php:243
2434
+ msgid "We&#8217;ve assembled some links to get you started:"
2435
+ msgstr ""
2436
+
2437
+ #: includes/admin/class-sp-admin-welcome.php:251
2438
  msgid "Translators"
2439
  msgstr "Преводачи"
2440
 
2441
+ #: includes/admin/class-sp-admin-welcome.php:252
2442
  msgid ""
2443
  "SportsPress has been kindly translated into several other languages thanks "
2444
+ "to our translation team. Want to see your name? <a "
2445
+ "href=\"https://www.transifex.com/projects/p/sportspress/\">Translate "
2446
+ "SportsPress</a>."
2447
+ msgstr "SportsPress е любезно преведен на няколко езика благодарение на нашия екип от преводачи. Искаш ли да видиш своето име? <a href=\"https://www.transifex.com/projects/p/sportspress/\">Преведи SportsPress</a>."
 
 
2448
 
2449
+ #: includes/admin/class-sp-admin-welcome.php:268
2450
  msgid "Go to SportsPress Settings"
2451
  msgstr "Към настройките на SportsPress"
2452
 
2453
+ #: includes/admin/importers/class-sp-event-importer.php:24
2454
+ msgid "Import Events"
2455
+ msgstr "Импортирай Събития"
 
 
 
 
 
 
 
 
 
 
 
 
2456
 
2457
+ #: includes/admin/importers/class-sp-event-importer.php:407
2458
  #, php-format
2459
  msgid ""
2460
+ "Import complete - imported <strong>%s</strong> events and skipped "
2461
+ "<strong>%s</strong>."
2462
+ msgstr "Имопортирането е завършено - импортирани <strong>%s</strong> събития и пропуснати <strong>%s</strong>."
 
 
2463
 
2464
+ #: includes/admin/importers/class-sp-event-importer.php:417
2465
+ #: includes/admin/importers/class-sp-player-importer.php:145
2466
+ #: includes/admin/importers/class-sp-staff-importer.php:141
2467
+ #: includes/admin/importers/class-sp-team-importer.php:102
2468
  msgid "All done!"
2469
  msgstr "Всичко приключи успешно!"
2470
 
2471
+ #: includes/admin/importers/class-sp-event-importer.php:417
2472
  msgid "View Events"
2473
  msgstr "Прегледай Събития"
2474
 
2475
+ #: includes/admin/importers/class-sp-event-importer.php:430
2476
+ #: includes/admin/importers/class-sp-player-importer.php:168
2477
+ #: includes/admin/importers/class-sp-staff-importer.php:164
2478
+ #: includes/admin/importers/class-sp-team-importer.php:115
 
 
 
 
2479
  msgid ""
2480
+ "Hi there! Choose a .csv file to upload, then click \"Upload file and "
2481
+ "import\"."
2482
+ msgstr "Здравей! Избери .csv файл за качване, и след това избееи \"Качване и импортиране от файл\"."
 
 
2483
 
2484
+ #: includes/admin/importers/class-sp-event-importer.php:431
2485
  #, php-format
2486
  msgid ""
2487
  "Events need to be defined with columns in a specific order (3+ columns). <a "
2488
  "href=\"%s\">Click here to download a sample</a>."
2489
+ msgstr "Събитията трабва да бъдат определени в колони с определен ред (3+ колони). <a href=\"%s\">Кликни тук за да изтеглиш пример</a>."
 
 
2490
 
2491
+ #: includes/admin/importers/class-sp-event-importer.php:448
2492
+ msgid "Date Format"
 
 
 
 
 
2493
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2494
 
2495
+ #: includes/admin/importers/class-sp-event-importer.php:467
2496
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:90
2497
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:122
2498
  msgid "Format"
2499
  msgstr "Формат"
2500
 
2501
+ #: includes/admin/importers/class-sp-event-importer.php:484
2502
+ #: includes/admin/importers/class-sp-event-importer.php:499
2503
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:44
2504
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:62
2505
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:79
2506
  msgid "-- Not set --"
2507
  msgstr "-- Празно --"
2508
 
2509
+ #: includes/admin/importers/class-sp-importer.php:100
2510
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:47
2511
+ msgid "Disable"
2512
+ msgstr "Изключване"
 
 
2513
 
2514
+ #: includes/admin/importers/class-sp-importer.php:145
2515
+ #: includes/admin/importers/class-sp-importer.php:159
2516
+ #: includes/admin/importers/class-sp-importer.php:170
2517
+ msgid "Insert row after"
2518
+ msgstr ""
2519
 
2520
+ #: includes/admin/importers/class-sp-importer.php:158
2521
+ msgid "Delete row"
 
 
 
2522
  msgstr ""
 
 
2523
 
2524
+ #: includes/admin/importers/class-sp-importer.php:185
2525
+ #: includes/admin/importers/class-sp-importer.php:221
2526
+ #: includes/admin/importers/class-sp-importer.php:236
2527
+ msgid "Sorry, there has been an error."
2528
+ msgstr "Съжаляваме, станала е някаква грешка."
2529
+
2530
+ #: includes/admin/importers/class-sp-importer.php:186
2531
+ msgid "The CSV is invalid."
2532
+ msgstr "CSV файла е невалиден."
2533
 
2534
+ #: includes/admin/importers/class-sp-player-importer.php:24
2535
+ #: includes/admin/importers/class-sp-player-importer.php:157
2536
  msgid "Import Players"
2537
  msgstr "Импортирай Играчи"
2538
 
2539
+ #: includes/admin/importers/class-sp-player-importer.php:135
2540
  #, php-format
2541
  msgid ""
2542
+ "Import complete - imported <strong>%s</strong> players and skipped "
2543
+ "<strong>%s</strong>."
2544
+ msgstr "Импортването е завършено - импортирани <strong>%s</strong> играчи и пропуснати <strong>%s</strong>."
 
 
2545
 
2546
+ #: includes/admin/importers/class-sp-player-importer.php:145
2547
+ msgid "View Players"
2548
+ msgstr "Прегледай Играчи"
2549
+
2550
+ #: includes/admin/importers/class-sp-player-importer.php:169
2551
  #, php-format
2552
  msgid ""
2553
+ "Players need to be defined with columns in a specific order (7 columns). <a "
2554
+ "href=\"%s\">Click here to download a sample</a>."
2555
+ msgstr "Събитията трабва да бъдат определени в колони с определен ред (7 колони). <a href=\"%s\">Кликни тук за да изтеглиш пример</a>."
 
 
 
 
 
 
2556
 
2557
+ #: includes/admin/importers/class-sp-staff-importer.php:24
2558
+ #: includes/admin/importers/class-sp-staff-importer.php:153
2559
  msgid "Import Staff"
2560
  msgstr "Импортирай Персонал"
2561
 
2562
+ #: includes/admin/importers/class-sp-staff-importer.php:131
2563
+ #, php-format
2564
+ msgid ""
2565
+ "Import complete - imported <strong>%s</strong> staff and skipped "
2566
+ "<strong>%s</strong>."
2567
+ msgstr "Импортването е завършено - импортирани <strong>%s</strong> персонали и пропуснати <strong>%s</strong>."
2568
+
2569
+ #: includes/admin/importers/class-sp-staff-importer.php:165
2570
  #, php-format
2571
  msgid ""
2572
+ "Staff need to be defined with columns in a specific order (6 columns). <a "
2573
  "href=\"%s\">Click here to download a sample</a>."
2574
  msgstr ""
 
 
2575
 
2576
+ #: includes/admin/importers/class-sp-team-importer.php:24
2577
+ msgid "Import Teams"
2578
+ msgstr "Импортирай Отбори"
2579
+
2580
+ #: includes/admin/importers/class-sp-team-importer.php:29
2581
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:95
2582
+ #: includes/admin/views/html-admin-page-status.php:24
2583
+ msgid "Site URL"
2584
+ msgstr "Адрес на сайта"
2585
+
2586
+ #: includes/admin/importers/class-sp-team-importer.php:30
2587
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:45
2588
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:66
2589
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-outcome-details.php:33
2590
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:101
2591
+ #: includes/admin/views/html-admin-config.php:28
2592
+ msgid "Abbreviation"
2593
+ msgstr "Абревиатура"
2594
+
2595
+ #: includes/admin/importers/class-sp-team-importer.php:31
2596
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:57
2597
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:80
2598
+ #: templates/event-list.php:61
2599
+ msgid "Home"
2600
+ msgstr "Начало"
2601
+
2602
+ #: includes/admin/importers/class-sp-team-importer.php:92
2603
  #, php-format
2604
  msgid ""
2605
+ "Import complete - imported <strong>%s</strong> teams and skipped "
2606
+ "<strong>%s</strong>."
2607
+ msgstr "Импортването е завършено - импортирани <strong>%s</strong> отбори и пропуснати <strong>%s</strong>."
 
 
2608
 
2609
+ #: includes/admin/importers/class-sp-team-importer.php:102
2610
  msgid "View Teams"
2611
  msgstr "Прегледай Отбори"
2612
 
2613
+ #: includes/admin/importers/class-sp-team-importer.php:116
 
 
 
 
2614
  #, php-format
2615
  msgid ""
2616
  "Teams need to be defined with columns in a specific order (3 columns). <a "
2617
  "href=\"%s\">Click here to download a sample</a>."
2618
+ msgstr "Отборите трабва да бъдат определени в колони с определен ред (3 колони). <a href=\"%s\">Кликни тук за да изтеглиш пример</a>."
 
 
2619
 
2620
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:48
2621
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:48
2622
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:48
2623
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:55
2624
  msgid "Title"
2625
  msgstr "Заглавие"
2626
 
2627
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:54
2628
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:53
2629
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:134
2630
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:166
2631
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:67
2632
  msgid "Layout"
2633
  msgstr "Разположение"
2634
 
2635
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:115
2636
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:194
2637
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:103
2638
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:150
2639
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:134
2640
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:85
2641
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:111
2642
  msgid "Show all leagues"
2643
  msgstr "Покажи всички лиги"
2644
 
2645
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:124
2646
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:203
2647
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:112
2648
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:159
2649
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:143
2650
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:94
2651
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:120
2652
  msgid "Show all seasons"
2653
  msgstr "Покажи всички сезони"
2654
 
2655
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:135
2656
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:186
2657
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:123
2658
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:142
2659
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:126
2660
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:105
2661
  msgid "Show all teams"
2662
  msgstr "Покажи всички отбори"
2663
 
2667
  #: includes/admin/post-types/class-sp-admin-cpt-performance.php:43
2668
  #: includes/admin/post-types/class-sp-admin-cpt-result.php:43
2669
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:43
2670
+ #: includes/admin/views/html-admin-config.php:26
2671
+ #: includes/admin/views/html-admin-config.php:85
2672
+ #: includes/admin/views/html-admin-config.php:155
2673
+ #: includes/admin/views/html-admin-config.php:207
2674
+ #: includes/admin/views/html-admin-config.php:265
2675
+ #: includes/admin/views/html-admin-config.php:316
2676
  msgid "Label"
2677
  msgstr "Етикет"
2678
 
2679
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:45
2680
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:45
2681
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:108
2682
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:118
2683
+ #: includes/admin/views/html-admin-config.php:209
2684
+ #: includes/admin/views/html-admin-config.php:318
2685
  msgid "Equation"
2686
  msgstr "Уравнение"
2687
 
2689
  #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:46
2690
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:39
2691
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-statistic-details.php:36
2692
+ #: includes/admin/views/html-admin-config.php:210
2693
+ #: includes/admin/views/html-admin-config.php:319
2694
  msgid "Rounding"
2695
  msgstr "Закръгляне"
2696
 
2697
  #: includes/admin/post-types/class-sp-admin-cpt-column.php:47
2698
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:113
2699
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:43
2700
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:98
2701
+ #: includes/admin/views/html-admin-config.php:211
2702
  msgid "Sort Order"
2703
  msgstr "Сортирай Ред"
2704
 
2705
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:131
2706
+ msgid "Show all positions"
2707
+ msgstr ""
 
 
 
 
 
 
 
 
 
2708
 
2709
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:65
2710
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:31
2711
  msgid "URL"
2712
  msgstr "Адрес"
2721
  msgid "Uploaded to this %s"
2722
  msgstr "Качено към %s"
2723
 
2724
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:121
2725
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:155
2726
  msgid "Shortcodes"
2727
  msgstr "Шорткоди"
2728
 
2729
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:125
2730
  msgid "Video"
2731
  msgstr "Видео"
2732
 
2733
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:146
2734
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:162
2735
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:174
2736
  msgid "Profile"
2737
  msgstr "Профил"
2738
 
2739
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:156
2740
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:167
2741
  msgid "Columns"
2742
  msgstr "Колони"
2743
 
2744
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:158
2745
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:26
2746
  msgid "Metrics"
2747
  msgstr "Характеристики"
2748
 
2749
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:57
2750
+ #: templates/event-list.php:62
2751
+ msgid "Away"
2752
+ msgstr ""
2753
+
2754
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:189
2755
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:122
2756
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:170
2757
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
2758
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
2759
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
2760
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
2761
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
2762
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
2763
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:62
2764
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:72
2765
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:90
2766
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:105
2767
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:120
2768
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:135
2769
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:106
2770
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:150
2771
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:57
2772
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:72
2773
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:87
 
2774
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
2775
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:106
2776
  #, php-format
2777
  msgid "Select %s"
2778
  msgstr "Избиране на %s"
2779
 
2780
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:31
2781
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:86
2782
  msgid "Status"
2783
  msgstr "Статус"
2784
 
2789
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-shortcode.php:24
2790
  msgid ""
2791
  "Copy this code and paste it into your post, page or text widget content."
2792
+ msgstr "Копирай този код и го вмъкни в твоята публикация, страница или съдържание на текстова джаджа."
 
 
 
 
 
 
2793
 
2794
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2795
  msgid "Attended"
2803
  msgid "Substituted"
2804
  msgstr "Заместен"
2805
 
2806
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2807
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
2808
+ msgid "Minutes"
2809
+ msgstr ""
2810
+
2811
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
2812
  msgid "for"
2813
  msgstr "за"
2816
  msgid "against"
2817
  msgstr "против"
2818
 
2819
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:43
2820
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:44
2821
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:45
2822
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:46
2823
+ msgid "Outcomes"
2824
+ msgstr ""
2825
+
2826
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:44
2827
  msgid "Streak"
2828
  msgstr "Поредица"
2835
  msgid "Last 10"
2836
  msgstr "Последни 10"
2837
 
2838
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:58
2839
+ msgid "Operators"
2840
+ msgstr ""
2841
+
2842
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:71
2843
+ msgid "Constants"
2844
+ msgstr ""
2845
+
2846
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:28
2847
+ #: includes/admin/settings/class-sp-settings-events.php:131
2848
+ msgid "Full Time"
2849
+ msgstr ""
2850
+
2851
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:163
2852
  msgid "Starting Lineup"
2853
  msgstr "Титулярен Отбор"
2854
 
2855
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:164
2856
  msgid "Substitute"
2857
  msgstr "Замести"
2858
 
2859
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:62
2860
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:93
2861
  msgid "&mdash; None &mdash;"
2862
  msgstr "&mdash; Избери &mdash;"
2863
 
2869
  msgid "Add video"
2870
  msgstr "Добави видео"
2871
 
2872
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:43
2873
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:49
2874
+ #: includes/admin/settings/class-sp-settings-events.php:107
2875
  msgid "Values"
2876
  msgstr "Стойности"
2877
 
2878
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:44
2879
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:50
2880
  msgid "Adjustments"
2881
  msgstr "Нагласяване"
2882
 
2883
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:84
2884
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:84
2885
+ #: includes/admin/views/html-admin-config.php:39
2886
+ #: includes/admin/views/html-admin-config.php:113
2887
+ #: includes/admin/views/html-admin-config.php:167
2888
+ #: includes/admin/views/html-admin-config.php:224
2889
+ #: includes/admin/views/html-admin-config.php:276
2890
+ #: includes/admin/views/html-admin-config.php:331
2891
  msgid "Edit"
2892
  msgstr "Редактиране"
2893
 
2894
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:89
2895
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:89
2896
  msgid "Save"
2897
  msgstr "Запис"
2898
 
2899
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:75
2900
  msgid "Grouping"
2901
  msgstr "Групиране"
2902
 
2903
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:82
2904
  msgid "Sort by"
2905
  msgstr "Сортирай според"
2906
 
2907
  #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:86
2908
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:83
2909
  msgid "Current Teams"
2910
  msgstr "Текущи Отбори"
2911
 
2912
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:56
2913
+ msgid "Highlight"
2914
+ msgstr "Акцентен цвят"
2915
 
2916
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:103
 
 
 
 
 
2917
  msgid ""
2918
  "The abbreviation is not prominent by default; however, some themes may show "
2919
  "it"
2920
+ msgstr "Съкращението не се използва по подразбиране; въпреки това, някои теми може да го показват"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2921
 
2922
  #: includes/admin/settings/class-sp-settings-events.php:42
2923
  msgid "Event Options"
2924
  msgstr "Опции на Събития"
2925
 
2926
  #: includes/admin/settings/class-sp-settings-events.php:45
2927
+ #: includes/admin/settings/class-sp-settings-general.php:285
2928
+ #: includes/admin/settings/class-sp-settings-players.php:42
2929
+ #: includes/admin/settings/class-sp-settings-staff.php:44
2930
+ #: includes/admin/settings/class-sp-settings-teams.php:44
2931
+ msgid "Link"
2932
+ msgstr "Връзка"
2933
+
2934
+ #: includes/admin/settings/class-sp-settings-events.php:46
2935
+ msgid "Link events"
2936
+ msgstr ""
2937
+
2938
+ #: includes/admin/settings/class-sp-settings-events.php:54
2939
+ msgid "Link venues"
2940
+ msgstr "Свържи местоположения"
2941
+
2942
+ #: includes/admin/settings/class-sp-settings-events.php:62
2943
+ #: includes/admin/settings/class-sp-settings-events.php:156
2944
+ #: includes/admin/settings/class-sp-settings-events.php:198
2945
+ #: includes/admin/settings/class-sp-settings-players.php:78
2946
+ #: includes/admin/settings/class-sp-settings-teams.php:72
2947
  msgid "Limit"
2948
  msgstr "Лимит"
2949
 
2950
+ #: includes/admin/settings/class-sp-settings-events.php:66
2951
+ #: includes/admin/settings/class-sp-settings-teams.php:76
2952
  msgid "teams"
2953
  msgstr "отбори"
2954
 
 
 
 
 
 
 
 
 
 
2955
  #: includes/admin/settings/class-sp-settings-events.php:86
2956
  msgid "Display players"
2957
  msgstr "Покажи играчи"
2958
 
2959
+ #: includes/admin/settings/class-sp-settings-events.php:94
2960
  msgid "Display total"
2961
  msgstr "Покажи общо"
2962
 
2963
+ #: includes/admin/settings/class-sp-settings-events.php:108
2964
+ msgid "Icons"
2965
+ msgstr ""
2966
+
2967
+ #: includes/admin/settings/class-sp-settings-events.php:114
2968
+ msgid "Display maps"
2969
+ msgstr "Покажи карти"
2970
+
2971
+ #: includes/admin/settings/class-sp-settings-events.php:123
2972
  msgid "Display staff"
2973
  msgstr "Покажи персонал"
2974
 
2975
+ #: includes/admin/settings/class-sp-settings-events.php:145
2976
+ #: includes/widgets/class-sp-widget-event-list.php:6
2977
+ msgid "Event List"
2978
+ msgstr ""
 
 
 
 
 
2979
 
2980
+ #: includes/admin/settings/class-sp-settings-events.php:148
2981
+ #: includes/admin/settings/class-sp-settings-events.php:190
2982
+ #: includes/admin/settings/class-sp-settings-players.php:70
2983
+ #: includes/admin/settings/class-sp-settings-teams.php:64
2984
  msgid "Pagination"
2985
  msgstr "Странциране"
2986
 
2987
+ #: includes/admin/settings/class-sp-settings-events.php:149
2988
+ #: includes/admin/settings/class-sp-settings-events.php:191
2989
+ #: includes/admin/settings/class-sp-settings-players.php:71
2990
+ #: includes/admin/settings/class-sp-settings-teams.php:65
2991
  msgid "Paginate"
2992
  msgstr "Странцирай"
2993
 
2994
+ #: includes/admin/settings/class-sp-settings-events.php:160
2995
+ #: includes/admin/settings/class-sp-settings-events.php:202
2996
  msgid "events"
2997
  msgstr "събития"
2998
 
2999
+ #: includes/admin/settings/class-sp-settings-events.php:170
3000
+ #: includes/widgets/class-sp-widget-event-blocks.php:6
3001
+ msgid "Event Blocks"
3002
+ msgstr ""
3003
+
3004
+ #: includes/admin/settings/class-sp-settings-events.php:182
3005
+ msgid "Display season"
3006
+ msgstr ""
3007
+
3008
+ #: includes/admin/settings/class-sp-settings-events.php:240
3009
+ #: includes/admin/settings/class-sp-settings-events.php:244
3010
+ msgid "Delimiter"
3011
+ msgstr "Разделител"
3012
+
3013
+ #: includes/admin/settings/class-sp-settings-events.php:249
3014
  msgid "Custom:"
3015
  msgstr "Друг:"
3016
 
3022
  msgid "General Options"
3023
  msgstr "Основни настройки"
3024
 
3025
+ #: includes/admin/settings/class-sp-settings-general.php:57
3026
  msgid "Google Maps"
3027
  msgstr "Google Карти"
3028
 
3029
+ #: includes/admin/settings/class-sp-settings-general.php:63
3030
  msgid "Satellite"
3031
  msgstr "Сателит"
3032
 
3033
+ #: includes/admin/settings/class-sp-settings-general.php:64
3034
  msgid "Hybrid"
3035
  msgstr "Хибрид"
3036
 
3037
+ #: includes/admin/settings/class-sp-settings-general.php:65
3038
  msgid "Terrain"
3039
  msgstr "Терен"
3040
 
3041
+ #: includes/admin/settings/class-sp-settings-general.php:71
3042
  msgid "Styles and Scripts"
3043
  msgstr "Стилове и скриптове"
3044
 
3045
+ #: includes/admin/settings/class-sp-settings-general.php:79
3046
  msgid "Align"
3047
  msgstr "Подравняване"
3048
 
3049
+ #: includes/admin/settings/class-sp-settings-general.php:85
3050
  msgid "Left"
3051
  msgstr "Ляво"
3052
 
3053
+ #: includes/admin/settings/class-sp-settings-general.php:86
3054
  msgid "Center"
3055
  msgstr "Център"
3056
 
3057
+ #: includes/admin/settings/class-sp-settings-general.php:87
3058
  msgid "Right"
3059
  msgstr "Дясно"
3060
 
3061
+ #: includes/admin/settings/class-sp-settings-general.php:92
3062
  msgid "Padding"
3063
  msgstr "Padding"
3064
 
3065
+ #: includes/admin/settings/class-sp-settings-general.php:108
3066
  msgid "Custom CSS"
3067
  msgstr "Собствен CSS"
3068
 
3069
+ #: includes/admin/settings/class-sp-settings-general.php:115
3070
  msgid "Scripts"
3071
  msgstr "Скриптове"
3072
 
3073
+ #: includes/admin/settings/class-sp-settings-general.php:116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3074
  msgid "Live countdowns"
3075
  msgstr "Отброявания на живо"
3076
 
3077
+ #: includes/admin/settings/class-sp-settings-general.php:121
3078
  msgid "This will enable a script allowing the countdowns to be animated."
3079
+ msgstr "Това ще активира скрипт, който позволява отброяванията да бъдат анимирани."
 
3080
 
3081
+ #: includes/admin/settings/class-sp-settings-general.php:125
3082
  msgid "Shortcode menu"
3083
  msgstr "Меню с шорткоди"
3084
 
3085
+ #: includes/admin/settings/class-sp-settings-general.php:130
3086
+ msgid ""
3087
+ "This will enable a shortcode menu to be displayed in the visual editor."
3088
  msgstr "Това ще добави меню с шорткоди във визуалния редактор."
3089
 
3090
+ #: includes/admin/settings/class-sp-settings-general.php:134
3091
+ msgid "Tables"
3092
+ msgstr ""
3093
+
3094
+ #: includes/admin/settings/class-sp-settings-general.php:135
3095
+ msgid "Responsive"
3096
+ msgstr ""
3097
+
3098
+ #: includes/admin/settings/class-sp-settings-general.php:143
3099
+ msgid "Sortable"
3100
+ msgstr ""
3101
+
3102
+ #: includes/admin/settings/class-sp-settings-general.php:151
3103
+ msgid "Scrollable"
3104
+ msgstr ""
3105
+
3106
+ #: includes/admin/settings/class-sp-settings-general.php:159
3107
  msgid "Header Offset"
3108
  msgstr "Позиция на Заглавния Елемент"
3109
 
3110
+ #: includes/admin/settings/class-sp-settings-general.php:266
3111
  msgid "Frontend Styles"
3112
  msgstr "Стилове на началната страница"
3113
 
3114
+ #: includes/admin/settings/class-sp-settings-general.php:281
3115
+ #: includes/admin/views/html-admin-config.php:84
3116
+ msgid "Primary"
3117
+ msgstr "Първичен"
3118
+
3119
+ #: includes/admin/settings/class-sp-settings-general.php:282
3120
  msgid "Background"
3121
  msgstr "Фон"
3122
 
3123
+ #: includes/admin/settings/class-sp-settings-general.php:283
3124
  #: includes/admin/settings/class-sp-settings-text.php:25
3125
  #: includes/admin/settings/class-sp-settings-text.php:41
3126
  msgid "Text"
3127
  msgstr "Текст"
3128
 
3129
+ #: includes/admin/settings/class-sp-settings-general.php:284
3130
  msgid "Heading"
3131
  msgstr "Заглавие"
3132
 
3133
+ #: includes/admin/settings/class-sp-settings-general.php:291
 
 
 
 
3134
  msgid "Enable"
3135
  msgstr "Разрешаване"
3136
 
3137
+ #: includes/admin/settings/class-sp-settings-players.php:39
3138
+ msgid "Player Options"
3139
+ msgstr "Настройки на Играчи"
3140
+
3141
  #: includes/admin/settings/class-sp-settings-players.php:43
3142
+ msgid "Link players"
3143
+ msgstr "Свържи играчи"
3144
+
3145
+ #: includes/admin/settings/class-sp-settings-players.php:51
3146
+ #: includes/admin/settings/class-sp-settings-staff.php:53
3147
  msgid "Display national flags"
3148
  msgstr "Покажи национални флагове"
3149
 
3150
+ #: includes/admin/settings/class-sp-settings-players.php:63
3151
+ msgid "Display photos"
3152
+ msgstr "Покажи снимки"
3153
+
3154
+ #: includes/admin/settings/class-sp-settings-players.php:82
3155
+ msgid "players"
3156
+ msgstr "играчи"
3157
+
3158
  #: includes/admin/settings/class-sp-settings-staff.php:41
3159
  msgid "Staff Options"
3160
  msgstr "Настройки на Персонал"
3161
 
3162
+ #: includes/admin/settings/class-sp-settings-staff.php:45
3163
+ msgid "Link staff"
3164
+ msgstr "Свържи персонал"
3165
+
3166
  #: includes/admin/settings/class-sp-settings-teams.php:41
3167
  msgid "Team Options"
3168
  msgstr "Настройки на Отбор"
3169
 
3170
+ #: includes/admin/settings/class-sp-settings-teams.php:45
3171
+ msgid "Link teams"
3172
+ msgstr "Свържи отбори"
3173
+
3174
  #: includes/admin/settings/class-sp-settings-text.php:41
3175
  msgid "The following options affect how words are displayed on the frontend."
3176
  msgstr "Следните настройки определят как думите се показват на сайта."
3177
 
3178
+ #: includes/admin/views/html-admin-config.php:20
3179
+ #: includes/admin/views/html-admin-config.php:75
3180
+ #: includes/admin/views/html-admin-config.php:148
3181
+ msgid "Used for events."
3182
+ msgstr "Използван за събития."
3183
+
3184
+ #: includes/admin/views/html-admin-config.php:86
3185
+ msgid "Variables"
3186
+ msgstr "Променливи"
3187
+
3188
+ #: includes/admin/views/html-admin-config.php:99
3189
+ #, php-format
3190
+ msgid "Default (%s)"
3191
+ msgstr "Default (%s)"
3192
+
3193
+ #: includes/admin/views/html-admin-config.php:201
3194
+ msgid "Used for league tables."
3195
+ msgstr "Използван за таблици на лиги."
3196
+
3197
+ #: includes/admin/views/html-admin-config.php:259
3198
+ #: includes/admin/views/html-admin-config.php:310
3199
+ msgid "Used for player lists."
3200
+ msgstr "Използван за списъци с играчи."
3201
+
3202
+ #: includes/admin/views/html-admin-config.php:353
3203
+ #: includes/admin/views/html-admin-overview.php:333
3204
+ #: includes/admin/views/html-admin-settings.php:22
3205
+ msgid ""
3206
+ "Love SportsPress? Help spread the word by rating us 5★ on WordPress.org"
3207
+ msgstr ""
3208
+
3209
  #: includes/admin/views/html-admin-page-status.php:5
3210
  msgid "Please include this information when requesting support:"
3211
  msgstr "Моля включете следната информация при заявка за подръжка:"
3261
  #: includes/admin/views/html-admin-page-status.php:53
3262
  #, php-format
3263
  msgid ""
3264
+ "%s - We recommend setting memory to at least 64MB. See: <a "
3265
+ "href=\"%s\">Increasing memory allocated to PHP</a>"
3266
+ msgstr "%s - Препоръчваме използването на поне 64MB. Вижте: <a href=\"%s\">Увеличаване на паметта в PHP</a>"
 
 
3267
 
3268
  #: includes/admin/views/html-admin-page-status.php:60
3269
  msgid "WP Debug Mode"
3328
  "Your server does not have fsockopen or cURL enabled - PayPal IPN and other "
3329
  "scripts which communicate with other servers will not work. Contact your "
3330
  "hosting provider."
3331
+ msgstr "Вашият сървър не разполага с включени fsockopen или cURL - PayPal IPN и други услуги които работят със сървъри от трети страни няма да работят. Свържете се с вашият хостинг доставчик."
 
 
 
3332
 
3333
  #: includes/admin/views/html-admin-page-status.php:120
3334
  msgid "SOAP Client"
3341
  #: includes/admin/views/html-admin-page-status.php:125
3342
  #, php-format
3343
  msgid ""
3344
+ "Your server does not have the <a href=\"%s\">SOAP Client</a> class enabled -"
3345
+ " some gateway plugins which use SOAP may not work as expected."
3346
+ msgstr "Вашият сървър няма класът <a href=\"%s\">SOAP Client</a> включен - някои методи за разплащане го използват и могат да не работят както се очаква."
 
 
3347
 
3348
  #: includes/admin/views/html-admin-page-status.php:148
3349
  msgid "Plugins"
3407
  msgid ""
3408
  "<code>%s</code> version <strong style=\"color:red\">%s</strong> is out of "
3409
  "date. The core version is %s"
3410
+ msgstr "<code>%s</code> версия <strong style=\"color:red\">%s</strong> не е актуална. Версията на ядрото е %s"
 
 
3411
 
3412
  #: includes/admin/views/html-admin-page-status.php:470
3413
  #: includes/admin/views/html-admin-page-status.php:476
3432
  #: includes/admin/views/html-notice-template-check.php:5
3433
  msgid ""
3434
  "<strong>Your theme has bundled outdated copies of SportsPress template "
3435
+ "files</strong> &#8211; if you encounter functionality issues on the frontend"
3436
+ " this could the reason. Ensure you update or remove them (in general we "
3437
  "recommend only bundling the template files you actually need to customize). "
3438
  "See the system report for full details."
3439
+ msgstr "<strong>Вашата тема е окомплектована с неактуални шаблонни файлове от SportsPress </strong> &#8211; това може да причини нефункциониращи части на потребителския интерфейс. Уверете се, че сте обновили шаблоните, ако това не е възможно ги премахнете (по принцип препоръчваме комплектоването на шаблони които наистина се нуждаят от персонализация). Вижте системния доклад за повече информация."
 
 
 
 
 
 
3440
 
3441
  #: includes/admin/views/html-notice-theme-support.php:5
3442
  msgid ""
3443
  "<strong>Your theme does not declare SportsPress support</strong> &#8211; if "
3444
  "you encounter layout issues please read our integration guide or choose a "
3445
  "SportsPress theme :)"
3446
+ msgstr "<strong>Вашата текуща тема не е заявила че поддържа SportsPress</strong> &#8211; ако имате проблем с визуализацията на продукти, моля прочетете нашите напътствия за интеграция или си изберете подходяща SportsPress тема :)"
 
 
 
3447
 
3448
  #: includes/admin/views/html-notice-theme-support.php:7
3449
  msgid "Theme Integration Guide"
3453
  msgid "A clock that counts down to an upcoming event."
3454
  msgstr "Часовник, който отброява предстоящо събитие."
3455
 
3456
+ #: includes/widgets/class-sp-widget-countdown.php:42
 
 
 
 
3457
  #: includes/widgets/class-sp-widget-event-blocks.php:48
3458
  #: includes/widgets/class-sp-widget-event-calendar.php:41
3459
  #: includes/widgets/class-sp-widget-event-list.php:51
3468
  msgid "A list of events."
3469
  msgstr "Списък със събития."
3470
 
 
 
 
 
3471
  #: includes/widgets/class-sp-widget-event-calendar.php:5
3472
  msgid "A calendar of events."
3473
  msgstr "Календар със събития."
3474
 
3475
  #: includes/widgets/class-sp-widget-event-calendar.php:6
3476
+ msgid "Event Calendar"
3477
+ msgstr ""
 
 
 
 
3478
 
3479
  #: includes/widgets/class-sp-widget-league-table.php:5
3480
  msgid "Display a league table."
3481
  msgstr "Покажи таблица на лигата."
3482
 
 
 
 
 
3483
  #: includes/widgets/class-sp-widget-player-gallery.php:5
3484
  msgid "Display a gallery of players."
3485
  msgstr "Покажи галерия на играчи"
3486
 
3487
  #: includes/widgets/class-sp-widget-player-gallery.php:6
3488
+ msgid "Player Gallery"
3489
+ msgstr ""
3490
 
3491
  #: includes/widgets/class-sp-widget-player-list.php:5
3492
  msgid "Display a list of players."
3493
  msgstr "Покажи списък с играчи."
3494
 
 
 
 
 
3495
  #: includes/widgets/class-sp-widget-player-list.php:73
3496
  msgid "Performance:"
3497
  msgstr "Изпъление"
3498
 
3499
  #. translators: Calendar caption: 1: month name, 2: 4-digit year
3500
+ #: templates/event-calendar.php:88 templates/event-calendar.php:116
3501
+ #: templates/event-calendar.php:124
3502
  #, php-format
3503
  msgctxt "calendar caption"
3504
  msgid "%1$s %2$s"
languages/sportspress-bn_BD.mo ADDED
Binary file
languages/sportspress-bn_BD.po ADDED
@@ -0,0 +1,3501 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: SportsPress\n"
6
+ "POT-Creation-Date: 2014-08-26 02:27+1000\n"
7
+ "PO-Revision-Date: 2014-08-25 16:28+0000\n"
8
+ "Last-Translator: ThemeBoy <support@themeboy.com>\n"
9
+ "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/sportspress/language/bn_BD/)\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Language: bn_BD\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Generator: Poedit 1.6.3\n"
16
+ "X-Poedit-Basepath: ..\n"
17
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SourceCharset: UTF-8\n"
20
+
21
+ #: sportspress.php:82 sportspress.php:91
22
+ msgid "Cheatin&#8217; huh?"
23
+ msgstr ""
24
+
25
+ #: sportspress.php:132 includes/admin/class-sp-admin-menus.php:113
26
+ msgid "Settings"
27
+ msgstr ""
28
+
29
+ #: sportspress.php:133
30
+ msgid "Docs"
31
+ msgstr ""
32
+
33
+ #: sportspress.php:134
34
+ msgid "Upgrade"
35
+ msgstr ""
36
+
37
+ #: assets/js/admin/editor-lang.php:5
38
+ msgid "SportsPress Shortcodes"
39
+ msgstr ""
40
+
41
+ #: assets/js/admin/editor-lang.php:6
42
+ #: includes/admin/settings/class-sp-settings-general.php:96
43
+ #: includes/admin/settings/class-sp-settings-general.php:163
44
+ msgid "Auto"
45
+ msgstr ""
46
+
47
+ #: assets/js/admin/editor-lang.php:7
48
+ msgid "Manual"
49
+ msgstr ""
50
+
51
+ #: assets/js/admin/editor-lang.php:8
52
+ msgid "Select..."
53
+ msgstr ""
54
+
55
+ #: assets/js/admin/editor-lang.php:9 includes/class-sp-ajax.php:57
56
+ #: includes/class-sp-ajax.php:101 includes/class-sp-ajax.php:130
57
+ #: includes/class-sp-ajax.php:159 includes/class-sp-ajax.php:290
58
+ #: includes/class-sp-post-types.php:371 includes/sp-core-functions.php:1086
59
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:99
60
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:225
61
+ #: includes/widgets/class-sp-widget-countdown.php:62
62
+ #: includes/widgets/class-sp-widget-event-list.php:111
63
+ #: templates/event-list.php:66
64
+ msgid "Event"
65
+ msgstr ""
66
+
67
+ #: assets/js/admin/editor-lang.php:10 includes/sp-core-functions.php:1085
68
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:101
69
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:104
70
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:107
71
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:111
72
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:114
73
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:117
74
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:123
75
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:135
76
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:140
77
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:150
78
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:157
79
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:168
80
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:173
81
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:189
82
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:31
83
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:27
84
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
85
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:106
86
+ #: includes/admin/settings/class-sp-settings-events.php:173
87
+ #: templates/event-details.php:34
88
+ msgid "Details"
89
+ msgstr ""
90
+
91
+ #: assets/js/admin/editor-lang.php:11
92
+ #: includes/admin/importers/class-sp-event-importer.php:30
93
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
94
+ msgid "Results"
95
+ msgstr ""
96
+
97
+ #: assets/js/admin/editor-lang.php:12
98
+ #: includes/widgets/class-sp-widget-countdown.php:6
99
+ msgid "Countdown"
100
+ msgstr ""
101
+
102
+ #: assets/js/admin/editor-lang.php:13
103
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:49
104
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:25
105
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:25
106
+ msgid "Performance"
107
+ msgstr ""
108
+
109
+ #: assets/js/admin/editor-lang.php:14 includes/class-sp-ajax.php:188
110
+ #: includes/class-sp-ajax.php:236 includes/class-sp-ajax.php:327
111
+ #: includes/class-sp-formats.php:31 includes/class-sp-post-types.php:401
112
+ #: includes/widgets/class-sp-widget-event-blocks.php:51
113
+ #: includes/widgets/class-sp-widget-event-calendar.php:44
114
+ #: includes/widgets/class-sp-widget-event-list.php:54
115
+ msgid "Calendar"
116
+ msgstr "পঞ্জিকা"
117
+
118
+ #: assets/js/admin/editor-lang.php:15
119
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:160
120
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:27
121
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:26
122
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:31
123
+ msgid "Statistics"
124
+ msgstr ""
125
+
126
+ #: assets/js/admin/editor-lang.php:16 includes/class-sp-ajax.php:401
127
+ #: includes/class-sp-post-types.php:462
128
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:151
129
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:55
130
+ #: includes/widgets/class-sp-widget-league-table.php:6
131
+ #: includes/widgets/class-sp-widget-league-table.php:50
132
+ msgid "League Table"
133
+ msgstr ""
134
+
135
+ #: assets/js/admin/editor-lang.php:17 includes/class-sp-ajax.php:525
136
+ #: includes/class-sp-ajax.php:615 includes/class-sp-post-types.php:523
137
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:169
138
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:55
139
+ #: includes/widgets/class-sp-widget-player-gallery.php:53
140
+ #: includes/widgets/class-sp-widget-player-list.php:6
141
+ #: includes/widgets/class-sp-widget-player-list.php:53
142
+ msgid "Player List"
143
+ msgstr ""
144
+
145
+ #: assets/js/admin/editor-lang.php:18 includes/class-sp-formats.php:32
146
+ #: includes/class-sp-formats.php:36
147
+ msgid "List"
148
+ msgstr "তালিকা"
149
+
150
+ #: assets/js/admin/editor-lang.php:19 includes/class-sp-formats.php:33
151
+ msgid "Blocks"
152
+ msgstr ""
153
+
154
+ #: assets/js/admin/editor-lang.php:20 includes/class-sp-ajax.php:467
155
+ #: includes/class-sp-ajax.php:496 includes/class-sp-install.php:160
156
+ #: includes/class-sp-player-list.php:376 includes/class-sp-post-types.php:493
157
+ #: includes/sp-core-functions.php:1092
158
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:63
159
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:51
160
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:136
161
+ #: templates/event-performance.php:75
162
+ msgid "Player"
163
+ msgstr ""
164
+
165
+ #: assets/js/admin/editor-lang.php:21 includes/class-sp-formats.php:37
166
+ msgid "Gallery"
167
+ msgstr ""
168
+
169
+ #: includes/class-sp-ajax.php:57 includes/class-sp-ajax.php:101
170
+ #: includes/class-sp-ajax.php:130 includes/class-sp-ajax.php:159
171
+ #: includes/class-sp-ajax.php:188 includes/class-sp-ajax.php:236
172
+ #: includes/class-sp-ajax.php:327 includes/class-sp-ajax.php:401
173
+ #: includes/class-sp-ajax.php:467 includes/class-sp-ajax.php:496
174
+ #: includes/class-sp-ajax.php:525 includes/class-sp-ajax.php:615
175
+ #: includes/widgets/class-sp-widget-countdown.php:45
176
+ #: includes/widgets/class-sp-widget-countdown.php:62
177
+ #: includes/widgets/class-sp-widget-event-blocks.php:51
178
+ #: includes/widgets/class-sp-widget-event-calendar.php:44
179
+ #: includes/widgets/class-sp-widget-event-list.php:54
180
+ #: includes/widgets/class-sp-widget-league-table.php:50
181
+ #: includes/widgets/class-sp-widget-player-gallery.php:53
182
+ #: includes/widgets/class-sp-widget-player-list.php:53
183
+ #, php-format
184
+ msgid "Select %s:"
185
+ msgstr ""
186
+
187
+ #: includes/class-sp-ajax.php:63
188
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:55
189
+ #: includes/widgets/class-sp-widget-countdown.php:69
190
+ msgid "(Auto)"
191
+ msgstr ""
192
+
193
+ #: includes/class-sp-ajax.php:74
194
+ #: includes/widgets/class-sp-widget-countdown.php:83
195
+ msgid "Display venue"
196
+ msgstr ""
197
+
198
+ #: includes/class-sp-ajax.php:80
199
+ #: includes/admin/settings/class-sp-settings-events.php:174
200
+ #: includes/widgets/class-sp-widget-countdown.php:86
201
+ msgid "Display league"
202
+ msgstr ""
203
+
204
+ #: includes/class-sp-ajax.php:84 includes/class-sp-ajax.php:113
205
+ #: includes/class-sp-ajax.php:142 includes/class-sp-ajax.php:171
206
+ #: includes/class-sp-ajax.php:219 includes/class-sp-ajax.php:310
207
+ #: includes/class-sp-ajax.php:384 includes/class-sp-ajax.php:450
208
+ #: includes/class-sp-ajax.php:479 includes/class-sp-ajax.php:508
209
+ #: includes/class-sp-ajax.php:598 includes/class-sp-ajax.php:675
210
+ #, php-format
211
+ msgid "Insert %s"
212
+ msgstr ""
213
+
214
+ #: includes/class-sp-ajax.php:84 includes/class-sp-ajax.php:113
215
+ #: includes/class-sp-ajax.php:142 includes/class-sp-ajax.php:171
216
+ #: includes/class-sp-ajax.php:219 includes/class-sp-ajax.php:310
217
+ #: includes/class-sp-ajax.php:384 includes/class-sp-ajax.php:450
218
+ #: includes/class-sp-ajax.php:479 includes/class-sp-ajax.php:508
219
+ #: includes/class-sp-ajax.php:598 includes/class-sp-ajax.php:675
220
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:133
221
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:149
222
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:165
223
+ msgid "Shortcode"
224
+ msgstr ""
225
+
226
+ #: includes/class-sp-ajax.php:85 includes/class-sp-ajax.php:114
227
+ #: includes/class-sp-ajax.php:143 includes/class-sp-ajax.php:172
228
+ #: includes/class-sp-ajax.php:220 includes/class-sp-ajax.php:311
229
+ #: includes/class-sp-ajax.php:385 includes/class-sp-ajax.php:451
230
+ #: includes/class-sp-ajax.php:480 includes/class-sp-ajax.php:509
231
+ #: includes/class-sp-ajax.php:599 includes/class-sp-ajax.php:676
232
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:33
233
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:88
234
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:88
235
+ msgid "Cancel"
236
+ msgstr "বাতিল"
237
+
238
+ #: includes/class-sp-ajax.php:194 includes/class-sp-ajax.php:264
239
+ #: includes/class-sp-ajax.php:355 includes/class-sp-post-types.php:37
240
+ #: includes/class-sp-post-types.php:66 includes/class-sp-post-types.php:95
241
+ #: includes/class-sp-post-types.php:124 includes/class-sp-post-types.php:153
242
+ #: includes/sp-core-functions.php:407 includes/sp-core-functions.php:438
243
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:57
244
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:72
245
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:87
246
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:102
247
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:36
248
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:49
249
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:36
250
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:51
251
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:66
252
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:33
253
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:48
254
+ #: includes/admin/views/html-admin-overview.php:79
255
+ #: includes/widgets/class-sp-widget-countdown.php:52
256
+ #: includes/widgets/class-sp-widget-event-blocks.php:55
257
+ #: includes/widgets/class-sp-widget-event-calendar.php:48
258
+ #: includes/widgets/class-sp-widget-event-list.php:58
259
+ msgid "All"
260
+ msgstr ""
261
+
262
+ #: includes/class-sp-ajax.php:202 includes/class-sp-ajax.php:249
263
+ #: includes/class-sp-ajax.php:340
264
+ #: includes/widgets/class-sp-widget-event-blocks.php:68
265
+ #: includes/widgets/class-sp-widget-event-calendar.php:61
266
+ #: includes/widgets/class-sp-widget-event-list.php:71
267
+ msgid "Status:"
268
+ msgstr ""
269
+
270
+ #: includes/class-sp-ajax.php:206 includes/class-sp-ajax.php:253
271
+ #: includes/class-sp-ajax.php:263 includes/class-sp-ajax.php:280
272
+ #: includes/class-sp-ajax.php:344 includes/class-sp-ajax.php:354
273
+ #: includes/class-sp-ajax.php:371 includes/class-sp-ajax.php:567
274
+ #: includes/class-sp-ajax.php:585 includes/class-sp-ajax.php:638
275
+ #: includes/class-sp-ajax.php:656
276
+ #: includes/admin/settings/class-sp-settings-general.php:62
277
+ #: includes/admin/settings/class-sp-settings-general.php:84
278
+ #: includes/admin/views/html-admin-config.php:101
279
+ #: includes/admin/views/html-admin-page-status.php:65
280
+ #: includes/widgets/class-sp-widget-event-blocks.php:71
281
+ #: includes/widgets/class-sp-widget-event-blocks.php:84
282
+ #: includes/widgets/class-sp-widget-event-blocks.php:99
283
+ #: includes/widgets/class-sp-widget-event-calendar.php:64
284
+ #: includes/widgets/class-sp-widget-event-list.php:74
285
+ #: includes/widgets/class-sp-widget-event-list.php:87
286
+ #: includes/widgets/class-sp-widget-event-list.php:102
287
+ #: includes/widgets/class-sp-widget-player-gallery.php:76
288
+ #: includes/widgets/class-sp-widget-player-list.php:96
289
+ msgid "Default"
290
+ msgstr "ডিফল্ট"
291
+
292
+ #: includes/class-sp-ajax.php:214 includes/class-sp-ajax.php:306
293
+ #: includes/class-sp-ajax.php:380
294
+ #: includes/widgets/class-sp-widget-event-blocks.php:105
295
+ #: includes/widgets/class-sp-widget-event-calendar.php:75
296
+ #: includes/widgets/class-sp-widget-event-list.php:126
297
+ msgid "Display link to view all events"
298
+ msgstr ""
299
+
300
+ #: includes/class-sp-ajax.php:261 includes/class-sp-ajax.php:352
301
+ #: includes/widgets/class-sp-widget-event-blocks.php:81
302
+ #: includes/widgets/class-sp-widget-event-list.php:84
303
+ msgid "Date:"
304
+ msgstr ""
305
+
306
+ #: includes/class-sp-ajax.php:265 includes/class-sp-ajax.php:356
307
+ #: includes/sp-core-functions.php:439
308
+ msgid "This week"
309
+ msgstr ""
310
+
311
+ #: includes/class-sp-ajax.php:266 includes/class-sp-ajax.php:357
312
+ #: includes/sp-core-functions.php:440
313
+ msgid "Today"
314
+ msgstr ""
315
+
316
+ #: includes/class-sp-ajax.php:272 includes/class-sp-ajax.php:363
317
+ #: includes/widgets/class-sp-widget-event-blocks.php:94
318
+ #: includes/widgets/class-sp-widget-event-list.php:97
319
+ msgid "Number of events to show:"
320
+ msgstr ""
321
+
322
+ #: includes/class-sp-ajax.php:278 includes/class-sp-ajax.php:369
323
+ #: includes/class-sp-ajax.php:583 includes/class-sp-ajax.php:654
324
+ #: includes/widgets/class-sp-widget-event-blocks.php:97
325
+ #: includes/widgets/class-sp-widget-event-list.php:100
326
+ #: includes/widgets/class-sp-widget-player-gallery.php:94
327
+ #: includes/widgets/class-sp-widget-player-list.php:114
328
+ msgid "Sort Order:"
329
+ msgstr ""
330
+
331
+ #: includes/class-sp-ajax.php:281 includes/class-sp-ajax.php:372
332
+ #: includes/class-sp-ajax.php:586 includes/class-sp-ajax.php:657
333
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:116
334
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
335
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:101
336
+ #: includes/widgets/class-sp-widget-event-blocks.php:100
337
+ #: includes/widgets/class-sp-widget-event-list.php:103
338
+ #: includes/widgets/class-sp-widget-player-gallery.php:96
339
+ #: includes/widgets/class-sp-widget-player-list.php:116
340
+ msgid "Ascending"
341
+ msgstr ""
342
+
343
+ #: includes/class-sp-ajax.php:282 includes/class-sp-ajax.php:373
344
+ #: includes/class-sp-ajax.php:587 includes/class-sp-ajax.php:658
345
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:117
346
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
347
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:102
348
+ #: includes/widgets/class-sp-widget-event-blocks.php:101
349
+ #: includes/widgets/class-sp-widget-event-list.php:104
350
+ #: includes/widgets/class-sp-widget-player-gallery.php:97
351
+ #: includes/widgets/class-sp-widget-player-list.php:117
352
+ msgid "Descending"
353
+ msgstr ""
354
+
355
+ #: includes/class-sp-ajax.php:287 includes/class-sp-ajax.php:419
356
+ #: includes/class-sp-ajax.php:543
357
+ #: includes/widgets/class-sp-widget-event-list.php:108
358
+ #: includes/widgets/class-sp-widget-league-table.php:70
359
+ msgid "Columns:"
360
+ msgstr ""
361
+
362
+ #: includes/class-sp-ajax.php:291 includes/class-sp-post-types.php:431
363
+ #: includes/sp-core-functions.php:1103
364
+ #: includes/admin/class-sp-admin-permalink-settings.php:28
365
+ #: includes/admin/importers/class-sp-event-importer.php:29
366
+ #: includes/admin/importers/class-sp-player-importer.php:29
367
+ #: includes/admin/importers/class-sp-staff-importer.php:28
368
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:94
369
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:67
370
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:66
371
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:51
372
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:124
373
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:56
374
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
375
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
376
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:90
377
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:105
378
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:106
379
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:150
380
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:57
381
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:58
382
+ #: includes/admin/settings/class-sp-settings-events.php:77
383
+ #: includes/admin/settings/class-sp-settings-teams.php:25
384
+ #: includes/admin/settings/class-sp-settings-teams.php:56
385
+ #: includes/widgets/class-sp-widget-event-list.php:112
386
+ #: templates/event-list.php:64
387
+ msgid "Teams"
388
+ msgstr ""
389
+
390
+ #: includes/class-sp-ajax.php:292 includes/sp-core-functions.php:1104
391
+ #: includes/admin/importers/class-sp-event-importer.php:27
392
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:93
393
+ #: includes/widgets/class-sp-widget-event-list.php:113
394
+ #: templates/event-details.php:21
395
+ msgid "Time"
396
+ msgstr ""
397
+
398
+ #: includes/class-sp-ajax.php:293 includes/class-sp-post-types.php:94
399
+ #: includes/sp-core-functions.php:1107
400
+ #: includes/admin/importers/class-sp-event-importer.php:28
401
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:51
402
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:97
403
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:82
404
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:83
405
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:71
406
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:87
407
+ #: includes/admin/settings/class-sp-settings-events.php:113
408
+ #: includes/widgets/class-sp-widget-event-list.php:114
409
+ #: templates/event-list.php:80 templates/event-venue.php:36
410
+ msgid "Venue"
411
+ msgstr ""
412
+
413
+ #: includes/class-sp-ajax.php:294 includes/sp-core-functions.php:1082
414
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:130
415
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:88
416
+ #: includes/widgets/class-sp-widget-event-list.php:115
417
+ #: templates/event-list.php:83
418
+ msgid "Article"
419
+ msgstr ""
420
+
421
+ #: includes/class-sp-ajax.php:414
422
+ #: includes/widgets/class-sp-widget-league-table.php:66
423
+ msgid "Number of teams to show:"
424
+ msgstr ""
425
+
426
+ #: includes/class-sp-ajax.php:440
427
+ #: includes/admin/settings/class-sp-settings-events.php:78
428
+ #: includes/admin/settings/class-sp-settings-teams.php:57
429
+ #: includes/widgets/class-sp-widget-league-table.php:90
430
+ msgid "Display logos"
431
+ msgstr ""
432
+
433
+ #: includes/class-sp-ajax.php:446
434
+ #: includes/widgets/class-sp-widget-league-table.php:93
435
+ msgid "Display link to view full table"
436
+ msgstr ""
437
+
438
+ #: includes/class-sp-ajax.php:538 includes/class-sp-ajax.php:628
439
+ #: includes/widgets/class-sp-widget-player-gallery.php:69
440
+ #: includes/widgets/class-sp-widget-player-list.php:69
441
+ msgid "Number of players to show:"
442
+ msgstr ""
443
+
444
+ #: includes/class-sp-ajax.php:563 includes/class-sp-ajax.php:634
445
+ #: includes/widgets/class-sp-widget-player-gallery.php:72
446
+ #: includes/widgets/class-sp-widget-player-list.php:92
447
+ msgid "Sort by:"
448
+ msgstr "সাজানোর পদ্ধতি:"
449
+
450
+ #: includes/class-sp-ajax.php:568 includes/class-sp-ajax.php:639
451
+ #: includes/admin/importers/class-sp-player-importer.php:26
452
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:64
453
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:87
454
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:56
455
+ #: includes/widgets/class-sp-widget-player-gallery.php:77
456
+ #: includes/widgets/class-sp-widget-player-list.php:97
457
+ msgid "Number"
458
+ msgstr ""
459
+
460
+ #: includes/class-sp-ajax.php:569 includes/class-sp-ajax.php:640
461
+ #: includes/class-sp-post-types.php:42 includes/class-sp-post-types.php:71
462
+ #: includes/class-sp-post-types.php:100 includes/class-sp-post-types.php:129
463
+ #: includes/class-sp-post-types.php:158
464
+ #: includes/admin/importers/class-sp-player-importer.php:27
465
+ #: includes/admin/importers/class-sp-staff-importer.php:26
466
+ #: includes/admin/importers/class-sp-team-importer.php:26
467
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:52
468
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:71
469
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:52
470
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:70
471
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:51
472
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:88
473
+ #: includes/widgets/class-sp-widget-player-gallery.php:78
474
+ #: includes/widgets/class-sp-widget-player-list.php:98
475
+ msgid "Name"
476
+ msgstr "নাম"
477
+
478
+ #: includes/class-sp-ajax.php:570 includes/class-sp-ajax.php:641
479
+ #: includes/sp-core-functions.php:1091
480
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
481
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
482
+ #: includes/widgets/class-sp-widget-player-gallery.php:79
483
+ #: includes/widgets/class-sp-widget-player-list.php:99
484
+ msgid "Played"
485
+ msgstr ""
486
+
487
+ #: includes/class-sp-ajax.php:594 includes/class-sp-ajax.php:665
488
+ #: includes/widgets/class-sp-widget-player-gallery.php:101
489
+ #: includes/widgets/class-sp-widget-player-list.php:121
490
+ msgid "Display link to view all players"
491
+ msgstr ""
492
+
493
+ #: includes/class-sp-ajax.php:671
494
+ #: includes/widgets/class-sp-widget-player-gallery.php:104
495
+ msgid "Display player names on hover"
496
+ msgstr ""
497
+
498
+ #: includes/class-sp-countries.php:29
499
+ msgid "Africa"
500
+ msgstr ""
501
+
502
+ #: includes/class-sp-countries.php:30
503
+ msgid "Asia"
504
+ msgstr ""
505
+
506
+ #: includes/class-sp-countries.php:31
507
+ msgid "Europe"
508
+ msgstr ""
509
+
510
+ #: includes/class-sp-countries.php:32
511
+ msgid "North America"
512
+ msgstr ""
513
+
514
+ #: includes/class-sp-countries.php:33
515
+ msgid "Oceania"
516
+ msgstr ""
517
+
518
+ #: includes/class-sp-countries.php:34
519
+ msgid "South America"
520
+ msgstr ""
521
+
522
+ #: includes/class-sp-countries.php:38
523
+ msgid "Andorra"
524
+ msgstr "এ্যান্ডোরা"
525
+
526
+ #: includes/class-sp-countries.php:39
527
+ msgid "United Arab Emirates"
528
+ msgstr "সংযুক্ত আরব আমিরাত"
529
+
530
+ #: includes/class-sp-countries.php:40
531
+ msgid "Afghanistan"
532
+ msgstr "আফগানিস্তান"
533
+
534
+ #: includes/class-sp-countries.php:41
535
+ msgid "Antigua and Barbuda"
536
+ msgstr "এন্টিগুয়া ও বারবুডা"
537
+
538
+ #: includes/class-sp-countries.php:42
539
+ msgid "Albania"
540
+ msgstr "আলব্যানিয়া"
541
+
542
+ #: includes/class-sp-countries.php:43
543
+ msgid "Armenia"
544
+ msgstr "আর্মেনিয়া"
545
+
546
+ #: includes/class-sp-countries.php:44
547
+ msgid "Angola"
548
+ msgstr "এ্যাঙ্গোলা"
549
+
550
+ #: includes/class-sp-countries.php:45
551
+ msgid "Argentina"
552
+ msgstr "আর্জেণ্টাইনা"
553
+
554
+ #: includes/class-sp-countries.php:46
555
+ msgid "Austria"
556
+ msgstr "অস্ট্রিয়া"
557
+
558
+ #: includes/class-sp-countries.php:47
559
+ msgid "Australia"
560
+ msgstr "অস্ট্রেলিয়া"
561
+
562
+ #: includes/class-sp-countries.php:48
563
+ msgid "Azerbaijan"
564
+ msgstr "আজারবাইজান"
565
+
566
+ #: includes/class-sp-countries.php:49
567
+ msgid "Bosnia and Herzegovina"
568
+ msgstr "বসনিয়া ও হার্জেগোভিনা"
569
+
570
+ #: includes/class-sp-countries.php:50
571
+ msgid "Barbados"
572
+ msgstr "বারবাদোস"
573
+
574
+ #: includes/class-sp-countries.php:51
575
+ msgid "Bangladesh"
576
+ msgstr "বাংলাদেশ"
577
+
578
+ #: includes/class-sp-countries.php:52
579
+ msgid "Belgium"
580
+ msgstr "বেলজিয়াম"
581
+
582
+ #: includes/class-sp-countries.php:53
583
+ msgid "Burkina Faso"
584
+ msgstr "বুরকিনা ফাসো"
585
+
586
+ #: includes/class-sp-countries.php:54
587
+ msgid "Bulgaria"
588
+ msgstr "বুলগেরিয়া"
589
+
590
+ #: includes/class-sp-countries.php:55
591
+ msgid "Bahrain"
592
+ msgstr "বাহরাইন"
593
+
594
+ #: includes/class-sp-countries.php:56
595
+ msgid "Burundi"
596
+ msgstr "বুরুন্ডি"
597
+
598
+ #: includes/class-sp-countries.php:57
599
+ msgid "Benin"
600
+ msgstr "বেনিন"
601
+
602
+ #: includes/class-sp-countries.php:58
603
+ msgid "Brunei"
604
+ msgstr "ব্রুনেই"
605
+
606
+ #: includes/class-sp-countries.php:59
607
+ msgid "Bolivia"
608
+ msgstr "বোলিভিয়া"
609
+
610
+ #: includes/class-sp-countries.php:60
611
+ msgid "Brazil"
612
+ msgstr "ব্রাজিল"
613
+
614
+ #: includes/class-sp-countries.php:61
615
+ msgid "Bahamas"
616
+ msgstr "বাহামা দ্বীপপুঞ্জ"
617
+
618
+ #: includes/class-sp-countries.php:62
619
+ msgid "Bhutan"
620
+ msgstr "ভুটান"
621
+
622
+ #: includes/class-sp-countries.php:63
623
+ msgid "Botswana"
624
+ msgstr "বতসোয়ানা"
625
+
626
+ #: includes/class-sp-countries.php:64
627
+ msgid "Belarus"
628
+ msgstr "বেলোরুশিয়া"
629
+
630
+ #: includes/class-sp-countries.php:65
631
+ msgid "Belize"
632
+ msgstr "বেলিয"
633
+
634
+ #: includes/class-sp-countries.php:66
635
+ msgid "Canada"
636
+ msgstr "কানাডা"
637
+
638
+ #: includes/class-sp-countries.php:67
639
+ msgid "Democratic Republic of the Congo"
640
+ msgstr "কঙ্গো - কিনসাসা"
641
+
642
+ #: includes/class-sp-countries.php:68
643
+ msgid "Central African Republic"
644
+ msgstr "মধ্য আফ্রিকান প্রজাতন্ত্র"
645
+
646
+ #: includes/class-sp-countries.php:69
647
+ msgid "Republic of the Congo"
648
+ msgstr "কঙ্গো"
649
+
650
+ #: includes/class-sp-countries.php:70
651
+ msgid "Switzerland"
652
+ msgstr "সুইজর্লণ্ড"
653
+
654
+ #: includes/class-sp-countries.php:71
655
+ msgid "Ivory Coast"
656
+ msgstr "আইভরি কোস্ট"
657
+
658
+ #: includes/class-sp-countries.php:72
659
+ msgid "Chile"
660
+ msgstr "চিলি"
661
+
662
+ #: includes/class-sp-countries.php:73
663
+ msgid "Cameroon"
664
+ msgstr "ক্যামেরুন"
665
+
666
+ #: includes/class-sp-countries.php:74
667
+ msgid "China"
668
+ msgstr "চীন"
669
+
670
+ #: includes/class-sp-countries.php:75
671
+ msgid "Colombia"
672
+ msgstr "কোলোম্বিয়া"
673
+
674
+ #: includes/class-sp-countries.php:76
675
+ msgid "Costa Rica"
676
+ msgstr "কোস্টারিকা"
677
+
678
+ #: includes/class-sp-countries.php:77
679
+ msgid "Cuba"
680
+ msgstr "কিউবা"
681
+
682
+ #: includes/class-sp-countries.php:78
683
+ msgid "Cape Verde"
684
+ msgstr "কেপভার্দে"
685
+
686
+ #: includes/class-sp-countries.php:79
687
+ msgid "Cyprus"
688
+ msgstr "সাইপ্রাস"
689
+
690
+ #: includes/class-sp-countries.php:80
691
+ msgid "Czech Republic"
692
+ msgstr "চেক প্রজাতন্ত্র"
693
+
694
+ #: includes/class-sp-countries.php:81
695
+ msgid "Germany"
696
+ msgstr "জার্মানি"
697
+
698
+ #: includes/class-sp-countries.php:82
699
+ msgid "Djibouti"
700
+ msgstr "জিবুতি"
701
+
702
+ #: includes/class-sp-countries.php:83
703
+ msgid "Denmark"
704
+ msgstr "ডেনমার্ক"
705
+
706
+ #: includes/class-sp-countries.php:84
707
+ msgid "Dominica"
708
+ msgstr "ডোমিনিকা"
709
+
710
+ #: includes/class-sp-countries.php:85
711
+ msgid "Dominican Republic"
712
+ msgstr "ডোমেনিকান প্রজাতন্ত্র"
713
+
714
+ #: includes/class-sp-countries.php:86
715
+ msgid "Algeria"
716
+ msgstr "এলজিরিয়া"
717
+
718
+ #: includes/class-sp-countries.php:87
719
+ msgid "Ecuador"
720
+ msgstr "ইকুয়েডর"
721
+
722
+ #: includes/class-sp-countries.php:88
723
+ msgid "Estonia"
724
+ msgstr "এস্তোনিয়া"
725
+
726
+ #: includes/class-sp-countries.php:89
727
+ msgid "Egypt"
728
+ msgstr "মিশর"
729
+
730
+ #: includes/class-sp-countries.php:90
731
+ msgid "Western Sahara"
732
+ msgstr "পশ্চিমী সাহারা"
733
+
734
+ #: includes/class-sp-countries.php:91
735
+ msgid "England"
736
+ msgstr ""
737
+
738
+ #: includes/class-sp-countries.php:92
739
+ msgid "Eritrea"
740
+ msgstr "ইরিত্রিয়া"
741
+
742
+ #: includes/class-sp-countries.php:93
743
+ msgid "Spain"
744
+ msgstr "স্পেন"
745
+
746
+ #: includes/class-sp-countries.php:94
747
+ msgid "Ethiopia"
748
+ msgstr "ইফিওপিয়া"
749
+
750
+ #: includes/class-sp-countries.php:95
751
+ msgid "Finland"
752
+ msgstr "ফিন্ল্যাণ্ড"
753
+
754
+ #: includes/class-sp-countries.php:96
755
+ msgid "Fiji"
756
+ msgstr "ফিজি"
757
+
758
+ #: includes/class-sp-countries.php:97
759
+ msgid "Micronesia"
760
+ msgstr "মাইক্রোনেশিয়া"
761
+
762
+ #: includes/class-sp-countries.php:98
763
+ msgid "France"
764
+ msgstr "ফ্রান্স"
765
+
766
+ #: includes/class-sp-countries.php:99
767
+ msgid "Gabon"
768
+ msgstr "গ্যাবন"
769
+
770
+ #: includes/class-sp-countries.php:100
771
+ msgid "United Kingdom"
772
+ msgstr "গ্রেটবৃটেন"
773
+
774
+ #: includes/class-sp-countries.php:101
775
+ msgid "Grenada"
776
+ msgstr "গ্রেনাডা"
777
+
778
+ #: includes/class-sp-countries.php:102
779
+ msgid "Georgia"
780
+ msgstr "জর্জিয়া"
781
+
782
+ #: includes/class-sp-countries.php:103
783
+ msgid "Ghana"
784
+ msgstr "ঘানা"
785
+
786
+ #: includes/class-sp-countries.php:104
787
+ msgid "Gambia"
788
+ msgstr "গাম্বিয়া"
789
+
790
+ #: includes/class-sp-countries.php:105
791
+ msgid "Guinea"
792
+ msgstr "গিনি"
793
+
794
+ #: includes/class-sp-countries.php:106
795
+ msgid "Equatorial Guinea"
796
+ msgstr "নিরক্ষীয় গিনি"
797
+
798
+ #: includes/class-sp-countries.php:107
799
+ msgid "Greece"
800
+ msgstr "গ্রীস্"
801
+
802
+ #: includes/class-sp-countries.php:108
803
+ msgid "Guatemala"
804
+ msgstr "গোয়াটিমালা"
805
+
806
+ #: includes/class-sp-countries.php:109
807
+ msgid "Guinea-Bissau"
808
+ msgstr "গিনি-বিসাউ"
809
+
810
+ #: includes/class-sp-countries.php:110
811
+ msgid "Guyana"
812
+ msgstr "গিয়ানা"
813
+
814
+ #: includes/class-sp-countries.php:111
815
+ msgid "Hong Kong"
816
+ msgstr "হংকং এসএআর চীনা"
817
+
818
+ #: includes/class-sp-countries.php:112
819
+ msgid "Honduras"
820
+ msgstr "হণ্ডুরাস"
821
+
822
+ #: includes/class-sp-countries.php:113
823
+ msgid "Croatia"
824
+ msgstr "ক্রোয়েশিয়া"
825
+
826
+ #: includes/class-sp-countries.php:114
827
+ msgid "Haiti"
828
+ msgstr "হাইতি"
829
+
830
+ #: includes/class-sp-countries.php:115
831
+ msgid "Hungary"
832
+ msgstr "হাঙ্গেরি"
833
+
834
+ #: includes/class-sp-countries.php:116
835
+ msgid "Indonesia"
836
+ msgstr "ইন্দোনেশিয়া"
837
+
838
+ #: includes/class-sp-countries.php:117
839
+ msgid "Ireland"
840
+ msgstr "আয়ার্লণ্ড"
841
+
842
+ #: includes/class-sp-countries.php:118
843
+ msgid "Israel"
844
+ msgstr "ইস্রায়েল"
845
+
846
+ #: includes/class-sp-countries.php:119
847
+ msgid "India"
848
+ msgstr "ভারত"
849
+
850
+ #: includes/class-sp-countries.php:120
851
+ msgid "Iraq"
852
+ msgstr "ইরাক"
853
+
854
+ #: includes/class-sp-countries.php:121
855
+ msgid "Iran"
856
+ msgstr "ইরান"
857
+
858
+ #: includes/class-sp-countries.php:122
859
+ msgid "Iceland"
860
+ msgstr "আইসলণ্ড"
861
+
862
+ #: includes/class-sp-countries.php:123
863
+ msgid "Italy"
864
+ msgstr "ইতালী"
865
+
866
+ #: includes/class-sp-countries.php:124
867
+ msgid "Jamaica"
868
+ msgstr "জ্যামেকা"
869
+
870
+ #: includes/class-sp-countries.php:125
871
+ msgid "Jordan"
872
+ msgstr "জর্ডন"
873
+
874
+ #: includes/class-sp-countries.php:126
875
+ msgid "Japan"
876
+ msgstr "জাপান"
877
+
878
+ #: includes/class-sp-countries.php:127
879
+ msgid "Kenya"
880
+ msgstr "কেনিয়া"
881
+
882
+ #: includes/class-sp-countries.php:128
883
+ msgid "Kyrgyzstan"
884
+ msgstr "কির্গিজিয়া"
885
+
886
+ #: includes/class-sp-countries.php:129
887
+ msgid "Cambodia"
888
+ msgstr "কাম্বোজ"
889
+
890
+ #: includes/class-sp-countries.php:130
891
+ msgid "Kiribati"
892
+ msgstr "কিরিবাতি"
893
+
894
+ #: includes/class-sp-countries.php:131
895
+ msgid "Comoros"
896
+ msgstr "কমোরোস"
897
+
898
+ #: includes/class-sp-countries.php:132
899
+ msgid "Saint Kitts and Nevis"
900
+ msgstr "সেন্ট কিটস ও নেভিস"
901
+
902
+ #: includes/class-sp-countries.php:133
903
+ msgid "North Korea"
904
+ msgstr "উত্তর কোরিয়া"
905
+
906
+ #: includes/class-sp-countries.php:134
907
+ msgid "South Korea"
908
+ msgstr "দক্ষিণ কোরিয়া"
909
+
910
+ #: includes/class-sp-countries.php:135
911
+ msgid "Kuwait"
912
+ msgstr "কুয়েত"
913
+
914
+ #: includes/class-sp-countries.php:136
915
+ msgid "Kazakhstan"
916
+ msgstr "কাজাকস্থান"
917
+
918
+ #: includes/class-sp-countries.php:137
919
+ msgid "Laos"
920
+ msgstr "লাওস"
921
+
922
+ #: includes/class-sp-countries.php:138
923
+ msgid "Lebanon"
924
+ msgstr "লেবানন"
925
+
926
+ #: includes/class-sp-countries.php:139
927
+ msgid "Saint Lucia"
928
+ msgstr "সেন্ট লুসিয়া"
929
+
930
+ #: includes/class-sp-countries.php:140
931
+ msgid "Liechtenstein"
932
+ msgstr "লিচেনস্টেইন"
933
+
934
+ #: includes/class-sp-countries.php:141
935
+ msgid "Sri Lanka"
936
+ msgstr "শ্রীলঙ্কা"
937
+
938
+ #: includes/class-sp-countries.php:142
939
+ msgid "Liberia"
940
+ msgstr "লাইবেরিয়া"
941
+
942
+ #: includes/class-sp-countries.php:143
943
+ msgid "Lesotho"
944
+ msgstr "লেসোথো"
945
+
946
+ #: includes/class-sp-countries.php:144
947
+ msgid "Lithuania"
948
+ msgstr "লিত্ভা"
949
+
950
+ #: includes/class-sp-countries.php:145
951
+ msgid "Luxembourg"
952
+ msgstr "লাক্সেমবার্গ"
953
+
954
+ #: includes/class-sp-countries.php:146
955
+ msgid "Latvia"
956
+ msgstr "লাত্ভিয়া"
957
+
958
+ #: includes/class-sp-countries.php:147
959
+ msgid "Libya"
960
+ msgstr "লিবিয়া"
961
+
962
+ #: includes/class-sp-countries.php:148
963
+ msgid "Morocco"
964
+ msgstr "মোরক্কো"
965
+
966
+ #: includes/class-sp-countries.php:149
967
+ msgid "Monaco"
968
+ msgstr "মোনাকো"
969
+
970
+ #: includes/class-sp-countries.php:150
971
+ msgid "Moldova"
972
+ msgstr "মোল্দাভিয়া"
973
+
974
+ #: includes/class-sp-countries.php:151
975
+ msgid "Montenegro"
976
+ msgstr "মন্টিনিগ্রো"
977
+
978
+ #: includes/class-sp-countries.php:152
979
+ msgid "Madagascar"
980
+ msgstr "মাদাগাস্কার"
981
+
982
+ #: includes/class-sp-countries.php:153
983
+ msgid "Marshall Islands"
984
+ msgstr "মার্শাল দ্বীপপুঞ্জ"
985
+
986
+ #: includes/class-sp-countries.php:154
987
+ msgid "Macedonia"
988
+ msgstr "ম্যাসাডোনিয়া"
989
+
990
+ #: includes/class-sp-countries.php:155
991
+ msgid "Mali"
992
+ msgstr "মালি"
993
+
994
+ #: includes/class-sp-countries.php:156
995
+ msgid "Burma"
996
+ msgstr "মায়ানমার"
997
+
998
+ #: includes/class-sp-countries.php:157
999
+ msgid "Mongolia"
1000
+ msgstr "মঙ্গোলিয়া"
1001
+
1002
+ #: includes/class-sp-countries.php:158
1003
+ msgid "Macau"
1004
+ msgstr "ম্যাকাও এসএআর চীনা"
1005
+
1006
+ #: includes/class-sp-countries.php:159
1007
+ msgid "Mauritania"
1008
+ msgstr "মরিতানিয়া"
1009
+
1010
+ #: includes/class-sp-countries.php:160
1011
+ msgid "Malta"
1012
+ msgstr "মাল্টা"
1013
+
1014
+ #: includes/class-sp-countries.php:161
1015
+ msgid "Mauritius"
1016
+ msgstr "মরিশাস"
1017
+
1018
+ #: includes/class-sp-countries.php:162
1019
+ msgid "Maldives"
1020
+ msgstr "মালদ্বীপ"
1021
+
1022
+ #: includes/class-sp-countries.php:163
1023
+ msgid "Malawi"
1024
+ msgstr "মালাউই"
1025
+
1026
+ #: includes/class-sp-countries.php:164
1027
+ msgid "Mexico"
1028
+ msgstr "মক্সিকো"
1029
+
1030
+ #: includes/class-sp-countries.php:165
1031
+ msgid "Malaysia"
1032
+ msgstr "মাল্যাশিয়া"
1033
+
1034
+ #: includes/class-sp-countries.php:166
1035
+ msgid "Mozambique"
1036
+ msgstr "মোজাম্বিক"
1037
+
1038
+ #: includes/class-sp-countries.php:167
1039
+ msgid "Namibia"
1040
+ msgstr "নামিবিয়া"
1041
+
1042
+ #: includes/class-sp-countries.php:168
1043
+ msgid "Northern Ireland"
1044
+ msgstr ""
1045
+
1046
+ #: includes/class-sp-countries.php:169
1047
+ msgid "Niger"
1048
+ msgstr "নাইজার"
1049
+
1050
+ #: includes/class-sp-countries.php:170
1051
+ msgid "Nigeria"
1052
+ msgstr "নাইজেরিয়া"
1053
+
1054
+ #: includes/class-sp-countries.php:171
1055
+ msgid "Nicaragua"
1056
+ msgstr "নিকারাগুয়া"
1057
+
1058
+ #: includes/class-sp-countries.php:172
1059
+ msgid "Netherlands"
1060
+ msgstr "হলণ্ড"
1061
+
1062
+ #: includes/class-sp-countries.php:173
1063
+ msgid "Norway"
1064
+ msgstr "নরওয়ে"
1065
+
1066
+ #: includes/class-sp-countries.php:174
1067
+ msgid "Nepal"
1068
+ msgstr "নেপাল"
1069
+
1070
+ #: includes/class-sp-countries.php:175
1071
+ msgid "Nauru"
1072
+ msgstr "নাউরু"
1073
+
1074
+ #: includes/class-sp-countries.php:176
1075
+ msgid "New Zealand"
1076
+ msgstr "নিউ জিলণ্ড"
1077
+
1078
+ #: includes/class-sp-countries.php:177
1079
+ msgid "Oman"
1080
+ msgstr "ওমান"
1081
+
1082
+ #: includes/class-sp-countries.php:178
1083
+ msgid "Panama"
1084
+ msgstr "পানামা"
1085
+
1086
+ #: includes/class-sp-countries.php:179
1087
+ msgid "Peru"
1088
+ msgstr "পিরু"
1089
+
1090
+ #: includes/class-sp-countries.php:180
1091
+ msgid "Papua New Guinea"
1092
+ msgstr "পাপুয়া নিউ গিনি"
1093
+
1094
+ #: includes/class-sp-countries.php:181
1095
+ msgid "Philippines"
1096
+ msgstr "ফিলিপাইন"
1097
+
1098
+ #: includes/class-sp-countries.php:182
1099
+ msgid "Pakistan"
1100
+ msgstr "পাকিস্তান"
1101
+
1102
+ #: includes/class-sp-countries.php:183
1103
+ msgid "Poland"
1104
+ msgstr "পোল্যাণ্ড"
1105
+
1106
+ #: includes/class-sp-countries.php:184
1107
+ msgid "Portugal"
1108
+ msgstr "পর্তুগাল"
1109
+
1110
+ #: includes/class-sp-countries.php:185
1111
+ msgid "Palau"
1112
+ msgstr "পালাউ"
1113
+
1114
+ #: includes/class-sp-countries.php:186
1115
+ msgid "Paraguay"
1116
+ msgstr "প্যারাগোয়ে"
1117
+
1118
+ #: includes/class-sp-countries.php:187
1119
+ msgid "Qatar"
1120
+ msgstr "কাতার"
1121
+
1122
+ #: includes/class-sp-countries.php:188
1123
+ msgid "Romania"
1124
+ msgstr "রুমানিয়া"
1125
+
1126
+ #: includes/class-sp-countries.php:189
1127
+ msgid "Serbia"
1128
+ msgstr "সারবিয়া"
1129
+
1130
+ #: includes/class-sp-countries.php:190
1131
+ msgid "Russia"
1132
+ msgstr "রাশিয়া"
1133
+
1134
+ #: includes/class-sp-countries.php:191
1135
+ msgid "Rwanda"
1136
+ msgstr "রুয়ান্ডা"
1137
+
1138
+ #: includes/class-sp-countries.php:192
1139
+ msgid "Saudi Arabia"
1140
+ msgstr "সাউদি আরব"
1141
+
1142
+ #: includes/class-sp-countries.php:193
1143
+ msgid "Solomon Islands"
1144
+ msgstr "সলোমন দ্বীপপুঞ্জ"
1145
+
1146
+ #: includes/class-sp-countries.php:194
1147
+ msgid "Seychelles"
1148
+ msgstr "সিসিলি"
1149
+
1150
+ #: includes/class-sp-countries.php:195
1151
+ msgid "Sudan"
1152
+ msgstr "সুদান"
1153
+
1154
+ #: includes/class-sp-countries.php:196
1155
+ msgid "Sweden"
1156
+ msgstr "সুইডেন"
1157
+
1158
+ #: includes/class-sp-countries.php:197
1159
+ msgid "Scotland"
1160
+ msgstr ""
1161
+
1162
+ #: includes/class-sp-countries.php:198
1163
+ msgid "Singapore"
1164
+ msgstr "সিঙ্গাপুর"
1165
+
1166
+ #: includes/class-sp-countries.php:199
1167
+ msgid "Slovenia"
1168
+ msgstr "স্লোভানিয়া"
1169
+
1170
+ #: includes/class-sp-countries.php:200
1171
+ msgid "Slovakia"
1172
+ msgstr "শ্লোভাকিয়া"
1173
+
1174
+ #: includes/class-sp-countries.php:201
1175
+ msgid "Sierra Leone"
1176
+ msgstr "সিয়েরালিওন"
1177
+
1178
+ #: includes/class-sp-countries.php:202
1179
+ msgid "San Marino"
1180
+ msgstr "সান মারিনো"
1181
+
1182
+ #: includes/class-sp-countries.php:203
1183
+ msgid "Senegal"
1184
+ msgstr "সেনেগাল"
1185
+
1186
+ #: includes/class-sp-countries.php:204
1187
+ msgid "Somalia"
1188
+ msgstr "সোমালি"
1189
+
1190
+ #: includes/class-sp-countries.php:205
1191
+ msgid "Suriname"
1192
+ msgstr "সুরিনাম"
1193
+
1194
+ #: includes/class-sp-countries.php:206
1195
+ msgid "Sao Tome and Principe"
1196
+ msgstr "সাওটোমা ও প্রিন্সিপি"
1197
+
1198
+ #: includes/class-sp-countries.php:207
1199
+ msgid "El Salvador"
1200
+ msgstr "এল সালভেদর"
1201
+
1202
+ #: includes/class-sp-countries.php:208
1203
+ msgid "Swaziland"
1204
+ msgstr "সোয়াজিল্যান্ড"
1205
+
1206
+ #: includes/class-sp-countries.php:209
1207
+ msgid "Chad"
1208
+ msgstr "চাদ"
1209
+
1210
+ #: includes/class-sp-countries.php:210
1211
+ msgid "Togo"
1212
+ msgstr "টোগো"
1213
+
1214
+ #: includes/class-sp-countries.php:211
1215
+ msgid "Thailand"
1216
+ msgstr "থাই"
1217
+
1218
+ #: includes/class-sp-countries.php:212
1219
+ msgid "Tajikistan"
1220
+ msgstr "তাজিকস্থান"
1221
+
1222
+ #: includes/class-sp-countries.php:213
1223
+ msgid "East Timor"
1224
+ msgstr "পূর্ব-তিমুর"
1225
+
1226
+ #: includes/class-sp-countries.php:214
1227
+ msgid "Turkmenistan"
1228
+ msgstr "তুর্কমেনিয়া"
1229
+
1230
+ #: includes/class-sp-countries.php:215
1231
+ msgid "Tunisia"
1232
+ msgstr "টিউনিস্"
1233
+
1234
+ #: includes/class-sp-countries.php:216
1235
+ msgid "Tonga"
1236
+ msgstr "টোঙ্গা"
1237
+
1238
+ #: includes/class-sp-countries.php:217
1239
+ msgid "Turkey"
1240
+ msgstr "তুরস্ক"
1241
+
1242
+ #: includes/class-sp-countries.php:218
1243
+ msgid "Trinidad and Tobago"
1244
+ msgstr "ত্রিনিনাদ ও টোব্যাগো"
1245
+
1246
+ #: includes/class-sp-countries.php:219
1247
+ msgid "Tuvalu"
1248
+ msgstr "টুভালু"
1249
+
1250
+ #: includes/class-sp-countries.php:220
1251
+ msgid "Taiwan"
1252
+ msgstr "তাইওয়ান"
1253
+
1254
+ #: includes/class-sp-countries.php:221
1255
+ msgid "Tanzania"
1256
+ msgstr "তাঞ্জানিয়া"
1257
+
1258
+ #: includes/class-sp-countries.php:222
1259
+ msgid "Ukraine"
1260
+ msgstr "ইউক্রেইন"
1261
+
1262
+ #: includes/class-sp-countries.php:223
1263
+ msgid "Uganda"
1264
+ msgstr "উগান্ডা"
1265
+
1266
+ #: includes/class-sp-countries.php:224
1267
+ msgid "United States"
1268
+ msgstr "মার্কিন যুক্তরাষ্ট্র"
1269
+
1270
+ #: includes/class-sp-countries.php:225
1271
+ msgid "Uruguay"
1272
+ msgstr "উরুগোয়ে"
1273
+
1274
+ #: includes/class-sp-countries.php:226
1275
+ msgid "Uzbekistan"
1276
+ msgstr "উজ্বেকিস্থান"
1277
+
1278
+ #: includes/class-sp-countries.php:227
1279
+ msgid "Vatican City"
1280
+ msgstr "ভ্যাটিকান সিটি"
1281
+
1282
+ #: includes/class-sp-countries.php:228
1283
+ msgid "Saint Vincent and the Grenadines"
1284
+ msgstr "সেন্ট ভিনসেন্ট ও দ্যা গ্রেনাডিনস"
1285
+
1286
+ #: includes/class-sp-countries.php:229
1287
+ msgid "Venezuela"
1288
+ msgstr "ভেনেজুয়েলা"
1289
+
1290
+ #: includes/class-sp-countries.php:230
1291
+ msgid "Vietnam"
1292
+ msgstr "ভিয়েতনাম"
1293
+
1294
+ #: includes/class-sp-countries.php:231
1295
+ msgid "Vanuatu"
1296
+ msgstr "ভানুয়াটু"
1297
+
1298
+ #: includes/class-sp-countries.php:232
1299
+ msgid "Wales"
1300
+ msgstr ""
1301
+
1302
+ #: includes/class-sp-countries.php:233
1303
+ msgid "Samoa"
1304
+ msgstr "সামোয়া"
1305
+
1306
+ #: includes/class-sp-countries.php:234
1307
+ msgid "Yemen"
1308
+ msgstr "ইমেন"
1309
+
1310
+ #: includes/class-sp-countries.php:235
1311
+ msgid "South Africa"
1312
+ msgstr "দক্ষিণ আফ্রিকা"
1313
+
1314
+ #: includes/class-sp-countries.php:236
1315
+ msgid "Zambia"
1316
+ msgstr "জাম্বিয়া"
1317
+
1318
+ #: includes/class-sp-countries.php:237
1319
+ msgid "Zimbabwe"
1320
+ msgstr "জিম্বাবুয়ে"
1321
+
1322
+ #: includes/class-sp-event.php:45 includes/class-sp-post-types.php:221
1323
+ #: includes/sp-core-functions.php:1089
1324
+ #: includes/admin/importers/class-sp-event-importer.php:31
1325
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-results.php:57
1326
+ msgid "Outcome"
1327
+ msgstr ""
1328
+
1329
+ #: includes/class-sp-event.php:100 includes/class-sp-post-types.php:123
1330
+ #: includes/sp-core-functions.php:1094
1331
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:68
1332
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:71
1333
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:79
1334
+ #: templates/player-details.php:43
1335
+ msgid "Position"
1336
+ msgstr ""
1337
+
1338
+ #: includes/class-sp-formats.php:27 includes/class-sp-post-types.php:36
1339
+ #: includes/sp-core-functions.php:1087
1340
+ #: includes/admin/importers/class-sp-event-importer.php:478
1341
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:49
1342
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:95
1343
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:114
1344
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:49
1345
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:49
1346
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:70
1347
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:53
1348
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:35
1349
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:30
1350
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:27
1351
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:61
1352
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:61
1353
+ #: templates/event-details.php:25 templates/event-list.php:74
1354
+ msgid "League"
1355
+ msgstr ""
1356
+
1357
+ #: includes/class-sp-formats.php:28
1358
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:117
1359
+ msgid "Friendly"
1360
+ msgstr ""
1361
+
1362
+ #: includes/class-sp-frontend-scripts.php:57
1363
+ #: includes/admin/class-sp-admin-assets.php:108
1364
+ #: includes/admin/class-sp-admin-dashboard.php:80 templates/countdown.php:66
1365
+ msgid "days"
1366
+ msgstr ""
1367
+
1368
+ #: includes/class-sp-frontend-scripts.php:57
1369
+ #: includes/admin/class-sp-admin-assets.php:109 templates/countdown.php:67
1370
+ msgid "hrs"
1371
+ msgstr ""
1372
+
1373
+ #: includes/class-sp-frontend-scripts.php:57
1374
+ #: includes/admin/class-sp-admin-assets.php:110
1375
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:31
1376
+ #: includes/admin/settings/class-sp-settings-events.php:135
1377
+ #: templates/countdown.php:68
1378
+ msgid "mins"
1379
+ msgstr ""
1380
+
1381
+ #: includes/class-sp-frontend-scripts.php:57
1382
+ #: includes/admin/class-sp-admin-assets.php:111 templates/countdown.php:69
1383
+ msgid "secs"
1384
+ msgstr ""
1385
+
1386
+ #: includes/class-sp-frontend-scripts.php:57
1387
+ msgid "Previous"
1388
+ msgstr ""
1389
+
1390
+ #: includes/class-sp-frontend-scripts.php:57
1391
+ msgid "Next"
1392
+ msgstr "পরবর্তী"
1393
+
1394
+ #: includes/class-sp-install.php:192 includes/class-sp-post-types.php:553
1395
+ #: includes/class-sp-post-types.php:554 includes/sp-core-functions.php:1100
1396
+ #: includes/admin/class-sp-admin-permalink-settings.php:35
1397
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:70
1398
+ #: includes/admin/settings/class-sp-settings-events.php:122
1399
+ #: includes/admin/settings/class-sp-settings-staff.php:25
1400
+ #: templates/event-staff.php:43
1401
+ msgid "Staff"
1402
+ msgstr ""
1403
+
1404
+ #: includes/class-sp-install.php:230
1405
+ msgid "Event Manager"
1406
+ msgstr ""
1407
+
1408
+ #: includes/class-sp-install.php:273
1409
+ msgid "Team Manager"
1410
+ msgstr ""
1411
+
1412
+ #: includes/class-sp-install.php:337
1413
+ msgid "League Manager"
1414
+ msgstr ""
1415
+
1416
+ #: includes/class-sp-install.php:534
1417
+ msgid "What's new:"
1418
+ msgstr ""
1419
+
1420
+ #: includes/class-sp-league-table.php:332
1421
+ #: includes/class-sp-player-list.php:361 includes/class-sp-player-list.php:378
1422
+ #: includes/class-sp-player.php:326 includes/class-sp-player.php:349
1423
+ #: includes/class-sp-post-types.php:432 includes/sp-core-functions.php:1102
1424
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:52
1425
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:51
1426
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:70
1427
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:98
1428
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-results.php:45
1429
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:54
1430
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:60
1431
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:64
1432
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:57
1433
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:119
1434
+ #: includes/admin/settings/class-sp-settings-events.php:235
1435
+ #: includes/widgets/class-sp-widget-countdown.php:45
1436
+ #: templates/event-results.php:94
1437
+ msgid "Team"
1438
+ msgstr ""
1439
+
1440
+ #: includes/class-sp-player.php:87 includes/class-sp-team.php:65
1441
+ #: includes/sp-core-functions.php:350 includes/sp-core-functions.php:354
1442
+ #: includes/sp-core-functions.php:1106
1443
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:93
1444
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:36
1445
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:82
1446
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:38
1447
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:76
1448
+ #: templates/event-performance.php:181
1449
+ msgid "Total"
1450
+ msgstr ""
1451
+
1452
+ #: includes/class-sp-player.php:347 includes/class-sp-post-types.php:65
1453
+ #: includes/sp-core-functions.php:1099
1454
+ #: includes/admin/importers/class-sp-event-importer.php:493
1455
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:50
1456
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:96
1457
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:50
1458
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:50
1459
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:76
1460
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:68
1461
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:53
1462
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:45
1463
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:60
1464
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:42
1465
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-columns.php:60
1466
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:64
1467
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:64
1468
+ #: templates/event-details.php:30 templates/event-list.php:77
1469
+ msgid "Season"
1470
+ msgstr ""
1471
+
1472
+ #: includes/class-sp-post-types.php:35 includes/class-sp-post-types.php:49
1473
+ #: includes/admin/class-sp-admin-menus.php:72
1474
+ #: includes/admin/class-sp-admin-menus.php:269
1475
+ #: includes/admin/class-sp-admin-permalink-settings.php:29
1476
+ #: includes/admin/importers/class-sp-player-importer.php:30
1477
+ #: includes/admin/importers/class-sp-staff-importer.php:29
1478
+ #: includes/admin/importers/class-sp-team-importer.php:27
1479
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:68
1480
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:67
1481
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:67
1482
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:116
1483
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
1484
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:113
1485
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:120
1486
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:50
1487
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:57
1488
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:72
1489
+ #: includes/admin/views/html-admin-page-status.php:296
1490
+ msgid "Leagues"
1491
+ msgstr ""
1492
+
1493
+ #: includes/class-sp-post-types.php:38
1494
+ msgid "Edit League"
1495
+ msgstr ""
1496
+
1497
+ #: includes/class-sp-post-types.php:39 includes/class-sp-post-types.php:68
1498
+ #: includes/class-sp-post-types.php:97 includes/class-sp-post-types.php:126
1499
+ #: includes/class-sp-post-types.php:155 includes/class-sp-post-types.php:195
1500
+ #: includes/class-sp-post-types.php:225 includes/class-sp-post-types.php:255
1501
+ #: includes/class-sp-post-types.php:285 includes/class-sp-post-types.php:315
1502
+ #: includes/class-sp-post-types.php:345
1503
+ msgid "View"
1504
+ msgstr ""
1505
+
1506
+ #: includes/class-sp-post-types.php:40 includes/class-sp-post-types.php:69
1507
+ #: includes/class-sp-post-types.php:98 includes/class-sp-post-types.php:127
1508
+ #: includes/class-sp-post-types.php:156
1509
+ msgid "Update"
1510
+ msgstr "আপডেট"
1511
+
1512
+ #: includes/class-sp-post-types.php:41 includes/class-sp-post-types.php:70
1513
+ #: includes/class-sp-post-types.php:99 includes/class-sp-post-types.php:128
1514
+ #: includes/class-sp-post-types.php:157 includes/sp-core-functions.php:885
1515
+ #: includes/sp-core-functions.php:902
1516
+ #: includes/admin/class-sp-admin-menus.php:265
1517
+ #: includes/admin/importers/class-sp-event-importer.php:488
1518
+ #: includes/admin/importers/class-sp-event-importer.php:503
1519
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:64
1520
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:79
1521
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:94
1522
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:109
1523
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:47
1524
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:65
1525
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:82
1526
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:41
1527
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:56
1528
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:71
1529
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:108
1530
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-metrics.php:42
1531
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:67
1532
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:38
1533
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:53
1534
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:60
1535
+ #: includes/admin/views/html-admin-config.php:49
1536
+ #: includes/admin/views/html-admin-config.php:124
1537
+ #: includes/admin/views/html-admin-config.php:177
1538
+ #: includes/admin/views/html-admin-config.php:234
1539
+ #: includes/admin/views/html-admin-config.php:286
1540
+ #: includes/admin/views/html-admin-config.php:341
1541
+ #: includes/widgets/class-sp-widget-countdown.php:57
1542
+ #: includes/widgets/class-sp-widget-countdown.php:77
1543
+ #: includes/widgets/class-sp-widget-event-blocks.php:63
1544
+ #: includes/widgets/class-sp-widget-event-calendar.php:56
1545
+ #: includes/widgets/class-sp-widget-event-list.php:66
1546
+ #: includes/widgets/class-sp-widget-league-table.php:61
1547
+ #: includes/widgets/class-sp-widget-player-gallery.php:64
1548
+ #: includes/widgets/class-sp-widget-player-gallery.php:89
1549
+ #: includes/widgets/class-sp-widget-player-list.php:64
1550
+ #: includes/widgets/class-sp-widget-player-list.php:109
1551
+ msgid "Add New"
1552
+ msgstr ""
1553
+
1554
+ #: includes/class-sp-post-types.php:43 includes/class-sp-post-types.php:72
1555
+ #: includes/class-sp-post-types.php:101 includes/class-sp-post-types.php:130
1556
+ #: includes/class-sp-post-types.php:159
1557
+ msgid "Parent"
1558
+ msgstr ""
1559
+
1560
+ #: includes/class-sp-post-types.php:44 includes/class-sp-post-types.php:73
1561
+ #: includes/class-sp-post-types.php:102 includes/class-sp-post-types.php:131
1562
+ #: includes/class-sp-post-types.php:160
1563
+ msgid "Parent:"
1564
+ msgstr ""
1565
+
1566
+ #: includes/class-sp-post-types.php:45 includes/class-sp-post-types.php:74
1567
+ #: includes/class-sp-post-types.php:103 includes/class-sp-post-types.php:132
1568
+ #: includes/class-sp-post-types.php:161 includes/class-sp-post-types.php:196
1569
+ #: includes/class-sp-post-types.php:226 includes/class-sp-post-types.php:256
1570
+ #: includes/class-sp-post-types.php:286 includes/class-sp-post-types.php:316
1571
+ #: includes/class-sp-post-types.php:346 includes/class-sp-post-types.php:376
1572
+ #: includes/class-sp-post-types.php:406 includes/class-sp-post-types.php:437
1573
+ #: includes/class-sp-post-types.php:467 includes/class-sp-post-types.php:498
1574
+ #: includes/class-sp-post-types.php:528 includes/class-sp-post-types.php:559
1575
+ msgid "Search"
1576
+ msgstr "অনুসন্ধান"
1577
+
1578
+ #: includes/class-sp-post-types.php:46 includes/class-sp-post-types.php:75
1579
+ #: includes/class-sp-post-types.php:104 includes/class-sp-post-types.php:133
1580
+ #: includes/class-sp-post-types.php:162 includes/class-sp-post-types.php:197
1581
+ #: includes/class-sp-post-types.php:198 includes/class-sp-post-types.php:227
1582
+ #: includes/class-sp-post-types.php:228 includes/class-sp-post-types.php:257
1583
+ #: includes/class-sp-post-types.php:258 includes/class-sp-post-types.php:287
1584
+ #: includes/class-sp-post-types.php:288 includes/class-sp-post-types.php:317
1585
+ #: includes/class-sp-post-types.php:318 includes/class-sp-post-types.php:347
1586
+ #: includes/class-sp-post-types.php:348 includes/class-sp-post-types.php:377
1587
+ #: includes/class-sp-post-types.php:378 includes/class-sp-post-types.php:407
1588
+ #: includes/class-sp-post-types.php:408 includes/class-sp-post-types.php:438
1589
+ #: includes/class-sp-post-types.php:439 includes/class-sp-post-types.php:468
1590
+ #: includes/class-sp-post-types.php:469 includes/class-sp-post-types.php:499
1591
+ #: includes/class-sp-post-types.php:500 includes/class-sp-post-types.php:529
1592
+ #: includes/class-sp-post-types.php:530 includes/class-sp-post-types.php:560
1593
+ #: includes/class-sp-post-types.php:561 includes/sp-core-functions.php:763
1594
+ #: includes/sp-core-functions.php:803
1595
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:180
1596
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:114
1597
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:32
1598
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:101
1599
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:32
1600
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:97
1601
+ #: includes/admin/views/html-admin-config.php:43
1602
+ #: includes/admin/views/html-admin-config.php:117
1603
+ #: includes/admin/views/html-admin-config.php:171
1604
+ #: includes/admin/views/html-admin-config.php:228
1605
+ #: includes/admin/views/html-admin-config.php:280
1606
+ #: includes/admin/views/html-admin-config.php:335
1607
+ #: includes/admin/views/html-admin-overview.php:282
1608
+ msgid "No results found."
1609
+ msgstr ""
1610
+
1611
+ #: includes/class-sp-post-types.php:64 includes/class-sp-post-types.php:78
1612
+ #: includes/admin/class-sp-admin-menus.php:79
1613
+ #: includes/admin/class-sp-admin-menus.php:277
1614
+ #: includes/admin/class-sp-admin-permalink-settings.php:30
1615
+ #: includes/admin/importers/class-sp-player-importer.php:31
1616
+ #: includes/admin/importers/class-sp-staff-importer.php:30
1617
+ #: includes/admin/importers/class-sp-team-importer.php:28
1618
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:69
1619
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:68
1620
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:68
1621
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:131
1622
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
1623
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:128
1624
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:135
1625
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:65
1626
+ #: includes/admin/views/html-admin-page-status.php:306
1627
+ msgid "Seasons"
1628
+ msgstr ""
1629
+
1630
+ #: includes/class-sp-post-types.php:67
1631
+ msgid "Edit Season"
1632
+ msgstr ""
1633
+
1634
+ #: includes/class-sp-post-types.php:93 includes/class-sp-post-types.php:107
1635
+ #: includes/admin/class-sp-admin-menus.php:281
1636
+ #: includes/admin/class-sp-admin-permalink-settings.php:26
1637
+ #: includes/admin/views/html-admin-page-status.php:316
1638
+ msgid "Venues"
1639
+ msgstr ""
1640
+
1641
+ #: includes/class-sp-post-types.php:96
1642
+ msgid "Edit Venue"
1643
+ msgstr ""
1644
+
1645
+ #: includes/class-sp-post-types.php:122 includes/class-sp-post-types.php:136
1646
+ #: includes/admin/class-sp-admin-menus.php:273
1647
+ #: includes/admin/class-sp-admin-permalink-settings.php:33
1648
+ #: includes/admin/importers/class-sp-player-importer.php:28
1649
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:66
1650
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:71
1651
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
1652
+ #: includes/admin/views/html-admin-page-status.php:326
1653
+ msgid "Positions"
1654
+ msgstr ""
1655
+
1656
+ #: includes/class-sp-post-types.php:125
1657
+ msgid "Edit Position"
1658
+ msgstr ""
1659
+
1660
+ #: includes/class-sp-post-types.php:151 includes/class-sp-post-types.php:165
1661
+ #: includes/admin/class-sp-admin-menus.php:238
1662
+ #: includes/admin/importers/class-sp-staff-importer.php:27
1663
+ msgid "Roles"
1664
+ msgstr ""
1665
+
1666
+ #: includes/class-sp-post-types.php:152
1667
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:65
1668
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:55
1669
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:62
1670
+ msgid "Role"
1671
+ msgstr ""
1672
+
1673
+ #: includes/class-sp-post-types.php:154
1674
+ msgid "Edit Role"
1675
+ msgstr ""
1676
+
1677
+ #: includes/class-sp-post-types.php:190 includes/sp-core-functions.php:1098
1678
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:127
1679
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:27
1680
+ #: includes/admin/views/html-admin-config.php:74
1681
+ #: includes/admin/views/html-admin-config.php:78
1682
+ #: includes/admin/views/html-admin-page-status.php:237
1683
+ #: templates/event-results.php:90
1684
+ msgid "Team Results"
1685
+ msgstr ""
1686
+
1687
+ #: includes/class-sp-post-types.php:191
1688
+ msgid "Result"
1689
+ msgstr ""
1690
+
1691
+ #: includes/class-sp-post-types.php:192
1692
+ msgid "Add New Result"
1693
+ msgstr ""
1694
+
1695
+ #: includes/class-sp-post-types.php:193
1696
+ msgid "Edit Result"
1697
+ msgstr ""
1698
+
1699
+ #: includes/class-sp-post-types.php:194 includes/class-sp-post-types.php:224
1700
+ #: includes/class-sp-post-types.php:254 includes/class-sp-post-types.php:284
1701
+ #: includes/class-sp-post-types.php:314 includes/class-sp-post-types.php:344
1702
+ #: includes/class-sp-post-types.php:374 includes/class-sp-post-types.php:404
1703
+ #: includes/class-sp-post-types.php:435 includes/class-sp-post-types.php:465
1704
+ #: includes/class-sp-post-types.php:496 includes/class-sp-post-types.php:526
1705
+ #: includes/class-sp-post-types.php:557
1706
+ msgid "New"
1707
+ msgstr ""
1708
+
1709
+ #: includes/class-sp-post-types.php:220
1710
+ #: includes/admin/views/html-admin-config.php:19
1711
+ #: includes/admin/views/html-admin-page-status.php:227
1712
+ msgid "Event Outcomes"
1713
+ msgstr ""
1714
+
1715
+ #: includes/class-sp-post-types.php:222
1716
+ msgid "Add New Outcome"
1717
+ msgstr ""
1718
+
1719
+ #: includes/class-sp-post-types.php:223
1720
+ msgid "Edit Outcome"
1721
+ msgstr ""
1722
+
1723
+ #: includes/class-sp-post-types.php:250
1724
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:144
1725
+ #: includes/admin/views/html-admin-config.php:200
1726
+ #: includes/admin/views/html-admin-page-status.php:257
1727
+ msgid "Table Columns"
1728
+ msgstr ""
1729
+
1730
+ #: includes/class-sp-post-types.php:251
1731
+ msgid "Column"
1732
+ msgstr ""
1733
+
1734
+ #: includes/class-sp-post-types.php:252
1735
+ msgid "Add New Column"
1736
+ msgstr ""
1737
+
1738
+ #: includes/class-sp-post-types.php:253
1739
+ msgid "Edit Column"
1740
+ msgstr ""
1741
+
1742
+ #: includes/class-sp-post-types.php:280
1743
+ #: includes/admin/views/html-admin-config.php:258
1744
+ #: includes/admin/views/html-admin-page-status.php:267
1745
+ msgid "Player Metrics"
1746
+ msgstr ""
1747
+
1748
+ #: includes/class-sp-post-types.php:281
1749
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:52
1750
+ msgid "Metric"
1751
+ msgstr ""
1752
+
1753
+ #: includes/class-sp-post-types.php:282
1754
+ msgid "Add New Metric"
1755
+ msgstr ""
1756
+
1757
+ #: includes/class-sp-post-types.php:283
1758
+ msgid "Edit Metric"
1759
+ msgstr ""
1760
+
1761
+ #: includes/class-sp-post-types.php:310 includes/class-sp-post-types.php:311
1762
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:128
1763
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:35
1764
+ #: includes/admin/settings/class-sp-settings-events.php:102
1765
+ #: includes/admin/views/html-admin-config.php:147
1766
+ #: includes/admin/views/html-admin-page-status.php:247
1767
+ msgid "Player Performance"
1768
+ msgstr ""
1769
+
1770
+ #: includes/class-sp-post-types.php:312
1771
+ msgid "Add New Performance"
1772
+ msgstr ""
1773
+
1774
+ #: includes/class-sp-post-types.php:313
1775
+ msgid "Edit Performance"
1776
+ msgstr ""
1777
+
1778
+ #: includes/class-sp-post-types.php:340
1779
+ #: includes/admin/views/html-admin-config.php:309
1780
+ #: includes/admin/views/html-admin-page-status.php:277
1781
+ msgid "Player Statistics"
1782
+ msgstr ""
1783
+
1784
+ #: includes/class-sp-post-types.php:341
1785
+ msgid "Statistic"
1786
+ msgstr ""
1787
+
1788
+ #: includes/class-sp-post-types.php:342
1789
+ msgid "Add New Statistic"
1790
+ msgstr ""
1791
+
1792
+ #: includes/class-sp-post-types.php:343
1793
+ msgid "Edit Statistic"
1794
+ msgstr ""
1795
+
1796
+ #: includes/class-sp-post-types.php:370
1797
+ #: includes/admin/class-sp-admin-permalink-settings.php:25
1798
+ #: includes/admin/class-sp-admin-taxonomies.php:134
1799
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:53
1800
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:136
1801
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
1802
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
1803
+ #: includes/admin/settings/class-sp-settings-events.php:25
1804
+ msgid "Events"
1805
+ msgstr ""
1806
+
1807
+ #: includes/class-sp-post-types.php:372
1808
+ #: includes/admin/class-sp-admin-welcome.php:247
1809
+ msgid "Add New Event"
1810
+ msgstr ""
1811
+
1812
+ #: includes/class-sp-post-types.php:373
1813
+ msgid "Edit Event"
1814
+ msgstr ""
1815
+
1816
+ #: includes/class-sp-post-types.php:375
1817
+ msgid "View Event"
1818
+ msgstr ""
1819
+
1820
+ #: includes/class-sp-post-types.php:400
1821
+ #: includes/admin/class-sp-admin-permalink-settings.php:27
1822
+ msgid "Calendars"
1823
+ msgstr ""
1824
+
1825
+ #: includes/class-sp-post-types.php:402
1826
+ msgid "Add New Calendar"
1827
+ msgstr ""
1828
+
1829
+ #: includes/class-sp-post-types.php:403
1830
+ msgid "Edit Calendar"
1831
+ msgstr ""
1832
+
1833
+ #: includes/class-sp-post-types.php:405
1834
+ msgid "View Calendar"
1835
+ msgstr ""
1836
+
1837
+ #: includes/class-sp-post-types.php:433
1838
+ #: includes/admin/class-sp-admin-welcome.php:245
1839
+ msgid "Add New Team"
1840
+ msgstr ""
1841
+
1842
+ #: includes/class-sp-post-types.php:434
1843
+ msgid "Edit Team"
1844
+ msgstr ""
1845
+
1846
+ #: includes/class-sp-post-types.php:436
1847
+ msgid "View Team"
1848
+ msgstr ""
1849
+
1850
+ #: includes/class-sp-post-types.php:461
1851
+ #: includes/admin/class-sp-admin-permalink-settings.php:31
1852
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:143
1853
+ #: includes/admin/settings/class-sp-settings-teams.php:53
1854
+ msgid "League Tables"
1855
+ msgstr ""
1856
+
1857
+ #: includes/class-sp-post-types.php:463
1858
+ msgid "Add New League Table"
1859
+ msgstr ""
1860
+
1861
+ #: includes/class-sp-post-types.php:464
1862
+ msgid "Edit League Table"
1863
+ msgstr ""
1864
+
1865
+ #: includes/class-sp-post-types.php:466
1866
+ msgid "View League Table"
1867
+ msgstr ""
1868
+
1869
+ #: includes/class-sp-post-types.php:492
1870
+ #: includes/admin/class-sp-admin-permalink-settings.php:32
1871
+ #: includes/admin/importers/class-sp-event-importer.php:32
1872
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:52
1873
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:69
1874
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:122
1875
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:170
1876
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:105
1877
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:58
1878
+ #: includes/admin/settings/class-sp-settings-players.php:25
1879
+ #: includes/admin/settings/class-sp-settings-players.php:62
1880
+ msgid "Players"
1881
+ msgstr ""
1882
+
1883
+ #: includes/class-sp-post-types.php:494
1884
+ #: includes/admin/class-sp-admin-welcome.php:246
1885
+ msgid "Add New Player"
1886
+ msgstr ""
1887
+
1888
+ #: includes/class-sp-post-types.php:495
1889
+ msgid "Edit Player"
1890
+ msgstr ""
1891
+
1892
+ #: includes/class-sp-post-types.php:497
1893
+ msgid "View Player"
1894
+ msgstr ""
1895
+
1896
+ #: includes/class-sp-post-types.php:522
1897
+ #: includes/admin/class-sp-admin-permalink-settings.php:34
1898
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:142
1899
+ #: includes/admin/settings/class-sp-settings-players.php:59
1900
+ msgid "Player Lists"
1901
+ msgstr ""
1902
+
1903
+ #: includes/class-sp-post-types.php:524
1904
+ msgid "Add New Player List"
1905
+ msgstr ""
1906
+
1907
+ #: includes/class-sp-post-types.php:525
1908
+ msgid "Edit Player List"
1909
+ msgstr ""
1910
+
1911
+ #: includes/class-sp-post-types.php:527
1912
+ msgid "View Player List"
1913
+ msgstr ""
1914
+
1915
+ #: includes/class-sp-post-types.php:555
1916
+ msgid "Add New Staff"
1917
+ msgstr ""
1918
+
1919
+ #: includes/class-sp-post-types.php:556
1920
+ msgid "Edit Staff"
1921
+ msgstr ""
1922
+
1923
+ #: includes/class-sp-post-types.php:558
1924
+ #: includes/admin/importers/class-sp-staff-importer.php:141
1925
+ msgid "View Staff"
1926
+ msgstr ""
1927
+
1928
+ #: includes/sp-core-functions.php:318
1929
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:98
1930
+ #: templates/team-link.php:21
1931
+ msgid "Visit Site"
1932
+ msgstr "সাইট দেখুন"
1933
+
1934
+ #: includes/sp-core-functions.php:350
1935
+ msgid "Average"
1936
+ msgstr ""
1937
+
1938
+ #: includes/sp-core-functions.php:408
1939
+ msgid "Published"
1940
+ msgstr "প্রকাশিত"
1941
+
1942
+ #: includes/sp-core-functions.php:409
1943
+ msgid "Scheduled"
1944
+ msgstr ""
1945
+
1946
+ #: includes/sp-core-functions.php:686 includes/sp-core-functions.php:826
1947
+ msgid "(no title)"
1948
+ msgstr "(শিরোনামহীন)"
1949
+
1950
+ #: includes/sp-core-functions.php:703 includes/sp-core-functions.php:783
1951
+ msgid "Select All"
1952
+ msgstr ""
1953
+
1954
+ #: includes/sp-core-functions.php:764 includes/sp-core-functions.php:767
1955
+ msgid "Show all"
1956
+ msgstr ""
1957
+
1958
+ #: includes/sp-core-functions.php:1083
1959
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:87
1960
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:101
1961
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:97
1962
+ #: templates/player-details.php:52 templates/staff-details.php:36
1963
+ msgid "Current Team"
1964
+ msgstr ""
1965
+
1966
+ #: includes/sp-core-functions.php:1084
1967
+ #: includes/admin/importers/class-sp-event-importer.php:26
1968
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:92
1969
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:49
1970
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:42
1971
+ #: templates/event-details.php:21 templates/event-list.php:57
1972
+ msgid "Date"
1973
+ msgstr ""
1974
+
1975
+ #: includes/sp-core-functions.php:1088
1976
+ #: includes/admin/importers/class-sp-player-importer.php:32
1977
+ #: includes/admin/importers/class-sp-staff-importer.php:31
1978
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:59
1979
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
1980
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:71
1981
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:72
1982
+ #: includes/admin/settings/class-sp-settings-players.php:50
1983
+ #: includes/admin/settings/class-sp-settings-staff.php:52
1984
+ #: templates/player-details.php:34 templates/staff-details.php:32
1985
+ msgid "Nationality"
1986
+ msgstr ""
1987
+
1988
+ #: includes/sp-core-functions.php:1090
1989
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:101
1990
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:98
1991
+ #: templates/player-details.php:61 templates/staff-details.php:43
1992
+ msgid "Past Teams"
1993
+ msgstr ""
1994
+
1995
+ #: includes/sp-core-functions.php:1093 templates/league-table.php:53
1996
+ msgid "Pos"
1997
+ msgstr ""
1998
+
1999
+ #: includes/sp-core-functions.php:1095
2000
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:167
2001
+ #: templates/event-list.php:215
2002
+ msgid "Preview"
2003
+ msgstr "পূর্বরূপ"
2004
+
2005
+ #: includes/sp-core-functions.php:1096 templates/player-list.php:90
2006
+ msgid "Rank"
2007
+ msgstr ""
2008
+
2009
+ #: includes/sp-core-functions.php:1097
2010
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:165
2011
+ #: templates/event-list.php:213
2012
+ msgid "Recap"
2013
+ msgstr ""
2014
+
2015
+ #: includes/sp-core-functions.php:1101
2016
+ msgid "Substitutes"
2017
+ msgstr ""
2018
+
2019
+ #: includes/sp-core-functions.php:1105
2020
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:64
2021
+ #: templates/event-list.php:71
2022
+ msgid "Time/Results"
2023
+ msgstr ""
2024
+
2025
+ #: includes/sp-core-functions.php:1108 templates/event-blocks.php:118
2026
+ #: templates/event-calendar.php:211 templates/event-list.php:234
2027
+ msgid "View all events"
2028
+ msgstr ""
2029
+
2030
+ #: includes/sp-core-functions.php:1109 templates/player-gallery.php:149
2031
+ #: templates/player-list.php:164
2032
+ msgid "View all players"
2033
+ msgstr ""
2034
+
2035
+ #: includes/sp-core-functions.php:1110 templates/league-table.php:154
2036
+ msgid "View full table"
2037
+ msgstr ""
2038
+
2039
+ #: includes/sp-template-hooks.php:151
2040
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:48
2041
+ #: includes/admin/post-types/class-sp-admin-cpt-metric.php:45
2042
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:46
2043
+ #: includes/admin/post-types/class-sp-admin-cpt-performance.php:45
2044
+ #: includes/admin/post-types/class-sp-admin-cpt-result.php:45
2045
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:47
2046
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:137
2047
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:152
2048
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:170
2049
+ #: includes/admin/views/html-admin-config.php:29
2050
+ #: includes/admin/views/html-admin-config.php:87
2051
+ #: includes/admin/views/html-admin-config.php:157
2052
+ #: includes/admin/views/html-admin-config.php:212
2053
+ #: includes/admin/views/html-admin-config.php:267
2054
+ #: includes/admin/views/html-admin-config.php:320
2055
+ msgid "Description"
2056
+ msgstr "বিববরণ"
2057
+
2058
+ #: includes/sp-template-hooks.php:154
2059
+ msgid ""
2060
+ "The description is not prominent by default; however, some themes may show "
2061
+ "it."
2062
+ msgstr ""
2063
+
2064
+ #: includes/sp-template-hooks.php:157
2065
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:44
2066
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:44
2067
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:34
2068
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-statistic-details.php:31
2069
+ #: includes/admin/views/html-admin-config.php:208
2070
+ #: includes/admin/views/html-admin-config.php:317
2071
+ msgid "Key"
2072
+ msgstr ""
2073
+
2074
+ #: includes/sp-template-hooks.php:157
2075
+ #: includes/admin/post-types/class-sp-admin-cpt-metric.php:44
2076
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:44
2077
+ #: includes/admin/post-types/class-sp-admin-cpt-performance.php:44
2078
+ #: includes/admin/post-types/class-sp-admin-cpt-result.php:44
2079
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-metric-details.php:27
2080
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-outcome-details.php:28
2081
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-performance-details.php:27
2082
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-result-details.php:27
2083
+ #: includes/admin/views/html-admin-config.php:27
2084
+ #: includes/admin/views/html-admin-config.php:156
2085
+ #: includes/admin/views/html-admin-config.php:266
2086
+ msgid "Variable"
2087
+ msgstr ""
2088
+
2089
+ #: includes/sp-template-hooks.php:160
2090
+ #: includes/admin/views/html-admin-config.php:154
2091
+ msgid "Icon"
2092
+ msgstr ""
2093
+
2094
+ #: includes/sp-template-hooks.php:163
2095
+ msgid "Select Icon"
2096
+ msgstr ""
2097
+
2098
+ #: includes/sp-template-hooks.php:166
2099
+ msgid "Add icon"
2100
+ msgstr ""
2101
+
2102
+ #: includes/sp-template-hooks.php:169
2103
+ msgid "Remove icon"
2104
+ msgstr ""
2105
+
2106
+ #: includes/sp-template-hooks.php:177
2107
+ msgid "User"
2108
+ msgstr ""
2109
+
2110
+ #: includes/sp-template-hooks.php:185
2111
+ msgid "Photo"
2112
+ msgstr ""
2113
+
2114
+ #: includes/sp-template-hooks.php:188
2115
+ msgid "Select Photo"
2116
+ msgstr ""
2117
+
2118
+ #: includes/sp-template-hooks.php:191
2119
+ msgid "Add photo"
2120
+ msgstr ""
2121
+
2122
+ #: includes/sp-template-hooks.php:194
2123
+ msgid "Remove photo"
2124
+ msgstr ""
2125
+
2126
+ #: includes/sp-template-hooks.php:202
2127
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:63
2128
+ msgid "Logo"
2129
+ msgstr ""
2130
+
2131
+ #: includes/sp-template-hooks.php:205
2132
+ msgid "Select Logo"
2133
+ msgstr ""
2134
+
2135
+ #: includes/sp-template-hooks.php:208
2136
+ msgid "Add logo"
2137
+ msgstr ""
2138
+
2139
+ #: includes/sp-template-hooks.php:211
2140
+ msgid "Remove logo"
2141
+ msgstr ""
2142
+
2143
+ #: includes/sp-template-hooks.php:219
2144
+ msgid "Date/Time:"
2145
+ msgstr ""
2146
+
2147
+ #: includes/sp-template-hooks.php:219
2148
+ msgid "Now"
2149
+ msgstr ""
2150
+
2151
+ #: includes/sp-template-hooks.php:348
2152
+ #: includes/admin/class-sp-admin-post-types.php:62
2153
+ msgid "Settings saved."
2154
+ msgstr ""
2155
+
2156
+ #: includes/sp-template-hooks.php:350
2157
+ #: includes/admin/class-sp-admin-post-types.php:64
2158
+ #: includes/admin/views/html-admin-config.php:50
2159
+ #: includes/admin/views/html-admin-config.php:125
2160
+ #: includes/admin/views/html-admin-config.php:178
2161
+ #: includes/admin/views/html-admin-config.php:235
2162
+ #: includes/admin/views/html-admin-config.php:287
2163
+ #: includes/admin/views/html-admin-config.php:342
2164
+ #: includes/admin/views/html-admin-overview.php:225
2165
+ msgid "View All"
2166
+ msgstr ""
2167
+
2168
+ #: includes/sp-template-hooks.php:356 includes/sp-template-hooks.php:359
2169
+ #: includes/sp-template-hooks.php:364
2170
+ #: includes/admin/class-sp-admin-post-types.php:69
2171
+ #: includes/admin/class-sp-admin-post-types.php:72
2172
+ #: includes/admin/class-sp-admin-post-types.php:77
2173
+ msgid "Changes saved."
2174
+ msgstr ""
2175
+
2176
+ #: includes/sp-template-hooks.php:361 includes/sp-template-hooks.php:366
2177
+ #: includes/sp-template-hooks.php:376
2178
+ #: includes/admin/class-sp-admin-post-types.php:74
2179
+ #: includes/admin/class-sp-admin-post-types.php:79
2180
+ #: includes/admin/class-sp-admin-post-types.php:89
2181
+ msgid "Success!"
2182
+ msgstr ""
2183
+
2184
+ #: includes/sp-template-hooks.php:368 includes/sp-template-hooks.php:374
2185
+ #: includes/sp-template-hooks.php:378
2186
+ #: includes/admin/class-sp-admin-post-types.php:81
2187
+ #: includes/admin/class-sp-admin-post-types.php:87
2188
+ #: includes/admin/class-sp-admin-post-types.php:91
2189
+ #, php-format
2190
+ msgid "Preview %s"
2191
+ msgstr ""
2192
+
2193
+ #: includes/sp-template-hooks.php:371
2194
+ #: includes/admin/class-sp-admin-post-types.php:84
2195
+ #, php-format
2196
+ msgid "Scheduled for: <b>%1$s</b>."
2197
+ msgstr ""
2198
+
2199
+ #: includes/sp-template-hooks.php:372
2200
+ #: includes/admin/class-sp-admin-post-types.php:85
2201
+ msgid "M j, Y @ G:i"
2202
+ msgstr ""
2203
+
2204
+ #: includes/admin/class-sp-admin-assets.php:106
2205
+ #: includes/admin/class-sp-admin-settings.php:114
2206
+ #: includes/admin/importers/class-sp-event-importer.php:487
2207
+ #: includes/admin/importers/class-sp-event-importer.php:502
2208
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:163
2209
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:189
2210
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:78
2211
+ #: includes/admin/views/html-admin-page-status.php:224
2212
+ msgid "None"
2213
+ msgstr "কিছুই না"
2214
+
2215
+ #: includes/admin/class-sp-admin-assets.php:107
2216
+ msgid "&mdash; Remove &mdash;"
2217
+ msgstr ""
2218
+
2219
+ #: includes/admin/class-sp-admin-assets.php:112
2220
+ #: includes/admin/importers/class-sp-importer.php:176
2221
+ #, php-format
2222
+ msgid "Displaying %s&#8211;%s of %s"
2223
+ msgstr ""
2224
+
2225
+ #: includes/admin/class-sp-admin-dashboard.php:34
2226
+ #: includes/admin/class-sp-admin-menus.php:51
2227
+ #: includes/admin/class-sp-admin-permalink-settings.php:47
2228
+ #: includes/admin/views/html-admin-overview.php:19
2229
+ #: includes/admin/views/html-admin-overview.php:76
2230
+ #: includes/admin/views/html-admin-overview.php:127
2231
+ #: includes/admin/views/html-admin-overview.php:148
2232
+ #: includes/admin/views/html-admin-overview.php:230
2233
+ #: includes/admin/views/html-admin-overview.php:275
2234
+ #: includes/admin/views/html-admin-overview.php:295
2235
+ #: includes/widgets/class-sp-widget-countdown.php:6
2236
+ #: includes/widgets/class-sp-widget-event-blocks.php:6
2237
+ #: includes/widgets/class-sp-widget-event-calendar.php:6
2238
+ #: includes/widgets/class-sp-widget-event-list.php:6
2239
+ #: includes/widgets/class-sp-widget-league-table.php:6
2240
+ #: includes/widgets/class-sp-widget-player-gallery.php:6
2241
+ #: includes/widgets/class-sp-widget-player-list.php:6
2242
+ msgid "SportsPress"
2243
+ msgstr ""
2244
+
2245
+ #: includes/admin/class-sp-admin-dashboard.php:49
2246
+ #, php-format
2247
+ msgid "%s "
2248
+ msgid_plural "%s "
2249
+ msgstr[0] ""
2250
+ msgstr[1] ""
2251
+
2252
+ #: includes/admin/class-sp-admin-dashboard.php:80
2253
+ #, php-format
2254
+ msgid "<strong>%s</strong> until next event"
2255
+ msgstr ""
2256
+
2257
+ #: includes/admin/class-sp-admin-dashboard.php:87
2258
+ #, php-format
2259
+ msgid "<strong>%s event</strong> scheduled"
2260
+ msgid_plural "<strong>%s events</strong> scheduled"
2261
+ msgstr[0] ""
2262
+ msgstr[1] ""
2263
+
2264
+ #: includes/admin/class-sp-admin-dashboard.php:92
2265
+ #, php-format
2266
+ msgid "<strong>%s event</strong> published"
2267
+ msgid_plural "<strong>%s events</strong> published"
2268
+ msgstr[0] ""
2269
+ msgstr[1] ""
2270
+
2271
+ #: includes/admin/class-sp-admin-importers.php:31
2272
+ msgid "SportsPress Events (CSV)"
2273
+ msgstr ""
2274
+
2275
+ #: includes/admin/class-sp-admin-importers.php:31
2276
+ msgid "Import <strong>events</strong> from a csv file."
2277
+ msgstr ""
2278
+
2279
+ #: includes/admin/class-sp-admin-importers.php:32
2280
+ msgid "SportsPress Teams (CSV)"
2281
+ msgstr ""
2282
+
2283
+ #: includes/admin/class-sp-admin-importers.php:32
2284
+ msgid "Import <strong>teams</strong> from a csv file."
2285
+ msgstr ""
2286
+
2287
+ #: includes/admin/class-sp-admin-importers.php:33
2288
+ msgid "SportsPress Players (CSV)"
2289
+ msgstr ""
2290
+
2291
+ #: includes/admin/class-sp-admin-importers.php:33
2292
+ msgid "Import <strong>players</strong> from a csv file."
2293
+ msgstr ""
2294
+
2295
+ #: includes/admin/class-sp-admin-importers.php:34
2296
+ msgid "SportsPress Staff (CSV)"
2297
+ msgstr ""
2298
+
2299
+ #: includes/admin/class-sp-admin-importers.php:34
2300
+ msgid "Import <strong>staff</strong> from a csv file."
2301
+ msgstr ""
2302
+
2303
+ #: includes/admin/class-sp-admin-menus.php:58
2304
+ #: includes/admin/views/html-admin-overview.php:3
2305
+ msgid "Overview"
2306
+ msgstr ""
2307
+
2308
+ #: includes/admin/class-sp-admin-menus.php:65
2309
+ #: includes/admin/views/html-admin-config.php:3
2310
+ msgid "Configure"
2311
+ msgstr ""
2312
+
2313
+ #: includes/admin/class-sp-admin-menus.php:86
2314
+ #: includes/admin/views/html-admin-page-status.php:2
2315
+ #: includes/admin/views/html-notice-template-check.php:6
2316
+ msgid "System Status"
2317
+ msgstr ""
2318
+
2319
+ #: includes/admin/class-sp-admin-permalink-settings.php:75
2320
+ msgid ""
2321
+ "These settings control the permalinks used for SportsPress. These settings "
2322
+ "only apply when <strong>not using \"default\" permalinks above</strong>."
2323
+ msgstr ""
2324
+
2325
+ #: includes/admin/class-sp-admin-settings.php:57
2326
+ msgid "Action failed. Please refresh the page and retry."
2327
+ msgstr ""
2328
+
2329
+ #: includes/admin/class-sp-admin-settings.php:64
2330
+ #: includes/admin/class-sp-admin-welcome.php:192
2331
+ msgid "Your settings have been saved."
2332
+ msgstr ""
2333
+
2334
+ #: includes/admin/class-sp-admin-sports.php:25
2335
+ #: includes/admin/class-sp-admin-sports.php:46
2336
+ #: includes/admin/class-sp-admin-sports.php:48
2337
+ msgid "Traditional Sports"
2338
+ msgstr ""
2339
+
2340
+ #: includes/admin/class-sp-admin-sports.php:26
2341
+ #: includes/admin/class-sp-admin-sports.php:66
2342
+ #: includes/admin/class-sp-admin-sports.php:68
2343
+ msgid "Esports"
2344
+ msgstr ""
2345
+
2346
+ #: includes/admin/class-sp-admin-sports.php:27
2347
+ msgid "Other"
2348
+ msgstr ""
2349
+
2350
+ #: includes/admin/class-sp-admin-sports.php:27
2351
+ msgid "Custom"
2352
+ msgstr "বিশেষ"
2353
+
2354
+ #: includes/admin/class-sp-admin-taxonomies.php:61
2355
+ #: includes/admin/class-sp-admin-taxonomies.php:81
2356
+ #: includes/admin/class-sp-admin-taxonomies.php:133
2357
+ msgid "Address"
2358
+ msgstr "ঠিকানা"
2359
+
2360
+ #: includes/admin/class-sp-admin-taxonomies.php:66
2361
+ #: includes/admin/class-sp-admin-taxonomies.php:85
2362
+ msgid "Drag the marker to the venue's location."
2363
+ msgstr ""
2364
+
2365
+ #: includes/admin/class-sp-admin-taxonomies.php:89
2366
+ msgid "Latitude"
2367
+ msgstr ""
2368
+
2369
+ #: includes/admin/class-sp-admin-taxonomies.php:95
2370
+ msgid "Longitude"
2371
+ msgstr ""
2372
+
2373
+ #: includes/admin/class-sp-admin-welcome.php:45
2374
+ msgid "Welcome to SportsPress"
2375
+ msgstr ""
2376
+
2377
+ #: includes/admin/class-sp-admin-welcome.php:135
2378
+ msgid "Welcome to SportsPress!"
2379
+ msgstr ""
2380
+
2381
+ #: includes/admin/class-sp-admin-welcome.php:140
2382
+ msgid "Thanks, all done!"
2383
+ msgstr ""
2384
+
2385
+ #: includes/admin/class-sp-admin-welcome.php:142
2386
+ msgid "Thank you for updating to the latest version!"
2387
+ msgstr ""
2388
+
2389
+ #: includes/admin/class-sp-admin-welcome.php:144
2390
+ msgid "Thanks for installing!"
2391
+ msgstr ""
2392
+
2393
+ #: includes/admin/class-sp-admin-welcome.php:146
2394
+ #, php-format
2395
+ msgid "%s SportsPress %s has lots of refinements we think you&#8217;ll love."
2396
+ msgstr ""
2397
+
2398
+ #: includes/admin/class-sp-admin-welcome.php:150
2399
+ #, php-format
2400
+ msgid "Version %s"
2401
+ msgstr ""
2402
+
2403
+ #: includes/admin/class-sp-admin-welcome.php:159
2404
+ #: includes/admin/views/html-notice-install.php:7
2405
+ msgid "Get Started"
2406
+ msgstr ""
2407
+
2408
+ #: includes/admin/class-sp-admin-welcome.php:198
2409
+ #: includes/admin/settings/class-sp-settings-general.php:245
2410
+ #: includes/admin/settings/class-sp-settings-general.php:248
2411
+ msgid "Timezone"
2412
+ msgstr ""
2413
+
2414
+ #: includes/admin/class-sp-admin-welcome.php:222
2415
+ #: includes/admin/settings/class-sp-settings-general.php:49
2416
+ #: includes/admin/views/html-admin-page-status.php:223
2417
+ msgid "Sport"
2418
+ msgstr ""
2419
+
2420
+ #: includes/admin/class-sp-admin-welcome.php:235
2421
+ #: includes/admin/views/html-admin-settings.php:14
2422
+ msgid "Save changes"
2423
+ msgstr ""
2424
+
2425
+ #: includes/admin/class-sp-admin-welcome.php:242
2426
+ msgid "Next Steps"
2427
+ msgstr ""
2428
+
2429
+ #: includes/admin/class-sp-admin-welcome.php:243
2430
+ msgid "We&#8217;ve assembled some links to get you started:"
2431
+ msgstr ""
2432
+
2433
+ #: includes/admin/class-sp-admin-welcome.php:251
2434
+ msgid "Translators"
2435
+ msgstr ""
2436
+
2437
+ #: includes/admin/class-sp-admin-welcome.php:252
2438
+ msgid ""
2439
+ "SportsPress has been kindly translated into several other languages thanks "
2440
+ "to our translation team. Want to see your name? <a "
2441
+ "href=\"https://www.transifex.com/projects/p/sportspress/\">Translate "
2442
+ "SportsPress</a>."
2443
+ msgstr ""
2444
+
2445
+ #: includes/admin/class-sp-admin-welcome.php:268
2446
+ msgid "Go to SportsPress Settings"
2447
+ msgstr ""
2448
+
2449
+ #: includes/admin/importers/class-sp-event-importer.php:24
2450
+ msgid "Import Events"
2451
+ msgstr ""
2452
+
2453
+ #: includes/admin/importers/class-sp-event-importer.php:407
2454
+ #, php-format
2455
+ msgid ""
2456
+ "Import complete - imported <strong>%s</strong> events and skipped "
2457
+ "<strong>%s</strong>."
2458
+ msgstr ""
2459
+
2460
+ #: includes/admin/importers/class-sp-event-importer.php:417
2461
+ #: includes/admin/importers/class-sp-player-importer.php:145
2462
+ #: includes/admin/importers/class-sp-staff-importer.php:141
2463
+ #: includes/admin/importers/class-sp-team-importer.php:102
2464
+ msgid "All done!"
2465
+ msgstr ""
2466
+
2467
+ #: includes/admin/importers/class-sp-event-importer.php:417
2468
+ msgid "View Events"
2469
+ msgstr ""
2470
+
2471
+ #: includes/admin/importers/class-sp-event-importer.php:430
2472
+ #: includes/admin/importers/class-sp-player-importer.php:168
2473
+ #: includes/admin/importers/class-sp-staff-importer.php:164
2474
+ #: includes/admin/importers/class-sp-team-importer.php:115
2475
+ msgid ""
2476
+ "Hi there! Choose a .csv file to upload, then click \"Upload file and "
2477
+ "import\"."
2478
+ msgstr ""
2479
+
2480
+ #: includes/admin/importers/class-sp-event-importer.php:431
2481
+ #, php-format
2482
+ msgid ""
2483
+ "Events need to be defined with columns in a specific order (3+ columns). <a "
2484
+ "href=\"%s\">Click here to download a sample</a>."
2485
+ msgstr ""
2486
+
2487
+ #: includes/admin/importers/class-sp-event-importer.php:448
2488
+ msgid "Date Format"
2489
+ msgstr ""
2490
+
2491
+ #: includes/admin/importers/class-sp-event-importer.php:467
2492
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:90
2493
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:122
2494
+ msgid "Format"
2495
+ msgstr ""
2496
+
2497
+ #: includes/admin/importers/class-sp-event-importer.php:484
2498
+ #: includes/admin/importers/class-sp-event-importer.php:499
2499
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:44
2500
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:62
2501
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:79
2502
+ msgid "-- Not set --"
2503
+ msgstr ""
2504
+
2505
+ #: includes/admin/importers/class-sp-importer.php:100
2506
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:47
2507
+ msgid "Disable"
2508
+ msgstr ""
2509
+
2510
+ #: includes/admin/importers/class-sp-importer.php:145
2511
+ #: includes/admin/importers/class-sp-importer.php:159
2512
+ #: includes/admin/importers/class-sp-importer.php:170
2513
+ msgid "Insert row after"
2514
+ msgstr ""
2515
+
2516
+ #: includes/admin/importers/class-sp-importer.php:158
2517
+ msgid "Delete row"
2518
+ msgstr ""
2519
+
2520
+ #: includes/admin/importers/class-sp-importer.php:185
2521
+ #: includes/admin/importers/class-sp-importer.php:221
2522
+ #: includes/admin/importers/class-sp-importer.php:236
2523
+ msgid "Sorry, there has been an error."
2524
+ msgstr ""
2525
+
2526
+ #: includes/admin/importers/class-sp-importer.php:186
2527
+ msgid "The CSV is invalid."
2528
+ msgstr ""
2529
+
2530
+ #: includes/admin/importers/class-sp-player-importer.php:24
2531
+ #: includes/admin/importers/class-sp-player-importer.php:157
2532
+ msgid "Import Players"
2533
+ msgstr ""
2534
+
2535
+ #: includes/admin/importers/class-sp-player-importer.php:135
2536
+ #, php-format
2537
+ msgid ""
2538
+ "Import complete - imported <strong>%s</strong> players and skipped "
2539
+ "<strong>%s</strong>."
2540
+ msgstr ""
2541
+
2542
+ #: includes/admin/importers/class-sp-player-importer.php:145
2543
+ msgid "View Players"
2544
+ msgstr ""
2545
+
2546
+ #: includes/admin/importers/class-sp-player-importer.php:169
2547
+ #, php-format
2548
+ msgid ""
2549
+ "Players need to be defined with columns in a specific order (7 columns). <a "
2550
+ "href=\"%s\">Click here to download a sample</a>."
2551
+ msgstr ""
2552
+
2553
+ #: includes/admin/importers/class-sp-staff-importer.php:24
2554
+ #: includes/admin/importers/class-sp-staff-importer.php:153
2555
+ msgid "Import Staff"
2556
+ msgstr ""
2557
+
2558
+ #: includes/admin/importers/class-sp-staff-importer.php:131
2559
+ #, php-format
2560
+ msgid ""
2561
+ "Import complete - imported <strong>%s</strong> staff and skipped "
2562
+ "<strong>%s</strong>."
2563
+ msgstr ""
2564
+
2565
+ #: includes/admin/importers/class-sp-staff-importer.php:165
2566
+ #, php-format
2567
+ msgid ""
2568
+ "Staff need to be defined with columns in a specific order (6 columns). <a "
2569
+ "href=\"%s\">Click here to download a sample</a>."
2570
+ msgstr ""
2571
+
2572
+ #: includes/admin/importers/class-sp-team-importer.php:24
2573
+ msgid "Import Teams"
2574
+ msgstr ""
2575
+
2576
+ #: includes/admin/importers/class-sp-team-importer.php:29
2577
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:95
2578
+ #: includes/admin/views/html-admin-page-status.php:24
2579
+ msgid "Site URL"
2580
+ msgstr ""
2581
+
2582
+ #: includes/admin/importers/class-sp-team-importer.php:30
2583
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:45
2584
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:66
2585
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-outcome-details.php:33
2586
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:101
2587
+ #: includes/admin/views/html-admin-config.php:28
2588
+ msgid "Abbreviation"
2589
+ msgstr ""
2590
+
2591
+ #: includes/admin/importers/class-sp-team-importer.php:31
2592
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:57
2593
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:80
2594
+ #: templates/event-list.php:61
2595
+ msgid "Home"
2596
+ msgstr "প্রথম পাতা"
2597
+
2598
+ #: includes/admin/importers/class-sp-team-importer.php:92
2599
+ #, php-format
2600
+ msgid ""
2601
+ "Import complete - imported <strong>%s</strong> teams and skipped "
2602
+ "<strong>%s</strong>."
2603
+ msgstr ""
2604
+
2605
+ #: includes/admin/importers/class-sp-team-importer.php:102
2606
+ msgid "View Teams"
2607
+ msgstr ""
2608
+
2609
+ #: includes/admin/importers/class-sp-team-importer.php:116
2610
+ #, php-format
2611
+ msgid ""
2612
+ "Teams need to be defined with columns in a specific order (3 columns). <a "
2613
+ "href=\"%s\">Click here to download a sample</a>."
2614
+ msgstr ""
2615
+
2616
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:48
2617
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:48
2618
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:48
2619
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:55
2620
+ msgid "Title"
2621
+ msgstr "শিরোনাম"
2622
+
2623
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:54
2624
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:53
2625
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:134
2626
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:166
2627
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:67
2628
+ msgid "Layout"
2629
+ msgstr ""
2630
+
2631
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:115
2632
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:194
2633
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:103
2634
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:150
2635
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:134
2636
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:85
2637
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:111
2638
+ msgid "Show all leagues"
2639
+ msgstr ""
2640
+
2641
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:124
2642
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:203
2643
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:112
2644
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:159
2645
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:143
2646
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:94
2647
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:120
2648
+ msgid "Show all seasons"
2649
+ msgstr ""
2650
+
2651
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:135
2652
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:186
2653
+ #: includes/admin/post-types/class-sp-admin-cpt-list.php:123
2654
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:142
2655
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:126
2656
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:105
2657
+ msgid "Show all teams"
2658
+ msgstr ""
2659
+
2660
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:43
2661
+ #: includes/admin/post-types/class-sp-admin-cpt-metric.php:43
2662
+ #: includes/admin/post-types/class-sp-admin-cpt-outcome.php:43
2663
+ #: includes/admin/post-types/class-sp-admin-cpt-performance.php:43
2664
+ #: includes/admin/post-types/class-sp-admin-cpt-result.php:43
2665
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:43
2666
+ #: includes/admin/views/html-admin-config.php:26
2667
+ #: includes/admin/views/html-admin-config.php:85
2668
+ #: includes/admin/views/html-admin-config.php:155
2669
+ #: includes/admin/views/html-admin-config.php:207
2670
+ #: includes/admin/views/html-admin-config.php:265
2671
+ #: includes/admin/views/html-admin-config.php:316
2672
+ msgid "Label"
2673
+ msgstr ""
2674
+
2675
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:45
2676
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:45
2677
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:108
2678
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:118
2679
+ #: includes/admin/views/html-admin-config.php:209
2680
+ #: includes/admin/views/html-admin-config.php:318
2681
+ msgid "Equation"
2682
+ msgstr ""
2683
+
2684
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:46
2685
+ #: includes/admin/post-types/class-sp-admin-cpt-statistic.php:46
2686
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:39
2687
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-statistic-details.php:36
2688
+ #: includes/admin/views/html-admin-config.php:210
2689
+ #: includes/admin/views/html-admin-config.php:319
2690
+ msgid "Rounding"
2691
+ msgstr ""
2692
+
2693
+ #: includes/admin/post-types/class-sp-admin-cpt-column.php:47
2694
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:113
2695
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:43
2696
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:98
2697
+ #: includes/admin/views/html-admin-config.php:211
2698
+ msgid "Sort Order"
2699
+ msgstr ""
2700
+
2701
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:131
2702
+ msgid "Show all positions"
2703
+ msgstr ""
2704
+
2705
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:65
2706
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:31
2707
+ msgid "URL"
2708
+ msgstr "ইউআরএল"
2709
+
2710
+ #: includes/admin/post-types/class-sp-admin-cpt.php:42
2711
+ #, php-format
2712
+ msgid "Insert into %s"
2713
+ msgstr ""
2714
+
2715
+ #: includes/admin/post-types/class-sp-admin-cpt.php:43
2716
+ #, php-format
2717
+ msgid "Uploaded to this %s"
2718
+ msgstr ""
2719
+
2720
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:121
2721
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:155
2722
+ msgid "Shortcodes"
2723
+ msgstr ""
2724
+
2725
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:125
2726
+ msgid "Video"
2727
+ msgstr "ভিডিও"
2728
+
2729
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:146
2730
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:162
2731
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:174
2732
+ msgid "Profile"
2733
+ msgstr ""
2734
+
2735
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:156
2736
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:167
2737
+ msgid "Columns"
2738
+ msgstr "কলামসমূহ"
2739
+
2740
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:158
2741
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:26
2742
+ msgid "Metrics"
2743
+ msgstr ""
2744
+
2745
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:57
2746
+ #: templates/event-list.php:62
2747
+ msgid "Away"
2748
+ msgstr ""
2749
+
2750
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:189
2751
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:122
2752
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:170
2753
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:60
2754
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:78
2755
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
2756
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
2757
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:123
2758
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:138
2759
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:62
2760
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:72
2761
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:90
2762
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:105
2763
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:120
2764
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:135
2765
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:106
2766
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:150
2767
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:57
2768
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:72
2769
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:87
2770
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
2771
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:106
2772
+ #, php-format
2773
+ msgid "Select %s"
2774
+ msgstr ""
2775
+
2776
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:31
2777
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:86
2778
+ msgid "Status"
2779
+ msgstr ""
2780
+
2781
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-shortcode.php:26
2782
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:24
2783
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-shortcode.php:26
2784
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:24
2785
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-shortcode.php:24
2786
+ msgid ""
2787
+ "Copy this code and paste it into your post, page or text widget content."
2788
+ msgstr ""
2789
+
2790
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2791
+ msgid "Attended"
2792
+ msgstr ""
2793
+
2794
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2795
+ msgid "Started"
2796
+ msgstr ""
2797
+
2798
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2799
+ msgid "Substituted"
2800
+ msgstr ""
2801
+
2802
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
2803
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
2804
+ msgid "Minutes"
2805
+ msgstr ""
2806
+
2807
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
2808
+ msgid "for"
2809
+ msgstr ""
2810
+
2811
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
2812
+ msgid "against"
2813
+ msgstr ""
2814
+
2815
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:43
2816
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:44
2817
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:45
2818
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:46
2819
+ msgid "Outcomes"
2820
+ msgstr ""
2821
+
2822
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:44
2823
+ msgid "Streak"
2824
+ msgstr ""
2825
+
2826
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:45
2827
+ msgid "Last 5"
2828
+ msgstr ""
2829
+
2830
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:46
2831
+ msgid "Last 10"
2832
+ msgstr ""
2833
+
2834
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:58
2835
+ msgid "Operators"
2836
+ msgstr ""
2837
+
2838
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:71
2839
+ msgid "Constants"
2840
+ msgstr ""
2841
+
2842
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:28
2843
+ #: includes/admin/settings/class-sp-settings-events.php:131
2844
+ msgid "Full Time"
2845
+ msgstr ""
2846
+
2847
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:163
2848
+ msgid "Starting Lineup"
2849
+ msgstr ""
2850
+
2851
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:164
2852
+ msgid "Substitute"
2853
+ msgstr ""
2854
+
2855
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:62
2856
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php:93
2857
+ msgid "&mdash; None &mdash;"
2858
+ msgstr ""
2859
+
2860
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:27
2861
+ msgid "Remove video"
2862
+ msgstr ""
2863
+
2864
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:36
2865
+ msgid "Add video"
2866
+ msgstr ""
2867
+
2868
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:43
2869
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:49
2870
+ #: includes/admin/settings/class-sp-settings-events.php:107
2871
+ msgid "Values"
2872
+ msgstr ""
2873
+
2874
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:44
2875
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:50
2876
+ msgid "Adjustments"
2877
+ msgstr ""
2878
+
2879
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:84
2880
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:84
2881
+ #: includes/admin/views/html-admin-config.php:39
2882
+ #: includes/admin/views/html-admin-config.php:113
2883
+ #: includes/admin/views/html-admin-config.php:167
2884
+ #: includes/admin/views/html-admin-config.php:224
2885
+ #: includes/admin/views/html-admin-config.php:276
2886
+ #: includes/admin/views/html-admin-config.php:331
2887
+ msgid "Edit"
2888
+ msgstr "সম্পাদনা"
2889
+
2890
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:89
2891
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:89
2892
+ msgid "Save"
2893
+ msgstr "সংরক্ষণ"
2894
+
2895
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:75
2896
+ msgid "Grouping"
2897
+ msgstr ""
2898
+
2899
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:82
2900
+ msgid "Sort by"
2901
+ msgstr ""
2902
+
2903
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:86
2904
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:83
2905
+ msgid "Current Teams"
2906
+ msgstr ""
2907
+
2908
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:56
2909
+ msgid "Highlight"
2910
+ msgstr ""
2911
+
2912
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:103
2913
+ msgid ""
2914
+ "The abbreviation is not prominent by default; however, some themes may show "
2915
+ "it"
2916
+ msgstr ""
2917
+
2918
+ #: includes/admin/settings/class-sp-settings-events.php:42
2919
+ msgid "Event Options"
2920
+ msgstr ""
2921
+
2922
+ #: includes/admin/settings/class-sp-settings-events.php:45
2923
+ #: includes/admin/settings/class-sp-settings-general.php:285
2924
+ #: includes/admin/settings/class-sp-settings-players.php:42
2925
+ #: includes/admin/settings/class-sp-settings-staff.php:44
2926
+ #: includes/admin/settings/class-sp-settings-teams.php:44
2927
+ msgid "Link"
2928
+ msgstr ""
2929
+
2930
+ #: includes/admin/settings/class-sp-settings-events.php:46
2931
+ msgid "Link events"
2932
+ msgstr ""
2933
+
2934
+ #: includes/admin/settings/class-sp-settings-events.php:54
2935
+ msgid "Link venues"
2936
+ msgstr ""
2937
+
2938
+ #: includes/admin/settings/class-sp-settings-events.php:62
2939
+ #: includes/admin/settings/class-sp-settings-events.php:156
2940
+ #: includes/admin/settings/class-sp-settings-events.php:198
2941
+ #: includes/admin/settings/class-sp-settings-players.php:78
2942
+ #: includes/admin/settings/class-sp-settings-teams.php:72
2943
+ msgid "Limit"
2944
+ msgstr ""
2945
+
2946
+ #: includes/admin/settings/class-sp-settings-events.php:66
2947
+ #: includes/admin/settings/class-sp-settings-teams.php:76
2948
+ msgid "teams"
2949
+ msgstr ""
2950
+
2951
+ #: includes/admin/settings/class-sp-settings-events.php:86
2952
+ msgid "Display players"
2953
+ msgstr ""
2954
+
2955
+ #: includes/admin/settings/class-sp-settings-events.php:94
2956
+ msgid "Display total"
2957
+ msgstr ""
2958
+
2959
+ #: includes/admin/settings/class-sp-settings-events.php:108
2960
+ msgid "Icons"
2961
+ msgstr ""
2962
+
2963
+ #: includes/admin/settings/class-sp-settings-events.php:114
2964
+ msgid "Display maps"
2965
+ msgstr ""
2966
+
2967
+ #: includes/admin/settings/class-sp-settings-events.php:123
2968
+ msgid "Display staff"
2969
+ msgstr ""
2970
+
2971
+ #: includes/admin/settings/class-sp-settings-events.php:145
2972
+ #: includes/widgets/class-sp-widget-event-list.php:6
2973
+ msgid "Event List"
2974
+ msgstr ""
2975
+
2976
+ #: includes/admin/settings/class-sp-settings-events.php:148
2977
+ #: includes/admin/settings/class-sp-settings-events.php:190
2978
+ #: includes/admin/settings/class-sp-settings-players.php:70
2979
+ #: includes/admin/settings/class-sp-settings-teams.php:64
2980
+ msgid "Pagination"
2981
+ msgstr ""
2982
+
2983
+ #: includes/admin/settings/class-sp-settings-events.php:149
2984
+ #: includes/admin/settings/class-sp-settings-events.php:191
2985
+ #: includes/admin/settings/class-sp-settings-players.php:71
2986
+ #: includes/admin/settings/class-sp-settings-teams.php:65
2987
+ msgid "Paginate"
2988
+ msgstr ""
2989
+
2990
+ #: includes/admin/settings/class-sp-settings-events.php:160
2991
+ #: includes/admin/settings/class-sp-settings-events.php:202
2992
+ msgid "events"
2993
+ msgstr ""
2994
+
2995
+ #: includes/admin/settings/class-sp-settings-events.php:170
2996
+ #: includes/widgets/class-sp-widget-event-blocks.php:6
2997
+ msgid "Event Blocks"
2998
+ msgstr ""
2999
+
3000
+ #: includes/admin/settings/class-sp-settings-events.php:182
3001
+ msgid "Display season"
3002
+ msgstr ""
3003
+
3004
+ #: includes/admin/settings/class-sp-settings-events.php:240
3005
+ #: includes/admin/settings/class-sp-settings-events.php:244
3006
+ msgid "Delimiter"
3007
+ msgstr ""
3008
+
3009
+ #: includes/admin/settings/class-sp-settings-events.php:249
3010
+ msgid "Custom:"
3011
+ msgstr ""
3012
+
3013
+ #: includes/admin/settings/class-sp-settings-general.php:25
3014
+ msgid "General"
3015
+ msgstr "সাধারণ"
3016
+
3017
+ #: includes/admin/settings/class-sp-settings-general.php:44
3018
+ msgid "General Options"
3019
+ msgstr ""
3020
+
3021
+ #: includes/admin/settings/class-sp-settings-general.php:57
3022
+ msgid "Google Maps"
3023
+ msgstr ""
3024
+
3025
+ #: includes/admin/settings/class-sp-settings-general.php:63
3026
+ msgid "Satellite"
3027
+ msgstr ""
3028
+
3029
+ #: includes/admin/settings/class-sp-settings-general.php:64
3030
+ msgid "Hybrid"
3031
+ msgstr ""
3032
+
3033
+ #: includes/admin/settings/class-sp-settings-general.php:65
3034
+ msgid "Terrain"
3035
+ msgstr ""
3036
+
3037
+ #: includes/admin/settings/class-sp-settings-general.php:71
3038
+ msgid "Styles and Scripts"
3039
+ msgstr ""
3040
+
3041
+ #: includes/admin/settings/class-sp-settings-general.php:79
3042
+ msgid "Align"
3043
+ msgstr "সারিসজ্জা"
3044
+
3045
+ #: includes/admin/settings/class-sp-settings-general.php:85
3046
+ msgid "Left"
3047
+ msgstr "বাম"
3048
+
3049
+ #: includes/admin/settings/class-sp-settings-general.php:86
3050
+ msgid "Center"
3051
+ msgstr "মাঝামাঝি"
3052
+
3053
+ #: includes/admin/settings/class-sp-settings-general.php:87
3054
+ msgid "Right"
3055
+ msgstr "ডান"
3056
+
3057
+ #: includes/admin/settings/class-sp-settings-general.php:92
3058
+ msgid "Padding"
3059
+ msgstr ""
3060
+
3061
+ #: includes/admin/settings/class-sp-settings-general.php:108
3062
+ msgid "Custom CSS"
3063
+ msgstr ""
3064
+
3065
+ #: includes/admin/settings/class-sp-settings-general.php:115
3066
+ msgid "Scripts"
3067
+ msgstr ""
3068
+
3069
+ #: includes/admin/settings/class-sp-settings-general.php:116
3070
+ msgid "Live countdowns"
3071
+ msgstr ""
3072
+
3073
+ #: includes/admin/settings/class-sp-settings-general.php:121
3074
+ msgid "This will enable a script allowing the countdowns to be animated."
3075
+ msgstr ""
3076
+
3077
+ #: includes/admin/settings/class-sp-settings-general.php:125
3078
+ msgid "Shortcode menu"
3079
+ msgstr ""
3080
+
3081
+ #: includes/admin/settings/class-sp-settings-general.php:130
3082
+ msgid ""
3083
+ "This will enable a shortcode menu to be displayed in the visual editor."
3084
+ msgstr ""
3085
+
3086
+ #: includes/admin/settings/class-sp-settings-general.php:134
3087
+ msgid "Tables"
3088
+ msgstr ""
3089
+
3090
+ #: includes/admin/settings/class-sp-settings-general.php:135
3091
+ msgid "Responsive"
3092
+ msgstr ""
3093
+
3094
+ #: includes/admin/settings/class-sp-settings-general.php:143
3095
+ msgid "Sortable"
3096
+ msgstr ""
3097
+
3098
+ #: includes/admin/settings/class-sp-settings-general.php:151
3099
+ msgid "Scrollable"
3100
+ msgstr ""
3101
+
3102
+ #: includes/admin/settings/class-sp-settings-general.php:159
3103
+ msgid "Header Offset"
3104
+ msgstr ""
3105
+
3106
+ #: includes/admin/settings/class-sp-settings-general.php:266
3107
+ msgid "Frontend Styles"
3108
+ msgstr ""
3109
+
3110
+ #: includes/admin/settings/class-sp-settings-general.php:281
3111
+ #: includes/admin/views/html-admin-config.php:84
3112
+ msgid "Primary"
3113
+ msgstr ""
3114
+
3115
+ #: includes/admin/settings/class-sp-settings-general.php:282
3116
+ msgid "Background"
3117
+ msgstr "ব্যকগ্রাউন্ড"
3118
+
3119
+ #: includes/admin/settings/class-sp-settings-general.php:283
3120
+ #: includes/admin/settings/class-sp-settings-text.php:25
3121
+ #: includes/admin/settings/class-sp-settings-text.php:41
3122
+ msgid "Text"
3123
+ msgstr "লেখা"
3124
+
3125
+ #: includes/admin/settings/class-sp-settings-general.php:284
3126
+ msgid "Heading"
3127
+ msgstr ""
3128
+
3129
+ #: includes/admin/settings/class-sp-settings-general.php:291
3130
+ msgid "Enable"
3131
+ msgstr ""
3132
+
3133
+ #: includes/admin/settings/class-sp-settings-players.php:39
3134
+ msgid "Player Options"
3135
+ msgstr ""
3136
+
3137
+ #: includes/admin/settings/class-sp-settings-players.php:43
3138
+ msgid "Link players"
3139
+ msgstr ""
3140
+
3141
+ #: includes/admin/settings/class-sp-settings-players.php:51
3142
+ #: includes/admin/settings/class-sp-settings-staff.php:53
3143
+ msgid "Display national flags"
3144
+ msgstr ""
3145
+
3146
+ #: includes/admin/settings/class-sp-settings-players.php:63
3147
+ msgid "Display photos"
3148
+ msgstr ""
3149
+
3150
+ #: includes/admin/settings/class-sp-settings-players.php:82
3151
+ msgid "players"
3152
+ msgstr ""
3153
+
3154
+ #: includes/admin/settings/class-sp-settings-staff.php:41
3155
+ msgid "Staff Options"
3156
+ msgstr ""
3157
+
3158
+ #: includes/admin/settings/class-sp-settings-staff.php:45
3159
+ msgid "Link staff"
3160
+ msgstr ""
3161
+
3162
+ #: includes/admin/settings/class-sp-settings-teams.php:41
3163
+ msgid "Team Options"
3164
+ msgstr ""
3165
+
3166
+ #: includes/admin/settings/class-sp-settings-teams.php:45
3167
+ msgid "Link teams"
3168
+ msgstr ""
3169
+
3170
+ #: includes/admin/settings/class-sp-settings-text.php:41
3171
+ msgid "The following options affect how words are displayed on the frontend."
3172
+ msgstr ""
3173
+
3174
+ #: includes/admin/views/html-admin-config.php:20
3175
+ #: includes/admin/views/html-admin-config.php:75
3176
+ #: includes/admin/views/html-admin-config.php:148
3177
+ msgid "Used for events."
3178
+ msgstr ""
3179
+
3180
+ #: includes/admin/views/html-admin-config.php:86
3181
+ msgid "Variables"
3182
+ msgstr ""
3183
+
3184
+ #: includes/admin/views/html-admin-config.php:99
3185
+ #, php-format
3186
+ msgid "Default (%s)"
3187
+ msgstr ""
3188
+
3189
+ #: includes/admin/views/html-admin-config.php:201
3190
+ msgid "Used for league tables."
3191
+ msgstr ""
3192
+
3193
+ #: includes/admin/views/html-admin-config.php:259
3194
+ #: includes/admin/views/html-admin-config.php:310
3195
+ msgid "Used for player lists."
3196
+ msgstr ""
3197
+
3198
+ #: includes/admin/views/html-admin-config.php:353
3199
+ #: includes/admin/views/html-admin-overview.php:333
3200
+ #: includes/admin/views/html-admin-settings.php:22
3201
+ msgid ""
3202
+ "Love SportsPress? Help spread the word by rating us 5★ on WordPress.org"
3203
+ msgstr ""
3204
+
3205
+ #: includes/admin/views/html-admin-page-status.php:5
3206
+ msgid "Please include this information when requesting support:"
3207
+ msgstr ""
3208
+
3209
+ #: includes/admin/views/html-admin-page-status.php:6
3210
+ msgid "Get System Report"
3211
+ msgstr ""
3212
+
3213
+ #: includes/admin/views/html-admin-page-status.php:14
3214
+ msgid "Environment"
3215
+ msgstr ""
3216
+
3217
+ #: includes/admin/views/html-admin-page-status.php:20
3218
+ msgid "Home URL"
3219
+ msgstr ""
3220
+
3221
+ #: includes/admin/views/html-admin-page-status.php:28
3222
+ msgid "SP Version"
3223
+ msgstr ""
3224
+
3225
+ #: includes/admin/views/html-admin-page-status.php:32
3226
+ msgid "WP Version"
3227
+ msgstr ""
3228
+
3229
+ #: includes/admin/views/html-admin-page-status.php:36
3230
+ msgid "WP Multisite Enabled"
3231
+ msgstr ""
3232
+
3233
+ #: includes/admin/views/html-admin-page-status.php:37
3234
+ #: includes/admin/views/html-admin-page-status.php:61
3235
+ #: includes/admin/views/html-admin-page-status.php:86
3236
+ msgid "Yes"
3237
+ msgstr "হ্যাঁ/ সঠিক"
3238
+
3239
+ #: includes/admin/views/html-admin-page-status.php:37
3240
+ #: includes/admin/views/html-admin-page-status.php:61
3241
+ #: includes/admin/views/html-admin-page-status.php:86
3242
+ msgid "No"
3243
+ msgstr "না"
3244
+
3245
+ #: includes/admin/views/html-admin-page-status.php:40
3246
+ msgid "Web Server Info"
3247
+ msgstr ""
3248
+
3249
+ #: includes/admin/views/html-admin-page-status.php:44
3250
+ msgid "PHP Version"
3251
+ msgstr ""
3252
+
3253
+ #: includes/admin/views/html-admin-page-status.php:48
3254
+ msgid "WP Memory Limit"
3255
+ msgstr ""
3256
+
3257
+ #: includes/admin/views/html-admin-page-status.php:53
3258
+ #, php-format
3259
+ msgid ""
3260
+ "%s - We recommend setting memory to at least 64MB. See: <a "
3261
+ "href=\"%s\">Increasing memory allocated to PHP</a>"
3262
+ msgstr ""
3263
+
3264
+ #: includes/admin/views/html-admin-page-status.php:60
3265
+ msgid "WP Debug Mode"
3266
+ msgstr ""
3267
+
3268
+ #: includes/admin/views/html-admin-page-status.php:64
3269
+ msgid "WP Language"
3270
+ msgstr ""
3271
+
3272
+ #: includes/admin/views/html-admin-page-status.php:68
3273
+ msgid "WP Max Upload Size"
3274
+ msgstr ""
3275
+
3276
+ #: includes/admin/views/html-admin-page-status.php:73
3277
+ msgid "PHP Post Max Size"
3278
+ msgstr ""
3279
+
3280
+ #: includes/admin/views/html-admin-page-status.php:77
3281
+ msgid "PHP Time Limit"
3282
+ msgstr ""
3283
+
3284
+ #: includes/admin/views/html-admin-page-status.php:81
3285
+ msgid "PHP Max Input Vars"
3286
+ msgstr ""
3287
+
3288
+ #: includes/admin/views/html-admin-page-status.php:85
3289
+ msgid "SUHOSIN Installed"
3290
+ msgstr ""
3291
+
3292
+ #: includes/admin/views/html-admin-page-status.php:90
3293
+ msgid "Default Timezone"
3294
+ msgstr ""
3295
+
3296
+ #: includes/admin/views/html-admin-page-status.php:94
3297
+ #, php-format
3298
+ msgid "Default timezone is %s - it should be UTC"
3299
+ msgstr ""
3300
+
3301
+ #: includes/admin/views/html-admin-page-status.php:96
3302
+ #, php-format
3303
+ msgid "Default timezone is %s"
3304
+ msgstr ""
3305
+
3306
+ #: includes/admin/views/html-admin-page-status.php:104
3307
+ msgid "fsockopen/cURL"
3308
+ msgstr ""
3309
+
3310
+ #: includes/admin/views/html-admin-page-status.php:107
3311
+ msgid "Your server has fsockopen and cURL enabled."
3312
+ msgstr ""
3313
+
3314
+ #: includes/admin/views/html-admin-page-status.php:109
3315
+ msgid "Your server has fsockopen enabled, cURL is disabled."
3316
+ msgstr ""
3317
+
3318
+ #: includes/admin/views/html-admin-page-status.php:111
3319
+ msgid "Your server has cURL enabled, fsockopen is disabled."
3320
+ msgstr ""
3321
+
3322
+ #: includes/admin/views/html-admin-page-status.php:115
3323
+ msgid ""
3324
+ "Your server does not have fsockopen or cURL enabled - PayPal IPN and other "
3325
+ "scripts which communicate with other servers will not work. Contact your "
3326
+ "hosting provider."
3327
+ msgstr ""
3328
+
3329
+ #: includes/admin/views/html-admin-page-status.php:120
3330
+ msgid "SOAP Client"
3331
+ msgstr ""
3332
+
3333
+ #: includes/admin/views/html-admin-page-status.php:122
3334
+ msgid "Your server has the SOAP Client class enabled."
3335
+ msgstr ""
3336
+
3337
+ #: includes/admin/views/html-admin-page-status.php:125
3338
+ #, php-format
3339
+ msgid ""
3340
+ "Your server does not have the <a href=\"%s\">SOAP Client</a> class enabled -"
3341
+ " some gateway plugins which use SOAP may not work as expected."
3342
+ msgstr ""
3343
+
3344
+ #: includes/admin/views/html-admin-page-status.php:148
3345
+ msgid "Plugins"
3346
+ msgstr "প্লাগিনসমূহ"
3347
+
3348
+ #: includes/admin/views/html-admin-page-status.php:154
3349
+ msgid "Installed Plugins"
3350
+ msgstr ""
3351
+
3352
+ #: includes/admin/views/html-admin-page-status.php:174
3353
+ msgid "Visit plugin homepage"
3354
+ msgstr ""
3355
+
3356
+ #: includes/admin/views/html-admin-page-status.php:198
3357
+ #: includes/admin/views/html-admin-page-status.php:413
3358
+ msgid "is available"
3359
+ msgstr ""
3360
+
3361
+ #: includes/admin/views/html-admin-page-status.php:201
3362
+ msgid "by"
3363
+ msgstr ""
3364
+
3365
+ #: includes/admin/views/html-admin-page-status.php:201
3366
+ msgid "version"
3367
+ msgstr ""
3368
+
3369
+ #: includes/admin/views/html-admin-page-status.php:217
3370
+ msgid "SP Configuration"
3371
+ msgstr ""
3372
+
3373
+ #: includes/admin/views/html-admin-page-status.php:290
3374
+ msgid "SP Taxonomies"
3375
+ msgstr ""
3376
+
3377
+ #: includes/admin/views/html-admin-page-status.php:339
3378
+ msgid "SP Post Types"
3379
+ msgstr ""
3380
+
3381
+ #: includes/admin/views/html-admin-page-status.php:365
3382
+ msgid "Theme"
3383
+ msgstr ""
3384
+
3385
+ #: includes/admin/views/html-admin-page-status.php:402
3386
+ msgid "Theme Name"
3387
+ msgstr ""
3388
+
3389
+ #: includes/admin/views/html-admin-page-status.php:408
3390
+ msgid "Theme Version"
3391
+ msgstr ""
3392
+
3393
+ #: includes/admin/views/html-admin-page-status.php:417
3394
+ msgid "Author URL"
3395
+ msgstr ""
3396
+
3397
+ #: includes/admin/views/html-admin-page-status.php:426
3398
+ msgid "Templates"
3399
+ msgstr ""
3400
+
3401
+ #: includes/admin/views/html-admin-page-status.php:459
3402
+ #, php-format
3403
+ msgid ""
3404
+ "<code>%s</code> version <strong style=\"color:red\">%s</strong> is out of "
3405
+ "date. The core version is %s"
3406
+ msgstr ""
3407
+
3408
+ #: includes/admin/views/html-admin-page-status.php:470
3409
+ #: includes/admin/views/html-admin-page-status.php:476
3410
+ msgid "Template Overrides"
3411
+ msgstr ""
3412
+
3413
+ #: includes/admin/views/html-admin-page-status.php:477
3414
+ msgid "No overrides present in theme."
3415
+ msgstr ""
3416
+
3417
+ #: includes/admin/views/html-notice-install.php:5
3418
+ #, php-format
3419
+ msgid "Welcome to SportsPress %s"
3420
+ msgstr ""
3421
+
3422
+ #: includes/admin/views/html-notice-install.php:8
3423
+ #: includes/admin/views/html-notice-template-check.php:6
3424
+ #: includes/admin/views/html-notice-theme-support.php:8
3425
+ msgid "Hide this notice"
3426
+ msgstr ""
3427
+
3428
+ #: includes/admin/views/html-notice-template-check.php:5
3429
+ msgid ""
3430
+ "<strong>Your theme has bundled outdated copies of SportsPress template "
3431
+ "files</strong> &#8211; if you encounter functionality issues on the frontend"
3432
+ " this could the reason. Ensure you update or remove them (in general we "
3433
+ "recommend only bundling the template files you actually need to customize). "
3434
+ "See the system report for full details."
3435
+ msgstr ""
3436
+
3437
+ #: includes/admin/views/html-notice-theme-support.php:5
3438
+ msgid ""
3439
+ "<strong>Your theme does not declare SportsPress support</strong> &#8211; if "
3440
+ "you encounter layout issues please read our integration guide or choose a "
3441
+ "SportsPress theme :)"
3442
+ msgstr ""
3443
+
3444
+ #: includes/admin/views/html-notice-theme-support.php:7
3445
+ msgid "Theme Integration Guide"
3446
+ msgstr ""
3447
+
3448
+ #: includes/widgets/class-sp-widget-countdown.php:5
3449
+ msgid "A clock that counts down to an upcoming event."
3450
+ msgstr ""
3451
+
3452
+ #: includes/widgets/class-sp-widget-countdown.php:42
3453
+ #: includes/widgets/class-sp-widget-event-blocks.php:48
3454
+ #: includes/widgets/class-sp-widget-event-calendar.php:41
3455
+ #: includes/widgets/class-sp-widget-event-list.php:51
3456
+ #: includes/widgets/class-sp-widget-league-table.php:47
3457
+ #: includes/widgets/class-sp-widget-player-gallery.php:50
3458
+ #: includes/widgets/class-sp-widget-player-list.php:50
3459
+ msgid "Title:"
3460
+ msgstr "শিরোনাম:"
3461
+
3462
+ #: includes/widgets/class-sp-widget-event-blocks.php:5
3463
+ #: includes/widgets/class-sp-widget-event-list.php:5
3464
+ msgid "A list of events."
3465
+ msgstr ""
3466
+
3467
+ #: includes/widgets/class-sp-widget-event-calendar.php:5
3468
+ msgid "A calendar of events."
3469
+ msgstr ""
3470
+
3471
+ #: includes/widgets/class-sp-widget-event-calendar.php:6
3472
+ msgid "Event Calendar"
3473
+ msgstr ""
3474
+
3475
+ #: includes/widgets/class-sp-widget-league-table.php:5
3476
+ msgid "Display a league table."
3477
+ msgstr ""
3478
+
3479
+ #: includes/widgets/class-sp-widget-player-gallery.php:5
3480
+ msgid "Display a gallery of players."
3481
+ msgstr ""
3482
+
3483
+ #: includes/widgets/class-sp-widget-player-gallery.php:6
3484
+ msgid "Player Gallery"
3485
+ msgstr ""
3486
+
3487
+ #: includes/widgets/class-sp-widget-player-list.php:5
3488
+ msgid "Display a list of players."
3489
+ msgstr ""
3490
+
3491
+ #: includes/widgets/class-sp-widget-player-list.php:73
3492
+ msgid "Performance:"
3493
+ msgstr ""
3494
+
3495
+ #. translators: Calendar caption: 1: month name, 2: 4-digit year
3496
+ #: templates/event-calendar.php:88 templates/event-calendar.php:116
3497
+ #: templates/event-calendar.php:124
3498
+ #, php-format
3499
+ msgctxt "calendar caption"
3500
+ msgid "%1$s %2$s"
3501
+ msgstr "%1$s %2$s"
languages/sportspress-bs_BA.mo ADDED
Binary file
languages/sportspress-bs_BA.po ADDED
@@ -0,0 +1,3504 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: SportsPress\n"
6
+ "POT-Creation-Date: 2014-08-26 02:27+1000\n"
7
+ "PO-Revision-Date: 2014-08-25 16:28+0000\n"
8
+ "Last-Translator: ThemeBoy <support@themeboy.com>\n"
9
+ "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/sportspress/language/bs_BA/)\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Language: bs_BA\n"
14
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
15
+ "X-Generator: Poedit 1.6.3\n"
16
+ "X-Poedit-Basepath: ..\n"
17
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SourceCharset: UTF-8\n"
20
+
21
+ #: sportspress.php:82 sportspress.php:91
22
+ msgid "Cheatin&#8217; huh?"
23
+ msgstr ""
24
+
25
+ #: sportspress.php:132 includes/admin/class-sp-admin-menus.php:113
26
+ msgid "Settings"
27
+ msgstr ""
28
+
29
+ #: sportspress.php:133
30
+ msgid "Docs"
31
+ msgstr ""
32
+
33
+ #: sportspress.php:134
34
+ msgid "Upgrade"
35
+ msgstr ""
36
+
37
+ #: assets/js/admin/editor-lang.php:5
38
+ msgid "SportsPress Shortcodes"
39
+ msgstr ""
40
+
41
+ #: assets/js/admin/editor-lang.php:6
42
+ #: includes/admin/settings/class-sp-settings-general.php:96
43
+ #: includes/admin/settings/class-sp-settings-general.php:163
44
+ msgid "Auto"
45
+ msgstr ""
46
+
47
+ #: assets/js/admin/editor-lang.php:7
48
+ msgid "Manual"
49
+ msgstr ""
50
+
51
+ #: assets/js/admin/editor-lang.php:8
52
+ msgid "Select..."
53
+ msgstr ""
54
+
55
+ #: assets/js/admin/editor-lang.php:9 includes/class-sp-ajax.php:57
56
+ #: includes/class-sp-ajax.php:101 includes/class-sp-ajax.php:130
57
+ #: includes/class-sp-ajax.php:159 includes/class-sp-ajax.php:290
58
+ #: includes/class-sp-post-types.php:371 includes/sp-core-functions.php:1086
59
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:99
60
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:225
61
+ #: includes/widgets/class-sp-widget-countdown.php:62
62
+ #: includes/widgets/class-sp-widget-event-list.php:111
63
+ #: templates/event-list.php:66
64
+ msgid "Event"
65
+ msgstr ""
66
+
67
+ #: assets/js/admin/editor-lang.php:10 includes/sp-core-functions.php:1085
68
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:101
69
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:104
70
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:107
71
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:111
72
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:114
73
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:117
74
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:123
75
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:135
76
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:140
77
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:150
78
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:157
79
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:168
80
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:173
81
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:189
82
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-shortcode.php:31
83
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:27
84
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:110
85
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:106
86
+ #: includes/admin/settings/class-sp-settings-events.php:173
87
+ #: templates/event-details.php:34
88
+ msgid "Details"
89
+ msgstr ""
90
+
91
+ #: assets/js/admin/editor-lang.php:11
92
+ #: includes/admin/importers/class-sp-event-importer.php:30
93
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:40
94
+ msgid "Results"
95
+ msgstr ""
96
+
97
+ #: assets/js/admin/editor-lang.php:12
98
+ #: includes/widgets/class-sp-widget-countdown.php:6
99
+ msgid "Countdown"
100
+ msgstr ""
101
+
102
+ #: assets/js/admin/editor-lang.php:13
103
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:49
104
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:25
105
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:25
106
+ msgid "Performance"
107
+ msgstr ""
108
+
109
+ #: assets/js/admin/editor-lang.php:14 includes/class-sp-ajax.php:188
110
+ #: includes/class-sp-ajax.php:236 includes/class-sp-ajax.php:327
111
+ #: includes/class-sp-formats.php:31 includes/class-sp-post-types.php:401
112
+ #: includes/widgets/class-sp-widget-event-blocks.php:51
113
+ #: includes/widgets/class-sp-widget-event-calendar.php:44
114
+ #: includes/widgets/class-sp-widget-event-list.php:54
115
+ msgid "Calendar"
116
+ msgstr ""
117
+
118
+ #: assets/js/admin/editor-lang.php:15
119
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:160
120
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-columns.php:27
121
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-columns.php:26
122
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-shortcode.php:31
123
+ msgid "Statistics"
124
+ msgstr ""
125
+
126
+ #: assets/js/admin/editor-lang.php:16 includes/class-sp-ajax.php:401
127
+ #: includes/class-sp-post-types.php:462
128
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:151
129
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:55
130
+ #: includes/widgets/class-sp-widget-league-table.php:6
131
+ #: includes/widgets/class-sp-widget-league-table.php:50
132
+ msgid "League Table"
133
+ msgstr ""
134
+
135
+ #: assets/js/admin/editor-lang.php:17 includes/class-sp-ajax.php:525
136
+ #: includes/class-sp-ajax.php:615 includes/class-sp-post-types.php:523
137
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:169
138
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-lists.php:55
139
+ #: includes/widgets/class-sp-widget-player-gallery.php:53
140
+ #: includes/widgets/class-sp-widget-player-list.php:6
141
+ #: includes/widgets/class-sp-widget-player-list.php:53
142
+ msgid "Player List"
143
+ msgstr ""
144
+
145
+ #: assets/js/admin/editor-lang.php:18 includes/class-sp-formats.php:32
146
+ #: includes/class-sp-formats.php:36
147
+ msgid "List"
148
+ msgstr ""
149
+
150
+ #: assets/js/admin/editor-lang.php:19 includes/class-sp-formats.php:33
151
+ msgid "Blocks"
152
+ msgstr ""
153
+
154
+ #: assets/js/admin/editor-lang.php:20 includes/class-sp-ajax.php:467
155
+ #: includes/class-sp-ajax.php:496 includes/class-sp-install.php:160
156
+ #: includes/class-sp-player-list.php:376 includes/class-sp-post-types.php:493
157
+ #: includes/sp-core-functions.php:1092
158
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-performance.php:63
159
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:51
160
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:136
161
+ #: templates/event-performance.php:75
162
+ msgid "Player"
163
+ msgstr ""
164
+
165
+ #: assets/js/admin/editor-lang.php:21 includes/class-sp-formats.php:37
166
+ msgid "Gallery"
167
+ msgstr ""
168
+
169
+ #: includes/class-sp-ajax.php:57 includes/class-sp-ajax.php:101
170
+ #: includes/class-sp-ajax.php:130 includes/class-sp-ajax.php:159
171
+ #: includes/class-sp-ajax.php:188 includes/class-sp-ajax.php:236
172
+ #: includes/class-sp-ajax.php:327 includes/class-sp-ajax.php:401
173
+ #: includes/class-sp-ajax.php:467 includes/class-sp-ajax.php:496
174
+ #: includes/class-sp-ajax.php:525 includes/class-sp-ajax.php:615
175
+ #: includes/widgets/class-sp-widget-countdown.php:45
176
+ #: includes/widgets/class-sp-widget-countdown.php:62
177
+ #: includes/widgets/class-sp-widget-event-blocks.php:51
178
+ #: includes/widgets/class-sp-widget-event-calendar.php:44
179
+ #: includes/widgets/class-sp-widget-event-list.php:54
180
+ #: includes/widgets/class-sp-widget-league-table.php:50
181
+ #: includes/widgets/class-sp-widget-player-gallery.php:53
182
+ #: includes/widgets/class-sp-widget-player-list.php:53
183
+ #, php-format
184
+ msgid "Select %s:"
185
+ msgstr ""
186
+
187
+ #: includes/class-sp-ajax.php:63
188
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:55
189
+ #: includes/widgets/class-sp-widget-countdown.php:69
190
+ msgid "(Auto)"
191
+ msgstr ""
192
+
193
+ #: includes/class-sp-ajax.php:74
194
+ #: includes/widgets/class-sp-widget-countdown.php:83
195
+ msgid "Display venue"
196
+ msgstr ""
197
+
198
+ #: includes/class-sp-ajax.php:80
199
+ #: includes/admin/settings/class-sp-settings-events.php:174
200
+ #: includes/widgets/class-sp-widget-countdown.php:86
201
+ msgid "Display league"
202
+ msgstr ""
203
+
204
+ #: includes/class-sp-ajax.php:84 includes/class-sp-ajax.php:113
205
+ #: includes/class-sp-ajax.php:142 includes/class-sp-ajax.php:171
206
+ #: includes/class-sp-ajax.php:219 includes/class-sp-ajax.php:310
207
+ #: includes/class-sp-ajax.php:384 includes/class-sp-ajax.php:450
208
+ #: includes/class-sp-ajax.php:479 includes/class-sp-ajax.php:508
209
+ #: includes/class-sp-ajax.php:598 includes/class-sp-ajax.php:675
210
+ #, php-format
211
+ msgid "Insert %s"
212
+ msgstr ""
213
+
214
+ #: includes/class-sp-ajax.php:84 includes/class-sp-ajax.php:113
215
+ #: includes/class-sp-ajax.php:142 includes/class-sp-ajax.php:171
216
+ #: includes/class-sp-ajax.php:219 includes/class-sp-ajax.php:310
217
+ #: includes/class-sp-ajax.php:384 includes/class-sp-ajax.php:450
218
+ #: includes/class-sp-ajax.php:479 includes/class-sp-ajax.php:508
219
+ #: includes/class-sp-ajax.php:598 includes/class-sp-ajax.php:675
220
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:133
221
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:149
222
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:165
223
+ msgid "Shortcode"
224
+ msgstr ""
225
+
226
+ #: includes/class-sp-ajax.php:85 includes/class-sp-ajax.php:114
227
+ #: includes/class-sp-ajax.php:143 includes/class-sp-ajax.php:172
228
+ #: includes/class-sp-ajax.php:220 includes/class-sp-ajax.php:311
229
+ #: includes/class-sp-ajax.php:385 includes/class-sp-ajax.php:451
230
+ #: includes/class-sp-ajax.php:480 includes/class-sp-ajax.php:509
231
+ #: includes/class-sp-ajax.php:599 includes/class-sp-ajax.php:676
232
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-video.php:33
233
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-data.php:88
234
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:88
235
+ msgid "Cancel"
236
+ msgstr ""
237
+
238
+ #: includes/class-sp-ajax.php:194 includes/class-sp-ajax.php:264
239
+ #: includes/class-sp-ajax.php:355 includes/class-sp-post-types.php:37
240
+ #: includes/class-sp-post-types.php:66 includes/class-sp-post-types.php:95
241
+ #: includes/class-sp-post-types.php:124 includes/class-sp-post-types.php:153
242
+ #: includes/sp-core-functions.php:407 includes/sp-core-functions.php:438
243
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:57
244
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:72
245
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:87
246
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:102
247
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:36
248
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php:49
249
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:36
250
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:51
251
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:66
252
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:33
253
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:48
254
+ #: includes/admin/views/html-admin-overview.php:79
255
+ #: includes/widgets/class-sp-widget-countdown.php:52
256
+ #: includes/widgets/class-sp-widget-event-blocks.php:55
257
+ #: includes/widgets/class-sp-widget-event-calendar.php:48
258
+ #: includes/widgets/class-sp-widget-event-list.php:58
259
+ msgid "All"
260
+ msgstr ""
261
+
262
+ #: includes/class-sp-ajax.php:202 includes/class-sp-ajax.php:249
263
+ #: includes/class-sp-ajax.php:340
264
+ #: includes/widgets/class-sp-widget-event-blocks.php:68
265
+ #: includes/widgets/class-sp-widget-event-calendar.php:61
266
+ #: includes/widgets/class-sp-widget-event-list.php:71
267
+ msgid "Status:"
268
+ msgstr ""
269
+
270
+ #: includes/class-sp-ajax.php:206 includes/class-sp-ajax.php:253
271
+ #: includes/class-sp-ajax.php:263 includes/class-sp-ajax.php:280
272
+ #: includes/class-sp-ajax.php:344 includes/class-sp-ajax.php:354
273
+ #: includes/class-sp-ajax.php:371 includes/class-sp-ajax.php:567
274
+ #: includes/class-sp-ajax.php:585 includes/class-sp-ajax.php:638
275
+ #: includes/class-sp-ajax.php:656
276
+ #: includes/admin/settings/class-sp-settings-general.php:62
277
+ #: includes/admin/settings/class-sp-settings-general.php:84
278
+ #: includes/admin/views/html-admin-config.php:101
279
+ #: includes/admin/views/html-admin-page-status.php:65
280
+ #: includes/widgets/class-sp-widget-event-blocks.php:71
281
+ #: includes/widgets/class-sp-widget-event-blocks.php:84
282
+ #: includes/widgets/class-sp-widget-event-blocks.php:99
283
+ #: includes/widgets/class-sp-widget-event-calendar.php:64
284
+ #: includes/widgets/class-sp-widget-event-list.php:74
285
+ #: includes/widgets/class-sp-widget-event-list.php:87
286
+ #: includes/widgets/class-sp-widget-event-list.php:102
287
+ #: includes/widgets/class-sp-widget-player-gallery.php:76
288
+ #: includes/widgets/class-sp-widget-player-list.php:96
289
+ msgid "Default"
290
+ msgstr ""
291
+
292
+ #: includes/class-sp-ajax.php:214 includes/class-sp-ajax.php:306
293
+ #: includes/class-sp-ajax.php:380
294
+ #: includes/widgets/class-sp-widget-event-blocks.php:105
295
+ #: includes/widgets/class-sp-widget-event-calendar.php:75
296
+ #: includes/widgets/class-sp-widget-event-list.php:126
297
+ msgid "Display link to view all events"
298
+ msgstr ""
299
+
300
+ #: includes/class-sp-ajax.php:261 includes/class-sp-ajax.php:352
301
+ #: includes/widgets/class-sp-widget-event-blocks.php:81
302
+ #: includes/widgets/class-sp-widget-event-list.php:84
303
+ msgid "Date:"
304
+ msgstr ""
305
+
306
+ #: includes/class-sp-ajax.php:265 includes/class-sp-ajax.php:356
307
+ #: includes/sp-core-functions.php:439
308
+ msgid "This week"
309
+ msgstr ""
310
+
311
+ #: includes/class-sp-ajax.php:266 includes/class-sp-ajax.php:357
312
+ #: includes/sp-core-functions.php:440
313
+ msgid "Today"
314
+ msgstr ""
315
+
316
+ #: includes/class-sp-ajax.php:272 includes/class-sp-ajax.php:363
317
+ #: includes/widgets/class-sp-widget-event-blocks.php:94
318
+ #: includes/widgets/class-sp-widget-event-list.php:97
319
+ msgid "Number of events to show:"
320
+ msgstr ""
321
+
322
+ #: includes/class-sp-ajax.php:278 includes/class-sp-ajax.php:369
323
+ #: includes/class-sp-ajax.php:583 includes/class-sp-ajax.php:654
324
+ #: includes/widgets/class-sp-widget-event-blocks.php:97
325
+ #: includes/widgets/class-sp-widget-event-list.php:100
326
+ #: includes/widgets/class-sp-widget-player-gallery.php:94
327
+ #: includes/widgets/class-sp-widget-player-list.php:114
328
+ msgid "Sort Order:"
329
+ msgstr ""
330
+
331
+ #: includes/class-sp-ajax.php:281 includes/class-sp-ajax.php:372
332
+ #: includes/class-sp-ajax.php:586 includes/class-sp-ajax.php:657
333
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:116
334
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
335
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:101
336
+ #: includes/widgets/class-sp-widget-event-blocks.php:100
337
+ #: includes/widgets/class-sp-widget-event-list.php:103
338
+ #: includes/widgets/class-sp-widget-player-gallery.php:96
339
+ #: includes/widgets/class-sp-widget-player-list.php:116
340
+ msgid "Ascending"
341
+ msgstr ""
342
+
343
+ #: includes/class-sp-ajax.php:282 includes/class-sp-ajax.php:373
344
+ #: includes/class-sp-ajax.php:587 includes/class-sp-ajax.php:658
345
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:117
346
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-column-details.php:59
347
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:102
348
+ #: includes/widgets/class-sp-widget-event-blocks.php:101
349
+ #: includes/widgets/class-sp-widget-event-list.php:104
350
+ #: includes/widgets/class-sp-widget-player-gallery.php:97
351
+ #: includes/widgets/class-sp-widget-player-list.php:117
352
+ msgid "Descending"
353
+ msgstr ""
354
+
355
+ #: includes/class-sp-ajax.php:287 includes/class-sp-ajax.php:419
356
+ #: includes/class-sp-ajax.php:543
357
+ #: includes/widgets/class-sp-widget-event-list.php:108
358
+ #: includes/widgets/class-sp-widget-league-table.php:70
359
+ msgid "Columns:"
360
+ msgstr ""
361
+
362
+ #: includes/class-sp-ajax.php:291 includes/class-sp-post-types.php:431
363
+ #: includes/sp-core-functions.php:1103
364
+ #: includes/admin/class-sp-admin-permalink-settings.php:28
365
+ #: includes/admin/importers/class-sp-event-importer.php:29
366
+ #: includes/admin/importers/class-sp-player-importer.php:29
367
+ #: includes/admin/importers/class-sp-staff-importer.php:28
368
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:94
369
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:67
370
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:66
371
+ #: includes/admin/post-types/class-sp-admin-cpt-table.php:51
372
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:124
373
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:56
374
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:93
375
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:108
376
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:90
377
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-staff-details.php:105
378
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:106
379
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-data.php:150
380
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-table-details.php:57
381
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-tables.php:58
382
+ #: includes/admin/settings/class-sp-settings-events.php:77
383
+ #: includes/admin/settings/class-sp-settings-teams.php:25
384
+ #: includes/admin/settings/class-sp-settings-teams.php:56
385
+ #: includes/widgets/class-sp-widget-event-list.php:112
386
+ #: templates/event-list.php:64
387
+ msgid "Teams"
388
+ msgstr ""
389
+
390
+ #: includes/class-sp-ajax.php:292 includes/sp-core-functions.php:1104
391
+ #: includes/admin/importers/class-sp-event-importer.php:27
392
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:93
393
+ #: includes/widgets/class-sp-widget-event-list.php:113
394
+ #: templates/event-details.php:21
395
+ msgid "Time"
396
+ msgstr ""
397
+
398
+ #: includes/class-sp-ajax.php:293 includes/class-sp-post-types.php:94
399
+ #: includes/sp-core-functions.php:1107
400
+ #: includes/admin/importers/class-sp-event-importer.php:28
401
+ #: includes/admin/post-types/class-sp-admin-cpt-calendar.php:51
402
+ #: includes/admin/post-types/class-sp-admin-cpt-event.php:97
403
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:82
404
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-details.php:83
405
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-event-details.php:71
406
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-team-details.php:87
407
+ #: includes/admin/settings/class-sp-settings-events.php:113
408
+ #: includes/widgets/class-sp-widget-event-list.php:114
409
+ #: templates/event-list.php:80 templates/event-venue.php:36
410
+ msgid "Venue"
411
+ msgstr ""
412
+
413
+ #: includes/class-sp-ajax.php:294 includes/sp-core-functions.php:1082
414
+ #: includes/admin/post-types/class-sp-admin-meta-boxes.php:130
415
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-calendar-data.php:88
416
+ #: includes/widgets/class-sp-widget-event-list.php:115
417
+ #: templates/event-list.php:83
418
+ msgid "Article"
419
+ msgstr ""
420
+
421
+ #: includes/class-sp-ajax.php:414
422
+ #: includes/widgets/class-sp-widget-league-table.php:66
423
+ msgid "Number of teams to show:"
424
+ msgstr ""
425
+
426
+ #: includes/class-sp-ajax.php:440
427
+ #: includes/admin/settings/class-sp-settings-events.php:78
428
+ #: includes/admin/settings/class-sp-settings-teams.php:57
429
+ #: includes/widgets/class-sp-widget-league-table.php:90
430
+ msgid "Display logos"
431
+ msgstr ""
432
+
433
+ #: includes/class-sp-ajax.php:446
434
+ #: includes/widgets/class-sp-widget-league-table.php:93
435
+ msgid "Display link to view full table"
436
+ msgstr ""
437
+
438
+ #: includes/class-sp-ajax.php:538 includes/class-sp-ajax.php:628
439
+ #: includes/widgets/class-sp-widget-player-gallery.php:69
440
+ #: includes/widgets/class-sp-widget-player-list.php:69
441
+ msgid "Number of players to show:"
442
+ msgstr ""
443
+
444
+ #: includes/class-sp-ajax.php:563 includes/class-sp-ajax.php:634
445
+ #: includes/widgets/class-sp-widget-player-gallery.php:72
446
+ #: includes/widgets/class-sp-widget-player-list.php:92
447
+ msgid "Sort by:"
448
+ msgstr ""
449
+
450
+ #: includes/class-sp-ajax.php:568 includes/class-sp-ajax.php:639
451
+ #: includes/admin/importers/class-sp-player-importer.php:26
452
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:64
453
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:87
454
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-player-details.php:56
455
+ #: includes/widgets/class-sp-widget-player-gallery.php:77
456
+ #: includes/widgets/class-sp-widget-player-list.php:97
457
+ msgid "Number"
458
+ msgstr ""
459
+
460
+ #: includes/class-sp-ajax.php:569 includes/class-sp-ajax.php:640
461
+ #: includes/class-sp-post-types.php:42 includes/class-sp-post-types.php:71
462
+ #: includes/class-sp-post-types.php:100 includes/class-sp-post-types.php:129
463
+ #: includes/class-sp-post-types.php:158
464
+ #: includes/admin/importers/class-sp-player-importer.php:27
465
+ #: includes/admin/importers/class-sp-staff-importer.php:26
466
+ #: includes/admin/importers/class-sp-team-importer.php:26
467
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:52
468
+ #: includes/admin/post-types/class-sp-admin-cpt-player.php:71
469
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:52
470
+ #: includes/admin/post-types/class-sp-admin-cpt-staff.php:70
471
+ #: includes/admin/post-types/class-sp-admin-cpt-team.php:51
472
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-list-details.php:88
473
+ #: includes/widgets/class-sp-widget-player-gallery.php:78
474
+ #: includes/widgets/class-sp-widget-player-list.php:98
475
+ msgid "Name"
476
+ msgstr ""
477
+
478
+ #: includes/class-sp-ajax.php:570 includes/class-sp-ajax.php:641
479
+ #: includes/sp-core-functions.php:1091
480
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:34
481
+ #: includes/admin/post-types/meta-boxes/class-sp-meta-box-equation.php:37
482
+ #: includes/widgets/class-sp-widget-player-gallery.php:79
483
+ #: includes/widgets/class-sp-widget-player-list.php:99
484
+ msgid "Played"
485
+ msgstr ""
486
+
487
+ #: includes/class-sp-ajax.php:594 includes/class-sp-ajax.php:665
488
+ #: includes/widgets/class-sp-widget-player-gallery.php:101
489
+ #: includes/widgets/class-sp-widget-player-list.php:121
490
+ msgid "Display link to view all players"
491
+ msgstr ""
492
+
493
+ #: includes/class-sp-ajax.php:671
494
+ #: includes/widgets/class-sp-widget-player-gallery.php:104
495
+ msgid "Display player names on hover"
496
+ msgstr ""
497
+
498
+ #: includes/class-sp-countries.php:29
499
+ msgid "Africa"
500
+ msgstr ""
501
+
502
+ #: includes/class-sp-countries.php:30
503
+ msgid "Asia"
504
+ msgstr ""
505
+
506
+ #: includes/class-sp-countries.php:31
507
+ msgid "Europe"
508
+ msgstr ""
509
+
510
+ #: includes/class-sp-countries.php:32
511
+ msgid "North America"
512
+ msgstr ""
513
+
514
+ #: includes/class-sp-countries.php:33
515
+ msgid "Oceania"
516
+ msgstr ""
517
+
518
+ #: includes/class-sp-countries.php:34
519
+ msgid "South America"
520
+ msgstr ""
521
+
522
+ #: includes/class-sp-countries.php:38
523
+ msgid "Andorra"
524
+ msgstr ""
525
+
526
+ #: includes/class-sp-countries.php:39
527
+ msgid "United Arab Emirates"
528
+ msgstr ""
529
+
530
+ #: includes/class-sp-countries.php:40
531
+ msgid "Afghanistan"
532
+ msgstr ""
533
+
534
+ #: includes/class-sp-countries.php:41
535
+ msgid "Antigua and Barbuda"
536
+ msgstr ""
537
+
538
+ #: includes/class-sp-countries.php:42
539
+ msgid "Albania"
540
+ msgstr ""
541
+
542
+ #: includes/class-sp-countries.php:43
543
+ msgid "Armenia"
544
+ msgstr ""
545
+
546
+ #: includes/class-sp-countries.php:44
547
+ msgid "Angola"
548
+ msgstr ""
549
+
550
+ #: includes/class-sp-countries.php:45
551
+ msgid "Argentina"
552
+ msgstr ""
553
+
554
+ #: includes/class-sp-countries.php:46
555
+ msgid "Austria"
556
+ msgstr ""
557
+
558
+ #: includes/class-sp-countries.php:47
559
+ msgid "Australia"
560
+ msgstr ""
561
+
562
+ #: includes/class-sp-countries.php:48
563
+ msgid "Azerbaijan"
564
+ msgstr ""
565
+
566
+ #: includes/class-sp-countries.php:49
567
+ msgid "Bosnia and Herzegovina"
568
+ msgstr "Bosna i Hercegovina"
569
+
570
+ #: includes/class-sp-countries.php:50
571
+ msgid "Barbados"
572
+ msgstr ""
573
+
574
+ #: includes/class-sp-countries.php:51
575
+ msgid "Bangladesh"
576
+ msgstr ""
577
+
578
+ #: includes/class-sp-countries.php:52
579
+ msgid "Belgium"
580
+ msgstr ""
581
+
582
+ #: includes/class-sp-countries.php:53
583
+ msgid "Burkina Faso"
584
+ msgstr ""
585
+
586
+ #: includes/class-sp-countries.php:54
587
+ msgid "Bulgaria"
588
+ msgstr ""
589
+
590
+ #: includes/class-sp-countries.php:55
591
+ msgid "Bahrain"
592
+ msgstr ""
593
+
594
+ #: includes/class-sp-countries.php:56
595
+ msgid "Burundi"
596
+ msgstr ""
597
+
598
+ #: includes/class-sp-countries.php:57
599
+ msgid "Benin"
600
+ msgstr ""
601
+
602
+ #: includes/class-sp-countries.php:58
603
+ msgid "Brunei"
604
+ msgstr ""
605
+
606
+ #: includes/class-sp-countries.php:59
607
+ msgid "Bolivia"
608
+ msgstr ""
609
+
610
+ #: includes/class-sp-countries.php:60
611
+ msgid "Brazil"
612
+ msgstr ""
613
+
614
+ #: includes/class-sp-countries.php:61
615
+ msgid "Bahamas"
616
+ msgstr ""
617
+
618
+ #: includes/class-sp-countries.php:62
619
+ msgid "Bhutan"
620
+ msgstr ""
621
+
622
+ #: includes/class-sp-countries.php:63
623
+ msgid "Botswana"
624
+ msgstr ""
625
+
626
+ #: includes/class-sp-countries.php:64
627
+ msgid "Belarus"
628
+ msgstr ""
629
+
630
+ #: includes/class-sp-countries.php:65
631
+ msgid "Belize"
632
+ msgstr ""
633
+
634
+ #: includes/class-sp-countries.php:66
635
+ msgid "Canada"
636
+ msgstr ""
637
+
638
+ #: includes/class-sp-countries.php:67
639
+ msgid "Democratic Republic of the Congo"
640
+ msgstr ""
641
+
642
+ #: includes/class-sp-countries.php:68
643
+ msgid "Central African Republic"
644
+ msgstr ""
645
+
646
+ #: includes/class-sp-countries.php:69
647
+ msgid "Republic of the Congo"
648
+ msgstr ""
649
+
650
+ #: includes/class-sp-countries.php:70
651
+ msgid "Switzerland"
652
+ msgstr ""
653
+
654
+ #: includes/class-sp-countries.php:71
655
+ msgid "Ivory Coast"
656
+ msgstr ""
657
+
658
+ #: includes/class-sp-countries.php:72
659
+ msgid "Chile"
660
+ msgstr ""
661
+
662
+ #: includes/class-sp-countries.php:73
663
+ msgid "Cameroon"
664
+ msgstr ""
665
+
666
+ #: includes/class-sp-countries.php:74
667
+ msgid "China"
668
+ msgstr ""
669
+
670
+ #: includes/class-sp-countries.php:75
671
+ msgid "Colombia"
672
+ msgstr ""
673
+
674
+ #: includes/class-sp-countries.php:76
675
+ msgid "Costa Rica"
676
+ msgstr ""
677
+
678
+ #: includes/class-sp-countries.php:77
679
+ msgid "Cuba"
680
+ msgstr ""
681
+
682
+ #: includes/class-sp-countries.php:78
683
+ msgid "Cape Verde"
684
+ msgstr ""
685
+
686
+ #: includes/class-sp-countries.php:79
687
+