The Events Calendar - Version 3.12

Version Description

Download this release

Release Info

Developer zbtirrell
Plugin Icon The Events Calendar
Version 3.12
Comparing to
See all releases

Code changes from version 3.11.2 to 3.12

Files changed (70) hide show
  1. common/README.md +2 -0
  2. common/Tribe/Abstract_Deactivation.php +71 -0
  3. common/Tribe/Admin/Helpers.php +161 -0
  4. common/Tribe/Admin/Notice/Archive_Slug_Conflict.php +75 -0
  5. common/Tribe/Admin/Timezone_Settings.php +100 -0
  6. common/Tribe/Admin/Timezone_Updater.php +227 -0
  7. common/Tribe/App_Shop.php +198 -0
  8. common/Tribe/Asset/Factory.php +57 -0
  9. common/Tribe/Autoloader.php +246 -0
  10. common/Tribe/Cache.php +126 -0
  11. common/Tribe/Cache_Listener.php +98 -0
  12. common/Tribe/Capabilities.php +119 -0
  13. common/Tribe/Changelog_Reader.php +53 -0
  14. common/Tribe/Credits.php +65 -0
  15. common/Tribe/Date_Utils.php +726 -0
  16. common/Tribe/Deactivation.php +49 -0
  17. common/Tribe/Debug.php +58 -0
  18. common/Tribe/Field.php +616 -0
  19. common/Tribe/Main.php +143 -0
  20. common/Tribe/Notices.php +76 -0
  21. common/Tribe/Settings.php +551 -0
  22. common/Tribe/Settings_Manager.php +348 -0
  23. common/Tribe/Settings_Tab.php +229 -0
  24. common/Tribe/Support.php +263 -0
  25. common/Tribe/Template_Factory.php +188 -0
  26. common/Tribe/Template_Part_Cache.php +123 -0
  27. common/Tribe/Timezones.php +304 -0
  28. common/Tribe/Validate.php +456 -0
  29. common/Tribe/View_Helpers.php +598 -0
  30. common/admin-views/tribe-options-display.php +227 -0
  31. common/admin-views/tribe-options-general.php +233 -0
  32. common/admin-views/tribe-options-help.php +356 -0
  33. common/admin-views/tribe-options-licenses.php +60 -0
  34. common/admin-views/tribe-options-network.php +35 -0
  35. common/admin-views/tribe-options-timezones.php +50 -0
  36. common/deprecated/Tribe__Events__Abstract_Deactivation.php +4 -0
  37. common/deprecated/Tribe__Events__Admin__Helpers.php +4 -0
  38. common/deprecated/Tribe__Events__App_Shop.php +4 -0
  39. common/deprecated/Tribe__Events__Autoloader.php +4 -0
  40. common/deprecated/Tribe__Events__Cache.php +4 -0
  41. common/deprecated/Tribe__Events__Cache_Listener.php +4 -0
  42. common/deprecated/Tribe__Events__Capabilities.php +4 -0
  43. common/deprecated/Tribe__Events__Changelog_Reader.php +4 -0
  44. common/deprecated/Tribe__Events__Credits.php +4 -0
  45. common/deprecated/Tribe__Events__Date_Utils.php +4 -0
  46. common/deprecated/Tribe__Events__Deactivation.php +4 -0
  47. common/deprecated/Tribe__Events__Field.php +4 -0
  48. common/deprecated/Tribe__Events__Settings.php +4 -0
  49. common/deprecated/Tribe__Events__Settings_Tab.php +4 -0
  50. common/deprecated/Tribe__Events__Support.php +4 -0
  51. common/deprecated/Tribe__Events__Template_Factory.php +4 -0
  52. common/deprecated/Tribe__Events__Template_Part_Cache.php +4 -0
  53. common/deprecated/Tribe__Events__Validate.php +4 -0
  54. common/deprecated/Tribe__Events__View_Helpers.php +4 -0
  55. common/functions/template-tags/date.php +142 -0
  56. common/functions/template-tags/day.php +1 -0
  57. common/functions/template-tags/general.php +384 -0
  58. common/resources/images/modern-tribe.png +0 -0
  59. common/resources/images/modern-tribe@2x.png +0 -0
  60. common/resources/js/events-admin-timezone-updater.js +57 -0
  61. lang/tribe-events-calendar-af.mo +0 -0
  62. lang/tribe-events-calendar-af.po +1123 -1029
  63. lang/tribe-events-calendar-bg_BG.mo +0 -0
  64. lang/tribe-events-calendar-bg_BG.po +1140 -1042
  65. lang/tribe-events-calendar-ca.mo +0 -0
  66. lang/tribe-events-calendar-ca.po +1574 -1476
  67. lang/tribe-events-calendar-cs_CZ.mo +0 -0
  68. lang/tribe-events-calendar-cs_CZ.po +1124 -1029
  69. lang/tribe-events-calendar-da_DK.mo +0 -0
  70. lang/tribe-events-calendar-da_DK.po +616 -460
common/README.md ADDED
@@ -0,0 +1,2 @@
 
 
1
+ # tribe-common
2
+ Common classes and functions used in our plugins
common/Tribe/Abstract_Deactivation.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ abstract class Tribe__Abstract_Deactivation {
4
+ protected $network = FALSE;
5
+
6
+ public function __construct( $network ) {
7
+ $this->network = (bool) $network;
8
+ }
9
+
10
+ /**
11
+ * Tell WordPress to flush rewrite rules.
12
+ * Since our post types are already registered,
13
+ * we delete the option and let WP regenerate it
14
+ * on the next page load.
15
+ */
16
+ protected function flush_rewrite_rules() {
17
+ delete_option( 'rewrite_rules' );
18
+ }
19
+
20
+ /**
21
+ * Deactivate the plugin. This should not remove data.
22
+ * It's job is to remove run-time traces of the plugin.
23
+ *
24
+ * @return void
25
+ */
26
+ public function deactivate() {
27
+ if ( is_multisite() && $this->network ) {
28
+ $this->multisite_deactivate();
29
+ } else {
30
+ $this->blog_deactivate();
31
+ }
32
+ }
33
+
34
+ /**
35
+ * Run the deactivation script on every blog for a multisite install
36
+ *
37
+ * @return void
38
+ */
39
+ protected function multisite_deactivate() {
40
+ /** @var wpdb $wpdb */
41
+ global $wpdb;
42
+ $site = get_current_site();
43
+ $blog_ids = $wpdb->get_col( $wpdb->prepare( "SELECT blog_id FROM {$wpdb->blogs} WHERE site_id=%d", $site->id ) );
44
+ $large = wp_is_large_network();
45
+ foreach ( $blog_ids as $blog ) {
46
+ set_time_limit( 30 );
47
+ switch_to_blog( $blog );
48
+ $large ? $this->short_blog_deactivate() : $this->blog_deactivate();
49
+ restore_current_blog();
50
+ }
51
+ }
52
+
53
+ /**
54
+ * The deactivation routine for a single blog
55
+ *
56
+ * @return void
57
+ */
58
+ abstract protected function blog_deactivate();
59
+
60
+
61
+ /**
62
+ * An abridged version that is less DB intensive for use on large networks.
63
+ *
64
+ * @see wp_is_large_network() and the 'wp_is_large_network' filter
65
+ *
66
+ * @return void
67
+ */
68
+ protected function short_blog_deactivate() {
69
+ $this->blog_deactivate();
70
+ }
71
+ }
common/Tribe/Admin/Helpers.php ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // Don't load directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ die( '-1' );
6
+ }
7
+
8
+ /**
9
+ * Class with a few helpers for the Administration Pages
10
+ */
11
+ class Tribe__Admin__Helpers {
12
+ /**
13
+ * Static Singleton Holder
14
+ * @var Tribe__Admin__Helpers|null
15
+ */
16
+ protected static $instance;
17
+
18
+ /**
19
+ * Static Singleton Factory Method
20
+ *
21
+ * @return Tribe__Admin__Helpers
22
+ */
23
+ public static function instance() {
24
+ if ( ! isset( self::$instance ) ) {
25
+ $className = __CLASS__;
26
+ self::$instance = new $className;
27
+ }
28
+
29
+ return self::$instance;
30
+ }
31
+
32
+ /**
33
+ * Matcher for Admin Pages related to Post Types
34
+ *
35
+ * @param string|array|null $id What will be checked to see if we return true or false
36
+ *
37
+ * @return boolean
38
+ */
39
+ public function is_post_type_screen( $post_type = null ) {
40
+ global $current_screen;
41
+
42
+ // Not in the admin we don't even care
43
+ if ( ! is_admin() ) {
44
+ return false;
45
+ }
46
+
47
+ // Not doing AJAX
48
+ if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
49
+ return false;
50
+ }
51
+
52
+ // Avoid Notices by checking the object type of WP_Screen
53
+ if ( ! ( $current_screen instanceof WP_Screen ) ) {
54
+ return false;
55
+ }
56
+
57
+ $defaults = array(
58
+ Tribe__Events__Main::POSTTYPE,
59
+ Tribe__Events__Main::VENUE_POST_TYPE,
60
+ Tribe__Events__Main::ORGANIZER_POST_TYPE,
61
+ );
62
+
63
+ // Match any Post Type form Tribe
64
+ if ( is_null( $post_type ) && in_array( $current_screen->post_type, $defaults ) ) {
65
+ return true;
66
+ }
67
+
68
+ // Match any of the post_types set
69
+ if ( ! is_scalar( $post_type ) && in_array( $current_screen->post_type, (array) $post_type ) ) {
70
+ return true;
71
+ }
72
+
73
+ // Match a specific Post Type
74
+ if ( $current_screen->post_type === $post_type ) {
75
+ return true;
76
+ }
77
+
78
+ return false;
79
+ }
80
+
81
+ /**
82
+ * Matcher for administration pages that are from Tribe the easier way
83
+ *
84
+ * @param string|array|null $id What will be checked to see if we return true or false
85
+ *
86
+ * @return boolean
87
+ */
88
+ public function is_screen( $id = null ) {
89
+ global $current_screen;
90
+
91
+ // Not in the admin we don't even care
92
+ if ( ! is_admin() ) {
93
+ return false;
94
+ }
95
+
96
+ // Not doing AJAX
97
+ if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
98
+ return false;
99
+ }
100
+
101
+ // Avoid Notices by checking the object type of WP_Screen
102
+ if ( ! ( $current_screen instanceof WP_Screen ) ) {
103
+ return false;
104
+ }
105
+
106
+ // Match any screen from Tribe
107
+ if ( is_null( $id ) && false !== strpos( $current_screen->id, 'tribe' ) ) {
108
+ return true;
109
+ }
110
+
111
+ // Match any of the pages set
112
+ if ( ! is_scalar( $id ) && in_array( $current_screen->id, (array) $id ) ) {
113
+ return true;
114
+ }
115
+
116
+ // Match a specific page
117
+ if ( $current_screen->id === $id ) {
118
+ return true;
119
+ }
120
+
121
+ return false;
122
+ }
123
+
124
+ /**
125
+ * Matcher for administration pages action
126
+ *
127
+ * @param string|array|null $action What will be checked to see if we return true or false
128
+ *
129
+ * @return boolean
130
+ */
131
+ public function is_action( $action = null ) {
132
+ global $current_screen;
133
+
134
+ // Not in the admin we don't even care
135
+ if ( ! is_admin() ) {
136
+ return false;
137
+ }
138
+
139
+ // Not doing AJAX
140
+ if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
141
+ return false;
142
+ }
143
+
144
+ // Avoid Notices by checking the object type of WP_Screen
145
+ if ( ! ( $current_screen instanceof WP_Screen ) ) {
146
+ return false;
147
+ }
148
+
149
+ // Match any of the pages set
150
+ if ( ! is_scalar( $action ) && in_array( $current_screen->action, (array) $action ) ) {
151
+ return true;
152
+ }
153
+
154
+ // Match a specific page
155
+ if ( $current_screen->action === $action ) {
156
+ return true;
157
+ }
158
+
159
+ return false;
160
+ }
161
+ }
common/Tribe/Admin/Notice/Archive_Slug_Conflict.php ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+
4
+ /**
5
+ * Class Tribe__Admin__Notice__Archive_Slug_Conflict
6
+ *
7
+ * Takes care of adding an admin notice if a page with the `/events` slug has been created in the site.
8
+ */
9
+ class Tribe__Admin__Notice__Archive_Slug_Conflict {
10
+
11
+ /**
12
+ * @var static
13
+ */
14
+ protected static $instance;
15
+
16
+ /**
17
+ * @var string The slug of The Events Calendar archive page.
18
+ */
19
+ protected $archive_slug;
20
+
21
+ /**
22
+ * @var WP_Post The page post object.
23
+ */
24
+ protected $page;
25
+
26
+ /**
27
+ * @return Tribe__Admin__Notice__Archive_Slug_Conflict
28
+ */
29
+ public static function instance() {
30
+ if ( empty( self::$instance ) ) {
31
+ self::$instance = new self();
32
+ }
33
+
34
+ return self::$instance;
35
+ }
36
+
37
+ /**
38
+ * Hooks the action to show an admin notice if a page with the `/events` slug exists on the site.
39
+ */
40
+ public function maybe_add_admin_notice() {
41
+ $this->archive_slug = Tribe__Settings_Manager::get_option( 'eventsSlug', 'events' );
42
+ $page = get_page_by_path( $this->archive_slug );
43
+ if ( ! $page || $page->post_status == 'trash' ) {
44
+ return;
45
+ }
46
+ $this->page = $page;
47
+ add_action( 'admin_notices', array( $this, 'notice' ) );
48
+ }
49
+
50
+ /**
51
+ * Echoes the admin notice to the page
52
+ */
53
+ public function notice() {
54
+
55
+ // What's happening?
56
+ $page_title = apply_filters( 'the_title', $this->page->post_title );
57
+ $line_1 = __( sprintf( 'The page "%1$s" uses the "/%2$s" slug: the Events Calendar plugin will show its calendar in place of the page.', $page_title, $this->archive_slug ), 'tribe-common' );
58
+
59
+ // What the user can do
60
+ $page_edit_link = get_edit_post_link( $this->page->ID );
61
+ // $can_edit_page_link = sprintf( __( '<a href="%s">Edit the page slug</a>', 'tribe-common' ), $page_edit_link );
62
+ $can_edit_page_link = sprintf( __( '<a href="%s">Edit the page slug</a>', 'tribe-common' ), $page_edit_link );
63
+ $page_edit_link_string = current_user_can( 'edit_pages' ) ? $can_edit_page_link : __( 'Ask the site administrator to edit the page slug', 'tribe-common' );
64
+
65
+ $settings_cap = apply_filters( 'tribe_settings_req_cap', 'manage_options' );
66
+ $admin_slug = apply_filters( 'tribe_settings_admin_slug', 'tribe-common' );
67
+ $setting_page_link = admin_url( 'edit.php?post_type=' . Tribe__Events__Main::POSTTYPE . '&page=' . $admin_slug . '#tribe-field-singleEventSlug' );
68
+ $can_edit_settings_link = sprintf( __( '<a href="%s">edit The Events Calendar settings</a>.', 'tribe-common' ), $setting_page_link );
69
+ $events_settings_link_string = current_user_can( $settings_cap ) ? $can_edit_settings_link : __( ' ask the site administrator set a different Events URL slug.', 'tribe-common' );
70
+
71
+ $line_2 = __( sprintf( '%1$s or %2$s', $page_edit_link_string, $events_settings_link_string ), 'tribe-common' );
72
+
73
+ echo sprintf( '<div id="message" class="error"><p>%s</p><p>%s</p></div>', $line_1, $line_2 );
74
+ }
75
+ }
common/Tribe/Admin/Timezone_Settings.php ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Manages the admin settings UI in relation to timezones.
4
+ */
5
+ class Tribe__Admin__Timezone_Settings {
6
+ /**
7
+ * Sets up the display of timezone-related settings and listeners to deal with timezone-update
8
+ * requests (which are initiated from within the settings screen).
9
+ */
10
+ public function __construct() {
11
+ $this->listen();
12
+ add_action( 'wp_ajax_tribe_timezone_update', array( $this, 'ajax_updater' ) );
13
+ add_filter( 'tribe_general_settings_tab_fields', array( $this, 'settings_ui' ) );
14
+ }
15
+
16
+ /**
17
+ * Adds timezone settings to the *General* settings tab.
18
+ *
19
+ * When it is determined that timezone data still needs to be generated for one or more
20
+ * events then only the update tool will be exposed in this area, in all other cases this
21
+ * is not exposed and the ordinary timezone settings will be visible.
22
+ *
23
+ * @param array $general_settings
24
+ *
25
+ * @return array
26
+ */
27
+ public function settings_ui( array $general_settings ) {
28
+ $updater = new Tribe__Admin__Timezone_Updater;
29
+
30
+ // Load all timezone settings
31
+ $timezone_settings = $this->get_settings_array();
32
+
33
+ // Remove unneeded options: until timezone data has been updated, users should only see the update
34
+ // button - after that point, they should see the "real" settings but not the update button
35
+ if ( $updater->update_needed() ) {
36
+ unset( $timezone_settings[ 'tribe_events_timezone_mode' ] );
37
+ unset( $timezone_settings[ 'tribe_events_timezones_show_zone' ] );
38
+ } else {
39
+ unset( $timezone_settings[ 'tribe_events_enable_timezones' ] );
40
+ }
41
+
42
+ // Add the new section just before the settings form is closed
43
+ return Tribe__Main::array_insert_before_key(
44
+ 'tribe-form-content-end',
45
+ $general_settings,
46
+ $timezone_settings
47
+ );
48
+ }
49
+
50
+ /**
51
+ * Loads the timezone settings from an admin-view file and returns them as an array.
52
+ *
53
+ * @return array
54
+ */
55
+ protected function get_settings_array() {
56
+ $plugin_path = Tribe__Main::instance()->plugin_path;
57
+ return (array) include $plugin_path . 'common/admin-views/tribe-options-timezones.php';
58
+ }
59
+
60
+ /**
61
+ * Accommodates timezone update requests.
62
+ *
63
+ * Usually, the result is that an initial batch of events will be updated and any
64
+ * remaining events will be dealt with by an "ajax loop" - however in the event
65
+ * of a JS conflict this could actually be called repeatedly (by the user simply
66
+ * clicking the "Update Timezone Data" button until it is cleared.
67
+ */
68
+ protected function listen() {
69
+ // Sanity check
70
+ if ( ! isset( $_GET['_wpnonce'] ) || ! wp_verify_nonce( $_GET['_wpnonce'], 'timezone-settings' ) ) {
71
+ return;
72
+ }
73
+
74
+ // Update request?
75
+ if ( isset( $_GET['timezone-update'] ) ) {
76
+ $updater = new Tribe__Admin__Timezone_Updater;
77
+ $updater->init_update();
78
+ }
79
+ }
80
+
81
+ /**
82
+ * Facilitates updates of timezone data via an ajax loop.
83
+ *
84
+ * This approach helps to avoid potential timeout issues on sites with poor performance
85
+ * or large numbers of events, besides facilitating visual feedback as to progress.
86
+ */
87
+ public function ajax_updater() {
88
+ if ( ! isset( $_POST['check'] ) || ! wp_verify_nonce( $_POST['check'], 'timezone-settings' ) ) {
89
+ return;
90
+ }
91
+
92
+ $updater = new Tribe__Admin__Timezone_Updater;
93
+ $updater->init_update();
94
+
95
+ wp_send_json( array(
96
+ 'html' => $updater->notice_inner(),
97
+ 'continue' => $updater->update_needed(),
98
+ ) );
99
+ }
100
+ }
common/Tribe/Admin/Timezone_Updater.php ADDED
@@ -0,0 +1,227 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Tool for adding timezone data to events.
4
+ *
5
+ * The application for this is in transitioning any event data created in 3.11.x or
6
+ * earlier that hasn't since been updated, so that it becomes "timezone ready".
7
+ */
8
+ class Tribe__Admin__Timezone_Updater {
9
+ /**
10
+ * A count of events in need of updating - used to determine the percentage
11
+ * of the task that has been completed.
12
+ *
13
+ * @var int
14
+ */
15
+ protected $initial_count = 0;
16
+
17
+ /**
18
+ * Initializes the update process.
19
+ *
20
+ * Determines if events are still in need of an update and triggers an update of an
21
+ * initial batch of events if so.
22
+ *
23
+ * Once these are processed, notices are set to communicate the state of the update
24
+ * back to the user (which also serves as a vehicle for continuing the update via
25
+ * an ajax loop).
26
+ */
27
+ public function init_update() {
28
+ if ( $this->update_needed() ) {
29
+ /**
30
+ * Provides an opportunity to change the maximum number of events that will be
31
+ * updated with timezone data in a single batch.
32
+ *
33
+ * @param int number of events to be processed in a single batch
34
+ */
35
+ $batch_size = (int) apply_filters( 'tribe_events_timezone_updater_batch_size', 50 );
36
+ $this->initial_count = $this->count_ids();
37
+ $this->process( $batch_size );
38
+ }
39
+
40
+ $this->notice_setup();
41
+ }
42
+
43
+ /**
44
+ * Setup an admin-notice based progress report along with supporting assets to facilitate
45
+ * an ajax loop for further processing where needed.
46
+ */
47
+ protected function notice_setup() {
48
+ add_action( 'admin_notices', array( $this, 'notice_display' ) );
49
+ add_action( 'admin_enqueue_scripts', array( $this, 'notice_assets' ) );
50
+ }
51
+
52
+ /**
53
+ * Renders the admin notice.
54
+ *
55
+ * This effectively just wraps notice_inner() - which is independently called to build
56
+ * ajax responses.
57
+ */
58
+ public function notice_display() {
59
+ $update = $this->notice_inner();
60
+ echo '<div class="tribe-events-timezone-update-msg updated updating"> ' . $update . ' </div>';
61
+ }
62
+
63
+ /**
64
+ * Provides a progress report relating to the status of the timezone data update process.
65
+ *
66
+ * @return string
67
+ */
68
+ public function notice_inner() {
69
+ $remaining = $this->count_ids();
70
+ $spinner = ' <img src="' . get_admin_url( null, '/images/spinner.gif' ) . '">';
71
+
72
+ $progress = ( 0 < $remaining )
73
+ ? $this->calculate_progress( $remaining )
74
+ : 100;
75
+
76
+ $update = $remaining
77
+ ? __( 'Please wait while timezone data is added to your events.', 'tribe-common' )
78
+ : __( 'Update complete: timezone data has been added to all events in the database.', 'tribe-common' );
79
+
80
+ $update = "<p> $update </p>";
81
+
82
+ if ( 100 === $progress ) {
83
+ $spinner = '';
84
+ }
85
+
86
+ if ( $progress >= 0 ) {
87
+ $percent = sprintf( __( '%d%% complete', 'tribe-common' ), $progress );
88
+ $update .= '<div class="tribe-update-bar"> <div class="progress" title="' . $percent . '"> <div class="bar" style="width: ' . $progress . '%"></div> </div>' . $spinner . '</div>';
89
+ }
90
+
91
+ return $update;
92
+ }
93
+
94
+ /**
95
+ * Sets up the Javascript needed to facilitate the ajax loop on the frontend.
96
+ */
97
+ public function notice_assets() {
98
+ $plugin = Tribe__Main::instance();
99
+ $script = trailingslashit( $plugin->plugin_url ) . 'common/resources/js/events-admin-timezone-updater.js';
100
+ $handle = 'tribe-events-ajax-timezone-update';
101
+
102
+ wp_enqueue_script( $handle, $script, array( 'jquery' ), false, true );
103
+ wp_localize_script( $handle, 'tribe_timezone_update', array(
104
+ 'continue' => $this->update_needed(),
105
+ 'failure_msg' => __( 'A problem stopped the timezone update process from completing. Please refresh and try again.', 'tribe-common' ),
106
+ 'check' => wp_create_nonce( 'timezone-settings' ),
107
+ ) );
108
+ }
109
+
110
+ /**
111
+ * Returns an integer representing the degree to which the update task has progressed
112
+ * as a percentage of events in need of updating.
113
+ *
114
+ * @param int $remaining
115
+ *
116
+ * @return int
117
+ */
118
+ protected function calculate_progress( $remaining ) {
119
+ if ( $this->initial_count ) {
120
+ $percentage = ( $this->initial_count - $remaining ) / $this->initial_count;
121
+ return (int) ( $percentage * 100 );
122
+ }
123
+
124
+ return 0;
125
+ }
126
+
127
+ /**
128
+ * Updates the next batch of non-timezone ready events.
129
+ *
130
+ * @param int $batch_size (defaults to -1 meaning "update all")
131
+ */
132
+ public function process( $batch_size = -1 ) {
133
+ $site_timezone = Tribe__Timezones::wp_timezone_string();
134
+
135
+ foreach ( $this->get_ids( $batch_size ) as $event_id ) {
136
+ $local_start_time = tribe_get_start_date( $event_id, true, Tribe__Date_Utils::DBDATETIMEFORMAT );
137
+ $utc_start_time = Tribe__Timezones::to_utc( $local_start_time, $site_timezone );
138
+
139
+ $local_end_time = tribe_get_end_date( $event_id, true, Tribe__Date_Utils::DBDATETIMEFORMAT );
140
+ $utc_end_time = Tribe__Timezones::to_utc( $local_end_time, $site_timezone );
141
+
142
+ // The abbreviation needs to be calculated per event as it can vary according to the actual date
143
+ $site_timezone_abbr = Tribe__Timezones::wp_timezone_abbr( $local_start_time );
144
+
145
+ update_post_meta( $event_id, '_EventTimezone', $site_timezone );
146
+ update_post_meta( $event_id, '_EventTimezoneAbbr', $site_timezone_abbr );
147
+ update_post_meta( $event_id, '_EventStartDateUTC', $utc_start_time );
148
+ update_post_meta( $event_id, '_EventEndDateUTC', $utc_end_time );
149
+ }
150
+ }
151
+
152
+ /**
153
+ * Return an array of event IDs for those events that still do not have
154
+ * timezone data.
155
+ *
156
+ * @param int $limit
157
+ *
158
+ * @return array
159
+ */
160
+ public function get_ids( $limit = -1 ) {
161
+ return $this->find( $limit );
162
+ }
163
+
164
+ /**
165
+ * Get the number of events that still require timezone data.
166
+ *
167
+ * @return int
168
+ */
169
+ public function count_ids() {
170
+ return $this->find( -1, true );
171
+ }
172
+
173
+ /**
174
+ * Indicates if there are still events that need to be updated
175
+ * with timezone data.
176
+ *
177
+ * @return bool
178
+ */
179
+ public function update_needed() {
180
+ return (bool) $this->find( 1, true );
181
+ }
182
+
183
+ /**
184
+ * Utility function that can return either an array of IDs for all (or the specified
185
+ * number) of events without timezone data, or alternatively can return a count of
186
+ * those events.
187
+ *
188
+ * @param int $limit
189
+ * @param bool|false $count
190
+ *
191
+ * @return array|int
192
+ */
193
+ protected function find( $limit = -1, $count = false ) {
194
+ global $wpdb;
195
+
196
+ // Form the limit clause if needed
197
+ $limit = ( (int) $limit > 0 )
198
+ ? 'LIMIT ' . absint( $limit )
199
+ : '';
200
+
201
+ // Are we making a count or obtaining the actual IDs?
202
+ $requested_data = $count
203
+ ? 'COUNT( DISTINCT( ID ) )'
204
+ : 'DISTINCT( ID )';
205
+
206
+ $query = "
207
+ -- Look for events not returned by the inner query
208
+ SELECT $requested_data
209
+ FROM $wpdb->posts
210
+ WHERE $wpdb->posts.post_type = %s
211
+ AND $wpdb->posts.post_status <> 'auto-draft'
212
+ AND ID NOT IN (
213
+ -- Find those posts that already have timezone meta data
214
+ SELECT DISTINCT ( post_id )
215
+ FROM $wpdb->postmeta
216
+ WHERE meta_key = '_EventTimezone'
217
+ )
218
+ $limit;
219
+ ";
220
+
221
+ $prepared_query = $wpdb->prepare( $query, Tribe__Events__Main::POSTTYPE );
222
+
223
+ return $count
224
+ ? (int) $wpdb->get_var( $prepared_query )
225
+ : (array) $wpdb->get_col( $prepared_query );
226
+ }
227
+ }
common/Tribe/App_Shop.php ADDED
@@ -0,0 +1,198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // don't load directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ die( '-1' );
6
+ }
7
+
8
+ if ( ! class_exists( 'Tribe__App_Shop' ) ) {
9
+ /**
10
+ * Class that handles the integration with our Shop App API
11
+ */
12
+ class Tribe__App_Shop {
13
+
14
+ /**
15
+ * Version of the data model
16
+ */
17
+ const API_VERSION = '1.0';
18
+ /**
19
+ * URL of the API
20
+ */
21
+ const API_ENDPOINT = 'http://tri.be/api/app-shop/';
22
+
23
+ /**
24
+ * Base name for the transients key
25
+ */
26
+ const CACHE_KEY_BASE = 'tribe-app-shop';
27
+ /**
28
+ * Duration of the transients, in seconds.
29
+ */
30
+ const CACHE_EXPIRATION = 300; //5 min
31
+
32
+ /**
33
+ * Slug of the WP admin menu item
34
+ */
35
+ const MENU_SLUG = 'tribe-app-shop';
36
+
37
+ /**
38
+ * Singleton instance
39
+ *
40
+ * @var null or Tribe__App_Shop
41
+ */
42
+ private static $instance = null;
43
+ /**
44
+ * The slug for the new admin page
45
+ *
46
+ * @var string
47
+ */
48
+ private $admin_page = null;
49
+
50
+
51
+ /**
52
+ * Class constructor
53
+ */
54
+ public function __construct() {
55
+ add_action( 'admin_menu', array( $this, 'add_menu_page' ), 100 );
56
+ add_action( 'wp_before_admin_bar_render', array( $this, 'add_toolbar_item' ), 20 );
57
+ }
58
+
59
+ /**
60
+ * Adds the page to the admin menu
61
+ */
62
+ public function add_menu_page() {
63
+ $page_title = __( 'Event Add-Ons', 'tribe-common' );
64
+ $menu_title = __( 'Event Add-Ons', 'tribe-common' );
65
+ $capability = apply_filters( 'tribe_events_addon_page_capability', 'install_plugins' );
66
+
67
+ $where = 'edit.php?post_type=' . Tribe__Events__Main::POSTTYPE;
68
+
69
+ $this->admin_page = add_submenu_page(
70
+ $where, $page_title, $menu_title, $capability, self::MENU_SLUG, array(
71
+ $this,
72
+ 'do_menu_page',
73
+ )
74
+ );
75
+
76
+ add_action( 'admin_print_styles-' . $this->admin_page, array( $this, 'enqueue' ) );
77
+ }
78
+
79
+ /**
80
+ * Adds a link to the shop app to the WP admin bar
81
+ */
82
+ public function add_toolbar_item() {
83
+
84
+ $capability = apply_filters( 'tribe_events_addon_page_capability', 'install_plugins' );
85
+
86
+ // prevent users who cannot install plugins from seeing addons link
87
+ if ( current_user_can( $capability ) ) {
88
+ global $wp_admin_bar;
89
+
90
+ $where = 'edit.php?post_type=' . Tribe__Events__Main::POSTTYPE;
91
+
92
+ $wp_admin_bar->add_menu( array(
93
+ 'id' => 'tribe-events-app-shop',
94
+ 'title' => __( 'Event Add-Ons', 'tribe-common' ),
95
+ 'href' => esc_url( admin_url( untrailingslashit( $where ) . '&page=' . esc_attr( self::MENU_SLUG ) ) ),
96
+ 'parent' => 'tribe-events-settings-group',
97
+ ) );
98
+ }
99
+ }
100
+
101
+ /**
102
+ * Enqueue the styles and script
103
+ */
104
+ public function enqueue() {
105
+ wp_enqueue_style( 'app-shop', tribe_events_resource_url( 'app-shop.css' ), array(), apply_filters( 'tribe_events_css_version', Tribe__Main::VERSION ) );
106
+ wp_enqueue_script( 'app-shop', tribe_events_resource_url( 'app-shop.js' ), array(), apply_filters( 'tribe_events_js_version', Tribe__Main::VERSION ) );
107
+ }
108
+
109
+ /**
110
+ * Renders the Shop App page
111
+ */
112
+ public function do_menu_page() {
113
+ $remote = $this->get_all_products();
114
+
115
+ if ( ! empty( $remote ) ) {
116
+ $products = null;
117
+ if ( property_exists( $remote, 'data' ) ) {
118
+ $products = $remote->data;
119
+ }
120
+ $banner = null;
121
+ if ( property_exists( $remote, 'banner' ) ) {
122
+ $banner = $remote->banner;
123
+ }
124
+
125
+ if ( empty( $products ) ) {
126
+ return;
127
+ }
128
+
129
+ $categories = array_unique( wp_list_pluck( $products, 'category' ) );
130
+
131
+ include_once( Tribe__Events__Main::instance()->pluginPath . 'common/admin-views/app-shop.php' );
132
+ }
133
+
134
+ }
135
+
136
+ /**
137
+ * Get's all products from the API
138
+ *
139
+ * @return array|WP_Error
140
+ */
141
+ private function get_all_products() {
142
+
143
+ $cache_key = self::CACHE_KEY_BASE . '-products';
144
+ $products = get_transient( $cache_key );
145
+
146
+ if ( ! $products ) {
147
+ $products = $this->remote_get( 'get-products' );
148
+ if ( $products && ! $products->error ) {
149
+ set_transient( $cache_key, $products, self::CACHE_EXPIRATION );
150
+ }
151
+ }
152
+
153
+ if ( is_string( $products ) ) {
154
+ $products = json_decode( $products );
155
+ }
156
+
157
+ return $products;
158
+
159
+ }
160
+
161
+ /**
162
+ * Makes the remote call to the API endpoint
163
+ *
164
+ * @param $action
165
+ * @param array|null $args
166
+ *
167
+ * @return array|WP_Error
168
+ */
169
+ private function remote_get( $action, $args = null ) {
170
+
171
+ $url = trailingslashit( self::API_ENDPOINT . self::API_VERSION ) . $action;
172
+
173
+ $ret = wp_remote_get( $url );
174
+
175
+ if ( ! is_wp_error( $ret ) && isset( $ret['body'] ) ) {
176
+ return json_decode( $ret['body'] );
177
+ }
178
+
179
+ return null;
180
+
181
+ }
182
+
183
+ /**
184
+ * Static Singleton Factory Method
185
+ *
186
+ * @return Tribe__App_Shop
187
+ */
188
+ public static function instance() {
189
+ if ( ! isset( self::$instance ) ) {
190
+ $className = __CLASS__;
191
+ self::$instance = new $className;
192
+ }
193
+
194
+ return self::$instance;
195
+ }
196
+
197
+ }
198
+ }
common/Tribe/Asset/Factory.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Tribe__Asset__Factory {
4
+ /**
5
+ * @param string $name
6
+ *
7
+ * @return Tribe__Events__Asset__Abstract_Asset|false Either a new instance of the asset class or false.
8
+ */
9
+ public function make_for_name( $name ) {
10
+ // `jquery-resize` to `Jquery_Resize`
11
+ $class_name = $this->get_asset_class_name( $name );
12
+
13
+ // `Jquery_Resize` to `Tribe__Events__Asset__Jquery_Resize`
14
+ $full_class_name = $this->get_asset_full_class_name( $class_name );
15
+
16
+ return class_exists( $full_class_name ) ? new $full_class_name() : false;
17
+ }
18
+
19
+ protected function get_asset_class_name( $name ) {
20
+ // `jquery-resize` to `Jquery_Resize`
21
+ $class_name = str_replace( ' ', '_', ucwords( str_replace( '-', ' ', $name ) ) );
22
+
23
+ return $class_name;
24
+ }
25
+
26
+ /**
27
+ * @param string $class_name
28
+ *
29
+ * @return string
30
+ */
31
+ private function get_asset_full_class_name( $class_name ) {
32
+ // `Jquery_Resize` to `Tribe__Events__Asset__Jquery_Resize`
33
+ $full_class_name = $this->get_asset_class_name_prefix() . $class_name;
34
+
35
+ return $full_class_name;
36
+ }
37
+
38
+ /**
39
+ * @return string
40
+ */
41
+ protected function get_asset_class_name_prefix() {
42
+ return 'Tribe__Asset__';
43
+ }
44
+
45
+ /**
46
+ * @return Tribe__Asset__Factory
47
+ */
48
+ public static function instance() {
49
+ static $instance;
50
+
51
+ if ( ! $instance ) {
52
+ $instance = new self;
53
+ }
54
+
55
+ return $instance;
56
+ }
57
+ }
common/Tribe/Autoloader.php ADDED
@@ -0,0 +1,246 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! class_exists( 'Tribe__Autoloader' ) ) {
4
+ /**
5
+ * Class Tribe__Autoloader
6
+ *
7
+ * Allows for autoloading of Tribe plugins classes.
8
+ *
9
+ * Example usage:
10
+ *
11
+ * // will be `/var/www/site/wp-content/plugins/the-events-calendar'
12
+ * $this_dir = dirname(__FILE__);
13
+ *
14
+ * // gets hold of the singleton instance of the class
15
+ * $autoloader = Tribe__Autoloader::instance();
16
+ *
17
+ * // register one by one or use `register_prefixes` method
18
+ * $autoloader->register_prefix( 'Tribe__Admin__', $this_dir . '/src/Tribe/admin' );
19
+ * $autoloader->register_prefix( 'Tribe__Admin__', $this_dir . '/src/Tribe/another-dir' );
20
+ * $autoloader->register_prefix( 'Tribe__Utils__', $this_dir . '/src/Tribe/another-dir' );
21
+ *
22
+ * // register a direct class to path
23
+ * $autoloader->register_class( 'Tribe__Some_Class', $this_dir . '/some/path/to/Some_Class.php' );
24
+ *
25
+ * // register a fallback dir to be searched for the class before giving up
26
+ * $autoloader->add_fallback_dir( $this_dir . '/all-the-classes' );
27
+ *
28
+ * // calls `spl_autoload_register`
29
+ * $autoloader->register_autoloader();
30
+ *
31
+ * // class will be searched in the path
32
+ * // `/var/www/site/wp-content/plugins/the-events-calendar/src/Tribe/admin/Some_Class.php'
33
+ * // and
34
+ * // `/var/www/site/wp-content/plugins/the-events-calendar/src/Tribe/another-dir/Some_Class.php'
35
+ * $i = new Tribe__Admin__Some_Class();
36
+ *
37
+ * // class will be searched in the path
38
+ * // `/var/www/site/wp-content/plugins/the-events-calendar/utils/some-dir/Some_Util.php'
39
+ * $i = new Tribe__Utils__Some_Util();
40
+ *
41
+ * // class will be searched in the path
42
+ * // `/var/www/site/wp-content/plugins/the-events-calendar/deprecated/Tribe_DeprecatedClass.php'
43
+ * $i = new Tribe_DeprecatedClass();
44
+ */
45
+ class Tribe__Autoloader {
46
+
47
+ /**
48
+ * @var Tribe__Autoloader
49
+ */
50
+ protected static $instance;
51
+
52
+ /**
53
+ * An arrays of arrays each containing absolute paths.
54
+ *
55
+ * Paths are stored trimming any trailing `/`.
56
+ * E.g. `/var/www/tribe-pro/wp-content/plugins/the-event-calendar/src/Tribe`
57
+ *
58
+ * @var string[][]
59
+ */
60
+ protected $prefixes;
61
+
62
+ /**
63
+ * The string acting as a directory separator in a class name.
64
+ *
65
+ * E.g.: given `__` as `$dir_separator` then `Admin__Metabox__Some_Metabox`
66
+ * will map to `/Admin/Metabox/SomeMetabox.php`.
67
+ *
68
+ * @var string
69
+ */
70
+ protected $dir_separator = '__';
71
+
72
+ /** @var string[] */
73
+ protected $fallback_dirs = array();
74
+
75
+ /**
76
+ * @var array
77
+ */
78
+ protected $class_paths = array();
79
+
80
+ /**
81
+ * Returns the singleton instance of the class.
82
+ *
83
+ * @return Tribe__Autoloader
84
+ */
85
+ public static function instance() {
86
+ if ( ! self::$instance instanceof Tribe__Autoloader ) {
87
+ self::$instance = new self();
88
+ }
89
+
90
+ return self::$instance;
91
+ }
92
+
93
+ /**
94
+ * Registers prefixes and root dirs using an array.
95
+ *
96
+ * Same as calling `register_prefix` on each one.
97
+ *
98
+ * @param array $prefixes_to_root_dirs
99
+ */
100
+ public function register_prefixes( array $prefixes_to_root_dirs ) {
101
+ foreach ( $prefixes_to_root_dirs as $prefix => $root_dir ) {
102
+ $this->register_prefix( $prefix, $root_dir );
103
+ }
104
+ }
105
+
106
+ /**
107
+ * Associates a class prefix to an absolute path.
108
+ *
109
+ * @param string $prefix A class prefix, e.g. `Tribe__Admin__`
110
+ * @param string $root_dir The absolute path to the dir containing
111
+ * the prefixed classes.
112
+ */
113
+ public function register_prefix( $prefix, $root_dir ) {
114
+ $root_dir = $this->normalize_root_dir( $root_dir );
115
+
116
+ if ( ! isset( $this->prefixes[ $prefix ] ) ) {
117
+ $this->prefixes[ $prefix ] = array();
118
+ }
119
+ $this->prefixes[ $prefix ][] = $root_dir;
120
+ }
121
+
122
+ /**
123
+ * Triggers the registration of the autoload method in the SPL
124
+ * autoload register.
125
+ */
126
+ public function register_autoloader() {
127
+ spl_autoload_register( array( $this, 'autoload' ) );
128
+ }
129
+
130
+ /**
131
+ * Includes the file defining a class.
132
+ *
133
+ * This is the function that's registered as an autoloader.
134
+ *
135
+ * @param string $class
136
+ */
137
+ public function autoload( $class ) {
138
+ $include_path = $this->get_class_path( $class );
139
+ if ( ! empty( $include_path ) ) {
140
+ include_once( $include_path );
141
+ }
142
+ }
143
+
144
+ private function normalize_root_dir( $root_dir ) {
145
+ return rtrim( $root_dir, '/' );
146
+ }
147
+
148
+ protected function get_prefixed_path( $class ) {
149
+ foreach ( $this->prefixes as $prefix => $dirs ) {
150
+ if ( strpos( $class, $prefix ) !== 0 ) {
151
+ continue;
152
+ }
153
+ $class_name = str_replace( $prefix, '', $class );
154
+ $class_path_frag = implode( '/', explode( $this->dir_separator, $class_name ) ) . '.php';
155
+ foreach ( $dirs as $dir ) {
156
+ $path = $dir . '/' . $class_path_frag;
157
+ if ( ! file_exists( $path ) ) {
158
+ // check if the file exists in lowercase
159
+ $class_path_frag = strtolower( $class_path_frag );
160
+ $path = $dir . '/' . $class_path_frag;
161
+ }
162
+ if ( ! file_exists( $path ) ) {
163
+ continue;
164
+ }
165
+
166
+ return $path;
167
+ }
168
+ }
169
+ return false;
170
+ }
171
+
172
+ protected function get_fallback_path( $class ) {
173
+ foreach ( $this->fallback_dirs as $fallback_dir ) {
174
+ $include_path = $fallback_dir . '/' . $class . '.php';
175
+ if ( ! file_exists( $include_path ) ) {
176
+ // check if the file exists in lowercase
177
+ $class = strtolower( $class );
178
+ $include_path = $fallback_dir . '/' . $class . '.php';
179
+ }
180
+ if ( ! file_exists( $include_path ) ) {
181
+ continue;
182
+ }
183
+
184
+ return $include_path;
185
+ }
186
+ }
187
+
188
+ /**
189
+ * Gets the absolute path to a class file.
190
+ *
191
+ * @param string $class The class name
192
+ *
193
+ * @return string Either the absolute path to the class file or an
194
+ * empty string if the file was not found.
195
+ */
196
+ public function get_class_path( $class ) {
197
+ $prefixed_path = $this->get_prefixed_path( $class );
198
+ if ( $prefixed_path ) {
199
+ return $prefixed_path;
200
+ }
201
+
202
+ $class_path = ! empty( $this->class_paths[ $class ] ) ? $this->class_paths[ $class ] :false;
203
+ if ( $class_path ) {
204
+ return $class_path;
205
+ }
206
+
207
+ $fallback_path = $this->get_fallback_path( $class );
208
+
209
+ return $fallback_path ? $fallback_path : '';
210
+ }
211
+
212
+ /**
213
+ * Adds a folder to search for classes that were not found among
214
+ * the prefixed ones.
215
+ *
216
+ * This is the method to use to register a directory of deprecated
217
+ * classes.
218
+ *
219
+ * @param string $dir An absolute path dto a dir.
220
+ */
221
+ public function add_fallback_dir( $dir ) {
222
+ if ( in_array( $dir, $this->fallback_dirs ) ) {
223
+ return;
224
+ }
225
+ $this->fallback_dirs[] = $this->normalize_root_dir( $dir );
226
+ }
227
+
228
+ /**
229
+ * @return string
230
+ */
231
+ public function get_dir_separator() {
232
+ return $this->dir_separator;
233
+ }
234
+
235
+ /**
236
+ * @param string $dir_separator
237
+ */
238
+ public function set_dir_separator( $dir_separator ) {
239
+ $this->dir_separator = $dir_separator;
240
+ }
241
+
242
+ public function register_class( $class, $path ) {
243
+ $this->class_paths[ $class ] = $path;
244
+ }
245
+ }
246
+ }
common/Tribe/Cache.php ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Manage setting and expiring cached data
5
+ *
6
+ * Select actions can be used to force cached
7
+ * data to expire. Implemented so far:
8
+ * - save_post
9
+ *
10
+ */
11
+ class Tribe__Cache {
12
+ const NO_EXPIRATION = 0;
13
+ const NON_PERSISTENT = - 1;
14
+
15
+ public static function setup() {
16
+ wp_cache_add_non_persistent_groups( array( 'tribe-events-non-persistent' ) );
17
+ }
18
+
19
+ /**
20
+ * @param string $id
21
+ * @param mixed $value
22
+ * @param int $expiration
23
+ * @param string $expiration_trigger
24
+ *
25
+ * @return bool
26
+ */
27
+ public function set( $id, $value, $expiration = 0, $expiration_trigger = '' ) {
28
+ if ( $expiration == self::NON_PERSISTENT ) {
29
+ $group = 'tribe-events-non-persistent';
30
+ $expiration = 1;
31
+ } else {
32
+ $group = 'tribe-events';
33
+ }
34
+
35
+ return wp_cache_set( $this->get_id( $id, $expiration_trigger ), $value, $group, $expiration );
36
+ }
37
+
38
+ /**
39
+ * @param $id
40
+ * @param $value
41
+ * @param int $expiration
42
+ * @param string $expiration_trigger
43
+ *
44
+ * @return bool
45
+ */
46
+ public function set_transient( $id, $value, $expiration = 0, $expiration_trigger = '' ) {
47
+ return set_transient( $this->get_id( $id, $expiration_trigger ), $value, $expiration );
48
+ }
49
+
50
+ /**
51
+ * @param string $id
52
+ * @param string $expiration_trigger
53
+ *
54
+ * @return mixed
55
+ */
56
+ public function get( $id, $expiration_trigger = '' ) {
57
+ return wp_cache_get( $this->get_id( $id, $expiration_trigger ), 'tribe-events' );
58
+ }
59
+
60
+ /**
61
+ * @param string $id
62
+ * @param string $expiration_trigger
63
+ *
64
+ * @return mixed
65
+ */
66
+ public function get_transient( $id, $expiration_trigger = '' ) {
67
+ return get_transient( $this->get_id( $id, $expiration_trigger ) );
68
+ }
69
+
70
+ /**
71
+ * @param string $id
72
+ * @param string $expiration_trigger
73
+ *
74
+ * @return bool
75
+ */
76
+ public function delete( $id, $expiration_trigger = '' ) {
77
+ return wp_cache_delete( $this->get_id( $id, $expiration_trigger ), 'tribe-events' );
78
+ }
79
+
80
+ /**
81
+ * @param string $id
82
+ * @param string $expiration_trigger
83
+ *
84
+ * @return bool
85
+ */
86
+ public function delete_transient( $id, $expiration_trigger = '' ) {
87
+ return delete_transient( $this->get_id( $id, $expiration_trigger ) );
88
+ }
89
+
90
+ /**
91
+ * @param string $key
92
+ * @param string $expiration_trigger
93
+ *
94
+ * @return string
95
+ */
96
+ public function get_id( $key, $expiration_trigger = '' ) {
97
+ $last = empty( $expiration_trigger ) ? '' : $this->get_last_occurrence( $expiration_trigger );
98
+ $id = $key . $last;
99
+ if ( strlen( $id ) > 40 ) {
100
+ $id = md5( $id );
101
+ }
102
+
103
+ return $id;
104
+ }
105
+
106
+ /**
107
+ * @param string $action
108
+ *
109
+ * @return int
110
+ */
111
+ public function get_last_occurrence( $action ) {
112
+ return (int) get_option( 'tribe_last_' . $action, time() );
113
+ }
114
+
115
+ /**
116
+ * @param string $action
117
+ * @param int $timestamp
118
+ */
119
+ public function set_last_occurrence( $action, $timestamp = 0 ) {
120
+ if ( empty( $timestamp ) ) {
121
+ $timestamp = time();
122
+ }
123
+ update_option( 'tribe_last_' . $action, (int) $timestamp );
124
+ }
125
+ }
126
+
common/Tribe/Cache_Listener.php ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+
4
+ /**
5
+ * Listen for events and update their timestamps
6
+ */
7
+ class Tribe__Cache_Listener {
8
+
9
+ private static $instance = null;
10
+ private $cache = null;
11
+
12
+ /**
13
+ * Class constructor.
14
+ *
15
+ * @return void
16
+ */
17
+ public function __construct() {
18
+ $this->cache = new Tribe__Cache();
19
+ }
20
+
21
+ /**
22
+ * Run the init functionality (like add_hooks).
23
+ *
24
+ * @return void
25
+ */
26
+ public function init() {
27
+ $this->add_hooks();
28
+ }
29
+
30
+ /**
31
+ * Add the hooks necessary.
32
+ *
33
+ * @return void
34
+ */
35
+ private function add_hooks() {
36
+ add_action( 'save_post', array( $this, 'save_post' ), 0, 2 );
37
+ add_action( 'updated_option', array( $this, 'update_last_save_post' ) );
38
+ }
39
+
40
+ /**
41
+ * Run the caching functionality that is executed on save post.
42
+ *
43
+ * @param int $post_id The post_id.
44
+ * @param WP_Post $post The current post object being saved.
45
+ */
46
+ public function save_post( $post_id, $post ) {
47
+ if ( in_array( $post->post_type, Tribe__Events__Main::getPostTypes() ) ) {
48
+ $this->cache->set_last_occurrence( 'save_post' );
49
+ }
50
+ }
51
+
52
+ /**
53
+ * Run the caching functionality that is executed on saving tribe calendar options.
54
+ *
55
+ * @param string $option
56
+ * @see 'updated_option'
57
+ */
58
+ public function update_last_save_post( $option ) {
59
+ if ( $option != 'tribe_last_save_post' ) {
60
+ $this->cache->set_last_occurrence( 'save_post' );
61
+ }
62
+ }
63
+
64
+ /**
65
+ * For any hook that doesn't need any additional filtering
66
+ *
67
+ * @param $method
68
+ * @param $args
69
+ */
70
+ public function __call( $method, $args ) {
71
+ $this->cache->set_last_occurrence( $method );
72
+ }
73
+
74
+ /**
75
+ * Instance method of the cache listener.
76
+ *
77
+ * @return Tribe__Cache_Listener
78
+ */
79
+ public static function instance() {
80
+ if ( empty( self::$instance ) ) {
81
+ self::$instance = self::create_listener();
82
+ }
83
+
84
+ return self::$instance;
85
+ }
86
+
87
+ /**
88
+ * Create a cache listener.
89
+ *
90
+ * @return Tribe__Cache_Listener
91
+ */
92
+ private static function create_listener() {
93
+ $listener = new self();
94
+ $listener->init();
95
+
96
+ return $listener;
97
+ }
98
+ }
common/Tribe/Capabilities.php ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Tribe__Capabilities {
4
+ private $cap_aliases = array(
5
+ 'editor' => array( // full permissions to a post type
6
+ 'read',
7
+ 'read_private_posts',
8
+ 'edit_posts',
9
+ 'edit_others_posts',
10
+ 'edit_private_posts',
11
+ 'edit_published_posts',
12
+ 'delete_posts',
13
+ 'delete_others_posts',
14
+ 'delete_private_posts',
15
+ 'delete_published_posts',
16
+ 'publish_posts',
17
+ ),
18
+ 'author' => array( // full permissions for content the user created
19
+ 'read',
20
+ 'edit_posts',
21
+ 'edit_published_posts',
22
+ 'delete_posts',
23
+ 'delete_published_posts',
24
+ 'publish_posts',
25
+ ),
26
+ 'contributor' => array( // create, but not publish
27
+ 'read',
28
+ 'edit_posts',
29
+ 'delete_posts',
30
+ ),
31
+ 'subscriber' => array( // read only
32
+ 'read',
33
+ ),
34
+ );
35
+
36
+ /**
37
+ * Grant caps for the given post type to the given role
38
+ *
39
+ * @param string $post_type The post type to grant caps for
40
+ * @param string $role_id The role receiving the caps
41
+ * @param string $level The capability level to grant (see the list of caps above)
42
+ *
43
+ * @return bool FALSE if the action failed for some reason, otherwise TRUE
44
+ */
45
+ public function register_post_type_caps( $post_type, $role_id, $level = '' ) {
46
+ if ( empty( $level ) ) {
47
+ $level = $role_id;
48
+ }
49
+ if ( $level == 'administrator' ) {
50
+ $level = 'editor';
51
+ }
52
+ if ( ! isset( $this->cap_aliases[ $level ] ) ) {
53
+ return FALSE;
54
+ }
55
+ $role = get_role( $role_id );
56
+ if ( ! $role ) {
57
+ return FALSE;
58
+ }
59
+ $pto = get_post_type_object( $post_type );
60
+ if ( empty( $pto ) ) {
61
+ return FALSE;
62
+ }
63
+
64
+ foreach ( $this->cap_aliases[ $level ] as $alias ) {
65
+ if ( isset( $pto->cap->$alias ) ) {
66
+ $role->add_cap( $pto->cap->$alias );
67
+ }
68
+ }
69
+ return TRUE;
70
+ }
71
+
72
+ /**
73
+ * Remove all caps for the given post type from the given role
74
+ *
75
+ * @param string $post_type The post type to remove caps for
76
+ * @param string $role_id The role which is losing caps
77
+ *
78
+ * @return bool FALSE if the action failed for some reason, otherwise TRUE
79
+ */
80
+ public function remove_post_type_caps( $post_type, $role_id ) {
81
+ $role = get_role( $role_id );
82
+ if ( ! $role ) {
83
+ return FALSE;
84
+ }
85
+ foreach ( $role->capabilities as $cap => $has ) {
86
+ if ( strpos( $cap, $post_type ) !== FALSE ) {
87
+ $role->remove_cap( $cap );
88
+ }
89
+ }
90
+
91
+ return TRUE;
92
+ }
93
+
94
+ /**
95
+ * Set the initial capabilities for events and related post types on default roles
96
+ *
97
+ * @return void
98
+ */
99
+ public function set_initial_caps() {
100
+ foreach ( array( 'administrator', 'editor', 'author', 'contributor', 'subscriber' ) as $role ) {
101
+ $this->register_post_type_caps( Tribe__Events__Main::POSTTYPE, $role );
102
+ $this->register_post_type_caps( Tribe__Events__Main::ORGANIZER_POST_TYPE, $role );
103
+ $this->register_post_type_caps( Tribe__Events__Main::VENUE_POST_TYPE, $role );
104
+ }
105
+ }
106
+
107
+ /**
108
+ * Remove capabilities for events and related post types from default roles
109
+ *
110
+ * @return void
111
+ */
112
+ public function remove_all_caps() {
113
+ foreach ( array( 'administrator', 'editor', 'author', 'contributor', 'subscriber' ) as $role ) {
114
+ $this->remove_post_type_caps( Tribe__Events__Main::POSTTYPE, $role );
115
+ $this->remove_post_type_caps( Tribe__Events__Main::ORGANIZER_POST_TYPE, $role );
116
+ $this->remove_post_type_caps( Tribe__Events__Main::VENUE_POST_TYPE, $role );
117
+ }
118
+ }
119
+ }
common/Tribe/Changelog_Reader.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Tribe__Changelog_Reader {
4
+ protected $version_count = 3;
5
+ protected $readme_file = '';
6
+
7
+ public function __construct( $version_count = 3, $readme_file = '' ) {
8
+ $this->version_count = (int) $version_count;
9
+ $this->readme_file = empty( $readme_file ) ? $this->default_readme_file() : $readme_file;
10
+ }
11
+
12
+ protected function default_readme_file() {
13
+ return dirname( dirname( __FILE__ ) ) . '/readme.txt';
14
+ }
15
+
16
+ public function get_changelog() {
17
+ $contents = $this->extract_changelog_section();
18
+ $lines = explode( "\n", $contents );
19
+
20
+ $sections = array();
21
+ $current_section = '';
22
+ foreach ( $lines as $line ) {
23
+ $line = trim( $line );
24
+ if ( substr( $line, 0, 1 ) == '=' ) {
25
+ if ( count( $sections ) >= $this->version_count ) {
26
+ break;
27
+ }
28
+ $header = trim( $line, '= ' );
29
+ $current_section = $header;
30
+ $sections[ $current_section ] = array();
31
+ } elseif ( strlen( $line ) > 0 ) {
32
+ $message = trim( $line, '* ' );
33
+ $sections[ $current_section ][] = $message;
34
+ }
35
+ }
36
+ return $sections;
37
+ }
38
+
39
+ protected function extract_changelog_section() {
40
+ $contents = $this->get_readme_file_contents();
41
+ $start = strpos( $contents, '== Changelog ==' );
42
+ if ( $start === FALSE ) {
43
+ return '';
44
+ }
45
+ $start += 16; // account for the length of the header
46
+ $end = strpos( $contents, '==', $start );
47
+ return trim( substr( $contents, $start, $end - $start ) );
48
+ }
49
+
50
+ protected function get_readme_file_contents() {
51
+ return file_get_contents( $this->readme_file );
52
+ }
53
+ }
common/Tribe/Credits.php ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Handles output of The Events Calendar credtis
5
+ */
6
+ class Tribe__Credits {
7
+
8
+ /**
9
+ * @var $instance
10
+ */
11
+ private static $instance = null;
12
+
13
+ public static function init() {
14
+ self::instance()->hook();
15
+ }
16
+
17
+ /**
18
+ * Hook the functionality of this class into the world
19
+ */
20
+ public function hook() {
21
+ add_filter( 'tribe_events_after_html', array( $this, 'html_comment_credit' ) );
22
+ add_filter( 'admin_footer_text', array( $this, 'rating_nudge' ), 1, 2 );
23
+ }
24
+
25
+ /**
26
+ * Add credit in HTML page source
27
+ *
28
+ * @return void
29
+ **/
30
+ public function html_comment_credit( $after_html ) {
31
+ $html_credit = "\n<!--\n" . __( 'This calendar is powered by The Events Calendar.', 'tribe-common' ) . "\nhttp://eventscalendarpro.com/\n-->\n";
32
+ $after_html .= apply_filters( 'tribe_html_credit', $html_credit );
33
+ return $after_html;
34
+ }
35
+
36
+ /**
37
+ * Add ratings nudge in admin footer
38
+ *
39
+ * @param $footer_text
40
+ *
41
+ * @return string
42
+ */
43
+ public function rating_nudge( $footer_text ) {
44
+ $admin_helpers = Tribe__Admin__Helpers::instance();
45
+
46
+ // only display custom text on Tribe Admin Pages
47
+ if ( $admin_helpers->is_screen() || $admin_helpers->is_post_type_screen() ) {
48
+ $footer_text = sprintf( __( 'Rate <strong>The Events Calendar</strong> <a href="%1$s" target="_blank">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href="%1$s" target="_blank">WordPress.org</a> to keep this plugin free. Thanks from the friendly folks at Modern Tribe.', 'tribe-common' ), __( 'http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5', 'tribe-common' ) );
49
+ }
50
+
51
+ return $footer_text;
52
+ }
53
+
54
+ /**
55
+ * @return self
56
+ */
57
+ public static function instance() {
58
+ if ( empty( self::$instance ) ) {
59
+ self::$instance = new self();
60
+ }
61
+
62
+ return self::$instance;
63
+ }
64
+
65
+ }
common/Tribe/Date_Utils.php ADDED
@@ -0,0 +1,726 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Date utility functions used throughout TEC + Addons
4
+ */
5
+
6
+ // Don't load directly
7
+ if ( ! defined( 'ABSPATH' ) ) {
8
+ die( '-1' );
9
+ }
10
+
11
+ if ( ! class_exists( 'Tribe__Date_Utils' ) ) {
12
+ class Tribe__Date_Utils {
13
+ // Default formats, they are overridden by WP options or by arguments to date methods
14
+ const DATEONLYFORMAT = 'F j, Y';
15
+ const TIMEFORMAT = 'g:i A';
16
+ const HOURFORMAT = 'g';
17
+ const MINUTEFORMAT = 'i';
18
+ const MERIDIANFORMAT = 'A';
19
+ const DBDATEFORMAT = 'Y-m-d';
20
+ const DBDATETIMEFORMAT = 'Y-m-d H:i:s';
21
+ const DBTIMEFORMAT = 'H:i:s';
22
+ const DBYEARMONTHTIMEFORMAT = 'Y-m';
23
+
24
+ /**
25
+ * Get the datepicker format, that is used to translate the option from the DB to a string
26
+ *
27
+ * @param int $translate The db Option from datepickerFormat
28
+ * @return string|array If $translate is not set returns the full array, if not returns the `Y-m-d`
29
+ */
30
+ public static function datepicker_formats( $translate = null ) {
31
+ $formats = array(
32
+ 'Y-m-d',
33
+ 'n/j/Y',
34
+ 'm/d/Y',
35
+ 'j/n/Y',
36
+ 'd/m/Y',
37
+ 'n-j-Y',
38
+ 'm-d-Y',
39
+ 'j-n-Y',
40
+ 'd-m-Y',
41
+ );
42
+
43
+ if ( is_null( $translate ) ) {
44
+ return $formats;
45
+ }
46
+
47
+ return isset( $formats[ $translate ] ) ? $formats[ $translate ] : $formats[0];
48
+ }
49
+
50
+ /**
51
+ * As PHP 5.2 doesn't have a good version of `date_parse_from_format`, this is how we deal with
52
+ * possible weird datepicker formats not working
53
+ *
54
+ * @param string $format The weird format you are using
55
+ * @param string $date The date string to parse
56
+ *
57
+ * @return string A DB formated Date, includes time if possible
58
+ */
59
+ public static function datetime_from_format( $format, $date ) {
60
+ // Reverse engineer the relevant date formats
61
+ $keys = array(
62
+ // Year with 4 Digits
63
+ 'Y' => array( 'year', '\d{4}' ),
64
+
65
+ // Year with 2 Digits
66
+ 'y' => array( 'year', '\d{2}' ),
67
+
68
+ // Month with leading 0
69
+ 'm' => array( 'month', '\d{2}' ),
70
+
71
+ // Month without the leading 0
72
+ 'n' => array( 'month', '\d{1,2}' ),
73
+
74
+ // Month ABBR 3 letters
75
+ 'M' => array( 'month', '[A-Z][a-z]{2}' ),
76
+
77
+ // Month Name
78
+ 'F' => array( 'month', '[A-Z][a-z]{2,8}' ),
79
+
80
+ // Day with leading 0
81
+ 'd' => array( 'day', '\d{2}' ),
82
+
83
+ // Day without leading 0
84
+ 'j' => array( 'day', '\d{1,2}' ),
85
+
86
+ // Day ABBR 3 Letters
87
+ 'D' => array( 'day', '[A-Z][a-z]{2}' ),
88
+
89
+ // Day Name
90
+ 'l' => array( 'day', '[A-Z][a-z]{5,8}' ),
91
+
92
+ // Hour 12h formatted, with leading 0
93
+ 'h' => array( 'hour', '\d{2}' ),
94
+
95
+ // Hour 24h formatted, with leading 0
96
+ 'H' => array( 'hour', '\d{2}' ),
97
+
98
+ // Hour 12h formatted, without leading 0
99
+ 'g' => array( 'hour', '\d{1,2}' ),
100
+
101
+ // Hour 24h formatted, without leading 0
102
+ 'G' => array( 'hour', '\d{1,2}' ),
103
+
104
+ // Minutes with leading 0
105
+ 'i' => array( 'minute', '\d{2}' ),
106
+
107
+ // Seconds with leading 0
108
+ 's' => array( 'second', '\d{2}' ),
109
+ );
110
+
111
+ $date_regex = "/{$keys['Y'][1]}-{$keys['m'][1]}-{$keys['d'][1]}( {$keys['H'][1]}:{$keys['i'][1]}:{$keys['s'][1]})?$/";
112
+
113
+ // if the date is already in Y-m-d or Y-m-d H:i:s, just return it
114
+ if ( preg_match( $date_regex, $date ) ) {
115
+ return $date;
116
+ }
117
+
118
+
119
+ // Convert format string to regex
120
+ $regex = '';
121
+ $chars = str_split( $format );
122
+ foreach ( $chars as $n => $char ) {
123
+ $last_char = isset( $chars[ $n - 1 ] ) ? $chars[ $n - 1 ] : '';
124
+ $skip_current = '\\' == $last_char;
125
+ if ( ! $skip_current && isset( $keys[ $char ] ) ) {
126
+ $regex .= '(?P<' . $keys[ $char ][0] . '>' . $keys[ $char ][1] . ')';
127
+ } else if ( '\\' == $char ) {
128
+ $regex .= $char;
129
+ } else {
130
+ $regex .= preg_quote( $char );
131
+ }
132
+ }
133
+
134
+ $dt = array();
135
+
136
+ // Now try to match it
137
+ if ( preg_match( '#^' . $regex . '$#', $date, $dt ) ){
138
+ // Remove unwanted Indexes
139
+ foreach ( $dt as $k => $v ){
140
+ if ( is_int( $k ) ){
141
+ unset( $dt[ $k ] );
142
+ }
143
+ }
144
+
145
+ // We need at least Month + Day + Year to work with
146
+ if ( ! checkdate( $dt['month'], $dt['day'], $dt['year'] ) ){
147
+ return false;
148
+ }
149
+ } else {
150
+ return false;
151
+ }
152
+
153
+ $dt['month'] = str_pad( $dt['month'], 2, '0', STR_PAD_LEFT );
154
+ $dt['day'] = str_pad( $dt['day'], 2, '0', STR_PAD_LEFT );
155
+
156
+ $formatted = '{year}-{month}-{day}' . ( isset( $dt['hour'], $dt['minute'], $dt['second'] ) ? ' {hour}:{minute}:{second}' : '' );
157
+ foreach ( $dt as $key => $value ) {
158
+ $formatted = str_replace( '{' . $key . '}', $value, $formatted );
159
+ }
160
+
161
+ return $formatted;
162
+ }
163
+
164
+ /**
165
+ * Returns the date only.
166
+ *
167
+ * @param int|string $date The date (timestamp or string).
168
+ * @param bool $isTimestamp Is $date in timestamp format?
169
+ * @param string|null $format The format used
170
+ *
171
+ * @return string The date only in DB format.
172
+ */
173
+ public static function date_only( $date, $isTimestamp = false, $format = null ) {
174
+ $date = $isTimestamp ? $date : strtotime( $date );
175
+
176
+ if ( is_null( $format ) ) {
177
+ $format = self::DBDATEFORMAT;
178
+ }
179
+
180
+ return date( $format, $date );
181
+ }
182
+
183
+ /**
184
+ * Returns the date only.
185
+ *
186
+ * @param string $date The date.
187
+ *
188
+ * @return string The time only in DB format.
189
+ */
190
+ public static function time_only( $date ) {
191
+ return date( self::DBTIMEFORMAT, strtotime( $date ) );
192
+ }
193
+
194
+ /**
195
+ * Returns the hour only.
196
+ *
197
+ * @param string $date The date.
198
+ *
199
+ * @return string The hour only.
200
+ */
201
+ public static function hour_only( $date ) {
202
+ return date( self::HOURFORMAT, strtotime( $date ) );
203
+ }
204
+
205
+ /**
206
+ * Returns the minute only.
207
+ *
208
+ * @param string $date The date.
209
+ *
210
+ * @return string The minute only.
211
+ */
212
+ public static function minutes_only( $date ) {
213
+ return date( self::MINUTEFORMAT, strtotime( $date ) );
214
+ }
215
+
216
+ /**
217
+ * Returns the meridian (am or pm) only.
218
+ *
219
+ * @param string $date The date.
220
+ *
221
+ * @return string The meridian only in DB format.
222
+ */
223
+ public static function meridian_only( $date ) {
224
+ return date( self::MERIDIANFORMAT, strtotime( $date ) );
225
+ }
226
+
227
+ /**
228
+ * Returns the number of seconds (absolute value) between two dates/times.
229
+ *
230
+ * @param string $date1 The first date.
231
+ * @param string $date2 The second date.
232
+ *
233
+ * @return int The number of seconds between the dates.
234
+ */
235
+ public static function time_between( $date1, $date2 ) {
236
+ return abs( strtotime( $date1 ) - strtotime( $date2 ) );
237
+ }
238
+
239
+ /**
240
+ * The number of days between two arbitrary dates.
241
+ *
242
+ * @param string $date1 The first date.
243
+ * @param string $date2 The second date.
244
+ *
245
+ * @return int The number of days between two dates.
246
+ */
247
+ public static function date_diff( $date1, $date2 ) {
248
+ // Get number of days between by finding seconds between and dividing by # of seconds in a day
249
+ $days = self::time_between( $date1, $date2 ) / ( 60 * 60 * 24 );
250
+
251
+ return $days;
252
+ }
253
+
254
+ /**
255
+ * Returns the last day of the month given a php date.
256
+ *
257
+ * @param int $timestamp THe timestamp.
258
+ *
259
+ * @return string The last day of the month.
260
+ */
261
+ public static function get_last_day_of_month( $timestamp ) {
262
+ $curmonth = date( 'n', $timestamp );
263
+ $curYear = date( 'Y', $timestamp );
264
+ $nextmonth = mktime( 0, 0, 0, $curmonth + 1, 1, $curYear );
265
+ $lastDay = strtotime( date( Tribe__Events__Pro__Date_Series_Rules__Rules_Interface::DATE_FORMAT, $nextmonth ) . ' - 1 day' );
266
+
267
+ return date( 'j', $lastDay );
268
+ }
269
+
270
+ /**
271
+ * Returns true if the timestamp is a weekday.
272
+ *
273
+ * @param int $curDate A timestamp.
274
+ *
275
+ * @return bool If the timestamp is a weekday.
276
+ */
277
+ public static function is_weekday( $curdate ) {
278
+ return in_array( date( 'N', $curdate ), array( 1, 2, 3, 4, 5 ) );
279
+ }
280
+
281
+ /**
282
+ * Returns true if the timestamp is a weekend.
283
+ *
284
+ * @param int $curDate A timestamp.
285
+ *
286
+ * @return bool If the timestamp is a weekend.
287
+ */
288
+ public static function is_weekend( $curdate ) {
289
+ return in_array( date( 'N', $curdate ), array( 6, 7 ) );
290
+ }
291
+
292
+ /**
293
+ * Gets the last day of the week in a month (ie the last Tuesday). Passing in -1 gives you the last day in the month.
294
+ *
295
+ * @param int $curdate A timestamp.
296
+ * @param int $day_of_week The index of the day of the week.
297
+ *
298
+ * @return int The timestamp of the date that fits the qualifications.
299
+ */
300
+ public static function get_last_day_of_week_in_month( $curdate, $day_of_week ) {
301
+ $nextdate = mktime( date( 'H', $curdate ), date( 'i', $curdate ), date( 's', $curdate ), date( 'n', $curdate ), self::get_last_day_of_month( $curdate ), date( 'Y', $curdate ) );;
302
+
303
+ while ( date( 'N', $nextdate ) != $day_of_week && $day_of_week != - 1 ) {
304
+ $nextdate = strtotime( date( Tribe__Events__Pro__Date_Series_Rules__Rules_Interface::DATE_FORMAT, $nextdate ) . ' - 1 day' );
305
+ }
306
+
307
+ return $nextdate;
308
+ }
309
+
310
+ /**
311
+ * Gets the first day of the week in a month (ie the first Tuesday).
312
+ *
313
+ * @param int $curdate A timestamp.
314
+ * @param int $day_of_week The index of the day of the week.
315
+ *
316
+ * @return int The timestamp of the date that fits the qualifications.
317
+ */
318
+ public static function get_first_day_of_week_in_month( $curdate, $day_of_week ) {
319
+ $nextdate = mktime( 0, 0, 0, date( 'n', $curdate ), 1, date( 'Y', $curdate ) );
320
+
321
+ while ( ! ( $day_of_week > 0 && date( 'N', $nextdate ) == $day_of_week ) &&
322
+ ! ( $day_of_week == - 1 && self::is_weekday( $nextdate ) ) &&
323
+ ! ( $day_of_week == - 2 && self::is_weekend( $nextdate ) ) ) {
324
+ $nextdate = strtotime( date( Tribe__Events__Pro__Date_Series_Rules__Rules_Interface::DATE_FORMAT, $nextdate ) . ' + 1 day' );
325
+ }
326
+
327
+ return $nextdate;
328
+ }
329
+
330
+ /**
331
+ * From http://php.net/manual/en/function.date.php
332
+ *
333
+ * @param int $number A number.
334
+ *
335
+ * @return string The ordinal for that number.
336
+ */
337
+ public static function number_to_ordinal( $number ) {
338
+ $output = $number . ( ( ( strlen( $number ) > 1 ) && ( substr( $number, - 2, 1 ) == '1' ) ) ?
339
+ 'th' : date( 'S', mktime( 0, 0, 0, 0, substr( $number, - 1 ), 0 ) ) );
340
+
341
+ return apply_filters( 'tribe_events_number_to_ordinal', $output, $number );
342
+ }
343
+
344
+ /**
345
+ * check if a given string is a timestamp
346
+ *
347
+ * @param $timestamp
348
+ *
349
+ * @return bool
350
+ */
351
+ public static function is_timestamp( $timestamp ) {
352
+ if ( is_numeric( $timestamp ) && (int) $timestamp == $timestamp && date( 'U', $timestamp ) == $timestamp ) {
353
+ return true;
354
+ }
355
+
356
+ return false;
357
+ }
358
+
359
+ /**
360
+ * Accepts a string representing a date/time and attempts to convert it to
361
+ * the specified format, returning an empty string if this is not possible.
362
+ *
363
+ * @param $dt_string
364
+ * @param $new_format
365
+ *
366
+ * @return string
367
+ */
368
+ public static function reformat( $dt_string, $new_format ) {
369
+ $timestamp = strtotime( $dt_string );
370
+ $revised = date( $new_format, $timestamp );
371
+
372
+ return $revised ? $revised : '';
373
+ }
374
+
375
+ /**
376
+ * Accepts a numeric offset (such as "4" or "-6" as stored in the gmt_offset
377
+ * option) and converts it to a strtotime() style modifier that can be used
378
+ * to adjust a DateTime object, etc.
379
+ *
380
+ * @param $offset
381
+ *
382
+ * @return string
383
+ */
384
+ public static function get_modifier_from_offset( $offset ) {
385
+ $modifier = '';
386
+ $offset = (float) $offset;
387
+
388
+ // Separate out hours, minutes, polarity
389
+ $hours = (int) $offset;
390
+ $minutes = (int) ( ( $offset - $hours ) * 60 );
391
+ $polarity = ( $offset >= 0 ) ? '+' : '-';
392
+
393
+ // Correct hours and minutes to positive values
394
+ if ( $hours < 0 ) $hours *= -1;
395
+ if ( $minutes < 0 ) $minutes *= -1;
396
+
397
+ // Form the modifier string
398
+ if ( $hours >= 0 ) $modifier = "$polarity $hours hours ";
399
+ if ( $minutes > 0 ) $modifier .= "$minutes minutes";
400
+
401
+ return $modifier;
402
+ }
403
+
404
+ /**
405
+ * Returns the weekday of the 1st day of the month in
406
+ * "w" format (ie, Sunday is 0 and Saturday is 6) or
407
+ * false if this cannot be established.
408
+ *
409
+ * @param mixed $month
410
+ * @return int|bool
411
+ */
412
+ public static function first_day_in_month( $month ) {
413
+ try {
414
+ $date = new DateTime( $month );
415
+ $day_1 = new DateTime( $date->format( 'Y-m-01 ' ) );
416
+ return $day_1->format( 'w' );
417
+ }
418
+ catch ( Exception $e ) {
419
+ return false;
420
+ }
421
+ }
422
+
423
+ /**
424
+ * Returns the weekday of the last day of the month in
425
+ * "w" format (ie, Sunday is 0 and Saturday is 6) or
426
+ * false if this cannot be established.
427
+ *
428
+ * @param mixed $month
429
+ * @return int|bool
430
+ */
431
+ public static function last_day_in_month( $month ) {
432
+ try {
433
+ $date = new DateTime( $month );
434
+ $day_1 = new DateTime( $date->format( 'Y-m-t' ) );
435
+ return $day_1->format( 'w' );
436
+ }
437
+ catch ( Exception $e ) {
438
+ return false;
439
+ }
440
+ }
441
+
442
+ /**
443
+ * Returns the day of the week the week ends on, expressed as a "w" value
444
+ * (ie, Sunday is 0 and Saturday is 6).
445
+ *
446
+ * @param int $week_starts_on
447
+ *
448
+ * @return int
449
+ */
450
+ public static function week_ends_on( $week_starts_on ) {
451
+ if ( --$week_starts_on < 0 ) $week_starts_on = 6;
452
+ return $week_starts_on;
453
+ }
454
+
455
+ /**
456
+ * Helper method to convert EventAllDay values to a boolean
457
+ *
458
+ * @param mixed $all_day_value Value to check for "all day" status. All day values: (true, 'true', 'TRUE', 'yes')
459
+ *
460
+ * @return boolean Is value considered "All Day"?
461
+ */
462
+ public static function is_all_day( $all_day_value ) {
463
+ $all_day_value = trim( $all_day_value );
464
+
465
+ return (
466
+ 'true' === strtolower( $all_day_value )
467
+ || 'yes' === strtolower( $all_day_value )
468
+ || true === $all_day_value
469
+ || 1 == $all_day_value
470
+ );
471
+ }
472
+
473
+ /**
474
+ * Given 2 datetime ranges, return whether the 2nd one occurs during the 1st one
475
+ * Note: all params should be unix timestamps
476
+ *
477
+ * @param integer $range_1_start timestamp for start of the first range
478
+ * @param integer $range_1_end timestamp for end of the first range
479
+ * @param integer $range_2_start timestamp for start of the second range
480
+ * @param integer $range_2_end timestamp for end of the second range
481
+ *
482
+ * @return bool
483
+ */
484
+ public static function range_coincides( $range_1_start, $range_1_end, $range_2_start, $range_2_end ) {
485
+
486
+ // Initialize the return value
487
+ $range_coincides = false;
488
+
489
+ /**
490
+ * conditions:
491
+ * range 2 starts during range 1 (range 2 start time is between start and end of range 1 )
492
+ * range 2 ends during range 1 (range 2 end time is between start and end of range 1 )
493
+ * range 2 encloses range 1 (range 2 starts before range 1 and ends after range 1)
494
+ */
495
+
496
+ $range_2_starts_during_range_1 = $range_2_start >= $range_1_start && $range_2_start < $range_1_end;
497
+ $range_2_ends_during_range_1 = $range_2_end > $range_1_start && $range_2_end <= $range_1_end;
498
+ $range_2_encloses_range_1 = $range_2_start < $range_1_start && $range_2_end > $range_1_end;
499
+
500
+ if ( $range_2_starts_during_range_1 || $range_2_ends_during_range_1 || $range_2_encloses_range_1 ) {
501
+ $range_coincides = true;
502
+ }
503
+
504
+ return $range_coincides;
505
+
506
+ }
507
+
508
+ // DEPRECATED METHODS
509
+ // @codingStandardsIgnoreStart
510
+ /**
511
+ * Deprecated camelCase version of self::date_only
512
+ *
513
+ * @param int|string $date The date (timestamp or string).
514
+ * @param bool $isTimestamp Is $date in timestamp format?
515
+ *
516
+ * @return string The date only in DB format.
517
+ */
518
+ public static function dateOnly( $date, $isTimestamp = false ) {
519
+ _deprecated_function( __METHOD__, '3.11', __CLASS__ . '::date_only' );
520
+ return self::date_only( $date, $isTimestamp );
521
+ }
522
+
523
+ /**
524
+ * Deprecated camelCase version of self::time_only
525
+ *
526
+ * @param string $date The date.
527
+ *
528
+ * @return string The time only in DB format.
529
+ */
530
+ public static function timeOnly( $date ) {
531
+ _deprecated_function( __METHOD__, '3.11', __CLASS__ . '::time_only' );
532
+ return self::time_only( $date );
533
+ }
534
+
535
+ /**
536
+ * Deprecated camelCase version of self::hour_only
537
+ *
538
+ * @param string $date The date.
539
+ *
540
+ * @return string The hour only.
541
+ */
542
+ public static function hourOnly( $date ) {
543
+ _deprecated_function( __METHOD__, '3.11', __CLASS__ . '::hour_only' );
544
+ return self::hour_only( $date );
545
+ }
546
+
547
+ /**
548
+ * Deprecated camelCase version of self::minutes_only
549
+ *
550
+ * @param string $date The date.
551
+ *
552
+ * @return string The minute only.
553
+ */
554
+ public static function minutesOnly( $date ) {
555
+ _deprecated_function( __METHOD__, '3.11', __CLASS__ . '::minutes_only' );
556
+ return self::minutes_only( $date );
557
+ }
558
+
559
+ /**
560
+ * Deprecated camelCase version of self::meridian_only
561
+ *
562
+ * @param string $date The date.
563
+ *
564
+ * @return string The meridian only in DB format.
565
+ */
566
+ public static function meridianOnly( $date ) {
567
+ _deprecated_function( __METHOD__, '3.11', __CLASS__ . '::meridian_only' );
568
+ return self::meridian_only( $date );
569
+ }
570
+
571
+ /**
572
+ * Returns the end of a given day.
573
+ *
574
+ * @deprecated since 3.10 - use tribe_event_end_of_day()
575
+ * @todo remove in 4.1
576
+ *
577
+ * @param int|string $date The date (timestamp or string).
578
+ * @param bool $isTimestamp Is $date in timestamp format?
579
+ *
580
+ * @return string The date and time of the end of a given day
581
+ */
582
+ public static function endOfDay( $date, $isTimestamp = false ) {
583
+ _deprecated_function( __METHOD__, '3.10', 'tribe_event_end_of_day' );
584
+
585
+ if ( $isTimestamp ) {
586
+ $date = date( self::DBDATEFORMAT, $date );
587
+ }
588
+
589
+ return tribe_event_end_of_day( $date, self::DBDATETIMEFORMAT );
590
+ }
591
+
592
+ /**
593
+ * Returns the beginning of a given day.
594
+ *
595
+ * @deprecated since 3.10
596
+ * @todo remove in 4.1
597
+ *
598
+ * @param int|string $date The date (timestamp or string).
599
+ * @param bool $isTimestamp Is $date in timestamp format?
600
+ *
601
+ * @return string The date and time of the beginning of a given day.
602
+ */
603
+ public static function beginningOfDay( $date, $isTimestamp = false ) {
604
+ _deprecated_function( __METHOD__, '3.10', 'tribe_event_beginning_of_day' );
605
+
606
+ if ( $isTimestamp ) {
607
+ $date = date( self::DBDATEFORMAT, $date );
608
+ }
609
+
610
+ return tribe_event_beginning_of_day( $date, self::DBDATETIMEFORMAT );
611
+ }
612
+
613
+ /**
614
+ * Deprecated camelCase version of self::time_between
615
+ *
616
+ * @param string $date1 The first date.
617
+ * @param string $date2 The second date.
618
+ *
619
+ * @return int The number of seconds between the dates.
620
+ */
621
+ public static function timeBetween( $date1, $date2 ) {
622
+ _deprecated_function( __METHOD__, '3.11', __CLASS__ . '::time_between' );
623
+ return self::time_between( $date1, $date2 );
624
+ }
625
+
626
+ /**
627
+ * Deprecated camelCase version of self::date_diff
628
+ *
629
+ * @param string $date1 The first date.
630
+ * @param string $date2 The second date.
631
+ *
632
+ * @return int The number of days between two dates.
633
+ */
634
+ public static function dateDiff( $date1, $date2 ) {
635
+ _deprecated_function( __METHOD__, '3.11', __CLASS__ . '::date_diff' );
636
+ return self::date_diff( $date1, $date2 );
637
+ }
638
+
639
+ /**
640
+ * Deprecated camelCase version of self::get_last_day_of_month
641
+ *
642
+ * @param int $timestamp THe timestamp.
643
+ *
644
+ * @return string The last day of the month.
645
+ */
646
+ public static function getLastDayOfMonth( $timestamp ) {
647
+ _deprecated_function( __METHOD__, '3.11', __CLASS__ . '::get_last_day_of_month' );
648
+ return self::get_last_day_of_month( $timestamp );
649
+ }
650
+
651
+ /**
652
+ * Deprecated camelCase version of self::is_weekday
653
+ *
654
+ * @param int $curDate A timestamp.
655
+ *
656
+ * @return bool If the timestamp is a weekday.
657
+ */
658
+ public static function isWeekday( $curdate ) {
659
+ _deprecated_function( __METHOD__, '3.11', __CLASS__ . '::is_weekday' );
660
+ return self::is_weekday( $curdate );
661
+ }
662
+
663
+ /**
664
+ * Deprecated camelCase version of self::is_weekend
665
+ *
666
+ * @param int $curDate A timestamp.
667
+ *
668
+ * @return bool If the timestamp is a weekend.
669
+ */
670
+ public static function isWeekend( $curdate ) {
671
+ _deprecated_function( __METHOD__, '3.11', __CLASS__ . '::is_weekend' );
672
+ return self::is_weekend( $curdate );
673
+ }
674
+
675
+ /**
676
+ * Deprecated camelCase version of self::get_last_day_of_week_in_month
677
+ *
678
+ * @param int $curdate A timestamp.
679
+ * @param int $day_of_week The index of the day of the week.
680
+ *
681
+ * @return int The timestamp of the date that fits the qualifications.
682
+ */
683
+ public static function getLastDayOfWeekInMonth( $curdate, $day_of_week ) {
684
+ _deprecated_function( __METHOD__, '3.11', __CLASS__ . '::get_last_day_of_week_in_month' );
685
+ return self::get_last_day_of_week_in_month( $curdate, $day_of_week );
686
+ }
687
+
688
+ /**
689
+ * Deprecated camelCase version of self::get_first_day_of_week_in_month
690
+ *
691
+ * @param int $curdate A timestamp.
692
+ * @param int $day_of_week The index of the day of the week.
693
+ *
694
+ * @return int The timestamp of the date that fits the qualifications.
695
+ */
696
+ public static function getFirstDayOfWeekInMonth( $curdate, $day_of_week ) {
697
+ _deprecated_function( __METHOD__, '3.11', __CLASS__ . '::get_fist_day_of_week_in_month' );
698
+ return self::get_first_day_of_week_in_month( $curdate, $day_of_week );
699
+ }
700
+
701
+ /**
702
+ * Deprecated camelCase version of self::number_to_ordinal
703
+ *
704
+ * @param int $number A number.
705
+ *
706
+ * @return string The ordinal for that number.
707
+ */
708
+ public static function numberToOrdinal( $number ) {
709
+ _deprecated_function( __METHOD__, '3.11', __CLASS__ . '::number_to_ordinal' );
710
+ return self::number_to_ordinal( $number );
711
+ }
712
+
713
+ /**
714
+ * Deprecated camelCase version of self::is_timestamp
715
+ *
716
+ * @param $timestamp
717
+ *
718
+ * @return bool
719
+ */
720
+ public static function isTimestamp( $timestamp ) {
721
+ _deprecated_function( __METHOD__, '3.11', __CLASS__ . '::is_timestamp' );
722
+ return self::is_timestamp( $timestamp );
723
+ }
724
+ // @codingStandardsIgnoreEnd
725
+ }
726
+ }
common/Tribe/Deactivation.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Tribe__Deactivation extends Tribe__Abstract_Deactivation {
4
+
5
+ /**
6
+ * Set a flag to indicate that the plugin has been deactivated
7
+ * and needs to be reinitialized if it is reactivated
8
+ *
9
+ * @return void
10
+ */
11
+ private function set_flags() {
12
+ require_once( dirname( __FILE__ ) . '/Updater.php' );
13
+ $updater = new Tribe__Events__Updater( Tribe__Main::VERSION );
14
+ $updater->reset();
15
+ }
16
+
17
+ /**
18
+ * Remove event-related capabilities
19
+ *
20
+ * @return void
21
+ */
22
+ private function clear_capabilities() {
23
+ $capabilities = new Tribe__Capabilities();
24
+ $capabilities->remove_all_caps();
25
+ }
26
+
27
+
28
+ /**
29
+ * The deactivation routine for a single blog
30
+ *
31
+ * @return void
32
+ */
33
+ protected function blog_deactivate() {
34
+ $this->set_flags();
35
+ $this->clear_capabilities();
36
+ $this->flush_rewrite_rules();
37
+ }
38
+
39
+ /**
40
+ * An abridged version that is less DB intensive.
41
+ *
42
+ * @see wp_is_large_network() and the 'wp_is_large_network' filter
43
+ *
44
+ * @return void
45
+ */
46
+ protected function short_blog_deactivate() {
47
+ $this->set_flags();
48
+ }
49
+ }
common/Tribe/Debug.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Tribe__Debug {
4
+ /**
5
+ * constructor
6
+ */
7
+ public function __construct() {
8
+ add_action( 'tribe_debug', array( __CLASS__, 'render' ), 10, 2 );
9
+ }
10
+
11
+ /**
12
+ * Tribe debug function. usage: self::debug( 'Message', $data, 'log' );
13
+ *
14
+ * @param string $title Message to display in log
15
+ * @param string|bool $data Optional data to display
16
+ * @param string $format Optional format (log|warning|error|notice)
17
+ *
18
+ * @return void
19
+ */
20
+ public static function debug( $title, $data = false, $format = 'log' ) {
21
+ do_action( 'tribe_debug', $title, $data, $format );
22
+ }
23
+
24
+ /**
25
+ * Render the debug logging to the php error log. This can be over-ridden by removing the filter.
26
+ *
27
+ * @param string $title - message to display in log
28
+ * @param string|bool $data - optional data to display
29
+ * @param string $format - optional format (log|warning|error|notice)
30
+ *
31
+ * @return void
32
+ */
33
+ public static function render( $title, $data = false, $format = 'log' ) {
34
+ $format = ucfirst( $format );
35
+ if ( Tribe__Settings_Manager::instance()->get_option( 'debugEvents' ) ) {
36
+ error_log( Tribe__Main::instance()->pluginName . " $format: $title" );
37
+ if ( $data && $data != '' ) {
38
+ error_log( Tribe__Main::instance()->pluginName . " $format: " . print_r( $data, true ) );
39
+ }
40
+ }
41
+ }
42
+
43
+ /**
44
+ * Static Singleton Factory Method
45
+ *
46
+ * @return Tribe__Debug
47
+ */
48
+ public static function instance() {
49
+ static $instance;
50
+
51
+ if ( ! $instance ) {
52
+ $class_name = __CLASS__;
53
+ $instance = new $class_name;
54
+ }
55
+
56
+ return $instance;
57
+ }
58
+ }
common/Tribe/Field.php ADDED
@@ -0,0 +1,616 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // Don't load directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ die( '-1' );
6
+ }
7
+
8
+ if ( ! class_exists( 'Tribe__Field' ) ) {
9
+ /**
10
+ * helper class that creates fields for use in Settings, MetaBoxes, Users, anywhere.
11
+ * Instantiate it whenever you need a field
12
+ *
13
+ */
14
+ class Tribe__Field {
15
+
16
+ /**
17
+ * the field's id
18
+ * @var string
19
+ */
20
+ public $id;
21
+
22
+ /**
23
+ * the field's name (also known as it's label)
24
+ * @var string
25
+ */
26
+ public $name;
27
+
28
+ /**
29
+ * the field's attributes
30
+ * @var array
31
+ */
32
+ public $attributes;
33
+
34
+ /**
35
+ * the field's arguments
36
+ * @var array
37
+ */
38
+ public $args;
39
+
40
+ /**
41
+ * field defaults (static)
42
+ * @var array
43
+ */
44
+ public $defaults;
45
+
46
+ /**
47
+ * valid field types (static)
48
+ * @var array
49
+ */
50
+ public $valid_field_types;
51
+
52
+
53
+ /**
54
+ * Class constructor
55
+ *
56
+ * @param string $id the field id
57
+ * @param array $field the field settings
58
+ * @param null|mixed $value the field's current value
59
+ *
60
+ * @return void
61
+ */
62
+ public function __construct( $id, $field, $value = null ) {
63
+
64
+ // setup the defaults
65
+ $this->defaults = array(
66
+ 'type' => 'html',
67
+ 'name' => $id,
68
+ 'attributes' => array(),
69
+ 'class' => null,
70
+ 'label' => null,
71
+ 'tooltip' => null,
72
+ 'size' => 'medium',
73
+ 'html' => null,
74
+ 'error' => false,
75
+ 'value' => $value,
76
+ 'options' => null,
77
+ 'conditional' => true,
78
+ 'display_callback' => null,
79
+ 'if_empty' => null,
80
+ 'can_be_empty' => false,
81
+ 'clear_after' => true,
82
+ );
83
+
84
+ // a list of valid field types, to prevent screwy behaviour
85
+ $this->valid_field_types = array(
86
+ 'heading',
87
+ 'html',
88
+ 'text',
89
+ 'textarea',
90
+ 'wysiwyg',
91
+ 'radio',
92
+ 'checkbox_bool',
93
+ 'checkbox_list',
94
+ 'dropdown',
95
+ 'dropdown_chosen',
96
+ 'dropdown_select2',
97
+ 'license_key',
98
+ );
99
+
100
+ $this->valid_field_types = apply_filters( 'tribe_valid_field_types', $this->valid_field_types );
101
+
102
+ // parse args with defaults and extract them
103
+ $args = wp_parse_args( $field, $this->defaults );
104
+
105
+ // sanitize the values just to be safe
106
+ $id = esc_attr( $id );
107
+ $type = esc_attr( $args['type'] );
108
+ $name = esc_attr( $args['name'] );
109
+ $class = sanitize_html_class( $args['class'] );
110
+ $label = wp_kses(
111
+ $args['label'], array(
112
+ 'a' => array( 'href' => array(), 'title' => array() ),
113
+ 'br' => array(),
114
+ 'em' => array(),
115
+ 'strong' => array(),
116
+ 'b' => array(),
117
+ 'i' => array(),
118
+ 'u' => array(),
119
+ 'img' => array(
120
+ 'title' => array(),
121
+ 'src' => array(),
122
+ 'alt' => array()
123
+ )
124
+ )
125
+ );
126
+ $tooltip = wp_kses(
127
+ $args['tooltip'], array(
128
+ 'a' => array( 'href' => array(), 'title' => array(), 'target' => array() ),
129
+ 'br' => array(),
130
+ 'em' => array(),
131
+ 'strong' => array(),
132
+ 'b' => array(),
133
+ 'i' => array(),
134
+ 'u' => array(),
135
+ 'img' => array(
136
+ 'title' => array(),
137
+ 'src' => array(),
138
+ 'alt' => array()
139
+ ),
140
+ 'code' => array( 'span' => array() ),
141
+ 'span' => array()
142
+ )
143
+ );
144
+ $attributes = $args['attributes'];
145
+ if ( is_array( $attributes ) ) {
146
+ foreach ( $attributes as $key => &$val ) {
147
+ $val = esc_attr( $val );
148
+ }
149
+ }
150
+ if ( is_array( $args['options'] ) ) {
151
+ $options = array();
152
+ foreach ( $args['options'] as $key => $val ) {
153
+ $options[ $key ] = $val;
154
+ }
155
+ } else {
156
+ $options = $args['options'];
157
+ }
158
+ $size = esc_attr( $args['size'] );
159
+ $html = $args['html'];
160
+ $error = (bool) $args['error'];
161
+ $value = is_array( $value ) ? array_map( 'esc_attr', $value ) : esc_attr( $value );
162
+ $conditional = $args['conditional'];
163
+ $display_callback = $args['display_callback'];
164
+ $if_empty = is_string( $args['if_empty'] ) ? trim( $args['if_empty'] ) : $args['if_empty'];
165
+ $can_be_empty = (bool) $args['can_be_empty'];
166
+ $clear_after = (bool) $args['clear_after'];
167
+
168
+ // set the ID
169
+ $this->id = apply_filters( 'tribe_field_id', $id );
170
+
171
+ // set each instance variable and filter
172
+ foreach ( $this->defaults as $key => $value ) {
173
+ $this->{$key} = apply_filters( 'tribe_field_' . $key, $$key, $this->id );
174
+ }
175
+
176
+ // epicness
177
+ $this->doField();
178
+
179
+ }
180
+
181
+ /**
182
+ * Determines how to handle this field's creation
183
+ * either calls a callback function or runs this class' course of action
184
+ * logs an error if it fails
185
+ *
186
+ * @return void
187
+ */
188
+ public function doField() {
189
+
190
+ if ( $this->conditional ) {
191
+
192
+ if ( $this->display_callback && is_callable( $this->display_callback ) ) {
193
+
194
+ // if there's a callback, run it
195
+ call_user_func( $this->display_callback );
196
+
197
+ } elseif ( in_array( $this->type, $this->valid_field_types ) ) {
198
+
199
+ // the specified type exists, run the appropriate method
200
+ $field = call_user_func( array( $this, $this->type ) );
201
+
202
+ // filter the output
203
+ $field = apply_filters( 'tribe_field_output_' . $this->type, $field, $this->id, $this );
204
+ echo apply_filters( 'tribe_field_output_' . $this->type . '_' . $this->id, $field, $this->id, $this );
205
+
206
+ } else {
207
+
208
+ // fail, log the error
209
+ Tribe__Main::debug( __( 'Invalid field type specified', 'tribe-common' ), $this->type, 'notice' );
210
+
211
+ }
212
+ }
213
+ }
214
+
215
+ /**
216
+ * returns the field's start
217
+ *
218
+ * @return string the field start
219
+ */
220
+ public function doFieldStart() {
221
+ $return = '<fieldset id="tribe-field-' . $this->id . '"';
222
+ $return .= ' class="tribe-field tribe-field-' . $this->type;
223
+ $return .= ( $this->error ) ? ' tribe-error' : '';
224
+ $return .= ( $this->size ) ? ' tribe-size-' . $this->size : '';
225
+ $return .= ( $this->class ) ? ' ' . $this->class . '"' : '"';
226
+ $return .= '>';
227
+
228
+ return apply_filters( 'tribe_field_start', $return, $this->id, $this->type, $this->error, $this->class, $this );
229
+ }
230
+
231
+ /**
232
+ * returns the field's end
233
+ *
234
+ * @return string the field end
235
+ */
236
+ public function doFieldEnd() {
237
+ $return = '</fieldset>';
238
+ $return .= ( $this->clear_after ) ? '<div class="clear"></div>' : '';
239
+
240
+ return apply_filters( 'tribe_field_end', $return, $this->id, $this );
241
+ }
242
+
243
+ /**
244
+ * returns the field's label
245
+ *
246
+ * @return string the field label
247
+ */
248
+ public function doFieldLabel() {
249
+ $return = '';
250
+ if ( $this->label ) {
251
+ $return = '<legend class="tribe-field-label">' . $this->label . '</legend>';
252
+ }
253
+
254
+ return apply_filters( 'tribe_field_label', $return, $this->label, $this );
255
+ }
256
+
257
+ /**
258
+ * returns the field's div start
259
+ *
260
+ * @return string the field div start
261
+ */
262
+ public function doFieldDivStart() {
263
+ $return = '<div class="tribe-field-wrap">';
264
+
265
+ return apply_filters( 'tribe_field_div_start', $return, $this );
266
+ }
267
+
268
+ /**
269
+ * returns the field's div end
270
+ *
271
+ * @return string the field div end
272
+ */
273
+ public function doFieldDivEnd() {
274
+ $return = $this->doToolTip();
275
+ $return .= '</div>';
276
+
277
+ return apply_filters( 'tribe_field_div_end', $return, $this );
278
+ }
279
+
280
+ /**
281
+ * returns the field's tooltip/description
282
+ *
283
+ * @return string the field tooltip
284
+ */
285
+ public function doToolTip() {
286
+ $return = '';
287
+ if ( $this->tooltip ) {
288
+ $return = '<p class="tooltip description">' . $this->tooltip . '</p>';
289
+ }
290
+
291
+ return apply_filters( 'tribe_field_tooltip', $return, $this->tooltip, $this );
292
+ }
293
+
294
+ /**
295
+ * returns the screen reader label
296
+ *
297
+ * @return string the screen reader label
298
+ */
299
+ public function doScreenReaderLabel() {
300
+ $return = '';
301
+ if ( $this->tooltip ) {
302
+ $return = '<label class="screen-reader-text">' . $this->tooltip . '</label>';
303
+ }
304
+
305
+ return apply_filters( 'tribe_field_screen_reader_label', $return, $this->tooltip, $this );
306
+ }
307
+
308
+ /**
309
+ * returns the field's value
310
+ *
311
+ * @return string the field value
312
+ */
313
+ public function doFieldValue() {
314
+ $return = '';
315
+ if ( $this->value ) {
316
+ $return = ' value="' . $this->value . '"';
317
+ }
318
+
319
+ return apply_filters( 'tribe_field_value', $return, $this->value, $this );
320
+ }
321
+
322
+ /**
323
+ * returns the field's name
324
+ *
325
+ * @param bool $multi
326
+ *
327
+ * @return string the field name
328
+ */
329
+ public function doFieldName( $multi = false ) {
330
+ $return = '';
331
+ if ( $this->name ) {
332
+ if ( $multi ) {
333
+ $return = ' name="' . $this->name . '[]"';
334
+ } else {
335
+ $return = ' name="' . $this->name . '"';
336
+ }
337
+ }
338
+
339
+ return apply_filters( 'tribe_field_name', $return, $this->name, $this );
340
+ }
341
+
342
+ /**
343
+ * Return a string of attributes for the field
344
+ *
345
+ * @return string
346
+ **/
347
+ public function doFieldAttributes() {
348
+ $return = '';
349
+ if ( ! empty( $this->attributes ) ) {
350
+ foreach ( $this->attributes as $key => $value ) {
351
+ $return .= ' ' . $key . '="' . $value . '"';
352
+ }
353
+ }
354
+
355
+ return apply_filters( 'tribe_field_attributes', $return, $this->name, $this );
356
+ }
357
+
358
+ /**
359
+ * generate a heading field
360
+ *
361
+ * @return string the field
362
+ */
363
+ public function heading() {
364
+ $field = '<h3>' . $this->label . '</h3>';
365
+
366
+ return $field;
367
+ }
368
+
369
+ /**
370
+ * generate an html field
371
+ *
372
+ * @return string the field
373
+ */
374
+ public function html() {
375
+ $field = $this->doFieldLabel();
376
+ $field .= $this->html;
377
+
378
+ return $field;
379
+ }
380
+
381
+ /**
382
+ * generate a simple text field
383
+ *
384
+ * @return string the field
385
+ */
386
+ public function text() {
387
+ $field = $this->doFieldStart();
388
+ $field .= $this->doFieldLabel();
389
+ $field .= $this->doFieldDivStart();
390
+ $field .= '<input';
391
+ $field .= ' type="text"';
392
+ $field .= $this->doFieldName();
393
+ $field .= $this->doFieldValue();
394
+ $field .= '/>';
395
+ $field .= $this->doScreenReaderLabel();
396
+ $field .= $this->doFieldDivEnd();
397
+ $field .= $this->doFieldEnd();
398
+
399
+ return $field;
400
+ }
401
+
402
+ /**
403
+ * generate a textarea field
404
+ *
405
+ * @return string the field
406
+ */
407
+ public function textarea() {
408
+ $field = $this->doFieldStart();
409
+ $field .= $this->doFieldLabel();
410
+ $field .= $this->doFieldDivStart();
411
+ $field .= '<textarea';
412
+ $field .= $this->doFieldName();
413
+ $field .= '>';
414
+ $field .= esc_html( stripslashes( $this->value ) );
415
+ $field .= '</textarea>';
416
+ $field .= $this->doScreenReaderLabel();
417
+ $field .= $this->doFieldDivEnd();
418
+ $field .= $this->doFieldEnd();
419
+
420
+ return $field;
421
+ }
422
+
423
+ /**
424
+ * generate a wp_editor field
425
+ *
426
+ * @return string the field
427
+ */
428
+ public function wysiwyg() {
429
+ $settings = array(
430
+ 'teeny' => true,
431
+ 'wpautop' => true,
432
+ );
433
+ ob_start();
434
+ wp_editor( html_entity_decode( ( $this->value ) ), $this->name, $settings );
435
+ $editor = ob_get_clean();
436
+ $field = $this->doFieldStart();
437
+ $field .= $this->doFieldLabel();
438
+ $field .= $this->doFieldDivStart();
439
+ $field .= $editor;
440
+ $field .= $this->doScreenReaderLabel();
441
+ $field .= $this->doFieldDivEnd();
442
+ $field .= $this->doFieldEnd();
443
+
444
+ return $field;
445
+ }
446
+
447
+ /**
448
+ * generate a radio button field
449
+ *
450
+ * @return string the field
451
+ */
452
+ public function radio() {
453
+ $field = $this->doFieldStart();
454
+ $field .= $this->doFieldLabel();
455
+ $field .= $this->doFieldDivStart();
456
+ if ( is_array( $this->options ) ) {
457
+ foreach ( $this->options as $option_id => $title ) {
458
+ $field .= '<label title="' . esc_attr( $title ) . '">';
459
+ $field .= '<input type="radio"';
460
+ $field .= $this->doFieldName();
461
+ $field .= ' value="' . esc_attr( $option_id ) . '" ' . checked( $this->value, $option_id, false ) . '/>';
462
+ $field .= $title;
463
+ $field .= '</label>';
464
+ }
465
+ } else {
466
+ $field .= '<span class="tribe-error">' . __( 'No radio options specified', 'tribe-common' ) . '</span>';
467
+ }
468
+ $field .= $this->doFieldDivEnd();
469
+ $field .= $this->doFieldEnd();
470
+
471
+ return $field;
472
+ }
473
+
474
+ /**
475
+ * generate a checkbox_list field
476
+ *
477
+ * @return string the field
478
+ */
479
+ public function checkbox_list() {
480
+ $field = $this->doFieldStart();
481
+ $field .= $this->doFieldLabel();
482
+ $field .= $this->doFieldDivStart();
483
+
484
+ if ( ! is_array( $this->value ) ) {
485
+ if ( ! empty( $this->value ) ) {
486
+ $this->value = array( $this->value );
487
+ } else {
488
+ $this->value = array();
489
+ }
490
+ }
491
+
492
+ if ( is_array( $this->options ) ) {
493
+ foreach ( $this->options as $option_id => $title ) {
494
+ $field .= '<label title="' . esc_attr( $title ) . '">';
495
+ $field .= '<input type="checkbox"';
496
+ $field .= $this->doFieldName( true );
497
+ $field .= ' value="' . esc_attr( $option_id ) . '" ' . checked( in_array( $option_id, $this->value ), true, false ) . '/>';
498
+ $field .= $title;
499
+ $field .= '</label>';
500
+ }
501
+ } else {
502
+ $field .= '<span class="tribe-error">' . __( 'No checkbox options specified', 'tribe-common' ) . '</span>';
503
+ }
504
+ $field .= $this->doFieldDivEnd();
505
+ $field .= $this->doFieldEnd();
506
+
507
+ return $field;
508
+ }
509
+
510
+ /**
511
+ * generate a boolean checkbox field
512
+ *
513
+ * @return string the field
514
+ */
515
+ public function checkbox_bool() {
516
+ $field = $this->doFieldStart();
517
+ $field .= $this->doFieldLabel();
518
+ $field .= $this->doFieldDivStart();
519
+ $field .= '<input type="checkbox"';
520
+ $field .= $this->doFieldName();
521
+ $field .= ' value="1" ' . checked( $this->value, true, false );
522
+ $field .= $this->doFieldAttributes();
523
+ $field .= '/>';
524
+ $field .= $this->doScreenReaderLabel();
525
+ $field .= $this->doFieldDivEnd();
526
+ $field .= $this->doFieldEnd();
527
+
528
+ return $field;
529
+ }
530
+
531
+ /**
532
+ * generate a dropdown field
533
+ *
534
+ * @return string the field
535
+ */
536
+ public function dropdown() {
537
+ $field = $this->doFieldStart();
538
+ $field .= $this->doFieldLabel();
539
+ $field .= $this->doFieldDivStart();
540
+ if ( is_array( $this->options ) && ! empty( $this->options ) ) {
541
+ $field .= '<select';
542
+ $field .= $this->doFieldName();
543
+ $field .= '>';
544
+ foreach ( $this->options as $option_id => $title ) {
545
+ $field .= '<option value="' . esc_attr( $option_id ) . '"';
546
+ if ( is_array( $this->value ) ) {
547
+ $field .= isset( $this->value[0] ) ? selected( $this->value[0], $option_id, false ) : '';
548
+ } else {
549
+ $field .= selected( $this->value, $option_id, false );
550
+ }
551
+ $field .= '>' . esc_html( $title ) . '</option>';
552
+ }
553
+ $field .= '</select>';
554
+ $field .= $this->doScreenReaderLabel();
555
+ } elseif ( $this->if_empty ) {
556
+ $field .= '<span class="empty-field">' . (string) $this->if_empty . '</span>';
557
+ } else {
558
+ $field .= '<span class="tribe-error">' . __( 'No select options specified', 'tribe-common' ) . '</span>';
559
+ }
560
+ $field .= $this->doFieldDivEnd();
561
+ $field .= $this->doFieldEnd();
562
+
563
+ return $field;
564
+ }
565
+
566
+ /**
567
+ * generate a chosen dropdown field - the same as the
568
+ * regular dropdown but wrapped so it can have the
569
+ * right css class applied to it
570
+ *
571
+ * @return string the field
572
+ */
573
+ public function dropdown_chosen() {
574
+ $field = $this->dropdown();
575
+
576
+ return $field;
577
+ }
578
+
579
+ /**
580
+ * generate a select2 dropdown field - the same as the
581
+ * regular dropdown but wrapped so it can have the
582
+ * right css class applied to it
583
+ *
584
+ * @return string the field
585
+ */
586
+ public function dropdown_select2() {
587
+ $field = $this->dropdown();
588
+
589
+ return $field;
590
+ }
591
+
592
+ /**
593
+ * generate a license key field
594
+ *
595
+ * @return string the field
596
+ */
597
+ public function license_key() {
598
+ $field = $this->doFieldStart();
599
+ $field .= $this->doFieldLabel();
600
+ $field .= $this->doFieldDivStart();
601
+ $field .= '<input';
602
+ $field .= ' type="text"';
603
+ $field .= $this->doFieldName();
604
+ $field .= $this->doFieldValue();
605
+ $field .= '/>';
606
+ $field .= '<p class="license-test-results"><img src="' . esc_url( admin_url( 'images/wpspin_light.gif' ) ) . '" class="ajax-loading-license" alt="Loading" style="display: none"/>';
607
+ $field .= '<span class="key-validity"></span>';
608
+ $field .= $this->doScreenReaderLabel();
609
+ $field .= $this->doFieldDivEnd();
610
+ $field .= $this->doFieldEnd();
611
+
612
+ return $field;
613
+ }
614
+
615
+ } // end class
616
+ } // endif class_exists
common/Tribe/Main.php ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Main Tribe Common class.
4
+ */
5
+
6
+ // Don't load directly
7
+ if ( ! defined( 'ABSPATH' ) ) {
8
+ die( '-1' );
9
+ }
10
+
11
+ if ( class_exists( 'Tribe__Main' ) ) {
12
+ return;
13
+ }
14
+
15
+ class Tribe__Main {
16
+ const EVENTSERROROPT = '_tribe_events_errors';
17
+ const OPTIONNAME = 'tribe_events_calendar_options';
18
+ const OPTIONNAMENETWORK = 'tribe_events_calendar_network_options';
19
+
20
+ const VERSION = '3.12a1';
21
+ const INFO_API_URL = 'http://wpapi.org/api/plugin/the-events-calendar.php';
22
+ const WP_PLUGIN_URL = 'http://wordpress.org/extend/plugins/the-events-calendar/';
23
+
24
+ protected $plugin_context;
25
+ protected $plugin_context_class;
26
+
27
+ public static $tribe_url = 'http://tri.be/';
28
+ public static $tec_url = 'http://theeventscalendar.com/';
29
+
30
+ public $plugin_dir;
31
+ public $plugin_path;
32
+ public $plugin_url;
33
+
34
+ /**
35
+ * constructor
36
+ */
37
+ public function __construct( $context = null ) {
38
+ if ( is_object( $context ) ) {
39
+ $this->plugin_context = $context;
40
+ $this->plugin_context_class = get_class( $context );
41
+ }
42
+
43
+ $this->plugin_path = trailingslashit( dirname( dirname( dirname( __FILE__ ) ) ) );
44
+ $this->plugin_dir = trailingslashit( basename( $this->plugin_path ) );
45
+ $this->plugin_url = plugins_url( $this->plugin_dir );
46
+
47
+ $this->init_libraries();
48
+ }
49
+
50
+ /**
51
+ * Get's the instantiated context of this class. I.e. the object that instantiated this one.
52
+ */
53
+ public function context() {
54
+ return $this->plugin_context;
55
+ }
56
+
57
+ /**
58
+ * Get's the class name of the instantiated plugin context of this class. I.e. the class name of the object that instantiated this one.
59
+ */
60
+ public function context_class() {
61
+ return $this->plugin_context_class;
62
+ }
63
+
64
+ /**
65
+ * initializes all required libraries
66
+ */
67
+ public function init_libraries() {
68
+ Tribe__Debug::instance();
69
+ Tribe__Settings_Manager::instance();
70
+
71
+ require_once $this->plugin_path . 'common/functions/template-tags/general.php';
72
+ require_once $this->plugin_path . 'common/functions/template-tags/date.php';
73
+ require_once $this->plugin_path . 'common/functions/template-tags/day.php';
74
+ }
75
+
76
+ /**
77
+ * Insert an array after a specified key within another array.
78
+ *
79
+ * @param $key
80
+ * @param $source_array
81
+ * @param $insert_array
82
+ *
83
+ * @return array
84
+ *
85
+ */
86
+ public static function array_insert_after_key( $key, $source_array, $insert_array ) {
87
+ if ( array_key_exists( $key, $source_array ) ) {
88
+ $position = array_search( $key, array_keys( $source_array ) ) + 1;
89
+ $source_array = array_slice( $source_array, 0, $position, true ) + $insert_array + array_slice( $source_array, $position, null, true );
90
+ } else {
91
+ // If no key is found, then add it to the end of the array.
92
+ $source_array += $insert_array;
93
+ }
94
+
95
+ return $source_array;
96
+ }
97
+
98
+ /**
99
+ * Insert an array immediately before a specified key within another array.
100
+ *
101
+ * @param $key
102
+ * @param $source_array
103
+ * @param $insert_array
104
+ *
105
+ * @return array
106
+ */
107
+ public static function array_insert_before_key( $key, $source_array, $insert_array ) {
108
+ if ( array_key_exists( $key, $source_array ) ) {
109
+ $position = array_search( $key, array_keys( $source_array ) );
110
+ $source_array = array_slice( $source_array, 0, $position, true ) + $insert_array + array_slice( $source_array, $position, null, true );
111
+ } else {
112
+ // If no key is found, then add it to the end of the array.
113
+ $source_array += $insert_array;
114
+ }
115
+
116
+ return $source_array;
117
+ }
118
+
119
+ /**
120
+ * Static Singleton Factory Method
121
+ *
122
+ * @return Tribe__Main
123
+ */
124
+ public static function instance( $object ) {
125
+ static $instance = array();
126
+
127
+ $object_class = '';
128
+
129
+ if ( is_object( $object ) ) {
130
+ $object_class = get_class( $object );
131
+ } elseif ( is_string( $object ) ) {
132
+ $object_class = $object;
133
+ $object = new $object_class;
134
+ }
135
+
136
+ if ( ! isset( $instance[ $object_class ] ) ) {
137
+ $class_name = __CLASS__;
138
+ $instance = new $class_name;
139
+ }
140
+
141
+ return $instance[ $object_class ];
142
+ }
143
+ }
common/Tribe/Notices.php ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Tribe__Notices {
4
+ /**
5
+ * Notices to be displayed in the admin
6
+ * @var array
7
+ */
8
+ protected $notices = array();
9
+
10
+ /**
11
+ * Define an admin notice
12
+ *
13
+ * @param string $key
14
+ * @param string $notice
15
+ *
16
+ * @return bool
17
+ */
18
+ public static function set_notice( $key, $notice ) {
19
+ self::instance()->notices[ $key ] = $notice;
20
+
21
+ return true;
22
+ }
23
+
24
+ /**
25
+ * Check to see if an admin notice exists
26
+ *
27
+ * @param string $key
28
+ *
29
+ * @return bool
30
+ */
31
+ public static function is_notice( $key ) {
32
+ return ! empty( self::instance()->notices[ $key ] ) ? true : false;
33
+ }
34
+
35
+ /**
36
+ * Remove an admin notice
37
+ *
38
+ * @param string $key
39
+ *
40
+ * @return bool
41
+ */
42
+ public static function remove_notice( $key ) {
43
+ if ( self::isNotice( $key ) ) {
44
+ unset( self::instance()->notices[ $key ] );
45
+
46
+ return true;
47
+ } else {
48
+ return false;
49
+ }
50
+ }
51
+
52
+ /**
53
+ * Get the admin notices
54
+ *
55
+ * @return array
56
+ */
57
+ public static function get() {
58
+ return self::instance()->notices;
59
+ }
60
+
61
+ /**
62
+ * Static Singleton Factory Method
63
+ *
64
+ * @return Tribe__Notices
65
+ */
66
+ public static function instance() {
67
+ static $instance;
68
+
69
+ if ( ! $instance ) {
70
+ $class_name = __CLASS__;
71
+ $instance = new $class_name;
72
+ }
73
+
74
+ return $instance;
75
+ }
76
+ }
common/Tribe/Settings.php ADDED
@@ -0,0 +1,551 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // Don't load directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ die( '-1' );
6
+ }
7
+
8
+ if ( ! class_exists( 'Tribe__Settings' ) ) {
9
+ /**
10
+ * helper class that allows registration of settings
11
+ * this is a static class & uses the singleton design method
12
+ * instantiation takes place in Tribe__Events__Main
13
+ *
14
+ */
15
+ class Tribe__Settings {
16
+
17
+ /**
18
+ * singleton instance var
19
+ * @var stdClass
20
+ */
21
+ public static $instance;
22
+
23
+ /**
24
+ * the tabs that will appear in the settings page
25
+ * filtered on class construct
26
+ * @var array
27
+ */
28
+ public $tabs;
29
+
30
+ /**
31
+ * All the tabs registered, not just the ones that will appear
32
+ * @var array
33
+ */
34
+ public $allTabs;
35
+
36
+ /**
37
+ * multidimentional array of the fields that will be generated
38
+ * for the entire settings panel, tabs are represented in the array keys
39
+ * @var array
40
+ */
41
+ public $fields;
42
+
43
+ /**
44
+ * the default tab for the settings panel
45
+ * this should be a tab ID
46
+ * @var string
47
+ */
48
+ public $defaultTab;
49
+
50
+ /**
51
+ * the current tab being displayed
52
+ * @var string
53
+ */
54
+ public $currentTab;
55
+
56
+ /**
57
+ * tabs that shouldn't show the save button
58
+ * @var array
59
+ */
60
+ public $noSaveTabs;
61
+
62
+ /**
63
+ * the slug used in the admin to generate the settings page
64
+ * @var string
65
+ */
66
+ public $adminSlug;
67
+
68
+ /**
69
+ * the menu name used for the settings page
70
+ * @var string
71
+ */
72
+ public $menuName;
73
+
74
+ /**
75
+ * the required capability for the settings page
76
+ * @var string
77
+ */
78
+ public $requiredCap;
79
+
80
+ /**
81
+ * errors that occur after a save operation
82
+ * @var mixed
83
+ */
84
+ public $errors;
85
+
86
+ /**
87
+ * POST data before/after save
88
+ * @var mixed
89
+ */
90
+ public $sent_data;
91
+
92
+ /**
93
+ * the $current_screen name corresponding to the admin page
94
+ * @var string
95
+ */
96
+ public $admin_page;
97
+
98
+ /**
99
+ * true if a major error that prevents saving occurred
100
+ * @var bool
101
+ */
102
+ public $major_error;
103
+
104
+ /**
105
+ * holds validated fields
106
+ * @var array
107
+ */
108
+ public $validated;
109
+
110
+ /**
111
+ * Static Singleton Factory Method
112
+ *
113
+ * @return Tribe__Settings
114
+ */
115
+ public static function instance() {
116
+ if ( ! isset( self::$instance ) ) {
117
+ $className = __CLASS__;
118
+ self::$instance = new $className;
119
+ }
120
+
121
+ return self::$instance;
122
+ }
123
+
124
+ /**
125
+ * Class constructor
126
+ *
127
+ * @return void
128
+ */
129
+ public function __construct() {
130
+
131
+ // set instance variables
132
+ $this->menuName = apply_filters( 'tribe_settings_menu_name', __( 'The Events Calendar', 'tribe-common' ) );
133
+ $this->requiredCap = apply_filters( 'tribe_settings_req_cap', 'manage_options' );
134
+ $this->adminSlug = apply_filters( 'tribe_settings_admin_slug', 'tribe-common' );
135
+ $this->errors = get_option( 'tribe_settings_errors', array() );
136
+ $this->major_error = get_option( 'tribe_settings_major_error', false );
137
+ $this->sent_data = get_option( 'tribe_settings_sent_data', array() );
138
+ $this->validated = array();
139
+ $this->defaultTab = null;
140
+ $this->currentTab = null;
141
+
142
+ // run actions & filters
143
+ add_action( 'admin_menu', array( $this, 'addPage' ) );
144
+ add_action( 'network_admin_menu', array( $this, 'addNetworkPage' ) );
145
+ add_action( 'admin_init', array( $this, 'initTabs' ) );
146
+ add_action( 'tribe_settings_below_tabs', array( $this, 'displayErrors' ) );
147
+ add_action( 'tribe_settings_below_tabs', array( $this, 'displaySuccess' ) );
148
+ add_action( 'shutdown', array( $this, 'deleteOptions' ) );
149
+ }
150
+
151
+ /**
152
+ * create the main option page
153
+ *
154
+ * @return void
155
+ */
156
+ public function addPage() {
157
+ if ( ! is_multisite() || ( is_multisite() && '0' == Tribe__Settings_Manager::get_network_option( 'allSettingsTabsHidden', '0' ) ) ) {
158
+ $this->admin_page = add_submenu_page(
159
+ 'edit.php?post_type=' . Tribe__Events__Main::POSTTYPE,
160
+ __( 'The Events Calendar Settings', 'tribe-common' ),
161
+ __( 'Settings', 'tribe-common' ),
162
+ $this->requiredCap,
163
+ $this->adminSlug,
164
+ array( $this, 'generatePage' )
165
+ );
166
+ }
167
+ }
168
+
169
+ /**
170
+ * create the network options page
171
+ *
172
+ * @return void
173
+ */
174
+ public function addNetworkPage() {
175
+ $this->admin_page = add_submenu_page(
176
+ 'settings.php', __( 'The Events Calendar Settings', 'tribe-common' ), __( 'Events Settings', 'tribe-common' ), $this->requiredCap, $this->adminSlug, array(
177
+ $this,
178
+ 'generatePage',
179
+ )
180
+ );
181
+ }
182
+
183
+ /**
184
+ * init all the tabs
185
+ *
186
+ * @return void
187
+ */
188
+ public function initTabs() {
189
+ if ( isset( $_GET['page'] ) && $_GET['page'] == $this->adminSlug ) {
190
+ do_action( 'tribe_settings_do_tabs' ); // this is the hook to use to add new tabs
191
+ $this->tabs = (array) apply_filters( 'tribe_settings_tabs', array() );
192
+ $this->allTabs = (array) apply_filters( 'tribe_settings_all_tabs', array() );
193
+ $this->noSaveTabs = (array) apply_filters( 'tribe_settings_no_save_tabs', array() );
194
+ if ( is_network_admin() ) {
195
+ $this->defaultTab = apply_filters( 'tribe_settings_default_tab_network', 'network' );
196
+ $this->currentTab = apply_filters( 'tribe_settings_current_tab', ( isset( $_GET['tab'] ) && $_GET['tab'] ) ? esc_attr( $_GET['tab'] ) : $this->defaultTab );
197
+ $this->url = apply_filters(
198
+ 'tribe_settings_url', add_query_arg(
199
+ array(
200
+ 'page' => $this->adminSlug,
201
+ 'tab' => $this->currentTab,
202
+ ), network_admin_url( 'settings.php' )
203
+ )
204
+ );
205
+ }
206
+ if ( ! is_network_admin() ) {
207
+ $tabs_keys = array_keys( $this->tabs );
208
+ $this->defaultTab = in_array( apply_filters( 'tribe_settings_default_tab', 'general' ), $tabs_keys ) ? apply_filters( 'tribe_settings_default_tab', 'general' ) : $tabs_keys[0];
209
+ $this->currentTab = apply_filters( 'tribe_settings_current_tab', ( isset( $_GET['tab'] ) && $_GET['tab'] ) ? esc_attr( $_GET['tab'] ) : $this->defaultTab );
210
+ $this->url = apply_filters(
211
+ 'tribe_settings_url', add_query_arg(
212
+ array(
213
+ 'page' => $this->adminSlug,
214
+ 'tab' => $this->currentTab,
215
+ ), add_query_arg( array( 'post_type' => Tribe__Events__Main::POSTTYPE ), admin_url( 'edit.php' ) )
216
+ )
217
+ );
218
+ }
219
+ $this->fields_for_save = (array) apply_filters( 'tribe_settings_fields', array() );
220
+ do_action( 'tribe_settings_after_do_tabs' );
221
+ $this->fields = (array) apply_filters( 'tribe_settings_fields', array() );
222
+ $this->validate();
223
+ }
224
+ }
225
+
226
+
227
+ /**
228
+ * generate the main option page
229
+ * includes the view file
230
+ *
231
+ * @return void
232
+ */
233
+ public function generatePage() {
234
+ $tec = Tribe__Events__Main::instance();
235
+ do_action( 'tribe_settings_top' );
236
+ echo '<div class="tribe_settings wrap">';
237
+ screen_icon();
238
+ echo '<h2>';
239
+ printf( __( '%s Settings', 'tribe-common' ), $this->menuName );
240
+ echo '</h2>';
241
+ do_action( 'tribe_settings_above_tabs' );
242
+ $this->generateTabs( $this->currentTab );
243
+ do_action( 'tribe_settings_below_tabs' );
244
+ do_action( 'tribe_settings_below_tabs_tab_' . $this->currentTab );
245
+ echo '<div class="tribe-settings-form form">';
246
+ do_action( 'tribe_settings_above_form_element' );
247
+ do_action( 'tribe_settings_above_form_element_tab_' . $this->currentTab );
248
+ echo apply_filters( 'tribe_settings_form_element_tab_' . $this->currentTab, '<form method="post">' );
249
+ do_action( 'tribe_settings_before_content' );
250
+ do_action( 'tribe_settings_before_content_tab_' . $this->currentTab );
251
+ do_action( 'tribe_settings_content_tab_' . $this->currentTab );
252
+ if ( ! has_action( 'tribe_settings_content_tab_' . $this->currentTab ) ) {
253
+ echo '<p>' . esc_html__( "You've requested a non-existent tab.", 'tribe-common' ) . '</p>';
254
+ }
255
+ do_action( 'tribe_settings_after_content_tab_' . $this->currentTab );
256
+ do_action( 'tribe_settings_after_content' );
257
+ if ( has_action( 'tribe_settings_content_tab_' . $this->currentTab ) && ! in_array( $this->currentTab, $this->noSaveTabs ) ) {
258
+ wp_nonce_field( 'saving', 'tribe-save-settings' );
259
+ echo '<div class="clear"></div>';
260
+ echo '<input type="hidden" name="current-settings-tab" id="current-settings-tab" value="' . esc_attr( $this->currentTab ) . '" />';
261
+ echo '<input id="tribeSaveSettings" class="button-primary" type="submit" name="tribeSaveSettings" value="' . esc_attr__( 'Save Changes', 'tribe-common' ) . '" />';
262
+ }
263
+ echo apply_filters( 'tribe_settings_closing_form_element', '</form>' );
264
+ do_action( 'tribe_settings_after_form_element' );
265
+ do_action( 'tribe_settings_after_form_element_tab_' . $this->currentTab );
266
+ echo '</div>';
267
+ do_action( 'tribe_settings_after_form_div' );
268
+ echo '</div>';
269
+ do_action( 'tribe_settings_bottom' );
270
+ }
271
+
272
+ /**
273
+ * generate the tabs in the settings screen
274
+ *
275
+ * @return void
276
+ */
277
+ public function generateTabs() {
278
+ if ( is_array( $this->tabs ) && ! empty( $this->tabs ) ) {
279
+ echo '<h2 id="tribe-settings-tabs" class="nav-tab-wrapper">';
280
+ foreach ( $this->tabs as $tab => $name ) {
281
+ if ( ! is_network_admin() ) {
282
+ $url = '?post_type=' . Tribe__Events__Main::POSTTYPE . '&page=' . $this->adminSlug . '&tab=' . urlencode( $tab );
283
+ }
284
+ if ( is_network_admin() ) {
285
+ $url = '?page=' . $this->adminSlug . '&tab=' . urlencode( $tab );
286
+ }
287
+ $class = ( $tab == $this->currentTab ) ? ' nav-tab-active' : '';
288
+ echo '<a id="' . esc_attr( $tab ) . '" class="nav-tab' . esc_attr( $class ) . '" href="' . esc_url( $url ) . '">' . esc_html( $name ) . '</a>';
289
+ }
290
+ do_action( 'tribe_settings_after_tabs' );
291
+ echo '</h2>';
292
+ }
293
+ }
294
+
295
+
296
+ /**
297
+ * validate the settings
298
+ *
299
+ * @return void
300
+ */
301
+ public function validate() {
302
+
303
+ do_action( 'tribe_settings_validate_before_checks' );
304
+
305
+ // check that the right POST && variables are set
306
+ if ( isset( $_POST['tribeSaveSettings'] ) && isset( $_POST['current-settings-tab'] ) ) {
307
+ // check permissions
308
+ if ( ! current_user_can( 'manage_options' ) ) {
309
+ $this->errors[] = __( "You don't have permission to do that.", 'tribe-common' );
310
+ $this->major_error = true;
311
+ }
312
+
313
+ // check the nonce
314
+ if ( ! wp_verify_nonce( $_POST['tribe-save-settings'], 'saving' ) ) {
315
+ $this->errors[] = __( 'The request was sent insecurely.', 'tribe-common' );
316
+ $this->major_error = true;
317
+ }
318
+
319
+ // check that the request originated from the current tab
320
+ if ( $_POST['current-settings-tab'] != $this->currentTab ) {
321
+ $this->errors[] = __( "The request wasn't sent from this tab.", 'tribe-common' );
322
+ $this->major_error = true;
323
+ }
324
+
325
+ // bail if we have errors
326
+ if ( count( $this->errors ) ) {
327
+ remove_action( 'shutdown', array( $this, 'deleteOptions' ) );
328
+ add_option( 'tribe_settings_errors', $this->errors );
329
+ add_option( 'tribe_settings_major_error', $this->major_error );
330
+ wp_redirect( $this->url );
331
+ exit;
332
+ }
333
+
334
+ // some hooks
335
+ do_action( 'tribe_settings_validate' );
336
+ do_action( 'tribe_settings_validate_tab_' . $this->currentTab );
337
+
338
+ // set the current tab and current fields
339
+ $tab = $this->currentTab;
340
+ $fields = $this->fields_for_save[ $tab ];
341
+
342
+ if ( is_array( $fields ) ) {
343
+ // loop through the fields and validate them
344
+ foreach ( $fields as $field_id => $field ) {
345
+ // get the value
346
+ $value = ( isset( $_POST[ $field_id ] ) ) ? $_POST[ $field_id ] : null;
347
+ $value = apply_filters( 'tribe_settings_validate_field_value', $value, $field_id, $field );
348
+
349
+ // make sure it has validation set up for it, else do nothing
350
+ if ( ( ! isset( $field['conditional'] ) || $field['conditional'] ) && ( ! empty( $field['validation_type'] ) || ! empty( $field['validation_callback'] ) ) ) {
351
+ // some hooks
352
+ do_action( 'tribe_settings_validate_field', $field_id, $value, $field );
353
+ do_action( 'tribe_settings_validate_field_' . $field_id, $value, $field );
354
+
355
+ // validate this sucka
356
+ $validate = new Tribe__Validate( $field_id, $field, $value );
357
+
358
+ if ( isset( $validate->result->error ) ) {
359
+ // uh oh; validation failed
360
+ $this->errors[ $field_id ] = $validate->result->error;
361
+ } elseif ( $validate->result->valid ) {
362
+ // validation passed
363
+ $this->validated[ $field_id ] = new stdClass;
364
+ $this->validated[ $field_id ]->field = $validate->field;
365
+ $this->validated[ $field_id ]->value = $validate->value;
366
+ }
367
+ }
368
+ }
369
+
370
+ // run the saving method
371
+ $this->save();
372
+ }
373
+ }
374
+
375
+ }
376
+
377
+ /**
378
+ * save the settings
379
+ *
380
+ * @return void
381
+ */
382
+ public function save() {
383
+
384
+ // some hooks
385
+ do_action( 'tribe_settings_save' );
386
+ do_action( 'tribe_settings_save_tab_' . $this->currentTab );
387
+
388
+ // we'll need this later
389
+ $parent_options = array();
390
+
391
+ /**
392
+ * loop through each validated option and either
393
+ * save it as is or figure out its parent option ID
394
+ * (in that case, it's a serialized option array and
395
+ * will be saved in the next loop)
396
+ */
397
+ if ( ! empty( $this->validated ) ) {
398
+ foreach ( $this->validated as $field_id => $validated_field ) {
399
+ // get the value and filter it
400
+ $value = $validated_field->value;
401
+ $value = apply_filters( 'tribe_settings_save_field_value', $value, $field_id, $validated_field );
402
+
403
+ // figure out the parent option [could be set to false] and filter it
404
+ if ( is_network_admin() ) {
405
+ $parent_option = ( isset( $validated_field->field['parent_option'] ) ) ? $validated_field->field['parent_option'] : Tribe__Main::OPTIONNAMENETWORK;
406
+ }
407
+ if ( ! is_network_admin() ) {
408
+ $parent_option = ( isset( $validated_field->field['parent_option'] ) ) ? $validated_field->field['parent_option'] : Tribe__Main::OPTIONNAME;
409
+ }
410
+
411
+ $parent_option = apply_filters( 'tribe_settings_save_field_parent_option', $parent_option, $field_id );
412
+ $network_option = isset( $validated_field->field['network_option'] ) ? (bool) $validated_field->field['network_option'] : false;
413
+
414
+ // some hooks
415
+ do_action( 'tribe_settings_save_field', $field_id, $value, $validated_field );
416
+ do_action( 'tribe_settings_save_field_' . $field_id, $value, $validated_field );
417
+
418
+ if ( ! $parent_option ) {
419
+ if ( $network_option || is_network_admin() ) {
420
+ update_site_option( $field_id, $value );
421
+ } else {
422
+ update_option( $field_id, $value );
423
+ }
424
+ } else {
425
+ // set the parent option
426
+ $parent_options[ $parent_option ][ $field_id ] = $value;
427
+ }
428
+ }
429
+ }
430
+
431
+ /**
432
+ * loop through parent option arrays
433
+ * and save them
434
+ * NOTE: in the case of the main option Tribe Options,
435
+ * this will save using the Tribe__Events__Main:setOptions method.
436
+ */
437
+ foreach ( $parent_options as $option_id => $new_options ) {
438
+ // get the old options
439
+ if ( $option_id == Tribe__Main::OPTIONNAME ) {
440
+ $old_options = (array) get_option( $option_id );
441
+ } else {
442
+ $old_options = (array) get_site_option( $option_id );
443
+ }
444
+
445
+ // set the options by parsing old + new and filter that
446
+ $options = apply_filters( 'tribe_settings_save_option_array', wp_parse_args( $new_options, $old_options ), $option_id );
447
+
448
+ if ( $option_id == Tribe__Main::OPTIONNAME ) {
449
+ // save using the Tribe__Events__Main method
450
+ Tribe__Settings_Manager::set_options( $options );
451
+ } elseif ( $option_id == Tribe__Main::OPTIONNAMENETWORK ) {
452
+ Tribe__Settings_Manager::set_network_options( $options );
453
+ } else {
454
+ // save using regular WP method
455
+ if ( is_network_admin() ) {
456
+ update_site_option( $option_id, $options );
457
+ } else {
458
+ update_option( $option_id, $options );
459
+ }
460
+ }
461
+ }
462
+
463
+ do_action( 'tribe_settings_after_save' );
464
+ do_action( 'tribe_settings_after_save_' . $this->currentTab );
465
+ remove_action( 'shutdown', array( $this, 'deleteOptions' ) );
466
+ add_option( 'tribe_settings_sent_data', $_POST );
467
+ add_option( 'tribe_settings_errors', $this->errors );
468
+ add_option( 'tribe_settings_major_error', $this->major_error );
469
+ wp_redirect( esc_url_raw( add_query_arg( array( 'saved' => true ), $this->url ) ) );
470
+ exit;
471
+
472
+ }
473
+
474
+ /**
475
+ * display errors, if any, after saving
476
+ *
477
+ * @return void
478
+ */
479
+ public function displayErrors() {
480
+
481
+ // fetch the errors and filter them
482
+ $errors = (array) apply_filters( 'tribe_settings_display_errors', $this->errors );
483
+ $count = apply_filters( 'tribe_settings_count_errors', count( $errors ) );
484
+
485
+ if ( apply_filters( 'tribe_settings_display_errors_or_not', ( $count > 0 ) ) ) {
486
+ // output a message if we have errors
487
+
488
+ $output = '<div id="message" class="error"><p><strong>';
489
+ $output .= __( 'Your form had the following errors:', 'tribe-common' );
490
+ $output .= '</strong></p><ul class="tribe-errors-list">';
491
+
492
+ // loop through each error
493
+ foreach ( $errors as $error ) {
494
+ $output .= '<li>' . (string) $error . '</li>';
495
+ }
496
+
497
+ if ( count( $errors ) ) {
498
+ $message = ( isset( $this->major_error ) && $this->major_error ) ? __( 'None of your settings were saved. Please try again.' ) : _n( 'The above setting was not saved. Other settings were successfully saved.', 'The above settings were not saved. Other settings were successfully saved.', $count, 'tribe-common' );
499
+ }
500
+
501
+ $output .= '</ul><p>' . $message . '</p></div>';
502
+
503
+ // final output, filtered of course
504
+ echo apply_filters( 'tribe_settings_error_message', $output );
505
+ }
506
+ }
507
+
508
+ /**
509
+ * display success message after saving
510
+ *
511
+ * @return void
512
+ */
513
+ public function displaySuccess() {
514
+ $errors = (array) apply_filters( 'tribe_settings_display_errors', $this->errors );
515
+ $count = apply_filters( 'tribe_settings_count_errors', count( $errors ) );
516
+
517
+ // are we coming from the saving place?
518
+ if ( isset( $_GET['saved'] ) && ! apply_filters( 'tribe_settings_display_errors_or_not', ( $count > 0 ) ) ) {
519
+ // output the filtered message
520
+ $message = __( 'Settings saved.', 'tribe-common' );
521
+ $output = '<div id="message" class="updated"><p><strong>' . $message . '</strong></p></div>';
522
+ echo apply_filters( 'tribe_settings_success_message', $output, $this->currentTab );
523
+ }
524
+ }
525
+
526
+ /**
527
+ * delete temporary options
528
+ *
529
+ * @return void
530
+ */
531
+ public function deleteOptions() {
532
+ delete_option( 'tribe_settings_errors' );
533
+ delete_option( 'tribe_settings_major_error' );
534
+ delete_option( 'tribe_settings_sent_data' );
535
+ }
536
+
537
+ /**
538
+ * Returns the main admin settings URL.
539
+ *
540
+ * @return string
541
+ */
542
+ public function get_url() {
543
+ return apply_filters( 'tribe_settings_url', add_query_arg( array(
544
+ 'post_type' => Tribe__Events__Main::POSTTYPE,
545
+ 'page' => $this->adminSlug,
546
+ ), admin_url( 'edit.php' )
547
+ ) );
548
+ }
549
+
550
+ } // end class
551
+ } // endif class_exists
common/Tribe/Settings_Manager.php ADDED
@@ -0,0 +1,348 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Tribe__Settings_Manager {
4
+ protected static $network_options;
5
+ public static $tribe_events_mu_defaults;
6
+
7
+ /**
8
+ * constructor
9
+ */
10
+ public function __construct() {
11
+ $this->add_hooks();
12
+
13
+ // Load multisite defaults
14
+ if ( is_multisite() ) {
15
+ $tribe_events_mu_defaults = array();
16
+ if ( file_exists( WP_CONTENT_DIR . '/tribe-events-mu-defaults.php' ) ) {
17
+ require_once WP_CONTENT_DIR . '/tribe-events-mu-defaults.php';
18
+ }
19
+ self::$tribe_events_mu_defaults = apply_filters( 'tribe_events_mu_defaults', $tribe_events_mu_defaults );
20
+ }
21
+ }
22
+
23
+ public function add_hooks() {
24
+ // option pages
25
+ add_action( '_network_admin_menu', array( $this, 'init_options' ) );
26
+ add_action( '_admin_menu', array( $this, 'init_options' ) );
27
+
28
+ add_action( 'admin_menu', array( $this, 'add_help_admin_menu_item' ), 50 );
29
+ add_action( 'tribe_settings_do_tabs', array( $this, 'do_setting_tabs' ) );
30
+ add_action( 'tribe_settings_do_tabs', array( $this, 'do_network_settings_tab' ), 400 );
31
+ add_action( 'tribe_settings_content_tab_help', array( $this, 'do_help_tab' ) );
32
+ add_action( 'tribe_settings_validate_tab_network', array( $this, 'save_all_tabs_hidden' ) );
33
+ }
34
+
35
+ /**
36
+ * Init the settings API and add a hook to add your own setting tabs
37
+ *
38
+ * @return void
39
+ */
40
+ public function init_options() {
41
+ Tribe__Settings::instance();
42
+ }
43
+
44
+ /**
45
+ * Create setting tabs
46
+ *
47
+ * @return void
48
+ */
49
+ public function do_setting_tabs() {
50
+ include_once Tribe__Main::instance()->plugin_path . 'common/admin-views/tribe-options-general.php';
51
+ include_once Tribe__Main::instance()->plugin_path . 'common/admin-views/tribe-options-display.php';
52
+
53
+ $showNetworkTabs = $this->get_network_option( 'showSettingsTabs', false );
54
+
55
+ new Tribe__Settings_Tab( 'general', __( 'General', 'tribe-common' ), $generalTab );
56
+ new Tribe__Settings_Tab( 'display', __( 'Display', 'tribe-common' ), $displayTab );
57
+
58
+ $this->do_licenses_tab();
59
+
60
+ new Tribe__Settings_Tab(
61
+ 'help',
62
+ __( 'Help', 'tribe-common' ),
63
+ array(
64
+ 'priority' => 60,
65
+ 'show_save' => false,
66
+ )
67
+ );
68
+ }
69
+
70
+ /**
71
+ * Get all options for the Events Calendar
72
+ *
73
+ * @return array of options
74
+ */
75
+ public static function get_options() {
76
+ $options = get_option( Tribe__Main::OPTIONNAME, array() );
77
+ if ( has_filter( 'tribe_get_options' ) ) {
78
+ _deprecated_function( 'tribe_get_options', '3.10', 'option_' . Tribe__Main::OPTIONNAME );
79
+ $options = apply_filters( 'tribe_get_options', $options );
80
+ }
81
+ return $options;
82
+ }
83
+
84
+ /**
85
+ * Get value for a specific option
86
+ *
87
+ * @param string $option_name name of option
88
+ * @param string $default default value
89
+ *
90
+ * @return mixed results of option query
91
+ */
92
+ public static function get_option( $option_name, $default = '' ) {
93
+ if ( ! $option_name ) {
94
+ return null;
95
+ }
96
+ $options = self::get_options();
97
+
98
+ $option = $default;
99
+ if ( isset( $options[ $option_name ] ) ) {
100
+ $option = $options[ $option_name ];
101
+ } elseif ( is_multisite() && isset( self::$tribe_events_mu_defaults ) && is_array( self::$tribe_events_mu_defaults ) && in_array( $option_name, array_keys( self::$tribe_events_mu_defaults ) ) ) {
102
+ $option = self::$tribe_events_mu_defaults[ $option_name ];
103
+ }
104
+
105
+ return apply_filters( 'tribe_get_single_option', $option, $default, $option_name );
106
+ }
107
+
108
+ /**
109
+ * Saves the options for the plugin
110
+ *
111
+ * @param array $options formatted the same as from get_options()
112
+ * @param bool $apply_filters
113
+ *
114
+ * @return void
115
+ */
116
+ public static function set_options( $options, $apply_filters = true ) {
117
+ if ( ! is_array( $options ) ) {
118
+ return;
119
+ }
120
+ if ( $apply_filters == true ) {
121
+ $options = apply_filters( 'tribe-events-save-options', $options );
122
+ }
123
+ update_option( Tribe__Main::OPTIONNAME, $options );
124
+ }
125
+
126
+ /**
127
+ * Set an option
128
+ *
129
+ * @param string $name
130
+ * @param mixed $value
131
+ *
132
+ * @return void
133
+ */
134
+ public static function set_option( $name, $value ) {
135
+ $newOption = array();
136
+ $newOption[ $name ] = $value;
137
+ $options = self::get_options();
138
+ self::set_options( wp_parse_args( $newOption, $options ) );
139
+ }
140
+
141
+ /**
142
+ * Get all network options for the Events Calendar
143
+ *
144
+ * @return array of options
145
+ * @TODO add force option, implement in setNetworkOptions
146
+ */
147
+ public static function get_network_options() {
148
+ if ( ! isset( self::$network_options ) ) {
149
+ $options = get_site_option( Tribe__Main::OPTIONNAMENETWORK, array() );
150
+ self::$network_options = apply_filters( 'tribe_get_network_options', $options );
151
+ }
152
+
153
+ return self::$network_options;
154
+ }
155
+
156
+ /**
157
+ * Get value for a specific network option
158
+ *
159
+ * @param string $option_name name of option
160
+ * @param string $default default value
161
+ *
162
+ * @return mixed results of option query
163
+ */
164
+ public static function get_network_option( $option_name, $default = '' ) {
165
+ if ( ! $option_name ) {
166
+ return null;
167
+ }
168
+
169
+ if ( ! isset( self::$network_options ) ) {
170
+ self::get_network_options();
171
+ }
172
+
173
+ if ( isset( self::$network_options[ $option_name ] ) ) {
174
+ $option = self::$network_options[ $option_name ];
175
+ } else {
176
+ $option = $default;
177
+ }
178
+
179
+ return apply_filters( 'tribe_get_single_network_option', $option, $default );
180
+ }
181
+
182
+ /**
183
+ * Saves the network options for the plugin
184
+ *
185
+ * @param array $options formatted the same as from get_options()
186
+ * @param bool $apply_filters
187
+ *
188
+ * @return void
189
+ */
190
+ public static function set_network_options( $options, $apply_filters = true ) {
191
+ if ( ! is_array( $options ) ) {
192
+ return;
193
+ }
194
+ if ( $apply_filters == true ) {
195
+ $options = apply_filters( 'tribe-events-save-network-options', $options );
196
+ }
197
+
198
+ // @TODO use getNetworkOptions + force
199
+ if ( update_site_option( Tribe__Main::OPTIONNAMENETWORK, $options ) ) {
200
+ self::$network_options = apply_filters( 'tribe_get_network_options', $options );
201
+ } else {
202
+ self::$network_options = self::get_network_options();
203
+ }
204
+ }
205
+
206
+ /**
207
+ * Add the network admin options page
208
+ *
209
+ * @return void
210
+ */
211
+ public static function add_network_options_page() {
212
+ $tribe_settings = Tribe__Settings::instance();
213
+ add_submenu_page(
214
+ 'settings.php', $this->pluginName, $this->pluginName, 'manage_network_options', 'tribe-common', array(
215
+ $tribe_settings,
216
+ 'generatePage',
217
+ )
218
+ );
219
+ }
220
+
221
+ /**
222
+ * Render network admin options view
223
+ *
224
+ * @return void
225
+ */
226
+ public static function do_network_settings_tab() {
227
+ include_once Tribe__Main::instance()->plugin_path . 'common/admin-views/tribe-options-network.php';
228
+
229
+ new Tribe__Settings_Tab( 'network', __( 'Network', 'tribe-common' ), $networkTab );
230
+ }
231
+
232
+ /**
233
+ * Registers the license key management tab in the Events > Settings screen,
234
+ * only if premium addons are detected.
235
+ */
236
+ protected function do_licenses_tab() {
237
+ $show_tab = ( current_user_can( 'update_plugins' ) && $this->have_addons() );
238
+
239
+ /**
240
+ * Provides an oppotunity to override the decision to show or hide the licenses tab
241
+ *
242
+ * Normally it will only show if the current user has the "update_plugins" capability
243
+ * and there are some currently-activated premium plugins.
244
+ *
245
+ * @var bool
246
+ */
247
+ if ( ! apply_filters( 'tribe_events_show_licenses_tab', $show_tab ) ) {
248
+ return;
249
+ }
250
+
251
+ /**
252
+ * @var $licenses_tab
253
+ */
254
+ include Tribe__Main::instance()->plugin_path . 'common/admin-views/tribe-options-licenses.php';
255
+
256
+ /**
257
+ * Allows the fields displayed in the licenses tab to be modified.
258
+ *
259
+ * @var array
260
+ */
261
+ $license_fields = apply_filters( 'tribe_license_fields', $licenses_tab );
262
+
263
+ new Tribe__Settings_Tab( 'licenses', __( 'Licenses', 'tribe-common' ), array(
264
+ 'priority' => '40',
265
+ 'fields' => $license_fields,
266
+ 'network_admin' => is_network_admin() ? true : false,
267
+ ) );
268
+ }
269
+
270
+ /**
271
+ * Create the help tab
272
+ */
273
+ public function do_help_tab() {
274
+ include_once Tribe__Main::instance()->plugin_path . 'common/admin-views/tribe-options-help.php';
275
+ }
276
+
277
+ /**
278
+ * Add help menu item to the admin (unless blocked via network admin settings).
279
+ *
280
+ * @todo move to an admin class
281
+ */
282
+ public function add_help_admin_menu_item() {
283
+ $hidden_settings_tabs = self::get_network_option( 'hideSettingsTabs', array() );
284
+ if ( in_array( 'help', $hidden_settings_tabs ) ) {
285
+ return;
286
+ }
287
+
288
+ $parent = 'edit.php?post_type=' . Tribe__Events__Main::POSTTYPE;
289
+ $title = __( 'Help', 'tribe-common' );
290
+ $slug = esc_url(
291
+ add_query_arg(
292
+ array(
293
+ 'post_type' => Tribe__Events__Main::POSTTYPE,
294
+ 'page' => 'tribe-common',
295
+ 'tab' => 'help',
296
+ ),
297
+ 'edit.php'
298
+ )
299
+ );
300
+
301
+ add_submenu_page( $parent, $title, $title, 'manage_options', $slug, '' );
302
+ }
303
+
304
+ /**
305
+ * Tries to discover if licensable addons are activated on the same site.
306
+ *
307
+ * @return bool
308
+ */
309
+ protected function have_addons() {
310
+ $addons = apply_filters( 'tribe_licensable_addons', array() );
311
+ return ! empty( $addons );
312
+ }
313
+
314
+ /**
315
+ * Save hidden tabs
316
+ *
317
+ * @return void
318
+ */
319
+ public function save_all_tabs_hidden() {
320
+ $all_tabs_keys = array_keys( apply_filters( 'tribe_settings_all_tabs', array() ) );
321
+
322
+ $network_options = (array) get_site_option( Tribe__Main::OPTIONNAMENETWORK );
323
+
324
+ if ( isset( $_POST['hideSettingsTabs'] ) && $_POST['hideSettingsTabs'] == $all_tabs_keys ) {
325
+ $network_options['allSettingsTabsHidden'] = '1';
326
+ } else {
327
+ $network_options['allSettingsTabsHidden'] = '0';
328
+ }
329
+
330
+ $this->set_network_options( $network_options );
331
+ }
332
+
333
+ /**
334
+ * Static Singleton Factory Method
335
+ *
336
+ * @return Tribe__Settings_Manager
337
+ */
338
+ public static function instance() {
339
+ static $instance;
340
+
341
+ if ( ! $instance ) {
342
+ $class_name = __CLASS__;
343
+ $instance = new $class_name;
344
+ }
345
+
346
+ return $instance;
347
+ }
348
+ }
common/Tribe/Settings_Tab.php ADDED
@@ -0,0 +1,229 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // Don't load directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ die( '-1' );
6
+ }
7
+
8
+ if ( ! class_exists( 'Tribe__Settings_Tab' ) ) {
9
+ /**
10
+ * helper class that creates a settings tab
11
+ * this is a public API, use it to create tabs
12
+ * simply by instantiating this class
13
+ *
14
+ */
15
+ class Tribe__Settings_Tab {
16
+
17
+ /**
18
+ * Tab ID, used in query string and elsewhere
19
+ * @var string
20
+ */
21
+ public $id;
22
+
23
+ /**
24
+ * Tab's name
25
+ * @var string
26
+ */
27
+ public $name;
28
+
29
+ /**
30
+ * Tab's arguments
31
+ * @var array
32
+ */
33
+ public $args;
34
+
35
+ /**
36
+ * Defaults for tabs
37
+ * @var array
38
+ */
39
+ public $defaults;
40
+
41
+ /**
42
+ * class constructor
43
+ *
44
+ * @param string $id the tab's id (no spaces or special characters)
45
+ * @param string $name the tab's visible name
46
+ * @param array $args additional arguments for the tab
47
+ */
48
+ public function __construct( $id, $name, $args = array() ) {
49
+
50
+ // setup the defaults
51
+ $this->defaults = array(
52
+ 'fields' => array(),
53
+ 'priority' => 50,
54
+ 'show_save' => true,
55
+ 'display_callback' => false,
56
+ 'network_admin' => false,
57
+ );
58
+
59
+ // parse args with defaults and extract them
60
+ $this->args = wp_parse_args( $args, $this->defaults );
61
+ extract( $this->args );
62
+
63
+ // set each instance variable and filter
64
+ $this->id = apply_filters( 'tribe_settings_tab_id', $id );
65
+ $this->name = apply_filters( 'tribe_settings_tab_name', $name );
66
+ foreach ( $this->defaults as $key => $value ) {
67
+ $this->{$key} = apply_filters( 'tribe_settings_tab_' . $key, $$key, $id );
68
+ }
69
+
70
+ // run actions & filters
71
+ if ( ! $network_admin ) {
72
+ add_filter( 'tribe_settings_all_tabs', array( $this, 'addAllTabs' ) );
73
+ }
74
+ add_filter( 'tribe_settings_tabs', array( $this, 'addTab' ), $priority );
75
+
76
+ }
77
+
78
+ /**
79
+ * filters the tabs array from Tribe__Settings
80
+ * and adds the current tab to it
81
+ * does not add a tab if it's empty
82
+ *
83
+ * @param array $tabs the $tabs from Tribe__Settings
84
+ *
85
+ * @return array $tabs the filtered tabs
86
+ */
87
+ public function addTab( $tabs ) {
88
+ $hideSettingsTabs = Tribe__Settings_Manager::get_network_option( 'hideSettingsTabs', array() );
89
+ if ( ( isset( $this->fields ) || has_action( 'tribe_settings_content_tab_' . $this->id ) ) && ( empty( $hideSettingsTabs ) || ! in_array( $this->id, $hideSettingsTabs ) ) ) {
90
+ if ( ( is_network_admin() && $this->args['network_admin'] ) || ( ! is_network_admin() && ! $this->args['network_admin'] ) ) {
91
+ $tabs[ $this->id ] = $this->name;
92
+ add_filter( 'tribe_settings_fields', array( $this, 'addFields' ) );
93
+ add_filter( 'tribe_settings_no_save_tabs', array( $this, 'showSaveTab' ) );
94
+ add_filter( 'tribe_settings_content_tab_' . $this->id, array( $this, 'doContent' ) );
95
+ }
96
+ }
97
+
98
+ return $tabs;
99
+ }
100
+
101
+ /**
102
+ * Adds this tab to the list of total tabs, even if it is not displayed.
103
+ *
104
+ * @param array $allTabs All the tabs from Tribe__Settings.
105
+ *
106
+ * @return array $allTabs All the tabs.
107
+ */
108
+ public function addAllTabs( $allTabs ) {
109
+ $allTabs[ $this->id ] = $this->name;
110
+
111
+ return $allTabs;
112
+ }
113
+
114
+
115
+ /**
116
+ * filters the fields array from Tribe__Settings
117
+ * and adds the current tab's fields to it
118
+ *
119
+ * @param array $field the $fields from Tribe__Settings
120
+ *
121
+ * @return array $fields the filtered fields
122
+ */
123
+ public function addFields( $fields ) {
124
+ if ( ! empty ( $this->fields ) ) {
125
+ $fields[ $this->id ] = $this->fields;
126
+ } elseif ( has_action( 'tribe_settings_content_tab_' . $this->id ) ) {
127
+ $fields[ $this->id ] = $this->fields = array( 0 => null ); // just to trick it
128
+ }
129
+
130
+ return $fields;
131
+ }
132
+
133
+ /**
134
+ * sets whether the current tab should show the save
135
+ * button or not
136
+ *
137
+ * @param array $noSaveTabs the $noSaveTabs from Tribe__Settings
138
+ *
139
+ * @return array $noSaveTabs the filtered non saving tabs
140
+ */
141
+ public function showSaveTab( $noSaveTabs ) {
142
+ if ( ! $this->show_save || empty( $this->fields ) ) {
143
+ $noSaveTabs[ $this->id ] = $this->id;
144
+ }
145
+
146
+ return $noSaveTabs;
147
+ }
148
+
149
+ /**
150
+ * displays the content for the tab
151
+ *
152
+ * @return void
153
+ */
154
+ public function doContent() {
155
+ if ( $this->display_callback && is_callable( $this->display_callback ) ) {
156
+ call_user_func( $this->display_callback );
157
+
158
+ return;
159
+ }
160
+
161
+ $sent_data = get_option( 'tribe_settings_sent_data', array() );
162
+
163
+ if ( is_array( $this->fields ) && ! empty( $this->fields ) ) {
164
+ foreach ( $this->fields as $key => $field ) {
165
+ if ( isset( $sent_data[ $key ] ) ) {
166
+ // if we just saved [or attempted to], get the value that was inputed
167
+ $value = $sent_data[ $key ];
168
+ } else {
169
+ // Some options should always be stored at network level
170
+ $network_option = isset( $field['network_option'] ) ? (bool) $field['network_option'] : false;
171
+
172
+ if ( is_network_admin() ) {
173
+ $parent_option = ( isset( $field['parent_option'] ) ) ? $field['parent_option'] : Tribe__Main::OPTIONNAMENETWORK;
174
+ }
175
+ if ( ! is_network_admin() ) {
176
+ $parent_option = ( isset( $field['parent_option'] ) ) ? $field['parent_option'] : Tribe__Main::OPTIONNAME;
177
+ }
178
+ // get the field's parent_option in order to later get the field's value
179
+ $parent_option = apply_filters( 'tribe_settings_do_content_parent_option', $parent_option, $key );
180
+ $default = ( isset( $field['default'] ) ) ? $field['default'] : null;
181
+ $default = apply_filters( 'tribe_settings_field_default', $default, $field );
182
+
183
+ if ( ! $parent_option ) {
184
+ // no parent option, get the straight up value
185
+ if ( $network_option || is_network_admin() ) {
186
+ $value = get_site_option( $key, $default );
187
+ } else {
188
+ $value = get_option( $key, $default );
189
+ }
190
+ } else {
191
+ // there's a parent option
192
+ if ( $parent_option == Tribe__Main::OPTIONNAME ) {
193
+ // get the options from Tribe__Settings_Manager if we're getting the main array
194
+ $value = Tribe__Settings_Manager::get_option( $key, $default );
195
+ } elseif ( $parent_option == Tribe__Main::OPTIONNAMENETWORK ) {
196
+ $value = Tribe__Settings_Manager::get_network_option( $key, $default );
197
+ } else {
198
+ // else, get the parent option normally
199
+ if ( is_network_admin() ) {
200
+ $options = (array) get_site_option( $parent_option );
201
+ } else {
202
+ $options = (array) get_option( $parent_option );
203
+ }
204
+ $value = ( isset( $options[ $key ] ) ) ? $options[ $key ] : $default;
205
+ }
206
+ }
207
+ }
208
+
209
+ // escape the value for display
210
+ if ( ! empty( $field['esc_display'] ) && function_exists( $field['esc_display'] ) ) {
211
+ $value = $field['esc_display']( $value );
212
+ } elseif ( is_string( $value ) ) {
213
+ $value = esc_attr( stripslashes( $value ) );
214
+ }
215
+
216
+ // filter the value
217
+ $value = apply_filters( 'tribe_settings_get_option_value_pre_display', $value, $key, $field );
218
+
219
+ // create the field
220
+ new Tribe__Field( $key, $field, $value );
221
+ }
222
+ } else {
223
+ // no fields setup for this tab yet
224
+ echo '<p>' . esc_html__( 'There are no fields setup for this tab yet.', 'tribe-common' ) . '</p>';
225
+ }
226
+ }
227
+
228
+ } // end class
229
+ } // endif class_exists
common/Tribe/Support.php ADDED
@@ -0,0 +1,263 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Class for managing technical support components
4
+ *
5
+ * @version 0.3
6
+ */
7
+
8
+ // Don't load directly
9
+ if ( ! defined( 'ABSPATH' ) ) {
10
+ die( '-1' );
11
+ }
12
+
13
+ if ( ! class_exists( 'Tribe__Support' ) ) {
14
+
15
+ class Tribe__Support {
16
+
17
+ public static $support;
18
+ public $rewrite_rules_purged = false;
19
+
20
+ /**
21
+ * Fields listed here contain HTML and should be escaped before being
22
+ * printed.
23
+ *
24
+ * @var array
25
+ */
26
+ protected $must_escape = array(
27
+ 'tribeEventsAfterHTML',
28
+ 'tribeEventsBeforeHTML',
29
+ );
30
+
31
+ private function __construct() {
32
+ $this->must_escape = (array) apply_filters( 'tribe_help_must_escape_fields', $this->must_escape );
33
+ add_action( 'tribe_help_tab_sections', array( $this, 'displayHelpTabInfo' ), 10, 0 );
34
+ add_action( 'delete_option_rewrite_rules', array( $this, 'log_rewrite_rule_purge' ) );
35
+ }
36
+
37
+ /**
38
+ * Display help tab info in events settings
39
+ */
40
+ public function displayHelpTabInfo() {
41
+
42
+ if ( ! current_user_can( 'administrator' ) ) {
43
+ return;
44
+ }
45
+
46
+ $system_text[] = '<p>' . __( "Sometimes it's hard to tell what's going wrong without knowing more about your system steup. For your convenience, we've put together a little report on what's cooking under the hood.", 'tribe-common' ) . '</p>';
47
+ $system_text[] = '<p>' . __( "If you suspect that the problem you're having is related to another plugin, or we're just plain having trouble reproducing your bug report, please copy and send all of this to our support team.", 'tribe-common' ) . '</p>';
48
+ $system_text = implode( $system_text );
49
+ ?>
50
+
51
+ <h3><?php esc_html_e( 'System Information', 'tribe-common' ); ?></h3>
52
+ <?php
53
+ echo apply_filters( 'tribe_help_tab_system', $system_text );
54
+ echo $this->formattedSupportStats();
55
+ $this->formattedSupportStatsStyle();
56
+ }
57
+
58
+ /**
59
+ * Collect system information for support
60
+ *
61
+ * @return array of system data for support
62
+ */
63
+ public function getSupportStats() {
64
+ $user = wp_get_current_user();
65
+
66
+ $plugins = array();
67
+ if ( function_exists( 'get_plugin_data' ) ) {
68
+ $plugins_raw = wp_get_active_and_valid_plugins();
69
+ foreach ( $plugins_raw as $k => $v ) {
70
+ $plugin_details = get_plugin_data( $v );
71
+ $plugin = $plugin_details['Name'];
72
+ if ( ! empty( $plugin_details['Version'] ) ) {
73
+ $plugin .= sprintf( ' version %s', $plugin_details['Version'] );
74
+ }
75
+ if ( ! empty( $plugin_details['Author'] ) ) {
76
+ $plugin .= sprintf( ' by %s', $plugin_details['Author'] );
77
+ }
78
+ if ( ! empty( $plugin_details['AuthorURI'] ) ) {
79
+ $plugin .= sprintf( '(%s)', $plugin_details['AuthorURI'] );
80
+ }
81
+ $plugins[] = $plugin;
82
+ }
83
+ }
84
+
85
+ $network_plugins = array();
86
+ if ( is_multisite() && function_exists( 'get_plugin_data' ) ) {
87
+ $plugins_raw = wp_get_active_network_plugins();
88
+ foreach ( $plugins_raw as $k => $v ) {
89
+ $plugin_details = get_plugin_data( $v );
90
+ $plugin = $plugin_details['Name'];
91
+ if ( ! empty( $plugin_details['Version'] ) ) {
92
+ $plugin .= sprintf( ' version %s', $plugin_details['Version'] );
93
+ }
94
+ if ( ! empty( $plugin_details['Author'] ) ) {
95
+ $plugin .= sprintf( ' by %s', $plugin_details['Author'] );
96
+ }
97
+ if ( ! empty( $plugin_details['AuthorURI'] ) ) {
98
+ $plugin .= sprintf( '(%s)', $plugin_details['AuthorURI'] );
99
+ }
100
+ $network_plugins[] = $plugin;
101
+ }
102
+ }
103
+
104
+ $mu_plugins = array();
105
+ if ( function_exists( 'get_mu_plugins' ) ) {
106
+ $mu_plugins_raw = get_mu_plugins();
107
+ foreach ( $mu_plugins_raw as $k => $v ) {
108
+ $plugin = $v['Name'];
109
+ if ( ! empty( $v['Version'] ) ) {
110
+ $plugin .= sprintf( ' version %s', $v['Version'] );
111
+ }
112
+ if ( ! empty( $v['Author'] ) ) {
113
+ $plugin .= sprintf( ' by %s', $v['Author'] );
114
+ }
115
+ if ( ! empty( $v['AuthorURI'] ) ) {
116
+ $plugin .= sprintf( '(%s)', $v['AuthorURI'] );
117
+ }
118
+ $mu_plugins[] = $plugin;
119
+ }
120
+ }
121
+
122
+ $keys = apply_filters( 'tribe-pue-install-keys', array() );
123
+
124
+ $systeminfo = array(
125
+ 'url' => 'http://' . $_SERVER['HTTP_HOST'],
126
+ 'name' => $user->display_name,
127
+ 'email' => $user->user_email,
128
+ 'install keys' => $keys,
129
+ 'WordPress version' => get_bloginfo( 'version' ),
130
+ 'PHP version' => phpversion(),
131
+ 'plugins' => $plugins,
132
+ 'network plugins' => $network_plugins,
133
+ 'mu plugins' => $mu_plugins,
134
+ 'theme' => wp_get_theme()->get( 'Name' ),
135
+ 'multisite' => is_multisite(),
136
+ 'settings' => Tribe__Settings_Manager::get_options(),
137
+ 'WordPress timezone' => get_option( 'timezone_string', __( 'Unknown or not set', 'tribe-common' ) ),
138
+ 'server timezone' => date_default_timezone_get(),
139
+ );
140
+
141
+ if ( $this->rewrite_rules_purged ) {
142
+ $systeminfo['rewrite rules purged'] = __( 'Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!', 'tribe-common' );
143
+ }
144
+
145
+ $systeminfo = apply_filters( 'tribe-events-pro-support', $systeminfo );
146
+
147
+ return $systeminfo;
148
+ }
149
+
150
+ /**
151
+ * Render system information into a pretty output
152
+ *
153
+ * @return string pretty HTML
154
+ */
155
+ public function formattedSupportStats() {
156
+ $systeminfo = $this->getSupportStats();
157
+ $output = '';
158
+ $output .= '<dl class="support-stats">';
159
+ foreach ( $systeminfo as $k => $v ) {
160
+
161
+ switch ( $k ) {
162
+ case 'name' :
163
+ case 'email' :
164
+ continue 2;
165
+ break;
166
+ case 'url' :
167
+ $v = sprintf( '<a href="%s">%s</a>', $v, $v );
168
+ break;
169
+ }
170
+
171
+ if ( is_array( $v ) ) {
172
+ $keys = array_keys( $v );
173
+ $key = array_shift( $keys );
174
+ $is_numeric_array = is_numeric( $key );
175
+ unset( $keys );
176
+ unset( $key );
177
+ }
178
+
179
+ $output .= sprintf( '<dt>%s</dt>', $k );
180
+ if ( empty( $v ) ) {
181
+ $output .= '<dd class="support-stats-null">-</dd>';
182
+ } elseif ( is_bool( $v ) ) {
183
+ $output .= sprintf( '<dd class="support-stats-bool">%s</dd>', $v );
184
+ } elseif ( is_string( $v ) ) {
185
+ $output .= sprintf( '<dd class="support-stats-string">%s</dd>', $v );
186
+ } elseif ( is_array( $v ) && $is_numeric_array ) {
187
+ $output .= sprintf( '<dd class="support-stats-array"><ul><li>%s</li></ul></dd>', join( '</li><li>', $v ) );
188
+ } else {
189
+ $formatted_v = array();
190
+ foreach ( $v as $obj_key => $obj_val ) {
191
+ if ( in_array( $obj_key, $this->must_escape ) ) {
192
+ $obj_val = esc_html( $obj_val );
193
+ }
194
+ if ( is_array( $obj_val ) ) {
195
+ $formatted_v[] = sprintf( '<li>%s = <pre>%s</pre></li>', $obj_key, print_r( $obj_val, true ) );
196
+ } else {
197
+ $formatted_v[] = sprintf( '<li>%s = %s</li>', $obj_key, $obj_val );
198
+ }
199
+ }
200
+ $v = join( "\n", $formatted_v );
201
+ $output .= sprintf( '<dd class="support-stats-object"><ul>%s</ul></dd>', print_r( $v, true ) );
202
+ }
203
+ }
204
+ $output .= '</dl>';
205
+
206
+ return $output;
207
+ }
208
+
209
+ public function formattedSupportStatsStyle() {
210
+ ?>
211
+ <style>
212
+ dl.support-stats {
213
+ background: #000;
214
+ color: #888;
215
+ padding: 10px;
216
+ overflow: scroll;
217
+ max-height: 400px;
218
+ border-radius: 2px;
219
+ }
220
+
221
+ dl.support-stats dt {
222
+ text-transform: uppercase;
223
+ font-weight: bold;
224
+ width: 25%;
225
+ clear: both;
226
+ float: left;
227
+ }
228
+
229
+ dl.support-stats dd {
230
+ padding-left: 10px;
231
+ margin-left: 25%;
232
+ }
233
+ </style>
234
+ <?php
235
+ }
236
+
237
+ /**
238
+ * Logs the occurence of rewrite rule purging
239
+ */
240
+ public function log_rewrite_rule_purge() {
241
+ $this->rewrite_rules_purged = true;
242
+ }//end log_rewrite_rule_purge
243
+
244
+ /****************** SINGLETON GUTS ******************/
245
+
246
+ /**
247
+ * Enforce Singleton Pattern
248
+ */
249
+ private static $instance;
250
+
251
+
252
+ public static function getInstance() {
253
+ if ( null == self::$instance ) {
254
+ $className = __CLASS__;
255
+ self::$instance = new $className;
256
+ }
257
+
258
+ return self::$instance;
259
+ }
260
+
261
+ }
262
+
263
+ }
common/Tribe/Template_Factory.php ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Template Factory
4
+ *
5
+ * The parent class for managing the view methods in core and addons
6
+ *
7
+ */
8
+
9
+ if ( ! defined( 'ABSPATH' ) ) {
10
+ die( '-1' );
11
+ }
12
+
13
+ if ( class_exists( 'Tribe__Template_Factory' ) ) {
14
+ return;
15
+ }
16
+
17
+ class Tribe__Template_Factory {
18
+
19
+ /**
20
+ * Array of asset packages needed for this template
21
+ *
22
+ * @var array
23
+ **/
24
+ protected $asset_packages = array();
25
+
26
+ /**
27
+ * Static variable that holds array of vendor script handles, for adding to later deps.
28
+ *
29
+ * @static
30
+ * @var array
31
+ */
32
+ protected static $vendor_scripts = array();
33
+
34
+ /**
35
+ * Constant that holds the ajax hook suffix for the view
36
+ *
37
+ * @static
38
+ * @var string
39
+ */
40
+ const AJAX_HOOK = '';
41
+
42
+ /**
43
+ * Run include packages, set up hooks
44
+ *
45
+ * @return void
46
+ **/
47
+ public function __construct() {
48
+ $this->asset_packages();
49
+ }
50
+
51
+ /**
52
+ * Manage the asset packages defined for this template
53
+ *
54
+ * @return void
55
+ **/
56
+ protected function asset_packages() {
57
+ foreach ( $this->asset_packages as $asset_package ) {
58
+ $this->asset_package( $asset_package );
59
+ }
60
+ }
61
+
62
+ /**
63
+ * Handles an asset package request.
64
+ *
65
+ * @param string $name The asset name in the `hyphen-separated-format`
66
+ * @param array $deps An array of dependency handles
67
+ * @param string $vendor_url URL to vendor scripts and styles dir
68
+ * @param string $prefix MT script and style prefix
69
+ * @param Tribe__Events__Main $tec An instance of the main plugin class
70
+ */
71
+ protected static function handle_asset_package_request( $name, $deps, $vendor_url, $prefix, $tec ) {
72
+
73
+ $asset = self::get_asset_factory_instance( $name );
74
+
75
+ self::prepare_asset_package_request( $asset, $name, $deps, $vendor_url, $prefix, $tec );
76
+ }
77
+
78
+ /**
79
+ * initializes asset package request
80
+ *
81
+ * @param object $asset The Tribe__*Asset object
82
+ * @param string $name The asset name in the `hyphen-separated-format`
83
+ * @param array $deps An array of dependency handles
84
+ * @param string $vendor_url URL to vendor scripts and styles dir
85
+ * @param string $prefix MT script and style prefix
86
+ * @param Tribe__Events__Main $tec An instance of the main plugin class
87
+ */
88
+ protected static function prepare_asset_package_request( $asset, $name, $deps, $vendor_url, $prefix, $tec ) {
89
+ if ( ! $asset ) {
90
+ do_action( $prefix . '-' . $name );
91
+
92
+ return;
93
+ }
94
+
95
+ $asset->set_name( $name );
96
+ $asset->set_deps( $deps );
97
+ $asset->set_vendor_url( $vendor_url );
98
+ $asset->set_prefix( $prefix );
99
+ $asset->set_tec( $tec );
100
+
101
+ $asset->handle();
102
+ }
103
+
104
+ /**
105
+ * Retrieves the appropriate asset factory instance
106
+ */
107
+ protected static function get_asset_factory_instance( $name ) {
108
+ $asset = Tribe__Asset__Factory::instance()->make_for_name( $name );
109
+ return $asset;
110
+ }
111
+
112
+ /**
113
+ * @param string $script_handle A registered script handle.
114
+ */
115
+ public static function add_vendor_script( $script_handle ) {
116
+ if ( in_array( $script_handle, self::$vendor_scripts ) ) {
117
+ return;
118
+ }
119
+ self::$vendor_scripts[] = $script_handle;
120
+ }
121
+
122
+ /**
123
+ * @return string[] An array of registered vendor script handles.
124
+ */
125
+ public static function get_vendor_scripts() {
126
+ return self::$vendor_scripts;
127
+ }
128
+
129
+ /**
130
+ * Asset calls for vendor packages
131
+ *
132
+ * @param string $name
133
+ * @param array $deps Dependents
134
+ */
135
+ public static function asset_package( $name, $deps = array() ) {
136
+
137
+ $common = Tribe__Main::instance();
138
+ $prefix = 'tribe-events'; // Tribe__Events__Main::POSTTYPE;
139
+
140
+ // setup plugin resources & 3rd party vendor urls
141
+ $vendor_url = trailingslashit( $common->plugin_url ) . 'vendor/';
142
+
143
+ self::handle_asset_package_request( $name, $deps, $vendor_url, $prefix, $common );
144
+ }
145
+
146
+ /**
147
+ * Returns the path to a minified version of a js or css file, if it exists.
148
+ * If the file does not exist, returns false.
149
+ *
150
+ * @param string $url The path or URL to the un-minified file.
151
+ * @param bool $default_to_original Whether to just return original path if min version not found.
152
+ *
153
+ * @return string|false The path/url to minified version or false, if file not found.
154
+ */
155
+ public static function getMinFile( $url, $default_to_original = false ) {
156
+ if ( ! defined( 'SCRIPT_DEBUG' ) || SCRIPT_DEBUG === false ) {
157
+ if ( substr( $url, - 3, 3 ) == '.js' ) {
158
+ $url_new = substr_replace( $url, '.min', - 3, 0 );
159
+ }
160
+ if ( substr( $url, - 4, 4 ) == '.css' ) {
161
+ $url_new = substr_replace( $url, '.min', - 4, 0 );
162
+ }
163
+ }
164
+
165
+ if ( isset( $url_new ) && file_exists( str_replace( WP_CONTENT_URL, WP_CONTENT_DIR, $url_new ) ) ) {
166
+ return $url_new;
167
+ } elseif ( $default_to_original ) {
168
+ return $url;
169
+ } else {
170
+ return false;
171
+ }
172
+ }
173
+
174
+ /*
175
+ * Playing ping-pong with WooCommerce. They keep changing their script.
176
+ * See https://github.com/woothemes/woocommerce/issues/3623
177
+ */
178
+ public static function get_placeholder_handle() {
179
+ $placeholder_handle = 'jquery-placeholder';
180
+ global $woocommerce;
181
+ if ( class_exists( 'Woocommerce' ) && version_compare( $woocommerce->version, '2.0.11', '>=' ) && version_compare( $woocommerce->version, '2.0.13', '<=' )
182
+ ) {
183
+ $placeholder_handle = 'tribe-placeholder';
184
+ }
185
+
186
+ return $placeholder_handle;
187
+ }
188
+ }
common/Tribe/Template_Part_Cache.php ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Class Tribe__Template_Part_Cache
5
+ *
6
+ * @uses TribeEventsCache
7
+ */
8
+ class Tribe__Template_Part_Cache {
9
+
10
+ /**
11
+ * @var string
12
+ */
13
+ private $template;
14
+
15
+ /**
16
+ * @var int
17
+ */
18
+ private $expiration;
19
+
20
+ /**
21
+ * @var string
22
+ */
23
+ private $expiration_trigger;
24
+
25
+ /**
26
+ * @var TribeEventsCache
27
+ */
28
+ private $cache;
29
+
30
+ /**
31
+ * @var string
32
+ */
33
+ private $html;
34
+
35
+ /**
36
+ ** Short description
37
+ *
38
+ * @param $template - which template in the views directory is being cached (relative path).
39
+ * @param $id - a unique identifier for this fragment.
40
+ * @param $expiration - expiration time for the cached fragment.
41
+ * @param $expiration_trigger - wordpress hook to expire on.
42
+ */
43
+ public function __construct( $template, $id, $expiration, $expiration_trigger ) {
44
+ $this->template = $template;
45
+ $this->key = $template . '_' . $id;
46
+ $this->expiration = $expiration;
47
+ $this->expiration_trigger = $expiration_trigger;
48
+ $this->cache = new Tribe__Cache();
49
+
50
+ $this->add_hooks();
51
+ }
52
+
53
+ /**
54
+ * Hook in to show cached content and bypass queries where needed
55
+ */
56
+ public function add_hooks() {
57
+
58
+ // set the cached html in transients after the template part is included
59
+ add_filter( 'tribe_get_template_part_content', array( $this, 'set' ), 10, 2 );
60
+
61
+ // get the cached html right before the setup_view runs so it's available for bypassing any view logic
62
+ add_action( 'tribe_events_before_view', array( $this, 'get' ), 9, 1 );
63
+
64
+ // when the specified template part is included, show the cached html instead
65
+ add_filter( 'tribe_get_template_part_path_' . $this->template, array( $this, 'display' ) );
66
+ }
67
+
68
+ /**
69
+ * Checks if there is a cached html fragment in the transients, if it's there,
70
+ * don't include the requested file path. If not, just return the file path like normal
71
+ *
72
+ * @param $path file path to the month view template part
73
+ *
74
+ * @return bool
75
+ * @uses tribe_get_template_part_path_[template] hook
76
+ */
77
+ public function display( $path ) {
78
+
79
+ if ( $this->html !== false ) {
80
+ echo $this->html;
81
+
82
+ return false;
83
+ }
84
+
85
+ return $path;
86
+
87
+ }
88
+
89
+ /**
90
+ * Set cached html in transients
91
+ *
92
+ * @param $html
93
+ * @param $template
94
+ *
95
+ * @return string
96
+ * @uses tribe_get_template_part_content hook
97
+ */
98
+ public function set( $html, $template ) {
99
+ if ( $template == $this->template ) {
100
+ $this->cache->set_transient( $this->key, $html, $this->expiration, $this->expiration_trigger );
101
+ }
102
+
103
+ return $html;
104
+ }
105
+
106
+ /**
107
+ * Retrieve the cached html from transients, set class property
108
+ *
109
+ * @uses tribe_events_before_view hook
110
+ */
111
+ public function get() {
112
+
113
+ if ( isset( $this->html ) ) {
114
+
115
+ return $this->html;
116
+ }
117
+
118
+ $this->html = $this->cache->get_transient( $this->key, $this->expiration_trigger );
119
+
120
+ return $this->html;
121
+
122
+ }
123
+ }
common/Tribe/Timezones.php ADDED
@@ -0,0 +1,304 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Helpers for handling timezone based event datetimes.
5
+ *
6
+ * In our timezone logic, the term "local" refers to the locality of an event
7
+ * rather than the local WordPress timezone.
8
+ */
9
+ class Tribe__Timezones {
10
+ const SITE_TIMEZONE = 'site';
11
+ const EVENT_TIMEZONE = 'event';
12
+
13
+
14
+ /**
15
+ * Container for reusable DateTimeZone objects.
16
+ *
17
+ * @var array
18
+ */
19
+ protected static $timezones = array();
20
+
21
+
22
+ public static function init() {
23
+ self::invalidate_caches();
24
+ }
25
+
26
+ /**
27
+ * Clear any cached timezone-related values when appropriate.
28
+ *
29
+ * Currently we are concerned only with the site timezone abbreviation.
30
+ */
31
+ protected static function invalidate_caches() {
32
+ add_filter( 'pre_update_option_gmt_offset', array( __CLASS__, 'clear_site_timezone_abbr' ) );
33
+ add_filter( 'pre_update_option_timezone_string', array( __CLASS__, 'clear_site_timezone_abbr' ) );
34
+ }
35
+
36
+ /**
37
+ * Wipe the cached site timezone abbreviation, if set.
38
+ *
39
+ * @param mixed $option_val (passed through without modification)
40
+ *
41
+ * @return mixed
42
+ */
43
+ public static function clear_site_timezone_abbr( $option_val ) {
44
+ delete_transient( 'tribe_events_wp_timezone_abbr' );
45
+ return $option_val;
46
+ }
47
+
48
+ /**
49
+ * Returns the current site-wide timezone string.
50
+ *
51
+ * Based on the core WP code found in wp-admin/options-general.php.
52
+ *
53
+ * @return string
54
+ */
55
+ public static function wp_timezone_string() {
56
+ $current_offset = get_option( 'gmt_offset' );
57
+ $tzstring = get_option( 'timezone_string' );
58
+
59
+ // Return the timezone string if already set
60
+ if ( ! empty( $tzstring ) ) {
61
+ return $tzstring;
62
+ }
63
+
64
+ // Otherwise return the UTC offset
65
+ if ( 0 == $current_offset ) {
66
+ return 'UTC+0';
67
+ } elseif ( $current_offset < 0 ) {
68
+ return 'UTC' . $current_offset;
69
+ }
70
+
71
+ return 'UTC+' . $current_offset;
72
+ }
73
+
74
+ /**
75
+ * Returns the current site-wide timezone string abbreviation, if it can be
76
+ * determined or falls back on the full timezone string/offset text.
77
+ *
78
+ * @param string $date
79
+ *
80
+ * @return string
81
+ */
82
+ public static function wp_timezone_abbr( $date ) {
83
+ $abbr = get_transient( 'tribe_events_wp_timezone_abbr' );
84
+
85
+ if ( empty( $abbr ) ) {
86
+ $timezone_string = self::wp_timezone_string();
87
+ $abbr = self::abbr( $date, $timezone_string );
88
+ set_transient( 'tribe_events_wp_timezone_abbr', $abbr );
89
+ }
90
+
91
+ return empty( $abbr )
92
+ ? $timezone_string
93
+ : $abbr;
94
+ }
95
+
96
+ /**
97
+ * Tried to convert the provided $datetime to UTC from the timezone represented by $tzstring.
98
+ *
99
+ * Though the usual range of formats are allowed, $datetime ordinarily ought to be something
100
+ * like the "Y-m-d H:i:s" format (ie, no timezone information). If it itself contains timezone
101
+ * data, the results may be unexpected.
102
+ *
103
+ * In those cases where the conversion fails to take place, the $datetime string will be
104
+ * returned untouched.
105
+ *
106
+ * @param string $datetime
107
+ * @param string $tzstring
108
+ *
109
+ * @return string
110
+ */
111
+ public static function to_utc( $datetime, $tzstring ) {
112
+ if ( self::is_utc_offset( $tzstring ) ) {
113
+ return self::apply_offset( $datetime, $tzstring, true );
114
+ }
115
+
116
+ try {
117
+ $local = self::get_timezone( $tzstring );
118
+ $utc = self::get_timezone( 'UTC' );
119
+
120
+ $datetime = date_create( $datetime, $local )->setTimezone( $utc );
121
+ return $datetime->format( Tribe__Date_Utils::DBDATETIMEFORMAT );
122
+ }
123
+ catch ( Exception $e ) {
124
+ return $datetime;
125
+ }
126
+ }
127
+
128
+ /**
129
+ * Tries to convert the provided $datetime to the timezone represented by $tzstring.
130
+ *
131
+ * This is the sister function of self::to_utc() - please review the docs for that method
132
+ * for more information.
133
+ *
134
+ * @param string $datetime
135
+ * @param string $tzstring
136
+ *
137
+ * @return string
138
+ */
139
+ public static function to_tz( $datetime, $tzstring ) {
140
+ if ( self::is_utc_offset( $tzstring ) ) {
141
+ return self::apply_offset( $datetime, $tzstring );
142
+ }
143
+
144
+ try {
145
+ $local = self::get_timezone( $tzstring );
146
+ $utc = self::get_timezone( 'UTC' );
147
+
148
+ $datetime = date_create( $datetime, $utc )->setTimezone( $local );
149
+ return $datetime->format( Tribe__Date_Utils::DBDATETIMEFORMAT );
150
+ }
151
+ catch ( Exception $e ) {
152
+ return $datetime;
153
+ }
154
+ }
155
+
156
+ /**
157
+ * Tests to see if the timezone string is a UTC offset, ie "UTC+2".
158
+ *
159
+ * @param string $timezone
160
+ *
161
+ * @return bool
162
+ */
163
+ public static function is_utc_offset( $timezone ) {
164
+ $timezone = trim( $timezone );
165
+ return ( 0 === strpos( $timezone, 'UTC' ) && strlen( $timezone ) > 3 );
166
+ }
167
+
168
+ /**
169
+ * @param string $datetime
170
+ * @param mixed $offset (string or numeric offset)
171
+ * @param bool $invert = false
172
+ *
173
+ * @return string
174
+ */
175
+ public static function apply_offset( $datetime, $offset, $invert = false ) {
176
+ // Normalize
177
+ $offset = strtolower( trim( $offset ) );
178
+
179
+ // Strip any leading "utc" text if set
180
+ if ( 0 === strpos( $offset, 'utc' ) ) {
181
+ $offset = substr( $offset, 3 );
182
+ }
183
+
184
+ // It's possible no adjustment will be needed
185
+ if ( 0 === $offset ) {
186
+ return $datetime;
187
+ }
188
+
189
+ // Convert the offset to minutes for easier handling of fractional offsets
190
+ $offset = (int) ( $offset * 60 );
191
+
192
+ // Invert the offset? Useful for stripping an offset that has already been applied
193
+ if ( $invert ) {
194
+ $offset *= -1;
195
+ }
196
+
197
+ try {
198
+ if ( $offset > 0 ) $offset = '+' . $offset;
199
+ $offset = $offset . ' minutes';
200
+
201
+ $datetime = date_create( $datetime )->modify( $offset );
202
+ return $datetime->format( Tribe__Date_Utils::DBDATETIMEFORMAT );
203
+ }
204
+ catch ( Exception $e ) {
205
+ return $datetime;
206
+ }
207
+ }
208
+
209
+ /**
210
+ * Accepts a unix timestamp and adjusts it so that when it is used to consitute
211
+ * a new datetime string, that string reflects the designated timezone.
212
+ *
213
+ * @param string $unix_timestamp
214
+ * @param string $tzstring
215
+ *
216
+ * @return string
217
+ */
218
+ public static function adjust_timestamp( $unix_timestamp, $tzstring ) {
219
+ try {
220
+ $local = self::get_timezone( $tzstring );
221
+ $datetime = date_create_from_format( 'U', $unix_timestamp )->format( Tribe__Date_Utils::DBDATETIMEFORMAT );
222
+ return date_create_from_format( 'Y-m-d H:i:s', $datetime, $local )->getTimestamp();
223
+ }
224
+ catch( Exception $e ) {
225
+ return $unix_timestamp;
226
+ }
227
+ }
228
+
229
+ /**
230
+ * Returns a DateTimeZone object matching the representation in $tzstring where
231
+ * possible, or else representing UTC (or, in the worst case, false).
232
+ *
233
+ * If optional parameter $with_fallback is true, which is the default, then in
234
+ * the event it cannot find/create the desired timezone it will try to return the
235
+ * UTC DateTimeZone before bailing.
236
+ *
237
+ * @param string $tzstring
238
+ * @param bool $with_fallback = true
239
+ *
240
+ * @return DateTimeZone|false
241
+ */
242
+ public static function get_timezone( $tzstring, $with_fallback = true ) {
243
+ if ( isset( self::$timezones[ $tzstring ] ) ) {
244
+ return self::$timezones[ $tzstring ];
245
+ }
246
+
247
+ try {
248
+ self::$timezones[ $tzstring ] = new DateTimeZone( $tzstring );
249
+ return self::$timezones[ $tzstring ];
250
+ }
251
+ catch ( Exception $e ) {
252
+ if ( $with_fallback ) {
253
+ return self::get_timezone( 'UTC', true );
254
+ }
255
+ }
256
+
257
+ return false;
258
+ }
259
+
260
+ /**
261
+ * Returns a string representing the timezone/offset currently desired for
262
+ * the display of dates and times.
263
+ *
264
+ * @return string
265
+ */
266
+ public static function mode() {
267
+ $mode = self::EVENT_TIMEZONE;
268
+
269
+ if ( 'site' === tribe_get_option( 'tribe_events_timezone_mode' ) ) {
270
+ $mode = self::SITE_TIMEZONE;
271
+ }
272
+
273
+ return apply_filters( 'tribe_events_current_display_timezone', $mode );
274
+ }
275
+
276
+ /**
277
+ * Confirms if the current timezone mode matches the $possible_mode.
278
+ *
279
+ * @param string $possible_mode
280
+ *
281
+ * @return bool
282
+ */
283
+ public static function is_mode( $possible_mode ) {
284
+ return $possible_mode === self::mode();
285
+ }
286
+
287
+ /**
288
+ * Attempts to provide the correct timezone abbreviation for the provided timezone string
289
+ * on the date given (and so should account for daylight saving time, etc).
290
+ *
291
+ * @param string $date
292
+ * @param string $timezone_string
293
+ *
294
+ * @return string
295
+ */
296
+ public static function abbr( $date, $timezone_string ) {
297
+ try {
298
+ return date_create( $date, new DateTimeZone( $timezone_string ) )->format( 'T' );
299
+ }
300
+ catch ( Exception $e ) {
301
+ return '';
302
+ }
303
+ }
304
+ }
common/Tribe/Validate.php ADDED
@@ -0,0 +1,456 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // Don't load directly
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ die( '-1' );
6
+ }
7
+
8
+ if ( ! class_exists( 'Tribe__Validate' ) ) {
9
+ /**
10
+ * helper class that validates fields for use in Settings, MetaBoxes, Users, anywhere.
11
+ * Instantiate whenever you want to validate a field
12
+ *
13
+ */
14
+ class Tribe__Validate {
15
+
16
+ /**
17
+ * the field object to validate
18
+ * @var array
19
+ */
20
+ public $field;
21
+
22
+ /**
23
+ * the field's value
24
+ * @var mixed
25
+ */
26
+ public $value;
27
+
28
+ /**
29
+ * additional arguments for validation
30
+ * used by some methods only
31
+ * @var array
32
+ */
33
+ public $additional_args;
34
+
35
+
36
+ /**
37
+ * the field's label, used in error messages
38
+ * @var string
39
+ */
40
+ public $label;
41
+
42
+ /**
43
+ * the type of validation to perform
44
+ * @var string
45
+ */
46
+ public $type;
47
+
48
+
49
+ /**
50
+ * the result object of the validation
51
+ * @var stdClass
52
+ */
53
+ public $result;
54
+
55
+ /**
56
+ * Class constructor
57
+ *
58
+ * @param string $field_id the field ID to validate
59
+ * @param array $field_id the field object to validate
60
+ * @param mixed $value the value to validate
61
+ *
62
+ * @return array $result the result of the validation
63
+ */
64
+ public function __construct( $field_id, $field, $value, $additional_args = array() ) {
65
+
66
+ // prepare object properties
67
+ $this->result = new stdClass;
68
+ $this->field = $field;
69
+ $this->field['id'] = $field_id;
70
+ $this->value = $value;
71
+ $this->additional_args = $additional_args;
72
+
73
+ // if the field is invalid or incomplete, fail validation
74
+ if ( ! is_array( $this->field ) || ( ! isset( $this->field['validation_type'] ) && ! isset( $this->field['validation_callback'] ) ) ) {
75
+ $this->result->valid = false;
76
+ $this->result->error = __( 'Invalid or incomplete field passed', 'tribe-common' );
77
+ $this->result->error .= ( isset( $this->field['id'] ) ) ? ' (' . __( 'Field ID:', 'tribe-common' ) . ' ' . $this->field['id'] . ' )' : '';
78
+
79
+ return $this->result;
80
+ }
81
+
82
+ // call validation callback if a validation callback function is set
83
+ if ( isset( $this->field['validation_callback'] ) ) {
84
+ if ( function_exists( $this->field['validation_callback'] ) ) {
85
+ if ( ( ! isset( $_POST[ $field_id ] ) || ! $_POST[ $field_id ] || $_POST[ $field_id ] == '' ) && isset( $this->field['can_be_empty'] ) && $this->field['can_be_empty'] ) {
86
+ $this->result->valid = true;
87
+
88
+ return $this->result;
89
+ } else {
90
+ return call_user_func( $validation_callback );
91
+ }
92
+ }
93
+ }
94
+
95
+
96
+ if ( isset( $this->field['validation_type'] ) ) {
97
+ if ( method_exists( $this, $this->field['validation_type'] ) ) {
98
+ // make sure there's a field validation type set for this validation and that such method exists
99
+ $this->type = $this->field['validation_type'];
100
+ $this->label = isset( $this->field['label'] ) ? $this->field['label'] : $this->field['id'];
101
+ if ( ( ! isset( $_POST[ $field_id ] ) || ! $_POST[ $field_id ] || $_POST[ $field_id ] == '' ) && isset( $this->field['can_be_empty'] ) && $this->field['can_be_empty'] ) {
102
+ $this->result->valid = true;
103
+
104
+ return $this->result;
105
+ } else {
106
+ call_user_func( array( $this, $this->type ) ); // run the validation
107
+ }
108
+ } else {
109
+ // invalid validation type set, validation fails
110
+ $this->result->valid = false;
111
+ $this->result->error = __( 'Non-existant field validation function passed', 'tribe-common' );
112
+ $this->result->error .= ( isset( $this->field['id'] ) ) ? ' (' . __( 'Field ID:', 'tribe-common' ) . ' ' . $this->field['id'] . ' ' . _x( 'with function name:', 'non-existant function name passed for field validation', 'tribe-common' ) . ' ' . $this->field['validation_type'] . ' )' : '';
113
+ }
114
+ } else {
115
+ // no validation type set, validation fails
116
+ $this->result->valid = false;
117
+ $this->result->error = __( 'Invalid or incomplete field passed', 'tribe-common' );
118
+ $this->result->error .= ( isset( $this->field['id'] ) ) ? ' (' . __( 'Field ID:', 'tribe-common' ) . ' ' . $this->field['id'] . ' )' : '';
119
+ }
120
+
121
+ // return the result
122
+ return $this->result;
123
+ }
124
+
125
+ /**
126
+ * validates a field as a string containing only letters and numbers
127
+ *
128
+ * @return stdClass validation result object
129
+ */
130
+ public function alpha_numeric() {
131
+ if ( preg_match( '/^[a-zA-Z0-9]+$/', $this->value ) ) {
132
+ $this->result->valid = true;
133
+ } else {
134
+ $this->result->valid = false;
135
+ $this->result->error = sprintf( __( '%s must contain numbers and letters only', 'tribe-common' ), $this->label );
136
+ }
137
+ }
138
+
139
+ /**
140
+ * validates a field as a string containing only letters,
141
+ * numbers and carriage returns
142
+ *
143
+ * @return stdClass validation result object
144
+ */
145
+ public function alpha_numeric_multi_line() {
146
+ if ( preg_match( '/^[a-zA-Z0-9\s]+$/', $this->value ) ) {
147
+ $this->result->valid = true;
148
+ $this->value = tribe_multi_line_remove_empty_lines( $this->value );
149
+ } else {
150
+ $this->result->valid = false;
151
+ $this->result->error = sprintf( __( '%s must contain numbers and letters only', 'tribe-common' ), $this->label );
152
+ }
153
+ }
154
+
155
+ /**
156
+ * validates a field as a string containing only letters,
157
+ * numbers, dots and carriage returns
158
+ *
159
+ * @return stdClass validation result object
160
+ */
161
+ public function alpha_numeric_multi_line_with_dots_and_dashes() {
162
+ if ( preg_match( '/^[a-zA-Z0-9\s.-]+$/', $this->value ) ) {
163
+ $this->result->valid = true;
164
+ $this->value = tribe_multi_line_remove_empty_lines( $this->value );
165
+ } else {
166
+ $this->result->valid = false;
167
+ $this->result->error = sprintf( __( '%s must contain numbers, letters and dots only', 'tribe-common' ), $this->label );
168
+ }
169
+ }
170
+
171
+ /**
172
+ * validates a field as being positive integers
173
+ *
174
+ * @return stdClass validation result object
175
+ */
176
+ public function positive_int() {
177
+ if ( preg_match( '/^[0-9]+$/', $this->value ) && $this->value > 0 ) {
178
+ $this->result->valid = true;
179
+ } else {
180
+ $this->result->valid = false;
181
+ $this->result->error = sprintf( __( '%s must be a positive number.', 'tribe-common' ), $this->label );
182
+ }
183
+ }
184
+
185
+ /**
186
+ * validates & sanitizes fields as URL slugs
187
+ *
188
+ * @return stdClass validation result object
189
+ */
190
+ public function slug() {
191
+ if ( preg_match( '/^[a-zA-Z0-9-_]+$/', $this->value ) ) {
192
+ $this->result->valid = true;
193
+ $this->value = sanitize_title( $this->value );
194
+ } else {
195
+ $this->result->valid = false;
196
+ $this->result->error = sprintf( __( '%s must be a valid slug (numbers, letters, dashes, and underscores).', 'tribe-common' ), $this->label );
197
+ }
198
+ }
199
+
200
+ /**
201
+ * validates & sanitizes fields as URLs
202
+ *
203
+ * @return stdClass validation result object
204
+ */
205
+ public function url() {
206
+
207
+ if ( esc_url_raw( $this->value ) == $this->value ) {
208
+ $this->result->valid = true;
209
+ } else {
210
+ $this->result->valid = false;
211
+ $this->result->error = sprintf( __( '%s must be a valid absolute URL.', 'tribe-common' ), $this->label );
212
+ }
213
+ }
214
+
215
+ /**
216
+ * validates fields that have options (radios, dropdowns, etc.)
217
+ * by making sure the value is part of the options array
218
+ *
219
+ * @return stdClass validation result object
220
+ */
221
+ public function options() {
222
+ if ( array_key_exists( $this->value, $this->field['options'] ) ) {
223
+ $this->value = ( $this->value === 0 ) ? false : $this->value;
224
+ $this->result->valid = true;
225
+ } else {
226
+ $this->result->valid = false;
227
+ $this->result->error = sprintf( __( "%s must have a value that's part of its options.", 'tribe-common' ), $this->label );
228
+ }
229
+ }
230
+
231
+ /**
232
+ * validates fields that have multiple options (checkbox list, etc.)
233
+ * by making sure the value is part of the options array
234
+ *
235
+ * @return stdClass validation result object
236
+ */
237
+ public function options_multi() {
238
+ foreach ( $this->value as $val ) {
239
+ if ( array_key_exists( $val, $this->field['options'] ) ) {
240
+ $this->value = ( $this->value === 0 ) ? false : $this->value;
241
+ $this->result->valid = true;
242
+ } else {
243
+ $this->result->valid = false;
244
+ $this->result->error = sprintf( __( "%s must have a value that's part of its options.", 'tribe-common' ), $this->label );
245
+ }
246
+ }
247
+ }
248
+
249
+ /**
250
+ * validates fields that have options (radios, dropdowns, etc.)
251
+ * by making sure the value is part of the options array
252
+ * then combines the value into an array containg the value
253
+ * and name from the option
254
+ *
255
+ * @return stdClass validation result object
256
+ */
257
+ public function options_with_label() {
258
+ if ( array_key_exists( $this->value, $this->field['options'] ) ) {
259
+ $this->value = ( $this->value === 0 ) ? false : array(
260
+ $this->value,
261
+ $this->field['options'][ $this->value ],
262
+ );
263
+ $this->result->valid = true;
264
+ } else {
265
+ $this->result->valid = false;
266
+ $this->result->error = sprintf( __( "%s must have a value that's part of its options.", 'tribe-common' ), $this->label );
267
+ }
268
+ }
269
+
270
+ /**
271
+ * validates a field as not being able to be the same
272
+ * as the specified value as specified in
273
+ * $this->additional_args['compare_name']
274
+ *
275
+ * @return stdClass validation result object
276
+ */
277
+ public function cannot_be_the_same_as() {
278
+ if ( ! isset( $this->additional_args['compare'] ) ) {
279
+ $this->result->valid = false;
280
+ $this->result->error = sprintf( __( 'Comparison validation failed because no comparison value was provided, for field %s', 'tribe-common' ), $this->field['id'] );
281
+ } else {
282
+ if ( $this->value != $this->additional_args['compare'] ) {
283
+ $this->result = true;
284
+ } else {
285
+ $this->result->valid = false;
286
+ if ( isset( $this->additional_args['compare_name'] ) ) {
287
+ $this->result->error = sprintf( __( '%s cannot be the same as %s.', 'tribe-common' ), $this->label, $this->additional_args['compare_name'] );
288
+ } else {
289
+ $this->result->error = sprintf( __( '%s cannot be a duplicate', 'tribe-common' ), $this->label );
290
+ }
291
+ }
292
+ }
293
+ }
294
+
295
+ /**
296
+ * validates a field as being a number or a percentage
297
+ *
298
+ * @return stdClass validation result object
299
+ */
300
+ public function number_or_percent() {
301
+ if ( preg_match( '/^[0-9]+%{0,1}$/', $this->value ) ) {
302
+ $this->result->valid = true;
303
+ } else {
304
+ $this->result->valid = false;
305
+ $this->result->error = sprintf( __( '%s must be a number or percentage.', 'tribe-common' ), $this->label );
306
+ }
307
+ }
308
+
309
+ /**
310
+ * sanitizes an html field
311
+ *
312
+ * @return stdClass validation result object
313
+ */
314
+ public function html() {
315
+ $this->value = balanceTags( $this->value );
316
+ $this->result->valid = true;
317
+ }
318
+
319
+ /**
320
+ * sanitizes a license key
321
+ *
322
+ * @return stdClass validation result object
323
+ */
324
+ public function license_key() {
325
+ $this->value = trim( $this->value );
326
+ $this->result->valid = true;
327
+ }
328
+
329
+ /**
330
+ * sanitizes a textarea field
331
+ *
332
+ * @return stdClass validation result object
333
+ */
334
+ public function textarea() {
335
+ $this->value = wp_kses( $this->value, array() );
336
+ $this->result->valid = true;
337
+ }
338
+
339
+ /**
340
+ * sanitizes a field as beeing a boolean
341
+ *
342
+ * @return stdClass validation result object
343
+ */
344
+ public function boolean() {
345
+ $this->value = (bool) $this->value;
346
+ $this->result->valid = true;
347
+ }
348
+
349
+ /**
350
+ * validates a Google Maps Zoom field
351
+ *
352
+ * @return stdClass validation result object
353
+ */
354
+ public function google_maps_zoom() {
355
+ if ( preg_match( '/^([0-9]|[0-1][0-9]|2[0-1])$/', $this->value ) ) {
356
+ $this->result->valid = true;
357
+ } else {
358
+ $this->result->valid = false;
359
+ $this->result->error = sprintf( __( '%s must be a number between 0 and 21.', 'tribe-common' ), $this->label );
360
+ }
361
+ }
362
+
363
+ /**
364
+ * validates a field as being part of an address
365
+ * allows for letters, numbers, dashses and spaces only
366
+ *
367
+ * @return stdClass validation result object
368
+ */
369
+ public function address() {
370
+ $this->value = stripslashes( $this->value );
371
+ if ( preg_match( "/^[0-9\S '-]+$/", $this->value ) ) {
372
+ $this->result->valid = true;
373
+ } else {
374
+ $this->result->valid = false;
375
+ $this->result->error = sprintf( __( '%s must consist of letters, numbers, dashes, apostrophes, and spaces only.', 'tribe-common' ), $this->label );
376
+ }
377
+ }
378
+
379
+ /**
380
+ * validates a field as being a city or province
381
+ * allows for letters, dashses and spaces only
382
+ *
383
+ * @return stdClass validation result object
384
+ */
385
+ public function city_or_province() {
386
+ $this->value = stripslashes( $this->value );
387
+ if ( preg_match( "/^[\D '\-]+$/", $this->value ) ) {
388
+ $this->result->valid = true;
389
+ } else {
390
+ $this->result->valid = false;
391
+ $this->result->error = sprintf( __( '%s must consist of letters, spaces, apostrophes, and dashes.', 'tribe-common' ), $this->label );
392
+ }
393
+ }
394
+
395
+ /**
396
+ * validates a field as being a zip code
397
+ *
398
+ * @return stdClass validation result object
399
+ */
400
+ public function zip() {
401
+ if ( preg_match( '/^[0-9]{5}$/', $this->value ) ) {
402
+ $this->result->valid = true;
403
+ } else {
404
+ $this->result->valid = false;
405
+ $this->result->error = sprintf( __( '%s must consist of 5 numbers.', 'tribe-common' ), $this->label );
406
+ }
407
+ }
408
+
409
+ /**
410
+ * validates a field as being a phone number
411
+ *
412
+ * @return stdClass validation result object
413
+ */
414
+ public function phone() {
415
+ if ( preg_match( '/^[0-9\(\)\+ -]+$/', $this->value ) ) {
416
+ $this->result->valid = true;
417
+ } else {
418
+ $this->result->valid = false;
419
+ $this->result->error = sprintf( __( '%s must be a phone number.', 'tribe-common' ), $this->label );
420
+ }
421
+ }
422
+
423
+ /**
424
+ * validates & sanitizes a field as being a country list
425
+ *
426
+ * @return stdClass validation result object
427
+ */
428
+ public function country_list() {
429
+ $country_rows = explode( "\n", $this->value );
430
+ if ( is_array( $country_rows ) ) {
431
+ foreach ( $country_rows as $crow ) {
432
+ $country = explode( ',', $crow );
433
+ if ( ! isset( $country[0] ) || ! isset( $country[1] ) ) {
434
+ $this->result->valid = false;
435
+ $this->result->error = sprintf( __( 'Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom.', 'tribe-common' ), $this->label );
436
+ $this->value = wp_kses( $this->value, array() );
437
+
438
+ return;
439
+ }
440
+ }
441
+ }
442
+ $this->result->valid = true;
443
+ }
444
+
445
+ /**
446
+ * automatically validate a field regardless of the value
447
+ * Don't use this unless you know what you are doing
448
+ *
449
+ * @return stdClass validation result object
450
+ */
451
+ public function none() {
452
+ $this->result->valid = true;
453
+ }
454
+
455
+ } // end class
456
+ } // endif class_exists
common/Tribe/View_Helpers.php ADDED
@@ -0,0 +1,598 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Various helper methods used in views
4
+ */
5
+
6
+ // Don't load directly
7
+ if ( ! defined( 'ABSPATH' ) ) {
8
+ die( '-1' );
9
+ }
10
+
11
+ if ( ! class_exists( 'Tribe__View_Helpers' ) ) {
12
+ class Tribe__View_Helpers {
13
+
14
+ /**
15
+ * Get the countries being used and available for the plugin.
16
+ *
17
+ * @param string $postId The post ID.
18
+ * @param bool $useDefault Should we use the defaults?
19
+ *
20
+ * @return array The countries array.
21
+ */
22
+ public static function constructCountries( $postId = '', $useDefault = true ) {
23
+
24
+ if ( tribe_get_option( 'tribeEventsCountries' ) != '' ) {
25
+ $countries = array(
26
+ '' => __( 'Select a Country:', 'tribe-common' ),
27
+ );
28
+
29
+ $country_rows = explode( "\n", tribe_get_option( 'tribeEventsCountries' ) );
30
+ foreach ( $country_rows as $crow ) {
31
+ $country = explode( ',', $crow );
32
+ if ( isset( $country[0] ) && isset( $country[1] ) ) {
33
+ $country[0] = trim( $country[0] );
34
+ $country[1] = trim( $country[1] );
35
+
36
+ if ( $country[0] && $country[1] ) {
37
+ $countries[ $country[0] ] = $country[1];
38
+ }
39
+ }
40
+ }
41
+ }
42
+
43
+ if ( ! isset( $countries ) || ! is_array( $countries ) || count( $countries ) == 1 ) {
44
+ $countries = array(
45
+ '' => __( 'Select a Country:', 'tribe-common' ),
46
+ 'US' => __( 'United States', 'tribe-common' ),
47
+ 'AF' => __( 'Afghanistan', 'tribe-common' ),
48
+ 'AL' => __( 'Albania', 'tribe-common' ),
49
+ 'DZ' => __( 'Algeria', 'tribe-common' ),
50
+ 'AS' => __( 'American Samoa', 'tribe-common' ),
51
+ 'AD' => __( 'Andorra', 'tribe-common' ),
52
+ 'AO' => __( 'Angola', 'tribe-common' ),
53
+ 'AI' => __( 'Anguilla', 'tribe-common' ),
54
+ 'AQ' => __( 'Antarctica', 'tribe-common' ),
55
+ 'AG' => __( 'Antigua And Barbuda', 'tribe-common' ),
56
+ 'AR' => __( 'Argentina', 'tribe-common' ),
57
+ 'AM' => __( 'Armenia', 'tribe-common' ),
58
+ 'AW' => __( 'Aruba', 'tribe-common' ),
59
+ 'AU' => __( 'Australia', 'tribe-common' ),
60
+ 'AT' => __( 'Austria', 'tribe-common' ),
61
+ 'AZ' => __( 'Azerbaijan', 'tribe-common' ),
62
+ 'BS' => __( 'Bahamas', 'tribe-common' ),
63
+ 'BH' => __( 'Bahrain', 'tribe-common' ),
64
+ 'BD' => __( 'Bangladesh', 'tribe-common' ),
65
+ 'BB' => __( 'Barbados', 'tribe-common' ),
66
+ 'BY' => __( 'Belarus', 'tribe-common' ),
67
+ 'BE' => __( 'Belgium', 'tribe-common' ),
68
+ 'BZ' => __( 'Belize', 'tribe-common' ),
69
+ 'BJ' => __( 'Benin', 'tribe-common' ),
70
+ 'BM' => __( 'Bermuda', 'tribe-common' ),
71
+ 'BT' => __( 'Bhutan', 'tribe-common' ),
72
+ 'BO' => __( 'Bolivia', 'tribe-common' ),
73
+ 'BA' => __( 'Bosnia And Herzegowina', 'tribe-common' ),
74
+ 'BW' => __( 'Botswana', 'tribe-common' ),
75
+ 'BV' => __( 'Bouvet Island', 'tribe-common' ),
76
+ 'BR' => __( 'Brazil', 'tribe-common' ),
77
+ 'IO' => __( 'British Indian Ocean Territory', 'tribe-common' ),
78
+ 'BN' => __( 'Brunei Darussalam', 'tribe-common' ),
79
+ 'BG' => __( 'Bulgaria', 'tribe-common' ),
80
+ 'BF' => __( 'Burkina Faso', 'tribe-common' ),
81
+ 'BI' => __( 'Burundi', 'tribe-common' ),
82
+ 'KH' => __( 'Cambodia', 'tribe-common' ),
83
+ 'CM' => __( 'Cameroon', 'tribe-common' ),
84
+ 'CA' => __( 'Canada', 'tribe-common' ),
85
+ 'CV' => __( 'Cape Verde', 'tribe-common' ),
86
+ 'KY' => __( 'Cayman Islands', 'tribe-common' ),
87
+ 'CF' => __( 'Central African Republic', 'tribe-common' ),
88
+ 'TD' => __( 'Chad', 'tribe-common' ),
89
+ 'CL' => __( 'Chile', 'tribe-common' ),
90
+ 'CN' => __( 'China', 'tribe-common' ),
91
+ 'CX' => __( 'Christmas Island', 'tribe-common' ),
92
+ 'CC' => __( 'Cocos (Keeling) Islands', 'tribe-common' ),
93
+ 'CO' => __( 'Colombia', 'tribe-common' ),
94
+ 'KM' => __( 'Comoros', 'tribe-common' ),
95
+ 'CG' => __( 'Congo', 'tribe-common' ),
96
+ 'CD' => __( 'Congo, The Democratic Republic Of The', 'tribe-common' ),
97
+ 'CK' => __( 'Cook Islands', 'tribe-common' ),
98
+ 'CR' => __( 'Costa Rica', 'tribe-common' ),
99
+ 'CI' => __( "Cote D'Ivoire", 'tribe-common' ),
100
+ 'HR' => __( 'Croatia (Local Name: Hrvatska)', 'tribe-common' ),
101
+ 'CU' => __( 'Cuba', 'tribe-common' ),
102
+ 'CY' => __( 'Cyprus', 'tribe-common' ),
103
+ 'CZ' => __( 'Czech Republic', 'tribe-common' ),
104
+ 'DK' => __( 'Denmark', 'tribe-common' ),
105
+ 'DJ' => __( 'Djibouti', 'tribe-common' ),
106
+ 'DM' => __( 'Dominica', 'tribe-common' ),
107
+ 'DO' => __( 'Dominican Republic', 'tribe-common' ),
108
+ 'TP' => __( 'East Timor', 'tribe-common' ),
109
+ 'EC' => __( 'Ecuador', 'tribe-common' ),
110
+ 'EG' => __( 'Egypt', 'tribe-common' ),
111
+ 'SV' => __( 'El Salvador', 'tribe-common' ),
112
+ 'GQ' => __( 'Equatorial Guinea', 'tribe-common' ),
113
+ 'ER' => __( 'Eritrea', 'tribe-common' ),
114
+ 'EE' => __( 'Estonia', 'tribe-common' ),
115
+ 'ET' => __( 'Ethiopia', 'tribe-common' ),
116
+ 'FK' => __( 'Falkland Islands (Malvinas)', 'tribe-common' ),
117
+ 'FO' => __( 'Faroe Islands', 'tribe-common' ),
118
+ 'FJ' => __( 'Fiji', 'tribe-common' ),
119
+ 'FI' => __( 'Finland', 'tribe-common' ),
120
+ 'FR' => __( 'France', 'tribe-common' ),
121
+ 'FX' => __( 'France, Metropolitan', 'tribe-common' ),
122
+ 'GF' => __( 'French Guiana', 'tribe-common' ),
123
+ 'PF' => __( 'French Polynesia', 'tribe-common' ),
124
+ 'TF' => __( 'French Southern Territories', 'tribe-common' ),
125
+ 'GA' => __( 'Gabon', 'tribe-common' ),
126
+ 'GM' => __( 'Gambia', 'tribe-common' ),
127
+ 'GE' => __( 'Georgia', 'tribe-common' ),
128
+ 'DE' => __( 'Germany', 'tribe-common' ),
129
+ 'GH' => __( 'Ghana', 'tribe-common' ),
130
+ 'GI' => __( 'Gibraltar', 'tribe-common' ),
131
+ 'GR' => __( 'Greece', 'tribe-common' ),
132
+ 'GL' => __( 'Greenland', 'tribe-common' ),
133
+ 'GD' => __( 'Grenada', 'tribe-common' ),
134
+ 'GP' => __( 'Guadeloupe', 'tribe-common' ),
135
+ 'GU' => __( 'Guam', 'tribe-common' ),
136
+ 'GT' => __( 'Guatemala', 'tribe-common' ),
137
+ 'GN' => __( 'Guinea', 'tribe-common' ),
138
+ 'GW' => __( 'Guinea-Bissau', 'tribe-common' ),
139
+ 'GY' => __( 'Guyana', 'tribe-common' ),
140
+ 'HT' => __( 'Haiti', 'tribe-common' ),
141
+ 'HM' => __( 'Heard And Mc Donald Islands', 'tribe-common' ),
142
+ 'VA' => __( 'Holy See (Vatican City State)', 'tribe-common' ),
143
+ 'HN' => __( 'Honduras', 'tribe-common' ),
144
+ 'HK' => __( 'Hong Kong', 'tribe-common' ),
145
+ 'HU' => __( 'Hungary', 'tribe-common' ),
146
+ 'IS' => __( 'Iceland', 'tribe-common' ),
147
+ 'IN' => __( 'India', 'tribe-common' ),
148
+ 'ID' => __( 'Indonesia', 'tribe-common' ),
149
+ 'IR' => __( 'Iran (Islamic Republic Of)', 'tribe-common' ),
150
+ 'IQ' => __( 'Iraq', 'tribe-common' ),
151
+ 'IE' => __( 'Ireland', 'tribe-common' ),
152
+ 'IL' => __( 'Israel', 'tribe-common' ),
153
+ 'IT' => __( 'Italy', 'tribe-common' ),
154
+ 'JM' => __( 'Jamaica', 'tribe-common' ),
155
+ 'JP' => __( 'Japan', 'tribe-common' ),
156
+ 'JO' => __( 'Jordan', 'tribe-common' ),
157
+ 'KZ' => __( 'Kazakhstan', 'tribe-common' ),
158
+ 'KE' => __( 'Kenya', 'tribe-common' ),
159
+ 'KI' => __( 'Kiribati', 'tribe-common' ),
160
+ 'KP' => __( "Korea, Democratic People's Republic Of", 'tribe-common' ),
161
+ 'KR' => __( 'Korea, Republic Of', 'tribe-common' ),
162
+ 'KW' => __( 'Kuwait', 'tribe-common' ),
163
+ 'KG' => __( 'Kyrgyzstan', 'tribe-common' ),
164
+ 'LA' => __( "Lao People's Democratic Republic", 'tribe-common' ),
165
+ 'LV' => __( 'Latvia', 'tribe-common' ),
166
+ 'LB' => __( 'Lebanon', 'tribe-common' ),
167
+ 'LS' => __( 'Lesotho', 'tribe-common' ),
168
+ 'LR' => __( 'Liberia', 'tribe-common' ),
169
+ 'LY' => __( 'Libya', 'tribe-common' ),
170
+ 'LI' => __( 'Liechtenstein', 'tribe-common' ),
171
+ 'LT' => __( 'Lithuania', 'tribe-common' ),
172
+ 'LU' => __( 'Luxembourg', 'tribe-common' ),
173
+ 'MO' => __( 'Macau', 'tribe-common' ),
174
+ 'MK' => __( 'Macedonia', 'tribe-common' ),
175
+ 'MG' => __( 'Madagascar', 'tribe-common' ),
176
+ 'MW' => __( 'Malawi', 'tribe-common' ),
177
+ 'MY' => __( 'Malaysia', 'tribe-common' ),
178
+ 'MV' => __( 'Maldives', 'tribe-common' ),
179
+ 'ML' => __( 'Mali', 'tribe-common' ),
180
+ 'MT' => __( 'Malta', 'tribe-common' ),
181
+ 'MH' => __( 'Marshall Islands', 'tribe-common' ),
182
+ 'MQ' => __( 'Martinique', 'tribe-common' ),
183
+ 'MR' => __( 'Mauritania', 'tribe-common' ),
184
+ 'MU' => __( 'Mauritius', 'tribe-common' ),
185
+ 'YT' => __( 'Mayotte', 'tribe-common' ),
186
+ 'MX' => __( 'Mexico', 'tribe-common' ),
187
+ 'FM' => __( 'Micronesia, Federated States Of', 'tribe-common' ),
188
+ 'MD' => __( 'Moldova, Republic Of', 'tribe-common' ),
189
+ 'MC' => __( 'Monaco', 'tribe-common' ),
190
+ 'MN' => __( 'Mongolia', 'tribe-common' ),
191
+ 'ME' => __( 'Montenegro', 'tribe-common' ),
192
+ 'MS' => __( 'Montserrat', 'tribe-common' ),
193
+ 'MA' => __( 'Morocco', 'tribe-common' ),
194
+ 'MZ' => __( 'Mozambique', 'tribe-common' ),
195
+ 'MM' => __( 'Myanmar', 'tribe-common' ),
196
+ 'NA' => __( 'Namibia', 'tribe-common' ),
197
+ 'NR' => __( 'Nauru', 'tribe-common' ),
198
+ 'NP' => __( 'Nepal', 'tribe-common' ),
199
+ 'NL' => __( 'Netherlands', 'tribe-common' ),
200
+ 'AN' => __( 'Netherlands Antilles', 'tribe-common' ),
201
+ 'NC' => __( 'New Caledonia', 'tribe-common' ),
202
+ 'NZ' => __( 'New Zealand', 'tribe-common' ),
203
+ 'NI' => __( 'Nicaragua', 'tribe-common' ),
204
+ 'NE' => __( 'Niger', 'tribe-common' ),
205
+ 'NG' => __( 'Nigeria', 'tribe-common' ),
206
+ 'NU' => __( 'Niue', 'tribe-common' ),
207
+ 'NF' => __( 'Norfolk Island', 'tribe-common' ),
208
+ 'MP' => __( 'Northern Mariana Islands', 'tribe-common' ),
209
+ 'NO' => __( 'Norway', 'tribe-common' ),
210
+ 'OM' => __( 'Oman', 'tribe-common' ),
211
+ 'PK' => __( 'Pakistan', 'tribe-common' ),
212
+ 'PW' => __( 'Palau', 'tribe-common' ),
213
+ 'PA' => __( 'Panama', 'tribe-common' ),
214
+ 'PG' => __( 'Papua New Guinea', 'tribe-common' ),
215
+ 'PY' => __( 'Paraguay', 'tribe-common' ),
216
+ 'PE' => __( 'Peru', 'tribe-common' ),
217
+ 'PH' => __( 'Philippines', 'tribe-common' ),
218
+ 'PN' => __( 'Pitcairn', 'tribe-common' ),
219
+ 'PL' => __( 'Poland', 'tribe-common' ),
220
+ 'PT' => __( 'Portugal', 'tribe-common' ),
221
+ 'PR' => __( 'Puerto Rico', 'tribe-common' ),
222
+ 'QA' => __( 'Qatar', 'tribe-common' ),
223
+ 'RE' => __( 'Reunion', 'tribe-common' ),
224
+ 'RO' => __( 'Romania', 'tribe-common' ),
225
+ 'RU' => __( 'Russian Federation', 'tribe-common' ),
226
+ 'RW' => __( 'Rwanda', 'tribe-common' ),
227
+ 'KN' => __( 'Saint Kitts And Nevis', 'tribe-common' ),
228
+ 'LC' => __( 'Saint Lucia', 'tribe-common' ),
229
+ 'VC' => __( 'Saint Vincent And The Grenadines', 'tribe-common' ),
230
+ 'WS' => __( 'Samoa', 'tribe-common' ),
231
+ 'SM' => __( 'San Marino', 'tribe-common' ),
232
+ 'ST' => __( 'Sao Tome And Principe', 'tribe-common' ),
233
+ 'SA' => __( 'Saudi Arabia', 'tribe-common' ),
234
+ 'SN' => __( 'Senegal', 'tribe-common' ),
235
+ 'RS' => __( 'Serbia', 'tribe-common' ),
236
+ 'SC' => __( 'Seychelles', 'tribe-common' ),
237
+ 'SL' => __( 'Sierra Leone', 'tribe-common' ),
238
+ 'SG' => __( 'Singapore', 'tribe-common' ),
239
+ 'SK' => __( 'Slovakia (Slovak Republic)', 'tribe-common' ),
240
+ 'SI' => __( 'Slovenia', 'tribe-common' ),
241
+ 'SB' => __( 'Solomon Islands', 'tribe-common' ),
242
+ 'SO' => __( 'Somalia', 'tribe-common' ),
243
+ 'ZA' => __( 'South Africa', 'tribe-common' ),
244
+ 'GS' => __( 'South Georgia, South Sandwich Islands', 'tribe-common' ),
245
+ 'ES' => __( 'Spain', 'tribe-common' ),
246
+ 'LK' => __( 'Sri Lanka', 'tribe-common' ),
247
+ 'SH' => __( 'St. Helena', 'tribe-common' ),
248
+ 'PM' => __( 'St. Pierre And Miquelon', 'tribe-common' ),
249
+ 'SD' => __( 'Sudan', 'tribe-common' ),
250
+ 'SR' => __( 'Suriname', 'tribe-common' ),
251
+ 'SJ' => __( 'Svalbard And Jan Mayen Islands', 'tribe-common' ),
252
+ 'SZ' => __( 'Swaziland', 'tribe-common' ),
253
+ 'SE' => __( 'Sweden', 'tribe-common' ),
254
+ 'CH' => __( 'Switzerland', 'tribe-common' ),
255
+ 'SY' => __( 'Syrian Arab Republic', 'tribe-common' ),
256
+ 'TW' => __( 'Taiwan', 'tribe-common' ),
257
+ 'TJ' => __( 'Tajikistan', 'tribe-common' ),
258
+ 'TZ' => __( 'Tanzania, United Republic Of', 'tribe-common' ),
259
+ 'TH' => __( 'Thailand', 'tribe-common' ),
260
+ 'TG' => __( 'Togo', 'tribe-common' ),
261
+ 'TK' => __( 'Tokelau', 'tribe-common' ),
262
+ 'TO' => __( 'Tonga', 'tribe-common' ),
263
+ 'TT' => __( 'Trinidad And Tobago', 'tribe-common' ),
264
+ 'TN' => __( 'Tunisia', 'tribe-common' ),
265
+ 'TR' => __( 'Turkey', 'tribe-common' ),
266
+ 'TM' => __( 'Turkmenistan', 'tribe-common' ),
267
+ 'TC' => __( 'Turks And Caicos Islands', 'tribe-common' ),
268
+ 'TV' => __( 'Tuvalu', 'tribe-common' ),
269
+ 'UG' => __( 'Uganda', 'tribe-common' ),
270
+ 'UA' => __( 'Ukraine', 'tribe-common' ),
271
+ 'AE' => __( 'United Arab Emirates', 'tribe-common' ),
272
+ 'GB' => __( 'United Kingdom', 'tribe-common' ),
273
+ 'UM' => __( 'United States Minor Outlying Islands', 'tribe-common' ),
274
+ 'UY' => __( 'Uruguay', 'tribe-common' ),
275
+ 'UZ' => __( 'Uzbekistan', 'tribe-common' ),
276
+ 'VU' => __( 'Vanuatu', 'tribe-common' ),
277
+ 'VE' => __( 'Venezuela', 'tribe-common' ),
278
+ 'VN' => __( 'Viet Nam', 'tribe-common' ),
279
+ 'VG' => __( 'Virgin Islands (British)', 'tribe-common' ),
280
+ 'VI' => __( 'Virgin Islands (U.S.)', 'tribe-common' ),
281
+ 'WF' => __( 'Wallis And Futuna Islands', 'tribe-common' ),
282
+ 'EH' => __( 'Western Sahara', 'tribe-common' ),
283
+ 'YE' => __( 'Yemen', 'tribe-common' ),
284
+ 'ZM' => __( 'Zambia', 'tribe-common' ),
285
+ 'ZW' => __( 'Zimbabwe', 'tribe-common' ),
286
+ );
287
+ }
288
+ if ( ( $postId || $useDefault ) ) {
289
+ $countryValue = get_post_meta( $postId, '_EventCountry', true );
290
+ if ( $countryValue ) {
291
+ $defaultCountry = array( array_search( $countryValue, $countries ), $countryValue );
292
+ } else {
293
+ $defaultCountry = tribe_get_default_value( 'country' );
294
+ }
295
+ if ( $defaultCountry && $defaultCountry[0] != '' ) {
296
+ $selectCountry = array_shift( $countries );
297
+ asort( $countries );
298
+ $countries = array( $defaultCountry[0] => __( $defaultCountry[1], 'tribe-common' ) ) + $countries;
299
+ $countries = array( '' => __( $selectCountry, 'tribe-common' ) ) + $countries;
300
+ array_unique( $countries );
301
+ }
302
+
303
+ return $countries;
304
+ } else {
305
+ return $countries;
306
+ }
307
+ }
308
+
309
+ /**
310
+ * Get the i18ned states available to the plugin.
311
+ *
312
+ * @return array The states array.
313
+ */
314
+ public static function loadStates() {
315
+ return array(
316
+ 'AL' => __( 'Alabama', 'tribe-common' ),
317
+ 'AK' => __( 'Alaska', 'tribe-common' ),
318
+ 'AZ' => __( 'Arizona', 'tribe-common' ),
319
+ 'AR' => __( 'Arkansas', 'tribe-common' ),
320
+ 'CA' => __( 'California', 'tribe-common' ),
321
+ 'CO' => __( 'Colorado', 'tribe-common' ),
322
+ 'CT' => __( 'Connecticut', 'tribe-common' ),
323
+ 'DE' => __( 'Delaware', 'tribe-common' ),
324
+ 'DC' => __( 'District of Columbia', 'tribe-common' ),
325
+ 'FL' => __( 'Florida', 'tribe-common' ),
326
+ 'GA' => __( 'Georgia', 'tribe-common' ),
327
+ 'HI' => __( 'Hawaii', 'tribe-common' ),
328
+ 'ID' => __( 'Idaho', 'tribe-common' ),
329
+ 'IL' => __( 'Illinois', 'tribe-common' ),
330
+ 'IN' => __( 'Indiana', 'tribe-common' ),
331
+ 'IA' => __( 'Iowa', 'tribe-common' ),
332
+ 'KS' => __( 'Kansas', 'tribe-common' ),
333
+ 'KY' => __( 'Kentucky', 'tribe-common' ),
334
+ 'LA' => __( 'Louisiana', 'tribe-common' ),
335
+ 'ME' => __( 'Maine', 'tribe-common' ),
336
+ 'MD' => __( 'Maryland', 'tribe-common' ),
337
+ 'MA' => __( 'Massachusetts', 'tribe-common' ),
338
+ 'MI' => __( 'Michigan', 'tribe-common' ),
339
+ 'MN' => __( 'Minnesota', 'tribe-common' ),
340
+ 'MS' => __( 'Mississippi', 'tribe-common' ),
341
+ 'MO' => __( 'Missouri', 'tribe-common' ),
342
+ 'MT' => __( 'Montana', 'tribe-common' ),
343
+ 'NE' => __( 'Nebraska', 'tribe-common' ),
344
+ 'NV' => __( 'Nevada', 'tribe-common' ),
345
+ 'NH' => __( 'New Hampshire', 'tribe-common' ),
346
+ 'NJ' => __( 'New Jersey', 'tribe-common' ),
347
+ 'NM' => __( 'New Mexico', 'tribe-common' ),
348
+ 'NY' => __( 'New York', 'tribe-common' ),
349
+ 'NC' => __( 'North Carolina', 'tribe-common' ),
350
+ 'ND' => __( 'North Dakota', 'tribe-common' ),
351
+ 'OH' => __( 'Ohio', 'tribe-common' ),
352
+ 'OK' => __( 'Oklahoma', 'tribe-common' ),
353
+ 'OR' => __( 'Oregon', 'tribe-common' ),
354
+ 'PA' => __( 'Pennsylvania', 'tribe-common' ),
355
+ 'RI' => __( 'Rhode Island', 'tribe-common' ),
356
+ 'SC' => __( 'South Carolina', 'tribe-common' ),
357
+ 'SD' => __( 'South Dakota', 'tribe-common' ),
358
+ 'TN' => __( 'Tennessee', 'tribe-common' ),
359
+ 'TX' => __( 'Texas', 'tribe-common' ),
360
+ 'UT' => __( 'Utah', 'tribe-common' ),
361
+ 'VT' => __( 'Vermont', 'tribe-common' ),
362
+ 'VA' => __( 'Virginia', 'tribe-common' ),
363
+ 'WA' => __( 'Washington', 'tribe-common' ),
364
+ 'WV' => __( 'West Virginia', 'tribe-common' ),
365
+ 'WI' => __( 'Wisconsin', 'tribe-common' ),
366
+ 'WY' => __( 'Wyoming', 'tribe-common' ),
367
+ );
368
+ }
369
+
370
+ /**
371
+ * Builds a set of options for displaying an hour chooser
372
+ *
373
+ * @param string $date the current date (optional)
374
+ * @param bool $isStart
375
+ *
376
+ * @return string a set of HTML options with hours (current hour selected)
377
+ */
378
+ public static function getHourOptions( $date = '', $isStart = false ) {
379
+ $hours = self::hours();
380
+
381
+ if ( count( $hours ) == 12 ) {
382
+ $h = 'h';
383
+ } else {
384
+ $h = 'H';
385
+ }
386
+ $options = '';
387
+
388
+ if ( empty( $date ) ) {
389
+ $hour = ( $isStart ) ? '08' : ( count( $hours ) == 12 ? '05' : '17' );
390
+ } else {
391
+ $timestamp = strtotime( $date );
392
+ $hour = date( $h, $timestamp );
393
+ // fix hours if time_format has changed from what is saved
394
+ if ( preg_match( '(pm|PM)', $timestamp ) && $h == 'H' ) {
395
+ $hour = $hour + 12;
396
+ }
397
+ if ( $hour > 12 && $h == 'h' ) {
398
+ $hour = $hour - 12;
399
+ }
400
+ }
401
+
402
+ $hour = apply_filters( 'tribe_get_hour_options', $hour, $date, $isStart );
403
+
404
+ foreach ( $hours as $hourText ) {
405
+ if ( $hour == $hourText ) {
406
+ $selected = 'selected="selected"';
407
+ } else {
408
+ $selected = '';
409
+ }
410
+ $options .= "<option value='$hourText' $selected>$hourText</option>\n";
411
+ }
412
+
413
+ return $options;
414
+ }
415
+
416
+ /**
417
+ * Builds a set of options for displaying a minute chooser
418
+ *
419
+ * @param string $date the current date (optional)
420
+ * @param bool $isStart
421
+ *
422
+ * @return string a set of HTML options with minutes (current minute selected)
423
+ */
424
+ public static function getMinuteOptions( $date = '', $isStart = false ) {
425
+ $minutes = self::minutes();
426
+ $options = '';
427
+
428
+ if ( empty( $date ) ) {
429
+ $minute = '00';
430
+ } else {
431
+ $minute = date( 'i', strtotime( $date ) );
432
+ }
433
+
434
+ $minute = apply_filters( 'tribe_get_minute_options', $minute, $date, $isStart );
435
+
436
+ foreach ( $minutes as $minuteText ) {
437
+ if ( $minute == $minuteText ) {
438
+ $selected = 'selected="selected"';
439
+ } else {
440
+ $selected = '';
441
+ }
442
+ $options .= "<option value='$minuteText' $selected>$minuteText</option>\n";
443
+ }
444
+
445
+ return $options;
446
+ }
447
+
448
+ /**
449
+ * Helper method to return an array of 1-12 for hours
450
+ *
451
+ * @return array The hours array.
452
+ */
453
+ private static function hours() {
454
+ $hours = array();
455
+ $rangeMax = self::is_24hr_format() ? 23 : 12;
456
+ $rangeStart = $rangeMax > 12 ? 0 : 1;
457
+ foreach ( range( $rangeStart, $rangeMax ) as $hour ) {
458
+ if ( $hour < 10 ) {
459
+ $hour = '0' . $hour;
460
+ }
461
+ $hours[ $hour ] = $hour;
462
+ }
463
+
464
+ // In a 12hr context lets put 12 at the start (so the sequence will run 12, 1, 2, 3 ... 11)
465
+ if ( 12 === $rangeMax ) {
466
+ array_unshift( $hours, array_pop( $hours ) );
467
+ }
468
+
469
+ return $hours;
470
+ }
471
+
472
+ /**
473
+ * Determines if the provided date/time format (or else the default WordPress time_format)
474
+ * is 24hr or not.
475
+ *
476
+ * In inconclusive cases, such as if there are now hour-format characters, 12hr format is
477
+ * assumed.
478
+ *
479
+ * @param null $format
480
+ * @return bool
481
+ */
482
+ public static function is_24hr_format( $format = null ) {
483
+ // Use the provided format or else use the value of the current time_format setting
484
+ $format = ( null === $format ) ? get_option( 'time_format', Tribe__Date_Utils::TIMEFORMAT ) : $format;
485
+
486
+ // Count instances of the H and G symbols
487
+ $h_symbols = substr_count( $format, 'H' );
488
+ $g_symbols = substr_count( $format, 'G' );
489
+
490
+ // If none have been found then consider the format to be 12hr
491
+ if ( ! $h_symbols && ! $g_symbols ) return false;
492
+
493
+ // It's possible H or G have been included as escaped characters
494
+ $h_escaped = substr_count( $format, '\H' );
495
+ $g_escaped = substr_count( $format, '\G' );
496
+
497
+ // Final check, accounting for possibility of escaped values
498
+ return ( $h_symbols > $h_escaped || $g_symbols > $g_escaped );
499
+ }
500
+
501
+ /**
502
+ * Helper method to return an array of 00-59 for minutes
503
+ *
504
+ * @return array The minutes array.
505
+ */
506
+ private static function minutes() {
507
+ $minutes = array();
508
+ /**
509
+ * Filters the amount of minutes to increment the minutes drop-down by
510
+ *
511
+ * @param int Increment amount (defaults to 5)
512
+ */
513
+ $increment = apply_filters( 'tribe_minutes_increment', 5 );
514
+ for ( $minute = 0; $minute < 60; $minute += $increment ) {
515
+ if ( $minute < 10 ) {
516
+ $minute = '0' . $minute;
517
+ }
518
+ $minutes[ $minute ] = $minute;
519
+ }
520
+
521
+ return $minutes;
522
+ }
523
+
524
+ /**
525
+ * Builds a set of options for diplaying a meridian chooser
526
+ *
527
+ * @param string $date YYYY-MM-DD HH:MM:SS to select (optional)
528
+ * @param bool $isStart
529
+ *
530
+ * @return string a set of HTML options with all meridians
531
+ */
532
+ public static function getMeridianOptions( $date = '', $isStart = false ) {
533
+ if ( strstr( get_option( 'time_format', Tribe__Date_Utils::TIMEFORMAT ), 'A' ) ) {
534
+ $a = 'A';
535
+ $meridians = array( 'AM', 'PM' );
536
+ } else {
537
+ $a = 'a';
538
+ $meridians = array( 'am', 'pm' );
539
+ }
540
+ if ( empty( $date ) ) {
541
+ $meridian = ( $isStart ) ? $meridians[0] : $meridians[1];
542
+ } else {
543
+ $meridian = date( $a, strtotime( $date ) );
544
+ }
545
+
546
+ $meridian = apply_filters( 'tribe_get_meridian_options', $meridian, $date, $isStart );
547
+
548
+ $return = '';
549
+ foreach ( $meridians as $m ) {
550
+ $return .= "<option value='$m'";
551
+ if ( $m == $meridian ) {
552
+ $return .= ' selected="selected"';
553
+ }
554
+ $return .= ">$m</option>\n";
555
+ }
556
+
557
+ return $return;
558
+ }
559
+
560
+ /**
561
+ * Helper method to return an array of years
562
+ * default is back 5 and forward 5
563
+ *
564
+ * @return array The array of years.
565
+ */
566
+ private static function years() {
567
+ $current_year = (int) date_i18n( 'Y' );
568
+ $years_back = (int) apply_filters( 'tribe_years_to_go_back', 5, $current_year );
569
+ $years_forward = (int) apply_filters( 'tribe_years_to_go_forward', 5, $current_year );
570
+ $years = array();
571
+ for ( $i = $years_back; $i > 0; $i -- ) {
572
+ $year = $current_year - $i;
573
+ $years[] = $year;
574
+ }
575
+ $years[] = $current_year;
576
+ for ( $i = 1; $i <= $years_forward; $i ++ ) {
577
+ $year = $current_year + $i;
578
+ $years[] = $year;
579
+ }
580
+
581
+ return (array) apply_filters( 'tribe_years_array', $years );
582
+ }
583
+
584
+ /**
585
+ * Helper method to return an array of 1-31 for days
586
+ *
587
+ * @return array The days array.
588
+ */
589
+ public static function days( $totalDays ) {
590
+ $days = array();
591
+ foreach ( range( 1, $totalDays ) as $day ) {
592
+ $days[ $day ] = $day;
593
+ }
594
+
595
+ return $days;
596
+ }
597
+ }
598
+ }
common/admin-views/tribe-options-display.php ADDED
@@ -0,0 +1,227 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $template_options = array(
4
+ '' => __( 'Default Events Template', 'tribe-common' ),
5
+ 'default' => __( 'Default Page Template', 'tribe-common' ),
6
+ );
7
+ $templates = get_page_templates();
8
+ ksort( $templates );
9
+ foreach ( array_keys( $templates ) as $template ) {
10
+ $template_options[ $templates[ $template ] ] = $template;
11
+ }
12
+
13
+ /**
14
+ * Filter the array of views that are registered for the tribe bar
15
+ * @param array array() {
16
+ * Array of views, where each view is itself represented by an associative array consisting of these keys:
17
+ *
18
+ * @type string $displaying slug for the view
19
+ * @type string $anchor display text (i.e. "List" or "Month")
20
+ * @type string $event_bar_hook not used
21
+ * @type string $url url to the view
22
+ * }
23
+ * @param boolean
24
+ */
25
+ $views = apply_filters( 'tribe-events-bar-views', array(), false );
26
+
27
+ $views_options = array();
28
+ foreach ( $views as $view ) {
29
+ $views_options[ $view['displaying'] ] = $view['anchor'];
30
+ }
31
+
32
+ $sample_date = strtotime( 'January 15 ' . date( 'Y' ) );
33
+
34
+ $displayTab = array(
35
+ 'priority' => 20,
36
+ 'fields' =>
37
+ /**
38
+ * Filter the fields available on the display settings tab
39
+ *
40
+ * @param array $fields a nested associative array of fields & field info passed to Tribe__Field
41
+ * @see Tribe__Field
42
+ */
43
+ apply_filters(
44
+ 'tribe_display_settings_tab_fields', array(
45
+ 'info-start' => array(
46
+ 'type' => 'html',
47
+ 'html' => '<div id="modern-tribe-info">',
48
+ ),
49
+ 'info-box-title' => array(
50
+ 'type' => 'html',
51
+ 'html' => '<h2>' . __( 'Display Settings', 'tribe-common' ) . '</h2>',
52
+ ),
53
+ 'info-box-description' => array(
54
+ 'type' => 'html',
55
+ 'html' => '<p>' . sprintf(
56
+ __( 'The settings below control the display of your calendar. If things don\'t look right, try switching between the three style sheet options or pick a page template from your theme.</p><p>There are going to be situations where no out-of-the-box template is 100&#37; perfect. Check out our <a href="%s">our themer\'s guide</a> for instructions on custom modifications.', 'tribe-common' ),
57
+ Tribe__Main::$tec_url . 'knowledgebase/themers-guide/?utm_medium=plugin-tec&utm_source=generaltab&utm_campaign=in-app'
58
+ ) . '</p>',
59
+ ),
60
+ 'info-end' => array(
61
+ 'type' => 'html',
62
+ 'html' => '</div>',
63
+ ),
64
+ 'tribe-form-content-start' => array(
65
+ 'type' => 'html',
66
+ 'html' => '<div class="tribe-settings-form-wrap">',
67
+ ),
68
+ 'tribeEventsBasicSettingsTitle' => array(
69
+ 'type' => 'html',
70
+ 'html' => '<h3>' . __( 'Basic Template Settings', 'tribe-common' ) . '</h3>',
71
+ ),
72
+ 'stylesheetOption' => array(
73
+ 'type' => 'radio',
74
+ 'label' => __( 'Default stylesheet used for events templates', 'tribe-common' ),
75
+ 'default' => 'tribe',
76
+ 'options' => array(
77
+ 'skeleton' => __( 'Skeleton Styles', 'tribe-common' ) .
78
+ '<p class=\'description tribe-style-selection\'>' .
79
+ __( 'Only includes enough css to achieve complex layouts like calendar and week view.', 'tribe-common' ) .
80
+ '</p>',
81
+ 'full' => __( 'Full Styles', 'tribe-common' ) .
82
+ '<p class=\'description tribe-style-selection\'>' .
83
+ __( 'More detailed styling, tries to grab styles from your theme.', 'tribe-common' ) .
84
+ '</p>',
85
+ 'tribe' => __( 'Tribe Events Styles', 'tribe-common' ) .
86
+ '<p class=\'description tribe-style-selection\'>' .
87
+ __( 'A fully designed and styled theme for your events pages.', 'tribe-common' ) .
88
+ '</p>',
89
+ ),
90
+ 'validation_type' => 'options',
91
+ ),
92
+ 'tribeEventsTemplate' => array(
93
+ 'type' => 'dropdown_select2',
94
+ 'label' => __( 'Events template', 'tribe-common' ),
95
+ 'tooltip' => __( 'Choose a page template to control the appearance of your calendar and event content.', 'tribe-common' ),
96
+ 'validation_type' => 'options',
97
+ 'size' => 'large',
98
+ 'default' => 'default',
99
+ 'options' => $template_options,
100
+ ),
101
+ 'tribeEnableViews' => array(
102
+ 'type' => 'checkbox_list',
103
+ 'label' => __( 'Enable event views', 'tribe-common' ),
104
+ 'tooltip' => __( 'You must select at least one view.', 'tribe-common' ),
105
+ 'default' => array_keys( $views_options ),
106
+ 'options' => $views_options,
107
+ 'validation_type' => 'options_multi',
108
+ ),
109
+ 'viewOption' => array(
110
+ 'type' => 'dropdown_select2',
111
+ 'label' => __( 'Default view', 'tribe-common' ),
112
+ 'validation_type' => 'options',
113
+ 'size' => 'large',
114
+ 'default' => 'month',
115
+ 'options' => $views_options,
116
+ ),
117
+ 'tribeDisableTribeBar' => array(
118
+ 'type' => 'checkbox_bool',
119
+ 'label' => __( 'Disable the Event Search Bar', 'tribe-common' ),
120
+ 'tooltip' => __( 'Check this to use the classic header.', 'tribe-common' ),
121
+ 'default' => false,
122
+ 'validation_type' => 'boolean',
123
+ ),
124
+ 'monthEventAmount' => array(
125
+ 'type' => 'text',
126
+ 'label' => __( 'Month view events per day', 'tribe-common' ),
127
+ 'tooltip' => sprintf( __( 'Change the default 3 events per day in month view. Please note there may be performance issues if you set this too high. <a href="%s">Read more</a>.', 'tribe-common' ), 'http://m.tri.be/rh' ),
128
+ 'validation_type' => 'positive_int',
129
+ 'size' => 'small',
130
+ 'default' => '3',
131
+ ),
132
+ 'enable_month_view_cache' => array(
133
+ 'type' => 'checkbox_bool',
134
+ 'label' => __( 'Enable the Month View Cache', 'tribe-common' ),
135
+ 'tooltip' => sprintf( __( 'Check this to cache your month view HTML in transients, which can help improve calendar speed on sites with many events. <a href="%s">Read more</a>.', 'tribe-common' ), 'http://m.tri.be/18di' ),
136
+ 'default' => false,
137
+ 'validation_type' => 'boolean',
138
+ ),
139
+ 'tribeEventsDateFormatSettingsTitle' => array(
140
+ 'type' => 'html',
141
+ 'html' => '<h3>' . __( 'Date Format Settings', 'tribe-common' ) . '</h3>',
142
+ ),
143
+ 'tribeEventsDateFormatExplanation' => array(
144
+ 'type' => 'html',
145
+ 'html' => __( '<p>The following three fields accept the date format options available to the php date() function. <a href="http://codex.wordpress.org/Formatting_Date_and_Time" target="_blank">Learn how to make your own date format here</a>.</p>', 'tribe-common' ),
146
+ ),
147
+ 'dateWithYearFormat' => array(
148
+ 'type' => 'text',
149
+ 'label' => __( 'Date with year', 'tribe-common' ),
150
+ 'tooltip' => __( 'Enter the format to use for displaying dates with the year. Used when showing an event from a past or future year, also used for dates in view headers.', 'tribe-common' ),
151
+ 'default' => get_option( 'date_format' ),
152
+ 'size' => 'medium',
153
+ 'validation_type' => 'html',
154
+ ),
155
+ 'dateWithoutYearFormat' => array(
156
+ 'type' => 'text',
157
+ 'label' => __( 'Date without year', 'tribe-common' ),
158
+ 'tooltip' => __( 'Enter the format to use for displaying dates without a year. Used when showing an event from the current year.', 'tribe-common' ),
159
+ 'default' => 'F j',
160
+ 'size' => 'medium',
161
+ 'validation_type' => 'html',
162
+ ),
163
+ 'monthAndYearFormat' => array(
164
+ 'type' => 'text',
165
+ 'label' => __( 'Month and year format', 'tribe-common' ),
166
+ 'tooltip' => __( 'Enter the format to use for dates that show a month and year only. Used on month view.', 'tribe-common' ),
167
+ 'default' => 'F Y',
168
+ 'size' => 'medium',
169
+ 'validation_type' => 'html',
170
+ ),
171
+ 'dateTimeSeparator' => array(
172
+ 'type' => 'text',
173
+ 'label' => __( 'Date time separator', 'tribe-common' ),
174
+ 'tooltip' => __( 'Enter the separator that will be placed between the date and time, when both are shown.', 'tribe-common' ),
175
+ 'default' => ' @ ',
176
+ 'size' => 'small',
177
+ 'validation_type' => 'html',
178
+ ),
179
+ 'timeRangeSeparator' => array(
180
+ 'type' => 'text',
181
+ 'label' => __( 'Time range separator', 'tribe-common' ),
182
+ 'tooltip' => __( 'Enter the separator that will be used between the start and end time of an event.', 'tribe-common' ),
183
+ 'default' => ' - ',
184
+ 'size' => 'small',
185
+ 'validation_type' => 'html',
186
+ ),
187
+ 'datepickerFormat' => array(
188
+ 'type' => 'dropdown_select2',
189
+ 'label' => __( 'Datepicker Date Format', 'tribe-common' ),
190
+ 'tooltip' => __( 'Select the date format to use in datepickers', 'tribe-common' ),
191
+ 'default' => 'Y-m-d',
192
+ 'options' => array(
193
+ '0' => date( 'Y-m-d', $sample_date ),
194
+ '1' => date( 'n/j/Y', $sample_date ),
195
+ '2' => date( 'm/d/Y', $sample_date ),
196
+ '3' => date( 'j/n/Y', $sample_date ),
197
+ '4' => date( 'd/m/Y', $sample_date ),
198
+ '5' => date( 'n-j-Y', $sample_date ),
199
+ '6' => date( 'm-d-Y', $sample_date ),
200
+ '7' => date( 'j-n-Y', $sample_date ),
201
+ '8' => date( 'd-m-Y', $sample_date ),
202
+ ),
203
+ 'validation_type' => 'options',
204
+ ),
205
+ 'tribeEventsAdvancedSettingsTitle' => array(
206
+ 'type' => 'html',
207
+ 'html' => '<h3>' . __( 'Advanced Template Settings', 'tribe-common' ) . '</h3>',
208
+ ),
209
+ 'tribeEventsBeforeHTML' => array(
210
+ 'type' => 'wysiwyg',
211
+ 'label' => __( 'Add HTML before event content', 'tribe-common' ),
212
+ 'tooltip' => __( 'If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout.', 'tribe-common' ),
213
+ 'validation_type' => 'html',
214
+ ),
215
+ 'tribeEventsAfterHTML' => array(
216
+ 'type' => 'wysiwyg',
217
+ 'label' => __( 'Add HTML after event content', 'tribe-common' ),
218
+ 'tooltip' => __( 'If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout.', 'tribe-common' ),
219
+ 'validation_type' => 'html',
220
+ ),
221
+ 'tribe-form-content-end' => array(
222
+ 'type' => 'html',
223
+ 'html' => '</div>',
224
+ ),
225
+ )
226
+ ),
227
+ );
common/admin-views/tribe-options-general.php ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $tec = Tribe__Events__Main::instance();
4
+
5
+ $generalTabFields = array(
6
+ 'info-start' => array(
7
+ 'type' => 'html',
8
+ 'html' => '<div id="modern-tribe-info"><img src="' . plugins_url( 'resources/images/modern-tribe@2x.png', dirname( __FILE__ ) ) . '" alt="Modern Tribe Inc." title="Modern Tribe Inc.">',
9
+ ),
10
+ 'upsell-heading' => array(
11
+ 'type' => 'heading',
12
+ 'label' => __( 'Finding & extending your calendar.', 'tribe-common' ),
13
+ 'conditional' => ( ! defined( 'TRIBE_HIDE_UPSELL' ) || ! TRIBE_HIDE_UPSELL ),
14
+ ),
15
+ 'finding-heading' => array(
16
+ 'type' => 'heading',
17
+ 'label' => __( 'Finding your calendar.', 'tribe-common' ),
18
+ 'conditional' => ( defined( 'TRIBE_HIDE_UPSELL' ) && TRIBE_HIDE_UPSELL ),
19
+ ),
20
+ 'view-calendar-link' => array(
21
+ 'type' => 'html',
22
+ 'html' => '<p>' . __( 'Where\'s my calendar?', 'tribe-common' ) . ' <a href="' . esc_url( Tribe__Events__Main::instance()->getLink() ) . '">' . __( 'Right here', 'tribe-common' ) . '</a>.</p>',
23
+ ),
24
+ 'upsell-info' => array(
25
+ 'type' => 'html',
26
+ 'html' => '<p>' . __( 'Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?', 'tribe-common' ) . ' <a href="' . Tribe__Main::$tec_url . 'products/?utm_source=generaltab&utm_medium=plugin-tec&utm_campaign=in-app">' . __( 'Check out the available add-ons', 'tribe-common' ) . '</a>.</p>',
27
+ 'conditional' => ( ! defined( 'TRIBE_HIDE_UPSELL' ) || ! TRIBE_HIDE_UPSELL ),
28
+ ),
29
+ 'donate-link-heading' => array(
30
+ 'type' => 'heading',
31
+ 'label' => __( 'We hope our plugin is helping you out.', 'tribe-common' ),
32
+ ),
33
+ 'donate-link-info' => array(
34
+ 'type' => 'html',
35
+ 'html' => '<p>' . __( 'Are you thinking "Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work." The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project.', 'tribe-common' ) . '<br><a href="' . esc_url( plugins_url( 'resources/images/donate-link-screenshot.jpg', dirname( __FILE__ ) ) ) . '" class="thickbox">' . __( 'See an example of the link', 'tribe-common' ) . '</a>.</p>',
36
+ 'conditional' => ! class_exists( 'Tribe__Events__Pro__Main' ),
37
+ ),
38
+ 'donate-link-pro-info' => array(
39
+ 'type' => 'html',
40
+ 'html' => '<p>' . __( 'Are you thinking "Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work." The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project.', 'tribe-common' ) . '<br><a href="' . esc_url( plugins_url( 'resources/images/donate-link-pro-screenshot.jpg', dirname( __FILE__ ) ) ) . '" class="thickbox">' . __( 'See an example of the link', 'tribe-common' ) . '</a>.</p>',
41
+ 'conditional' => class_exists( 'Tribe__Events__Pro__Main' ),
42
+ ),
43
+ 'donate-link' => array(
44
+ 'type' => 'checkbox_bool',
45
+ 'label' => __( 'Show The Events Calendar link', 'tribe-common' ),
46
+ 'default' => false,
47
+ 'validation_type' => 'boolean',
48
+ ),
49
+ 'info-end' => array(
50
+ 'type' => 'html',
51
+ 'html' => '</div>',
52
+ ),
53
+ 'tribe-form-content-start' => array(
54
+ 'type' => 'html',
55
+ 'html' => '<div class="tribe-settings-form-wrap">',
56
+ ),
57
+ 'tribeEventsDisplayThemeTitle' => array(
58
+ 'type' => 'html',
59
+ 'html' => '<h3>' . __( 'General Settings', 'tribe-common' ) . '</h3>',
60
+ ),
61
+ 'postsPerPage' => array(
62
+ 'type' => 'text',
63
+ 'label' => __( 'Number of events to show per page', 'tribe-common' ),
64
+ 'size' => 'small',
65
+ 'default' => get_option( 'posts_per_page' ),
66
+ 'validation_type' => 'positive_int',
67
+ ),
68
+ 'liveFiltersUpdate' => array(
69
+ 'type' => 'checkbox_bool',
70
+ 'label' => __( 'Use Javascript to control date filtering', 'tribe-common' ),
71
+ 'tooltip' => tribe_get_option( 'tribeDisableTribeBar', false ) == true ? __( 'This option is disabled when "Disable the Event Search Bar" is checked on the Display settings tab.', 'tribe-common' ) : __( 'Enable live ajax for datepicker on front end (User submit not required).', 'tribe-common' ),
72
+ 'attributes' => tribe_get_option( 'tribeDisableTribeBar', false ) == true ? array( 'disabled' => 'disabled' ) : null,
73
+ 'default' => true,
74
+ 'validation_type' => 'boolean',
75
+ 'class' => tribe_get_option( 'tribeDisableTribeBar', false ) == true ? 'tribe-fieldset-disabled' : null,
76
+ ),
77
+ 'showComments' => array(
78
+ 'type' => 'checkbox_bool',
79
+ 'label' => __( 'Show comments', 'tribe-common' ),
80
+ 'tooltip' => __( 'Enable comments on event pages.', 'tribe-common' ),
81
+ 'default' => false,
82
+ 'validation_type' => 'boolean',
83
+ ),
84
+ 'showEventsInMainLoop' => array(
85
+ 'type' => 'checkbox_bool',
86
+ 'label' => __( 'Include events in main blog loop', 'tribe-common' ),
87
+ 'tooltip' => __( 'Show events with the site\'s other posts. When this box is checked, events will also continue to appear on the default events page.', 'tribe-common' ),
88
+ 'default' => false,
89
+ 'validation_type' => 'boolean',
90
+ ),
91
+ 'unprettyPermalinksUrl' => array(
92
+ 'type' => 'html',
93
+ 'label' => __( 'Events URL slug', 'tribe-common' ),
94
+ 'html' => '<p>' . sprintf( __( 'You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href="%1$s">%2$s</a>. In order to edit the slug here, <a href="%3$soptions-permalink.php">enable pretty permalinks</a>.', 'tribe-common' ), esc_url( $tec->getLink( 'home' ) ), $tec->getLink( 'home ' ), esc_url( trailingslashit( get_admin_url() ) ) ) . '</p>',
95
+ 'conditional' => ( '' == get_option( 'permalink_structure' ) ),
96
+ ),
97
+ 'eventsSlug' => array(
98
+ 'type' => 'text',
99
+ 'label' => __( 'Events URL slug', 'tribe-common' ),
100
+ 'default' => 'events',
101
+ 'validation_type' => 'slug',
102
+ 'conditional' => ( '' != get_option( 'permalink_structure' ) ),
103
+ ),
104
+ 'current-events-slug' => array(
105
+ 'type' => 'html',
106
+ 'html' => '<p class="tribe-field-indent tribe-field-description description">' . __( 'The slug used for building the events URL.', 'tribe-common' ) . sprintf( __( 'Your current events URL is: %s', 'tribe-common' ), '<code><a href="' . esc_url( tribe_get_events_link() ) . '">' . tribe_get_events_link() . '</a></code>' ) . '</p>',
107
+ 'conditional' => ( '' != get_option( 'permalink_structure' ) ),
108
+ ),
109
+ 'ical-info' => array(
110
+ 'type' => 'html',
111
+ 'display_callback' => ( function_exists( 'tribe_get_ical_link' ) ) ? '<p id="ical-link" class="tribe-field-indent tribe-field-description description">' . __( 'Here is the iCal feed URL for your events:', 'tribe-common' ) . ' <code>' . tribe_get_ical_link() . '</code></p>' : '',
112
+ 'conditional' => function_exists( 'tribe_get_ical_link' ),
113
+ ),
114
+ 'singleEventSlug' => array(
115
+ 'type' => 'text',
116
+ 'label' => __( 'Single event URL slug', 'tribe-common' ),
117
+ 'default' => 'event',
118
+ 'validation_type' => 'slug',
119
+ 'conditional' => ( '' != get_option( 'permalink_structure' ) ),
120
+ ),
121
+ 'current-single-event-slug' => array(
122
+ 'type' => 'html',
123
+ 'html' => '<p class="tribe-field-indent tribe-field-description description">' . sprintf( __( 'The above should ideally be plural, and this singular.<br />Your single event URL is: %s', 'tribe-common' ), '<code>' . trailingslashit( home_url() ) . tribe_get_option( 'singleEventSlug', 'event' ) . '/single-post-name/</code>' ) . '</p>',
124
+ 'conditional' => ( '' != get_option( 'permalink_structure' ) ),
125
+ ),
126
+ 'multiDayCutoff' => array(
127
+ 'type' => 'dropdown',
128
+ 'label' => __( 'End of day cutoff', 'tribe-common' ),
129
+ 'validation_type' => 'options',
130
+ 'size' => 'small',
131
+ 'default' => '12:00',
132
+ 'options' => array(
133
+ '00:00' => '12:00 am',
134
+ '01:00' => '01:00 am',
135
+ '02:00' => '02:00 am',
136
+ '03:00' => '03:00 am',
137
+ '04:00' => '04:00 am',
138
+ '05:00' => '05:00 am',
139
+ '06:00' => '06:00 am',
140
+ '07:00' => '07:00 am',
141
+ '08:00' => '08:00 am',
142
+ '09:00' => '09:00 am',
143
+ '10:00' => '10:00 am',
144
+ '11:00' => '11:00 am',
145
+ ),
146
+ ),
147
+ 'multiDayCutoffHelper' => array(
148
+ 'type' => 'html',
149
+ 'html' => '<p class="tribe-field-indent tribe-field-description description">' . sprintf( __( "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar.", 'tribe-common' ) ) . '</p>',
150
+ 'conditional' => ( '' != get_option( 'permalink_structure' ) ),
151
+ ),
152
+ 'defaultCurrencySymbol' => array(
153
+ 'type' => 'text',
154
+ 'label' => __( 'Default currency symbol', 'tribe-common' ),
155
+ 'tooltip' => __( 'Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively.', 'tribe-common' ),
156
+ 'validation_type' => 'textarea',
157
+ 'size' => 'small',
158
+ 'default' => '$',
159
+ ),
160
+ 'reverseCurrencyPosition' => array(
161
+ 'type' => 'checkbox_bool',
162
+ 'label' => __( 'Currency symbol follows value', 'tribe-common' ),
163
+ 'tooltip' => __( 'The currency symbol normally precedes the value. Enabling this option positions the symbol after the value.', 'tribe-common' ),
164
+ 'default' => false,
165
+ 'validation_type' => 'boolean',
166
+ ),
167
+ 'tribeEventsDisplayTitle' => array(
168
+ 'type' => 'html',
169
+ 'html' => '<h3>' . __( 'Map Settings', 'tribe-common' ) . '</h3>',
170
+ ),
171
+ 'embedGoogleMaps' => array(
172
+ 'type' => 'checkbox_bool',
173
+ 'label' => __( 'Enable Google Maps', 'tribe-common' ),
174
+ 'tooltip' => __( 'Check to enable maps for events and venues.', 'tribe-common' ),
175
+ 'default' => true,
176
+ 'class' => 'google-embed-size',
177
+ 'validation_type' => 'boolean',
178
+ ),
179
+ 'embedGoogleMapsZoom' => array(
180
+ 'type' => 'text',
181
+ 'label' => __( 'Google Maps default zoom level', 'tribe-common' ),
182
+ 'tooltip' => __( '0 = zoomed out; 21 = zoomed in.', 'tribe-common' ),
183
+ 'size' => 'small',
184
+ 'default' => 10,
185
+ 'class' => 'google-embed-field',
186
+ 'validation_type' => 'number_or_percent',
187
+ ),
188
+ 'tribeEventsMiscellaneousTitle' => array(
189
+ 'type' => 'html',
190
+ 'html' => '<h3>' . __( 'Miscellaneous Settings', 'tribe-common' ) . '</h3>',
191
+ ),
192
+ 'amalgamateDuplicates' => array(
193
+ 'type' => 'html',
194
+ 'html' => '<fieldset class="tribe-field tribe-field-html"><legend>' . __( 'Duplicate Venues &amp; Organizers', 'tribe-common' ) . '</legend><div class="tribe-field-wrap">' . Tribe__Events__Amalgamator::migration_button( __( 'Merge Duplicates', 'tribe-common' ) ) . '<p class="tribe-field-indent description">' . __( 'You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers.', 'tribe-common' ) . '</p></div></fieldset><div class="clear"></div>',
195
+ 'conditional' => ( Tribe__Settings_Manager::get_option( 'organizer_venue_amalgamation', 0 ) < 1 ),
196
+ ),
197
+ 'viewWelcomePage' => array(
198
+ 'type' => 'html',
199
+ 'html' => '<fieldset class="tribe-field tribe-field-html"><legend>' . __( 'View Welcome Page', 'tribe-common' ) . '</legend><div class="tribe-field-wrap"><a href="' . esc_url( get_site_url() . '/wp-admin/edit.php?post_type=tribe_events&page=tribe-events-calendar&tec-welcome-message' ) . '" class="button">' . __( 'View Welcome Page', 'tribe-common' ) . '</a><p class="tribe-field-indent description">' . __( 'View the page that displayed when you initially installed the plugin.', 'tribe-common' ) . '</p></div></fieldset><div class="clear"></div>',
200
+
201
+ ),
202
+ 'viewUpdatePage' => array(
203
+ 'type' => 'html',
204
+ 'html' => '<fieldset class="tribe-field tribe-field-html"><legend>' . __( 'View Update Page', 'tribe-common' ) . '</legend><div class="tribe-field-wrap"><a href="' . esc_url( get_site_url() . '/wp-admin/edit.php?post_type=tribe_events&page=tribe-events-calendar&tec-update-message' ) . '" class="button">' . __( 'View Update Page', 'tribe-common' ) . '</a><p class="tribe-field-indent description">' . __( 'View the page that displayed when you updated the plugin.', 'tribe-common' ) . '</p></div></fieldset><div class="clear"></div>',
205
+ ),
206
+ );
207
+
208
+ if ( is_super_admin() ) {
209
+ $generalTabFields['debugEvents'] = array(
210
+ 'type' => 'checkbox_bool',
211
+ 'label' => __( 'Debug mode', 'tribe-common' ),
212
+ 'default' => false,
213
+ 'validation_type' => 'boolean',
214
+ );
215
+ $generalTabFields['debugEventsHelper'] = array(
216
+ 'type' => 'html',
217
+ 'html' => '<p class="tribe-field-indent tribe-field-description description" style="max-width:400px;">' . sprintf( __( 'Enable this option to log debug information. By default this will log to your server PHP error log. If you\'d like to see the log messages in your browser, then we recommend that you install the %s and look for the "Tribe" tab in the debug output.', 'tribe-common' ), '<a href="http://wordpress.org/extend/plugins/debug-bar/" target="_blank">' . __( 'Debug Bar Plugin', 'tribe-common' ) . '</a>' ) . '</p>',
218
+ 'conditional' => ( '' != get_option( 'permalink_structure' ) ),
219
+ );
220
+ }
221
+
222
+ // Closes form
223
+ $generalTabFields['tribe-form-content-end'] = array(
224
+ 'type' => 'html',
225
+ 'html' => '</div>',
226
+ );
227
+
228
+
229
+ $generalTab = array(
230
+ 'priority' => 10,
231
+ 'fields' => apply_filters( 'tribe_general_settings_tab_fields', $generalTabFields ),
232
+ );
233
+
common/admin-views/tribe-options-help.php ADDED
@@ -0,0 +1,356 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * variable setup
5
+ */
6
+
7
+ $tec_info = wp_remote_get(
8
+ /**
9
+ * Filter the tribe info API url
10
+ *
11
+ * @param string $url
12
+ */
13
+ apply_filters( 'tribe_help_tab_api_info_url', Tribe__Events__Main::INFO_API_URL ), array(
14
+ 'timeout' => 15, //seconds
15
+ 'headers' => array( 'Accept' => 'application/json' ),
16
+ )
17
+ );
18
+ if ( ! is_wp_error( $tec_info ) ) {
19
+ $tec_info = $tec_info['body'];
20
+ $tec_info = unserialize( $tec_info );
21
+ if ( isset( $tec_info['rating'] ) ) {
22
+ $rating = $tec_info['rating'];
23
+ }
24
+ if ( isset( $tec_info['num_ratings'] ) ) {
25
+ $num_rating = $tec_info['num_ratings'];
26
+ }
27
+ if ( isset( $tec_info['requires'] ) ) {
28
+ $requires = $tec_info['requires'];
29
+ }
30
+ if ( isset( $tec_info['version'] ) ) {
31
+ $version = $tec_info['version'];
32
+ }
33
+ $total_downloads = ( isset( $tec_info['total_downloads'] ) ) ? number_format( $tec_info['total_downloads'] ) : _x( 'n/a', 'not available', 'tribe-common' );
34
+ $up_to_date = ( isset( $tec_info['version'] ) && version_compare( Tribe__Events__Main::VERSION, $tec_info['version'], '<' ) ) ? __( 'You need to upgrade!', 'tribe-common' ) : __( 'You are up to date!', 'tribe-common' );
35
+ }
36
+
37
+ $news_rss = fetch_feed( Tribe__Events__Main::FEED_URL );
38
+ if ( ! is_wp_error( $news_rss ) ) {
39
+ $maxitems = $news_rss->get_item_quantity(
40
+ /**
41
+ * Filter the maximum number of items returned from the tribe news feed
42
+ *
43
+ * @param int $max_items default 5
44
+ */
45
+ apply_filters( 'tribe_help_tab_rss_max_items', 5 ) );
46
+ $rss_items = $news_rss->get_items( 0, $maxitems );
47
+ $news_feed = array();
48
+ if ( count( $maxitems ) > 0 ) {
49
+ foreach ( $rss_items as $item ) {
50
+ $item = array(
51
+ 'title' => esc_html( $item->get_title() ),
52
+ 'link' => esc_url( $item->get_permalink() ),
53
+ );
54
+ $news_feed[] = $item;
55
+ }
56
+ }
57
+ }
58
+
59
+ $ga_query_string = '?utm_source=helptab&utm_medium=plugin-tec&utm_campaign=in-app';
60
+
61
+ $premium_add_ons = array();
62
+ $premium_add_ons[] = array(
63
+ 'title' => __( 'The Events Calendar PRO', 'tribe-common' ),
64
+ /**
65
+ * Filter the url to The Events Calendar PRO product page
66
+ *
67
+ * @param string $url
68
+ */
69
+ 'link' => apply_filters( 'tribe_help_tab_ecp_tribe_url', 'http://m.tri.be/dr' ),
70
+ );
71
+ $premium_add_ons[] = array(
72
+ 'title' => __( 'The Events Calendar: Eventbrite Tickets', 'tribe-common' ),
73
+ /**
74
+ * Filter the url to The Events Calendar: Eventbrite Tickets product page
75
+ *
76
+ * @param string $url
77
+ */
78
+ 'link' => apply_filters( 'tribe_help_tab_eventbrite_tribe_url', 'http://m.tri.be/ds' ),
79
+ );
80
+ $premium_add_ons[] = array(
81
+ 'title' => __( 'The Events Calendar: Community Events', 'tribe-common' ),
82
+ /**
83
+ * Filter the url to The Events Calendar: Community Events product page
84
+ *
85
+ * @param string $url
86
+ */
87
+ 'link' => apply_filters( 'tribe_help_tab_community_events_tribe_url', 'http://m.tri.be/dt' ),
88
+ );
89
+ $premium_add_ons[] = array(
90
+ 'title' => __( 'The Events Calendar: Facebook Events', 'tribe-common' ),
91
+ /**
92
+ * Filter the url to The Events Calendar: Facebook Events product page
93
+ *
94
+ * @param string $url
95
+ */
96
+ 'link' => apply_filters( 'tribe_help_tab_facebook_events_tribe_url', 'http://m.tri.be/du' ),
97
+ );
98
+ $premium_add_ons[] = array(
99
+ 'title' => __( 'The Events Calendar: WooCommerce Tickets', 'tribe-common' ),
100
+ /**
101
+ * Filter the url to The Events Calendar: WooCommerce Tickets product page
102
+ *
103
+ * @param string $url
104
+ */
105
+ 'link' => apply_filters( 'tribe_help_tab_wootickets_tribe_url', 'http://m.tri.be/dv' ),
106
+ );
107
+
108
+ $premium_add_ons[] = array(
109
+ 'title' => __( 'The Events Calendar: EDD Tickets', 'tribe-common' ),
110
+ /**
111
+ * Filter the url to The Events Calendar: EDD Tickets product page
112
+ *
113
+ * @param string $url
114
+ */
115
+ 'link' => apply_filters( 'tribe_help_tab_eddtickets_tribe_url', 'http://m.tri.be/dw' ),
116
+ );
117
+
118
+ $premium_add_ons[] = array(
119
+ 'title' => __( 'The Events Calendar: WPEC Tickets', 'tribe-common' ),
120
+ /**
121
+ * Filter the url to The Events Calendar: WPEC Tickets product page
122
+ *
123
+ * @param string $url
124
+ */
125
+ 'link' => apply_filters( 'tribe_help_tab_wpectickets_tribe_url', 'http://m.tri.be/dx' ),
126
+ );
127
+
128
+ $premium_add_ons[] = array(
129
+ 'title' => __( 'The Events Calendar: Shopp Tickets', 'tribe-common' ),
130
+ /**
131
+ * Filter the url to The Events Calendar: Shopp Tickets product page
132
+ *
133
+ * @param string $url
134
+ */
135
+ 'link' => apply_filters( 'tribe_help_tab_shopptickets_tribe_url', 'http://m.tri.be/dy' ),
136
+ );
137
+
138
+ $premium_add_ons[] = array(
139
+ 'title' => __( 'The Events Calendar: Filter Bar', 'tribe-common' ),
140
+ /**
141
+ * Filter the url to The Events Calendar: Filter Bar product page
142
+ *
143
+ * @param string $url
144
+ */
145
+ 'link' => apply_filters( 'tribe_help_tab_filterbar_tribe_url', 'http://m.tri.be/hu' ),
146
+ );
147
+
148
+ /**
149
+ * Filter the array of premium addons upsold on the sidebar of the Settings > Help tab
150
+ *
151
+ * @param array $premium_add_ons
152
+ */
153
+ $premium_add_ons = (array) apply_filters( 'tribe_help_tab_premium_addons', $premium_add_ons ); // TODO should we replace this with an RSS feed??
154
+
155
+ $getting_started_text = __( "If you're looking for help with The Events Calendar, you've come to the right place. We are committed to helping make your calendar be spectacular... and hope the resources provided below will help get you there.", 'tribe-common' );
156
+
157
+ /**
158
+ * Filter the text inside the box at the top of the Settings > Help tab
159
+ *
160
+ * @param string $getting_started_text
161
+ */
162
+ $getting_started_text = apply_filters( 'tribe_help_tab_getting_started_text', $getting_started_text );
163
+
164
+ $intro_text[] = '<p>' . __( "If this is your first time using The Events Calendar, you're in for a treat and are already well on your way to creating a first event. Here are some basics we've found helpful for users jumping into it for the first time:", 'tribe-common' ) . '</p>';
165
+ $intro_text[] = '<ul>';
166
+ $intro_text[] = '<li>';
167
+ $intro_text[] = sprintf( __( '%sOur New User Primer%s was designed for folks in your exact position. Featuring both step-by-step videos and written walkthroughs that feature accompanying screenshots, the primer aims to take you from zero to hero in no time.', 'tribe-common' ), '<a href="' . esc_url( Tribe__Main::$tec_url . 'knowledgebase/new-user-primer-the-events-calendar-and-events-calendar-pro/' . $ga_query_string ) . '" target="blank">', '</a>' );
168
+ $intro_text[] = '</li><li>';
169
+ $intro_text[] = sprintf( __( '%sInstallation/Setup FAQs%s from our support page can help give an overview of what the plugin can and cannot do. This section of the FAQs may be helpful as it aims to address any basic install questions not addressed by the new user primer.', 'tribe-common' ), '<a href="' . esc_url( Tribe__Main::$tec_url . 'knowledgebase/' . $ga_query_string ) . '" target="blank">', '</a>' );
170
+ $intro_text[] = '</li></ul><p>';
171
+ $intro_text[] = __( "Otherwise, if you're feeling adventurous, you can get started by heading to the Events menu and adding your first event.", 'tribe-common' );
172
+ $intro_text[] = '</p>';
173
+ $intro_text = implode( $intro_text );
174
+
175
+ $support_text[] = '<p>' . sprintf( __( "We've redone our support page from the ground up in an effort to better help our users. Head over to our %sSupport Page%s and you'll find lots of great resources, including:", 'tribe-common' ), '<a href="' . esc_url( Tribe__Main::$tec_url . 'support/' . $ga_query_string ) . '" target="blank">', '</a>' ) . '</p>';
176
+ $support_text[] = '<ul><li>';
177
+ $support_text[] = sprintf( __( '%sTemplate tags, functions, and hooks & filters%s for The Events Calendar &amp; Events Calendar PRO', 'tribe-common' ), '<a href="http://m.tri.be/fk" target="blank">', '</a>' );
178
+ $support_text[] = '</li><li>';
179
+ $support_text[] = sprintf( __( '%sFrequently Asked Questions%s ranging from the most basic setup questions to advanced themer tweaks', 'tribe-common' ), '<a href="' . esc_url( Tribe__Main::$tec_url . 'knowledgebase/' . $ga_query_string ) . '" target="blank">', '</a>' );
180
+
181
+ $support_text[] = '</li><li>';
182
+ $support_text[] = sprintf( __( '%sTutorials%s written by both members of our team and users from the community, covering custom queries, integration with third-party themes and plugins, etc.', 'tribe-common' ), '<a href="' . esc_url( Tribe__Main::$tribe_url . 'the-events-calendar-for-wordpress-tutorials/' . $ga_query_string ) . '" target="blank">', '</a>' );
183
+ $support_text[] = '</li><li>';
184
+ $support_text[] = __( "Release notes for painting an overall picture of the plugin's lifecycle and when features/bug fixes were introduced.", 'tribe-common' );
185
+ $support_text[] = '</li><li>';
186
+ $support_text[] = sprintf( __( "%sAdd-on documentation%s for all of Modern Tribe's official extensions for The Events Calendar (including WooTickets, Community Events, Eventbrite Tickets, Facebook Events, etc)", 'tribe-common' ), '<a href="' . esc_url( Tribe__Main::$tec_url . 'knowledgebase-category/primers/' ) . '" target="blank">', '</a>' );
187
+ $support_text[] = '</li></ul>';
188
+ $support_text[] = '<p>' . sprintf( __( "We've also got a %sModern Tribe UserVoice%s page where we're actively watching for feature ideas from the community. If after playing with the plugin and reviewing the resources above, you're finding a feature isn't present that should be, let us know. Vote up existing feature requests or add your own, and help us shape the future of the products business in a way that best meets the community's needs.", 'tribe-common' ), '<a href="http://tribe.uservoice.com/" target="blank">', '</a>' ) . '</p>';
189
+ $support_text = implode( $support_text );
190
+
191
+
192
+ $forum_text[] = '<p>' . sprintf( __( 'Written documentation can only take things so far...sometimes, you need help from a real person. This is where our %ssupport forums%s come into play.', 'tribe-common' ), '<a href="http://wordpress.org/support/plugin/the-events-calendar" target="blank">', '</a>' ) . '</p>';
193
+ $forum_text[] = '<p>' . sprintf( __( "Users of the free The Events Calendar should post their support concerns to the plugin's %sWordPress.org support forum%s. While we are happy to help identify and fix bugs that are reported at WordPress.org, please make sure to read our %ssupport expectations sticky thread%s before posting so you understand our limitations.", 'tribe-common' ), '<a href="http://wordpress.org/support/plugin/the-events-calendar" target="blank">', '</a>', '<a href="http://wordpress.org/support/topic/welcome-the-events-calendar-users-read-this-first?replies=1" target="blank">', '</a>' ) . '</p>';
194
+ $forum_text[] = '<p>' . __( "We hit the WordPress.org forum throughout the week, watching for bugs. If you report a legitimate bug that we're able to reproduce, we will log it and patch for an upcoming release. However we are unfortunately unable to provide customization tips or assist in integrating with 3rd party plugins or themes.", 'tribe-common' ) . '</p>';
195
+ $forum_text[] = '<p>' . sprintf( __( "If you're a user of The Events Calendar and would like more support, please %spurchase a PRO license%s. We hit the PRO forums daily, and can provide a deeper level of customization/integration support for paying users than we can on WordPress.org.", 'tribe-common' ), '<a href="' . esc_url( Tribe__Main::$tec_url . 'product/wordpress-events-calendar-pro/' . $ga_query_string ) . '" target="blank">', '</a>' ) . '</p>';
196
+ $forum_text = implode( $forum_text );
197
+
198
+
199
+ $outro_text = '<p>' . sprintf( __( 'If you find that you aren\'t getting the level of service you\'ve come to expect from Modern Tribe, shoot us an email at %1$s or tweet %2$s and tell us why. We\'ll do what we can to make it right.', 'tribe-common' ), '<a href="mailto:pro@tri.be">pro@tri.be</a>', '<a href="http://www.twitter.com/moderntribeinc" target="blank">@moderntribeinc</a>' ) . '</p>';
200
+ $more_text = __( 'More...', 'tribe-common' );
201
+
202
+
203
+ ?>
204
+
205
+ <div id="tribe-help-general">
206
+ <div id="modern-tribe-info">
207
+ <img src="<?php echo esc_url( plugins_url( 'resources/images/modern-tribe@2x.png', dirname( __FILE__ ) ) ); ?>" alt="Modern Tribe Inc." title="Modern Tribe Inc.">
208
+
209
+ <p><?php esc_html_e( 'Hi! We are Modern Tribe and we are here to help you be awesome. Thanks so much for installing our labor of love!', 'tribe-common' ); ?></p>
210
+ <?php
211
+ /**
212
+ * Filter the text inside the box at the top of the Settings > Help tab
213
+ *
214
+ * @param string $getting_started_text
215
+ */
216
+ echo apply_filters( 'tribe_help_tab_getting_started_content', $getting_started_text ); ?>
217
+ </div>
218
+
219
+ <div class="tribe-settings-form-wrap">
220
+
221
+ <h3><?php esc_html_e( 'Getting Started', 'tribe-common' ); ?></h3>
222
+ <?php
223
+ /**
224
+ * Filter the "Getting Started" text on the Settings > Help tab
225
+ *
226
+ * @param string $intro_text
227
+ */
228
+ echo apply_filters( 'tribe_help_tab_introtext', $intro_text );
229
+ ?>
230
+
231
+ <h3><?php esc_html_e( 'Support Resources To Help You Be Awesome', 'tribe-common' ); ?></h3>
232
+ <?php
233
+ /**
234
+ * Filter the "Support Resources To Help You Be Awesome" text on the Settings > Help tab
235
+ *
236
+ * @param string $intro_text
237
+ */
238
+ echo apply_filters( 'tribe_help_tab_supporttext', $support_text );
239
+ ?>
240
+
241
+ <h3><?php esc_html_e( 'Forums: Because Everyone Needs A Buddy', 'tribe-common' ); ?></h3>
242
+ <?php
243
+ /**
244
+ * Filter the "Forums: Because Everyone Needs A Buddy" text on the Settings > Help tab
245
+ *
246
+ * @param string $forum_text
247
+ */
248
+ echo apply_filters( 'tribe_help_tab_forumtext', $forum_text );
249
+ ?>
250
+
251
+ <h3><?php esc_html_e( 'Not getting help?', 'tribe-common' ); ?></h3>
252
+ <?php
253
+ /**
254
+ * Filter the "Not getting help?" text on the Settings > Help tab
255
+ *
256
+ * @param string $outro_text
257
+ */
258
+ echo apply_filters( 'tribe_help_tab_outro', $outro_text );
259
+
260
+ /**
261
+ * Fires at the end of the help text content on the Settings > Help tab
262
+ */
263
+ do_action( 'tribe_help_tab_sections' ); ?>
264
+
265
+ </div>
266
+
267
+ </div>
268
+
269
+
270
+ <div id="tribe-help-sidebar">
271
+ <div id="tribe-help-plugin-info">
272
+ <h3><?php esc_html_e( 'The Events Calendar', 'tribe-common' ); ?></h3>
273
+
274
+
275
+ <?php if ( isset( $up_to_date ) ) { ?><p><?php echo $up_to_date; ?></p><?php } ?>
276
+ <?php if ( isset( $version ) ) { ?><p>
277
+ <b><?php esc_html_e( 'Latest Version:', 'tribe-common' ); ?></b> <?php echo $version; ?>
278
+ <br /><?php } ?>
279
+ <b><?php esc_html_e( 'Author:', 'tribe-common' ); ?></b> <?php esc_html_e( 'Modern Tribe Inc', 'tribe-common' ); ?>
280
+ <br />
281
+ <?php
282
+ if ( isset( $requires ) ) {
283
+ ?>
284
+ <b><?php esc_html_e( 'Requires:', 'tribe-common' ); ?></b> <?php esc_html_e( 'WordPress ', 'tribe-common' );
285
+ echo $requires; ?>+<br />
286
+ <?php
287
+ }
288
+ /**
289
+ * Filter the URL to The Events Calendar plugin page on Wordpress.org
290
+ *
291
+ * @param string $url
292
+ */
293
+ $tribe_help_tab_wp_plugin_url = apply_filters( 'tribe_help_tab_wp_plugin_url', Tribe__Events__Main::WP_PLUGIN_URL );
294
+ ?>
295
+ <a href="<?php echo esc_url( $tribe_help_tab_wp_plugin_url ); ?>"><?php esc_html_e( 'Wordpress.org Plugin Page', 'tribe-common' ); ?></a>
296
+ </p>
297
+ </div>
298
+
299
+
300
+ <?php if ( isset( $rating ) && isset( $num_rating ) ) { ?>
301
+ <h3><?php esc_html_e( 'Average Rating', 'tribe-common' ); ?></h3>
302
+ <?php wp_star_rating( array(
303
+ 'rating' => $rating,
304
+ 'type' => 'percent',
305
+ 'number' => $num_rating,
306
+ ) ); ?>
307
+ <?php printf( _n( 'Based on %d rating', 'Based on %d ratings', $num_rating, 'tribe-common' ), $num_rating ); ?>
308
+ <p>
309
+ <?php
310
+ /**
311
+ * Filter the URL to The Events Calendar plugin page on Wordpress.org
312
+ *
313
+ * @param string $url
314
+ */
315
+ $tribe_help_tab_wp_plugin_url = apply_filters( 'tribe_help_tab_wp_plugin_url', 'http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5' );
316
+ ?>
317
+ <a href="<?php echo esc_url( $tribe_help_tab_wp_plugin_url ); ?>"><?php esc_html_e( 'Give us 5 stars!', 'tribe-common' ); ?></a>
318
+ </p>
319
+ <?php } ?>
320
+
321
+ <h3><?php esc_html_e( 'Premium Add-Ons', 'tribe-common' ); ?></h3>
322
+ <ul>
323
+ <?php foreach ( $premium_add_ons as $addon ) :
324
+ echo '<li>';
325
+ if ( isset( $addon['link'] ) ) {
326
+ echo '<a href="' . esc_url( $addon['link'] ) . '" target="_blank">';
327
+ }
328
+ echo $addon['title'];
329
+ if ( isset( $addon['coming_soon'] ) ) {
330
+ echo is_string( $addon['coming_soon'] ) ? ' ' . $addon['coming_soon'] : ' ' . esc_html__( '(Coming Soon!)', 'tribe-common' );
331
+ }
332
+ if ( isset( $addon['link'] ) ) {
333
+ echo '</a>';
334
+ }
335
+ echo '</li>';
336
+ endforeach; ?>
337
+ </ul>
338
+
339
+
340
+ <h3><?php esc_html_e( 'News and Tutorials', 'tribe-common' ); ?></h3>
341
+ <ul>
342
+ <?php
343
+ foreach ( $news_feed as $item ) {
344
+ echo '<li><a href="' . esc_url( $item['link'] . $ga_query_string ) . '">' . $item['title'] . '</a></li>';
345
+ }
346
+ echo '<li><a href="' . esc_url( Tribe__Main::$tec_url . 'category/products/' . $ga_query_string ) . '">' . $more_text . '</a></li>';
347
+ ?>
348
+ </ul>
349
+
350
+ <?php
351
+ /**
352
+ * Fires at the bottom of the sidebar on the Settings > Help tab
353
+ */
354
+ do_action( 'tribe_help_tab_sidebar' ); ?>
355
+
356
+ </div>
common/admin-views/tribe-options-licenses.php ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $link = add_query_arg(
3
+ array(
4
+ 'utm_campaign' => 'in-app',
5
+ 'utm_medium' => 'plugin-tec',
6
+ 'utm_source' => 'notice',
7
+ ), Tribe__Main::$tec_url . 'license-keys/'
8
+ );
9
+
10
+ $link = esc_url( $link );
11
+
12
+ // Explanatory text about license settings for the tab information box
13
+ $html = __( '<p>The license key you received when completing your purchase from %1$s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. <strong>Find your license keys at <a href="%2$s" target="_blank">%3$s</a></strong>.</p> <p>Each paid add-on has its own unique license key. Simply paste the key into its appropriate field on below, and give it a moment to validate. You know you\'re set when a green expiration date appears alongside a "valid" message.</p> <p>If you\'re seeing a red message telling you that your key isn\'t valid or is out of installs, visit <a href="%4$s" target="_blank">%5$s</a> to manage your installs or renew / upgrade your license.</p><p>Not seeing an update but expecting one? In WordPress, go to <a href="%6$s">Dashboard > Updates</a> and click "Check Again".</p>', 'tribe-common' );
14
+
15
+ // Expand with extra information for mu network users
16
+ if ( is_multisite() ) {
17
+ $network_all_sites_text = __( '<strong> Using our plugins in a multisite network? </strong>
18
+ Please note that your license key will be applied to the entire network, not just this site.', 'tribe-common' );
19
+
20
+ $network_admin_only = is_network_admin() ? __( 'Only license fields for <strong>network activated</strong> plugins will be
21
+ listed on this screen. ', 'tribe-common' ) : '';
22
+
23
+ $html .= "<p> $network_all_sites_text $network_admin_only </p>";
24
+ }
25
+
26
+ $licenses_tab = array(
27
+ 'info-start' => array(
28
+ 'type' => 'html',
29
+ 'html' => '<div id="modern-tribe-info">',
30
+ ),
31
+ 'info-box-title' => array(
32
+ 'type' => 'html',
33
+ 'html' => '<h2>' . __( 'Licenses', 'tribe-common' ) . '</h2>',
34
+ ),
35
+ 'info-box-description' => array(
36
+ 'type' => 'html',
37
+ 'html' => sprintf(
38
+ $html,
39
+ Tribe__Main::$tec_url,
40
+ $link,
41
+ Tribe__Main::$tec_url . 'license-keys/',
42
+ $link,
43
+ Tribe__Main::$tec_url . 'license-keys/',
44
+ admin_url( '/update-core.php' )
45
+ ),
46
+ ),
47
+ 'info-end' => array(
48
+ 'type' => 'html',
49
+ 'html' => '</div>',
50
+ ),
51
+ 'tribe-form-content-start' => array(
52
+ 'type' => 'html',
53
+ 'html' => '<div class="tribe-settings-form-wrap">',
54
+ ),
55
+ // TODO: Figure out how properly close this wrapper after the license content
56
+ 'tribe-form-content-end' => array(
57
+ 'type' => 'html',
58
+ 'html' => '</div>',
59
+ ),
60
+ );
common/admin-views/tribe-options-network.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $allTabs = apply_filters( 'tribe_settings_all_tabs', array() );
3
+
4
+ $networkTab = array(
5
+ 'priority' => 10,
6
+ 'network_admin' => true,
7
+ 'fields' => apply_filters(
8
+ 'tribe_network_settings_tab_fields', array(
9
+ 'info-start' => array(
10
+ 'type' => 'html',
11
+ 'html' => '<div id="modern-tribe-info">',
12
+ ),
13
+ 'info-box-title' => array(
14
+ 'type' => 'html',
15
+ 'html' => '<h2>' . __( 'Network Settings', 'tribe-common' ) . '</h2>',
16
+ ),
17
+ 'info-box-description' => array(
18
+ 'type' => 'html',
19
+ 'html' => '<p>' . __( 'This is where all of the global network settings for Modern Tribe\'s The Events Calendar can be modified.', 'tribe-common' ) . '</p>',
20
+ ),
21
+ 'info-end' => array(
22
+ 'type' => 'html',
23
+ 'html' => '</div>',
24
+ ),
25
+ 'hideSettingsTabs' => array(
26
+ 'type' => 'checkbox_list',
27
+ 'label' => __( 'Hide the following settings tabs on every site:', 'tribe-common' ),
28
+ 'default' => false,
29
+ 'options' => $allTabs,
30
+ 'validation_type' => 'options_multi',
31
+ 'can_be_empty' => true,
32
+ ),
33
+ )
34
+ )
35
+ );
common/admin-views/tribe-options-timezones.php ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined( 'ABSPATH' ) or exit();
3
+
4
+ $enable_button_label = __( 'Enable timezone support', 'tribe-common' );
5
+ $enable_button_url = esc_url( wp_nonce_url( add_query_arg( 'timezone-update', '1', Tribe__Settings::instance()->get_url() ), 'timezone-settings' ) );
6
+ $enable_button_text = __( 'Update Timezone Data', 'tribe-common' );
7
+ $enable_button_help = sprintf( __( 'Click this button to update your database and take advantage of additional timezone capabilities. Please <a href="%s" target="_blank">configure WordPress</a> to use the correct timezone before clicking this button!', 'tribe-common' ),
8
+ esc_url( get_admin_url( null, 'options-general.php' ) )
9
+ );
10
+
11
+ $enable_button_html = <<<HTML
12
+ <fieldset class="tribe-field tribe-field-html">
13
+ <legend> $enable_button_label </legend>
14
+ <div class="tribe-field-wrap">
15
+ <a href="$enable_button_url" class="button"> $enable_button_text </a>
16
+ <p class="tribe-field-indent description">
17
+ $enable_button_help
18
+ </p>
19
+ </div>
20
+ </fieldset>
21
+ <div class="clear"></div>
22
+ HTML;
23
+
24
+ return array(
25
+ 'tribe_events_timezones_title' => array(
26
+ 'type' => 'html',
27
+ 'html' => '<h3>' . __( 'Timezone Settings', 'tribe-common' ) . '</h3>',
28
+ ),
29
+ 'tribe_events_enable_timezones' => array(
30
+ 'type' => 'html',
31
+ 'html' => $enable_button_html
32
+ ),
33
+ 'tribe_events_timezone_mode' => array(
34
+ 'type' => 'dropdown',
35
+ 'label' => __( 'Timezone mode', 'tribe-common' ),
36
+ 'validation_type' => 'options',
37
+ 'size' => 'large',
38
+ 'options' => array(
39
+ 'event' => __( 'Use the local timezones for each event', 'tribe-common' ),
40
+ 'site' => __( 'Use the sitewide timezone everywhere', 'tribe-common' ),
41
+ ),
42
+ ),
43
+ 'tribe_events_timezones_show_zone' => array(
44
+ 'type' => 'checkbox_bool',
45
+ 'label' => __( 'Show timezone', 'tribe-common' ),
46
+ 'tooltip' => __( 'Appends the timezone to the end of event scheduling information &ndash; this can be useful when you have events in numerous different timezones.', 'tribe-common' ),
47
+ 'default' => false,
48
+ 'validation_type' => 'boolean',
49
+ ),
50
+ );
common/deprecated/Tribe__Events__Abstract_Deactivation.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Abstract_Deactivation.php' );
3
+
4
+ class Tribe__Events__Abstract_Deactivation extends Tribe__Abstract_Deactivation {}
common/deprecated/Tribe__Events__Admin__Helpers.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Admin__Helpers.php' );
3
+
4
+ class Tribe__Events__Admin__Helpers extends Tribe__Admin__Helpers {}
common/deprecated/Tribe__Events__App_Shop.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__App_Shop.php' );
3
+
4
+ class Tribe__Events__App_Shop extends Tribe__App_Shop {}
common/deprecated/Tribe__Events__Autoloader.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Autoloader.php' );
3
+
4
+ class Tribe__Events__Autoloader extends Tribe__Autoloader {}
common/deprecated/Tribe__Events__Cache.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Cache.php' );
3
+
4
+ class Tribe__Events__Cache extends Tribe__Cache {}
common/deprecated/Tribe__Events__Cache_Listener.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Cache_Listener.php' );
3
+
4
+ class Tribe__Events__Cache_Listener extends Tribe__Cache_Listener {}
common/deprecated/Tribe__Events__Capabilities.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Capabilities.php' );
3
+
4
+ class Tribe__Events__Capabilities extends Tribe__Capabilities {}
common/deprecated/Tribe__Events__Changelog_Reader.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Changelog_Reader.php' );
3
+
4
+ class Tribe__Events__Changelog_Reader extends Tribe__Changelog_Reader {}
common/deprecated/Tribe__Events__Credits.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Credits.php' );
3
+
4
+ class Tribe__Events__Credits extends Tribe__Credits {}
common/deprecated/Tribe__Events__Date_Utils.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Date_Utils.php' );
3
+
4
+ class Tribe__Events__Date_Utils extends Tribe__Date_Utils {}
common/deprecated/Tribe__Events__Deactivation.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Deactivation.php' );
3
+
4
+ class Tribe__Events__Deactivation extends Tribe__Deactivation {}
common/deprecated/Tribe__Events__Field.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Field.php' );
3
+
4
+ class Tribe__Events__Field extends Tribe__Field {}
common/deprecated/Tribe__Events__Settings.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Settings.php' );
3
+
4
+ class Tribe__Events__Settings extends Tribe__Settings {}
common/deprecated/Tribe__Events__Settings_Tab.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Settings_Tab.php' );
3
+
4
+ class Tribe__Events__Settings_Tab extends Tribe__Settings_Tab {}
common/deprecated/Tribe__Events__Support.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Support.php' );
3
+
4
+ class Tribe__Events__Support extends Tribe__Support {}
common/deprecated/Tribe__Events__Template_Factory.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Template_Factory.php' );
3
+
4
+ class Tribe__Events__Template_Factory extends Tribe__Template_Factory {}
common/deprecated/Tribe__Events__Template_Part_Cache.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Template_Part_Cache.php' );
3
+
4
+ class Tribe__Events__Template_Part_Cache extends Tribe__Template_Part_Cache {}
common/deprecated/Tribe__Events__Validate.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__Validate.php' );
3
+
4
+ class Tribe__Events__Validate extends Tribe__Validate {}
common/deprecated/Tribe__Events__View_Helpers.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+ _deprecated_file( __FILE__, '4.0', 'Tribe__View_Helpers.php' );
3
+
4
+ class Tribe__Events__View_Helpers extends Tribe__View_Helpers {}
common/functions/template-tags/date.php ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Date Functions
4
+ *
5
+ * Display functions (template-tags) for use in WordPress templates.
6
+ */
7
+
8
+ // Don't load directly
9
+ if ( ! defined( 'ABSPATH' ) ) {
10
+ die( '-1' );
11
+ }
12
+
13
+ if ( ! class_exists( 'Tribe__Main' ) ) {
14
+ return;
15
+ }
16
+
17
+ /**
18
+ * Formatted Date
19
+ *
20
+ * Returns formatted date
21
+ *
22
+ * @category Events
23
+ * @param string $date String representing the datetime, assumed to be UTC (relevant if timezone conversion is used)
24
+ * @param bool $displayTime If true shows date and time, if false only shows date
25
+ * @param string $dateFormat Allows date and time formating using standard php syntax (http://php.net/manual/en/function.date.php)
26
+ *
27
+ * @return string
28
+ */
29
+ function tribe_format_date( $date, $displayTime = true, $dateFormat = '' ) {
30
+
31
+ if ( ! Tribe__Date_Utils::is_timestamp( $date ) ) {
32
+ $date = strtotime( $date );
33
+ }
34
+
35
+ if ( $dateFormat ) {
36
+ $format = $dateFormat;
37
+ } else {
38
+ $date_year = date( 'Y', $date );
39
+ $cur_year = date( 'Y', current_time( 'timestamp' ) );
40
+
41
+ // only show the year in the date if it's not in the current year
42
+ $with_year = $date_year == $cur_year ? false : true;
43
+
44
+ if ( $displayTime ) {
45
+ $format = tribe_get_datetime_format( $with_year );
46
+ } else {
47
+ $format = tribe_get_date_format( $with_year );
48
+ }
49
+ }
50
+
51
+ $date = date_i18n( $format, $date );
52
+
53
+ /**
54
+ * Deprecated tribe_event_formatted_date in 4.0 in favor of tribe_formatted_date. Remove in 5.0
55
+ */
56
+ $date = apply_filters( 'tribe_event_formatted_date', $date, $displayTime, $dateFormat );
57
+
58
+ return apply_filters( 'tribe_formatted_date', $date, $displayTime, $dateFormat );
59
+ }
60
+
61
+ /**
62
+ * Returns formatted date for the official beginning of the day according to the Multi-day cutoff time option
63
+ *
64
+ * @category Events
65
+ * @param string $date The date to find the beginning of the day, defaults to today
66
+ * @param string $format Allows date and time formating using standard php syntax (http://php.net/manual/en/function.date.php)
67
+ *
68
+ * @return string
69
+ */
70
+ function tribe_beginning_of_day( $date = null, $format = 'Y-m-d H:i:s' ) {
71
+ $multiday_cutoff = explode( ':', tribe_get_option( 'multiDayCutoff', '00:00' ) );
72
+ $hours_to_add = $multiday_cutoff[0];
73
+ $minutes_to_add = $multiday_cutoff[1];
74
+ if ( is_null( $date ) || empty( $date ) ) {
75
+ $date = date( $format, strtotime( date( 'Y-m-d' ) . ' +' . $hours_to_add . ' hours ' . $minutes_to_add . ' minutes' ) );
76
+ } else {
77
+ $date = date( $format, strtotime( date( 'Y-m-d', strtotime( $date ) ) . ' +' . $hours_to_add . ' hours ' . $minutes_to_add . ' minutes' ) );
78
+ }
79
+
80
+ /**
81
+ * Deprecated filter tribe_event_beginning_of_day in 4.0 in favor of tribe_beginning_of_day. Remove in 5.0
82
+ */
83
+ $date = apply_filters( 'tribe_event_beginning_of_day', $date );
84
+
85
+ /**
86
+ * Filters the beginning of day date
87
+ *
88
+ * @param string $date
89
+ */
90
+ return apply_filters( 'tribe_beginning_of_day', $date );
91
+ }
92
+
93
+ /**
94
+ * Returns formatted date for the official end of the day according to the Multi-day cutoff time option
95
+ *
96
+ * @category Events
97
+ * @param string $date The date to find the end of the day, defaults to today
98
+ * @param string $format Allows date and time formating using standard php syntax (http://php.net/manual/en/function.date.php)
99
+ *
100
+ * @return string
101
+ */
102
+ function tribe_end_of_day( $date = null, $format = 'Y-m-d H:i:s' ) {
103
+ $multiday_cutoff = explode( ':', tribe_get_option( 'multiDayCutoff', '00:00' ) );
104
+ $hours_to_add = $multiday_cutoff[0];
105
+ $minutes_to_add = $multiday_cutoff[1];
106
+ if ( is_null( $date ) || empty( $date ) ) {
107
+ $date = date( $format, strtotime( 'tomorrow +' . $hours_to_add . ' hours ' . $minutes_to_add . ' minutes' ) - 1 );
108
+ } else {
109
+ $date = date( $format, strtotime( date( 'Y-m-d', strtotime( $date ) ) . ' +1 day ' . $hours_to_add . ' hours ' . $minutes_to_add . ' minutes' ) - 1 );
110
+ }
111
+
112
+ /**
113
+ * Deprecated filter tribe_event_end_of_day in 4.0 in favor of tribe_end_of_day. Remove in 5.0
114
+ */
115
+ $date = apply_filters( 'tribe_event_end_of_day', $date );
116
+
117
+ /**
118
+ * Filters the end of day date
119
+ *
120
+ * @param string $date
121
+ */
122
+ return apply_filters( 'tribe_end_of_day', $date );
123
+ }
124
+
125
+ /**
126
+ * Get the datetime saparator from the database option with escaped characters or not ;)
127
+ *
128
+ * @param string $default Default Separator if it's blank on the Database
129
+ * @param bool $esc If it's going to be used on a `date` function or method it needs to be escaped
130
+ *
131
+ * @filter tribe_datetime_separator
132
+ *
133
+ * @return string
134
+ */
135
+ function tribe_get_datetime_separator( $default = ' @ ', $esc = false ) {
136
+ $separator = (string) tribe_get_option( 'dateTimeSeparator', $default );
137
+ if ( $esc ) {
138
+ $separator = (array) str_split( $separator );
139
+ $separator = ( ! empty( $separator ) ? '\\' : '' ) . implode( '\\', $separator );
140
+ }
141
+ return apply_filters( 'tribe_datetime_separator', $separator );
142
+ }
common/functions/template-tags/day.php ADDED
@@ -0,0 +1 @@
 
1
+ <?php
common/functions/template-tags/general.php ADDED
@@ -0,0 +1,384 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Display functions (template-tags) for use in WordPress templates.
4
+ */
5
+
6
+ // Don't load directly
7
+ if ( ! defined( 'ABSPATH' ) ) {
8
+ die( '-1' );
9
+ }
10
+
11
+ if ( ! class_exists( 'Tribe__Main' ) ) {
12
+ return;
13
+ }
14
+
15
+ /**
16
+ * Get Options
17
+ *
18
+ * Retrieve specific key from options array, optionally provide a default return value
19
+ *
20
+ * @category Events
21
+ * @param string $optionName Name of the option to retrieve.
22
+ * @param string $default Value to return if no such option is found.
23
+ *
24
+ * @return mixed Value of the option if found.
25
+ * @todo Abstract this function out of template tags or otherwise secure it from other namespace conflicts.
26
+ */
27
+ function tribe_get_option( $optionName, $default = '' ) {
28
+ return apply_filters( 'tribe_get_option', Tribe__Settings_Manager::get_option( $optionName, $default ), $optionName, $default );
29
+ }
30
+
31
+ /**
32
+ * Update Option
33
+ *
34
+ * Set specific key from options array, optionally provide a default return value
35
+ *
36
+ * @category Events
37
+ * @param string $optionName Name of the option to retrieve.
38
+ * @param string $value Value to save
39
+ *
40
+ * @return void
41
+ */
42
+ function tribe_update_option( $optionName, $value ) {
43
+ Tribe__Settings_Manager::set_option( $optionName, $value );
44
+ }
45
+
46
+ /**
47
+ * Get Network Options
48
+ *
49
+ * Retrieve specific key from options array, optionally provide a default return value
50
+ *
51
+ * @category Events
52
+ * @param string $optionName Name of the option to retrieve.
53
+ * @param string $default Value to return if no such option is found.
54
+ *
55
+ * @return mixed Value of the option if found.
56
+ * @todo Abstract this function out of template tags or otherwise secure it from other namespace conflicts.
57
+ */
58
+ function tribe_get_network_option( $optionName, $default = '' ) {
59
+ return Tribe__Settings_Manager::get_network_option( $optionName, $default );
60
+ }
61
+
62
+ /**
63
+ * Returns or echoes a url to a file in the Events Calendar plugin resources directory
64
+ *
65
+ * @category Events
66
+ * @param string $resource the filename of the resource
67
+ * @param bool $echo whether or not to echo the url
68
+ *
69
+ * @return string
70
+ **/
71
+ function tribe_resource_url( $resource, $echo = false ) {
72
+ $extension = pathinfo( $resource, PATHINFO_EXTENSION );
73
+ $resources_path = 'src/resources/';
74
+ switch ( $extension ) {
75
+ case 'css':
76
+ $resource_path = $resources_path .'css/';
77
+ break;
78
+ case 'js':
79
+ $resource_path = $resources_path .'js/';
80
+ break;
81
+ case 'scss':
82
+ $resource_path = $resources_path .'scss/';
83
+ break;
84
+ default:
85
+ $resource_path = $resources_path;
86
+ break;
87
+ }
88
+
89
+ $path = $resource_path . $resource;
90
+
91
+ $plugin_path = trailingslashit( dirname( dirname( dirname( dirname( __FILE__ ) ) ) ) );
92
+ $plugin_dir = trailingslashit( basename( $plugin_path ) );
93
+ $url = plugins_url( $plugin_dir );
94
+
95
+ /**
96
+ * Filters the resource URL
97
+ *
98
+ * @param $url
99
+ * @param $resource
100
+ */
101
+ $url = apply_filters( 'tribe_resource_url', $url . $path, $resource );
102
+
103
+ /**
104
+ * Deprected the tribe_events_resource_url filter in 4.0 in favor of tribe_resource_url. Remove in 5.0
105
+ */
106
+ $url = apply_filters( 'tribe_events_resource_url', $url, $resource );
107
+
108
+ if ( $echo ) {
109
+ echo $url;
110
+ }
111
+
112
+ return $url;
113
+ }
114
+
115
+ /**
116
+ * helper function to remove empty lines from multi-line strings
117
+ *
118
+ * @category Events
119
+ * @link http://stackoverflow.com/questions/709669/how-do-i-remove-blank-lines-from-text-in-php
120
+ *
121
+ * @param string $multi_line_string a multiline string
122
+ *
123
+ * @return string the same string without empty lines
124
+ */
125
+ function tribe_multi_line_remove_empty_lines( $multi_line_string ) {
126
+ return preg_replace( "/^\n+|^[\t\s]*\n+/m", '', $multi_line_string );
127
+ }
128
+
129
+ /**
130
+ * Get the date format specified in the tribe options
131
+ *
132
+ * @category Events
133
+ * @param bool $with_year
134
+ *
135
+ * @return mixed
136
+ */
137
+ function tribe_get_date_format( $with_year = false ) {
138
+ if ( $with_year ) {
139
+ $format = tribe_get_option( 'dateWithYearFormat', get_option( 'date_format' ) );
140
+ } else {
141
+ $format = tribe_get_option( 'dateWithoutYearFormat', 'F j' );
142
+ }
143
+
144
+ // Strip slashes - otherwise the slashes for escaped characters will themselves be escaped
145
+ return apply_filters( 'tribe_date_format', stripslashes( $format ) );
146
+ }
147
+
148
+ /**
149
+ * Get the Datetime Format
150
+ *
151
+ * @category Events
152
+ *
153
+ * @param bool $with_year
154
+ *
155
+ * @return mixed|void
156
+ */
157
+ function tribe_get_datetime_format( $with_year = false ) {
158
+ $separator = (array) str_split( tribe_get_option( 'dateTimeSeparator', ' @ ' ) );
159
+
160
+ $format = tribe_get_date_format( $with_year );
161
+ $format .= ( ! empty( $separator ) ? '\\' : '' ) . implode( '\\', $separator );
162
+ $format .= get_option( 'time_format' );
163
+
164
+ return apply_filters( 'tribe_datetime_format', $format );
165
+
166
+ }
167
+
168
+ /**
169
+ * Get the time format
170
+ *
171
+ * @category Events
172
+ *
173
+ * @return mixed|void
174
+ */
175
+ function tribe_get_time_format( ) {
176
+ $format = get_option( 'time_format' );
177
+ return apply_filters( 'tribe_time_format', $format );
178
+ }
179
+
180
+ /**
181
+ * Accepts two dates and returns the number of days between them
182
+ *
183
+ * @category Events
184
+ *
185
+ * @param string $start_date
186
+ * @param string $end_date
187
+ * @param string|bool $day_cutoff
188
+ *
189
+ * @return int
190
+ * @see Tribe__Date_Utils::date_diff()
191
+ **/
192
+ function tribe_get_days_between( $start_date, $end_date, $day_cutoff = '00:00' ) {
193
+ if ( $day_cutoff === false ) {
194
+ $day_cutoff = '00:00';
195
+ } elseif ( $day_cutoff === true ) {
196
+ $day_cutoff = tribe_get_option( 'multiDayCutoff', '00:00' );
197
+ }
198
+
199
+ $start_date = new DateTime( $start_date );
200
+ if ( $start_date < new DateTime( $start_date->format( 'Y-m-d ' . $day_cutoff ) ) ) {
201
+ $start_date->modify( '-1 day' );
202
+ }
203
+ $end_date = new DateTime( $end_date );
204
+ if ( $end_date <= new DateTime( $end_date->format( 'Y-m-d ' . $day_cutoff ) ) ) {
205
+ $end_date->modify( '-1 day' );
206
+ }
207
+
208
+ return Tribe__Date_Utils::date_diff( $start_date->format( 'Y-m-d ' . $day_cutoff ), $end_date->format( 'Y-m-d ' . $day_cutoff ) );
209
+ }
210
+
211
+ /**
212
+ * Function to prepare content for use as a value in a json encoded string destined for storage on a html data attribute.
213
+ * Hence the double quote fun, especially in case they pass html encoded &quot; along. Any of those getting through to the data att will break jquery's parseJSON method.
214
+ * Themers can use this function to prepare data they may want to send to tribe_events_template_data() in the templates, and we use it in that function ourselves.
215
+ *
216
+ * @category Events
217
+ *
218
+ * @param $string
219
+ *
220
+ * @return string
221
+ */
222
+
223
+ function tribe_prepare_for_json( $string ) {
224
+
225
+ $value = trim( htmlspecialchars( $string, ENT_QUOTES, 'UTF-8' ) );
226
+ $value = str_replace( '&quot;', '"', $value );
227
+
228
+ return $value;
229
+ }
230
+
231
+ /**
232
+ * Recursively iterate through an nested structure, calling
233
+ * tribe_prepare_for_json() on all scalar values
234
+ *
235
+ * @category Events
236
+ *
237
+ * @param mixed $value The data to be cleaned
238
+ *
239
+ * @return mixed The clean data
240
+ */
241
+ function tribe_prepare_for_json_deep( $value ) {
242
+ if ( is_array( $value ) ) {
243
+ $value = array_map( 'tribe_prepare_for_json_deep', $value );
244
+ } elseif ( is_object( $value ) ) {
245
+ $vars = get_object_vars( $value );
246
+ foreach ( $vars as $key => $data ) {
247
+ $value->{$key} = tribe_prepare_for_json_deep( $data );
248
+ }
249
+ } elseif ( is_string( $value ) ) {
250
+ $value = tribe_prepare_for_json( $value );
251
+ }
252
+ return $value;
253
+ }
254
+
255
+ /**
256
+ * Generates html for any notices that have been queued on the current view
257
+ *
258
+ * @category Events
259
+ *
260
+ * @param bool $echo Whether or not to echo the notices html
261
+ *
262
+ * @return void | string
263
+ * @see Tribe__Notices::get()
264
+ **/
265
+ function tribe_the_notices( $echo = true ) {
266
+ $notices = Tribe__Notices::get();
267
+
268
+ $html = ! empty( $notices ) ? '<div class="tribe-events-notices"><ul><li>' . implode( '</li><li>', $notices ) . '</li></ul></div>' : '';
269
+
270
+ /**
271
+ * Deprecated the tribe_events_the_notices filter in 4.0 in favor of tribe_the_notices. Remove in 5.0
272
+ */
273
+ $the_notices = apply_filters( 'tribe_events_the_notices', $html, $notices );
274
+
275
+ /**
276
+ * filters the notices HTML
277
+ */
278
+ $the_notices = apply_filters( 'tribe_the_notices', $html, $notices );
279
+ if ( $echo ) {
280
+ echo $the_notices;
281
+ } else {
282
+ return $the_notices;
283
+ }
284
+ }
285
+
286
+ /**
287
+ * tribe_is_bot checks if the visitor is a bot and returns status
288
+ *
289
+ * @category Events
290
+ *
291
+ * @return bool
292
+ */
293
+ function tribe_is_bot() {
294
+ // get the current user agent
295
+ $user_agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
296
+
297
+ // check if the user agent is empty since most browsers identify themselves, so possibly a bot
298
+ if ( empty( $user_agent ) ) {
299
+ return apply_filters( 'tribe_is_bot_status', true, $user_agent, null );
300
+ }
301
+
302
+ // declare known bot user agents (lowercase)
303
+ $user_agent_bots = (array) apply_filters(
304
+ 'tribe_is_bot_list', array(
305
+ 'bot',
306
+ 'slurp',
307
+ 'spider',
308
+ 'crawler',
309
+ 'yandex',
310
+ )
311
+ );
312
+
313
+ foreach ( $user_agent_bots as $bot ) {
314
+ if ( stripos( $user_agent, $bot ) !== false ) {
315
+ return apply_filters( 'tribe_is_bot_status', true, $user_agent, $bot );
316
+ }
317
+ }
318
+
319
+ // we think this is probably a real human
320
+ return apply_filters( 'tribe_is_bot_status', false, $user_agent, null );
321
+ }
322
+
323
+ /**
324
+ * Count keys in a hierarchical array
325
+ *
326
+ * @param $value
327
+ * @param $key
328
+ * @todo - remove, only used in the meta walker
329
+ */
330
+ function tribe_count_hierarchical_keys( $value, $key ) {
331
+ global $tribe_count_hierarchical_increment;
332
+ $tribe_count_hierarchical_increment++;
333
+ }
334
+
335
+ /**
336
+ * Count items in a hierarchical array
337
+ *
338
+ * @param array $walk
339
+ *
340
+ * @return int
341
+ * @todo - remove, only used in the meta walker
342
+ */
343
+ function tribe_count_hierarchical( array $walk ) {
344
+ global $tribe_count_hierarchical_increment;
345
+ $tribe_count_hierarchical_increment = 0;
346
+ array_walk_recursive( $walk, 'tribe_count_hierarchical_keys' );
347
+
348
+ return $tribe_count_hierarchical_increment;
349
+ }
350
+
351
+ /**
352
+ * Mobile breakpoint
353
+ *
354
+ * Get the breakpoint for switching to mobile styles. Defaults to 768.
355
+ *
356
+ * @category Events
357
+ *
358
+ * @param int $default The default width (in pixels) at which to break into mobile styles
359
+ *
360
+ * @return int
361
+ */
362
+ function tribe_get_mobile_breakpoint( $default = 768 ) {
363
+ return apply_filters( 'tribe_events_mobile_breakpoint', $default );
364
+ }
365
+
366
+ /**
367
+ * Gets the render context of the given query
368
+ *
369
+ * @param WP_Query $query Query object
370
+ * @return string
371
+ */
372
+ function tribe_get_render_context( $query = null ) {
373
+ global $wp_query;
374
+
375
+ if ( ! $query instanceof WP_Query ) {
376
+ $query = $wp_query;
377
+ }
378
+
379
+ if ( empty( $query->query['tribe_render_context'] ) ) {
380
+ return 'default';
381
+ }
382
+
383
+ return $query->query['tribe_render_context'];
384
+ }
common/resources/images/modern-tribe.png ADDED
Binary file
common/resources/images/modern-tribe@2x.png ADDED
Binary file
common/resources/js/events-admin-timezone-updater.js ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Handle the timezone updater process.
3
+ */
4
+ jQuery( document ).ready( function( $ ) {
5
+ // Do not proceed if tribe_timezone_update is not available
6
+ if ( "object" !== typeof tribe_timezone_update ) {
7
+ return;
8
+ }
9
+
10
+ /**
11
+ * Controls the update loop.
12
+ *
13
+ * @param response
14
+ */
15
+ function update( response ) {
16
+ // Refresh the admin notice
17
+ if ( "string" === typeof response.html ) {
18
+ admin_notice.html( response.html );
19
+ }
20
+
21
+ // "Soft failure"?
22
+ if ( 0 == response ) {
23
+ failure();
24
+ return;
25
+ }
26
+
27
+ // Stop here if the task completed
28
+ if ( ! response.continue ) {
29
+ // Refresh page (so the new timezone settings are exposed)
30
+ window.location.assign( window.location );
31
+ return;
32
+ }
33
+
34
+ // Form a fresh request
35
+ var request = {
36
+ action: "tribe_timezone_update",
37
+ check: check_value
38
+ };
39
+
40
+ $.post( ajaxurl, request, update, "json").fail( failure );
41
+ }
42
+
43
+ /**
44
+ * If the ajax loop failed for any reason, display an appropriate message.
45
+ */
46
+ function failure() {
47
+ admin_notice.html( "<p>" + failure_msg + "</p>" );
48
+ }
49
+
50
+ var admin_notice = $( ".tribe-events-timezone-update-msg" );
51
+ var failure_msg = tribe_timezone_update.failure_msg;
52
+ var check_value = tribe_timezone_update.check;
53
+
54
+ if ( tribe_timezone_update.continue ) {
55
+ update( tribe_timezone_update );
56
+ }
57
+ } );
lang/tribe-events-calendar-af.mo CHANGED
Binary file
lang/tribe-events-calendar-af.po CHANGED
@@ -10,3668 +10,3762 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: The Events Calendar\n"
12
 
13
- #: ../src/Tribe/Activation_Page.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "Go to plugins page"
15
  msgstr ""
16
 
17
- #: ../src/Tribe/Activation_Page.php:39
18
  msgid "Return to Plugins page"
19
  msgstr ""
20
 
21
- #: ../src/Tribe/Activation_Page.php:47
22
  msgid "Go to WordPress Updates page"
23
  msgstr ""
24
 
25
- #: ../src/Tribe/Activation_Page.php:47
26
  msgid "Return to WordPress Updates"
27
  msgstr ""
28
 
29
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88
30
  msgid "Create New %s"
31
  msgstr ""
32
 
33
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:149
34
  msgid "Add another organizer"
35
  msgstr ""
36
 
37
- #: ../src/Tribe/Cost_Utils.php:108
38
  msgctxt "Cost range separator"
39
  msgid " - "
40
  msgstr ""
41
 
42
- #: ../src/Tribe/PUE/Checker.php:416
43
  msgid "unknown date"
44
  msgstr ""
45
 
46
- #: ../src/Tribe/Support.php:142
47
  msgid "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
48
  msgstr ""
49
 
50
- #: ../src/admin-views/tribe-options-help.php:94
51
  msgid "If you're looking for help with The Events Calendar, you've come to the right place. We are committed to helping make your calendar be spectacular... and hope the resources provided below will help get you there."
52
  msgstr ""
53
 
54
- #: ../src/admin-views/tribe-options-help.php:142
55
  msgid "Hi! We are Modern Tribe and we are here to help you be awesome. Thanks so much for installing our labor of love!"
56
  msgstr ""
57
 
58
- #: ../src/admin-views/tribe-options-help.php:151
59
  msgid "Support Resources To Help You Be Awesome"
60
  msgstr ""
61
 
62
- #: ../src/admin-views/tribe-options-licenses.php:17
63
  msgid ""
64
  "<strong> Using our plugins in a multisite network? </strong>\n"
65
  "\t\tPlease note that your license key will be applied to the entire network, not just this site."
66
  msgstr ""
67
 
68
- #: ../src/admin-views/tribe-options-licenses.php:20
69
  msgid ""
70
  "Only license fields for <strong>network activated</strong> plugins will be\n"
71
  "\t\tlisted on this screen. "
72
  msgstr ""
73
 
74
- #: ../src/Tribe/View_Helpers.php:334
75
  msgid "Louisiana"
76
  msgstr "Louisiana"
77
 
78
- #: ../src/admin-views/tribe-options-help.php:132
79
- msgid "If you find that you aren't getting the level of service you've come to expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us why. We'll do what we can to make it right."
80
- msgstr "As jy vind dat jy nie die vlak van diens kry wat jy het verwag van Moderne Tribe nie, stuur 'n e-pos aan %s of tweet %s en vertel ons hoekom. Ons sal doen wat ons kan om dit reg te maak."
81
-
82
- #: ../src/Tribe/View_Helpers.php:335
83
  msgid "Maine"
84
  msgstr "Maine"
85
 
86
- #: ../src/admin-views/tribe-options-help.php:133
87
  msgid "More..."
88
  msgstr "Meer..."
89
 
90
- #: ../src/Tribe/View_Helpers.php:336
91
  msgid "Maryland"
92
  msgstr "Maryland"
93
 
94
- #: ../src/Tribe/View_Helpers.php:337
95
  msgid "Massachusetts"
96
  msgstr "Massachusetts"
97
 
98
- #: ../src/Tribe/View_Helpers.php:338
99
  msgid "Michigan"
100
  msgstr "Michigan"
101
 
102
- #: ../src/admin-views/tribe-options-help.php:154
103
  msgid "Forums: Because Everyone Needs A Buddy"
104
  msgstr "Forum: Omdat almal benodig 'n hulpmaat."
105
 
106
- #: ../src/Tribe/View_Helpers.php:339
107
  msgid "Minnesota"
108
  msgstr "Minnesota"
109
 
110
- #: ../src/admin-views/tribe-options-help.php:157
111
  msgid "Not getting help?"
112
  msgstr "het jy nog hulp nodig?"
113
 
114
- #: ../src/Tribe/View_Helpers.php:340
115
  msgid "Mississippi"
116
  msgstr "Mississippi"
117
 
118
- #: ../src/admin-views/tribe-options-help.php:174
119
  msgid "Latest Version:"
120
  msgstr "Nuuster Weergawe"
121
 
122
- #: ../src/Tribe/View_Helpers.php:341
123
  msgid "Missouri"
124
  msgstr "Missouri"
125
 
126
- #: ../src/admin-views/tribe-options-help.php:176
127
  msgid "Author:"
128
  msgstr "Skrywer:"
129
 
130
- #: ../src/Tribe/View_Helpers.php:342
131
  msgid "Montana"
132
  msgstr "Montana"
133
 
134
- #: ../src/admin-views/tribe-options-help.php:176
135
  msgid "Modern Tribe Inc"
136
  msgstr "Modern Tribe Inc"
137
 
138
- #: ../src/Tribe/View_Helpers.php:343
139
  msgid "Nebraska"
140
  msgstr "Nebraska"
141
 
142
- #: ../src/admin-views/tribe-options-help.php:179
143
  msgid "Requires:"
144
  msgstr "Benodig:"
145
 
146
- #: ../src/Tribe/View_Helpers.php:344
147
  msgid "Nevada"
148
  msgstr "Nevada"
149
 
150
- #: ../src/admin-views/tribe-options-help.php:179
151
  msgid "WordPress "
152
  msgstr "WordPress "
153
 
154
- #: ../src/Tribe/View_Helpers.php:345
155
  msgid "New Hampshire"
156
  msgstr "New Hampshire"
157
 
158
- #: ../src/admin-views/tribe-options-help.php:181
159
  msgid "Wordpress.org Plugin Page"
160
  msgstr "Wordpress.org Plugin Page"
161
 
162
- #: ../src/Tribe/View_Helpers.php:346
163
  msgid "New Jersey"
164
  msgstr "New Jersey"
165
 
166
- #: ../src/admin-views/tribe-options-help.php:187
167
  msgid "Average Rating"
168
  msgstr "Algehele Waardering"
169
 
170
- #: ../src/Tribe/View_Helpers.php:347
171
  msgid "New Mexico"
172
  msgstr "New Mexico"
173
 
174
- #: ../src/admin-views/tribe-options-help.php:193
175
  msgid "Based on %d rating"
176
  msgid_plural "Based on %d ratings"
177
  msgstr[0] ""
178
  msgstr[1] ""
179
 
180
- #: ../src/Tribe/View_Helpers.php:348
181
  msgid "New York"
182
  msgstr "New York"
183
 
184
- #: ../src/admin-views/tribe-options-help.php:195
185
  msgid "Give us 5 stars!"
186
  msgstr "Geeons 5 stêrre!"
187
 
188
- #: ../src/Tribe/View_Helpers.php:349
189
  msgid "North Carolina"
190
  msgstr "North Carolina"
191
 
192
- #: ../src/admin-views/tribe-options-help.php:199
193
  msgid "Premium Add-Ons"
194
  msgstr "Premium Toevoegings"
195
 
196
- #: ../src/Tribe/View_Helpers.php:350
197
  msgid "North Dakota"
198
  msgstr "North Dakota"
199
 
200
- #: ../src/admin-views/tribe-options-help.php:208
201
  msgid "(Coming Soon!)"
202
  msgstr "(Kom Binnekort!)"
203
 
204
- #: ../src/Tribe/View_Helpers.php:351
205
  msgid "Ohio"
206
  msgstr "Ohio"
207
 
208
- #: ../src/admin-views/tribe-options-help.php:218
209
  msgid "News and Tutorials"
210
  msgstr "Nuus en Stap-vir-stap Voorbeelde"
211
 
212
- #: ../src/Tribe/View_Helpers.php:352
213
  msgid "Oklahoma"
214
  msgstr "Oklahoma"
215
 
216
- #: ../src/admin-views/tribe-options-network.php:15
217
  msgid "Network Settings"
218
  msgstr "Netwerk Verstellings"
219
 
220
- #: ../src/Tribe/View_Helpers.php:353
221
  msgid "Oregon"
222
  msgstr "Oregon"
223
 
224
- #: ../src/admin-views/tribe-options-network.php:19
225
  msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
226
  msgstr "Dit is waar al die wêreldwye netwerk instellings vir Modern Tribe's The Events Calendar kan verander word."
227
 
228
- #: ../src/Tribe/View_Helpers.php:354
229
  msgid "Pennsylvania"
230
  msgstr "Pennsylvania"
231
 
232
- #: ../src/admin-views/tribe-options-network.php:27
233
  msgid "Hide the following settings tabs on every site:"
234
  msgstr "Steek die volgende instellings oortjies op elke webtuiste weg:"
235
 
236
- #: ../src/Tribe/View_Helpers.php:355
237
  msgid "Rhode Island"
238
  msgstr "Rhode Island"
239
 
240
- #: ../src/admin-views/venue-meta-box.php:34
241
- #: ../src/functions/advanced-functions/meta_registration.php:176
 
242
  msgid "Address:"
243
  msgstr "Adres:"
244
 
245
- #: ../src/Tribe/View_Helpers.php:356
246
  msgid "South Carolina"
247
  msgstr "South Carolina"
248
 
249
- #: ../src/admin-views/venue-meta-box.php:41
250
  msgid "City:"
251
  msgstr "Stad / Dorp:"
252
 
253
- #: ../src/Tribe/View_Helpers.php:357
254
  msgid "South Dakota"
255
  msgstr "South Dakota"
256
 
257
- #: ../src/admin-views/venue-meta-box.php:48
258
  msgid "Country:"
259
  msgstr "Land:"
260
 
261
- #: ../src/Tribe/View_Helpers.php:358
262
  msgid "Tennessee"
263
  msgstr "Tennessee"
264
 
265
- #: ../src/admin-views/venue-meta-box.php:88
266
  msgid "State or Province:"
267
  msgstr "Provinsie:"
268
 
269
- #: ../src/Tribe/View_Helpers.php:359
270
  msgid "Texas"
271
  msgstr "Texas"
272
 
273
- #: ../src/admin-views/venue-meta-box.php:92
274
  msgid "Select a State:"
275
  msgstr "Skies 'n Provinsie:"
276
 
277
- #: ../src/Tribe/View_Helpers.php:360
278
  msgid "Utah"
279
  msgstr "Utah"
280
 
281
- #: ../src/admin-views/venue-meta-box.php:105
282
  msgid "Postal Code:"
283
  msgstr "Poskode:"
284
 
285
- #: ../src/Tribe/View_Helpers.php:361
286
  msgid "Vermont"
287
  msgstr "Vermont"
288
 
289
- #: ../src/admin-views/venue-meta-box.php:137
290
- #: ../src/admin-views/venue-meta-box.php:159
291
  msgid "Show Google Map:"
292
  msgstr "Wys Google Kaart:"
293
 
294
- #: ../src/Tribe/View_Helpers.php:362
295
  msgid "Virginia"
296
  msgstr "Virginia"
297
 
298
- #: ../src/admin-views/venue-meta-box.php:147
299
- #: ../src/admin-views/venue-meta-box.php:169
300
  msgid "Show Google Maps Link:"
301
  msgstr "Wys Google Kaart Skakel:"
302
 
303
- #: ../src/Tribe/View_Helpers.php:363
304
  msgid "Washington"
305
  msgstr "Washington"
306
 
307
- #: ../src/admin-views/widget-admin-list.php:13
308
  msgid "Title:"
309
  msgstr "Titel:"
310
 
311
- #: ../src/Tribe/View_Helpers.php:364
312
  msgid "West Virginia"
313
  msgstr "West Virginia"
314
 
315
- #: ../src/admin-views/widget-admin-list.php:18
316
  msgid "Show:"
317
  msgstr "Wys:"
318
 
319
- #: ../src/Tribe/View_Helpers.php:365
320
  msgid "Wisconsin"
321
  msgstr "Wisconsin"
322
 
323
- #: ../src/admin-views/widget-admin-list.php:28
324
  msgid "Show widget only if there are upcoming events:"
325
  msgstr "Wys widget slegs indien daar is opkomende gebeure:"
326
 
327
- #: ../src/Tribe/View_Helpers.php:366
328
  msgid "Wyoming"
329
  msgstr "Wyoming"
330
 
331
- #: ../src/functions/advanced-functions/meta_registration.php:16
332
- #: ../src/views/modules/meta/details.php:30
333
  msgid "Details"
334
  msgstr "Besondehede"
335
 
336
- #: ../src/Tribe/iCal.php:28
337
  msgctxt "feed link"
338
  msgid "&raquo;"
339
  msgstr ""
340
 
341
- #: ../src/functions/advanced-functions/meta_registration.php:80
342
  msgid "Event Tags:"
343
  msgstr "Gebeurtenis Etiket"
344
 
345
- #: ../src/Tribe/iCal.php:29
346
  msgid "%1$s %2$s iCal Feed"
347
  msgstr ""
348
 
349
- #: ../src/functions/advanced-functions/meta_registration.php:112
350
  msgid "Origin:"
351
  msgstr "Oorsprong:"
352
 
353
- #: ../src/Tribe/iCal.php:75
354
  msgid "Add to Google Calendar"
355
  msgstr ""
356
 
357
- #: ../src/functions/advanced-functions/meta_registration.php:286
358
  msgid "%s:"
359
  msgstr ""
360
 
361
- #: ../src/Tribe/iCal.php:75
362
  msgid "Google Calendar"
363
  msgstr ""
364
 
365
- #: ../src/functions/template-tags/date.php:285
366
  msgid "The function needs to be passed an $event or used in the loop."
367
  msgstr ""
368
 
369
- #: ../src/Tribe/iCal.php:76
370
  msgid "Download .ics file"
371
  msgstr ""
372
 
373
- #: ../src/functions/template-tags/day.php:107
374
  msgid "<span>&laquo;</span> Previous Day"
375
  msgstr ""
376
 
377
- #: ../src/Tribe/iCal.php:76
378
  msgid "iCal Export"
379
  msgstr ""
380
 
381
- #: ../src/functions/template-tags/day.php:109
382
  msgid "Next Day <span>&raquo;</span>"
383
  msgstr ""
384
 
385
- #: ../src/Tribe/iCal.php:106
386
  msgid "Month's %s"
387
  msgstr ""
388
 
389
- #: ../src/functions/template-tags/day.php:111
390
  msgid "Yesterday"
391
  msgstr ""
392
 
393
- #: ../src/Tribe/iCal.php:109
394
  msgid "Week's %s"
395
  msgstr ""
396
 
397
- #: ../src/functions/template-tags/day.php:113
398
  msgid "Tomorrow"
399
  msgstr ""
400
 
401
- #: ../src/Tribe/iCal.php:112
402
  msgid "Day's %s"
403
  msgstr ""
404
 
405
- #: ../src/functions/template-tags/deprecated.php:1283
406
  msgid "Category"
407
  msgstr "Kategorie:"
408
 
409
- #: ../src/Tribe/iCal.php:115
410
  msgid "Listed %s"
411
  msgstr ""
412
 
413
- #: ../src/functions/template-tags/general.php:441
414
  msgid "Tags:"
415
  msgstr "Etikette:"
416
 
417
- #: ../src/Tribe/iCal.php:120
418
  msgid "Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps"
419
  msgstr ""
420
 
421
- #: ../src/functions/template-tags/general.php:553
422
  msgid "Loading %s"
423
  msgstr ""
424
 
425
- #: ../src/admin-views/admin-update-message.php:9
426
- #: ../src/admin-views/admin-welcome-message.php:11
427
  msgid "You are running Version %s and deserve a hug :-)"
428
  msgstr ""
429
 
430
- #: ../src/Tribe/Cost_Utils.php:123
431
  msgid "Free"
432
  msgstr "Gratis"
433
 
434
- #: ../src/admin-views/admin-update-message.php:32
435
  msgid "Keep the Core Plugin <strong>FREE</strong>!"
436
  msgstr ""
437
 
438
- #: ../src/functions/template-tags/general.php:1455
439
  msgid "Calendar powered by %sThe Events Calendar%s"
440
  msgstr "Hierdie Kalender word aangedrewe deur %sThe Events Calendar%s"
441
 
442
- #: ../src/admin-views/admin-update-message.php:33
443
  msgid "Every time you rate <strong>5 stars</strong>, a fairy is born. Okay maybe not, but more happy users mean more contributions and help on the forums. The community NEEDS your voice."
444
  msgstr ""
445
 
446
- #: ../src/functions/template-tags/loop.php:131
447
  msgid "Upcoming %s"
448
  msgstr ""
449
 
450
- #: ../src/admin-views/admin-update-message.php:34
451
- #: ../src/admin-views/admin-welcome-message.php:22
452
  msgid "Rate It"
453
  msgstr ""
454
 
455
- #: ../src/functions/template-tags/loop.php:145
456
  msgid "%1$s for %2$s - %3$s"
457
  msgstr ""
458
 
459
- #: ../src/admin-views/admin-update-message.php:37
460
  msgid "PSST... Want a Discount?"
461
  msgstr ""
462
 
463
- #: ../src/functions/template-tags/loop.php:147
464
  msgid "Past %s"
465
  msgstr ""
466
 
467
- #: ../src/admin-views/admin-update-message.php:38
468
  msgid "We send out discounts to our core users via our newsletter."
469
  msgstr ""
470
 
471
- #: ../src/functions/template-tags/loop.php:152
472
- #: ../src/functions/template-tags/loop.php:161
473
  msgid "%1$s for %2$s"
474
  msgstr ""
475
 
476
- #: ../src/admin-views/admin-update-message.php:43
477
- #: ../src/admin-views/admin-welcome-message.php:31
478
  msgid "Sign Up"
479
  msgstr ""
480
 
481
- #: ../src/functions/template-tags/options.php:20
482
  msgid "Your current Events URL is %s"
483
  msgstr "Jou huidige gebeurtenis URL% s"
484
 
485
- #: ../src/admin-views/admin-update-message.php:49
486
  msgid "Looking for Something Special?"
487
  msgstr ""
488
 
489
- #: ../src/functions/template-tags/options.php:29
490
  msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
491
  msgstr "Jy <strong> kan nie </ strong> dieselfde afkorting gebruik as hierbo. Die bogenoemde moet verkieslik in meervoud wees, en hierdie is in enkelvoud <br /> Jou enkele gebeurtenis URL is soos:.%s"
492
 
493
- #: ../src/admin-views/admin-update-message.php:51
494
  msgid "Pro"
495
  msgstr ""
496
 
497
- #: ../src/io/csv/admin-views/columns.php:22
498
  msgid "Column Mapping: %s"
499
  msgstr "Kolom Uitleg:% s"
500
 
501
- #: ../src/admin-views/admin-update-message.php:53
502
  msgid "Community Events"
503
  msgstr ""
504
 
505
- #: ../src/io/csv/admin-views/columns.php:27
506
  msgid "Columns have been mapped based on your last import. Please ensure the selected fields match the columns in your CSV file."
507
  msgstr ""
508
 
509
- #: ../src/admin-views/admin-update-message.php:54
510
  msgid "Filters"
511
  msgstr ""
512
 
513
- #: ../src/io/csv/admin-views/columns.php:32
514
  msgid "Column Headings"
515
  msgstr "Kolomopskrifte"
516
 
517
- #: ../src/admin-views/admin-update-message.php:55
518
  msgid "Facebook"
519
  msgstr ""
520
 
521
- #: ../src/io/csv/admin-views/columns.php:33
522
  msgid "Event Fields"
523
  msgstr "Gebeurtenisvelde"
524
 
525
- #: ../src/admin-views/admin-update-message.php:58
526
- #: ../src/admin-views/admin-welcome-message.php:53
527
  msgid "News For Events Users"
528
  msgstr ""
529
 
530
- #: ../src/io/csv/admin-views/columns.php:44
531
  msgid "Perform Import"
532
  msgstr "Bemagtig Invoer"
533
 
534
- #: ../src/admin-views/admin-welcome-message.php:19
535
  msgid "Keep The Events Calendar Core FREE"
536
  msgstr ""
537
 
538
- #: ../src/io/csv/admin-views/general.php:10
539
  msgid "The Events Calendar: Import"
540
  msgstr ""
541
 
542
- #: ../src/admin-views/admin-welcome-message.php:20
543
  msgid "5 star ratings help us bring TEC to more users. More happy users mean more support, more features, and more of everything you know and love about The Events Calendar. We couldn't do this without your support."
544
  msgstr ""
545
 
546
- #: ../src/io/csv/admin-views/general.php:12
547
  msgid "Instructions"
548
  msgstr ""
549
 
550
- #: ../src/admin-views/admin-welcome-message.php:21
551
  msgid "Rate it five stars today!"
552
  msgstr ""
553
 
554
- #: ../src/io/csv/admin-views/general.php:14
555
  msgid "To import events, first select a %sDefault Import Event Status%s below to assign to your imported events."
556
  msgstr ""
557
 
558
- #: ../src/admin-views/admin-welcome-message.php:25
559
  msgid "Newsletter Signup"
560
  msgstr ""
561
 
562
- #: ../src/io/csv/admin-views/general.php:17
563
  msgid "Once your setting is saved, move to the applicable Import tab to select import specific criteria."
564
  msgstr ""
565
 
566
- #: ../src/admin-views/admin-welcome-message.php:26
567
  msgid "Stay in touch with The Events Calendar Pro. We send out periodic updates, key developer notices, and even the occasional discount."
568
  msgstr ""
569
 
570
- #: ../src/io/csv/admin-views/general.php:24
571
  msgid "Import Settings"
572
  msgstr ""
573
 
574
- #: ../src/admin-views/admin-welcome-message.php:40
575
- #: ../src/admin-views/tribe-options-help.php:148
576
  msgid "Getting Started"
577
  msgstr "Spring Weg"
578
 
579
- #: ../src/io/csv/admin-views/general.php:27
580
  msgid "Default imported event status:"
581
  msgstr ""
582
 
583
- #: ../src/admin-views/admin-welcome-message.php:41
584
  msgid "Check out the New User Primer &amp; Tutorials"
585
  msgstr ""
586
 
587
- #: ../src/io/csv/admin-views/general.php:30
588
  msgid "Published"
589
  msgstr ""
590
 
591
- #: ../src/admin-views/admin-welcome-message.php:43
592
  msgid "Looking for More Features?"
593
  msgstr ""
594
 
595
- #: ../src/io/csv/admin-views/general.php:31
596
  msgid "Pending"
597
  msgstr ""
598
 
599
- #: ../src/admin-views/admin-welcome-message.php:44
600
  msgid "Addons for Community, Tickets, Filters, Facebook and more."
601
  msgstr ""
602
 
603
- #: ../src/io/csv/admin-views/general.php:32
604
  msgid "Draft"
605
  msgstr ""
606
 
607
- #: ../src/admin-views/admin-welcome-message.php:46
608
  msgid "Support Resources"
609
  msgstr ""
610
 
611
- #: ../src/io/csv/admin-views/header.php:17
612
  msgid "Events Import"
613
  msgstr ""
614
 
615
- #: ../src/admin-views/admin-welcome-message.php:47
616
  msgid "FAQs, Documentation, Tutorials and Forums"
617
  msgstr ""
618
 
619
- #: ../src/io/csv/admin-views/import.php:17
620
  msgid "Import Instructions"
621
  msgstr "Invoer Instruksies"
622
 
623
- #: ../src/admin-views/admin-welcome-message.php:50
624
  msgid "Release Notes"
625
  msgstr ""
626
 
627
- #: ../src/io/csv/admin-views/import.php:20
628
  msgid "If your events have Organizers or Venues, please import those first."
629
  msgstr "As jou gebeure het organiseerders of plekke het, voer dit asseblief eerste in."
630
 
631
- #: ../src/admin-views/admin-welcome-message.php:51
632
  msgid "Get the Skinny on the Latest Updates"
633
  msgstr ""
634
 
635
- #: ../src/io/csv/admin-views/import.php:21
636
  msgid "To import organizers or venues:"
637
  msgstr "Om organiseerders of Plek in te voer."
638
 
639
- #: ../src/admin-views/admin-welcome-message.php:54
640
  msgid "Product Releases, Tutorials and Community Activity"
641
  msgstr ""
642
 
643
- #: ../src/io/csv/admin-views/import.php:23
644
  msgid "Select the appropriate import type."
645
  msgstr "Kies die toepaslike invoer tipe."
646
 
647
- #: ../src/admin-views/app-shop.php:4
648
  msgid "Tribe Event Add-Ons"
649
  msgstr "Tribe Event Byvoegings"
650
 
651
- #: ../src/io/csv/admin-views/import.php:24
652
- #: ../src/io/csv/admin-views/import.php:30
653
  msgid "Upload a CSV file with one record on each line. The first line may contain column names (check the box below)."
654
  msgstr "Laai 'n CSV-lêer met 'n rekord van elke lyn. Die eerste reël mag kolom name (merk die boks hieronder) bevat."
655
 
656
- #: ../src/admin-views/app-shop.php:54
657
  msgid "Version"
658
  msgstr "Weergawe"
659
 
660
- #: ../src/io/csv/admin-views/import.php:25
661
  msgid "One column in your CSV should have the Organizer/Venue name. All other fields are optional."
662
  msgstr "Een kolom in jou CSV moet die organiseerder / Plek naam wees. Alle ander velde is opsioneel."
663
 
664
- #: ../src/admin-views/app-shop.php:57
665
  msgid "Last Update"
666
  msgstr "Laaste Opgradering"
667
 
668
- #: ../src/io/csv/admin-views/import.php:26
669
- #: ../src/io/csv/admin-views/import.php:32
670
  msgid "After you upload your file, you'll have the opportunity to indicate how the columns in your CSV map to fields in The Events Calendar."
671
  msgstr "Nadat jy jou lêer opgelaai het, sal jy die geleentheid kry om die kolomme in jou CSV kaart aan te dui velde in The Events Calendar."
672
 
673
- #: ../src/admin-views/event-sidebar-options.php:13
674
  msgid "Hide From %s Listings"
675
  msgstr ""
676
 
677
- #: ../src/io/csv/admin-views/import.php:28
678
  msgid "After importing your Organizers and Venues, import your Events:"
679
  msgstr "Na die invoer van jou Organiseerders en plekke, voer van jou Gebeure in:"
680
 
681
- #: ../src/admin-views/event-sidebar-options.php:15
682
  msgid "Sticky in Month View"
683
  msgstr ""
684
 
685
- #: ../src/io/csv/admin-views/import.php:31
686
  msgid "One column in your CSV should have the Event title. Another should have the Event start date. All other fields are optional."
687
  msgstr "Een kolom in jou CSV moet die Gebeurtenis titel wees. Nog een moet die Gebeurtenis begin datum wees. Alle ander velde is opsioneel."
688
 
689
- #: ../src/admin-views/event-sidebar-options.php:16
690
  msgid "When events are sticky in month view, they'll display first in the list of events shown within a given day block."
691
  msgstr ""
692
 
693
- #: ../src/io/csv/admin-views/import.php:36
694
  msgid "Questions? <a href=\"%s\">Watch the video</a>."
695
  msgstr "Vrie? <a href=\"%s\">Kyk na hierdie video</a>."
696
 
697
- #: ../src/admin-views/events-meta-box.php:37
698
  msgid "Time &amp; Date"
699
  msgstr ""
700
 
701
- #: ../src/io/csv/admin-views/import.php:43
702
  msgid "Import Type:"
703
  msgstr "Invoer Tipe"
704
 
705
- #: ../src/admin-views/events-meta-box.php:44
706
  msgid "You have changed the recurrence rules of this %1$s. Saving the %1$s will update all future %2$s. If you did not mean to change all %2$s, then please refresh the page."
707
  msgstr ""
708
 
709
- #: ../src/io/csv/admin-views/import.php:55
710
  msgid "CSV File:"
711
  msgstr "CSV Dokument:"
712
 
713
- #: ../src/admin-views/events-meta-box.php:47
714
  msgid "All Day %s:"
715
  msgstr ""
716
 
717
- #: ../src/io/csv/admin-views/import.php:59
718
  msgid "Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file is UTF-8 encoded? Make sure to specify the character encoding when you save the file, or pass it through a <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>conversion tool</a>."
719
  msgstr "Laai 'n korrekte formaat, UTF-8-kodering CSV. Nie seker of jou lêer UTF-8-kodering? Maak seker dat die karakter enkodering spesifiseer wanneer u die lêer stoor, of dit slaag deur 'n <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'> omskakeling instrument</ a>."
720
 
721
- #: ../src/admin-views/events-meta-box.php:53
722
  msgid "Start Date &amp; Time:"
723
  msgstr "Begin Datum &amp; Tyd"
724
 
725
- #: ../src/io/csv/admin-views/import.php:67
726
  msgid "This file has column names in the first row"
727
  msgstr "Hierdie lêer het kolom name in die eerste ry"
728
 
729
- #: ../src/admin-views/events-meta-box.php:57
730
- #: ../src/admin-views/events-meta-box.php:78
731
  msgid "YYYY-MM-DD"
732
  msgstr "JJJJ-MM-DD"
733
 
734
- #: ../src/io/csv/admin-views/import.php:78
735
  msgid "Import CSV File"
736
  msgstr "Voer CSV Dokument in!"
737
 
738
- #: ../src/admin-views/events-meta-box.php:75
739
  msgid "End Date &amp; Time:"
740
  msgstr "Einde Datum &amp; Tyd:"
741
 
742
- #: ../src/io/csv/admin-views/result.php:15
743
  msgid "Import Result"
744
  msgstr "Voer Resultaat In"
745
 
746
- #: ../src/admin-views/events-meta-box.php:103
747
  msgid "Location"
748
  msgstr ""
749
 
750
- #: ../src/io/csv/admin-views/result.php:17
751
  msgid "Import complete!"
752
  msgstr "Invoer Afgehandel!"
753
 
754
- #: ../src/admin-views/events-meta-box.php:124
755
  msgid "%s Website"
756
  msgstr ""
757
 
758
- #: ../src/io/csv/admin-views/result.php:19
759
  msgid "Inserted: %d"
760
  msgstr "Ingevoeg:% d"
761
 
762
- #: ../src/admin-views/events-meta-box.php:127
763
  msgid "URL:"
764
  msgstr "Web Adres"
765
 
766
- #: ../src/io/csv/admin-views/result.php:20
767
  msgid "Updated: %d"
768
  msgstr "Opgedateer:% d"
769
 
770
- #: ../src/admin-views/events-meta-box.php:141
771
  msgid "%s Cost"
772
  msgstr ""
773
 
774
- #: ../src/io/csv/admin-views/result.php:21
775
  msgid "Skipped: %d"
776
  msgstr "Oorgeslaan:% d"
777
 
778
- #: ../src/admin-views/events-meta-box.php:144
779
  msgid "Currency Symbol:"
780
  msgstr "Geldeenheid Simbool"
781
 
782
- #: ../src/io/csv/admin-views/result.php:25
783
  msgid "The import statistics above have the following meaning:"
784
  msgstr "Die invoer statistieke hierbo het die volgende betekenis:"
785
 
786
- #: ../src/admin-views/events-meta-box.php:159
787
  msgctxt "Currency symbol position"
788
  msgid "Before cost"
789
  msgstr ""
790
 
791
- #: ../src/io/csv/admin-views/result.php:26
792
  msgid "<ol><li><strong>Inserted:</strong> A new item was inserted successfully.</li><li><strong>Updated:</strong> An item was found with the same name and/or start date. The existing item was updated with the new value from the file.</li><li><strong>Skipped:</strong> A row was found in the CSV file that could not be imported. Please see below for the invalid rows.</li></ol>"
793
  msgstr "<ol> <li> Plaas: </ strong> 'n nuwe item is suksesvol ingevoeg </ li> <li> Opdateer:. </ strong> 'n item is gevind met dieselfde naam en / of begin datum. Die bestaande item is opgedateer met die nuwe waarde van die lêer </ li> <li> Oorgeslaan. </ Strong> 'n ry in die CSV-lêer wat nie ingevoer kon word nie. Sien asseblief hieronder vir die ongeldig rye. </ Li> </ ol>"
794
 
795
- #: ../src/admin-views/events-meta-box.php:162
796
  msgctxt "Currency symbol position"
797
  msgid "After cost"
798
  msgstr ""
799
 
800
- #: ../src/io/csv/admin-views/result.php:29
801
  msgid "Skipped row numbers: %s"
802
  msgstr "Ry getalle wat oorgeslaan is:% s"
803
 
804
- #: ../src/admin-views/events-meta-box.php:167
805
- #: ../src/functions/advanced-functions/meta_registration.php:48
806
- #: ../src/views/modules/meta/details.php:100
807
  msgid "Cost:"
808
  msgstr "Koste:"
809
 
810
- #: ../src/admin-views/events-meta-box.php:175
811
  msgid "Enter a 0 for %s that are free or leave blank to hide the field."
812
  msgstr ""
813
 
814
- #: ../src/admin-views/new-organizer-meta-section.php:15
815
- #: ../src/admin-views/organizer-meta-box.php:15
816
- #: ../src/admin-views/venue-meta-box.php:25
817
  msgid "%s Name:"
818
  msgstr ""
819
 
820
- #: ../src/views/day/nav.php:16
821
  msgid "Day Navigation"
822
  msgstr ""
823
 
824
- #: ../src/admin-views/new-organizer-meta-section.php:21
825
- #: ../src/admin-views/organizer-meta-box.php:22
826
- #: ../src/admin-views/tickets/attendees.php:52
827
- #: ../src/admin-views/venue-meta-box.php:112
828
- #: ../src/functions/advanced-functions/meta_registration.php:159
829
- #: ../src/functions/advanced-functions/meta_registration.php:238
830
- #: ../src/views/modules/meta/organizer.php:41
831
- #: ../src/views/modules/meta/venue.php:40
832
  msgid "Phone:"
833
  msgstr "Telefoon:"
834
 
835
- #: ../src/views/day/single-event.php:66 ../src/views/list/single-event.php:70
836
  msgid "Find out more"
837
  msgstr "Vind meer uit"
838
 
839
- #: ../src/admin-views/new-organizer-meta-section.php:27
840
- #: ../src/admin-views/organizer-meta-box.php:28
841
- #: ../src/admin-views/tickets/attendees.php:61
842
- #: ../src/admin-views/venue-meta-box.php:119
843
- #: ../src/functions/advanced-functions/meta_registration.php:96
844
- #: ../src/functions/advanced-functions/meta_registration.php:191
845
- #: ../src/functions/advanced-functions/meta_registration.php:270
846
- #: ../src/views/modules/meta/details.php:125
847
- #: ../src/views/modules/meta/organizer.php:63
848
- #: ../src/views/modules/meta/venue.php:45
849
  msgid "Website:"
850
  msgstr "Webtuiste:"
851
 
852
- #: ../src/views/list/nav.php:19
853
  msgid "%s List Navigation"
854
  msgstr ""
855
 
856
- #: ../src/admin-views/new-organizer-meta-section.php:33
857
- #: ../src/admin-views/organizer-meta-box.php:34
858
- #: ../src/functions/advanced-functions/meta_registration.php:254
859
- #: ../src/views/modules/meta/organizer.php:52
860
  msgid "Email:"
861
  msgstr "E-pos:"
862
 
863
- #: ../src/views/list/nav.php:25
864
  msgid "<span>&laquo;</span> Previous %s"
865
  msgstr ""
866
 
867
- #: ../src/admin-views/new-organizer-meta-section.php:34
868
- #: ../src/admin-views/organizer-meta-box.php:35
869
  msgid "You may want to consider <a href=\"http://wordpress.org/plugins/tags/obfuscate\">obfuscating</a> any e-mail address published on your site to best avoid it getting harvested by spammers."
870
  msgstr "Wil jy dalk 'n e-pos adres wat op jou werf verskyn teen gemorspos <a href=\"http://wordpress.org/plugins/tags/obfuscate\"> beskerm? </ a>."
871
 
872
- #: ../src/views/list/nav.php:32
873
  msgid "Next %s <span>&raquo;</span>"
874
  msgstr ""
875
 
876
- #: ../src/admin-views/new-organizer-meta-section.php:60
877
- #: ../src/admin-views/organizer-meta-box.php:57
878
- #: ../src/admin-views/venue-meta-box.php:193
879
  msgid "%s Name Already Exists"
880
  msgstr ""
881
 
882
- #: ../src/views/modules/bar.php:30 ../src/views/modules/bar.php:61
883
  msgid "Find %s"
884
  msgstr ""
885
 
886
- #: ../src/admin-views/tickets/attendees.php:17
887
  msgid "Event Summary"
888
  msgstr "Gebeurtenis Opsomming"
889
 
890
- #: ../src/views/modules/bar.php:37
891
  msgid "Event Views Navigation"
892
  msgstr "Gebeurtenis Aansig Navigasie"
893
 
894
- #: ../src/admin-views/tickets/attendees.php:23
895
  msgid "Event Details"
896
  msgstr "Gebeurtenis Besonderhede"
897
 
898
- #: ../src/views/modules/bar.php:38
899
  msgid "View As"
900
  msgstr "Kyk na as"
901
 
902
- #: ../src/admin-views/tickets/attendees.php:25
903
  msgid "Start Date / Time:"
904
  msgstr "Begin Datum / Tyd"
905
 
906
- #: ../src/views/modules/meta/details.php:119
907
  msgid "%s Tags:"
908
  msgstr ""
909
 
910
- #: ../src/admin-views/tickets/attendees.php:29
911
  msgid "End Date / Time:"
912
  msgstr "Eindig datum / Tyd"
913
 
914
- #: ../src/functions/template-tags/general.php:1279
915
  msgid "%s for"
916
  msgstr ""
917
 
918
- #: ../src/admin-views/tickets/attendees.php:69
919
  msgid "Ticket Sales"
920
  msgstr "Kaartjie Verkope"
921
 
922
- #: ../src/functions/template-tags/general.php:1278
923
  msgid "Find out more »"
924
  msgstr ""
925
 
926
- #: ../src/admin-views/tickets/attendees.php:86
927
  msgid "(%d awaiting review)"
928
  msgid_plural "(%d awaiting review)"
929
  msgstr[0] ""
930
  msgstr[1] ""
931
 
932
- #: ../src/views/month/nav.php:18
933
  msgid "Calendar Month Navigation"
934
  msgstr "Kalender Maand Navigasie"
935
 
936
- #: ../src/admin-views/tickets/attendees.php:90
937
- msgid "Sold %d %s"
938
- msgstr ""
939
-
940
- #: ../src/views/month/single-day.php:43
941
  msgid "View 1 %1$s"
942
  msgid_plural "View All %2$s %3$s"
943
  msgstr[0] ""
944
  msgstr[1] ""
945
 
946
- #: ../src/admin-views/tickets/attendees.php:93
947
- msgid "Sold %d of %d %s"
948
- msgstr ""
949
-
950
- #: ../src/views/single-event.php:27
951
  msgid "&laquo; All %s"
952
  msgstr ""
953
 
954
- #: ../src/admin-views/tickets/attendees.php:111
955
  msgid "Tickets sold:"
956
  msgstr "Kaartjies Verkoop"
957
 
958
- #: ../src/views/single-event.php:46 ../src/views/single-event.php:91
959
  msgid "%s Navigation"
960
  msgstr ""
961
 
962
- #: ../src/admin-views/tickets/attendees.php:118
963
  msgid "Finalized:"
964
  msgstr ""
965
 
966
- #: ../src/views/tickets/attendees-email.php:24
967
  msgid "Attendee List"
968
  msgstr "beskoerslys"
969
 
970
- #: ../src/admin-views/tickets/attendees.php:121
971
  msgid "Awaiting review:"
972
  msgstr ""
973
 
974
- #: ../src/views/tickets/email.php:26
975
  msgid "Your tickets"
976
  msgstr "Jou Kaartjies"
977
 
978
- #: ../src/admin-views/tickets/attendees.php:128
979
  msgid "Checked in:"
980
  msgstr "Aangemeld:"
981
 
982
- #: ../src/views/tickets/email.php:309
983
  msgid "Ticket Type"
984
  msgstr "Kaartjie Tipe"
985
 
986
- #: ../src/admin-views/tickets/attendees.php:146
987
  msgid "Send the attendee list by email"
988
  msgstr "Stuur besoekerslys per e-pos"
989
 
990
- #: ../src/views/tickets/email.php:313
991
  msgid "Purchaser"
992
  msgstr "Aankoper"
993
 
994
- #: ../src/admin-views/tickets/attendees.php:150
995
  msgid "Select a User:"
996
  msgstr "Kies 'n Gebruker:"
997
 
998
- #: ../src/views/widgets/list-widget.php:65
999
  msgid "View All %s"
1000
  msgstr ""
1001
 
1002
- #: ../src/admin-views/tickets/attendees.php:155
1003
  msgid "Select..."
1004
  msgstr "Kies..."
1005
 
1006
- #: ../src/views/widgets/list-widget.php:71
1007
  msgid "There are no upcoming %s at this time."
1008
  msgstr ""
1009
 
1010
- #: ../src/admin-views/tickets/attendees.php:160
1011
  msgid "or"
1012
  msgstr "of"
1013
 
1014
- #: ../src/admin-views/tickets/attendees.php:162
1015
  msgid "Email Address:"
1016
  msgstr "E-pos Adres"
1017
 
1018
- #: ../src/admin-views/tickets/list.php:21
1019
  msgid "Edit"
1020
  msgstr "Wysig"
1021
 
1022
- #: ../src/admin-views/tickets/list.php:24
1023
  msgid "Edit in %s"
1024
  msgstr "Wysig in %s"
1025
 
1026
- #: ../src/admin-views/tickets/list.php:27
1027
  msgid "View"
1028
  msgstr "Kyk"
1029
 
1030
- #: ../src/admin-views/tickets/list.php:67
1031
  msgid "Sold %d"
1032
  msgstr "Verkoop %d"
1033
 
1034
- #: ../src/admin-views/tickets/list.php:69
1035
- msgid "Sold %d of %d"
1036
- msgstr "Verkoop %d van %d"
1037
-
1038
- #: ../src/admin-views/tickets/meta-box.php:23
1039
  msgid "This event was created using Community Events. Are you sure you want to sell tickets for it?"
1040
  msgstr "Hierdie geleentheid is geskep met behulp van gemeenskap gebeure. Is jy seker jy wil hê om kaartjies te verkoop vir dit?"
1041
 
1042
- #: ../src/admin-views/tickets/meta-box.php:34
1043
  msgid "Upload image for the ticket header"
1044
  msgstr "Laai beeld vir die kaartjie hoof op"
1045
 
1046
- #: ../src/admin-views/tickets/meta-box.php:35
1047
  msgid "The maximum image size in the email will be 580px wide by any height, and then scaled for mobile. If you would like \"retina\" support use an image sized to 1160px wide."
1048
  msgstr "Die maksimum beeld grootte in die e-pos is 580px wyd deur enige hoogte, en sal dan afgeskaal wordvir selfone. As jy van \"retina\" ondersteuning gebruik wil maak kan die beeld tot die grootte van 1160px ver breed word."
1049
 
1050
- #: ../src/admin-views/tickets/meta-box.php:38
1051
  msgid "Select an Image"
1052
  msgstr "Kies 'n beeld"
1053
 
1054
- #: ../src/admin-views/tickets/meta-box.php:46
1055
  msgid "Remove"
1056
  msgstr "Verwyder"
1057
 
1058
- #: ../src/admin-views/tickets/meta-box.php:64
1059
- #: ../src/admin-views/tickets/meta-box.php:74
1060
  msgid "Add new ticket"
1061
  msgstr "Voeg 'n Nuwe Kaartjie by"
1062
 
1063
- #: ../src/admin-views/tickets/meta-box.php:75
1064
  msgid "Edit ticket"
1065
  msgstr "Wysig Kaartjie"
1066
 
1067
- #: ../src/admin-views/tickets/meta-box.php:80
1068
  msgid "Sell using:"
1069
  msgstr "Verkoop deur middel van:"
1070
 
1071
- #: ../src/admin-views/tickets/meta-box.php:97
1072
  msgid "Ticket Name:"
1073
  msgstr "Kaartjie Naam:"
1074
 
1075
- #: ../src/admin-views/tickets/meta-box.php:104
1076
  msgid "Ticket Description:"
1077
  msgstr "Kaartjie Beskrywing"
1078
 
1079
- #: ../src/admin-views/tickets/meta-box.php:113
1080
  msgid "Price:"
1081
  msgstr "Prys:"
1082
 
1083
- #: ../src/admin-views/tickets/meta-box.php:119
1084
  msgid "(0 or empty for free tickets)"
1085
  msgstr "(0 of laat leeg vir gratis kaartjies)"
1086
 
1087
- #: ../src/admin-views/tickets/meta-box.php:125
1088
  msgid "Sale Price:"
1089
  msgstr ""
1090
 
1091
- #: ../src/admin-views/tickets/meta-box.php:131
1092
  msgid "(Current sale price - this can be managed via the product editor)"
1093
  msgstr ""
1094
 
1095
- #: ../src/admin-views/tickets/meta-box.php:137
1096
  msgid "Start sale:"
1097
  msgstr "Begin verkope:"
1098
 
1099
- #: ../src/admin-views/tickets/meta-box.php:161
1100
  msgid "End sale:"
1101
  msgstr "Eindig Verkope:"
1102
 
1103
- #: ../src/admin-views/tickets/meta-box.php:183
1104
  msgid "When will ticket sales occur? If you don't set a start/end date for sales, tickets will be available from now until the event ends."
1105
  msgstr "Wanneer sal kaartjieverkope plaasvind? As jy nie het 'n begin / einde datum vir die verkope instel nie, sal kaartjies beskikbaar wees van nou af tot aan die byeenkoms eindig."
1106
 
1107
- #: ../src/admin-views/tickets/meta-box.php:195
1108
  msgid "Save this ticket"
1109
  msgstr "Stel as kaartjie hoof op."
1110
 
1111
- #: ../src/admin-views/tribe-options-display.php:4
1112
  msgid "Default Events Template"
1113
  msgstr "Standaard Gebeurtenis Bloudruk"
1114
 
1115
- #: ../src/admin-views/tribe-options-display.php:5
1116
  msgid "Default Page Template"
1117
  msgstr "Standaard Bladsy Bloudruk"
1118
 
1119
- #: ../src/admin-views/tribe-options-display.php:32
1120
  msgid "Display Settings"
1121
  msgstr "Skerm-instellings"
1122
 
1123
- #: ../src/admin-views/tribe-options-display.php:37
1124
  msgid "The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme.</p><p>There are going to be situations where no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications."
1125
  msgstr ""
1126
 
1127
- #: ../src/admin-views/tribe-options-display.php:51
1128
  msgid "Basic Template Settings"
1129
  msgstr "Basiese Bloudruk Verstellings"
1130
 
1131
- #: ../src/admin-views/tribe-options-display.php:55
1132
  msgid "Default stylesheet used for events templates"
1133
  msgstr "Standaard stylblad wat gebruik word vir gebeure bloudruk"
1134
 
1135
- #: ../src/admin-views/tribe-options-display.php:58
1136
  msgid "Skeleton Styles"
1137
  msgstr "Geraamtestyl"
1138
 
1139
- #: ../src/admin-views/tribe-options-display.php:60
1140
  msgid "Only includes enough css to achieve complex layouts like calendar and week view."
1141
  msgstr "Sluit slegs genoeg css in om komplekse uitlegte soos kalender en week aansig te verskaf."
1142
 
1143
- #: ../src/admin-views/tribe-options-display.php:62
1144
  msgid "Full Styles"
1145
  msgstr "Volle Style"
1146
 
1147
- #: ../src/admin-views/tribe-options-display.php:64
1148
  msgid "More detailed styling, tries to grab styles from your theme."
1149
  msgstr "Meer stilering, probeer stylaanwysings vanaf jou tema bekom."
1150
 
1151
- #: ../src/admin-views/tribe-options-display.php:66
1152
  msgid "Tribe Events Styles"
1153
  msgstr "Tribe Events Style"
1154
 
1155
- #: ../src/admin-views/tribe-options-display.php:68
1156
  msgid "A fully designed and styled theme for your events pages."
1157
  msgstr "'N ten volle ontwerp en gestileerde bloudruk vir jou gebeure bladsye."
1158
 
1159
- #: ../src/admin-views/tribe-options-display.php:75
1160
  msgid "Events template"
1161
  msgstr "Gebeurtenis Bloudruk"
1162
 
1163
- #: ../src/admin-views/tribe-options-display.php:76
1164
  msgid "Choose a page template to control the appearance of your calendar and event content."
1165
  msgstr "Kies 'n bladsy bloudruk om die voorkoms van jou kalender en gebeurtenis inhoud te beheer."
1166
 
1167
- #: ../src/admin-views/tribe-options-display.php:84
1168
  msgid "Enable event views"
1169
  msgstr "Bemagtig gebeurtenis aansig"
1170
 
1171
- #: ../src/admin-views/tribe-options-display.php:85
1172
  msgid "You must select at least one view."
1173
  msgstr "Jy moet ten minste een aansig kies."
1174
 
1175
- #: ../src/admin-views/tribe-options-display.php:92
1176
  msgid "Default view"
1177
  msgstr "Standaard Aansig"
1178
 
1179
- #: ../src/admin-views/tribe-options-display.php:100
1180
  msgid "Disable the Event Search Bar"
1181
  msgstr "Skakel die Gebeurtenis Soek Funksie af."
1182
 
1183
- #: ../src/admin-views/tribe-options-display.php:101
1184
  msgid "Check this to use the classic header."
1185
  msgstr "Kies hierdie opsie om die klassieke kop te gebruik."
1186
 
1187
- #: ../src/admin-views/tribe-options-display.php:107
1188
  msgid "Month view events per day"
1189
  msgstr "Maand aansig van gebeure per dag."
1190
 
1191
- #: ../src/admin-views/tribe-options-display.php:108
1192
  msgid "Change the default 3 events per day in month view. Please note there may be performance issues if you set this too high. <a href=\"%s\">Read more</a>."
1193
  msgstr ""
1194
 
1195
- #: ../src/admin-views/tribe-options-display.php:115
1196
  msgid "Enable the Month View Cache"
1197
  msgstr ""
1198
 
1199
- #: ../src/admin-views/tribe-options-display.php:116
1200
  msgid "Check this to cache your month view HTML in transients, which can help improve calendar speed on sites with many events. <a href=\"%s\">Read more</a>."
1201
  msgstr ""
1202
 
1203
- #: ../src/admin-views/tribe-options-display.php:122
1204
  msgid "Date Format Settings"
1205
  msgstr ""
1206
 
1207
- #: ../src/admin-views/tribe-options-display.php:126
1208
  msgid "<p>The following three fields accept the date format options available to the php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Learn how to make your own date format here</a>.</p>"
1209
  msgstr ""
1210
 
1211
- #: ../src/admin-views/tribe-options-display.php:130
1212
  msgid "Date with year"
1213
  msgstr ""
1214
 
1215
- #: ../src/admin-views/tribe-options-display.php:131
1216
  msgid "Enter the format to use for displaying dates with the year. Used when showing an event from a past or future year, also used for dates in view headers."
1217
  msgstr ""
1218
 
1219
- #: ../src/admin-views/tribe-options-display.php:138
1220
  msgid "Date without year"
1221
  msgstr ""
1222
 
1223
- #: ../src/admin-views/tribe-options-display.php:139
1224
  msgid "Enter the format to use for displaying dates without a year. Used when showing an event from the current year."
1225
  msgstr ""
1226
 
1227
- #: ../src/admin-views/tribe-options-display.php:146
1228
  msgid "Month and year format"
1229
  msgstr ""
1230
 
1231
- #: ../src/admin-views/tribe-options-display.php:147
1232
  msgid "Enter the format to use for dates that show a month and year only. Used on month view."
1233
  msgstr ""
1234
 
1235
- #: ../src/admin-views/tribe-options-display.php:154
1236
  msgid "Date time separator"
1237
  msgstr ""
1238
 
1239
- #: ../src/admin-views/tribe-options-display.php:155
1240
  msgid "Enter the separator that will be placed between the date and time, when both are shown."
1241
  msgstr ""
1242
 
1243
- #: ../src/admin-views/tribe-options-display.php:162
1244
  msgid "Time range separator"
1245
  msgstr ""
1246
 
1247
- #: ../src/admin-views/tribe-options-display.php:163
1248
  msgid "Enter the separator that will be used between the start and end time of an event."
1249
  msgstr ""
1250
 
1251
- #: ../src/admin-views/tribe-options-display.php:170
1252
  msgid "Datepicker Date Format"
1253
  msgstr ""
1254
 
1255
- #: ../src/admin-views/tribe-options-display.php:171
1256
  msgid "Select the date format to use in datepickers"
1257
  msgstr ""
1258
 
1259
- #: ../src/admin-views/tribe-options-display.php:188
1260
  msgid "Advanced Template Settings"
1261
  msgstr "Gevorderde Bloudruk Stellings"
1262
 
1263
- #: ../src/admin-views/tribe-options-display.php:192
1264
  msgid "Add HTML before event content"
1265
  msgstr "Voeg HTML voor gebeurtenis inhoud"
1266
 
1267
- #: ../src/admin-views/tribe-options-display.php:193
1268
  msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
1269
  msgstr "As jy vertroud is met HTML, kan jy addisionele kode voeg voor die gebeurtenis bloudruk. Sommige temas mag vereis om dit te help met die stilering of uitleg."
1270
 
1271
- #: ../src/admin-views/tribe-options-display.php:198
1272
  msgid "Add HTML after event content"
1273
  msgstr "Voeg HTML na gebeurtenis inhoud"
1274
 
1275
- #: ../src/admin-views/tribe-options-display.php:199
1276
  msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
1277
  msgstr "As jy vertroud is met HTML, kan jy addisionele kode voeg voor die gebeurtenis bloudruk. Sommige temas mag vereis om dit te help met die stilering of uitleg."
1278
 
1279
- #: ../src/admin-views/tribe-options-general.php:12
1280
  msgid "Finding & extending your calendar."
1281
  msgstr "Dit vind & uitbreiding van jou kalender."
1282
 
1283
- #: ../src/admin-views/tribe-options-general.php:17
1284
  msgid "Finding your calendar."
1285
  msgstr "Dit vind van jou kalender."
1286
 
1287
- #: ../src/admin-views/tribe-options-general.php:22
1288
  msgid "Where's my calendar?"
1289
  msgstr "Waar is my kalender?"
1290
 
1291
- #: ../src/admin-views/tribe-options-general.php:22
1292
  msgid "Right here"
1293
  msgstr "Hier"
1294
 
1295
- #: ../src/admin-views/tribe-options-general.php:26
1296
  msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
1297
  msgstr "Op soek na bykomende funksionaliteit, insluitend herhalende gebeure, bykomende meta, gemeenskap gebeure, kaartjieverkope en meer?"
1298
 
1299
- #: ../src/admin-views/tribe-options-general.php:26
1300
  msgid "Check out the available add-ons"
1301
  msgstr "Check uit die beskikbare byvoegings"
1302
 
1303
- #: ../src/admin-views/tribe-options-general.php:31
1304
  msgid "We hope our plugin is helping you out."
1305
  msgstr "Ons hoop dat ons toevoeging help jou uit."
1306
 
1307
- #: ../src/admin-views/tribe-options-general.php:35
1308
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
1309
  msgstr "Dink jy \"Sjoe, hierdie toevoeging is ongelooflik! Ek moet Modern Tribe vir al hul harde werk bedank. \" Die grootste belonging wat ons kan vra is vir erkenning. Voeg 'n klein tekst skakel aan die onderkant van jou kalender wat wys na ons Kalender projek."
1310
 
1311
- #: ../src/admin-views/tribe-options-general.php:35
1312
- #: ../src/admin-views/tribe-options-general.php:40
1313
  msgid "See an example of the link"
1314
  msgstr "Wys 'n voorbeeld van die skakel"
1315
 
1316
- #: ../src/admin-views/tribe-options-general.php:40
1317
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project."
1318
  msgstr "Dink jy \"Sjoe, hierdie toevoeging is ongelooflik! Ek moet Modern Tribe vir al hul harde werk bedank. \" Die grootste belonging wat ons kan vra is vir erkenning. Voeg 'n klein tekst skakel aan die onderkant van jou kalender wat wys na ons Kalender projek."
1319
 
1320
- #: ../src/admin-views/tribe-options-general.php:45
1321
  msgid "Show The Events Calendar link"
1322
  msgstr "Wys 'n voorbeeld van die skakel"
1323
 
1324
- #: ../src/admin-views/tribe-options-general.php:59
1325
  msgid "General Settings"
1326
  msgstr "Algemene Instellingsbeurtenis Begin Datum"
1327
 
1328
- #: ../src/admin-views/tribe-options-general.php:63
1329
  msgid "Number of events to show per page"
1330
  msgstr "Hoeveelheid Gebeurtenisse per bladsy"
1331
 
1332
- #: ../src/admin-views/tribe-options-general.php:70
1333
  msgid "Use Javascript to control date filtering"
1334
  msgstr "Gebruik Javascript om datum filters te beheer"
1335
 
1336
- #: ../src/admin-views/tribe-options-general.php:71
1337
  msgid "This option is disabled when \"Disable the Event Search Bar\" is checked on the Display settings tab."
1338
  msgstr "Hierdie opsie is afgeskakel wanneer \"Skakel die Gebeurtenis Soek Funksie \" aangeskakel is op die blad skerm instellings."
1339
 
1340
- #: ../src/admin-views/tribe-options-general.php:71
1341
  msgid "Enable live ajax for datepicker on front end (User submit not required)."
1342
  msgstr "Bemagtig lewendige ajax fir die datumkieskaart aan die voorkant van die webtuiste (Verbruiker inset is nie verpligtend)"
1343
 
1344
- #: ../src/admin-views/tribe-options-general.php:79
1345
  msgid "Show comments"
1346
  msgstr "Wys Kommentaar"
1347
 
1348
- #: ../src/admin-views/tribe-options-general.php:80
1349
  msgid "Enable comments on event pages."
1350
  msgstr "Bemagtig kommentaar op gebeurtenis baldsye"
1351
 
1352
- #: ../src/admin-views/tribe-options-general.php:86
1353
  msgid "Include events in main blog loop"
1354
  msgstr "Sluit hierdie gebeurtenis in by die hoof blog stroom."
1355
 
1356
- #: ../src/admin-views/tribe-options-general.php:87
1357
  msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
1358
  msgstr "Wys gebeure saam met die webtuiste se ander plasings. Wanneer hierdie funskie aangeskakel is, sal gebeure ook voortgaan op die standaard gebeure bladsy verskyn."
1359
 
1360
- #: ../src/admin-views/tribe-options-general.php:93
1361
- #: ../src/admin-views/tribe-options-general.php:99
1362
  msgid "Events URL slug"
1363
  msgstr "Gebeure URL afkorting"
1364
 
1365
- #: ../src/admin-views/tribe-options-general.php:94
1366
- msgid "You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=\"%s\">%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php\">enable pretty permalinks</a>."
1367
- msgstr "Jy kan nie die afkorting vir jou Dienste bladsy wysig as jy nie \"pretty permalinks\" aangeskakel het nie. Die huidige URL vir jou Dienste is <a href=\"%s\">% s </ a>. Ten einde die afkorting hier te wysig, <a href=\"%soptions-permalink.php\"> skakel \"pretty permalinks: aan. </ a>."
1368
-
1369
- #: ../src/admin-views/tribe-options-general.php:106
1370
- #: ../src/functions/template-tags/options.php:20
1371
  msgid "The slug used for building the events URL."
1372
  msgstr "Die afkorting wat gebruik word vir die bou van die gebeure URL."
1373
 
1374
- #: ../src/admin-views/tribe-options-general.php:106
1375
  msgid "Your current events URL is: %s"
1376
  msgstr "Jou huidige Gebeure URL is: %s"
1377
 
1378
- #: ../src/admin-views/tribe-options-general.php:111
1379
- #: ../src/functions/template-tags/options.php:39
1380
  msgid "Here is the iCal feed URL for your events:"
1381
  msgstr "Hier is die iCal voer URL vir jou Dienste:"
1382
 
1383
- #: ../src/admin-views/tribe-options-general.php:116
1384
  msgid "Single event URL slug"
1385
  msgstr "Enkele gebeurtenis URL afkorting"
1386
 
1387
- #: ../src/admin-views/tribe-options-general.php:123
1388
  msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
1389
  msgstr "Die bogenoemde moet verkieslik in meervoud wees, en hierdie is in enkelvoud <br /> Jou enkele gebeurtenis URL is: %s"
1390
 
1391
- #: ../src/admin-views/tribe-options-general.php:128
1392
  msgid "End of day cutoff"
1393
  msgstr "Einde van die dag afsnypunt."
1394
 
1395
- #: ../src/admin-views/tribe-options-general.php:149
1396
  msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
1397
  msgstr "'N gebeurtenis wat na middernag aanhou? Kies 'n tyd na die gebeurtenis se einde om te vermy dat die gebeurtenis op die volgende dag se kalender verskein."
1398
 
1399
- #: ../src/admin-views/tribe-options-general.php:154
1400
  msgid "Default currency symbol"
1401
  msgstr "Standaard geldwaardesimbool"
1402
 
1403
- #: ../src/admin-views/tribe-options-general.php:155
1404
  msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
1405
  msgstr "Stel die geldeenheid by simbool vir die gebeurtenis koste. Let daarop dat hierdie verandering slegs 'n impak toekomstige gebeure sal hê en dat die veranderings aangebring nie terugwerkend van toepassing sal wees nie."
1406
 
1407
- #: ../src/admin-views/tribe-options-general.php:162
1408
  msgid "Currency symbol follows value"
1409
  msgstr "Geldeenheidsimbool volg waarde"
1410
 
1411
- #: ../src/admin-views/tribe-options-general.php:163
1412
  msgid "The currency symbol normally precedes the value. Enabling this option positions the symbol after the value."
1413
  msgstr "Die geldwaarde word gewoonlik voorafgegaan deur die geldeenheid simbool Deur hierdie opsie te kies, word die simbool na die waarde geposisioneer."
1414
 
1415
- #: ../src/admin-views/tribe-options-general.php:169
1416
  msgid "Map Settings"
1417
  msgstr "Kaart Verstellings"
1418
 
1419
- #: ../src/admin-views/tribe-options-general.php:173
1420
  msgid "Enable Google Maps"
1421
  msgstr "Bemagtig Goolgle Kaarte"
1422
 
1423
- #: ../src/admin-views/tribe-options-general.php:174
1424
  msgid "Check to enable maps for events and venues."
1425
  msgstr "Klik om kaarte vir die gebeure en plekke te bemagtig."
1426
 
1427
- #: ../src/admin-views/tribe-options-general.php:181
1428
  msgid "Google Maps default zoom level"
1429
  msgstr "Google Kaarte standaard vergroot vlak"
1430
 
1431
- #: ../src/admin-views/tribe-options-general.php:182
1432
  msgid "0 = zoomed out; 21 = zoomed in."
1433
  msgstr "0 = heeltemal verkelin; 21 = heeltemal vergroot."
1434
 
1435
- #: ../src/admin-views/tribe-options-general.php:190
1436
  msgid "Miscellaneous Settings"
1437
  msgstr "Ander instellings"
1438
 
1439
- #: ../src/admin-views/tribe-options-general.php:194
1440
  msgid "Duplicate Venues &amp; Organizers"
1441
  msgstr "Duplikaat Plekke &amp; Organiseerders"
1442
 
1443
- #: ../src/admin-views/tribe-options-general.php:194
1444
  msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
1445
  msgstr "Jy mag vind duplikaat plekke en organiseerders ontstaan wanneer daar van Kalender van 'n pre-3.0-weergawe opgedateer word. Klik op hierdie knoppie om outomaties die duplikate saam te smelt."
1446
 
1447
- #: ../src/admin-views/tribe-options-general.php:211
1448
  msgid "Debug mode"
1449
  msgstr "Ontfoutmodus"
1450
 
1451
- #: ../src/admin-views/tribe-options-general.php:217
1452
  msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
1453
  msgstr "Aktiveer hierdie opsie om ontfout inligting aan te teken. By verstek sal hierdiefoute by jou PHP fout puntelys aangemeld word. As jy die puntelys boodskappe in jou webleser wil te sien, dan raai ons jou aan om %s te installer en te soek na die \"Tribe\"oortjie in die foutspoor."
1454
 
1455
- #: ../src/admin-views/tribe-options-general.php:217
1456
  msgid "Debug Bar Plugin"
1457
  msgstr "Ontfout Funksie Toevoeging"
1458
 
1459
- #: ../src/admin-views/tribe-options-general.php:199
1460
  msgid "View Welcome Page"
1461
  msgstr ""
1462
 
1463
- #: ../src/admin-views/tribe-options-general.php:199
1464
  msgid "View the page that displayed when you initially installed the plugin."
1465
  msgstr ""
1466
 
1467
- #: ../src/admin-views/tribe-options-general.php:204
1468
  msgid "View Update Page"
1469
  msgstr ""
1470
 
1471
- #: ../src/admin-views/tribe-options-general.php:204
1472
  msgid "View the page that displayed when you updated the plugin."
1473
  msgstr ""
1474
 
1475
- #: ../src/admin-views/tribe-options-help.php:28
1476
  msgctxt "not available"
1477
  msgid "n/a"
1478
  msgstr ""
1479
 
1480
- #: ../src/admin-views/tribe-options-help.php:29
1481
  msgid "You need to upgrade!"
1482
  msgstr "Jy moet opgradeer!"
1483
 
1484
- #: ../src/admin-views/tribe-options-help.php:29
1485
  msgid "You are up to date!"
1486
  msgstr "Jy is op datum!"
1487
 
1488
- #: ../src/admin-views/tribe-options-help.php:52
1489
  msgid "The Events Calendar PRO"
1490
  msgstr "The Events Calendar PRO"
1491
 
1492
- #: ../src/admin-views/tribe-options-help.php:56
1493
  msgid "The Events Calendar: Eventbrite Tickets"
1494
  msgstr "The Events Calendar: Eventbrite Tickets"
1495
 
1496
- #: ../src/admin-views/tribe-options-help.php:60
1497
  msgid "The Events Calendar: Community Events"
1498
  msgstr "The Events Calendar: Community Events"
1499
 
1500
- #: ../src/Tribe/View_Helpers.php:281
1501
  msgid "Wallis And Futuna Islands"
1502
  msgstr "Wallis And Futuna Islands"
1503
 
1504
- #: ../src/admin-views/tribe-options-help.php:64
1505
  msgid "The Events Calendar: Facebook Events"
1506
  msgstr "The Events Calendar: Facebook Events"
1507
 
1508
- #: ../src/Tribe/View_Helpers.php:282
1509
  msgid "Western Sahara"
1510
  msgstr "Western Sahara"
1511
 
1512
- #: ../src/admin-views/tribe-options-help.php:68
1513
  msgid "The Events Calendar: WooCommerce Tickets"
1514
  msgstr "The Events Calendar: WooCommerce Tickets"
1515
 
1516
- #: ../src/Tribe/View_Helpers.php:283
1517
  msgid "Yemen"
1518
  msgstr "Yemen"
1519
 
1520
- #: ../src/admin-views/tribe-options-help.php:73
1521
  msgid "The Events Calendar: EDD Tickets"
1522
  msgstr "The Events Calendar: EDD Tickets"
1523
 
1524
- #: ../src/Tribe/View_Helpers.php:284
1525
  msgid "Zambia"
1526
  msgstr "Zambia"
1527
 
1528
- #: ../src/admin-views/tribe-options-help.php:78
1529
  msgid "The Events Calendar: WPEC Tickets"
1530
  msgstr "The Events Calendar: WPEC Tickets"
1531
 
1532
- #: ../src/Tribe/View_Helpers.php:285
1533
  msgid "Zimbabwe"
1534
  msgstr "Zimbabwe"
1535
 
1536
- #: ../src/admin-views/tribe-options-help.php:83
1537
  msgid "The Events Calendar: Shopp Tickets"
1538
  msgstr "The Events Calendar: Shopp Tickets"
1539
 
1540
- #: ../src/Tribe/View_Helpers.php:316
1541
  msgid "Alabama"
1542
  msgstr "Alabama"
1543
 
1544
- #: ../src/admin-views/tribe-options-help.php:88
1545
  msgid "The Events Calendar: Filter Bar"
1546
  msgstr "The Events Calendar: Filtreer Strook"
1547
 
1548
- #: ../src/Tribe/View_Helpers.php:317
1549
  msgid "Alaska"
1550
  msgstr "Alaska"
1551
 
1552
- #: ../src/Tribe/View_Helpers.php:318
1553
  msgid "Arizona"
1554
  msgstr "Arizona"
1555
 
1556
- #: ../src/admin-views/tribe-options-help.php:97
1557
  msgid "If this is your first time using The Events Calendar, you're in for a treat and are already well on your way to creating a first event. Here are some basics we've found helpful for users jumping into it for the first time:"
1558
  msgstr "As dit jou eerste keer is wat jy met behulp van die Kalender gebeurtenisse publiseer, is jy in vir n fees en jy is reeds goed op pad na die skep van jou eerste gebeurtenis. Hier is 'n paar basiese beginsels wat ons het hulpvaardig gevind het vir gebruikers wat die toevoeging vir die eerste keer gebruik:"
1559
 
1560
- #: ../src/Tribe/View_Helpers.php:319
1561
  msgid "Arkansas"
1562
  msgstr "Arkansas"
1563
 
1564
- #: ../src/admin-views/tribe-options-help.php:100
1565
  msgid "%sOur New User Primer%s was designed for folks in your exact position. Featuring both step-by-step videos and written walkthroughs that feature accompanying screenshots, the primer aims to take you from zero to hero in no time."
1566
  msgstr "%s Ons Nuwe Gebruiker Beginnersgrammatika %s is ontwerp vir mense in jou presiese posisie. Met beide stap-vir-stap videos en skriftelike deurlope met meegaande skermbeelde, sal die Nuwe Gebruiker Beginnersgrammatika jou spoediglik help om jou voete te vind."
1567
 
1568
- #: ../src/Tribe/View_Helpers.php:320
1569
  msgid "California"
1570
  msgstr "California"
1571
 
1572
- #: ../src/admin-views/tribe-options-help.php:102
1573
  msgid "%sInstallation/Setup FAQs%s from our support page can help give an overview of what the plugin can and cannot do. This section of the FAQs may be helpful as it aims to address any basic install questions not addressed by the new user primer."
1574
  msgstr "%s Installasie /Opstel Vrae%s van ons ondersteuning bladsy kan help om 'n oorsig te gee van wat die toevoeging kan en nie kan doen nie. Hierdie deel van die vrae kan nuttig wees aangesien dit gebruik word om 'n basiese installeer vrae nie deur die nuwe gebruiker grondlaag aan gespreek word nie, te antwoord."
1575
 
1576
- #: ../src/Tribe/View_Helpers.php:321
1577
  msgid "Colorado"
1578
  msgstr "Colorado"
1579
 
1580
- #: ../src/admin-views/tribe-options-help.php:104
1581
  msgid "Otherwise, if you're feeling adventurous, you can get started by heading to the Events menu and adding your first event."
1582
  msgstr "Anders, as jy avontuurlustig voel, kan jy begin deur na die jou Gebeure kieslys te gaan en jou eerste gebeurtenis by te voeg."
1583
 
1584
- #: ../src/Tribe/View_Helpers.php:322
1585
  msgid "Connecticut"
1586
  msgstr "Connecticut"
1587
 
1588
- #: ../src/admin-views/tribe-options-help.php:108
1589
  msgid "We've redone our support page from the ground up in an effort to better help our users. Head over to our %sSupport Page%s and you'll find lots of great resources, including:"
1590
  msgstr "Ons het ons ondersteuning bladsy oorgedoen in 'n poging om beter te hulp aan ons gebruikers te bied. Bo aan die hoof van ons %sSupport Page%s sal jy baie van die groot hulpbronne vind, insluitend:"
1591
 
1592
- #: ../src/Tribe/View_Helpers.php:323
1593
  msgid "Delaware"
1594
  msgstr "Delaware"
1595
 
1596
- #: ../src/admin-views/tribe-options-help.php:110
1597
  msgid "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar &amp; Events Calendar PRO"
1598
  msgstr "%sTemplate etikette, funksies, en hakies & filter%s for The Events Calendar &amp; Events Calendar PRO"
1599
 
1600
- #: ../src/Tribe/View_Helpers.php:324
1601
  msgid "District of Columbia"
1602
  msgstr "District of Columbia"
1603
 
1604
- #: ../src/admin-views/tribe-options-help.php:112
1605
  msgid "%sFrequently Asked Questions%s ranging from the most basic setup questions to advanced themer tweaks"
1606
  msgstr "%sKwelvrae%s wissel van die mees basiese opstel vrae tot gevorderde bloudruk verstellings"
1607
 
1608
- #: ../src/Tribe/View_Helpers.php:325
1609
  msgid "Florida"
1610
  msgstr "Florida"
1611
 
1612
- #: ../src/admin-views/tribe-options-help.php:115
1613
  msgid "%sTutorials%s written by both members of our team and users from the community, covering custom queries, integration with third-party themes and plugins, etc."
1614
  msgstr "%sHandleidings%s geskryf deur albei lede van ons span en gebruikers van die gemeenskap, wat persoonlike navrae, integrasie met derde party temas en plugins, ens"
1615
 
1616
- #: ../src/Tribe/View_Helpers.php:327
1617
  msgid "Hawaii"
1618
  msgstr "Hawaii"
1619
 
1620
- #: ../src/admin-views/tribe-options-help.php:117
1621
  msgid "Release notes for painting an overall picture of the plugin's lifecycle and when features/bug fixes were introduced."
1622
  msgstr "Vrystelling notas vir die skets van 'n geheelbeeld van die toevoeging se lewensiklus en wanneer funksies / foutherstellings ingestel is."
1623
 
1624
- #: ../src/Tribe/View_Helpers.php:328
1625
  msgid "Idaho"
1626
  msgstr "Idaho"
1627
 
1628
- #: ../src/admin-views/tribe-options-help.php:119
1629
  msgid "%sAdd-on documentation%s for all of Modern Tribe's official extensions for The Events Calendar (including WooTickets, Community Events, Eventbrite Tickets, Facebook Events, etc)"
1630
  msgstr "%sToevoeging dokumentasie%s vir alle Modern Tribe's se amptelike verlengings vir The Events Calendar (insluitend WooTickets, Community Events, Eventbrite Tickets, Facebook Events, ens)"
1631
 
1632
- #: ../src/Tribe/View_Helpers.php:329
1633
  msgid "Illinois"
1634
  msgstr "Illinois"
1635
 
1636
- #: ../src/admin-views/tribe-options-help.php:121
1637
  msgid "We've also got a %sModern Tribe UserVoice%s page where we're actively watching for feature ideas from the community. If after playing with the plugin and reviewing the resources above, you're finding a feature isn't present that should be, let us know. Vote up existing feature requests or add your own, and help us shape the future of the products business in a way that best meets the community's needs."
1638
  msgstr "s het ook 'n %sModern Tribe UserVoice%s blad waar ons aktief kyk vir funksie idees uit die gemeenskap. As jy na die speel met die toevoeging en die hersiening van die hulpbronne , 'n funksie wat jy nodig het, nie vind nie, laat ons weet. Stem op bestaande funksie versoeke of jou eie, en help ons om die toekoms van die produkte te vorm op 'n manier wat die beste aan die gemeenskap se behoeftes voldoen."
1639
 
1640
- #: ../src/Tribe/View_Helpers.php:330
1641
  msgid "Indiana"
1642
  msgstr "Indiana"
1643
 
1644
- #: ../src/admin-views/tribe-options-help.php:125
1645
  msgid "Written documentation can only take things so far...sometimes, you need help from a real person. This is where our %ssupport forums%s come into play."
1646
  msgstr "Geskrewe dokumentasie kan jou net so vêr kry... soms hetjy die hulp van 'n ware persoon nodig het. Dit is waar die %ssupport forums%s handig te pas kom."
1647
 
1648
- #: ../src/Tribe/View_Helpers.php:331
1649
  msgid "Iowa"
1650
  msgstr "Iowa"
1651
 
1652
- #: ../src/admin-views/tribe-options-help.php:126
1653
  msgid "Users of the free The Events Calendar should post their support concerns to the plugin's %sWordPress.org support forum%s. While we are happy to help identify and fix bugs that are reported at WordPress.org, please make sure to read our %ssupport expectations sticky thread%s before posting so you understand our limitations."
1654
  msgstr "Gebruikers van die gratis Calendar moet plaas hul ondersteuning kommer tov die toevoeging het kan dit op die%sWordPress.org forum%s plaas. Terwyl ons is bly om te help om probleme te identifiseer en op WordPress.org op te los p, maak asseblief seker dat jy ons %s ondersteunings verwagtinge taai draad %s te lees sodat jy ons beperkinge kan verstaan."
1655
 
1656
- #: ../src/Tribe/View_Helpers.php:332
1657
  msgid "Kansas"
1658
  msgstr "Kansas"
1659
 
1660
- #: ../src/admin-views/tribe-options-help.php:127
1661
  msgid "We hit the WordPress.org forum throughout the week, watching for bugs. If you report a legitimate bug that we're able to reproduce, we will log it and patch for an upcoming release. However we are unfortunately unable to provide customization tips or assist in integrating with 3rd party plugins or themes."
1662
  msgstr "Ons het die WordPress.org forum deur die week, om te kyk vir probleme. Indien jy 'n wettige probleem aanmeld, wat ons in staat om te herproduseer, sal dit oorbrug vir 'n komende vrylating."
1663
 
1664
- #: ../src/Tribe/View_Helpers.php:333
1665
  msgid "Kentucky"
1666
  msgstr "Kentucky"
1667
 
1668
- #: ../src/admin-views/tribe-options-help.php:128
1669
  msgid "If you're a user of The Events Calendar and would like more support, please %spurchase a PRO license%s. We hit the PRO forums daily, and can provide a deeper level of customization/integration support for paying users than we can on WordPress.org."
1670
  msgstr "As jy 'n gebruiker van The Events Calendar is en jy wil graag meer ondersteuning geniet, koop asseblief %s'n PRo lisensie%s. Ons kyk daagliks na die PRO forums, en kan ondersteuning op 'n dieper vlak van aanpassing / integrasie bied vir die betalende gebruikers as vir die op WordPress.org."
1671
 
1672
- #: ../src/Tribe/View_Helpers.php:47
1673
  msgid "Afghanistan"
1674
  msgstr "Afghanistan"
1675
 
1676
- #: ../src/Tribe/View_Helpers.php:48
1677
  msgid "Albania"
1678
  msgstr "Albania"
1679
 
1680
- #: ../src/Tribe/View_Helpers.php:49
1681
  msgid "Algeria"
1682
  msgstr "Algerië"
1683
 
1684
- #: ../src/Tribe/API.php:431
1685
  msgid "Unnamed Venue"
1686
  msgstr "Naamlose Plekke"
1687
 
1688
- #: ../src/Tribe/View_Helpers.php:50
1689
  msgid "American Samoa"
1690
  msgstr "Amerikaanse Samoa"
1691
 
1692
- #: ../src/Tribe/API.php:507 ../src/Tribe/View_Helpers.php:46
1693
- #: ../src/functions/template-tags/venue.php:272
1694
  msgid "United States"
1695
  msgstr "United States"
1696
 
1697
- #: ../src/Tribe/View_Helpers.php:51
1698
  msgid "Andorra"
1699
  msgstr "Andorra"
1700
 
1701
- #: ../src/Tribe/Activation_Page.php:197
1702
  msgid "Welcome to The Events Calendar"
1703
  msgstr ""
1704
 
1705
- #: ../src/Tribe/View_Helpers.php:52
1706
  msgid "Angola"
1707
  msgstr "Angola"
1708
 
1709
- #: ../src/Tribe/Activation_Page.php:217
1710
  msgid "Thanks for Updating The Events Calendar"
1711
  msgstr ""
1712
 
1713
- #: ../src/Tribe/View_Helpers.php:53
1714
  msgid "Anguilla"
1715
  msgstr "Anguilla"
1716
 
1717
- #: ../src/Tribe/Admin_List.php:229 ../src/Tribe/Main.php:1272
1718
  msgid "%s Categories"
1719
  msgstr ""
1720
 
1721
- #: ../src/Tribe/View_Helpers.php:54
1722
  msgid "Antarctica"
1723
  msgstr "Antarctika"
1724
 
1725
- #: ../src/Tribe/Admin_List.php:235
1726
  msgid "Start Date"
1727
  msgstr "Begin Datum"
1728
 
1729
- #: ../src/Tribe/View_Helpers.php:55
1730
  msgid "Antigua And Barbuda"
1731
  msgstr "Antigua en Barbuda"
1732
 
1733
- #: ../src/Tribe/Admin_List.php:236
1734
  msgid "End Date"
1735
  msgstr "Eind Datum"
1736
 
1737
- #: ../src/Tribe/View_Helpers.php:56
1738
  msgid "Argentina"
1739
  msgstr "Argentinië"
1740
 
1741
- #: ../src/Tribe/Admin_List.php:314
1742
  msgid "All %s"
1743
  msgstr "Alle %s"
1744
 
1745
- #: ../src/Tribe/View_Helpers.php:57
1746
  msgid "Armenia"
1747
  msgstr "Armenië"
1748
 
1749
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:37
1750
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:69
1751
- #: ../src/views/modules/meta/details.php:40
1752
- #: ../src/views/modules/meta/details.php:65
1753
  msgid "Start:"
1754
  msgstr "Begin:"
1755
 
1756
- #: ../src/Tribe/View_Helpers.php:58
1757
  msgid "Aruba"
1758
  msgstr "Aruba"
1759
 
1760
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:46
1761
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:78
1762
- #: ../src/views/modules/meta/details.php:45
1763
- #: ../src/views/modules/meta/details.php:70
1764
  msgid "End:"
1765
  msgstr "Einde:"
1766
 
1767
- #: ../src/Tribe/View_Helpers.php:59
1768
  msgid "Australia"
1769
  msgstr "Australië"
1770
 
1771
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:57
1772
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:89
1773
- #: ../src/views/modules/meta/details.php:55
1774
- #: ../src/views/modules/meta/details.php:80
1775
  msgid "Date:"
1776
  msgstr "Datum:"
1777
 
1778
- #: ../src/Tribe/View_Helpers.php:60
1779
  msgid "Austria"
1780
  msgstr "Austria"
1781
 
1782
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:100
1783
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:111
1784
- #: ../src/views/modules/meta/details.php:85
1785
  msgid "Time:"
1786
  msgstr "Tyd:"
1787
 
1788
- #: ../src/Tribe/View_Helpers.php:61
1789
  msgid "Azerbaijan"
1790
  msgstr "Azerbaijan"
1791
 
1792
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:324
1793
- #: ../src/functions/template-tags/google-map.php:46
1794
  msgid "Click to view a Google Map"
1795
  msgstr "Klik om na Google Kaart te gaan"
1796
 
1797
- #: ../src/Tribe/View_Helpers.php:62
1798
  msgid "Bahamas"
1799
  msgstr "v"
1800
 
1801
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:325
1802
- #: ../src/functions/template-tags/google-map.php:47
1803
  msgid "+ Google Map"
1804
  msgstr "+ Google Kaart"
1805
 
1806
- #: ../src/Tribe/View_Helpers.php:63
1807
  msgid "Bahrain"
1808
  msgstr "Bahrain"
1809
 
1810
- #: ../src/Tribe/Amalgamator.php:260
1811
- #: ../src/admin-views/tribe-options-general.php:194
1812
  msgid "Merge Duplicates"
1813
  msgstr "Konsolideer Duplikate"
1814
 
1815
- #: ../src/Tribe/View_Helpers.php:64
1816
  msgid "Bangladesh"
1817
  msgstr "Bangladesh"
1818
 
1819
- #: ../src/Tribe/App_Shop.php:63 ../src/Tribe/App_Shop.php:64
1820
- #: ../src/Tribe/App_Shop.php:94
1821
  msgid "Event Add-Ons"
1822
  msgstr "Gebeurtenis Toevoegings"
1823
 
1824
- #: ../src/Tribe/View_Helpers.php:65
1825
  msgid "Barbados"
1826
  msgstr "Barbados"
1827
 
1828
- #: ../src/Tribe/Credits.php:31
1829
  msgid "This calendar is powered by The Events Calendar."
1830
  msgstr ""
1831
 
1832
- #: ../src/Tribe/View_Helpers.php:66
1833
  msgid "Belarus"
1834
  msgstr "Belarus"
1835
 
1836
- #: ../src/Tribe/Credits.php:48
1837
  msgid "Rate <strong>The Events Calendar</strong> <a href=\"%1$s\" target=\"_blank\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href=\"%1$s\" target=\"_blank\">WordPress.org</a> to keep this plugin free. Thanks from the friendly folks at Modern Tribe."
1838
  msgstr ""
1839
 
1840
- #: ../src/Tribe/View_Helpers.php:67
1841
  msgid "Belgium"
1842
  msgstr "België"
1843
 
1844
- #: ../src/Tribe/Credits.php:48
1845
  msgid "http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5"
1846
  msgstr ""
1847
 
1848
- #: ../src/Tribe/View_Helpers.php:68
1849
  msgid "Belize"
1850
  msgstr "Belize"
1851
 
1852
- #: ../src/Tribe/Field.php:209
1853
  msgid "Invalid field type specified"
1854
  msgstr "Ongeldig veld tipe gespesifiseer"
1855
 
1856
- #: ../src/Tribe/View_Helpers.php:69
1857
  msgid "Benin"
1858
  msgstr "Benin"
1859
 
1860
- #: ../src/Tribe/Field.php:466
1861
  msgid "No radio options specified"
1862
  msgstr "Geen radio opsies gespesifiseer"
1863
 
1864
- #: ../src/Tribe/View_Helpers.php:70
1865
  msgid "Bermuda"
1866
  msgstr "Bermuda"
1867
 
1868
- #: ../src/Tribe/Field.php:502
1869
  msgid "No checkbox options specified"
1870
  msgstr "Geen boks opsies gespesifiseer"
1871
 
1872
- #: ../src/Tribe/View_Helpers.php:71
1873
  msgid "Bhutan"
1874
  msgstr "Bhutan"
1875
 
1876
- #: ../src/Tribe/Field.php:558
1877
  msgid "No select options specified"
1878
  msgstr "Geen kies opsies gespesifiseer"
1879
 
1880
- #: ../src/Tribe/View_Helpers.php:72
1881
  msgid "Bolivia"
1882
  msgstr "Bolivia"
1883
 
1884
- #: ../src/Tribe/Importer/Admin_Page.php:15
1885
- #: ../src/Tribe/Importer/Admin_Page.php:16 ../src/Tribe/Main.php:3946
1886
  msgid "Import"
1887
  msgstr ""
1888
 
1889
- #: ../src/Tribe/View_Helpers.php:73
1890
  msgid "Bosnia And Herzegowina"
1891
  msgstr "Bosnia en Herzegowina"
1892
 
1893
- #: ../src/Tribe/Importer/Admin_Page.php:54
1894
- #: ../src/Tribe/Importer/Admin_Page.php:187
1895
  msgid "The file went away. Please try again."
1896
  msgstr "Die lêer het verdwyn. Probeer asseblief weer."
1897
 
1898
- #: ../src/Tribe/View_Helpers.php:74
1899
  msgid "Botswana"
1900
  msgstr "Botswana"
1901
 
1902
- #: ../src/Tribe/Importer/Admin_Page.php:95 ../src/Tribe/Main.php:754
1903
  msgid "General"
1904
  msgstr "Algemene"
1905
 
1906
- #: ../src/Tribe/View_Helpers.php:75
1907
  msgid "Bouvet Island"
1908
  msgstr "Bouvet Island"
1909
 
1910
- #: ../src/Tribe/Importer/Admin_Page.php:96
1911
  msgid "Import: CSV"
1912
  msgstr ""
1913
 
1914
- #: ../src/Tribe/View_Helpers.php:76
1915
  msgid "Brazil"
1916
  msgstr "Brazilië"
1917
 
1918
- #: ../src/Tribe/Importer/Admin_Page.php:153
1919
  msgid "We were unable to process your request. Please try again."
1920
  msgstr "Ons was nie in staat om jou versoek te verwerk nie. Probeer asseblief weer."
1921
 
1922
- #: ../src/Tribe/View_Helpers.php:77
1923
  msgid "British Indian Ocean Territory"
1924
  msgstr "Britise Indianse Oseaan Gebied"
1925
 
1926
- #: ../src/Tribe/Importer/Admin_Page.php:194
1927
  msgid "<p>The following fields are required for a successful import:</p>"
1928
  msgstr "<p> Die volgende velde is nodig vir 'n suksesvolle invoer: </ p>"
1929
 
1930
- #: ../src/Tribe/View_Helpers.php:78
1931
  msgid "Brunei Darussalam"
1932
  msgstr "Brunei Darussalam"
1933
 
1934
- #: ../src/Tribe/Importer/Column_Mapper.php:33
1935
  msgid "Do Not Import"
1936
  msgstr "Moet nie invoer nie."
1937
 
1938
- #: ../src/Tribe/View_Helpers.php:79
1939
  msgid "Bulgaria"
1940
  msgstr "Bulgaria"
1941
 
1942
- #: ../src/Tribe/Importer/Column_Mapper.php:52
1943
  msgid "Event Name"
1944
  msgstr "Gebeurtenis Naam"
1945
 
1946
- #: ../src/Tribe/View_Helpers.php:80
1947
  msgid "Burkina Faso"
1948
  msgstr "Burkina Faso"
1949
 
1950
- #: ../src/Tribe/Importer/Column_Mapper.php:53
1951
  msgid "Event Description"
1952
  msgstr "Gebeurtenis Beskrywing"
1953
 
1954
- #: ../src/Tribe/View_Helpers.php:81
1955
  msgid "Burundi"
1956
  msgstr "Burundi"
1957
 
1958
- #: ../src/Tribe/Importer/Column_Mapper.php:54
1959
  msgid "Event Start Date"
1960
  msgstr "Gebeurtenis Begin datum"
1961
 
1962
- #: ../src/Tribe/View_Helpers.php:82
1963
  msgid "Cambodia"
1964
  msgstr "Cambodia"
1965
 
1966
- #: ../src/Tribe/Importer/Column_Mapper.php:55
1967
  msgid "Event Start Time"
1968
  msgstr "Gebeurtenis Begin Tyd"
1969
 
1970
- #: ../src/Tribe/View_Helpers.php:83
1971
  msgid "Cameroon"
1972
  msgstr "Cameroon"
1973
 
1974
- #: ../src/Tribe/Importer/Column_Mapper.php:56
1975
  msgid "Event End Date"
1976
  msgstr "Gebeurtenis Eind Datum"
1977
 
1978
- #: ../src/Tribe/View_Helpers.php:84
1979
  msgid "Canada"
1980
  msgstr "Kanada"
1981
 
1982
- #: ../src/Tribe/Importer/Column_Mapper.php:57
1983
  msgid "Event End Time"
1984
  msgstr "Gebeurtenis Eind Tyd"
1985
 
1986
- #: ../src/Tribe/View_Helpers.php:85
1987
  msgid "Cape Verde"
1988
  msgstr "Cape Verde"
1989
 
1990
- #: ../src/Tribe/Importer/Column_Mapper.php:58
1991
  msgid "All Day Event"
1992
  msgstr "Heeldag Gebeurtenis"
1993
 
1994
- #: ../src/Tribe/View_Helpers.php:86
1995
  msgid "Cayman Islands"
1996
  msgstr "Cayman Islands"
1997
 
1998
- #: ../src/Tribe/Importer/Column_Mapper.php:59
1999
  msgid "Event Venue Name"
2000
  msgstr "Gebeurtenis Plek Naam"
2001
 
2002
- #: ../src/Tribe/View_Helpers.php:87
2003
  msgid "Central African Republic"
2004
  msgstr "Sentaal Afrika Republiek"
2005
 
2006
- #: ../src/Tribe/Importer/Column_Mapper.php:60
2007
  msgid "Event Organizer Name"
2008
  msgstr "Gebeurtenis Gorganiseerder Naam"
2009
 
2010
- #: ../src/Tribe/View_Helpers.php:88
2011
  msgid "Chad"
2012
  msgstr "Chad"
2013
 
2014
- #: ../src/Tribe/Importer/Column_Mapper.php:61
2015
  msgid "Event Show Map Link"
2016
  msgstr "Gebeurtenis Wys Kaart Skakel"
2017
 
2018
- #: ../src/Tribe/View_Helpers.php:89
2019
  msgid "Chile"
2020
  msgstr "Chile"
2021
 
2022
- #: ../src/Tribe/Importer/Column_Mapper.php:62
2023
  msgid "Event Show Map"
2024
  msgstr "Gebeurtenis Wys Kaart"
2025
 
2026
- #: ../src/Tribe/View_Helpers.php:90
2027
  msgid "China"
2028
  msgstr "China"
2029
 
2030
- #: ../src/Tribe/Importer/Column_Mapper.php:63
2031
  msgid "Event Cost"
2032
  msgstr "Toegansfooi"
2033
 
2034
- #: ../src/Tribe/View_Helpers.php:91
2035
  msgid "Christmas Island"
2036
  msgstr "Christmas Island"
2037
 
2038
- #: ../src/Tribe/View_Helpers.php:92
2039
  msgid "Cocos (Keeling) Islands"
2040
  msgstr "Cocos (Keeling) Islands"
2041
 
2042
- #: ../src/Tribe/Importer/Column_Mapper.php:64
2043
  msgid "Event Category"
2044
  msgstr "Gebeurtenis Kategorie"
2045
 
2046
- #: ../src/Tribe/View_Helpers.php:93
2047
  msgid "Colombia"
2048
  msgstr "Colombia"
2049
 
2050
- #: ../src/Tribe/Importer/Column_Mapper.php:65
2051
  msgid "Event Website"
2052
  msgstr "Gebeurtenis Webwerf"
2053
 
2054
- #: ../src/Tribe/View_Helpers.php:94
2055
  msgid "Comoros"
2056
  msgstr "Comoros"
2057
 
2058
- #: ../src/Tribe/Importer/Column_Mapper.php:71
2059
  msgid "Venue Name"
2060
  msgstr "Plek Naam"
2061
 
2062
- #: ../src/Tribe/View_Helpers.php:95
2063
  msgid "Congo"
2064
  msgstr "Congo"
2065
 
2066
- #: ../src/Tribe/Importer/Column_Mapper.php:72
2067
  msgid "Venue Country"
2068
  msgstr "Plek Land"
2069
 
2070
- #: ../src/Tribe/View_Helpers.php:96
2071
  msgid "Congo, The Democratic Republic Of The"
2072
  msgstr "Congo, The Democratic Republic Of The"
2073
 
2074
- #: ../src/Tribe/Importer/Column_Mapper.php:73
2075
  msgid "Venue Address"
2076
  msgstr "Plek Adres"
2077
 
2078
- #: ../src/Tribe/View_Helpers.php:97
2079
  msgid "Cook Islands"
2080
  msgstr "Cook Islands"
2081
 
2082
- #: ../src/Tribe/Importer/Column_Mapper.php:74
2083
  msgid "Venue Address 2"
2084
  msgstr ""
2085
 
2086
- #: ../src/Tribe/View_Helpers.php:98
2087
  msgid "Costa Rica"
2088
  msgstr "Costa Rica"
2089
 
2090
- #: ../src/Tribe/Importer/Column_Mapper.php:75
2091
  msgid "Venue City"
2092
  msgstr "Plek Stad"
2093
 
2094
- #: ../src/Tribe/View_Helpers.php:99
2095
  msgid "Cote D'Ivoire"
2096
  msgstr "v"
2097
 
2098
- #: ../src/Tribe/Importer/Column_Mapper.php:76
2099
  msgid "Venue State/Province"
2100
  msgstr "Plek Provinsie"
2101
 
2102
- #: ../src/Tribe/View_Helpers.php:100
2103
  msgid "Croatia (Local Name: Hrvatska)"
2104
  msgstr "Croatia (Local Name: Hrvatska)"
2105
 
2106
- #: ../src/Tribe/Importer/Column_Mapper.php:77
2107
  msgid "Venue Zip"
2108
  msgstr "Plek Poskode"
2109
 
2110
- #: ../src/Tribe/View_Helpers.php:101
2111
  msgid "Cuba"
2112
  msgstr "Cuba"
2113
 
2114
- #: ../src/Tribe/Importer/Column_Mapper.php:78
2115
  msgid "Venue Phone"
2116
  msgstr "Plek Telefoon"
2117
 
2118
- #: ../src/Tribe/View_Helpers.php:102
2119
  msgid "Cyprus"
2120
  msgstr "Cyprus"
2121
 
2122
- #: ../src/Tribe/Importer/Column_Mapper.php:79
2123
  msgid "Venue Website"
2124
  msgstr ""
2125
 
2126
- #: ../src/Tribe/View_Helpers.php:103
2127
  msgid "Czech Republic"
2128
  msgstr "Czech Republic"
2129
 
2130
- #: ../src/Tribe/Importer/Column_Mapper.php:85
2131
  msgid "Organizer Name"
2132
  msgstr "Organiseerder Naam"
2133
 
2134
- #: ../src/Tribe/View_Helpers.php:104
2135
  msgid "Denmark"
2136
  msgstr "Denmark"
2137
 
2138
- #: ../src/Tribe/Importer/Column_Mapper.php:86
2139
  msgid "Organizer Email"
2140
  msgstr "Organiseerder E-pos"
2141
 
2142
- #: ../src/Tribe/View_Helpers.php:105
2143
  msgid "Djibouti"
2144
  msgstr "Djibouti"
2145
 
2146
- #: ../src/Tribe/Importer/Column_Mapper.php:87
2147
  msgid "Organizer Website"
2148
  msgstr "Organiseerder Webtuiste"
2149
 
2150
- #: ../src/Tribe/View_Helpers.php:106
2151
  msgid "Dominica"
2152
  msgstr "Dominica"
2153
 
2154
- #: ../src/Tribe/Importer/Column_Mapper.php:88
2155
  msgid "Organizer Phone"
2156
  msgstr "Organiseerder Telefoon"
2157
 
2158
- #: ../src/Tribe/View_Helpers.php:107
2159
  msgid "Dominican Republic"
2160
  msgstr "Dominican Republic"
2161
 
2162
- #: ../src/Tribe/Importer/File_Importer.php:38
2163
  msgid "No importer defined for %s"
2164
  msgstr "Geen invoerder is vir %s gedefinieer."
2165
 
2166
- #: ../src/Tribe/View_Helpers.php:108
2167
  msgid "East Timor"
2168
  msgstr "East Timor"
2169
 
2170
- #: ../src/Tribe/Importer/File_Importer.php:110
2171
  msgid "Missing required fields in row %d."
2172
  msgstr "Daar ontbreek vereiste velde in ry %d."
2173
 
2174
- #: ../src/Tribe/View_Helpers.php:109
2175
  msgid "Ecuador"
2176
  msgstr "East Timor"
2177
 
2178
- #: ../src/Tribe/Importer/File_Importer.php:118
2179
  msgid "Failed to import record in row %d."
2180
  msgstr "Die rekord in %d kon nie ingevoer word nie."
2181
 
2182
- #: ../src/Tribe/View_Helpers.php:110
2183
  msgid "Egypt"
2184
  msgstr "East Timor"
2185
 
2186
- #: ../src/Tribe/Importer/File_Importer.php:127
2187
  msgid "%s (post ID %d) updated."
2188
  msgstr "%s (post ID %d) opgedateer."
2189
 
2190
- #: ../src/Tribe/View_Helpers.php:111
2191
  msgid "El Salvador"
2192
  msgstr "El Salvador"
2193
 
2194
- #: ../src/Tribe/Importer/File_Importer.php:131
2195
  msgid "%s (post ID %d) created."
2196
  msgstr "%s (post ID %d) geskep."
2197
 
2198
- #: ../src/Tribe/View_Helpers.php:112
2199
  msgid "Equatorial Guinea"
2200
  msgstr "Equatorial Guinea"
2201
 
2202
- #: ../src/Tribe/Importer/File_Uploader.php:28
2203
  msgid "Temporary file not found. Could not save %s."
2204
  msgstr "Tydelike lêer nie gevind nie. Kon nie %s stoor nie."
2205
 
2206
- #: ../src/Tribe/View_Helpers.php:113
2207
  msgid "Eritrea"
2208
  msgstr "Eritrea"
2209
 
2210
- #: ../src/Tribe/Importer/File_Uploader.php:36
2211
  msgid "Could not save %s."
2212
  msgstr "Kon %s nie stoor nie."
2213
 
2214
- #: ../src/Tribe/View_Helpers.php:114
2215
  msgid "Estonia"
2216
  msgstr "Estonia"
2217
 
2218
- #: ../src/Tribe/Importer/Options.php:29 ../src/Tribe/Settings.php:520
2219
  msgid "Settings saved."
2220
  msgstr "Verstellings Gestoor"
2221
 
2222
- #: ../src/Tribe/View_Helpers.php:115
2223
  msgid "Ethiopia"
2224
  msgstr "Ethiopia"
2225
 
2226
- #: ../src/Tribe/List_Widget.php:30
2227
  msgid "A widget that displays upcoming events."
2228
  msgstr "'N widget wat die komende gebeurtenisse vertoon."
2229
 
2230
- #: ../src/Tribe/View_Helpers.php:116
2231
  msgid "Falkland Islands (Malvinas)"
2232
  msgstr "Falkland Islands (Malvinas)"
2233
 
2234
- #: ../src/Tribe/List_Widget.php:38
2235
  msgid "Events List"
2236
  msgstr "Gebeure Lys"
2237
 
2238
- #: ../src/Tribe/View_Helpers.php:117
2239
  msgid "Faroe Islands"
2240
  msgstr "Faroe Islands"
2241
 
2242
- #: ../src/Tribe/List_Widget.php:171
2243
  msgid "Upcoming Events"
2244
  msgstr "Komende Gebeure"
2245
 
2246
- #: ../src/Tribe/View_Helpers.php:118
2247
  msgid "Fiji"
2248
  msgstr "Fiji"
2249
 
2250
- #: ../src/Tribe/Main.php:490 ../src/functions/template-tags/venue.php:52
2251
- #: ../src/io/csv/admin-views/import.php:45
2252
  msgid "Venues"
2253
  msgstr "Plekke"
2254
 
2255
- #: ../src/Tribe/View_Helpers.php:119
2256
  msgid "Finland"
2257
  msgstr "Finland"
2258
 
2259
- #: ../src/Tribe/Main.php:498
2260
- #: ../src/functions/advanced-functions/meta_registration.php:126
2261
- #: ../src/functions/template-tags/venue.php:41
2262
  msgid "Venue"
2263
  msgstr "Plekke"
2264
 
2265
- #: ../src/Tribe/View_Helpers.php:120
2266
  msgid "France"
2267
  msgstr "France"
2268
 
2269
- #: ../src/Tribe/Main.php:506 ../src/functions/template-tags/organizer.php:82
2270
- #: ../src/io/csv/admin-views/import.php:46
2271
  msgid "Organizers"
2272
  msgstr "Organiseerders"
2273
 
2274
- #: ../src/Tribe/View_Helpers.php:121
2275
  msgid "France, Metropolitan"
2276
  msgstr "France, Metropolitan"
2277
 
2278
- #: ../src/Tribe/Main.php:514
2279
- #: ../src/functions/advanced-functions/meta_registration.php:205
2280
- #: ../src/functions/template-tags/organizer.php:71
2281
  msgid "Organizer"
2282
  msgstr "Organiseerder"
2283
 
2284
- #: ../src/Tribe/View_Helpers.php:122
2285
  msgid "French Guiana"
2286
  msgstr "French Guiana"
2287
 
2288
- #: ../src/Tribe/Main.php:522 ../src/functions/template-tags/general.php:71
2289
- #: ../src/io/csv/admin-views/import.php:47
2290
  msgid "Events"
2291
  msgstr "Gebeure"
2292
 
2293
- #: ../src/Tribe/View_Helpers.php:123
2294
  msgid "French Polynesia"
2295
  msgstr "French Polynesia"
2296
 
2297
- #: ../src/Tribe/Main.php:530 ../src/functions/template-tags/general.php:60
2298
  msgid "Event"
2299
  msgstr "Gebeurtenis"
2300
 
2301
- #: ../src/Tribe/View_Helpers.php:124
2302
  msgid "French Southern Territories"
2303
  msgstr "French Southern Territories"
2304
 
2305
- #: ../src/Tribe/Main.php:570 ../src/Tribe/Settings.php:132
2306
- #: ../src/admin-views/tribe-options-help.php:169
 
2307
  msgid "The Events Calendar"
2308
  msgstr "The Events Calendar"
2309
 
2310
- #: ../src/Tribe/View_Helpers.php:125
2311
  msgid "Gabon"
2312
  msgstr "Gabon"
2313
 
2314
- #: ../src/Tribe/Main.php:575
2315
  msgid "month"
2316
  msgstr "maand"
2317
 
2318
- #: ../src/Tribe/View_Helpers.php:126
2319
  msgid "Gambia"
2320
  msgstr "Gambia"
2321
 
2322
- #: ../src/Tribe/Main.php:576
2323
  msgid "list"
2324
  msgstr ""
2325
 
2326
- #: ../src/Tribe/View_Helpers.php:127 ../src/Tribe/View_Helpers.php:326
2327
  msgid "Georgia"
2328
  msgstr "Georgia"
2329
 
2330
- #: ../src/Tribe/Main.php:577
2331
  msgid "upcoming"
2332
  msgstr "komende"
2333
 
2334
- #: ../src/Tribe/View_Helpers.php:128
2335
  msgid "Germany"
2336
  msgstr "Germany"
2337
 
2338
- #: ../src/Tribe/Main.php:578
2339
  msgid "past"
2340
  msgstr "vorige"
2341
 
2342
- #: ../src/Tribe/View_Helpers.php:129
2343
  msgid "Ghana"
2344
  msgstr "Ghana"
2345
 
2346
- #: ../src/Tribe/Main.php:579
2347
  msgid "day"
2348
  msgstr ""
2349
 
2350
- #: ../src/Tribe/View_Helpers.php:130
2351
  msgid "Gibraltar"
2352
  msgstr "Gibraltar"
2353
 
2354
- #: ../src/Tribe/Main.php:580
2355
  msgid "today"
2356
  msgstr ""
2357
 
2358
- #: ../src/Tribe/View_Helpers.php:131
2359
  msgid "Greece"
2360
  msgstr "Greece"
2361
 
2362
- #: ../src/Tribe/Main.php:604
2363
  msgid "Initializing Tribe Events on %s"
2364
  msgstr "InisialiseerTribe Events op %s"
2365
 
2366
- #: ../src/Tribe/View_Helpers.php:132
2367
  msgid "Greenland"
2368
  msgstr "Greenland"
2369
 
2370
- #: ../src/Tribe/Main.php:674
2371
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
2372
  msgstr "Jou weergawe van The Events Calendar is nie up-op datum met een van jou The Events Calendarr byvoegings. %sDateer asseblief nou op.%s"
2373
 
2374
- #: ../src/Tribe/View_Helpers.php:133
2375
  msgid "Grenada"
2376
  msgstr "Grenada"
2377
 
2378
- #: ../src/Tribe/Main.php:686
2379
  msgid "The following plugins are out of date: <b>%s</b>. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %sLearn More%s."
2380
  msgstr ""
2381
 
2382
- #: ../src/Tribe/View_Helpers.php:134
2383
  msgid "Guadeloupe"
2384
  msgstr "Guadeloupe"
2385
 
2386
- #: ../src/Tribe/Main.php:796 ../src/admin-views/tribe-options-licenses.php:33
2387
  msgid "Licenses"
2388
  msgstr "Lisensies"
2389
 
2390
- #: ../src/Tribe/View_Helpers.php:135
2391
  msgid "Guam"
2392
  msgstr "Guam"
2393
 
2394
- #: ../src/admin-views/tribe-options-licenses.php:13
2395
- msgid "<p>The license key you received when completing your purchase from %s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. <strong>Find your license keys at <a href=\"%s\" target=\"_blank\">%s</a></strong>.</p> <p>Each paid add-on has its own unique license key. Simply paste the key into its appropriate field on below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message.</p> <p>If you're seeing a red message telling you that your key isn't valid or is out of installs, visit <a href=\"%s\" target=\"_blank\">%s</a> to manage your installs or renew / upgrade your license.</p><p>Not seeing an update but expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> and click \"Check Again\".</p>"
2396
- msgstr "<p>Die lisensie sleutel wat jy ontvang het tydens die voltooiing van jou aankoop van %s sal gee jou toegang tot ondersteuning en opgraderings totdat dit verval. Jy hoef nie die sleutel hieronder vir die invoegtoepassing te he om te werk nie, maar jy sal dit benodig om toegang tot outomatiese opgraderings te kry. <strong> Vind jou lisensie sleutels op <a href=\"%s\" target=\"_blank\">%s</a></strong>.</p> <p>Elke betaalde byvoeging het sy eie unieke lisensie sleutel. Plak die sleutel in sy toepaslike veld hieronder, en gee dit 'n oomblik om te bevestig te word. Jy weet jy stel wanneer 'n groen vervaldatum verskyn saam met 'n \"geldige\" boodskap.</p> <pAs jy 'n rooi boodskap wat jy vertel dat jou sleutel is nie geldig of is uit installaties is, besoek<a href=\"%s\" target=\"_blank\">%s</a>om jou installaties te bestuur of te hernu / of jou lisensie te opgradeer .</p><p>Verwag 'n opgradeering, maar sien dit nie? In WordPress, gaan na <a href=\"%s\">paneelbord > Opgradderings</a> en klik \"kyk weer\".</p>"
2397
-
2398
- #: ../src/Tribe/View_Helpers.php:136
2399
  msgid "Guatemala"
2400
  msgstr "Guatemala"
2401
 
2402
- #: ../src/Tribe/Main.php:755
2403
  msgid "Display"
2404
  msgstr "Aansig"
2405
 
2406
- #: ../src/Tribe/View_Helpers.php:137
2407
  msgid "Guinea"
2408
  msgstr "Guinea"
2409
 
2410
- #: ../src/Tribe/Main.php:759 ../src/Tribe/Main.php:3989
2411
- #: ../src/Tribe/Main.php:4084
2412
  msgid "Help"
2413
  msgstr "Help"
2414
 
2415
- #: ../src/Tribe/View_Helpers.php:138
2416
  msgid "Guinea-Bissau"
2417
  msgstr "Guinea-Bissau"
2418
 
2419
- #: ../src/Tribe/Main.php:897
2420
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
2421
  msgstr "Jammer, Die Kalender vereis WordPress% s of hoër. Gradeer asseblief jou WordPress installasie op."
2422
 
2423
- #: ../src/Tribe/View_Helpers.php:139
2424
  msgid "Guyana"
2425
  msgstr "Guyana"
2426
 
2427
- #: ../src/Tribe/Main.php:900
2428
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
2429
  msgstr "Jammer, Die Kalender vereis PHP% s of hoër. Praat met jou web host oor die beweging van jou na 'n nuwer weergawe van PHP."
2430
 
2431
- #: ../src/Tribe/View_Helpers.php:140
2432
  msgid "Haiti"
2433
  msgstr "Haiti"
2434
 
2435
- #: ../src/Tribe/Main.php:1174
2436
  msgid "category"
2437
  msgstr "Kategorie"
2438
 
2439
- #: ../src/Tribe/View_Helpers.php:141
2440
  msgid "Heard And Mc Donald Islands"
2441
  msgstr "Heard And Mc Donald Islands"
2442
 
2443
- #: ../src/Tribe/Main.php:1185
2444
  msgid "tag"
2445
  msgstr "etiket"
2446
 
2447
- #: ../src/Tribe/View_Helpers.php:142
2448
  msgid "Holy See (Vatican City State)"
2449
  msgstr "Holy See (Vatican City State)"
2450
 
2451
- #: ../src/Tribe/Main.php:1220 ../src/Tribe/Main.php:1238
2452
- #: ../src/Tribe/Main.php:1256
2453
  msgid "Add New"
2454
  msgstr "Voeg By"
2455
 
2456
- #: ../src/Tribe/View_Helpers.php:143
2457
  msgid "Honduras"
2458
  msgstr "Honduras"
2459
 
2460
- #: ../src/Tribe/Main.php:1221 ../src/Tribe/Main.php:1239
2461
- #: ../src/Tribe/Main.php:1257 ../src/Tribe/Main.php:1382
2462
- #: ../src/Tribe/Main.php:1383
2463
  msgid "Add New %s"
2464
  msgstr ""
2465
 
2466
- #: ../src/Tribe/View_Helpers.php:144
2467
  msgid "Hong Kong"
2468
  msgstr "Hong Kong"
2469
 
2470
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:113
2471
- #: ../src/Tribe/Main.php:1222 ../src/Tribe/Main.php:1240
2472
- #: ../src/Tribe/Main.php:1258 ../src/Tribe/Main.php:1402
2473
- #: ../src/Tribe/Main.php:1454 ../src/Tribe/Main.php:3933
2474
  msgid "Edit %s"
2475
  msgstr ""
2476
 
2477
- #: ../src/Tribe/View_Helpers.php:145
2478
  msgid "Hungary"
2479
  msgstr "Hungary"
2480
 
2481
- #: ../src/Tribe/Main.php:1223 ../src/Tribe/Main.php:1241
2482
- #: ../src/Tribe/Main.php:1259
2483
  msgid "New %s"
2484
  msgstr ""
2485
 
2486
- #: ../src/Tribe/View_Helpers.php:146
2487
  msgid "Iceland"
2488
  msgstr "Iceland"
2489
 
2490
- #: ../src/Tribe/Main.php:1224 ../src/Tribe/Main.php:1242
2491
- #: ../src/Tribe/Main.php:1260
2492
  msgid "View %s"
2493
  msgstr ""
2494
 
2495
- #: ../src/Tribe/View_Helpers.php:147
2496
  msgid "India"
2497
  msgstr "India"
2498
 
2499
- #: ../src/Tribe/Main.php:1225 ../src/Tribe/Main.php:1243
2500
- #: ../src/Tribe/Main.php:1261
2501
  msgid "Search %s"
2502
  msgstr ""
2503
 
2504
- #: ../src/Tribe/View_Helpers.php:148
2505
  msgid "Indonesia"
2506
  msgstr "Indonesia"
2507
 
2508
- #: ../src/Tribe/Main.php:1226 ../src/Tribe/Main.php:1244
2509
- #: ../src/Tribe/Main.php:1262
2510
  msgid "No %s found"
2511
  msgstr ""
2512
 
2513
- #: ../src/Tribe/View_Helpers.php:149
2514
  msgid "Iran (Islamic Republic Of)"
2515
  msgstr "Iran (Islamic Republic Of)"
2516
 
2517
- #: ../src/Tribe/Main.php:1227 ../src/Tribe/Main.php:1245
2518
- #: ../src/Tribe/Main.php:1263
2519
  msgid "No %s found in Trash"
2520
  msgstr ""
2521
 
2522
- #: ../src/Tribe/View_Helpers.php:150
2523
  msgid "Iraq"
2524
  msgstr "Iraq"
2525
 
2526
- #: ../src/Tribe/Main.php:1273 ../src/functions/template-tags/general.php:408
2527
  msgid "%s Category"
2528
  msgstr ""
2529
 
2530
- #: ../src/Tribe/View_Helpers.php:151
2531
  msgid "Ireland"
2532
  msgstr "Ireland"
2533
 
2534
- #: ../src/Tribe/Main.php:1274
2535
  msgid "Search %s Categories"
2536
  msgstr ""
2537
 
2538
- #: ../src/Tribe/View_Helpers.php:152
2539
  msgid "Israel"
2540
  msgstr "Israel"
2541
 
2542
- #: ../src/Tribe/Main.php:1275
2543
  msgid "All %s Categories"
2544
  msgstr ""
2545
 
2546
- #: ../src/Tribe/View_Helpers.php:153
2547
  msgid "Italy"
2548
  msgstr "Italy"
2549
 
2550
- #: ../src/Tribe/Main.php:1276
2551
  msgid "Parent %s Category"
2552
  msgstr ""
2553
 
2554
- #: ../src/Tribe/View_Helpers.php:154
2555
  msgid "Jamaica"
2556
  msgstr "Jamaica"
2557
 
2558
- #: ../src/Tribe/Main.php:1277
2559
  msgid "Parent %s Category:"
2560
  msgstr ""
2561
 
2562
- #: ../src/Tribe/View_Helpers.php:155
2563
  msgid "Japan"
2564
  msgstr "Japan"
2565
 
2566
- #: ../src/Tribe/Main.php:1278
2567
  msgid "Edit %s Category"
2568
  msgstr ""
2569
 
2570
- #: ../src/Tribe/View_Helpers.php:156
2571
  msgid "Jordan"
2572
  msgstr "Jordan"
2573
 
2574
- #: ../src/Tribe/Main.php:1279
2575
  msgid "Update %s Category"
2576
  msgstr ""
2577
 
2578
- #: ../src/Tribe/View_Helpers.php:157
2579
  msgid "Kazakhstan"
2580
  msgstr "Kazakhstan"
2581
 
2582
- #: ../src/Tribe/Main.php:1280
2583
  msgid "Add New %s Category"
2584
  msgstr ""
2585
 
2586
- #: ../src/Tribe/View_Helpers.php:158
2587
  msgid "Kenya"
2588
  msgstr "Kenya"
2589
 
2590
- #: ../src/Tribe/Main.php:1281
2591
  msgid "New %s Category Name"
2592
  msgstr ""
2593
 
2594
- #: ../src/Tribe/View_Helpers.php:159
2595
  msgid "Kiribati"
2596
  msgstr "Kiribati"
2597
 
2598
- #: ../src/Tribe/Main.php:1297
2599
  msgid "%1$s updated. <a href=\"%2$s\">View %3$s</a>"
2600
  msgstr ""
2601
 
2602
- #: ../src/Tribe/View_Helpers.php:160
2603
  msgid "Korea, Democratic People's Republic Of"
2604
  msgstr "Korea, Democratic People's Republic Of"
2605
 
2606
- #: ../src/Tribe/Main.php:1298 ../src/Tribe/Main.php:1334
2607
- #: ../src/Tribe/Main.php:1353
2608
  msgid "Custom field updated."
2609
  msgstr "Bykomende veld opgedateer."
2610
 
2611
- #: ../src/Tribe/View_Helpers.php:161
2612
  msgid "Korea, Republic Of"
2613
  msgstr "Korea, Republic Of"
2614
 
2615
- #: ../src/Tribe/Main.php:1299 ../src/Tribe/Main.php:1335
2616
- #: ../src/Tribe/Main.php:1354
2617
  msgid "Custom field deleted."
2618
  msgstr "Bykomende veld verwyder."
2619
 
2620
- #: ../src/Tribe/View_Helpers.php:162
2621
  msgid "Kuwait"
2622
  msgstr "Kuwait"
2623
 
2624
- #: ../src/Tribe/Main.php:1300 ../src/Tribe/Main.php:1333
2625
- #: ../src/Tribe/Main.php:1336 ../src/Tribe/Main.php:1352
2626
- #: ../src/Tribe/Main.php:1355
2627
  msgid "%s updated."
2628
  msgstr ""
2629
 
2630
- #: ../src/Tribe/View_Helpers.php:163
2631
  msgid "Kyrgyzstan"
2632
  msgstr "Kyrgyzstan"
2633
 
2634
- #: ../src/Tribe/Main.php:1302
2635
  msgid "%1$s restored to revision from %2$s"
2636
  msgstr ""
2637
 
2638
- #: ../src/Tribe/View_Helpers.php:164
2639
  msgid "Lao People's Democratic Republic"
2640
  msgstr "Lao People's Democratic Republic"
2641
 
2642
- #: ../src/Tribe/Main.php:1304
2643
  msgid "Event published. <a href=\"%1$s\">View %2$s</a>"
2644
  msgstr ""
2645
 
2646
- #: ../src/Tribe/View_Helpers.php:165
2647
  msgid "Latvia"
2648
  msgstr "Latvia"
2649
 
2650
- #: ../src/Tribe/Main.php:1308 ../src/Tribe/Main.php:1340
2651
- #: ../src/Tribe/Main.php:1359
2652
  msgid "%s saved."
2653
  msgstr ""
2654
 
2655
- #: ../src/Tribe/View_Helpers.php:166
2656
  msgid "Lebanon"
2657
  msgstr "Lebanon"
2658
 
2659
- #: ../src/Tribe/Main.php:1310
2660
  msgid "%1$s submitted. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2661
  msgstr ""
2662
 
2663
- #: ../src/Tribe/View_Helpers.php:167
2664
  msgid "Lesotho"
2665
  msgstr "Lesotho"
2666
 
2667
- #: ../src/Tribe/Main.php:1316
2668
  msgid "%1$s scheduled for: <strong>%2$s</strong>. <a target=\"_blank\" href=\"%3$s\">Preview %4$s</a>"
2669
  msgstr ""
2670
 
2671
- #: ../src/Tribe/View_Helpers.php:168
2672
  msgid "Liberia"
2673
  msgstr "Liberia"
2674
 
2675
- #: ../src/Tribe/Main.php:1319 ../src/Tribe/Main.php:1345
2676
- #: ../src/Tribe/Main.php:1364
2677
  msgid "M j, Y @ G:i"
2678
  msgstr "M j, Y @ G:i"
2679
 
2680
- #: ../src/Tribe/View_Helpers.php:169
2681
  msgid "Libya"
2682
  msgstr "Libya"
2683
 
2684
- #: ../src/Tribe/Main.php:1324
2685
  msgid "%1$s draft updated. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2686
  msgstr ""
2687
 
2688
- #: ../src/Tribe/View_Helpers.php:170
2689
  msgid "Liechtenstein"
2690
  msgstr "Liechtenstein"
2691
 
2692
- #: ../src/Tribe/Main.php:1338 ../src/Tribe/Main.php:1357
2693
  msgid "%s restored to revision from %s"
2694
  msgstr ""
2695
 
2696
- #: ../src/Tribe/View_Helpers.php:171
2697
  msgid "Lithuania"
2698
  msgstr "Lithuania"
2699
 
2700
- #: ../src/Tribe/Main.php:1339 ../src/Tribe/Main.php:1358
2701
  msgid "%s published."
2702
  msgstr ""
2703
 
2704
- #: ../src/Tribe/View_Helpers.php:172
2705
  msgid "Luxembourg"
2706
  msgstr "Luxembourg"
2707
 
2708
- #: ../src/Tribe/Main.php:1341 ../src/Tribe/Main.php:1360
2709
  msgid "%s submitted."
2710
  msgstr ""
2711
 
2712
- #: ../src/Tribe/View_Helpers.php:173
2713
  msgid "Macau"
2714
  msgstr "Macau"
2715
 
2716
- #: ../src/Tribe/Main.php:1343 ../src/Tribe/Main.php:1362
2717
  msgid "%s scheduled for: <strong>%2$s</strong>."
2718
  msgstr ""
2719
 
2720
- #: ../src/Tribe/View_Helpers.php:174
2721
  msgid "Macedonia"
2722
  msgstr "Macedonia"
2723
 
2724
- #: ../src/Tribe/Main.php:1347 ../src/Tribe/Main.php:1366
2725
  msgid "%s draft updated."
2726
  msgstr ""
2727
 
2728
- #: ../src/Tribe/View_Helpers.php:175
2729
  msgid "Madagascar"
2730
  msgstr "Madagascar"
2731
 
2732
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88
2733
- #: ../src/Tribe/Main.php:1401 ../src/Tribe/Main.php:1452
2734
  msgid "Use Saved %s:"
2735
  msgstr ""
2736
 
2737
- #: ../src/Tribe/View_Helpers.php:176
2738
  msgid "Malawi"
2739
  msgstr "Malawi"
2740
 
2741
- #: ../src/Tribe/Main.php:1429
2742
  msgid "Without a defined location your event will not display a <a href=\"https://support.google.com/webmasters/answer/164506\" target=\"_blank\">Google Rich Snippet</a> on the search results."
2743
  msgstr ""
2744
 
2745
- #: ../src/Tribe/View_Helpers.php:177
2746
  msgid "Malaysia"
2747
  msgstr "Malaysia"
2748
 
2749
- #: ../src/Tribe/Main.php:1520 ../src/Tribe/Main.php:1602
2750
  msgid "Use New %s"
2751
  msgstr ""
2752
 
2753
- #: ../src/Tribe/View_Helpers.php:178
2754
  msgid "Maldives"
2755
  msgstr "Maldives"
2756
 
2757
- #: ../src/Tribe/Main.php:1522 ../src/Tribe/Main.php:1604
2758
  msgid "My %s"
2759
  msgstr ""
2760
 
2761
- #: ../src/Tribe/View_Helpers.php:179
2762
  msgid "Mali"
2763
  msgstr "Mali"
2764
 
2765
- #: ../src/Tribe/Main.php:1527 ../src/Tribe/Main.php:1609
2766
  msgid "Available %s"
2767
  msgstr ""
2768
 
2769
- #: ../src/Tribe/View_Helpers.php:180
2770
  msgid "Malta"
2771
  msgstr "Malta"
2772
 
2773
- #: ../src/Tribe/Main.php:1538 ../src/Tribe/Main.php:1620
2774
  msgid "No saved %s exists."
2775
  msgstr ""
2776
 
2777
- #: ../src/Tribe/View_Helpers.php:181
2778
  msgid "Marshall Islands"
2779
  msgstr "Marshall Islands"
2780
 
2781
- #: ../src/Tribe/Main.php:1764
2782
  msgid "Next"
2783
  msgstr "Volgende"
2784
 
2785
- #: ../src/Tribe/View_Helpers.php:182
2786
  msgid "Martinique"
2787
  msgstr "Martinique"
2788
 
2789
- #: ../src/Tribe/Main.php:1765
2790
  msgid "Prev"
2791
  msgstr "Vorige"
2792
 
2793
- #: ../src/Tribe/View_Helpers.php:183
2794
  msgid "Mauritania"
2795
  msgstr "Mauritania"
2796
 
2797
- #: ../src/Tribe/Main.php:1766 ../src/functions/template-tags/day.php:105
2798
  msgid "Today"
2799
  msgstr "Vandag"
2800
 
2801
- #: ../src/Tribe/View_Helpers.php:184
2802
  msgid "Mauritius"
2803
  msgstr "Mauritius"
2804
 
2805
- #: ../src/Tribe/Main.php:1767
2806
  msgid "Done"
2807
  msgstr "Afgehandel"
2808
 
2809
- #: ../src/Tribe/View_Helpers.php:185
2810
  msgid "Mayotte"
2811
  msgstr "Mayotte"
2812
 
2813
- #: ../src/Tribe/Main.php:1941
2814
  msgid "Network"
2815
  msgstr "Netwerk"
2816
 
2817
- #: ../src/Tribe/View_Helpers.php:186
2818
  msgid "Mexico"
2819
  msgstr "Mexico"
2820
 
2821
- #: ../src/Tribe/Main.php:3428 ../src/Tribe/Main.php:3463
2822
- #: ../src/functions/template-tags/day.php:158
2823
- #: ../src/functions/template-tags/day.php:180
2824
  msgid "Date out of range."
2825
  msgstr "Datum is buite die verlangde reeks."
2826
 
2827
- #: ../src/Tribe/View_Helpers.php:187
2828
  msgid "Micronesia, Federated States Of"
2829
  msgstr "Micronesia, Federated States Of"
2830
 
2831
- #: ../src/Tribe/Main.php:3499
2832
  msgid "%s Options"
2833
  msgstr ""
2834
 
2835
- #: ../src/Tribe/View_Helpers.php:188
2836
  msgid "Moldova, Republic Of"
2837
  msgstr "Moldova, Republic Of"
2838
 
2839
- #: ../src/Tribe/Main.php:3506 ../src/Tribe/Main.php:3517
2840
  msgid "%s Information"
2841
  msgstr ""
2842
 
2843
- #: ../src/Tribe/View_Helpers.php:189
2844
  msgid "Monaco"
2845
  msgstr "Monaco"
2846
 
2847
- #: ../src/Tribe/Main.php:3730
2848
  msgid "Support"
2849
  msgstr "Ondersteuning"
2850
 
2851
- #: ../src/Tribe/View_Helpers.php:190
2852
  msgid "Mongolia"
2853
  msgstr "Mongolia"
2854
 
2855
- #: ../src/Tribe/Main.php:3733
2856
  msgid "View All Add-Ons"
2857
  msgstr "Vertoon alle toevoegings"
2858
 
2859
- #: ../src/Tribe/View_Helpers.php:191
2860
  msgid "Montenegro"
2861
  msgstr "Montenegro"
2862
 
2863
- #: ../src/Tribe/Main.php:3754
2864
  msgid "News from Modern Tribe"
2865
  msgstr "Nuus vanaf Modern Tribe"
2866
 
2867
- #: ../src/Tribe/View_Helpers.php:192
2868
  msgid "Montserrat"
2869
  msgstr "Montserrat"
2870
 
2871
- #: ../src/Tribe/Main.php:3818
2872
  msgid "Additional Functionality"
2873
  msgstr "Bykomende Funksionaliteit"
2874
 
2875
- #: ../src/Tribe/View_Helpers.php:193
2876
  msgid "Morocco"
2877
  msgstr "Morocco"
2878
 
2879
- #: ../src/Tribe/Main.php:3823
2880
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
2881
  msgstr "Op soek na bykomende funksionaliteit, insluitend herhalende gebeure, kaartjieverkope, gemeenskaplike gebeure, nuwe aansigte en meer?"
2882
 
2883
- #: ../src/Tribe/View_Helpers.php:194
2884
  msgid "Mozambique"
2885
  msgstr "Mozambique"
2886
 
2887
- #: ../src/Tribe/Main.php:3824
2888
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
2889
  msgstr "Kyk na die <a href=\"%s\"> beskikbaar byvoegings </ a>."
2890
 
2891
- #: ../src/Tribe/View_Helpers.php:195
2892
  msgid "Myanmar"
2893
  msgstr "Myanmar"
2894
 
2895
- #: ../src/Tribe/Main.php:3875
2896
  msgid "%s"
2897
  msgstr ""
2898
 
2899
- #: ../src/Tribe/View_Helpers.php:196
2900
  msgid "Namibia"
2901
  msgstr "Namibia"
2902
 
2903
- #: ../src/Tribe/Main.php:3912 ../src/Tribe/Main.php:4008
2904
  msgid "View Calendar"
2905
  msgstr "Vertoon Kalender"
2906
 
2907
- #: ../src/Tribe/View_Helpers.php:197
2908
  msgid "Nauru"
2909
  msgstr "Nauru"
2910
 
2911
- #: ../src/Tribe/Main.php:3922
2912
  msgid "Add %s"
2913
  msgstr ""
2914
 
2915
- #: ../src/Tribe/View_Helpers.php:198
2916
  msgid "Nepal"
2917
  msgstr "Nepal"
2918
 
2919
- #: ../src/Tribe/Main.php:3954
2920
  msgid "CSV"
2921
  msgstr ""
2922
 
2923
- #: ../src/Tribe/View_Helpers.php:199
2924
  msgid "Netherlands"
2925
  msgstr "Netherlands"
2926
 
2927
- #: ../src/Tribe/Main.php:3976 ../src/Tribe/Main.php:4066
2928
- #: ../src/Tribe/Settings.php:161
2929
  msgid "Settings"
2930
  msgstr "Verstellings"
2931
 
2932
- #: ../src/Tribe/View_Helpers.php:200
2933
  msgid "Netherlands Antilles"
2934
  msgstr "Netherlands Antilles"
2935
 
2936
- #: ../src/Tribe/Main.php:4067
2937
  msgid "Calendar"
2938
  msgstr "Kalender"
2939
 
2940
- #: ../src/Tribe/View_Helpers.php:201
2941
  msgid "New Caledonia"
2942
  msgstr "New Caledonia"
2943
 
2944
- #: ../src/Tribe/Main.php:4143
2945
  msgid "List"
2946
  msgstr "Lys"
2947
 
2948
- #: ../src/Tribe/View_Helpers.php:202
2949
  msgid "New Zealand"
2950
  msgstr "New Zealand"
2951
 
2952
- #: ../src/Tribe/Main.php:4161
2953
  msgid "Month"
2954
  msgstr "Maand"
2955
 
2956
- #: ../src/Tribe/View_Helpers.php:203
2957
  msgid "Nicaragua"
2958
  msgstr "Nicaragua"
2959
 
2960
- #: ../src/Tribe/Main.php:4178
2961
  msgid "Day"
2962
  msgstr ""
2963
 
2964
- #: ../src/Tribe/View_Helpers.php:204
2965
  msgid "Niger"
2966
  msgstr "Niger"
2967
 
2968
- #: ../src/Tribe/Main.php:4203 ../src/Tribe/Main.php:4204
2969
  msgid "Search"
2970
  msgstr "Soek"
2971
 
2972
- #: ../src/Tribe/View_Helpers.php:205
2973
  msgid "Nigeria"
2974
  msgstr "Nigeria"
2975
 
2976
- #: ../src/Tribe/Main.php:4228 ../src/Tribe/Main.php:4244
2977
  msgid "Date"
2978
  msgstr "Datum"
2979
 
2980
- #: ../src/Tribe/View_Helpers.php:206
2981
  msgid "Niue"
2982
  msgstr "Niue"
2983
 
2984
- #: ../src/Tribe/Main.php:4231
2985
  msgid "%s In"
2986
  msgstr ""
2987
 
2988
- #: ../src/Tribe/View_Helpers.php:207
2989
  msgid "Norfolk Island"
2990
  msgstr "Norfolk Island"
2991
 
2992
- #: ../src/Tribe/Main.php:4233
2993
  msgid "%s From"
2994
  msgstr ""
2995
 
2996
- #: ../src/Tribe/View_Helpers.php:208
2997
  msgid "Northern Mariana Islands"
2998
  msgstr "Northern Mariana Islands"
2999
 
3000
- #: ../src/Tribe/Main.php:4235
3001
  msgid "Day Of"
3002
  msgstr ""
3003
 
3004
- #: ../src/Tribe/View_Helpers.php:209
3005
  msgid "Norway"
3006
  msgstr "Norway"
3007
 
3008
- #: ../src/Tribe/Main.php:4310
3009
  msgid "Once Every 30 Mins"
3010
  msgstr ""
3011
 
3012
- #: ../src/Tribe/View_Helpers.php:210
3013
  msgid "Oman"
3014
  msgstr "Oman"
3015
 
3016
- #: ../src/Tribe/Options_Exception.php:19 ../src/Tribe/Post_Exception.php:22
3017
  msgid "Error"
3018
  msgstr "Probleem"
3019
 
3020
- #: ../src/Tribe/View_Helpers.php:211
3021
  msgid "Pakistan"
3022
  msgstr "Pakistan"
3023
 
3024
- #: ../src/Tribe/PUE/Checker.php:304
3025
  msgid "License Key"
3026
  msgstr "Lisensiesleutel"
3027
 
3028
- #: ../src/Tribe/View_Helpers.php:212
3029
  msgid "Palau"
3030
  msgstr "Palau"
3031
 
3032
- #: ../src/Tribe/PUE/Checker.php:305
3033
  msgid "A valid license key is required for support and updates"
3034
  msgstr "'n Geldige lisensie sleutel word benodig vir die ondersteuning en opgraderings"
3035
 
3036
- #: ../src/Tribe/View_Helpers.php:213
3037
  msgid "Panama"
3038
  msgstr "v"
3039
 
3040
- #: ../src/Tribe/PUE/Checker.php:377
3041
  msgid "License key(s) updated."
3042
  msgstr "Lisensiesleutel(s) opgedateer"
3043
 
3044
- #: ../src/Tribe/View_Helpers.php:214
3045
  msgid "Papua New Guinea"
3046
  msgstr "Papua New Guinea"
3047
 
3048
- #: ../src/Tribe/PUE/Checker.php:419
3049
  msgid "Sorry, key validation server is not available."
3050
  msgstr "Jammer, sleutel validering bediener is nie beskikbaar nie."
3051
 
3052
- #: ../src/Tribe/View_Helpers.php:215
3053
  msgid "Paraguay"
3054
  msgstr "Paraguay"
3055
 
3056
- #: ../src/Tribe/PUE/Checker.php:421
3057
  msgid "Sorry, this key is expired."
3058
  msgstr "Jammer, hierdie sleutel het verstryk."
3059
 
3060
- #: ../src/Tribe/View_Helpers.php:216
3061
  msgid "Peru"
3062
  msgstr "Peru"
3063
 
3064
- #: ../src/Tribe/PUE/Checker.php:424
3065
  msgid "Sorry, this key is out of installs."
3066
  msgstr "Jammer, hierdie sleutel is uit installasie geleenthede."
3067
 
3068
- #: ../src/Tribe/View_Helpers.php:217
3069
  msgid "Philippines"
3070
  msgstr "Philippines"
3071
 
3072
- #: ../src/Tribe/PUE/Checker.php:425
3073
  msgid "Why am I seeing this message?"
3074
  msgstr ""
3075
 
3076
- #: ../src/Tribe/View_Helpers.php:218
3077
  msgid "Pitcairn"
3078
  msgstr "Pitcairn"
3079
 
3080
- #: ../src/Tribe/PUE/Checker.php:428
3081
  msgid "Sorry, this key is not valid."
3082
  msgstr "Jammer, hierdie sleutel is ongeldig."
3083
 
3084
- #: ../src/Tribe/View_Helpers.php:219
3085
  msgid "Poland"
3086
  msgstr "Poland"
3087
 
3088
- #: ../src/Tribe/PUE/Checker.php:430
3089
  msgid "Valid Key! Expires on %s"
3090
  msgstr "Geldig sleutel! Verval op %s"
3091
 
3092
- #: ../src/Tribe/View_Helpers.php:220
3093
  msgid "Portugal"
3094
  msgstr "Portugal"
3095
 
3096
- #: ../src/Tribe/PUE/Checker.php:436
3097
  msgid "Hmmm... something's wrong with this validator. Please contact <a href=\"%s\">support.</a>"
3098
  msgstr "Hmmm ... iets is verkeerd met hierdie validator. Kontak asseblief <a href=\"%s\">ondersteuning.</a>"
3099
 
3100
- #: ../src/Tribe/View_Helpers.php:221
3101
  msgid "Puerto Rico"
3102
  msgstr "Puerto Rico"
3103
 
3104
- #: ../src/Tribe/Settings.php:160 ../src/Tribe/Settings.php:176
3105
  msgid "The Events Calendar Settings"
3106
  msgstr "The Events Calendar Verstellings"
3107
 
3108
- #: ../src/Tribe/View_Helpers.php:222
3109
  msgid "Qatar"
3110
  msgstr "Qatar"
3111
 
3112
- #: ../src/Tribe/Settings.php:176
3113
  msgid "Events Settings"
3114
  msgstr "Gebeurtenis Verstellings"
3115
 
3116
- #: ../src/Tribe/View_Helpers.php:223
3117
  msgid "Reunion"
3118
  msgstr "Reunion"
3119
 
3120
- #: ../src/Tribe/Settings.php:239
3121
  msgid "%s Settings"
3122
  msgstr "%s Verstellings"
3123
 
3124
- #: ../src/Tribe/View_Helpers.php:224
3125
  msgid "Romania"
3126
  msgstr "Romania"
3127
 
3128
- #: ../src/Tribe/Settings.php:253
3129
  msgid "You've requested a non-existent tab."
3130
  msgstr "Jy het 'n nie-bestaande afdeling gekies."
3131
 
3132
- #: ../src/Tribe/View_Helpers.php:225
3133
  msgid "Russian Federation"
3134
  msgstr "Russian Federation"
3135
 
3136
- #: ../src/Tribe/Settings.php:261
3137
- msgid " Save Changes"
3138
- msgstr "Stoor Veranderinge"
3139
-
3140
- #: ../src/Tribe/View_Helpers.php:226
3141
  msgid "Rwanda"
3142
  msgstr "Rwanda"
3143
 
3144
- #: ../src/Tribe/Settings.php:309
3145
  msgid "You don't have permission to do that."
3146
  msgstr "Jy het nie toestemming om dit te doen nie."
3147
 
3148
- #: ../src/Tribe/View_Helpers.php:227
3149
  msgid "Saint Kitts And Nevis"
3150
  msgstr "Saint Kitts And Nevis"
3151
 
3152
- #: ../src/Tribe/Settings.php:315
3153
  msgid "The request was sent insecurely."
3154
  msgstr "Die versoek is onveilig gestuur."
3155
 
3156
- #: ../src/Tribe/View_Helpers.php:228
3157
  msgid "Saint Lucia"
3158
  msgstr "Saint Lucia"
3159
 
3160
- #: ../src/Tribe/Settings.php:321
3161
  msgid "The request wasn't sent from this tab."
3162
  msgstr "Die versoek is nie van hierdie afdeling af gestuur nie."
3163
 
3164
- #: ../src/Tribe/View_Helpers.php:229
3165
  msgid "Saint Vincent And The Grenadines"
3166
  msgstr "Saint Vincent And The Grenadines"
3167
 
3168
- #: ../src/Tribe/Settings.php:489
3169
  msgid "Your form had the following errors:"
3170
  msgstr "Jou vorm het die volgende probleme gehad:"
3171
 
3172
- #: ../src/Tribe/View_Helpers.php:230
3173
  msgid "Samoa"
3174
  msgstr "Samoa"
3175
 
3176
- #: ../src/Tribe/Settings.php:498
3177
  msgid "None of your settings were saved. Please try again."
3178
  msgstr "Nie een van jou stellings is gestoor nie. Probeer asseblief weer."
3179
 
3180
- #: ../src/Tribe/View_Helpers.php:231
3181
  msgid "San Marino"
3182
  msgstr "San Marino"
3183
 
3184
- #: ../src/Tribe/Settings.php:498
3185
  msgid "The above setting was not saved. Other settings were successfully saved."
3186
  msgid_plural "The above settings were not saved. Other settings were successfully saved."
3187
  msgstr[0] ""
3188
  msgstr[1] ""
3189
 
3190
- #: ../src/Tribe/View_Helpers.php:232
3191
  msgid "Sao Tome And Principe"
3192
  msgstr "Sao Tome And Principe"
3193
 
3194
- #: ../src/Tribe/Settings_Tab.php:224
3195
  msgid "There are no fields setup for this tab yet."
3196
  msgstr "Daar is geen velde opgestel vir hierdie afdeling nie."
3197
 
3198
- #: ../src/Tribe/View_Helpers.php:233
3199
  msgid "Saudi Arabia"
3200
  msgstr "Saudi Arabia"
3201
 
3202
- #: ../src/Tribe/Support.php:46
3203
  msgid "Sometimes it's hard to tell what's going wrong without knowing more about your system steup. For your convenience, we've put together a little report on what's cooking under the hood."
3204
  msgstr "Soms is dit moeilik om te sê wat verkeerd gegaan het sonder om meer te weet oor hoe jou stelsel opgestel is. Vir u gerief, het ons 'n verslag saam gestel oor wat aan die agterkant van die webtuiste aangaan."
3205
 
3206
- #: ../src/Tribe/View_Helpers.php:234
3207
  msgid "Senegal"
3208
  msgstr "Senegal"
3209
 
3210
- #: ../src/Tribe/Support.php:47
3211
  msgid "If you suspect that the problem you're having is related to another plugin, or we're just plain having trouble reproducing your bug report, please copy and send all of this to our support team."
3212
  msgstr "As jy vermoed dat die probleem wat jy het, verwant is aan 'n ander plugin, of indien ons probleme het om jou fout verslag te dupliseer, kopieer en stuur al hierdie inligtiong aan ons ondersteuning span."
3213
 
3214
- #: ../src/Tribe/View_Helpers.php:235
3215
  msgid "Serbia"
3216
  msgstr "Serbia"
3217
 
3218
- #: ../src/Tribe/Support.php:51
3219
  msgid "System Information"
3220
  msgstr "Sisteem Inligting"
3221
 
3222
- #: ../src/Tribe/View_Helpers.php:236
3223
  msgid "Seychelles"
3224
  msgstr "Seychelles"
3225
 
3226
- #: ../src/Tribe/Support.php:137
3227
  msgid "Unknown or not set"
3228
  msgstr ""
3229
 
3230
- #: ../src/Tribe/View_Helpers.php:237
3231
  msgid "Sierra Leone"
3232
  msgstr "Sierra Leone"
3233
 
3234
- #: ../src/Tribe/Template/Day.php:99 ../src/Tribe/Template/Day.php:115
3235
  msgid "All Day"
3236
  msgstr ""
3237
 
3238
- #: ../src/Tribe/View_Helpers.php:238
3239
  msgid "Singapore"
3240
  msgstr "Singapore"
3241
 
3242
- #: ../src/Tribe/Template/Day.php:102 ../src/Tribe/Template/Day.php:118
3243
  msgid "Ongoing"
3244
  msgstr ""
3245
 
3246
- #: ../src/Tribe/View_Helpers.php:239
3247
  msgid "Slovakia (Slovak Republic)"
3248
  msgstr "Slovakia (Slovak Republic)"
3249
 
3250
- #: ../src/Tribe/Template/Day.php:136
3251
- msgid "No matching %s listed under %s scheduled for <strong>%s</strong>. Please try another day."
3252
- msgstr ""
3253
-
3254
- #: ../src/Tribe/View_Helpers.php:240
3255
  msgid "Slovenia"
3256
  msgstr "Slovenia"
3257
 
3258
- #: ../src/Tribe/Template/Day.php:138
3259
- msgid "No %s scheduled for <strong>%s</strong>. Please try another day."
3260
- msgstr ""
3261
-
3262
- #: ../src/Tribe/View_Helpers.php:241
3263
  msgid "Solomon Islands"
3264
  msgstr "Solomon Islands"
3265
 
3266
- #: ../src/Tribe/Template/Month.php:250
3267
  msgid "There were no results found for <strong>\"%s\"</strong> this month. Try searching next month."
3268
  msgstr "Daar is geen resultate gevind vir <strong>\"%s\"</strong>hierdie maand. Probeer om deur volgende maand te soek."
3269
 
3270
- #: ../src/Tribe/View_Helpers.php:242
3271
  msgid "Somalia"
3272
  msgstr "Somalia"
3273
 
3274
- #: ../src/Tribe/Template/Month.php:253
3275
- msgid "No matching %s listed under %s. Please try viewing the full calendar for a complete list of events."
3276
- msgstr ""
3277
-
3278
- #: ../src/Tribe/View_Helpers.php:243
3279
  msgid "South Africa"
3280
  msgstr "South Africa"
3281
 
3282
- #: ../src/Tribe/Template/Month.php:255 ../src/Tribe/Template_Factory.php:366
3283
  msgid "There were no results found."
3284
  msgstr "Daar was geen resultate gevind nie."
3285
 
3286
- #: ../src/Tribe/View_Helpers.php:244
3287
  msgid "South Georgia, South Sandwich Islands"
3288
  msgstr "South Georgia, South Sandwich Islands"
3289
 
3290
- #: ../src/Tribe/Template/Month.php:411
3291
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
3292
  msgstr ""
3293
 
3294
- #: ../src/Tribe/View_Helpers.php:245
3295
  msgid "Spain"
3296
  msgstr "Spain"
3297
 
3298
- #: ../src/Tribe/Template/Single_Event.php:120
3299
  msgid "This %s has passed."
3300
  msgstr ""
3301
 
3302
- #: ../src/Tribe/View_Helpers.php:246
3303
  msgid "Sri Lanka"
3304
  msgstr "v"
3305
 
3306
- #: ../src/Tribe/Template_Factory.php:353
3307
  msgid "There were no results found for <strong>\"%s\"</strong>."
3308
  msgstr "Daar is geen resultate gevind vir <strong>\"%s\"</strong>."
3309
 
3310
- #: ../src/Tribe/View_Helpers.php:247
3311
  msgid "St. Helena"
3312
  msgstr "St. Helena"
3313
 
3314
- #: ../src/Tribe/Template_Factory.php:355
3315
- msgid "No results were found for %s in or near <strong>\"%s\"</strong>."
3316
- msgstr ""
3317
-
3318
- #: ../src/Tribe/View_Helpers.php:248
3319
  msgid "St. Pierre And Miquelon"
3320
  msgstr "St. Pierre And Miquelon"
3321
 
3322
- #: ../src/Tribe/Template_Factory.php:357
3323
- msgid "No upcoming %s listed under %s. Check out upcoming %s for this category or view the full calendar."
3324
- msgstr ""
3325
-
3326
- #: ../src/Tribe/View_Helpers.php:249
3327
  msgid "Sudan"
3328
  msgstr "Sudan"
3329
 
3330
- #: ../src/Tribe/Template_Factory.php:359 ../src/Tribe/Template_Factory.php:364
3331
- msgid "No matching %s listed under %s. Please try viewing the full calendar for a complete list of %s."
3332
- msgstr ""
3333
-
3334
- #: ../src/Tribe/View_Helpers.php:250
3335
  msgid "Suriname"
3336
  msgstr "Suriname"
3337
 
3338
- #: ../src/Tribe/Template_Factory.php:361
3339
  msgid "No previous %s "
3340
  msgstr ""
3341
 
3342
- #: ../src/Tribe/View_Helpers.php:251
3343
  msgid "Svalbard And Jan Mayen Islands"
3344
  msgstr "Svalbard And Jan Mayen Islands"
3345
 
3346
- #: ../src/Tribe/Templates.php:618
3347
  msgid "Template overrides should be moved to the correct subdirectory: %s"
3348
  msgstr "Bloudruk Oorheersers moet geskuif word na die korrekte subgids:% s"
3349
 
3350
- #: ../src/Tribe/View_Helpers.php:252
3351
  msgid "Swaziland"
3352
  msgstr "Swaziland"
3353
 
3354
- #: ../src/Tribe/Templates.php:660
3355
  msgid "Template overrides should be moved to the correct subdirectory: tribe_get_template_part('%s')"
3356
  msgstr "Bloudruk oorheersers moet geskuif word na die korrekte subgids: tribe_get_template_part('%s')"
3357
 
3358
- #: ../src/Tribe/View_Helpers.php:253
3359
  msgid "Sweden"
3360
  msgstr "Sweden"
3361
 
3362
- #: ../src/Tribe/Tickets/Attendees_Table.php:74
3363
  msgid "Order #"
3364
  msgstr "Bestelling #"
3365
 
3366
- #: ../src/Tribe/View_Helpers.php:254
3367
  msgid "Switzerland"
3368
  msgstr "Switzerland"
3369
 
3370
- #: ../src/Tribe/Tickets/Attendees_Table.php:75
3371
  msgid "Order Status"
3372
  msgstr "Besteling Status"
3373
 
3374
- #: ../src/Tribe/View_Helpers.php:255
3375
  msgid "Syrian Arab Republic"
3376
  msgstr "Syrian Arab Republic"
3377
 
3378
- #: ../src/Tribe/Tickets/Attendees_Table.php:76
3379
  msgid "Purchaser name"
3380
  msgstr "Aankoper Naam"
3381
 
3382
- #: ../src/Tribe/View_Helpers.php:256
3383
  msgid "Taiwan"
3384
  msgstr "Taiwan"
3385
 
3386
- #: ../src/Tribe/Tickets/Attendees_Table.php:77
3387
  msgid "Purchaser email"
3388
  msgstr "Aankoper E-pos"
3389
 
3390
- #: ../src/Tribe/View_Helpers.php:257
3391
  msgid "Tajikistan"
3392
  msgstr "Tajikistan"
3393
 
3394
- #: ../src/Tribe/Tickets/Attendees_Table.php:78
3395
  msgid "Ticket type"
3396
  msgstr "Kaaartjie Tipe"
3397
 
3398
- #: ../src/Tribe/View_Helpers.php:258
3399
  msgid "Tanzania, United Republic Of"
3400
  msgstr "Tanzania, United Republic Of"
3401
 
3402
- #: ../src/Tribe/Tickets/Attendees_Table.php:79
3403
- #: ../src/views/tickets/email.php:305
3404
  msgid "Ticket #"
3405
  msgstr "Kaartjie #"
3406
 
3407
- #: ../src/Tribe/View_Helpers.php:259
3408
  msgid "Thailand"
3409
  msgstr "Thailand"
3410
 
3411
- #: ../src/Tribe/Tickets/Attendees_Table.php:80
3412
- #: ../src/views/tickets/email.php:317
3413
  msgid "Security Code"
3414
  msgstr "Sekuriteitskode"
3415
 
3416
- #: ../src/Tribe/View_Helpers.php:260
3417
  msgid "Togo"
3418
  msgstr "Togo"
3419
 
3420
- #: ../src/Tribe/Tickets/Attendees_Table.php:81
3421
- #: ../src/Tribe/Tickets/Attendees_Table.php:168
3422
- #: ../src/Tribe/Tickets/Attendees_Table.php:235
3423
  msgid "Check in"
3424
  msgstr "Aangemeld"
3425
 
3426
- #: ../src/Tribe/View_Helpers.php:261
3427
  msgid "Tokelau"
3428
  msgstr "Tokelau"
3429
 
3430
- #: ../src/Tribe/Tickets/Attendees_Table.php:169
3431
- #: ../src/Tribe/Tickets/Attendees_Table.php:236
3432
  msgid "Undo Check in"
3433
  msgstr "Kanseleer Aangemeld"
3434
 
3435
- #: ../src/Tribe/View_Helpers.php:262
3436
  msgid "Tonga"
3437
  msgstr "Tonga"
3438
 
3439
- #: ../src/Tribe/Tickets/Attendees_Table.php:204
3440
  msgid "Print"
3441
  msgstr "Druk"
3442
 
3443
- #: ../src/Tribe/View_Helpers.php:263
3444
  msgid "Trinidad And Tobago"
3445
  msgstr "Trinidad And Tobago"
3446
 
3447
- #: ../src/Tribe/Tickets/Attendees_Table.php:205
3448
  msgid "Email"
3449
  msgstr "E-pos"
3450
 
3451
- #: ../src/Tribe/View_Helpers.php:264
3452
  msgid "Tunisia"
3453
  msgstr "Tunisia"
3454
 
3455
- #: ../src/Tribe/Tickets/Attendees_Table.php:214 ../src/Tribe/iCal.php:119
3456
  msgid "Export"
3457
  msgstr "Uitvoer"
3458
 
3459
- #: ../src/Tribe/View_Helpers.php:265
3460
  msgid "Turkey"
3461
  msgstr "Turkey"
3462
 
3463
- #: ../src/Tribe/Tickets/Attendees_Table.php:221
3464
  msgid "Filter by purchaser name, ticket #, order # or security code"
3465
  msgstr ""
3466
 
3467
- #: ../src/Tribe/View_Helpers.php:266
3468
  msgid "Turkmenistan"
3469
  msgstr "Turkmenistan"
3470
 
3471
- #: ../src/Tribe/Tickets/Attendees_Table.php:237
3472
- #: ../src/admin-views/tickets/list.php:22
3473
  msgid "Delete"
3474
  msgstr "Verwyder"
3475
 
3476
- #: ../src/Tribe/View_Helpers.php:267
3477
  msgid "Turks And Caicos Islands"
3478
  msgstr "Turks And Caicos Islands"
3479
 
3480
- #: ../src/Tribe/Tickets/Metabox.php:26
3481
- #: ../src/admin-views/admin-update-message.php:52
3482
  msgid "Tickets"
3483
  msgstr "Kaartjies"
3484
 
3485
- #: ../src/Tribe/View_Helpers.php:268
3486
  msgid "Tuvalu"
3487
  msgstr "Tuvalu"
3488
 
3489
- #: ../src/Tribe/Tickets/Metabox.php:71
3490
  msgid "Ticket header image"
3491
  msgstr "Kaartjie Hoof beeld "
3492
 
3493
- #: ../src/Tribe/View_Helpers.php:269
3494
  msgid "Uganda"
3495
  msgstr "v"
3496
 
3497
- #: ../src/Tribe/Tickets/Metabox.php:72
3498
  msgid "Set as ticket header"
3499
  msgstr "Stel as karrtjie hoof op."
3500
 
3501
- #: ../src/Tribe/View_Helpers.php:270
3502
  msgid "Ukraine"
3503
  msgstr "Ukraine"
3504
 
3505
- #: ../src/Tribe/Tickets/Tickets.php:328
3506
  msgid "Your ticket has been saved."
3507
  msgstr "Jou kaarthie is gestoor."
3508
 
3509
- #: ../src/Tribe/View_Helpers.php:271
3510
  msgid "United Arab Emirates"
3511
  msgstr "United Arab Emirates"
3512
 
3513
- #: ../src/Tribe/Tickets/Tickets.php:409
3514
  msgid "Your ticket has been deleted."
3515
  msgstr "Jou kaartjie is verwyder."
3516
 
3517
- #: ../src/Tribe/View_Helpers.php:272
3518
  msgid "United Kingdom"
3519
  msgstr "United Kingdom"
3520
 
3521
- #: ../src/Tribe/Tickets/Tickets_Pro.php:78
3522
- #: ../src/admin-views/tickets/list.php:41
3523
  msgid "See who purchased tickets to this event"
3524
  msgstr "Sien wat kaartjies vir die byeenkoms gekoop"
3525
 
3526
- #: ../src/Tribe/View_Helpers.php:273
3527
  msgid "United States Minor Outlying Islands"
3528
  msgstr "United States Minor Outlying Islands"
3529
 
3530
- #: ../src/Tribe/Tickets/Tickets_Pro.php:78
3531
- #: ../src/admin-views/tickets/attendees.php:11
3532
- #: ../src/admin-views/tickets/list.php:41
3533
  msgid "Attendees"
3534
  msgstr "Besoekers"
3535
 
3536
- #: ../src/Tribe/View_Helpers.php:274
3537
  msgid "Uruguay"
3538
  msgstr "Uruguay"
3539
 
3540
- #: ../src/Tribe/Tickets/Tickets_Pro.php:113
3541
  msgid "You need to select a user or type a valid email address"
3542
  msgstr "Jy moet 'n gebruiker te kies of 'n geldige e-posadres in sleutel"
3543
 
3544
- #: ../src/Tribe/View_Helpers.php:275
3545
  msgid "Uzbekistan"
3546
  msgstr "Uzbekistan"
3547
 
3548
- #: ../src/Tribe/Tickets/Tickets_Pro.php:114
3549
  msgid "Sending..."
3550
  msgstr "besig om te stuur...."
3551
 
3552
- #: ../src/Tribe/View_Helpers.php:276
3553
  msgid "Vanuatu"
3554
  msgstr "Vanuatu"
3555
 
3556
- #: ../src/Tribe/Tickets/Tickets_Pro.php:140
3557
  msgid "Columns"
3558
  msgstr "Kolomme"
3559
 
3560
- #: ../src/Tribe/View_Helpers.php:277
3561
  msgid "Venezuela"
3562
  msgstr "Venezuela"
3563
 
3564
- #: ../src/Tribe/Tickets/Tickets_Pro.php:140
3565
  msgid "You can use Screen Options to select which columns you want to see. The selection works in the table below, in the email, for print and for the CSV export."
3566
  msgstr "Jy kan die skerm Opsies gebruik om te kies watter kolomme jy wil sien. Die seleksie werk in die tabel hieronder, in die e-pos, vir die druk van inligting en vir die CSV uitvoer."
3567
 
3568
- #: ../src/Tribe/View_Helpers.php:278
3569
  msgid "Viet Nam"
3570
  msgstr "Viet Nam"
3571
 
3572
- #: ../src/Tribe/Tickets/Tickets_Pro.php:230
3573
  msgid "Yes"
3574
  msgstr "Ja"
3575
 
3576
- #: ../src/Tribe/View_Helpers.php:279
3577
  msgid "Virgin Islands (British)"
3578
  msgstr "Virgin Islands (British)"
3579
 
3580
- #: ../src/Tribe/Tickets/Tickets_Pro.php:262
3581
  msgid "attendees"
3582
  msgstr "Besoekers"
3583
 
3584
- #: ../src/Tribe/View_Helpers.php:280
3585
  msgid "Virgin Islands (U.S.)"
3586
  msgstr "Virgin Islands (U.S.)"
3587
 
3588
- #: ../src/Tribe/Tickets/Tickets_Pro.php:316
3589
  msgid "Attendee List for: %s"
3590
  msgstr "Besoekerslyn vir: %s"
3591
 
3592
- #: ../src/Tribe/Validate.php:76 ../src/Tribe/Validate.php:117
3593
  msgid "Invalid or incomplete field passed"
3594
  msgstr "Ongeldige of onvolledige veld geslaag"
3595
 
3596
- #: ../src/Tribe/Validate.php:77 ../src/Tribe/Validate.php:112
3597
- #: ../src/Tribe/Validate.php:118
3598
  msgid "Field ID:"
3599
  msgstr "Veld ID:"
3600
 
3601
- #: ../src/Tribe/Validate.php:111
3602
  msgid "Non-existant field validation function passed"
3603
  msgstr "Nie-bestaande veld validering funksie geslaag"
3604
 
3605
- #: ../src/Tribe/Validate.php:112
3606
  msgctxt "non-existant function name passed for field validation"
3607
  msgid "with function name:"
3608
  msgstr ""
3609
 
3610
- #: ../src/Tribe/Validate.php:135 ../src/Tribe/Validate.php:151
3611
  msgid "%s must contain numbers and letters only"
3612
  msgstr "% s moet slegs syfers en letters bevat"
3613
 
3614
- #: ../src/Tribe/Validate.php:167
3615
  msgid "%s must contain numbers, letters and dots only"
3616
  msgstr "% s moet slegs syfers, letters en punte bevat"
3617
 
3618
- #: ../src/Tribe/Validate.php:181
3619
  msgid "%s must be a positive number."
3620
  msgstr "% s moet 'n positiewe getal wees."
3621
 
3622
- #: ../src/Tribe/Validate.php:196
3623
  msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
3624
  msgstr "% s moet 'n geldige afkorting (getalle, letters, koppeltekens en onderstreep) wees."
3625
 
3626
- #: ../src/Tribe/Validate.php:211
3627
  msgid "%s must be a valid absolute URL."
3628
  msgstr "% s moet 'n geldige absolute URL wees."
3629
 
3630
- #: ../src/Tribe/Validate.php:227 ../src/Tribe/Validate.php:244
3631
- #: ../src/Tribe/Validate.php:266
3632
  msgid "%s must have a value that's part of its options."
3633
  msgstr "% s moet 'n waarde hë wat deel is van sy opsies."
3634
 
3635
- #: ../src/Tribe/Validate.php:280
3636
  msgid "Comparison validation failed because no comparison value was provided, for field %s"
3637
  msgstr "Vergelyking bekragtiging misluk omdat geen vergelyking waarde is verskaf vir veld %s"
3638
 
3639
- #: ../src/Tribe/Validate.php:287
3640
  msgid "%s cannot be the same as %s."
3641
  msgstr "%s mag nie die selfde wees nie %s."
3642
 
3643
- #: ../src/Tribe/Validate.php:289
3644
  msgid "%s cannot be a duplicate"
3645
  msgstr "%s mag nie 'n duplikaat wees nie"
3646
 
3647
- #: ../src/Tribe/Validate.php:305
3648
  msgid "%s must be a number or percentage."
3649
  msgstr "%s moet 'n syfer of 'n persentasie wees."
3650
 
3651
- #: ../src/Tribe/Validate.php:359
3652
  msgid "%s must be a number between 0 and 21."
3653
  msgstr "%s moet 'n getal 0 en 21 wees."
3654
 
3655
- #: ../src/Tribe/Validate.php:375
3656
  msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
3657
  msgstr "% s moet bestaan uit letters, getalle, koppeltekens, afkapings, en ruimtes."
3658
 
3659
- #: ../src/Tribe/Validate.php:391
3660
  msgid "%s must consist of letters, spaces, apostrophes, and dashes."
3661
  msgstr "% s moet bestaan ​​uit letters, spasies, afkapings, en strepies."
3662
 
3663
- #: ../src/Tribe/Validate.php:405
3664
  msgid "%s must consist of 5 numbers."
3665
  msgstr "%s moet uit 5 syfers bestaan."
3666
 
3667
- #: ../src/Tribe/Validate.php:419
3668
  msgid "%s must be a phone number."
3669
  msgstr "%s moet 'n telefoon nommer wees."
3670
 
3671
- #: ../src/Tribe/Validate.php:435
3672
  msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
3673
  msgstr "Land lys moet geformateer word met een land per reël in die volgende formaat: <br> VSA, die Verenigde State van Amerika <br> die Verenigde Koninkryk, die Verenigde Koninkryk."
3674
 
3675
- #: ../src/Tribe/View_Helpers.php:26 ../src/Tribe/View_Helpers.php:45
3676
  msgid "Select a Country:"
3677
  msgstr "Kies 'n Land:"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: The Events Calendar\n"
12
 
13
+ #. Description of the plugin/theme
14
+ msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome."
15
+ msgstr ""
16
+
17
+ #. Author of the plugin/theme
18
+ msgid "Modern Tribe, Inc."
19
+ msgstr ""
20
+
21
+ #. Author URI of the plugin/theme
22
+ msgid "http://m.tri.be/1x"
23
+ msgstr ""
24
+
25
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:62
26
+ msgid "<a href=\"%s\">Edit the page slug</a>"
27
+ msgstr ""
28
+
29
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:63
30
+ msgid "Ask the site administrator to edit the page slug"
31
+ msgstr ""
32
+
33
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:68
34
+ msgid "<a href=\"%s\">edit The Events Calendar settings</a>."
35
+ msgstr ""
36
+
37
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:69
38
+ msgid " ask the site administrator set a different Events URL slug."
39
+ msgstr ""
40
+
41
+ #: src/Tribe/Admin/Timezone_Updater.php:77
42
+ msgid "Please wait while timezone data is added to your events."
43
+ msgstr ""
44
+
45
+ #: src/Tribe/Admin/Timezone_Updater.php:78
46
+ msgid "Update complete: timezone data has been added to all events in the database."
47
+ msgstr ""
48
+
49
+ #: src/Tribe/Admin/Timezone_Updater.php:87
50
+ msgid "%d%% complete"
51
+ msgstr ""
52
+
53
+ #: src/Tribe/Admin/Timezone_Updater.php:105
54
+ msgid "A problem stopped the timezone update process from completing. Please refresh and try again."
55
+ msgstr ""
56
+
57
+ #: src/Tribe/Importer/Column_Mapper.php:64
58
+ msgid "Event Currency Symbol"
59
+ msgstr ""
60
+
61
+ #: src/Tribe/Importer/Column_Mapper.php:65
62
+ msgid "Event Currency Position"
63
+ msgstr ""
64
+
65
+ #: src/Tribe/Importer/Column_Mapper.php:67
66
+ msgid "Event Tags"
67
+ msgstr ""
68
+
69
+ #: src/Tribe/Main.php:2241
70
+ msgid "page"
71
+ msgstr ""
72
+
73
+ #: src/Tribe/Main.php:2242
74
+ msgid "event"
75
+ msgstr ""
76
+
77
+ #: src/Tribe/Main.php:2243
78
+ msgid "events"
79
+ msgstr ""
80
+
81
+ #: src/Tribe/Main.php:2244
82
+ msgid "all"
83
+ msgstr ""
84
+
85
+ #: src/Tribe/Settings.php:261
86
+ msgid "Save Changes"
87
+ msgstr ""
88
+
89
+ #: src/Tribe/Template/Day.php:136
90
+ msgid "No matching %1$s listed under %2$s scheduled for <strong>%3$s</strong>. Please try another day."
91
+ msgstr ""
92
+
93
+ #: src/Tribe/Template/Day.php:138
94
+ msgid "No %1$s scheduled for <strong>%2$s</strong>. Please try another day."
95
+ msgstr ""
96
+
97
+ #: src/Tribe/Template/Month.php:287
98
+ msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
99
+ msgstr ""
100
+
101
+ #: src/Tribe/Template_Factory.php:355
102
+ msgid "No results were found for %1$s in or near <strong>\"%2$s\"</strong>."
103
+ msgstr ""
104
+
105
+ #: src/Tribe/Template_Factory.php:357
106
+ msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
107
+ msgstr ""
108
+
109
+ #: src/Tribe/Template_Factory.php:359 src/Tribe/Template_Factory.php:364
110
+ msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
111
+ msgstr ""
112
+
113
+ #: src/admin-views/events-meta-box.php:121
114
+ msgid "Timezone:"
115
+ msgstr ""
116
+
117
+ #: src/admin-views/tickets/attendees.php:103
118
+ msgid "Sold %1$d %2$s"
119
+ msgstr ""
120
+
121
+ #: src/admin-views/tickets/attendees.php:106
122
+ msgid "Sold %1$d of %2$d %3$s"
123
+ msgstr ""
124
+
125
+ #: src/admin-views/tickets/list.php:69
126
+ msgid "Sold %1$d of %2$d"
127
+ msgstr ""
128
+
129
+ #: src/admin-views/tribe-options-general.php:94
130
+ msgid "You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=\"%1$s\">%2$s</a>. In order to edit the slug here, <a href=\"%3$soptions-permalink.php\">enable pretty permalinks</a>."
131
+ msgstr ""
132
+
133
+ #: src/admin-views/tribe-options-help.php:199
134
+ msgid "If you find that you aren't getting the level of service you've come to expect from Modern Tribe, shoot us an email at %1$s or tweet %2$s and tell us why. We'll do what we can to make it right."
135
+ msgstr ""
136
+
137
+ #: src/admin-views/tribe-options-licenses.php:13
138
+ msgid "<p>The license key you received when completing your purchase from %1$s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. <strong>Find your license keys at <a href=\"%2$s\" target=\"_blank\">%3$s</a></strong>.</p> <p>Each paid add-on has its own unique license key. Simply paste the key into its appropriate field on below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message.</p> <p>If you're seeing a red message telling you that your key isn't valid or is out of installs, visit <a href=\"%4$s\" target=\"_blank\">%5$s</a> to manage your installs or renew / upgrade your license.</p><p>Not seeing an update but expecting one? In WordPress, go to <a href=\"%6$s\">Dashboard > Updates</a> and click \"Check Again\".</p>"
139
+ msgstr ""
140
+
141
+ #: src/admin-views/tribe-options-timezones.php:4
142
+ msgid "Enable timezone support"
143
+ msgstr ""
144
+
145
+ #: src/admin-views/tribe-options-timezones.php:6
146
+ msgid "Update Timezone Data"
147
+ msgstr ""
148
+
149
+ #: src/admin-views/tribe-options-timezones.php:7
150
+ msgid "Click this button to update your database and take advantage of additional timezone capabilities. Please <a href=\"%s\" target=\"_blank\">configure WordPress</a> to use the correct timezone before clicking this button!"
151
+ msgstr ""
152
+
153
+ #: src/admin-views/tribe-options-timezones.php:27
154
+ msgid "Timezone Settings"
155
+ msgstr ""
156
+
157
+ #: src/admin-views/tribe-options-timezones.php:35
158
+ msgid "Timezone mode"
159
+ msgstr ""
160
+
161
+ #: src/admin-views/tribe-options-timezones.php:39
162
+ msgid "Use the local timezones for each event"
163
+ msgstr ""
164
+
165
+ #: src/admin-views/tribe-options-timezones.php:40
166
+ msgid "Use the sitewide timezone everywhere"
167
+ msgstr ""
168
+
169
+ #: src/admin-views/tribe-options-timezones.php:45
170
+ msgid "Show timezone"
171
+ msgstr ""
172
+
173
+ #: src/admin-views/tribe-options-timezones.php:46
174
+ msgid "Appends the timezone to the end of event scheduling information &ndash; this can be useful when you have events in numerous different timezones."
175
+ msgstr ""
176
+
177
+ #: src/functions/template-tags/general.php:411
178
+ msgctxt "category list label"
179
+ msgid "%s Category"
180
+ msgid_plural "%s Categories"
181
+ msgstr[0] ""
182
+ msgstr[1] ""
183
+
184
+ #: src/io/csv/admin-views/general.php:48
185
+ msgid "Save Settings"
186
+ msgstr ""
187
+
188
+ #: src/Tribe/Activation_Page.php:38
189
  msgid "Go to plugins page"
190
  msgstr ""
191
 
192
+ #: src/Tribe/Activation_Page.php:38
193
  msgid "Return to Plugins page"
194
  msgstr ""
195
 
196
+ #: src/Tribe/Activation_Page.php:46
197
  msgid "Go to WordPress Updates page"
198
  msgstr ""
199
 
200
+ #: src/Tribe/Activation_Page.php:46
201
  msgid "Return to WordPress Updates"
202
  msgstr ""
203
 
204
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88
205
  msgid "Create New %s"
206
  msgstr ""
207
 
208
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:148
209
  msgid "Add another organizer"
210
  msgstr ""
211
 
212
+ #: src/Tribe/Cost_Utils.php:108
213
  msgctxt "Cost range separator"
214
  msgid " - "
215
  msgstr ""
216
 
217
+ #: src/Tribe/PUE/Checker.php:416
218
  msgid "unknown date"
219
  msgstr ""
220
 
221
+ #: src/Tribe/Support.php:142
222
  msgid "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
223
  msgstr ""
224
 
225
+ #: src/admin-views/tribe-options-help.php:155
226
  msgid "If you're looking for help with The Events Calendar, you've come to the right place. We are committed to helping make your calendar be spectacular... and hope the resources provided below will help get you there."
227
  msgstr ""
228
 
229
+ #: src/admin-views/tribe-options-help.php:209
230
  msgid "Hi! We are Modern Tribe and we are here to help you be awesome. Thanks so much for installing our labor of love!"
231
  msgstr ""
232
 
233
+ #: src/admin-views/tribe-options-help.php:231
234
  msgid "Support Resources To Help You Be Awesome"
235
  msgstr ""
236
 
237
+ #: src/admin-views/tribe-options-licenses.php:17
238
  msgid ""
239
  "<strong> Using our plugins in a multisite network? </strong>\n"
240
  "\t\tPlease note that your license key will be applied to the entire network, not just this site."
241
  msgstr ""
242
 
243
+ #: src/admin-views/tribe-options-licenses.php:20
244
  msgid ""
245
  "Only license fields for <strong>network activated</strong> plugins will be\n"
246
  "\t\tlisted on this screen. "
247
  msgstr ""
248
 
249
+ #: src/Tribe/View_Helpers.php:334
250
  msgid "Louisiana"
251
  msgstr "Louisiana"
252
 
253
+ #: src/Tribe/View_Helpers.php:335
 
 
 
 
254
  msgid "Maine"
255
  msgstr "Maine"
256
 
257
+ #: src/admin-views/tribe-options-help.php:200
258
  msgid "More..."
259
  msgstr "Meer..."
260
 
261
+ #: src/Tribe/View_Helpers.php:336
262
  msgid "Maryland"
263
  msgstr "Maryland"
264
 
265
+ #: src/Tribe/View_Helpers.php:337
266
  msgid "Massachusetts"
267
  msgstr "Massachusetts"
268
 
269
+ #: src/Tribe/View_Helpers.php:338
270
  msgid "Michigan"
271
  msgstr "Michigan"
272
 
273
+ #: src/admin-views/tribe-options-help.php:241
274
  msgid "Forums: Because Everyone Needs A Buddy"
275
  msgstr "Forum: Omdat almal benodig 'n hulpmaat."
276
 
277
+ #: src/Tribe/View_Helpers.php:339
278
  msgid "Minnesota"
279
  msgstr "Minnesota"
280
 
281
+ #: src/admin-views/tribe-options-help.php:251
282
  msgid "Not getting help?"
283
  msgstr "het jy nog hulp nodig?"
284
 
285
+ #: src/Tribe/View_Helpers.php:340
286
  msgid "Mississippi"
287
  msgstr "Mississippi"
288
 
289
+ #: src/admin-views/tribe-options-help.php:277
290
  msgid "Latest Version:"
291
  msgstr "Nuuster Weergawe"
292
 
293
+ #: src/Tribe/View_Helpers.php:341
294
  msgid "Missouri"
295
  msgstr "Missouri"
296
 
297
+ #: src/admin-views/tribe-options-help.php:279
298
  msgid "Author:"
299
  msgstr "Skrywer:"
300
 
301
+ #: src/Tribe/View_Helpers.php:342
302
  msgid "Montana"
303
  msgstr "Montana"
304
 
305
+ #: src/admin-views/tribe-options-help.php:279
306
  msgid "Modern Tribe Inc"
307
  msgstr "Modern Tribe Inc"
308
 
309
+ #: src/Tribe/View_Helpers.php:343
310
  msgid "Nebraska"
311
  msgstr "Nebraska"
312
 
313
+ #: src/admin-views/tribe-options-help.php:284
314
  msgid "Requires:"
315
  msgstr "Benodig:"
316
 
317
+ #: src/Tribe/View_Helpers.php:344
318
  msgid "Nevada"
319
  msgstr "Nevada"
320
 
321
+ #: src/admin-views/tribe-options-help.php:284
322
  msgid "WordPress "
323
  msgstr "WordPress "
324
 
325
+ #: src/Tribe/View_Helpers.php:345
326
  msgid "New Hampshire"
327
  msgstr "New Hampshire"
328
 
329
+ #: src/admin-views/tribe-options-help.php:295
330
  msgid "Wordpress.org Plugin Page"
331
  msgstr "Wordpress.org Plugin Page"
332
 
333
+ #: src/Tribe/View_Helpers.php:346
334
  msgid "New Jersey"
335
  msgstr "New Jersey"
336
 
337
+ #: src/admin-views/tribe-options-help.php:301
338
  msgid "Average Rating"
339
  msgstr "Algehele Waardering"
340
 
341
+ #: src/Tribe/View_Helpers.php:347
342
  msgid "New Mexico"
343
  msgstr "New Mexico"
344
 
345
+ #: src/admin-views/tribe-options-help.php:307
346
  msgid "Based on %d rating"
347
  msgid_plural "Based on %d ratings"
348
  msgstr[0] ""
349
  msgstr[1] ""
350
 
351
+ #: src/Tribe/View_Helpers.php:348
352
  msgid "New York"
353
  msgstr "New York"
354
 
355
+ #: src/admin-views/tribe-options-help.php:317
356
  msgid "Give us 5 stars!"
357
  msgstr "Geeons 5 stêrre!"
358
 
359
+ #: src/Tribe/View_Helpers.php:349
360
  msgid "North Carolina"
361
  msgstr "North Carolina"
362
 
363
+ #: src/admin-views/tribe-options-help.php:321
364
  msgid "Premium Add-Ons"
365
  msgstr "Premium Toevoegings"
366
 
367
+ #: src/Tribe/View_Helpers.php:350
368
  msgid "North Dakota"
369
  msgstr "North Dakota"
370
 
371
+ #: src/admin-views/tribe-options-help.php:330
372
  msgid "(Coming Soon!)"
373
  msgstr "(Kom Binnekort!)"
374
 
375
+ #: src/Tribe/View_Helpers.php:351
376
  msgid "Ohio"
377
  msgstr "Ohio"
378
 
379
+ #: src/admin-views/tribe-options-help.php:340
380
  msgid "News and Tutorials"
381
  msgstr "Nuus en Stap-vir-stap Voorbeelde"
382
 
383
+ #: src/Tribe/View_Helpers.php:352
384
  msgid "Oklahoma"
385
  msgstr "Oklahoma"
386
 
387
+ #: src/admin-views/tribe-options-network.php:15
388
  msgid "Network Settings"
389
  msgstr "Netwerk Verstellings"
390
 
391
+ #: src/Tribe/View_Helpers.php:353
392
  msgid "Oregon"
393
  msgstr "Oregon"
394
 
395
+ #: src/admin-views/tribe-options-network.php:19
396
  msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
397
  msgstr "Dit is waar al die wêreldwye netwerk instellings vir Modern Tribe's The Events Calendar kan verander word."
398
 
399
+ #: src/Tribe/View_Helpers.php:354
400
  msgid "Pennsylvania"
401
  msgstr "Pennsylvania"
402
 
403
+ #: src/admin-views/tribe-options-network.php:27
404
  msgid "Hide the following settings tabs on every site:"
405
  msgstr "Steek die volgende instellings oortjies op elke webtuiste weg:"
406
 
407
+ #: src/Tribe/View_Helpers.php:355
408
  msgid "Rhode Island"
409
  msgstr "Rhode Island"
410
 
411
+ #: src/admin-views/tickets/attendees.php:46
412
+ #: src/admin-views/venue-meta-box.php:34
413
+ #: src/functions/advanced-functions/meta_registration.php:176
414
  msgid "Address:"
415
  msgstr "Adres:"
416
 
417
+ #: src/Tribe/View_Helpers.php:356
418
  msgid "South Carolina"
419
  msgstr "South Carolina"
420
 
421
+ #: src/admin-views/venue-meta-box.php:41
422
  msgid "City:"
423
  msgstr "Stad / Dorp:"
424
 
425
+ #: src/Tribe/View_Helpers.php:357
426
  msgid "South Dakota"
427
  msgstr "South Dakota"
428
 
429
+ #: src/admin-views/venue-meta-box.php:48
430
  msgid "Country:"
431
  msgstr "Land:"
432
 
433
+ #: src/Tribe/View_Helpers.php:358
434
  msgid "Tennessee"
435
  msgstr "Tennessee"
436
 
437
+ #: src/admin-views/venue-meta-box.php:88
438
  msgid "State or Province:"
439
  msgstr "Provinsie:"
440
 
441
+ #: src/Tribe/View_Helpers.php:359
442
  msgid "Texas"
443
  msgstr "Texas"
444
 
445
+ #: src/admin-views/venue-meta-box.php:92
446
  msgid "Select a State:"
447
  msgstr "Skies 'n Provinsie:"
448
 
449
+ #: src/Tribe/View_Helpers.php:360
450
  msgid "Utah"
451
  msgstr "Utah"
452
 
453
+ #: src/admin-views/venue-meta-box.php:105
454
  msgid "Postal Code:"
455
  msgstr "Poskode:"
456
 
457
+ #: src/Tribe/View_Helpers.php:361
458
  msgid "Vermont"
459
  msgstr "Vermont"
460
 
461
+ #: src/admin-views/venue-meta-box.php:137
462
+ #: src/admin-views/venue-meta-box.php:159
463
  msgid "Show Google Map:"
464
  msgstr "Wys Google Kaart:"
465
 
466
+ #: src/Tribe/View_Helpers.php:362
467
  msgid "Virginia"
468
  msgstr "Virginia"
469
 
470
+ #: src/admin-views/venue-meta-box.php:147
471
+ #: src/admin-views/venue-meta-box.php:169
472
  msgid "Show Google Maps Link:"
473
  msgstr "Wys Google Kaart Skakel:"
474
 
475
+ #: src/Tribe/View_Helpers.php:363
476
  msgid "Washington"
477
  msgstr "Washington"
478
 
479
+ #: src/admin-views/widget-admin-list.php:13
480
  msgid "Title:"
481
  msgstr "Titel:"
482
 
483
+ #: src/Tribe/View_Helpers.php:364
484
  msgid "West Virginia"
485
  msgstr "West Virginia"
486
 
487
+ #: src/admin-views/widget-admin-list.php:18
488
  msgid "Show:"
489
  msgstr "Wys:"
490
 
491
+ #: src/Tribe/View_Helpers.php:365
492
  msgid "Wisconsin"
493
  msgstr "Wisconsin"
494
 
495
+ #: src/admin-views/widget-admin-list.php:28
496
  msgid "Show widget only if there are upcoming events:"
497
  msgstr "Wys widget slegs indien daar is opkomende gebeure:"
498
 
499
+ #: src/Tribe/View_Helpers.php:366
500
  msgid "Wyoming"
501
  msgstr "Wyoming"
502
 
503
+ #: src/functions/advanced-functions/meta_registration.php:16
504
+ #: src/views/modules/meta/details.php:30
505
  msgid "Details"
506
  msgstr "Besondehede"
507
 
508
+ #: src/Tribe/iCal.php:28
509
  msgctxt "feed link"
510
  msgid "&raquo;"
511
  msgstr ""
512
 
513
+ #: src/functions/advanced-functions/meta_registration.php:80
514
  msgid "Event Tags:"
515
  msgstr "Gebeurtenis Etiket"
516
 
517
+ #: src/Tribe/iCal.php:29
518
  msgid "%1$s %2$s iCal Feed"
519
  msgstr ""
520
 
521
+ #: src/functions/advanced-functions/meta_registration.php:112
522
  msgid "Origin:"
523
  msgstr "Oorsprong:"
524
 
525
+ #: src/Tribe/iCal.php:75
526
  msgid "Add to Google Calendar"
527
  msgstr ""
528
 
529
+ #: src/functions/advanced-functions/meta_registration.php:286
530
  msgid "%s:"
531
  msgstr ""
532
 
533
+ #: src/Tribe/iCal.php:75
534
  msgid "Google Calendar"
535
  msgstr ""
536
 
537
+ #: src/functions/template-tags/date.php:261
538
  msgid "The function needs to be passed an $event or used in the loop."
539
  msgstr ""
540
 
541
+ #: src/Tribe/iCal.php:76
542
  msgid "Download .ics file"
543
  msgstr ""
544
 
545
+ #: src/functions/template-tags/day.php:107
546
  msgid "<span>&laquo;</span> Previous Day"
547
  msgstr ""
548
 
549
+ #: src/Tribe/iCal.php:76
550
  msgid "iCal Export"
551
  msgstr ""
552
 
553
+ #: src/functions/template-tags/day.php:109
554
  msgid "Next Day <span>&raquo;</span>"
555
  msgstr ""
556
 
557
+ #: src/Tribe/iCal.php:106
558
  msgid "Month's %s"
559
  msgstr ""
560
 
561
+ #: src/functions/template-tags/day.php:111
562
  msgid "Yesterday"
563
  msgstr ""
564
 
565
+ #: src/Tribe/iCal.php:109
566
  msgid "Week's %s"
567
  msgstr ""
568
 
569
+ #: src/functions/template-tags/day.php:113
570
  msgid "Tomorrow"
571
  msgstr ""
572
 
573
+ #: src/Tribe/iCal.php:112
574
  msgid "Day's %s"
575
  msgstr ""
576
 
577
+ #: src/functions/template-tags/deprecated.php:1283
578
  msgid "Category"
579
  msgstr "Kategorie:"
580
 
581
+ #: src/Tribe/iCal.php:115
582
  msgid "Listed %s"
583
  msgstr ""
584
 
585
+ #: src/functions/template-tags/general.php:450
586
  msgid "Tags:"
587
  msgstr "Etikette:"
588
 
589
+ #: src/Tribe/iCal.php:120
590
  msgid "Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps"
591
  msgstr ""
592
 
593
+ #: src/functions/template-tags/general.php:562
594
  msgid "Loading %s"
595
  msgstr ""
596
 
597
+ #: src/admin-views/admin-update-message.php:9
598
+ #: src/admin-views/admin-welcome-message.php:11
599
  msgid "You are running Version %s and deserve a hug :-)"
600
  msgstr ""
601
 
602
+ #: src/Tribe/Cost_Utils.php:123
603
  msgid "Free"
604
  msgstr "Gratis"
605
 
606
+ #: src/admin-views/admin-update-message.php:32
607
  msgid "Keep the Core Plugin <strong>FREE</strong>!"
608
  msgstr ""
609
 
610
+ #: src/functions/template-tags/general.php:1488
611
  msgid "Calendar powered by %sThe Events Calendar%s"
612
  msgstr "Hierdie Kalender word aangedrewe deur %sThe Events Calendar%s"
613
 
614
+ #: src/admin-views/admin-update-message.php:33
615
  msgid "Every time you rate <strong>5 stars</strong>, a fairy is born. Okay maybe not, but more happy users mean more contributions and help on the forums. The community NEEDS your voice."
616
  msgstr ""
617
 
618
+ #: src/functions/template-tags/loop.php:131
619
  msgid "Upcoming %s"
620
  msgstr ""
621
 
622
+ #: src/admin-views/admin-update-message.php:34
623
+ #: src/admin-views/admin-welcome-message.php:22
624
  msgid "Rate It"
625
  msgstr ""
626
 
627
+ #: src/functions/template-tags/loop.php:145
628
  msgid "%1$s for %2$s - %3$s"
629
  msgstr ""
630
 
631
+ #: src/admin-views/admin-update-message.php:37
632
  msgid "PSST... Want a Discount?"
633
  msgstr ""
634
 
635
+ #: src/functions/template-tags/loop.php:147
636
  msgid "Past %s"
637
  msgstr ""
638
 
639
+ #: src/admin-views/admin-update-message.php:38
640
  msgid "We send out discounts to our core users via our newsletter."
641
  msgstr ""
642
 
643
+ #: src/functions/template-tags/loop.php:152
644
+ #: src/functions/template-tags/loop.php:161
645
  msgid "%1$s for %2$s"
646
  msgstr ""
647
 
648
+ #: src/admin-views/admin-update-message.php:43
649
+ #: src/admin-views/admin-welcome-message.php:31
650
  msgid "Sign Up"
651
  msgstr ""
652
 
653
+ #: src/functions/template-tags/options.php:20
654
  msgid "Your current Events URL is %s"
655
  msgstr "Jou huidige gebeurtenis URL% s"
656
 
657
+ #: src/admin-views/admin-update-message.php:49
658
  msgid "Looking for Something Special?"
659
  msgstr ""
660
 
661
+ #: src/functions/template-tags/options.php:29
662
  msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
663
  msgstr "Jy <strong> kan nie </ strong> dieselfde afkorting gebruik as hierbo. Die bogenoemde moet verkieslik in meervoud wees, en hierdie is in enkelvoud <br /> Jou enkele gebeurtenis URL is soos:.%s"
664
 
665
+ #: src/admin-views/admin-update-message.php:51
666
  msgid "Pro"
667
  msgstr ""
668
 
669
+ #: src/io/csv/admin-views/columns.php:22
670
  msgid "Column Mapping: %s"
671
  msgstr "Kolom Uitleg:% s"
672
 
673
+ #: src/admin-views/admin-update-message.php:53
674
  msgid "Community Events"
675
  msgstr ""
676
 
677
+ #: src/io/csv/admin-views/columns.php:27
678
  msgid "Columns have been mapped based on your last import. Please ensure the selected fields match the columns in your CSV file."
679
  msgstr ""
680
 
681
+ #: src/admin-views/admin-update-message.php:54
682
  msgid "Filters"
683
  msgstr ""
684
 
685
+ #: src/io/csv/admin-views/columns.php:32
686
  msgid "Column Headings"
687
  msgstr "Kolomopskrifte"
688
 
689
+ #: src/admin-views/admin-update-message.php:55
690
  msgid "Facebook"
691
  msgstr ""
692
 
693
+ #: src/io/csv/admin-views/columns.php:33
694
  msgid "Event Fields"
695
  msgstr "Gebeurtenisvelde"
696
 
697
+ #: src/admin-views/admin-update-message.php:58
698
+ #: src/admin-views/admin-welcome-message.php:53
699
  msgid "News For Events Users"
700
  msgstr ""
701
 
702
+ #: src/io/csv/admin-views/columns.php:44
703
  msgid "Perform Import"
704
  msgstr "Bemagtig Invoer"
705
 
706
+ #: src/admin-views/admin-welcome-message.php:19
707
  msgid "Keep The Events Calendar Core FREE"
708
  msgstr ""
709
 
710
+ #: src/io/csv/admin-views/general.php:10
711
  msgid "The Events Calendar: Import"
712
  msgstr ""
713
 
714
+ #: src/admin-views/admin-welcome-message.php:20
715
  msgid "5 star ratings help us bring TEC to more users. More happy users mean more support, more features, and more of everything you know and love about The Events Calendar. We couldn't do this without your support."
716
  msgstr ""
717
 
718
+ #: src/io/csv/admin-views/general.php:12
719
  msgid "Instructions"
720
  msgstr ""
721
 
722
+ #: src/admin-views/admin-welcome-message.php:21
723
  msgid "Rate it five stars today!"
724
  msgstr ""
725
 
726
+ #: src/io/csv/admin-views/general.php:14
727
  msgid "To import events, first select a %sDefault Import Event Status%s below to assign to your imported events."
728
  msgstr ""
729
 
730
+ #: src/admin-views/admin-welcome-message.php:25
731
  msgid "Newsletter Signup"
732
  msgstr ""
733
 
734
+ #: src/io/csv/admin-views/general.php:17
735
  msgid "Once your setting is saved, move to the applicable Import tab to select import specific criteria."
736
  msgstr ""
737
 
738
+ #: src/admin-views/admin-welcome-message.php:26
739
  msgid "Stay in touch with The Events Calendar Pro. We send out periodic updates, key developer notices, and even the occasional discount."
740
  msgstr ""
741
 
742
+ #: src/io/csv/admin-views/general.php:24
743
  msgid "Import Settings"
744
  msgstr ""
745
 
746
+ #: src/admin-views/admin-welcome-message.php:40
747
+ #: src/admin-views/tribe-options-help.php:221
748
  msgid "Getting Started"
749
  msgstr "Spring Weg"
750
 
751
+ #: src/io/csv/admin-views/general.php:27
752
  msgid "Default imported event status:"
753
  msgstr ""
754
 
755
+ #: src/admin-views/admin-welcome-message.php:41
756
  msgid "Check out the New User Primer &amp; Tutorials"
757
  msgstr ""
758
 
759
+ #: src/io/csv/admin-views/general.php:30
760
  msgid "Published"
761
  msgstr ""
762
 
763
+ #: src/admin-views/admin-welcome-message.php:43
764
  msgid "Looking for More Features?"
765
  msgstr ""
766
 
767
+ #: src/io/csv/admin-views/general.php:31
768
  msgid "Pending"
769
  msgstr ""
770
 
771
+ #: src/admin-views/admin-welcome-message.php:44
772
  msgid "Addons for Community, Tickets, Filters, Facebook and more."
773
  msgstr ""
774
 
775
+ #: src/io/csv/admin-views/general.php:32
776
  msgid "Draft"
777
  msgstr ""
778
 
779
+ #: src/admin-views/admin-welcome-message.php:46
780
  msgid "Support Resources"
781
  msgstr ""
782
 
783
+ #: src/io/csv/admin-views/header.php:17
784
  msgid "Events Import"
785
  msgstr ""
786
 
787
+ #: src/admin-views/admin-welcome-message.php:47
788
  msgid "FAQs, Documentation, Tutorials and Forums"
789
  msgstr ""
790
 
791
+ #: src/io/csv/admin-views/import.php:17
792
  msgid "Import Instructions"
793
  msgstr "Invoer Instruksies"
794
 
795
+ #: src/admin-views/admin-welcome-message.php:50
796
  msgid "Release Notes"
797
  msgstr ""
798
 
799
+ #: src/io/csv/admin-views/import.php:20
800
  msgid "If your events have Organizers or Venues, please import those first."
801
  msgstr "As jou gebeure het organiseerders of plekke het, voer dit asseblief eerste in."
802
 
803
+ #: src/admin-views/admin-welcome-message.php:51
804
  msgid "Get the Skinny on the Latest Updates"
805
  msgstr ""
806
 
807
+ #: src/io/csv/admin-views/import.php:21
808
  msgid "To import organizers or venues:"
809
  msgstr "Om organiseerders of Plek in te voer."
810
 
811
+ #: src/admin-views/admin-welcome-message.php:54
812
  msgid "Product Releases, Tutorials and Community Activity"
813
  msgstr ""
814
 
815
+ #: src/io/csv/admin-views/import.php:23
816
  msgid "Select the appropriate import type."
817
  msgstr "Kies die toepaslike invoer tipe."
818
 
819
+ #: src/admin-views/app-shop.php:4
820
  msgid "Tribe Event Add-Ons"
821
  msgstr "Tribe Event Byvoegings"
822
 
823
+ #: src/io/csv/admin-views/import.php:24 src/io/csv/admin-views/import.php:30
 
824
  msgid "Upload a CSV file with one record on each line. The first line may contain column names (check the box below)."
825
  msgstr "Laai 'n CSV-lêer met 'n rekord van elke lyn. Die eerste reël mag kolom name (merk die boks hieronder) bevat."
826
 
827
+ #: src/admin-views/app-shop.php:54
828
  msgid "Version"
829
  msgstr "Weergawe"
830
 
831
+ #: src/io/csv/admin-views/import.php:25
832
  msgid "One column in your CSV should have the Organizer/Venue name. All other fields are optional."
833
  msgstr "Een kolom in jou CSV moet die organiseerder / Plek naam wees. Alle ander velde is opsioneel."
834
 
835
+ #: src/admin-views/app-shop.php:57
836
  msgid "Last Update"
837
  msgstr "Laaste Opgradering"
838
 
839
+ #: src/io/csv/admin-views/import.php:26 src/io/csv/admin-views/import.php:32
 
840
  msgid "After you upload your file, you'll have the opportunity to indicate how the columns in your CSV map to fields in The Events Calendar."
841
  msgstr "Nadat jy jou lêer opgelaai het, sal jy die geleentheid kry om die kolomme in jou CSV kaart aan te dui velde in The Events Calendar."
842
 
843
+ #: src/admin-views/event-sidebar-options.php:13
844
  msgid "Hide From %s Listings"
845
  msgstr ""
846
 
847
+ #: src/io/csv/admin-views/import.php:28
848
  msgid "After importing your Organizers and Venues, import your Events:"
849
  msgstr "Na die invoer van jou Organiseerders en plekke, voer van jou Gebeure in:"
850
 
851
+ #: src/admin-views/event-sidebar-options.php:15
852
  msgid "Sticky in Month View"
853
  msgstr ""
854
 
855
+ #: src/io/csv/admin-views/import.php:31
856
  msgid "One column in your CSV should have the Event title. Another should have the Event start date. All other fields are optional."
857
  msgstr "Een kolom in jou CSV moet die Gebeurtenis titel wees. Nog een moet die Gebeurtenis begin datum wees. Alle ander velde is opsioneel."
858
 
859
+ #: src/admin-views/event-sidebar-options.php:16
860
  msgid "When events are sticky in month view, they'll display first in the list of events shown within a given day block."
861
  msgstr ""
862
 
863
+ #: src/io/csv/admin-views/import.php:36
864
  msgid "Questions? <a href=\"%s\">Watch the video</a>."
865
  msgstr "Vrie? <a href=\"%s\">Kyk na hierdie video</a>."
866
 
867
+ #: src/admin-views/events-meta-box.php:60
868
  msgid "Time &amp; Date"
869
  msgstr ""
870
 
871
+ #: src/io/csv/admin-views/import.php:43
872
  msgid "Import Type:"
873
  msgstr "Invoer Tipe"
874
 
875
+ #: src/admin-views/events-meta-box.php:67
876
  msgid "You have changed the recurrence rules of this %1$s. Saving the %1$s will update all future %2$s. If you did not mean to change all %2$s, then please refresh the page."
877
  msgstr ""
878
 
879
+ #: src/io/csv/admin-views/import.php:55
880
  msgid "CSV File:"
881
  msgstr "CSV Dokument:"
882
 
883
+ #: src/admin-views/events-meta-box.php:70
884
  msgid "All Day %s:"
885
  msgstr ""
886
 
887
+ #: src/io/csv/admin-views/import.php:59
888
  msgid "Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file is UTF-8 encoded? Make sure to specify the character encoding when you save the file, or pass it through a <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>conversion tool</a>."
889
  msgstr "Laai 'n korrekte formaat, UTF-8-kodering CSV. Nie seker of jou lêer UTF-8-kodering? Maak seker dat die karakter enkodering spesifiseer wanneer u die lêer stoor, of dit slaag deur 'n <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'> omskakeling instrument</ a>."
890
 
891
+ #: src/admin-views/events-meta-box.php:76
892
  msgid "Start Date &amp; Time:"
893
  msgstr "Begin Datum &amp; Tyd"
894
 
895
+ #: src/io/csv/admin-views/import.php:67
896
  msgid "This file has column names in the first row"
897
  msgstr "Hierdie lêer het kolom name in die eerste ry"
898
 
899
+ #: src/admin-views/events-meta-box.php:80
900
+ #: src/admin-views/events-meta-box.php:101
901
  msgid "YYYY-MM-DD"
902
  msgstr "JJJJ-MM-DD"
903
 
904
+ #: src/io/csv/admin-views/import.php:78
905
  msgid "Import CSV File"
906
  msgstr "Voer CSV Dokument in!"
907
 
908
+ #: src/admin-views/events-meta-box.php:98
909
  msgid "End Date &amp; Time:"
910
  msgstr "Einde Datum &amp; Tyd:"
911
 
912
+ #: src/io/csv/admin-views/result.php:15
913
  msgid "Import Result"
914
  msgstr "Voer Resultaat In"
915
 
916
+ #: src/admin-views/events-meta-box.php:147
917
  msgid "Location"
918
  msgstr ""
919
 
920
+ #: src/io/csv/admin-views/result.php:17
921
  msgid "Import complete!"
922
  msgstr "Invoer Afgehandel!"
923
 
924
+ #: src/admin-views/events-meta-box.php:195
925
  msgid "%s Website"
926
  msgstr ""
927
 
928
+ #: src/io/csv/admin-views/result.php:19
929
  msgid "Inserted: %d"
930
  msgstr "Ingevoeg:% d"
931
 
932
+ #: src/admin-views/events-meta-box.php:198
933
  msgid "URL:"
934
  msgstr "Web Adres"
935
 
936
+ #: src/io/csv/admin-views/result.php:20
937
  msgid "Updated: %d"
938
  msgstr "Opgedateer:% d"
939
 
940
+ #: src/admin-views/events-meta-box.php:229
941
  msgid "%s Cost"
942
  msgstr ""
943
 
944
+ #: src/io/csv/admin-views/result.php:21
945
  msgid "Skipped: %d"
946
  msgstr "Oorgeslaan:% d"
947
 
948
+ #: src/admin-views/events-meta-box.php:232
949
  msgid "Currency Symbol:"
950
  msgstr "Geldeenheid Simbool"
951
 
952
+ #: src/io/csv/admin-views/result.php:25
953
  msgid "The import statistics above have the following meaning:"
954
  msgstr "Die invoer statistieke hierbo het die volgende betekenis:"
955
 
956
+ #: src/admin-views/events-meta-box.php:247
957
  msgctxt "Currency symbol position"
958
  msgid "Before cost"
959
  msgstr ""
960
 
961
+ #: src/io/csv/admin-views/result.php:26
962
  msgid "<ol><li><strong>Inserted:</strong> A new item was inserted successfully.</li><li><strong>Updated:</strong> An item was found with the same name and/or start date. The existing item was updated with the new value from the file.</li><li><strong>Skipped:</strong> A row was found in the CSV file that could not be imported. Please see below for the invalid rows.</li></ol>"
963
  msgstr "<ol> <li> Plaas: </ strong> 'n nuwe item is suksesvol ingevoeg </ li> <li> Opdateer:. </ strong> 'n item is gevind met dieselfde naam en / of begin datum. Die bestaande item is opgedateer met die nuwe waarde van die lêer </ li> <li> Oorgeslaan. </ Strong> 'n ry in die CSV-lêer wat nie ingevoer kon word nie. Sien asseblief hieronder vir die ongeldig rye. </ Li> </ ol>"
964
 
965
+ #: src/admin-views/events-meta-box.php:250
966
  msgctxt "Currency symbol position"
967
  msgid "After cost"
968
  msgstr ""
969
 
970
+ #: src/io/csv/admin-views/result.php:29
971
  msgid "Skipped row numbers: %s"
972
  msgstr "Ry getalle wat oorgeslaan is:% s"
973
 
974
+ #: src/admin-views/events-meta-box.php:255
975
+ #: src/functions/advanced-functions/meta_registration.php:48
976
+ #: src/views/modules/meta/details.php:100
977
  msgid "Cost:"
978
  msgstr "Koste:"
979
 
980
+ #: src/admin-views/events-meta-box.php:263
981
  msgid "Enter a 0 for %s that are free or leave blank to hide the field."
982
  msgstr ""
983
 
984
+ #: src/admin-views/new-organizer-meta-section.php:15
985
+ #: src/admin-views/organizer-meta-box.php:24
986
+ #: src/admin-views/venue-meta-box.php:25
987
  msgid "%s Name:"
988
  msgstr ""
989
 
990
+ #: src/views/day/nav.php:16
991
  msgid "Day Navigation"
992
  msgstr ""
993
 
994
+ #: src/admin-views/new-organizer-meta-section.php:21
995
+ #: src/admin-views/organizer-meta-box.php:31
996
+ #: src/admin-views/tickets/attendees.php:54
997
+ #: src/admin-views/venue-meta-box.php:112
998
+ #: src/functions/advanced-functions/meta_registration.php:159
999
+ #: src/functions/advanced-functions/meta_registration.php:238
1000
+ #: src/views/modules/meta/organizer.php:41 src/views/modules/meta/venue.php:40
 
1001
  msgid "Phone:"
1002
  msgstr "Telefoon:"
1003
 
1004
+ #: src/views/day/single-event.php:66 src/views/list/single-event.php:70
1005
  msgid "Find out more"
1006
  msgstr "Vind meer uit"
1007
 
1008
+ #: src/admin-views/new-organizer-meta-section.php:27
1009
+ #: src/admin-views/organizer-meta-box.php:37
1010
+ #: src/admin-views/tickets/attendees.php:63
1011
+ #: src/admin-views/venue-meta-box.php:119
1012
+ #: src/functions/advanced-functions/meta_registration.php:96
1013
+ #: src/functions/advanced-functions/meta_registration.php:191
1014
+ #: src/functions/advanced-functions/meta_registration.php:270
1015
+ #: src/views/modules/meta/details.php:125
1016
+ #: src/views/modules/meta/organizer.php:63 src/views/modules/meta/venue.php:45
 
1017
  msgid "Website:"
1018
  msgstr "Webtuiste:"
1019
 
1020
+ #: src/views/list/nav.php:19
1021
  msgid "%s List Navigation"
1022
  msgstr ""
1023
 
1024
+ #: src/admin-views/new-organizer-meta-section.php:35
1025
+ #: src/admin-views/organizer-meta-box.php:43
1026
+ #: src/functions/advanced-functions/meta_registration.php:254
1027
+ #: src/views/modules/meta/organizer.php:52
1028
  msgid "Email:"
1029
  msgstr "E-pos:"
1030
 
1031
+ #: src/views/list/nav.php:25
1032
  msgid "<span>&laquo;</span> Previous %s"
1033
  msgstr ""
1034
 
1035
+ #: src/admin-views/new-organizer-meta-section.php:39
1036
+ #: src/admin-views/organizer-meta-box.php:44
1037
  msgid "You may want to consider <a href=\"http://wordpress.org/plugins/tags/obfuscate\">obfuscating</a> any e-mail address published on your site to best avoid it getting harvested by spammers."
1038
  msgstr "Wil jy dalk 'n e-pos adres wat op jou werf verskyn teen gemorspos <a href=\"http://wordpress.org/plugins/tags/obfuscate\"> beskerm? </ a>."
1039
 
1040
+ #: src/views/list/nav.php:32
1041
  msgid "Next %s <span>&raquo;</span>"
1042
  msgstr ""
1043
 
1044
+ #: src/admin-views/new-organizer-meta-section.php:69
1045
+ #: src/admin-views/organizer-meta-box.php:75
1046
+ #: src/admin-views/venue-meta-box.php:193
1047
  msgid "%s Name Already Exists"
1048
  msgstr ""
1049
 
1050
+ #: src/views/modules/bar.php:30 src/views/modules/bar.php:61
1051
  msgid "Find %s"
1052
  msgstr ""
1053
 
1054
+ #: src/admin-views/tickets/attendees.php:17
1055
  msgid "Event Summary"
1056
  msgstr "Gebeurtenis Opsomming"
1057
 
1058
+ #: src/views/modules/bar.php:37
1059
  msgid "Event Views Navigation"
1060
  msgstr "Gebeurtenis Aansig Navigasie"
1061
 
1062
+ #: src/admin-views/tickets/attendees.php:26
1063
  msgid "Event Details"
1064
  msgstr "Gebeurtenis Besonderhede"
1065
 
1066
+ #: src/views/modules/bar.php:38
1067
  msgid "View As"
1068
  msgstr "Kyk na as"
1069
 
1070
+ #: src/admin-views/tickets/attendees.php:28
1071
  msgid "Start Date / Time:"
1072
  msgstr "Begin Datum / Tyd"
1073
 
1074
+ #: src/views/modules/meta/details.php:119
1075
  msgid "%s Tags:"
1076
  msgstr ""
1077
 
1078
+ #: src/admin-views/tickets/attendees.php:32
1079
  msgid "End Date / Time:"
1080
  msgstr "Eindig datum / Tyd"
1081
 
1082
+ #: src/functions/template-tags/general.php:1312
1083
  msgid "%s for"
1084
  msgstr ""
1085
 
1086
+ #: src/admin-views/tickets/attendees.php:82
1087
  msgid "Ticket Sales"
1088
  msgstr "Kaartjie Verkope"
1089
 
1090
+ #: src/functions/template-tags/general.php:1311
1091
  msgid "Find out more »"
1092
  msgstr ""
1093
 
1094
+ #: src/admin-views/tickets/attendees.php:99
1095
  msgid "(%d awaiting review)"
1096
  msgid_plural "(%d awaiting review)"
1097
  msgstr[0] ""
1098
  msgstr[1] ""
1099
 
1100
+ #: src/views/month/nav.php:18
1101
  msgid "Calendar Month Navigation"
1102
  msgstr "Kalender Maand Navigasie"
1103
 
1104
+ #: src/views/month/single-day.php:43
 
 
 
 
1105
  msgid "View 1 %1$s"
1106
  msgid_plural "View All %2$s %3$s"
1107
  msgstr[0] ""
1108
  msgstr[1] ""
1109
 
1110
+ #: src/views/single-event.php:27
 
 
 
 
1111
  msgid "&laquo; All %s"
1112
  msgstr ""
1113
 
1114
+ #: src/admin-views/tickets/attendees.php:127
1115
  msgid "Tickets sold:"
1116
  msgstr "Kaartjies Verkoop"
1117
 
1118
+ #: src/views/single-event.php:46 src/views/single-event.php:79
1119
  msgid "%s Navigation"
1120
  msgstr ""
1121
 
1122
+ #: src/admin-views/tickets/attendees.php:136
1123
  msgid "Finalized:"
1124
  msgstr ""
1125
 
1126
+ #: src/views/tickets/attendees-email.php:24
1127
  msgid "Attendee List"
1128
  msgstr "beskoerslys"
1129
 
1130
+ #: src/admin-views/tickets/attendees.php:139
1131
  msgid "Awaiting review:"
1132
  msgstr ""
1133
 
1134
+ #: src/views/tickets/email.php:26
1135
  msgid "Your tickets"
1136
  msgstr "Jou Kaartjies"
1137
 
1138
+ #: src/admin-views/tickets/attendees.php:148
1139
  msgid "Checked in:"
1140
  msgstr "Aangemeld:"
1141
 
1142
+ #: src/views/tickets/email.php:309
1143
  msgid "Ticket Type"
1144
  msgstr "Kaartjie Tipe"
1145
 
1146
+ #: src/admin-views/tickets/attendees.php:170
1147
  msgid "Send the attendee list by email"
1148
  msgstr "Stuur besoekerslys per e-pos"
1149
 
1150
+ #: src/views/tickets/email.php:313
1151
  msgid "Purchaser"
1152
  msgstr "Aankoper"
1153
 
1154
+ #: src/admin-views/tickets/attendees.php:174
1155
  msgid "Select a User:"
1156
  msgstr "Kies 'n Gebruker:"
1157
 
1158
+ #: src/views/widgets/list-widget.php:65
1159
  msgid "View All %s"
1160
  msgstr ""
1161
 
1162
+ #: src/admin-views/tickets/attendees.php:179
1163
  msgid "Select..."
1164
  msgstr "Kies..."
1165
 
1166
+ #: src/views/widgets/list-widget.php:71
1167
  msgid "There are no upcoming %s at this time."
1168
  msgstr ""
1169
 
1170
+ #: src/admin-views/tickets/attendees.php:184
1171
  msgid "or"
1172
  msgstr "of"
1173
 
1174
+ #: src/admin-views/tickets/attendees.php:186
1175
  msgid "Email Address:"
1176
  msgstr "E-pos Adres"
1177
 
1178
+ #: src/admin-views/tickets/list.php:21
1179
  msgid "Edit"
1180
  msgstr "Wysig"
1181
 
1182
+ #: src/admin-views/tickets/list.php:24
1183
  msgid "Edit in %s"
1184
  msgstr "Wysig in %s"
1185
 
1186
+ #: src/admin-views/tickets/list.php:27
1187
  msgid "View"
1188
  msgstr "Kyk"
1189
 
1190
+ #: src/admin-views/tickets/list.php:67
1191
  msgid "Sold %d"
1192
  msgstr "Verkoop %d"
1193
 
1194
+ #: src/admin-views/tickets/meta-box.php:23
 
 
 
 
1195
  msgid "This event was created using Community Events. Are you sure you want to sell tickets for it?"
1196
  msgstr "Hierdie geleentheid is geskep met behulp van gemeenskap gebeure. Is jy seker jy wil hê om kaartjies te verkoop vir dit?"
1197
 
1198
+ #: src/admin-views/tickets/meta-box.php:34
1199
  msgid "Upload image for the ticket header"
1200
  msgstr "Laai beeld vir die kaartjie hoof op"
1201
 
1202
+ #: src/admin-views/tickets/meta-box.php:35
1203
  msgid "The maximum image size in the email will be 580px wide by any height, and then scaled for mobile. If you would like \"retina\" support use an image sized to 1160px wide."
1204
  msgstr "Die maksimum beeld grootte in die e-pos is 580px wyd deur enige hoogte, en sal dan afgeskaal wordvir selfone. As jy van \"retina\" ondersteuning gebruik wil maak kan die beeld tot die grootte van 1160px ver breed word."
1205
 
1206
+ #: src/admin-views/tickets/meta-box.php:38
1207
  msgid "Select an Image"
1208
  msgstr "Kies 'n beeld"
1209
 
1210
+ #: src/admin-views/tickets/meta-box.php:46
1211
  msgid "Remove"
1212
  msgstr "Verwyder"
1213
 
1214
+ #: src/admin-views/tickets/meta-box.php:64
1215
+ #: src/admin-views/tickets/meta-box.php:74
1216
  msgid "Add new ticket"
1217
  msgstr "Voeg 'n Nuwe Kaartjie by"
1218
 
1219
+ #: src/admin-views/tickets/meta-box.php:75
1220
  msgid "Edit ticket"
1221
  msgstr "Wysig Kaartjie"
1222
 
1223
+ #: src/admin-views/tickets/meta-box.php:80
1224
  msgid "Sell using:"
1225
  msgstr "Verkoop deur middel van:"
1226
 
1227
+ #: src/admin-views/tickets/meta-box.php:97
1228
  msgid "Ticket Name:"
1229
  msgstr "Kaartjie Naam:"
1230
 
1231
+ #: src/admin-views/tickets/meta-box.php:104
1232
  msgid "Ticket Description:"
1233
  msgstr "Kaartjie Beskrywing"
1234
 
1235
+ #: src/admin-views/tickets/meta-box.php:113
1236
  msgid "Price:"
1237
  msgstr "Prys:"
1238
 
1239
+ #: src/admin-views/tickets/meta-box.php:119
1240
  msgid "(0 or empty for free tickets)"
1241
  msgstr "(0 of laat leeg vir gratis kaartjies)"
1242
 
1243
+ #: src/admin-views/tickets/meta-box.php:125
1244
  msgid "Sale Price:"
1245
  msgstr ""
1246
 
1247
+ #: src/admin-views/tickets/meta-box.php:131
1248
  msgid "(Current sale price - this can be managed via the product editor)"
1249
  msgstr ""
1250
 
1251
+ #: src/admin-views/tickets/meta-box.php:137
1252
  msgid "Start sale:"
1253
  msgstr "Begin verkope:"
1254
 
1255
+ #: src/admin-views/tickets/meta-box.php:161
1256
  msgid "End sale:"
1257
  msgstr "Eindig Verkope:"
1258
 
1259
+ #: src/admin-views/tickets/meta-box.php:183
1260
  msgid "When will ticket sales occur? If you don't set a start/end date for sales, tickets will be available from now until the event ends."
1261
  msgstr "Wanneer sal kaartjieverkope plaasvind? As jy nie het 'n begin / einde datum vir die verkope instel nie, sal kaartjies beskikbaar wees van nou af tot aan die byeenkoms eindig."
1262
 
1263
+ #: src/admin-views/tickets/meta-box.php:195
1264
  msgid "Save this ticket"
1265
  msgstr "Stel as kaartjie hoof op."
1266
 
1267
+ #: src/admin-views/tribe-options-display.php:4
1268
  msgid "Default Events Template"
1269
  msgstr "Standaard Gebeurtenis Bloudruk"
1270
 
1271
+ #: src/admin-views/tribe-options-display.php:5
1272
  msgid "Default Page Template"
1273
  msgstr "Standaard Bladsy Bloudruk"
1274
 
1275
+ #: src/admin-views/tribe-options-display.php:51
1276
  msgid "Display Settings"
1277
  msgstr "Skerm-instellings"
1278
 
1279
+ #: src/admin-views/tribe-options-display.php:56
1280
  msgid "The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme.</p><p>There are going to be situations where no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications."
1281
  msgstr ""
1282
 
1283
+ #: src/admin-views/tribe-options-display.php:70
1284
  msgid "Basic Template Settings"
1285
  msgstr "Basiese Bloudruk Verstellings"
1286
 
1287
+ #: src/admin-views/tribe-options-display.php:74
1288
  msgid "Default stylesheet used for events templates"
1289
  msgstr "Standaard stylblad wat gebruik word vir gebeure bloudruk"
1290
 
1291
+ #: src/admin-views/tribe-options-display.php:77
1292
  msgid "Skeleton Styles"
1293
  msgstr "Geraamtestyl"
1294
 
1295
+ #: src/admin-views/tribe-options-display.php:79
1296
  msgid "Only includes enough css to achieve complex layouts like calendar and week view."
1297
  msgstr "Sluit slegs genoeg css in om komplekse uitlegte soos kalender en week aansig te verskaf."
1298
 
1299
+ #: src/admin-views/tribe-options-display.php:81
1300
  msgid "Full Styles"
1301
  msgstr "Volle Style"
1302
 
1303
+ #: src/admin-views/tribe-options-display.php:83
1304
  msgid "More detailed styling, tries to grab styles from your theme."
1305
  msgstr "Meer stilering, probeer stylaanwysings vanaf jou tema bekom."
1306
 
1307
+ #: src/admin-views/tribe-options-display.php:85
1308
  msgid "Tribe Events Styles"
1309
  msgstr "Tribe Events Style"
1310
 
1311
+ #: src/admin-views/tribe-options-display.php:87
1312
  msgid "A fully designed and styled theme for your events pages."
1313
  msgstr "'N ten volle ontwerp en gestileerde bloudruk vir jou gebeure bladsye."
1314
 
1315
+ #: src/admin-views/tribe-options-display.php:94
1316
  msgid "Events template"
1317
  msgstr "Gebeurtenis Bloudruk"
1318
 
1319
+ #: src/admin-views/tribe-options-display.php:95
1320
  msgid "Choose a page template to control the appearance of your calendar and event content."
1321
  msgstr "Kies 'n bladsy bloudruk om die voorkoms van jou kalender en gebeurtenis inhoud te beheer."
1322
 
1323
+ #: src/admin-views/tribe-options-display.php:103
1324
  msgid "Enable event views"
1325
  msgstr "Bemagtig gebeurtenis aansig"
1326
 
1327
+ #: src/admin-views/tribe-options-display.php:104
1328
  msgid "You must select at least one view."
1329
  msgstr "Jy moet ten minste een aansig kies."
1330
 
1331
+ #: src/admin-views/tribe-options-display.php:111
1332
  msgid "Default view"
1333
  msgstr "Standaard Aansig"
1334
 
1335
+ #: src/admin-views/tribe-options-display.php:119
1336
  msgid "Disable the Event Search Bar"
1337
  msgstr "Skakel die Gebeurtenis Soek Funksie af."
1338
 
1339
+ #: src/admin-views/tribe-options-display.php:120
1340
  msgid "Check this to use the classic header."
1341
  msgstr "Kies hierdie opsie om die klassieke kop te gebruik."
1342
 
1343
+ #: src/admin-views/tribe-options-display.php:126
1344
  msgid "Month view events per day"
1345
  msgstr "Maand aansig van gebeure per dag."
1346
 
1347
+ #: src/admin-views/tribe-options-display.php:127
1348
  msgid "Change the default 3 events per day in month view. Please note there may be performance issues if you set this too high. <a href=\"%s\">Read more</a>."
1349
  msgstr ""
1350
 
1351
+ #: src/admin-views/tribe-options-display.php:134
1352
  msgid "Enable the Month View Cache"
1353
  msgstr ""
1354
 
1355
+ #: src/admin-views/tribe-options-display.php:135
1356
  msgid "Check this to cache your month view HTML in transients, which can help improve calendar speed on sites with many events. <a href=\"%s\">Read more</a>."
1357
  msgstr ""
1358
 
1359
+ #: src/admin-views/tribe-options-display.php:141
1360
  msgid "Date Format Settings"
1361
  msgstr ""
1362
 
1363
+ #: src/admin-views/tribe-options-display.php:145
1364
  msgid "<p>The following three fields accept the date format options available to the php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Learn how to make your own date format here</a>.</p>"
1365
  msgstr ""
1366
 
1367
+ #: src/admin-views/tribe-options-display.php:149
1368
  msgid "Date with year"
1369
  msgstr ""
1370
 
1371
+ #: src/admin-views/tribe-options-display.php:150
1372
  msgid "Enter the format to use for displaying dates with the year. Used when showing an event from a past or future year, also used for dates in view headers."
1373
  msgstr ""
1374
 
1375
+ #: src/admin-views/tribe-options-display.php:157
1376
  msgid "Date without year"
1377
  msgstr ""
1378
 
1379
+ #: src/admin-views/tribe-options-display.php:158
1380
  msgid "Enter the format to use for displaying dates without a year. Used when showing an event from the current year."
1381
  msgstr ""
1382
 
1383
+ #: src/admin-views/tribe-options-display.php:165
1384
  msgid "Month and year format"
1385
  msgstr ""
1386
 
1387
+ #: src/admin-views/tribe-options-display.php:166
1388
  msgid "Enter the format to use for dates that show a month and year only. Used on month view."
1389
  msgstr ""
1390
 
1391
+ #: src/admin-views/tribe-options-display.php:173
1392
  msgid "Date time separator"
1393
  msgstr ""
1394
 
1395
+ #: src/admin-views/tribe-options-display.php:174
1396
  msgid "Enter the separator that will be placed between the date and time, when both are shown."
1397
  msgstr ""
1398
 
1399
+ #: src/admin-views/tribe-options-display.php:181
1400
  msgid "Time range separator"
1401
  msgstr ""
1402
 
1403
+ #: src/admin-views/tribe-options-display.php:182
1404
  msgid "Enter the separator that will be used between the start and end time of an event."
1405
  msgstr ""
1406
 
1407
+ #: src/admin-views/tribe-options-display.php:189
1408
  msgid "Datepicker Date Format"
1409
  msgstr ""
1410
 
1411
+ #: src/admin-views/tribe-options-display.php:190
1412
  msgid "Select the date format to use in datepickers"
1413
  msgstr ""
1414
 
1415
+ #: src/admin-views/tribe-options-display.php:207
1416
  msgid "Advanced Template Settings"
1417
  msgstr "Gevorderde Bloudruk Stellings"
1418
 
1419
+ #: src/admin-views/tribe-options-display.php:211
1420
  msgid "Add HTML before event content"
1421
  msgstr "Voeg HTML voor gebeurtenis inhoud"
1422
 
1423
+ #: src/admin-views/tribe-options-display.php:212
1424
  msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
1425
  msgstr "As jy vertroud is met HTML, kan jy addisionele kode voeg voor die gebeurtenis bloudruk. Sommige temas mag vereis om dit te help met die stilering of uitleg."
1426
 
1427
+ #: src/admin-views/tribe-options-display.php:217
1428
  msgid "Add HTML after event content"
1429
  msgstr "Voeg HTML na gebeurtenis inhoud"
1430
 
1431
+ #: src/admin-views/tribe-options-display.php:218
1432
  msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
1433
  msgstr "As jy vertroud is met HTML, kan jy addisionele kode voeg voor die gebeurtenis bloudruk. Sommige temas mag vereis om dit te help met die stilering of uitleg."
1434
 
1435
+ #: src/admin-views/tribe-options-general.php:12
1436
  msgid "Finding & extending your calendar."
1437
  msgstr "Dit vind & uitbreiding van jou kalender."
1438
 
1439
+ #: src/admin-views/tribe-options-general.php:17
1440
  msgid "Finding your calendar."
1441
  msgstr "Dit vind van jou kalender."
1442
 
1443
+ #: src/admin-views/tribe-options-general.php:22
1444
  msgid "Where's my calendar?"
1445
  msgstr "Waar is my kalender?"
1446
 
1447
+ #: src/admin-views/tribe-options-general.php:22
1448
  msgid "Right here"
1449
  msgstr "Hier"
1450
 
1451
+ #: src/admin-views/tribe-options-general.php:26
1452
  msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
1453
  msgstr "Op soek na bykomende funksionaliteit, insluitend herhalende gebeure, bykomende meta, gemeenskap gebeure, kaartjieverkope en meer?"
1454
 
1455
+ #: src/admin-views/tribe-options-general.php:26
1456
  msgid "Check out the available add-ons"
1457
  msgstr "Check uit die beskikbare byvoegings"
1458
 
1459
+ #: src/admin-views/tribe-options-general.php:31
1460
  msgid "We hope our plugin is helping you out."
1461
  msgstr "Ons hoop dat ons toevoeging help jou uit."
1462
 
1463
+ #: src/admin-views/tribe-options-general.php:35
1464
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
1465
  msgstr "Dink jy \"Sjoe, hierdie toevoeging is ongelooflik! Ek moet Modern Tribe vir al hul harde werk bedank. \" Die grootste belonging wat ons kan vra is vir erkenning. Voeg 'n klein tekst skakel aan die onderkant van jou kalender wat wys na ons Kalender projek."
1466
 
1467
+ #: src/admin-views/tribe-options-general.php:35
1468
+ #: src/admin-views/tribe-options-general.php:40
1469
  msgid "See an example of the link"
1470
  msgstr "Wys 'n voorbeeld van die skakel"
1471
 
1472
+ #: src/admin-views/tribe-options-general.php:40
1473
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project."
1474
  msgstr "Dink jy \"Sjoe, hierdie toevoeging is ongelooflik! Ek moet Modern Tribe vir al hul harde werk bedank. \" Die grootste belonging wat ons kan vra is vir erkenning. Voeg 'n klein tekst skakel aan die onderkant van jou kalender wat wys na ons Kalender projek."
1475
 
1476
+ #: src/admin-views/tribe-options-general.php:45
1477
  msgid "Show The Events Calendar link"
1478
  msgstr "Wys 'n voorbeeld van die skakel"
1479
 
1480
+ #: src/admin-views/tribe-options-general.php:59
1481
  msgid "General Settings"
1482
  msgstr "Algemene Instellingsbeurtenis Begin Datum"
1483
 
1484
+ #: src/admin-views/tribe-options-general.php:63
1485
  msgid "Number of events to show per page"
1486
  msgstr "Hoeveelheid Gebeurtenisse per bladsy"
1487
 
1488
+ #: src/admin-views/tribe-options-general.php:70
1489
  msgid "Use Javascript to control date filtering"
1490
  msgstr "Gebruik Javascript om datum filters te beheer"
1491
 
1492
+ #: src/admin-views/tribe-options-general.php:71
1493
  msgid "This option is disabled when \"Disable the Event Search Bar\" is checked on the Display settings tab."
1494
  msgstr "Hierdie opsie is afgeskakel wanneer \"Skakel die Gebeurtenis Soek Funksie \" aangeskakel is op die blad skerm instellings."
1495
 
1496
+ #: src/admin-views/tribe-options-general.php:71
1497
  msgid "Enable live ajax for datepicker on front end (User submit not required)."
1498
  msgstr "Bemagtig lewendige ajax fir die datumkieskaart aan die voorkant van die webtuiste (Verbruiker inset is nie verpligtend)"
1499
 
1500
+ #: src/admin-views/tribe-options-general.php:79
1501
  msgid "Show comments"
1502
  msgstr "Wys Kommentaar"
1503
 
1504
+ #: src/admin-views/tribe-options-general.php:80
1505
  msgid "Enable comments on event pages."
1506
  msgstr "Bemagtig kommentaar op gebeurtenis baldsye"
1507
 
1508
+ #: src/admin-views/tribe-options-general.php:86
1509
  msgid "Include events in main blog loop"
1510
  msgstr "Sluit hierdie gebeurtenis in by die hoof blog stroom."
1511
 
1512
+ #: src/admin-views/tribe-options-general.php:87
1513
  msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
1514
  msgstr "Wys gebeure saam met die webtuiste se ander plasings. Wanneer hierdie funskie aangeskakel is, sal gebeure ook voortgaan op die standaard gebeure bladsy verskyn."
1515
 
1516
+ #: src/admin-views/tribe-options-general.php:93
1517
+ #: src/admin-views/tribe-options-general.php:99
1518
  msgid "Events URL slug"
1519
  msgstr "Gebeure URL afkorting"
1520
 
1521
+ #: src/admin-views/tribe-options-general.php:106
1522
+ #: src/functions/template-tags/options.php:20
 
 
 
 
1523
  msgid "The slug used for building the events URL."
1524
  msgstr "Die afkorting wat gebruik word vir die bou van die gebeure URL."
1525
 
1526
+ #: src/admin-views/tribe-options-general.php:106
1527
  msgid "Your current events URL is: %s"
1528
  msgstr "Jou huidige Gebeure URL is: %s"
1529
 
1530
+ #: src/admin-views/tribe-options-general.php:111
1531
+ #: src/functions/template-tags/options.php:39
1532
  msgid "Here is the iCal feed URL for your events:"
1533
  msgstr "Hier is die iCal voer URL vir jou Dienste:"
1534
 
1535
+ #: src/admin-views/tribe-options-general.php:116
1536
  msgid "Single event URL slug"
1537
  msgstr "Enkele gebeurtenis URL afkorting"
1538
 
1539
+ #: src/admin-views/tribe-options-general.php:123
1540
  msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
1541
  msgstr "Die bogenoemde moet verkieslik in meervoud wees, en hierdie is in enkelvoud <br /> Jou enkele gebeurtenis URL is: %s"
1542
 
1543
+ #: src/admin-views/tribe-options-general.php:128
1544
  msgid "End of day cutoff"
1545
  msgstr "Einde van die dag afsnypunt."
1546
 
1547
+ #: src/admin-views/tribe-options-general.php:149
1548
  msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
1549
  msgstr "'N gebeurtenis wat na middernag aanhou? Kies 'n tyd na die gebeurtenis se einde om te vermy dat die gebeurtenis op die volgende dag se kalender verskein."
1550
 
1551
+ #: src/admin-views/tribe-options-general.php:154
1552
  msgid "Default currency symbol"
1553
  msgstr "Standaard geldwaardesimbool"
1554
 
1555
+ #: src/admin-views/tribe-options-general.php:155
1556
  msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
1557
  msgstr "Stel die geldeenheid by simbool vir die gebeurtenis koste. Let daarop dat hierdie verandering slegs 'n impak toekomstige gebeure sal hê en dat die veranderings aangebring nie terugwerkend van toepassing sal wees nie."
1558
 
1559
+ #: src/admin-views/tribe-options-general.php:162
1560
  msgid "Currency symbol follows value"
1561
  msgstr "Geldeenheidsimbool volg waarde"
1562
 
1563
+ #: src/admin-views/tribe-options-general.php:163
1564
  msgid "The currency symbol normally precedes the value. Enabling this option positions the symbol after the value."
1565
  msgstr "Die geldwaarde word gewoonlik voorafgegaan deur die geldeenheid simbool Deur hierdie opsie te kies, word die simbool na die waarde geposisioneer."
1566
 
1567
+ #: src/admin-views/tribe-options-general.php:169
1568
  msgid "Map Settings"
1569
  msgstr "Kaart Verstellings"
1570
 
1571
+ #: src/admin-views/tribe-options-general.php:173
1572
  msgid "Enable Google Maps"
1573
  msgstr "Bemagtig Goolgle Kaarte"
1574
 
1575
+ #: src/admin-views/tribe-options-general.php:174
1576
  msgid "Check to enable maps for events and venues."
1577
  msgstr "Klik om kaarte vir die gebeure en plekke te bemagtig."
1578
 
1579
+ #: src/admin-views/tribe-options-general.php:181
1580
  msgid "Google Maps default zoom level"
1581
  msgstr "Google Kaarte standaard vergroot vlak"
1582
 
1583
+ #: src/admin-views/tribe-options-general.php:182
1584
  msgid "0 = zoomed out; 21 = zoomed in."
1585
  msgstr "0 = heeltemal verkelin; 21 = heeltemal vergroot."
1586
 
1587
+ #: src/admin-views/tribe-options-general.php:190
1588
  msgid "Miscellaneous Settings"
1589
  msgstr "Ander instellings"
1590
 
1591
+ #: src/admin-views/tribe-options-general.php:194
1592
  msgid "Duplicate Venues &amp; Organizers"
1593
  msgstr "Duplikaat Plekke &amp; Organiseerders"
1594
 
1595
+ #: src/admin-views/tribe-options-general.php:194
1596
  msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
1597
  msgstr "Jy mag vind duplikaat plekke en organiseerders ontstaan wanneer daar van Kalender van 'n pre-3.0-weergawe opgedateer word. Klik op hierdie knoppie om outomaties die duplikate saam te smelt."
1598
 
1599
+ #: src/admin-views/tribe-options-general.php:211
1600
  msgid "Debug mode"
1601
  msgstr "Ontfoutmodus"
1602
 
1603
+ #: src/admin-views/tribe-options-general.php:217
1604
  msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
1605
  msgstr "Aktiveer hierdie opsie om ontfout inligting aan te teken. By verstek sal hierdiefoute by jou PHP fout puntelys aangemeld word. As jy die puntelys boodskappe in jou webleser wil te sien, dan raai ons jou aan om %s te installer en te soek na die \"Tribe\"oortjie in die foutspoor."
1606
 
1607
+ #: src/admin-views/tribe-options-general.php:217
1608
  msgid "Debug Bar Plugin"
1609
  msgstr "Ontfout Funksie Toevoeging"
1610
 
1611
+ #: src/admin-views/tribe-options-general.php:199
1612
  msgid "View Welcome Page"
1613
  msgstr ""
1614
 
1615
+ #: src/admin-views/tribe-options-general.php:199
1616
  msgid "View the page that displayed when you initially installed the plugin."
1617
  msgstr ""
1618
 
1619
+ #: src/admin-views/tribe-options-general.php:204
1620
  msgid "View Update Page"
1621
  msgstr ""
1622
 
1623
+ #: src/admin-views/tribe-options-general.php:204
1624
  msgid "View the page that displayed when you updated the plugin."
1625
  msgstr ""
1626
 
1627
+ #: src/admin-views/tribe-options-help.php:33
1628
  msgctxt "not available"
1629
  msgid "n/a"
1630
  msgstr ""
1631
 
1632
+ #: src/admin-views/tribe-options-help.php:34
1633
  msgid "You need to upgrade!"
1634
  msgstr "Jy moet opgradeer!"
1635
 
1636
+ #: src/admin-views/tribe-options-help.php:34
1637
  msgid "You are up to date!"
1638
  msgstr "Jy is op datum!"
1639
 
1640
+ #: src/admin-views/tribe-options-help.php:63
1641
  msgid "The Events Calendar PRO"
1642
  msgstr "The Events Calendar PRO"
1643
 
1644
+ #: src/admin-views/tribe-options-help.php:72
1645
  msgid "The Events Calendar: Eventbrite Tickets"
1646
  msgstr "The Events Calendar: Eventbrite Tickets"
1647
 
1648
+ #: src/admin-views/tribe-options-help.php:81
1649
  msgid "The Events Calendar: Community Events"
1650
  msgstr "The Events Calendar: Community Events"
1651
 
1652
+ #: src/Tribe/View_Helpers.php:281
1653
  msgid "Wallis And Futuna Islands"
1654
  msgstr "Wallis And Futuna Islands"
1655
 
1656
+ #: src/admin-views/tribe-options-help.php:90
1657
  msgid "The Events Calendar: Facebook Events"
1658
  msgstr "The Events Calendar: Facebook Events"
1659
 
1660
+ #: src/Tribe/View_Helpers.php:282
1661
  msgid "Western Sahara"
1662
  msgstr "Western Sahara"
1663
 
1664
+ #: src/admin-views/tribe-options-help.php:99
1665
  msgid "The Events Calendar: WooCommerce Tickets"
1666
  msgstr "The Events Calendar: WooCommerce Tickets"
1667
 
1668
+ #: src/Tribe/View_Helpers.php:283
1669
  msgid "Yemen"
1670
  msgstr "Yemen"
1671
 
1672
+ #: src/admin-views/tribe-options-help.php:109
1673
  msgid "The Events Calendar: EDD Tickets"
1674
  msgstr "The Events Calendar: EDD Tickets"
1675
 
1676
+ #: src/Tribe/View_Helpers.php:284
1677
  msgid "Zambia"
1678
  msgstr "Zambia"
1679
 
1680
+ #: src/admin-views/tribe-options-help.php:119
1681
  msgid "The Events Calendar: WPEC Tickets"
1682
  msgstr "The Events Calendar: WPEC Tickets"
1683
 
1684
+ #: src/Tribe/View_Helpers.php:285
1685
  msgid "Zimbabwe"
1686
  msgstr "Zimbabwe"
1687
 
1688
+ #: src/admin-views/tribe-options-help.php:129
1689
  msgid "The Events Calendar: Shopp Tickets"
1690
  msgstr "The Events Calendar: Shopp Tickets"
1691
 
1692
+ #: src/Tribe/View_Helpers.php:316
1693
  msgid "Alabama"
1694
  msgstr "Alabama"
1695
 
1696
+ #: src/admin-views/tribe-options-help.php:139
1697
  msgid "The Events Calendar: Filter Bar"
1698
  msgstr "The Events Calendar: Filtreer Strook"
1699
 
1700
+ #: src/Tribe/View_Helpers.php:317
1701
  msgid "Alaska"
1702
  msgstr "Alaska"
1703
 
1704
+ #: src/Tribe/View_Helpers.php:318
1705
  msgid "Arizona"
1706
  msgstr "Arizona"
1707
 
1708
+ #: src/admin-views/tribe-options-help.php:164
1709
  msgid "If this is your first time using The Events Calendar, you're in for a treat and are already well on your way to creating a first event. Here are some basics we've found helpful for users jumping into it for the first time:"
1710
  msgstr "As dit jou eerste keer is wat jy met behulp van die Kalender gebeurtenisse publiseer, is jy in vir n fees en jy is reeds goed op pad na die skep van jou eerste gebeurtenis. Hier is 'n paar basiese beginsels wat ons het hulpvaardig gevind het vir gebruikers wat die toevoeging vir die eerste keer gebruik:"
1711
 
1712
+ #: src/Tribe/View_Helpers.php:319
1713
  msgid "Arkansas"
1714
  msgstr "Arkansas"
1715
 
1716
+ #: src/admin-views/tribe-options-help.php:167
1717
  msgid "%sOur New User Primer%s was designed for folks in your exact position. Featuring both step-by-step videos and written walkthroughs that feature accompanying screenshots, the primer aims to take you from zero to hero in no time."
1718
  msgstr "%s Ons Nuwe Gebruiker Beginnersgrammatika %s is ontwerp vir mense in jou presiese posisie. Met beide stap-vir-stap videos en skriftelike deurlope met meegaande skermbeelde, sal die Nuwe Gebruiker Beginnersgrammatika jou spoediglik help om jou voete te vind."
1719
 
1720
+ #: src/Tribe/View_Helpers.php:320
1721
  msgid "California"
1722
  msgstr "California"
1723
 
1724
+ #: src/admin-views/tribe-options-help.php:169
1725
  msgid "%sInstallation/Setup FAQs%s from our support page can help give an overview of what the plugin can and cannot do. This section of the FAQs may be helpful as it aims to address any basic install questions not addressed by the new user primer."
1726
  msgstr "%s Installasie /Opstel Vrae%s van ons ondersteuning bladsy kan help om 'n oorsig te gee van wat die toevoeging kan en nie kan doen nie. Hierdie deel van die vrae kan nuttig wees aangesien dit gebruik word om 'n basiese installeer vrae nie deur die nuwe gebruiker grondlaag aan gespreek word nie, te antwoord."
1727
 
1728
+ #: src/Tribe/View_Helpers.php:321
1729
  msgid "Colorado"
1730
  msgstr "Colorado"
1731
 
1732
+ #: src/admin-views/tribe-options-help.php:171
1733
  msgid "Otherwise, if you're feeling adventurous, you can get started by heading to the Events menu and adding your first event."
1734
  msgstr "Anders, as jy avontuurlustig voel, kan jy begin deur na die jou Gebeure kieslys te gaan en jou eerste gebeurtenis by te voeg."
1735
 
1736
+ #: src/Tribe/View_Helpers.php:322
1737
  msgid "Connecticut"
1738
  msgstr "Connecticut"
1739
 
1740
+ #: src/admin-views/tribe-options-help.php:175
1741
  msgid "We've redone our support page from the ground up in an effort to better help our users. Head over to our %sSupport Page%s and you'll find lots of great resources, including:"
1742
  msgstr "Ons het ons ondersteuning bladsy oorgedoen in 'n poging om beter te hulp aan ons gebruikers te bied. Bo aan die hoof van ons %sSupport Page%s sal jy baie van die groot hulpbronne vind, insluitend:"
1743
 
1744
+ #: src/Tribe/View_Helpers.php:323
1745
  msgid "Delaware"
1746
  msgstr "Delaware"
1747
 
1748
+ #: src/admin-views/tribe-options-help.php:177
1749
  msgid "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar &amp; Events Calendar PRO"
1750
  msgstr "%sTemplate etikette, funksies, en hakies & filter%s for The Events Calendar &amp; Events Calendar PRO"
1751
 
1752
+ #: src/Tribe/View_Helpers.php:324
1753
  msgid "District of Columbia"
1754
  msgstr "District of Columbia"
1755
 
1756
+ #: src/admin-views/tribe-options-help.php:179
1757
  msgid "%sFrequently Asked Questions%s ranging from the most basic setup questions to advanced themer tweaks"
1758
  msgstr "%sKwelvrae%s wissel van die mees basiese opstel vrae tot gevorderde bloudruk verstellings"
1759
 
1760
+ #: src/Tribe/View_Helpers.php:325
1761
  msgid "Florida"
1762
  msgstr "Florida"
1763
 
1764
+ #: src/admin-views/tribe-options-help.php:182
1765
  msgid "%sTutorials%s written by both members of our team and users from the community, covering custom queries, integration with third-party themes and plugins, etc."
1766
  msgstr "%sHandleidings%s geskryf deur albei lede van ons span en gebruikers van die gemeenskap, wat persoonlike navrae, integrasie met derde party temas en plugins, ens"
1767
 
1768
+ #: src/Tribe/View_Helpers.php:327
1769
  msgid "Hawaii"
1770
  msgstr "Hawaii"
1771
 
1772
+ #: src/admin-views/tribe-options-help.php:184
1773
  msgid "Release notes for painting an overall picture of the plugin's lifecycle and when features/bug fixes were introduced."
1774
  msgstr "Vrystelling notas vir die skets van 'n geheelbeeld van die toevoeging se lewensiklus en wanneer funksies / foutherstellings ingestel is."
1775
 
1776
+ #: src/Tribe/View_Helpers.php:328
1777
  msgid "Idaho"
1778
  msgstr "Idaho"
1779
 
1780
+ #: src/admin-views/tribe-options-help.php:186
1781
  msgid "%sAdd-on documentation%s for all of Modern Tribe's official extensions for The Events Calendar (including WooTickets, Community Events, Eventbrite Tickets, Facebook Events, etc)"
1782
  msgstr "%sToevoeging dokumentasie%s vir alle Modern Tribe's se amptelike verlengings vir The Events Calendar (insluitend WooTickets, Community Events, Eventbrite Tickets, Facebook Events, ens)"
1783
 
1784
+ #: src/Tribe/View_Helpers.php:329
1785
  msgid "Illinois"
1786
  msgstr "Illinois"
1787
 
1788
+ #: src/admin-views/tribe-options-help.php:188
1789
  msgid "We've also got a %sModern Tribe UserVoice%s page where we're actively watching for feature ideas from the community. If after playing with the plugin and reviewing the resources above, you're finding a feature isn't present that should be, let us know. Vote up existing feature requests or add your own, and help us shape the future of the products business in a way that best meets the community's needs."
1790
  msgstr "s het ook 'n %sModern Tribe UserVoice%s blad waar ons aktief kyk vir funksie idees uit die gemeenskap. As jy na die speel met die toevoeging en die hersiening van die hulpbronne , 'n funksie wat jy nodig het, nie vind nie, laat ons weet. Stem op bestaande funksie versoeke of jou eie, en help ons om die toekoms van die produkte te vorm op 'n manier wat die beste aan die gemeenskap se behoeftes voldoen."
1791
 
1792
+ #: src/Tribe/View_Helpers.php:330
1793
  msgid "Indiana"
1794
  msgstr "Indiana"
1795
 
1796
+ #: src/admin-views/tribe-options-help.php:192
1797
  msgid "Written documentation can only take things so far...sometimes, you need help from a real person. This is where our %ssupport forums%s come into play."
1798
  msgstr "Geskrewe dokumentasie kan jou net so vêr kry... soms hetjy die hulp van 'n ware persoon nodig het. Dit is waar die %ssupport forums%s handig te pas kom."
1799
 
1800
+ #: src/Tribe/View_Helpers.php:331
1801
  msgid "Iowa"
1802
  msgstr "Iowa"
1803
 
1804
+ #: src/admin-views/tribe-options-help.php:193
1805
  msgid "Users of the free The Events Calendar should post their support concerns to the plugin's %sWordPress.org support forum%s. While we are happy to help identify and fix bugs that are reported at WordPress.org, please make sure to read our %ssupport expectations sticky thread%s before posting so you understand our limitations."
1806
  msgstr "Gebruikers van die gratis Calendar moet plaas hul ondersteuning kommer tov die toevoeging het kan dit op die%sWordPress.org forum%s plaas. Terwyl ons is bly om te help om probleme te identifiseer en op WordPress.org op te los p, maak asseblief seker dat jy ons %s ondersteunings verwagtinge taai draad %s te lees sodat jy ons beperkinge kan verstaan."
1807
 
1808
+ #: src/Tribe/View_Helpers.php:332
1809
  msgid "Kansas"
1810
  msgstr "Kansas"
1811
 
1812
+ #: src/admin-views/tribe-options-help.php:194
1813
  msgid "We hit the WordPress.org forum throughout the week, watching for bugs. If you report a legitimate bug that we're able to reproduce, we will log it and patch for an upcoming release. However we are unfortunately unable to provide customization tips or assist in integrating with 3rd party plugins or themes."
1814
  msgstr "Ons het die WordPress.org forum deur die week, om te kyk vir probleme. Indien jy 'n wettige probleem aanmeld, wat ons in staat om te herproduseer, sal dit oorbrug vir 'n komende vrylating."
1815
 
1816
+ #: src/Tribe/View_Helpers.php:333
1817
  msgid "Kentucky"
1818
  msgstr "Kentucky"
1819
 
1820
+ #: src/admin-views/tribe-options-help.php:195
1821
  msgid "If you're a user of The Events Calendar and would like more support, please %spurchase a PRO license%s. We hit the PRO forums daily, and can provide a deeper level of customization/integration support for paying users than we can on WordPress.org."
1822
  msgstr "As jy 'n gebruiker van The Events Calendar is en jy wil graag meer ondersteuning geniet, koop asseblief %s'n PRo lisensie%s. Ons kyk daagliks na die PRO forums, en kan ondersteuning op 'n dieper vlak van aanpassing / integrasie bied vir die betalende gebruikers as vir die op WordPress.org."
1823
 
1824
+ #: src/Tribe/View_Helpers.php:47
1825
  msgid "Afghanistan"
1826
  msgstr "Afghanistan"
1827
 
1828
+ #: src/Tribe/View_Helpers.php:48
1829
  msgid "Albania"
1830
  msgstr "Albania"
1831
 
1832
+ #: src/Tribe/View_Helpers.php:49
1833
  msgid "Algeria"
1834
  msgstr "Algerië"
1835
 
1836
+ #: src/Tribe/API.php:437
1837
  msgid "Unnamed Venue"
1838
  msgstr "Naamlose Plekke"
1839
 
1840
+ #: src/Tribe/View_Helpers.php:50
1841
  msgid "American Samoa"
1842
  msgstr "Amerikaanse Samoa"
1843
 
1844
+ #: src/Tribe/API.php:517 src/Tribe/View_Helpers.php:46
1845
+ #: src/functions/template-tags/venue.php:272
1846
  msgid "United States"
1847
  msgstr "United States"
1848
 
1849
+ #: src/Tribe/View_Helpers.php:51
1850
  msgid "Andorra"
1851
  msgstr "Andorra"
1852
 
1853
+ #: src/Tribe/Activation_Page.php:196
1854
  msgid "Welcome to The Events Calendar"
1855
  msgstr ""
1856
 
1857
+ #: src/Tribe/View_Helpers.php:52
1858
  msgid "Angola"
1859
  msgstr "Angola"
1860
 
1861
+ #: src/Tribe/Activation_Page.php:216
1862
  msgid "Thanks for Updating The Events Calendar"
1863
  msgstr ""
1864
 
1865
+ #: src/Tribe/View_Helpers.php:53
1866
  msgid "Anguilla"
1867
  msgstr "Anguilla"
1868
 
1869
+ #: src/Tribe/Admin_List.php:219 src/Tribe/Main.php:1295
1870
  msgid "%s Categories"
1871
  msgstr ""
1872
 
1873
+ #: src/Tribe/View_Helpers.php:54
1874
  msgid "Antarctica"
1875
  msgstr "Antarctika"
1876
 
1877
+ #: src/Tribe/Admin_List.php:225
1878
  msgid "Start Date"
1879
  msgstr "Begin Datum"
1880
 
1881
+ #: src/Tribe/View_Helpers.php:55
1882
  msgid "Antigua And Barbuda"
1883
  msgstr "Antigua en Barbuda"
1884
 
1885
+ #: src/Tribe/Admin_List.php:226
1886
  msgid "End Date"
1887
  msgstr "Eind Datum"
1888
 
1889
+ #: src/Tribe/View_Helpers.php:56
1890
  msgid "Argentina"
1891
  msgstr "Argentinië"
1892
 
1893
+ #: src/Tribe/Admin_List.php:304
1894
  msgid "All %s"
1895
  msgstr "Alle %s"
1896
 
1897
+ #: src/Tribe/View_Helpers.php:57
1898
  msgid "Armenia"
1899
  msgstr "Armenië"
1900
 
1901
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:37
1902
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:69
1903
+ #: src/views/modules/meta/details.php:40 src/views/modules/meta/details.php:65
 
1904
  msgid "Start:"
1905
  msgstr "Begin:"
1906
 
1907
+ #: src/Tribe/View_Helpers.php:58
1908
  msgid "Aruba"
1909
  msgstr "Aruba"
1910
 
1911
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:46
1912
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:78
1913
+ #: src/views/modules/meta/details.php:45 src/views/modules/meta/details.php:70
 
1914
  msgid "End:"
1915
  msgstr "Einde:"
1916
 
1917
+ #: src/Tribe/View_Helpers.php:59
1918
  msgid "Australia"
1919
  msgstr "Australië"
1920
 
1921
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:57
1922
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:89
1923
+ #: src/views/modules/meta/details.php:55 src/views/modules/meta/details.php:80
 
1924
  msgid "Date:"
1925
  msgstr "Datum:"
1926
 
1927
+ #: src/Tribe/View_Helpers.php:60
1928
  msgid "Austria"
1929
  msgstr "Austria"
1930
 
1931
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:100
1932
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:111
1933
+ #: src/views/modules/meta/details.php:85
1934
  msgid "Time:"
1935
  msgstr "Tyd:"
1936
 
1937
+ #: src/Tribe/View_Helpers.php:61
1938
  msgid "Azerbaijan"
1939
  msgstr "Azerbaijan"
1940
 
1941
+ #: src/functions/template-tags/google-map.php:46
 
1942
  msgid "Click to view a Google Map"
1943
  msgstr "Klik om na Google Kaart te gaan"
1944
 
1945
+ #: src/Tribe/View_Helpers.php:62
1946
  msgid "Bahamas"
1947
  msgstr "v"
1948
 
1949
+ #: src/functions/template-tags/google-map.php:47
 
1950
  msgid "+ Google Map"
1951
  msgstr "+ Google Kaart"
1952
 
1953
+ #: src/Tribe/View_Helpers.php:63
1954
  msgid "Bahrain"
1955
  msgstr "Bahrain"
1956
 
1957
+ #: src/Tribe/Amalgamator.php:260 src/admin-views/tribe-options-general.php:194
 
1958
  msgid "Merge Duplicates"
1959
  msgstr "Konsolideer Duplikate"
1960
 
1961
+ #: src/Tribe/View_Helpers.php:64
1962
  msgid "Bangladesh"
1963
  msgstr "Bangladesh"
1964
 
1965
+ #: src/Tribe/App_Shop.php:63 src/Tribe/App_Shop.php:64
1966
+ #: src/Tribe/App_Shop.php:94
1967
  msgid "Event Add-Ons"
1968
  msgstr "Gebeurtenis Toevoegings"
1969
 
1970
+ #: src/Tribe/View_Helpers.php:65
1971
  msgid "Barbados"
1972
  msgstr "Barbados"
1973
 
1974
+ #: src/Tribe/Credits.php:31
1975
  msgid "This calendar is powered by The Events Calendar."
1976
  msgstr ""
1977
 
1978
+ #: src/Tribe/View_Helpers.php:66
1979
  msgid "Belarus"
1980
  msgstr "Belarus"
1981
 
1982
+ #: src/Tribe/Credits.php:48
1983
  msgid "Rate <strong>The Events Calendar</strong> <a href=\"%1$s\" target=\"_blank\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href=\"%1$s\" target=\"_blank\">WordPress.org</a> to keep this plugin free. Thanks from the friendly folks at Modern Tribe."
1984
  msgstr ""
1985
 
1986
+ #: src/Tribe/View_Helpers.php:67
1987
  msgid "Belgium"
1988
  msgstr "België"
1989
 
1990
+ #: src/Tribe/Credits.php:48
1991
  msgid "http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5"
1992
  msgstr ""
1993
 
1994
+ #: src/Tribe/View_Helpers.php:68
1995
  msgid "Belize"
1996
  msgstr "Belize"
1997
 
1998
+ #: src/Tribe/Field.php:209
1999
  msgid "Invalid field type specified"
2000
  msgstr "Ongeldig veld tipe gespesifiseer"
2001
 
2002
+ #: src/Tribe/View_Helpers.php:69
2003
  msgid "Benin"
2004
  msgstr "Benin"
2005
 
2006
+ #: src/Tribe/Field.php:466
2007
  msgid "No radio options specified"
2008
  msgstr "Geen radio opsies gespesifiseer"
2009
 
2010
+ #: src/Tribe/View_Helpers.php:70
2011
  msgid "Bermuda"
2012
  msgstr "Bermuda"
2013
 
2014
+ #: src/Tribe/Field.php:502
2015
  msgid "No checkbox options specified"
2016
  msgstr "Geen boks opsies gespesifiseer"
2017
 
2018
+ #: src/Tribe/View_Helpers.php:71
2019
  msgid "Bhutan"
2020
  msgstr "Bhutan"
2021
 
2022
+ #: src/Tribe/Field.php:558
2023
  msgid "No select options specified"
2024
  msgstr "Geen kies opsies gespesifiseer"
2025
 
2026
+ #: src/Tribe/View_Helpers.php:72
2027
  msgid "Bolivia"
2028
  msgstr "Bolivia"
2029
 
2030
+ #: src/Tribe/Importer/Admin_Page.php:15 src/Tribe/Importer/Admin_Page.php:16
2031
+ #: src/Tribe/Main.php:4011
2032
  msgid "Import"
2033
  msgstr ""
2034
 
2035
+ #: src/Tribe/View_Helpers.php:73
2036
  msgid "Bosnia And Herzegowina"
2037
  msgstr "Bosnia en Herzegowina"
2038
 
2039
+ #: src/Tribe/Importer/Admin_Page.php:54 src/Tribe/Importer/Admin_Page.php:187
 
2040
  msgid "The file went away. Please try again."
2041
  msgstr "Die lêer het verdwyn. Probeer asseblief weer."
2042
 
2043
+ #: src/Tribe/View_Helpers.php:74
2044
  msgid "Botswana"
2045
  msgstr "Botswana"
2046
 
2047
+ #: src/Tribe/Importer/Admin_Page.php:95 src/Tribe/Main.php:777
2048
  msgid "General"
2049
  msgstr "Algemene"
2050
 
2051
+ #: src/Tribe/View_Helpers.php:75
2052
  msgid "Bouvet Island"
2053
  msgstr "Bouvet Island"
2054
 
2055
+ #: src/Tribe/Importer/Admin_Page.php:96
2056
  msgid "Import: CSV"
2057
  msgstr ""
2058
 
2059
+ #: src/Tribe/View_Helpers.php:76
2060
  msgid "Brazil"
2061
  msgstr "Brazilië"
2062
 
2063
+ #: src/Tribe/Importer/Admin_Page.php:153
2064
  msgid "We were unable to process your request. Please try again."
2065
  msgstr "Ons was nie in staat om jou versoek te verwerk nie. Probeer asseblief weer."
2066
 
2067
+ #: src/Tribe/View_Helpers.php:77
2068
  msgid "British Indian Ocean Territory"
2069
  msgstr "Britise Indianse Oseaan Gebied"
2070
 
2071
+ #: src/Tribe/Importer/Admin_Page.php:194
2072
  msgid "<p>The following fields are required for a successful import:</p>"
2073
  msgstr "<p> Die volgende velde is nodig vir 'n suksesvolle invoer: </ p>"
2074
 
2075
+ #: src/Tribe/View_Helpers.php:78
2076
  msgid "Brunei Darussalam"
2077
  msgstr "Brunei Darussalam"
2078
 
2079
+ #: src/Tribe/Importer/Column_Mapper.php:33
2080
  msgid "Do Not Import"
2081
  msgstr "Moet nie invoer nie."
2082
 
2083
+ #: src/Tribe/View_Helpers.php:79
2084
  msgid "Bulgaria"
2085
  msgstr "Bulgaria"
2086
 
2087
+ #: src/Tribe/Importer/Column_Mapper.php:52
2088
  msgid "Event Name"
2089
  msgstr "Gebeurtenis Naam"
2090
 
2091
+ #: src/Tribe/View_Helpers.php:80
2092
  msgid "Burkina Faso"
2093
  msgstr "Burkina Faso"
2094
 
2095
+ #: src/Tribe/Importer/Column_Mapper.php:53
2096
  msgid "Event Description"
2097
  msgstr "Gebeurtenis Beskrywing"
2098
 
2099
+ #: src/Tribe/View_Helpers.php:81
2100
  msgid "Burundi"
2101
  msgstr "Burundi"
2102
 
2103
+ #: src/Tribe/Importer/Column_Mapper.php:54
2104
  msgid "Event Start Date"
2105
  msgstr "Gebeurtenis Begin datum"
2106
 
2107
+ #: src/Tribe/View_Helpers.php:82
2108
  msgid "Cambodia"
2109
  msgstr "Cambodia"
2110
 
2111
+ #: src/Tribe/Importer/Column_Mapper.php:55
2112
  msgid "Event Start Time"
2113
  msgstr "Gebeurtenis Begin Tyd"
2114
 
2115
+ #: src/Tribe/View_Helpers.php:83
2116
  msgid "Cameroon"
2117
  msgstr "Cameroon"
2118
 
2119
+ #: src/Tribe/Importer/Column_Mapper.php:56
2120
  msgid "Event End Date"
2121
  msgstr "Gebeurtenis Eind Datum"
2122
 
2123
+ #: src/Tribe/View_Helpers.php:84
2124
  msgid "Canada"
2125
  msgstr "Kanada"
2126
 
2127
+ #: src/Tribe/Importer/Column_Mapper.php:57
2128
  msgid "Event End Time"
2129
  msgstr "Gebeurtenis Eind Tyd"
2130
 
2131
+ #: src/Tribe/View_Helpers.php:85
2132
  msgid "Cape Verde"
2133
  msgstr "Cape Verde"
2134
 
2135
+ #: src/Tribe/Importer/Column_Mapper.php:58
2136
  msgid "All Day Event"
2137
  msgstr "Heeldag Gebeurtenis"
2138
 
2139
+ #: src/Tribe/View_Helpers.php:86
2140
  msgid "Cayman Islands"
2141
  msgstr "Cayman Islands"
2142
 
2143
+ #: src/Tribe/Importer/Column_Mapper.php:59
2144
  msgid "Event Venue Name"
2145
  msgstr "Gebeurtenis Plek Naam"
2146
 
2147
+ #: src/Tribe/View_Helpers.php:87
2148
  msgid "Central African Republic"
2149
  msgstr "Sentaal Afrika Republiek"
2150
 
2151
+ #: src/Tribe/Importer/Column_Mapper.php:60
2152
  msgid "Event Organizer Name"
2153
  msgstr "Gebeurtenis Gorganiseerder Naam"
2154
 
2155
+ #: src/Tribe/View_Helpers.php:88
2156
  msgid "Chad"
2157
  msgstr "Chad"
2158
 
2159
+ #: src/Tribe/Importer/Column_Mapper.php:61
2160
  msgid "Event Show Map Link"
2161
  msgstr "Gebeurtenis Wys Kaart Skakel"
2162
 
2163
+ #: src/Tribe/View_Helpers.php:89
2164
  msgid "Chile"
2165
  msgstr "Chile"
2166
 
2167
+ #: src/Tribe/Importer/Column_Mapper.php:62
2168
  msgid "Event Show Map"
2169
  msgstr "Gebeurtenis Wys Kaart"
2170
 
2171
+ #: src/Tribe/View_Helpers.php:90
2172
  msgid "China"
2173
  msgstr "China"
2174
 
2175
+ #: src/Tribe/Importer/Column_Mapper.php:63
2176
  msgid "Event Cost"
2177
  msgstr "Toegansfooi"
2178
 
2179
+ #: src/Tribe/View_Helpers.php:91
2180
  msgid "Christmas Island"
2181
  msgstr "Christmas Island"
2182
 
2183
+ #: src/Tribe/View_Helpers.php:92
2184
  msgid "Cocos (Keeling) Islands"
2185
  msgstr "Cocos (Keeling) Islands"
2186
 
2187
+ #: src/Tribe/Importer/Column_Mapper.php:66
2188
  msgid "Event Category"
2189
  msgstr "Gebeurtenis Kategorie"
2190
 
2191
+ #: src/Tribe/View_Helpers.php:93
2192
  msgid "Colombia"
2193
  msgstr "Colombia"
2194
 
2195
+ #: src/Tribe/Importer/Column_Mapper.php:68
2196
  msgid "Event Website"
2197
  msgstr "Gebeurtenis Webwerf"
2198
 
2199
+ #: src/Tribe/View_Helpers.php:94
2200
  msgid "Comoros"
2201
  msgstr "Comoros"
2202
 
2203
+ #: src/Tribe/Importer/Column_Mapper.php:74
2204
  msgid "Venue Name"
2205
  msgstr "Plek Naam"
2206
 
2207
+ #: src/Tribe/View_Helpers.php:95
2208
  msgid "Congo"
2209
  msgstr "Congo"
2210
 
2211
+ #: src/Tribe/Importer/Column_Mapper.php:75
2212
  msgid "Venue Country"
2213
  msgstr "Plek Land"
2214
 
2215
+ #: src/Tribe/View_Helpers.php:96
2216
  msgid "Congo, The Democratic Republic Of The"
2217
  msgstr "Congo, The Democratic Republic Of The"
2218
 
2219
+ #: src/Tribe/Importer/Column_Mapper.php:76
2220
  msgid "Venue Address"
2221
  msgstr "Plek Adres"
2222
 
2223
+ #: src/Tribe/View_Helpers.php:97
2224
  msgid "Cook Islands"
2225
  msgstr "Cook Islands"
2226
 
2227
+ #: src/Tribe/Importer/Column_Mapper.php:77
2228
  msgid "Venue Address 2"
2229
  msgstr ""
2230
 
2231
+ #: src/Tribe/View_Helpers.php:98
2232
  msgid "Costa Rica"
2233
  msgstr "Costa Rica"
2234
 
2235
+ #: src/Tribe/Importer/Column_Mapper.php:78
2236
  msgid "Venue City"
2237
  msgstr "Plek Stad"
2238
 
2239
+ #: src/Tribe/View_Helpers.php:99
2240
  msgid "Cote D'Ivoire"
2241
  msgstr "v"
2242
 
2243
+ #: src/Tribe/Importer/Column_Mapper.php:79
2244
  msgid "Venue State/Province"
2245
  msgstr "Plek Provinsie"
2246
 
2247
+ #: src/Tribe/View_Helpers.php:100
2248
  msgid "Croatia (Local Name: Hrvatska)"
2249
  msgstr "Croatia (Local Name: Hrvatska)"
2250
 
2251
+ #: src/Tribe/Importer/Column_Mapper.php:80
2252
  msgid "Venue Zip"
2253
  msgstr "Plek Poskode"
2254
 
2255
+ #: src/Tribe/View_Helpers.php:101
2256
  msgid "Cuba"
2257
  msgstr "Cuba"
2258
 
2259
+ #: src/Tribe/Importer/Column_Mapper.php:81
2260
  msgid "Venue Phone"
2261
  msgstr "Plek Telefoon"
2262
 
2263
+ #: src/Tribe/View_Helpers.php:102
2264
  msgid "Cyprus"
2265
  msgstr "Cyprus"
2266
 
2267
+ #: src/Tribe/Importer/Column_Mapper.php:82
2268
  msgid "Venue Website"
2269
  msgstr ""
2270
 
2271
+ #: src/Tribe/View_Helpers.php:103
2272
  msgid "Czech Republic"
2273
  msgstr "Czech Republic"
2274
 
2275
+ #: src/Tribe/Importer/Column_Mapper.php:88
2276
  msgid "Organizer Name"
2277
  msgstr "Organiseerder Naam"
2278
 
2279
+ #: src/Tribe/View_Helpers.php:104
2280
  msgid "Denmark"
2281
  msgstr "Denmark"
2282
 
2283
+ #: src/Tribe/Importer/Column_Mapper.php:89
2284
  msgid "Organizer Email"
2285
  msgstr "Organiseerder E-pos"
2286
 
2287
+ #: src/Tribe/View_Helpers.php:105
2288
  msgid "Djibouti"
2289
  msgstr "Djibouti"
2290
 
2291
+ #: src/Tribe/Importer/Column_Mapper.php:90
2292
  msgid "Organizer Website"
2293
  msgstr "Organiseerder Webtuiste"
2294
 
2295
+ #: src/Tribe/View_Helpers.php:106
2296
  msgid "Dominica"
2297
  msgstr "Dominica"
2298
 
2299
+ #: src/Tribe/Importer/Column_Mapper.php:91
2300
  msgid "Organizer Phone"
2301
  msgstr "Organiseerder Telefoon"
2302
 
2303
+ #: src/Tribe/View_Helpers.php:107
2304
  msgid "Dominican Republic"
2305
  msgstr "Dominican Republic"
2306
 
2307
+ #: src/Tribe/Importer/File_Importer.php:38
2308
  msgid "No importer defined for %s"
2309
  msgstr "Geen invoerder is vir %s gedefinieer."
2310
 
2311
+ #: src/Tribe/View_Helpers.php:108
2312
  msgid "East Timor"
2313
  msgstr "East Timor"
2314
 
2315
+ #: src/Tribe/Importer/File_Importer.php:110
2316
  msgid "Missing required fields in row %d."
2317
  msgstr "Daar ontbreek vereiste velde in ry %d."
2318
 
2319
+ #: src/Tribe/View_Helpers.php:109
2320
  msgid "Ecuador"
2321
  msgstr "East Timor"
2322
 
2323
+ #: src/Tribe/Importer/File_Importer.php:118
2324
  msgid "Failed to import record in row %d."
2325
  msgstr "Die rekord in %d kon nie ingevoer word nie."
2326
 
2327
+ #: src/Tribe/View_Helpers.php:110
2328
  msgid "Egypt"
2329
  msgstr "East Timor"
2330
 
2331
+ #: src/Tribe/Importer/File_Importer.php:127
2332
  msgid "%s (post ID %d) updated."
2333
  msgstr "%s (post ID %d) opgedateer."
2334
 
2335
+ #: src/Tribe/View_Helpers.php:111
2336
  msgid "El Salvador"
2337
  msgstr "El Salvador"
2338
 
2339
+ #: src/Tribe/Importer/File_Importer.php:131
2340
  msgid "%s (post ID %d) created."
2341
  msgstr "%s (post ID %d) geskep."
2342
 
2343
+ #: src/Tribe/View_Helpers.php:112
2344
  msgid "Equatorial Guinea"
2345
  msgstr "Equatorial Guinea"
2346
 
2347
+ #: src/Tribe/Importer/File_Uploader.php:28
2348
  msgid "Temporary file not found. Could not save %s."
2349
  msgstr "Tydelike lêer nie gevind nie. Kon nie %s stoor nie."
2350
 
2351
+ #: src/Tribe/View_Helpers.php:113
2352
  msgid "Eritrea"
2353
  msgstr "Eritrea"
2354
 
2355
+ #: src/Tribe/Importer/File_Uploader.php:36
2356
  msgid "Could not save %s."
2357
  msgstr "Kon %s nie stoor nie."
2358
 
2359
+ #: src/Tribe/View_Helpers.php:114
2360
  msgid "Estonia"
2361
  msgstr "Estonia"
2362
 
2363
+ #: src/Tribe/Importer/Options.php:29 src/Tribe/Settings.php:520
2364
  msgid "Settings saved."
2365
  msgstr "Verstellings Gestoor"
2366
 
2367
+ #: src/Tribe/View_Helpers.php:115
2368
  msgid "Ethiopia"
2369
  msgstr "Ethiopia"
2370
 
2371
+ #: src/Tribe/List_Widget.php:30
2372
  msgid "A widget that displays upcoming events."
2373
  msgstr "'N widget wat die komende gebeurtenisse vertoon."
2374
 
2375
+ #: src/Tribe/View_Helpers.php:116
2376
  msgid "Falkland Islands (Malvinas)"
2377
  msgstr "Falkland Islands (Malvinas)"
2378
 
2379
+ #: src/Tribe/List_Widget.php:38
2380
  msgid "Events List"
2381
  msgstr "Gebeure Lys"
2382
 
2383
+ #: src/Tribe/View_Helpers.php:117
2384
  msgid "Faroe Islands"
2385
  msgstr "Faroe Islands"
2386
 
2387
+ #: src/Tribe/List_Widget.php:172
2388
  msgid "Upcoming Events"
2389
  msgstr "Komende Gebeure"
2390
 
2391
+ #: src/Tribe/View_Helpers.php:118
2392
  msgid "Fiji"
2393
  msgstr "Fiji"
2394
 
2395
+ #: src/Tribe/Main.php:503 src/functions/template-tags/venue.php:52
2396
+ #: src/io/csv/admin-views/import.php:45
2397
  msgid "Venues"
2398
  msgstr "Plekke"
2399
 
2400
+ #: src/Tribe/View_Helpers.php:119
2401
  msgid "Finland"
2402
  msgstr "Finland"
2403
 
2404
+ #: src/Tribe/Main.php:511
2405
+ #: src/functions/advanced-functions/meta_registration.php:126
2406
+ #: src/functions/template-tags/venue.php:41
2407
  msgid "Venue"
2408
  msgstr "Plekke"
2409
 
2410
+ #: src/Tribe/View_Helpers.php:120
2411
  msgid "France"
2412
  msgstr "France"
2413
 
2414
+ #: src/Tribe/Main.php:519 src/functions/template-tags/organizer.php:82
2415
+ #: src/io/csv/admin-views/import.php:46
2416
  msgid "Organizers"
2417
  msgstr "Organiseerders"
2418
 
2419
+ #: src/Tribe/View_Helpers.php:121
2420
  msgid "France, Metropolitan"
2421
  msgstr "France, Metropolitan"
2422
 
2423
+ #: src/Tribe/Main.php:527
2424
+ #: src/functions/advanced-functions/meta_registration.php:205
2425
+ #: src/functions/template-tags/organizer.php:71
2426
  msgid "Organizer"
2427
  msgstr "Organiseerder"
2428
 
2429
+ #: src/Tribe/View_Helpers.php:122
2430
  msgid "French Guiana"
2431
  msgstr "French Guiana"
2432
 
2433
+ #: src/Tribe/Main.php:535 src/functions/template-tags/general.php:71
2434
+ #: src/io/csv/admin-views/import.php:47
2435
  msgid "Events"
2436
  msgstr "Gebeure"
2437
 
2438
+ #: src/Tribe/View_Helpers.php:123
2439
  msgid "French Polynesia"
2440
  msgstr "French Polynesia"
2441
 
2442
+ #: src/Tribe/Main.php:543 src/functions/template-tags/general.php:60
2443
  msgid "Event"
2444
  msgstr "Gebeurtenis"
2445
 
2446
+ #: src/Tribe/View_Helpers.php:124
2447
  msgid "French Southern Territories"
2448
  msgstr "French Southern Territories"
2449
 
2450
+ #. Plugin Name of the plugin/theme
2451
+ #: src/Tribe/Main.php:583 src/Tribe/Settings.php:132
2452
+ #: src/admin-views/tribe-options-help.php:272
2453
  msgid "The Events Calendar"
2454
  msgstr "The Events Calendar"
2455
 
2456
+ #: src/Tribe/View_Helpers.php:125
2457
  msgid "Gabon"
2458
  msgstr "Gabon"
2459
 
2460
+ #: src/Tribe/Main.php:588
2461
  msgid "month"
2462
  msgstr "maand"
2463
 
2464
+ #: src/Tribe/View_Helpers.php:126
2465
  msgid "Gambia"
2466
  msgstr "Gambia"
2467
 
2468
+ #: src/Tribe/Main.php:589
2469
  msgid "list"
2470
  msgstr ""
2471
 
2472
+ #: src/Tribe/View_Helpers.php:127 src/Tribe/View_Helpers.php:326
2473
  msgid "Georgia"
2474
  msgstr "Georgia"
2475
 
2476
+ #: src/Tribe/Main.php:590
2477
  msgid "upcoming"
2478
  msgstr "komende"
2479
 
2480
+ #: src/Tribe/View_Helpers.php:128
2481
  msgid "Germany"
2482
  msgstr "Germany"
2483
 
2484
+ #: src/Tribe/Main.php:591
2485
  msgid "past"
2486
  msgstr "vorige"
2487
 
2488
+ #: src/Tribe/View_Helpers.php:129
2489
  msgid "Ghana"
2490
  msgstr "Ghana"
2491
 
2492
+ #: src/Tribe/Main.php:592
2493
  msgid "day"
2494
  msgstr ""
2495
 
2496
+ #: src/Tribe/View_Helpers.php:130
2497
  msgid "Gibraltar"
2498
  msgstr "Gibraltar"
2499
 
2500
+ #: src/Tribe/Main.php:593
2501
  msgid "today"
2502
  msgstr ""
2503
 
2504
+ #: src/Tribe/View_Helpers.php:131
2505
  msgid "Greece"
2506
  msgstr "Greece"
2507
 
2508
+ #: src/Tribe/Main.php:620
2509
  msgid "Initializing Tribe Events on %s"
2510
  msgstr "InisialiseerTribe Events op %s"
2511
 
2512
+ #: src/Tribe/View_Helpers.php:132
2513
  msgid "Greenland"
2514
  msgstr "Greenland"
2515
 
2516
+ #: src/Tribe/Main.php:697
2517
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
2518
  msgstr "Jou weergawe van The Events Calendar is nie up-op datum met een van jou The Events Calendarr byvoegings. %sDateer asseblief nou op.%s"
2519
 
2520
+ #: src/Tribe/View_Helpers.php:133
2521
  msgid "Grenada"
2522
  msgstr "Grenada"
2523
 
2524
+ #: src/Tribe/Main.php:709
2525
  msgid "The following plugins are out of date: <b>%s</b>. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %sLearn More%s."
2526
  msgstr ""
2527
 
2528
+ #: src/Tribe/View_Helpers.php:134
2529
  msgid "Guadeloupe"
2530
  msgstr "Guadeloupe"
2531
 
2532
+ #: src/Tribe/Main.php:819 src/admin-views/tribe-options-licenses.php:33
2533
  msgid "Licenses"
2534
  msgstr "Lisensies"
2535
 
2536
+ #: src/Tribe/View_Helpers.php:135
2537
  msgid "Guam"
2538
  msgstr "Guam"
2539
 
2540
+ #: src/Tribe/View_Helpers.php:136
 
 
 
 
2541
  msgid "Guatemala"
2542
  msgstr "Guatemala"
2543
 
2544
+ #: src/Tribe/Main.php:778
2545
  msgid "Display"
2546
  msgstr "Aansig"
2547
 
2548
+ #: src/Tribe/View_Helpers.php:137
2549
  msgid "Guinea"
2550
  msgstr "Guinea"
2551
 
2552
+ #: src/Tribe/Main.php:782 src/Tribe/Main.php:4054 src/Tribe/Main.php:4149
 
2553
  msgid "Help"
2554
  msgstr "Help"
2555
 
2556
+ #: src/Tribe/View_Helpers.php:138
2557
  msgid "Guinea-Bissau"
2558
  msgstr "Guinea-Bissau"
2559
 
2560
+ #: src/Tribe/Main.php:920
2561
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
2562
  msgstr "Jammer, Die Kalender vereis WordPress% s of hoër. Gradeer asseblief jou WordPress installasie op."
2563
 
2564
+ #: src/Tribe/View_Helpers.php:139
2565
  msgid "Guyana"
2566
  msgstr "Guyana"
2567
 
2568
+ #: src/Tribe/Main.php:923
2569
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
2570
  msgstr "Jammer, Die Kalender vereis PHP% s of hoër. Praat met jou web host oor die beweging van jou na 'n nuwer weergawe van PHP."
2571
 
2572
+ #: src/Tribe/View_Helpers.php:140
2573
  msgid "Haiti"
2574
  msgstr "Haiti"
2575
 
2576
+ #: src/Tribe/Main.php:1197 src/Tribe/Main.php:2240
2577
  msgid "category"
2578
  msgstr "Kategorie"
2579
 
2580
+ #: src/Tribe/View_Helpers.php:141
2581
  msgid "Heard And Mc Donald Islands"
2582
  msgstr "Heard And Mc Donald Islands"
2583
 
2584
+ #: src/Tribe/Main.php:1208 src/Tribe/Main.php:2239
2585
  msgid "tag"
2586
  msgstr "etiket"
2587
 
2588
+ #: src/Tribe/View_Helpers.php:142
2589
  msgid "Holy See (Vatican City State)"
2590
  msgstr "Holy See (Vatican City State)"
2591
 
2592
+ #: src/Tribe/Main.php:1243 src/Tribe/Main.php:1261 src/Tribe/Main.php:1279
 
2593
  msgid "Add New"
2594
  msgstr "Voeg By"
2595
 
2596
+ #: src/Tribe/View_Helpers.php:143
2597
  msgid "Honduras"
2598
  msgstr "Honduras"
2599
 
2600
+ #: src/Tribe/Main.php:1244 src/Tribe/Main.php:1262 src/Tribe/Main.php:1280
2601
+ #: src/Tribe/Main.php:1405 src/Tribe/Main.php:1406
 
2602
  msgid "Add New %s"
2603
  msgstr ""
2604
 
2605
+ #: src/Tribe/View_Helpers.php:144
2606
  msgid "Hong Kong"
2607
  msgstr "Hong Kong"
2608
 
2609
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:112 src/Tribe/Main.php:1245
2610
+ #: src/Tribe/Main.php:1263 src/Tribe/Main.php:1281 src/Tribe/Main.php:1425
2611
+ #: src/Tribe/Main.php:1477 src/Tribe/Main.php:3998
 
2612
  msgid "Edit %s"
2613
  msgstr ""
2614
 
2615
+ #: src/Tribe/View_Helpers.php:145
2616
  msgid "Hungary"
2617
  msgstr "Hungary"
2618
 
2619
+ #: src/Tribe/Main.php:1246 src/Tribe/Main.php:1264 src/Tribe/Main.php:1282
 
2620
  msgid "New %s"
2621
  msgstr ""
2622
 
2623
+ #: src/Tribe/View_Helpers.php:146
2624
  msgid "Iceland"
2625
  msgstr "Iceland"
2626
 
2627
+ #: src/Tribe/Main.php:1247 src/Tribe/Main.php:1265 src/Tribe/Main.php:1283
 
2628
  msgid "View %s"
2629
  msgstr ""
2630
 
2631
+ #: src/Tribe/View_Helpers.php:147
2632
  msgid "India"
2633
  msgstr "India"
2634
 
2635
+ #: src/Tribe/Main.php:1248 src/Tribe/Main.php:1266 src/Tribe/Main.php:1284
 
2636
  msgid "Search %s"
2637
  msgstr ""
2638
 
2639
+ #: src/Tribe/View_Helpers.php:148
2640
  msgid "Indonesia"
2641
  msgstr "Indonesia"
2642
 
2643
+ #: src/Tribe/Main.php:1249 src/Tribe/Main.php:1267 src/Tribe/Main.php:1285
 
2644
  msgid "No %s found"
2645
  msgstr ""
2646
 
2647
+ #: src/Tribe/View_Helpers.php:149
2648
  msgid "Iran (Islamic Republic Of)"
2649
  msgstr "Iran (Islamic Republic Of)"
2650
 
2651
+ #: src/Tribe/Main.php:1250 src/Tribe/Main.php:1268 src/Tribe/Main.php:1286
 
2652
  msgid "No %s found in Trash"
2653
  msgstr ""
2654
 
2655
+ #: src/Tribe/View_Helpers.php:150
2656
  msgid "Iraq"
2657
  msgstr "Iraq"
2658
 
2659
+ #: src/Tribe/Main.php:1296
2660
  msgid "%s Category"
2661
  msgstr ""
2662
 
2663
+ #: src/Tribe/View_Helpers.php:151
2664
  msgid "Ireland"
2665
  msgstr "Ireland"
2666
 
2667
+ #: src/Tribe/Main.php:1297
2668
  msgid "Search %s Categories"
2669
  msgstr ""
2670
 
2671
+ #: src/Tribe/View_Helpers.php:152
2672
  msgid "Israel"
2673
  msgstr "Israel"
2674
 
2675
+ #: src/Tribe/Main.php:1298
2676
  msgid "All %s Categories"
2677
  msgstr ""
2678
 
2679
+ #: src/Tribe/View_Helpers.php:153
2680
  msgid "Italy"
2681
  msgstr "Italy"
2682
 
2683
+ #: src/Tribe/Main.php:1299
2684
  msgid "Parent %s Category"
2685
  msgstr ""
2686
 
2687
+ #: src/Tribe/View_Helpers.php:154
2688
  msgid "Jamaica"
2689
  msgstr "Jamaica"
2690
 
2691
+ #: src/Tribe/Main.php:1300
2692
  msgid "Parent %s Category:"
2693
  msgstr ""
2694
 
2695
+ #: src/Tribe/View_Helpers.php:155
2696
  msgid "Japan"
2697
  msgstr "Japan"
2698
 
2699
+ #: src/Tribe/Main.php:1301
2700
  msgid "Edit %s Category"
2701
  msgstr ""
2702
 
2703
+ #: src/Tribe/View_Helpers.php:156
2704
  msgid "Jordan"
2705
  msgstr "Jordan"
2706
 
2707
+ #: src/Tribe/Main.php:1302
2708
  msgid "Update %s Category"
2709
  msgstr ""
2710
 
2711
+ #: src/Tribe/View_Helpers.php:157
2712
  msgid "Kazakhstan"
2713
  msgstr "Kazakhstan"
2714
 
2715
+ #: src/Tribe/Main.php:1303
2716
  msgid "Add New %s Category"
2717
  msgstr ""
2718
 
2719
+ #: src/Tribe/View_Helpers.php:158
2720
  msgid "Kenya"
2721
  msgstr "Kenya"
2722
 
2723
+ #: src/Tribe/Main.php:1304
2724
  msgid "New %s Category Name"
2725
  msgstr ""
2726
 
2727
+ #: src/Tribe/View_Helpers.php:159
2728
  msgid "Kiribati"
2729
  msgstr "Kiribati"
2730
 
2731
+ #: src/Tribe/Main.php:1320
2732
  msgid "%1$s updated. <a href=\"%2$s\">View %3$s</a>"
2733
  msgstr ""
2734
 
2735
+ #: src/Tribe/View_Helpers.php:160
2736
  msgid "Korea, Democratic People's Republic Of"
2737
  msgstr "Korea, Democratic People's Republic Of"
2738
 
2739
+ #: src/Tribe/Main.php:1321 src/Tribe/Main.php:1357 src/Tribe/Main.php:1376
 
2740
  msgid "Custom field updated."
2741
  msgstr "Bykomende veld opgedateer."
2742
 
2743
+ #: src/Tribe/View_Helpers.php:161
2744
  msgid "Korea, Republic Of"
2745
  msgstr "Korea, Republic Of"
2746
 
2747
+ #: src/Tribe/Main.php:1322 src/Tribe/Main.php:1358 src/Tribe/Main.php:1377
 
2748
  msgid "Custom field deleted."
2749
  msgstr "Bykomende veld verwyder."
2750
 
2751
+ #: src/Tribe/View_Helpers.php:162
2752
  msgid "Kuwait"
2753
  msgstr "Kuwait"
2754
 
2755
+ #: src/Tribe/Main.php:1323 src/Tribe/Main.php:1356 src/Tribe/Main.php:1359
2756
+ #: src/Tribe/Main.php:1375 src/Tribe/Main.php:1378
 
2757
  msgid "%s updated."
2758
  msgstr ""
2759
 
2760
+ #: src/Tribe/View_Helpers.php:163
2761
  msgid "Kyrgyzstan"
2762
  msgstr "Kyrgyzstan"
2763
 
2764
+ #: src/Tribe/Main.php:1325
2765
  msgid "%1$s restored to revision from %2$s"
2766
  msgstr ""
2767
 
2768
+ #: src/Tribe/View_Helpers.php:164
2769
  msgid "Lao People's Democratic Republic"
2770
  msgstr "Lao People's Democratic Republic"
2771
 
2772
+ #: src/Tribe/Main.php:1327
2773
  msgid "Event published. <a href=\"%1$s\">View %2$s</a>"
2774
  msgstr ""
2775
 
2776
+ #: src/Tribe/View_Helpers.php:165
2777
  msgid "Latvia"
2778
  msgstr "Latvia"
2779
 
2780
+ #: src/Tribe/Main.php:1331 src/Tribe/Main.php:1363 src/Tribe/Main.php:1382
 
2781
  msgid "%s saved."
2782
  msgstr ""
2783
 
2784
+ #: src/Tribe/View_Helpers.php:166
2785
  msgid "Lebanon"
2786
  msgstr "Lebanon"
2787
 
2788
+ #: src/Tribe/Main.php:1333
2789
  msgid "%1$s submitted. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2790
  msgstr ""
2791
 
2792
+ #: src/Tribe/View_Helpers.php:167
2793
  msgid "Lesotho"
2794
  msgstr "Lesotho"
2795
 
2796
+ #: src/Tribe/Main.php:1339
2797
  msgid "%1$s scheduled for: <strong>%2$s</strong>. <a target=\"_blank\" href=\"%3$s\">Preview %4$s</a>"
2798
  msgstr ""
2799
 
2800
+ #: src/Tribe/View_Helpers.php:168
2801
  msgid "Liberia"
2802
  msgstr "Liberia"
2803
 
2804
+ #: src/Tribe/Main.php:1342 src/Tribe/Main.php:1368 src/Tribe/Main.php:1387
 
2805
  msgid "M j, Y @ G:i"
2806
  msgstr "M j, Y @ G:i"
2807
 
2808
+ #: src/Tribe/View_Helpers.php:169
2809
  msgid "Libya"
2810
  msgstr "Libya"
2811
 
2812
+ #: src/Tribe/Main.php:1347
2813
  msgid "%1$s draft updated. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2814
  msgstr ""
2815
 
2816
+ #: src/Tribe/View_Helpers.php:170
2817
  msgid "Liechtenstein"
2818
  msgstr "Liechtenstein"
2819
 
2820
+ #: src/Tribe/Main.php:1361 src/Tribe/Main.php:1380
2821
  msgid "%s restored to revision from %s"
2822
  msgstr ""
2823
 
2824
+ #: src/Tribe/View_Helpers.php:171
2825
  msgid "Lithuania"
2826
  msgstr "Lithuania"
2827
 
2828
+ #: src/Tribe/Main.php:1362 src/Tribe/Main.php:1381
2829
  msgid "%s published."
2830
  msgstr ""
2831
 
2832
+ #: src/Tribe/View_Helpers.php:172
2833
  msgid "Luxembourg"
2834
  msgstr "Luxembourg"
2835
 
2836
+ #: src/Tribe/Main.php:1364 src/Tribe/Main.php:1383
2837
  msgid "%s submitted."
2838
  msgstr ""
2839
 
2840
+ #: src/Tribe/View_Helpers.php:173
2841
  msgid "Macau"
2842
  msgstr "Macau"
2843
 
2844
+ #: src/Tribe/Main.php:1366 src/Tribe/Main.php:1385
2845
  msgid "%s scheduled for: <strong>%2$s</strong>."
2846
  msgstr ""
2847
 
2848
+ #: src/Tribe/View_Helpers.php:174
2849
  msgid "Macedonia"
2850
  msgstr "Macedonia"
2851
 
2852
+ #: src/Tribe/Main.php:1370 src/Tribe/Main.php:1389
2853
  msgid "%s draft updated."
2854
  msgstr ""
2855
 
2856
+ #: src/Tribe/View_Helpers.php:175
2857
  msgid "Madagascar"
2858
  msgstr "Madagascar"
2859
 
2860
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88 src/Tribe/Main.php:1424
2861
+ #: src/Tribe/Main.php:1475
2862
  msgid "Use Saved %s:"
2863
  msgstr ""
2864
 
2865
+ #: src/Tribe/View_Helpers.php:176
2866
  msgid "Malawi"
2867
  msgstr "Malawi"
2868
 
2869
+ #: src/Tribe/Main.php:1452
2870
  msgid "Without a defined location your event will not display a <a href=\"https://support.google.com/webmasters/answer/164506\" target=\"_blank\">Google Rich Snippet</a> on the search results."
2871
  msgstr ""
2872
 
2873
+ #: src/Tribe/View_Helpers.php:177
2874
  msgid "Malaysia"
2875
  msgstr "Malaysia"
2876
 
2877
+ #: src/Tribe/Main.php:1543 src/Tribe/Main.php:1625
2878
  msgid "Use New %s"
2879
  msgstr ""
2880
 
2881
+ #: src/Tribe/View_Helpers.php:178
2882
  msgid "Maldives"
2883
  msgstr "Maldives"
2884
 
2885
+ #: src/Tribe/Main.php:1545 src/Tribe/Main.php:1627
2886
  msgid "My %s"
2887
  msgstr ""
2888
 
2889
+ #: src/Tribe/View_Helpers.php:179
2890
  msgid "Mali"
2891
  msgstr "Mali"
2892
 
2893
+ #: src/Tribe/Main.php:1550 src/Tribe/Main.php:1632
2894
  msgid "Available %s"
2895
  msgstr ""
2896
 
2897
+ #: src/Tribe/View_Helpers.php:180
2898
  msgid "Malta"
2899
  msgstr "Malta"
2900
 
2901
+ #: src/Tribe/Main.php:1561 src/Tribe/Main.php:1643
2902
  msgid "No saved %s exists."
2903
  msgstr ""
2904
 
2905
+ #: src/Tribe/View_Helpers.php:181
2906
  msgid "Marshall Islands"
2907
  msgstr "Marshall Islands"
2908
 
2909
+ #: src/Tribe/Main.php:1787
2910
  msgid "Next"
2911
  msgstr "Volgende"
2912
 
2913
+ #: src/Tribe/View_Helpers.php:182
2914
  msgid "Martinique"
2915
  msgstr "Martinique"
2916
 
2917
+ #: src/Tribe/Main.php:1788
2918
  msgid "Prev"
2919
  msgstr "Vorige"
2920
 
2921
+ #: src/Tribe/View_Helpers.php:183
2922
  msgid "Mauritania"
2923
  msgstr "Mauritania"
2924
 
2925
+ #: src/Tribe/Main.php:1789 src/functions/template-tags/day.php:105
2926
  msgid "Today"
2927
  msgstr "Vandag"
2928
 
2929
+ #: src/Tribe/View_Helpers.php:184
2930
  msgid "Mauritius"
2931
  msgstr "Mauritius"
2932
 
2933
+ #: src/Tribe/Main.php:1790
2934
  msgid "Done"
2935
  msgstr "Afgehandel"
2936
 
2937
+ #: src/Tribe/View_Helpers.php:185
2938
  msgid "Mayotte"
2939
  msgstr "Mayotte"
2940
 
2941
+ #: src/Tribe/Main.php:1964
2942
  msgid "Network"
2943
  msgstr "Netwerk"
2944
 
2945
+ #: src/Tribe/View_Helpers.php:186
2946
  msgid "Mexico"
2947
  msgstr "Mexico"
2948
 
2949
+ #: src/Tribe/Main.php:3508 src/Tribe/Main.php:3543
2950
+ #: src/functions/template-tags/day.php:158
2951
+ #: src/functions/template-tags/day.php:180
2952
  msgid "Date out of range."
2953
  msgstr "Datum is buite die verlangde reeks."
2954
 
2955
+ #: src/Tribe/View_Helpers.php:187
2956
  msgid "Micronesia, Federated States Of"
2957
  msgstr "Micronesia, Federated States Of"
2958
 
2959
+ #: src/Tribe/Main.php:3579
2960
  msgid "%s Options"
2961
  msgstr ""
2962
 
2963
+ #: src/Tribe/View_Helpers.php:188
2964
  msgid "Moldova, Republic Of"
2965
  msgstr "Moldova, Republic Of"
2966
 
2967
+ #: src/Tribe/Main.php:3586 src/Tribe/Main.php:3597
2968
  msgid "%s Information"
2969
  msgstr ""
2970
 
2971
+ #: src/Tribe/View_Helpers.php:189
2972
  msgid "Monaco"
2973
  msgstr "Monaco"
2974
 
2975
+ #: src/Tribe/Main.php:3810
2976
  msgid "Support"
2977
  msgstr "Ondersteuning"
2978
 
2979
+ #: src/Tribe/View_Helpers.php:190
2980
  msgid "Mongolia"
2981
  msgstr "Mongolia"
2982
 
2983
+ #: src/Tribe/Main.php:3813
2984
  msgid "View All Add-Ons"
2985
  msgstr "Vertoon alle toevoegings"
2986
 
2987
+ #: src/Tribe/View_Helpers.php:191
2988
  msgid "Montenegro"
2989
  msgstr "Montenegro"
2990
 
2991
+ #: src/Tribe/Main.php:3834
2992
  msgid "News from Modern Tribe"
2993
  msgstr "Nuus vanaf Modern Tribe"
2994
 
2995
+ #: src/Tribe/View_Helpers.php:192
2996
  msgid "Montserrat"
2997
  msgstr "Montserrat"
2998
 
2999
+ #: src/Tribe/Main.php:3883
3000
  msgid "Additional Functionality"
3001
  msgstr "Bykomende Funksionaliteit"
3002
 
3003
+ #: src/Tribe/View_Helpers.php:193
3004
  msgid "Morocco"
3005
  msgstr "Morocco"
3006
 
3007
+ #: src/Tribe/Main.php:3888
3008
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
3009
  msgstr "Op soek na bykomende funksionaliteit, insluitend herhalende gebeure, kaartjieverkope, gemeenskaplike gebeure, nuwe aansigte en meer?"
3010
 
3011
+ #: src/Tribe/View_Helpers.php:194
3012
  msgid "Mozambique"
3013
  msgstr "Mozambique"
3014
 
3015
+ #: src/Tribe/Main.php:3889
3016
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
3017
  msgstr "Kyk na die <a href=\"%s\"> beskikbaar byvoegings </ a>."
3018
 
3019
+ #: src/Tribe/View_Helpers.php:195
3020
  msgid "Myanmar"
3021
  msgstr "Myanmar"
3022
 
3023
+ #: src/Tribe/Main.php:3940
3024
  msgid "%s"
3025
  msgstr ""
3026
 
3027
+ #: src/Tribe/View_Helpers.php:196
3028
  msgid "Namibia"
3029
  msgstr "Namibia"
3030
 
3031
+ #: src/Tribe/Main.php:3977 src/Tribe/Main.php:4073
3032
  msgid "View Calendar"
3033
  msgstr "Vertoon Kalender"
3034
 
3035
+ #: src/Tribe/View_Helpers.php:197
3036
  msgid "Nauru"
3037
  msgstr "Nauru"
3038
 
3039
+ #: src/Tribe/Main.php:3987
3040
  msgid "Add %s"
3041
  msgstr ""
3042
 
3043
+ #: src/Tribe/View_Helpers.php:198
3044
  msgid "Nepal"
3045
  msgstr "Nepal"
3046
 
3047
+ #: src/Tribe/Main.php:4019
3048
  msgid "CSV"
3049
  msgstr ""
3050
 
3051
+ #: src/Tribe/View_Helpers.php:199
3052
  msgid "Netherlands"
3053
  msgstr "Netherlands"
3054
 
3055
+ #: src/Tribe/Main.php:4041 src/Tribe/Main.php:4131 src/Tribe/Settings.php:161
 
3056
  msgid "Settings"
3057
  msgstr "Verstellings"
3058
 
3059
+ #: src/Tribe/View_Helpers.php:200
3060
  msgid "Netherlands Antilles"
3061
  msgstr "Netherlands Antilles"
3062
 
3063
+ #: src/Tribe/Main.php:4132
3064
  msgid "Calendar"
3065
  msgstr "Kalender"
3066
 
3067
+ #: src/Tribe/View_Helpers.php:201
3068
  msgid "New Caledonia"
3069
  msgstr "New Caledonia"
3070
 
3071
+ #: src/Tribe/Main.php:4208
3072
  msgid "List"
3073
  msgstr "Lys"
3074
 
3075
+ #: src/Tribe/View_Helpers.php:202
3076
  msgid "New Zealand"
3077
  msgstr "New Zealand"
3078
 
3079
+ #: src/Tribe/Main.php:4226
3080
  msgid "Month"
3081
  msgstr "Maand"
3082
 
3083
+ #: src/Tribe/View_Helpers.php:203
3084
  msgid "Nicaragua"
3085
  msgstr "Nicaragua"
3086
 
3087
+ #: src/Tribe/Main.php:4243
3088
  msgid "Day"
3089
  msgstr ""
3090
 
3091
+ #: src/Tribe/View_Helpers.php:204
3092
  msgid "Niger"
3093
  msgstr "Niger"
3094
 
3095
+ #: src/Tribe/Main.php:4268 src/Tribe/Main.php:4269
3096
  msgid "Search"
3097
  msgstr "Soek"
3098
 
3099
+ #: src/Tribe/View_Helpers.php:205
3100
  msgid "Nigeria"
3101
  msgstr "Nigeria"
3102
 
3103
+ #: src/Tribe/Main.php:4293 src/Tribe/Main.php:4309
3104
  msgid "Date"
3105
  msgstr "Datum"
3106
 
3107
+ #: src/Tribe/View_Helpers.php:206
3108
  msgid "Niue"
3109
  msgstr "Niue"
3110
 
3111
+ #: src/Tribe/Main.php:4296
3112
  msgid "%s In"
3113
  msgstr ""
3114
 
3115
+ #: src/Tribe/View_Helpers.php:207
3116
  msgid "Norfolk Island"
3117
  msgstr "Norfolk Island"
3118
 
3119
+ #: src/Tribe/Main.php:4298
3120
  msgid "%s From"
3121
  msgstr ""
3122
 
3123
+ #: src/Tribe/View_Helpers.php:208
3124
  msgid "Northern Mariana Islands"
3125
  msgstr "Northern Mariana Islands"
3126
 
3127
+ #: src/Tribe/Main.php:4300
3128
  msgid "Day Of"
3129
  msgstr ""
3130
 
3131
+ #: src/Tribe/View_Helpers.php:209
3132
  msgid "Norway"
3133
  msgstr "Norway"
3134
 
3135
+ #: src/Tribe/Main.php:4375
3136
  msgid "Once Every 30 Mins"
3137
  msgstr ""
3138
 
3139
+ #: src/Tribe/View_Helpers.php:210
3140
  msgid "Oman"
3141
  msgstr "Oman"
3142
 
3143
+ #: src/Tribe/Options_Exception.php:19 src/Tribe/Post_Exception.php:22
3144
  msgid "Error"
3145
  msgstr "Probleem"
3146
 
3147
+ #: src/Tribe/View_Helpers.php:211
3148
  msgid "Pakistan"
3149
  msgstr "Pakistan"
3150
 
3151
+ #: src/Tribe/PUE/Checker.php:304
3152
  msgid "License Key"
3153
  msgstr "Lisensiesleutel"
3154
 
3155
+ #: src/Tribe/View_Helpers.php:212
3156
  msgid "Palau"
3157
  msgstr "Palau"
3158
 
3159
+ #: src/Tribe/PUE/Checker.php:305
3160
  msgid "A valid license key is required for support and updates"
3161
  msgstr "'n Geldige lisensie sleutel word benodig vir die ondersteuning en opgraderings"
3162
 
3163
+ #: src/Tribe/View_Helpers.php:213
3164
  msgid "Panama"
3165
  msgstr "v"
3166
 
3167
+ #: src/Tribe/PUE/Checker.php:377
3168
  msgid "License key(s) updated."
3169
  msgstr "Lisensiesleutel(s) opgedateer"
3170
 
3171
+ #: src/Tribe/View_Helpers.php:214
3172
  msgid "Papua New Guinea"
3173
  msgstr "Papua New Guinea"
3174
 
3175
+ #: src/Tribe/PUE/Checker.php:419
3176
  msgid "Sorry, key validation server is not available."
3177
  msgstr "Jammer, sleutel validering bediener is nie beskikbaar nie."
3178
 
3179
+ #: src/Tribe/View_Helpers.php:215
3180
  msgid "Paraguay"
3181
  msgstr "Paraguay"
3182
 
3183
+ #: src/Tribe/PUE/Checker.php:421
3184
  msgid "Sorry, this key is expired."
3185
  msgstr "Jammer, hierdie sleutel het verstryk."
3186
 
3187
+ #: src/Tribe/View_Helpers.php:216
3188
  msgid "Peru"
3189
  msgstr "Peru"
3190
 
3191
+ #: src/Tribe/PUE/Checker.php:424
3192
  msgid "Sorry, this key is out of installs."
3193
  msgstr "Jammer, hierdie sleutel is uit installasie geleenthede."
3194
 
3195
+ #: src/Tribe/View_Helpers.php:217
3196
  msgid "Philippines"
3197
  msgstr "Philippines"
3198
 
3199
+ #: src/Tribe/PUE/Checker.php:425
3200
  msgid "Why am I seeing this message?"
3201
  msgstr ""
3202
 
3203
+ #: src/Tribe/View_Helpers.php:218
3204
  msgid "Pitcairn"
3205
  msgstr "Pitcairn"
3206
 
3207
+ #: src/Tribe/PUE/Checker.php:428
3208
  msgid "Sorry, this key is not valid."
3209
  msgstr "Jammer, hierdie sleutel is ongeldig."
3210
 
3211
+ #: src/Tribe/View_Helpers.php:219
3212
  msgid "Poland"
3213
  msgstr "Poland"
3214
 
3215
+ #: src/Tribe/PUE/Checker.php:430
3216
  msgid "Valid Key! Expires on %s"
3217
  msgstr "Geldig sleutel! Verval op %s"
3218
 
3219
+ #: src/Tribe/View_Helpers.php:220
3220
  msgid "Portugal"
3221
  msgstr "Portugal"
3222
 
3223
+ #: src/Tribe/PUE/Checker.php:436
3224
  msgid "Hmmm... something's wrong with this validator. Please contact <a href=\"%s\">support.</a>"
3225
  msgstr "Hmmm ... iets is verkeerd met hierdie validator. Kontak asseblief <a href=\"%s\">ondersteuning.</a>"
3226
 
3227
+ #: src/Tribe/View_Helpers.php:221
3228
  msgid "Puerto Rico"
3229
  msgstr "Puerto Rico"
3230
 
3231
+ #: src/Tribe/Settings.php:160 src/Tribe/Settings.php:176
3232
  msgid "The Events Calendar Settings"
3233
  msgstr "The Events Calendar Verstellings"
3234
 
3235
+ #: src/Tribe/View_Helpers.php:222
3236
  msgid "Qatar"
3237
  msgstr "Qatar"
3238
 
3239
+ #: src/Tribe/Settings.php:176
3240
  msgid "Events Settings"
3241
  msgstr "Gebeurtenis Verstellings"
3242
 
3243
+ #: src/Tribe/View_Helpers.php:223
3244
  msgid "Reunion"
3245
  msgstr "Reunion"
3246
 
3247
+ #: src/Tribe/Settings.php:239
3248
  msgid "%s Settings"
3249
  msgstr "%s Verstellings"
3250
 
3251
+ #: src/Tribe/View_Helpers.php:224
3252
  msgid "Romania"
3253
  msgstr "Romania"
3254
 
3255
+ #: src/Tribe/Settings.php:253
3256
  msgid "You've requested a non-existent tab."
3257
  msgstr "Jy het 'n nie-bestaande afdeling gekies."
3258
 
3259
+ #: src/Tribe/View_Helpers.php:225
3260
  msgid "Russian Federation"
3261
  msgstr "Russian Federation"
3262
 
3263
+ #: src/Tribe/View_Helpers.php:226
 
 
 
 
3264
  msgid "Rwanda"
3265
  msgstr "Rwanda"
3266
 
3267
+ #: src/Tribe/Settings.php:309
3268
  msgid "You don't have permission to do that."
3269
  msgstr "Jy het nie toestemming om dit te doen nie."
3270
 
3271
+ #: src/Tribe/View_Helpers.php:227
3272
  msgid "Saint Kitts And Nevis"
3273
  msgstr "Saint Kitts And Nevis"
3274
 
3275
+ #: src/Tribe/Settings.php:315
3276
  msgid "The request was sent insecurely."
3277
  msgstr "Die versoek is onveilig gestuur."
3278
 
3279
+ #: src/Tribe/View_Helpers.php:228
3280
  msgid "Saint Lucia"
3281
  msgstr "Saint Lucia"
3282
 
3283
+ #: src/Tribe/Settings.php:321
3284
  msgid "The request wasn't sent from this tab."
3285
  msgstr "Die versoek is nie van hierdie afdeling af gestuur nie."
3286
 
3287
+ #: src/Tribe/View_Helpers.php:229
3288
  msgid "Saint Vincent And The Grenadines"
3289
  msgstr "Saint Vincent And The Grenadines"
3290
 
3291
+ #: src/Tribe/Settings.php:489
3292
  msgid "Your form had the following errors:"
3293
  msgstr "Jou vorm het die volgende probleme gehad:"
3294
 
3295
+ #: src/Tribe/View_Helpers.php:230
3296
  msgid "Samoa"
3297
  msgstr "Samoa"
3298
 
3299
+ #: src/Tribe/Settings.php:498
3300
  msgid "None of your settings were saved. Please try again."
3301
  msgstr "Nie een van jou stellings is gestoor nie. Probeer asseblief weer."
3302
 
3303
+ #: src/Tribe/View_Helpers.php:231
3304
  msgid "San Marino"
3305
  msgstr "San Marino"
3306
 
3307
+ #: src/Tribe/Settings.php:498
3308
  msgid "The above setting was not saved. Other settings were successfully saved."
3309
  msgid_plural "The above settings were not saved. Other settings were successfully saved."
3310
  msgstr[0] ""
3311
  msgstr[1] ""
3312
 
3313
+ #: src/Tribe/View_Helpers.php:232
3314
  msgid "Sao Tome And Principe"
3315
  msgstr "Sao Tome And Principe"
3316
 
3317
+ #: src/Tribe/Settings_Tab.php:224
3318
  msgid "There are no fields setup for this tab yet."
3319
  msgstr "Daar is geen velde opgestel vir hierdie afdeling nie."
3320
 
3321
+ #: src/Tribe/View_Helpers.php:233
3322
  msgid "Saudi Arabia"
3323
  msgstr "Saudi Arabia"
3324
 
3325
+ #: src/Tribe/Support.php:46
3326
  msgid "Sometimes it's hard to tell what's going wrong without knowing more about your system steup. For your convenience, we've put together a little report on what's cooking under the hood."
3327
  msgstr "Soms is dit moeilik om te sê wat verkeerd gegaan het sonder om meer te weet oor hoe jou stelsel opgestel is. Vir u gerief, het ons 'n verslag saam gestel oor wat aan die agterkant van die webtuiste aangaan."
3328
 
3329
+ #: src/Tribe/View_Helpers.php:234
3330
  msgid "Senegal"
3331
  msgstr "Senegal"
3332
 
3333
+ #: src/Tribe/Support.php:47
3334
  msgid "If you suspect that the problem you're having is related to another plugin, or we're just plain having trouble reproducing your bug report, please copy and send all of this to our support team."
3335
  msgstr "As jy vermoed dat die probleem wat jy het, verwant is aan 'n ander plugin, of indien ons probleme het om jou fout verslag te dupliseer, kopieer en stuur al hierdie inligtiong aan ons ondersteuning span."
3336
 
3337
+ #: src/Tribe/View_Helpers.php:235
3338
  msgid "Serbia"
3339
  msgstr "Serbia"
3340
 
3341
+ #: src/Tribe/Support.php:51
3342
  msgid "System Information"
3343
  msgstr "Sisteem Inligting"
3344
 
3345
+ #: src/Tribe/View_Helpers.php:236
3346
  msgid "Seychelles"
3347
  msgstr "Seychelles"
3348
 
3349
+ #: src/Tribe/Support.php:137
3350
  msgid "Unknown or not set"
3351
  msgstr ""
3352
 
3353
+ #: src/Tribe/View_Helpers.php:237
3354
  msgid "Sierra Leone"
3355
  msgstr "Sierra Leone"
3356
 
3357
+ #: src/Tribe/Template/Day.php:99 src/Tribe/Template/Day.php:115
3358
  msgid "All Day"
3359
  msgstr ""
3360
 
3361
+ #: src/Tribe/View_Helpers.php:238
3362
  msgid "Singapore"
3363
  msgstr "Singapore"
3364
 
3365
+ #: src/Tribe/Template/Day.php:102 src/Tribe/Template/Day.php:118
3366
  msgid "Ongoing"
3367
  msgstr ""
3368
 
3369
+ #: src/Tribe/View_Helpers.php:239
3370
  msgid "Slovakia (Slovak Republic)"
3371
  msgstr "Slovakia (Slovak Republic)"
3372
 
3373
+ #: src/Tribe/View_Helpers.php:240
 
 
 
 
3374
  msgid "Slovenia"
3375
  msgstr "Slovenia"
3376
 
3377
+ #: src/Tribe/View_Helpers.php:241
 
 
 
 
3378
  msgid "Solomon Islands"
3379
  msgstr "Solomon Islands"
3380
 
3381
+ #: src/Tribe/Template/Month.php:284
3382
  msgid "There were no results found for <strong>\"%s\"</strong> this month. Try searching next month."
3383
  msgstr "Daar is geen resultate gevind vir <strong>\"%s\"</strong>hierdie maand. Probeer om deur volgende maand te soek."
3384
 
3385
+ #: src/Tribe/View_Helpers.php:242
3386
  msgid "Somalia"
3387
  msgstr "Somalia"
3388
 
3389
+ #: src/Tribe/View_Helpers.php:243
 
 
 
 
3390
  msgid "South Africa"
3391
  msgstr "South Africa"
3392
 
3393
+ #: src/Tribe/Template/Month.php:289 src/Tribe/Template_Factory.php:366
3394
  msgid "There were no results found."
3395
  msgstr "Daar was geen resultate gevind nie."
3396
 
3397
+ #: src/Tribe/View_Helpers.php:244
3398
  msgid "South Georgia, South Sandwich Islands"
3399
  msgstr "South Georgia, South Sandwich Islands"
3400
 
3401
+ #: src/Tribe/Template/Month.php:692
3402
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
3403
  msgstr ""
3404
 
3405
+ #: src/Tribe/View_Helpers.php:245
3406
  msgid "Spain"
3407
  msgstr "Spain"
3408
 
3409
+ #: src/Tribe/Template/Single_Event.php:120
3410
  msgid "This %s has passed."
3411
  msgstr ""
3412
 
3413
+ #: src/Tribe/View_Helpers.php:246
3414
  msgid "Sri Lanka"
3415
  msgstr "v"
3416
 
3417
+ #: src/Tribe/Template_Factory.php:353
3418
  msgid "There were no results found for <strong>\"%s\"</strong>."
3419
  msgstr "Daar is geen resultate gevind vir <strong>\"%s\"</strong>."
3420
 
3421
+ #: src/Tribe/View_Helpers.php:247
3422
  msgid "St. Helena"
3423
  msgstr "St. Helena"
3424
 
3425
+ #: src/Tribe/View_Helpers.php:248
 
 
 
 
3426
  msgid "St. Pierre And Miquelon"
3427
  msgstr "St. Pierre And Miquelon"
3428
 
3429
+ #: src/Tribe/View_Helpers.php:249
 
 
 
 
3430
  msgid "Sudan"
3431
  msgstr "Sudan"
3432
 
3433
+ #: src/Tribe/View_Helpers.php:250
 
 
 
 
3434
  msgid "Suriname"
3435
  msgstr "Suriname"
3436
 
3437
+ #: src/Tribe/Template_Factory.php:361
3438
  msgid "No previous %s "
3439
  msgstr ""
3440
 
3441
+ #: src/Tribe/View_Helpers.php:251
3442
  msgid "Svalbard And Jan Mayen Islands"
3443
  msgstr "Svalbard And Jan Mayen Islands"
3444
 
3445
+ #: src/Tribe/Templates.php:618
3446
  msgid "Template overrides should be moved to the correct subdirectory: %s"
3447
  msgstr "Bloudruk Oorheersers moet geskuif word na die korrekte subgids:% s"
3448
 
3449
+ #: src/Tribe/View_Helpers.php:252
3450
  msgid "Swaziland"
3451
  msgstr "Swaziland"
3452
 
3453
+ #: src/Tribe/Templates.php:660
3454
  msgid "Template overrides should be moved to the correct subdirectory: tribe_get_template_part('%s')"
3455
  msgstr "Bloudruk oorheersers moet geskuif word na die korrekte subgids: tribe_get_template_part('%s')"
3456
 
3457
+ #: src/Tribe/View_Helpers.php:253
3458
  msgid "Sweden"
3459
  msgstr "Sweden"
3460
 
3461
+ #: src/Tribe/Tickets/Attendees_Table.php:74
3462
  msgid "Order #"
3463
  msgstr "Bestelling #"
3464
 
3465
+ #: src/Tribe/View_Helpers.php:254
3466
  msgid "Switzerland"
3467
  msgstr "Switzerland"
3468
 
3469
+ #: src/Tribe/Tickets/Attendees_Table.php:75
3470
  msgid "Order Status"
3471
  msgstr "Besteling Status"
3472
 
3473
+ #: src/Tribe/View_Helpers.php:255
3474
  msgid "Syrian Arab Republic"
3475
  msgstr "Syrian Arab Republic"
3476
 
3477
+ #: src/Tribe/Tickets/Attendees_Table.php:76
3478
  msgid "Purchaser name"
3479
  msgstr "Aankoper Naam"
3480
 
3481
+ #: src/Tribe/View_Helpers.php:256
3482
  msgid "Taiwan"
3483
  msgstr "Taiwan"
3484
 
3485
+ #: src/Tribe/Tickets/Attendees_Table.php:77
3486
  msgid "Purchaser email"
3487
  msgstr "Aankoper E-pos"
3488
 
3489
+ #: src/Tribe/View_Helpers.php:257
3490
  msgid "Tajikistan"
3491
  msgstr "Tajikistan"
3492
 
3493
+ #: src/Tribe/Tickets/Attendees_Table.php:78
3494
  msgid "Ticket type"
3495
  msgstr "Kaaartjie Tipe"
3496
 
3497
+ #: src/Tribe/View_Helpers.php:258
3498
  msgid "Tanzania, United Republic Of"
3499
  msgstr "Tanzania, United Republic Of"
3500
 
3501
+ #: src/Tribe/Tickets/Attendees_Table.php:79 src/views/tickets/email.php:305
 
3502
  msgid "Ticket #"
3503
  msgstr "Kaartjie #"
3504
 
3505
+ #: src/Tribe/View_Helpers.php:259
3506
  msgid "Thailand"
3507
  msgstr "Thailand"
3508
 
3509
+ #: src/Tribe/Tickets/Attendees_Table.php:80 src/views/tickets/email.php:317
 
3510
  msgid "Security Code"
3511
  msgstr "Sekuriteitskode"
3512
 
3513
+ #: src/Tribe/View_Helpers.php:260
3514
  msgid "Togo"
3515
  msgstr "Togo"
3516
 
3517
+ #: src/Tribe/Tickets/Attendees_Table.php:81
3518
+ #: src/Tribe/Tickets/Attendees_Table.php:166
3519
+ #: src/Tribe/Tickets/Attendees_Table.php:238
3520
  msgid "Check in"
3521
  msgstr "Aangemeld"
3522
 
3523
+ #: src/Tribe/View_Helpers.php:261
3524
  msgid "Tokelau"
3525
  msgstr "Tokelau"
3526
 
3527
+ #: src/Tribe/Tickets/Attendees_Table.php:167
3528
+ #: src/Tribe/Tickets/Attendees_Table.php:239
3529
  msgid "Undo Check in"
3530
  msgstr "Kanseleer Aangemeld"
3531
 
3532
+ #: src/Tribe/View_Helpers.php:262
3533
  msgid "Tonga"
3534
  msgstr "Tonga"
3535
 
3536
+ #: src/Tribe/Tickets/Attendees_Table.php:211
3537
  msgid "Print"
3538
  msgstr "Druk"
3539
 
3540
+ #: src/Tribe/View_Helpers.php:263
3541
  msgid "Trinidad And Tobago"
3542
  msgstr "Trinidad And Tobago"
3543
 
3544
+ #: src/Tribe/Tickets/Attendees_Table.php:212
3545
  msgid "Email"
3546
  msgstr "E-pos"
3547
 
3548
+ #: src/Tribe/View_Helpers.php:264
3549
  msgid "Tunisia"
3550
  msgstr "Tunisia"
3551
 
3552
+ #: src/Tribe/Tickets/Attendees_Table.php:213 src/Tribe/iCal.php:119
3553
  msgid "Export"
3554
  msgstr "Uitvoer"
3555
 
3556
+ #: src/Tribe/View_Helpers.php:265
3557
  msgid "Turkey"
3558
  msgstr "Turkey"
3559
 
3560
+ #: src/Tribe/Tickets/Attendees_Table.php:219
3561
  msgid "Filter by purchaser name, ticket #, order # or security code"
3562
  msgstr ""
3563
 
3564
+ #: src/Tribe/View_Helpers.php:266
3565
  msgid "Turkmenistan"
3566
  msgstr "Turkmenistan"
3567
 
3568
+ #: src/Tribe/Tickets/Attendees_Table.php:240
3569
+ #: src/admin-views/tickets/list.php:22
3570
  msgid "Delete"
3571
  msgstr "Verwyder"
3572
 
3573
+ #: src/Tribe/View_Helpers.php:267
3574
  msgid "Turks And Caicos Islands"
3575
  msgstr "Turks And Caicos Islands"
3576
 
3577
+ #: src/Tribe/Tickets/Metabox.php:26 src/admin-views/admin-update-message.php:52
 
3578
  msgid "Tickets"
3579
  msgstr "Kaartjies"
3580
 
3581
+ #: src/Tribe/View_Helpers.php:268
3582
  msgid "Tuvalu"
3583
  msgstr "Tuvalu"
3584
 
3585
+ #: src/Tribe/Tickets/Metabox.php:71
3586
  msgid "Ticket header image"
3587
  msgstr "Kaartjie Hoof beeld "
3588
 
3589
+ #: src/Tribe/View_Helpers.php:269
3590
  msgid "Uganda"
3591
  msgstr "v"
3592
 
3593
+ #: src/Tribe/Tickets/Metabox.php:72
3594
  msgid "Set as ticket header"
3595
  msgstr "Stel as karrtjie hoof op."
3596
 
3597
+ #: src/Tribe/View_Helpers.php:270
3598
  msgid "Ukraine"
3599
  msgstr "Ukraine"
3600
 
3601
+ #: src/Tribe/Tickets/Tickets.php:328
3602
  msgid "Your ticket has been saved."
3603
  msgstr "Jou kaarthie is gestoor."
3604
 
3605
+ #: src/Tribe/View_Helpers.php:271
3606
  msgid "United Arab Emirates"
3607
  msgstr "United Arab Emirates"
3608
 
3609
+ #: src/Tribe/Tickets/Tickets.php:409
3610
  msgid "Your ticket has been deleted."
3611
  msgstr "Jou kaartjie is verwyder."
3612
 
3613
+ #: src/Tribe/View_Helpers.php:272
3614
  msgid "United Kingdom"
3615
  msgstr "United Kingdom"
3616
 
3617
+ #: src/Tribe/Tickets/Tickets_Pro.php:78 src/admin-views/tickets/list.php:41
 
3618
  msgid "See who purchased tickets to this event"
3619
  msgstr "Sien wat kaartjies vir die byeenkoms gekoop"
3620
 
3621
+ #: src/Tribe/View_Helpers.php:273
3622
  msgid "United States Minor Outlying Islands"
3623
  msgstr "United States Minor Outlying Islands"
3624
 
3625
+ #: src/Tribe/Tickets/Tickets_Pro.php:78
3626
+ #: src/admin-views/tickets/attendees.php:11 src/admin-views/tickets/list.php:41
 
3627
  msgid "Attendees"
3628
  msgstr "Besoekers"
3629
 
3630
+ #: src/Tribe/View_Helpers.php:274
3631
  msgid "Uruguay"
3632
  msgstr "Uruguay"
3633
 
3634
+ #: src/Tribe/Tickets/Tickets_Pro.php:113
3635
  msgid "You need to select a user or type a valid email address"
3636
  msgstr "Jy moet 'n gebruiker te kies of 'n geldige e-posadres in sleutel"
3637
 
3638
+ #: src/Tribe/View_Helpers.php:275
3639
  msgid "Uzbekistan"
3640
  msgstr "Uzbekistan"
3641
 
3642
+ #: src/Tribe/Tickets/Tickets_Pro.php:114
3643
  msgid "Sending..."
3644
  msgstr "besig om te stuur...."
3645
 
3646
+ #: src/Tribe/View_Helpers.php:276
3647
  msgid "Vanuatu"
3648
  msgstr "Vanuatu"
3649
 
3650
+ #: src/Tribe/Tickets/Tickets_Pro.php:140
3651
  msgid "Columns"
3652
  msgstr "Kolomme"
3653
 
3654
+ #: src/Tribe/View_Helpers.php:277
3655
  msgid "Venezuela"
3656
  msgstr "Venezuela"
3657
 
3658
+ #: src/Tribe/Tickets/Tickets_Pro.php:140
3659
  msgid "You can use Screen Options to select which columns you want to see. The selection works in the table below, in the email, for print and for the CSV export."
3660
  msgstr "Jy kan die skerm Opsies gebruik om te kies watter kolomme jy wil sien. Die seleksie werk in die tabel hieronder, in die e-pos, vir die druk van inligting en vir die CSV uitvoer."
3661
 
3662
+ #: src/Tribe/View_Helpers.php:278
3663
  msgid "Viet Nam"
3664
  msgstr "Viet Nam"
3665
 
3666
+ #: src/Tribe/Tickets/Tickets_Pro.php:230
3667
  msgid "Yes"
3668
  msgstr "Ja"
3669
 
3670
+ #: src/Tribe/View_Helpers.php:279
3671
  msgid "Virgin Islands (British)"
3672
  msgstr "Virgin Islands (British)"
3673
 
3674
+ #: src/Tribe/Tickets/Tickets_Pro.php:262
3675
  msgid "attendees"
3676
  msgstr "Besoekers"
3677
 
3678
+ #: src/Tribe/View_Helpers.php:280
3679
  msgid "Virgin Islands (U.S.)"
3680
  msgstr "Virgin Islands (U.S.)"
3681
 
3682
+ #: src/Tribe/Tickets/Tickets_Pro.php:316
3683
  msgid "Attendee List for: %s"
3684
  msgstr "Besoekerslyn vir: %s"
3685
 
3686
+ #: src/Tribe/Validate.php:76 src/Tribe/Validate.php:117
3687
  msgid "Invalid or incomplete field passed"
3688
  msgstr "Ongeldige of onvolledige veld geslaag"
3689
 
3690
+ #: src/Tribe/Validate.php:77 src/Tribe/Validate.php:112
3691
+ #: src/Tribe/Validate.php:118
3692
  msgid "Field ID:"
3693
  msgstr "Veld ID:"
3694
 
3695
+ #: src/Tribe/Validate.php:111
3696
  msgid "Non-existant field validation function passed"
3697
  msgstr "Nie-bestaande veld validering funksie geslaag"
3698
 
3699
+ #: src/Tribe/Validate.php:112
3700
  msgctxt "non-existant function name passed for field validation"
3701
  msgid "with function name:"
3702
  msgstr ""
3703
 
3704
+ #: src/Tribe/Validate.php:135 src/Tribe/Validate.php:151
3705
  msgid "%s must contain numbers and letters only"
3706
  msgstr "% s moet slegs syfers en letters bevat"
3707
 
3708
+ #: src/Tribe/Validate.php:167
3709
  msgid "%s must contain numbers, letters and dots only"
3710
  msgstr "% s moet slegs syfers, letters en punte bevat"
3711
 
3712
+ #: src/Tribe/Validate.php:181
3713
  msgid "%s must be a positive number."
3714
  msgstr "% s moet 'n positiewe getal wees."
3715
 
3716
+ #: src/Tribe/Validate.php:196
3717
  msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
3718
  msgstr "% s moet 'n geldige afkorting (getalle, letters, koppeltekens en onderstreep) wees."
3719
 
3720
+ #: src/Tribe/Validate.php:211
3721
  msgid "%s must be a valid absolute URL."
3722
  msgstr "% s moet 'n geldige absolute URL wees."
3723
 
3724
+ #: src/Tribe/Validate.php:227 src/Tribe/Validate.php:244
3725
+ #: src/Tribe/Validate.php:266
3726
  msgid "%s must have a value that's part of its options."
3727
  msgstr "% s moet 'n waarde hë wat deel is van sy opsies."
3728
 
3729
+ #: src/Tribe/Validate.php:280
3730
  msgid "Comparison validation failed because no comparison value was provided, for field %s"
3731
  msgstr "Vergelyking bekragtiging misluk omdat geen vergelyking waarde is verskaf vir veld %s"
3732
 
3733
+ #: src/Tribe/Validate.php:287
3734
  msgid "%s cannot be the same as %s."
3735
  msgstr "%s mag nie die selfde wees nie %s."
3736
 
3737
+ #: src/Tribe/Validate.php:289
3738
  msgid "%s cannot be a duplicate"
3739
  msgstr "%s mag nie 'n duplikaat wees nie"
3740
 
3741
+ #: src/Tribe/Validate.php:305
3742
  msgid "%s must be a number or percentage."
3743
  msgstr "%s moet 'n syfer of 'n persentasie wees."
3744
 
3745
+ #: src/Tribe/Validate.php:359
3746
  msgid "%s must be a number between 0 and 21."
3747
  msgstr "%s moet 'n getal 0 en 21 wees."
3748
 
3749
+ #: src/Tribe/Validate.php:375
3750
  msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
3751
  msgstr "% s moet bestaan uit letters, getalle, koppeltekens, afkapings, en ruimtes."
3752
 
3753
+ #: src/Tribe/Validate.php:391
3754
  msgid "%s must consist of letters, spaces, apostrophes, and dashes."
3755
  msgstr "% s moet bestaan ​​uit letters, spasies, afkapings, en strepies."
3756
 
3757
+ #: src/Tribe/Validate.php:405
3758
  msgid "%s must consist of 5 numbers."
3759
  msgstr "%s moet uit 5 syfers bestaan."
3760
 
3761
+ #: src/Tribe/Validate.php:419
3762
  msgid "%s must be a phone number."
3763
  msgstr "%s moet 'n telefoon nommer wees."
3764
 
3765
+ #: src/Tribe/Validate.php:435
3766
  msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
3767
  msgstr "Land lys moet geformateer word met een land per reël in die volgende formaat: <br> VSA, die Verenigde State van Amerika <br> die Verenigde Koninkryk, die Verenigde Koninkryk."
3768
 
3769
+ #: src/Tribe/View_Helpers.php:26 src/Tribe/View_Helpers.php:45
3770
  msgid "Select a Country:"
3771
  msgstr "Kies 'n Land:"
lang/tribe-events-calendar-bg_BG.mo CHANGED
Binary file
lang/tribe-events-calendar-bg_BG.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the The Events Calendar package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-07-21 14:53:55+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,3668 +10,3766 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: The Events Calendar\n"
12
 
13
- #: ../src/Tribe/Activation_Page.php:39
14
- msgid "Go to plugins page"
15
  msgstr ""
16
 
17
- #: ../src/Tribe/Activation_Page.php:39
18
- msgid "Return to Plugins page"
19
  msgstr ""
20
 
21
- #: ../src/Tribe/Activation_Page.php:47
22
- msgid "Go to WordPress Updates page"
23
  msgstr ""
24
 
25
- #: ../src/Tribe/Activation_Page.php:47
26
- msgid "Return to WordPress Updates"
27
  msgstr ""
28
 
29
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88
30
- msgid "Create New %s"
31
  msgstr ""
32
 
33
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:149
34
- msgid "Add another organizer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  msgstr ""
36
 
37
- #: ../src/Tribe/Cost_Utils.php:108
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  msgctxt "Cost range separator"
39
  msgid " - "
40
- msgstr ""
41
 
42
- #: ../src/Tribe/PUE/Checker.php:416
43
  msgid "unknown date"
44
- msgstr ""
45
 
46
- #: ../src/Tribe/Support.php:142
47
  msgid "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
48
- msgstr ""
49
 
50
- #: ../src/admin-views/tribe-options-help.php:94
51
  msgid "If you're looking for help with The Events Calendar, you've come to the right place. We are committed to helping make your calendar be spectacular... and hope the resources provided below will help get you there."
52
- msgstr ""
53
 
54
- #: ../src/admin-views/tribe-options-help.php:142
55
  msgid "Hi! We are Modern Tribe and we are here to help you be awesome. Thanks so much for installing our labor of love!"
56
- msgstr ""
57
 
58
- #: ../src/admin-views/tribe-options-help.php:151
59
  msgid "Support Resources To Help You Be Awesome"
60
- msgstr ""
61
 
62
- #: ../src/admin-views/tribe-options-licenses.php:17
63
  msgid ""
64
  "<strong> Using our plugins in a multisite network? </strong>\n"
65
  "\t\tPlease note that your license key will be applied to the entire network, not just this site."
66
  msgstr ""
 
 
67
 
68
- #: ../src/admin-views/tribe-options-licenses.php:20
69
  msgid ""
70
  "Only license fields for <strong>network activated</strong> plugins will be\n"
71
  "\t\tlisted on this screen. "
72
  msgstr ""
 
 
73
 
74
- #: ../src/Tribe/View_Helpers.php:334
75
  msgid "Louisiana"
76
  msgstr "Луизиана"
77
 
78
- #: ../src/admin-views/tribe-options-help.php:132
79
- msgid "If you find that you aren't getting the level of service you've come to expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us why. We'll do what we can to make it right."
80
- msgstr "Ако смятате, че не получавате необходимата помощ от Modern Tribe, пишете ни email на %s или tweet %s, за да ни кажете защо. Ще направим всичко по силите си, за да оправим нещата."
81
-
82
- #: ../src/Tribe/View_Helpers.php:335
83
  msgid "Maine"
84
  msgstr "Мейн"
85
 
86
- #: ../src/admin-views/tribe-options-help.php:133
87
  msgid "More..."
88
  msgstr "Още..."
89
 
90
- #: ../src/Tribe/View_Helpers.php:336
91
  msgid "Maryland"
92
  msgstr "Мериленд"
93
 
94
- #: ../src/Tribe/View_Helpers.php:337
95
  msgid "Massachusetts"
96
  msgstr "Масачузетс"
97
 
98
- #: ../src/Tribe/View_Helpers.php:338
99
  msgid "Michigan"
100
  msgstr "Мичиган"
101
 
102
- #: ../src/admin-views/tribe-options-help.php:154
103
  msgid "Forums: Because Everyone Needs A Buddy"
104
  msgstr "Форуми: Защото всеки се нуждае от сродна душа"
105
 
106
- #: ../src/Tribe/View_Helpers.php:339
107
  msgid "Minnesota"
108
  msgstr "Минесота"
109
 
110
- #: ../src/admin-views/tribe-options-help.php:157
111
  msgid "Not getting help?"
112
  msgstr "Не получавате помощ?"
113
 
114
- #: ../src/Tribe/View_Helpers.php:340
115
  msgid "Mississippi"
116
  msgstr "Мисисипи"
117
 
118
- #: ../src/admin-views/tribe-options-help.php:174
119
  msgid "Latest Version:"
120
  msgstr "Последна версия:"
121
 
122
- #: ../src/Tribe/View_Helpers.php:341
123
  msgid "Missouri"
124
  msgstr "Мисури"
125
 
126
- #: ../src/admin-views/tribe-options-help.php:176
127
  msgid "Author:"
128
  msgstr "Автор:"
129
 
130
- #: ../src/Tribe/View_Helpers.php:342
131
  msgid "Montana"
132
  msgstr "Монтана"
133
 
134
- #: ../src/admin-views/tribe-options-help.php:176
135
  msgid "Modern Tribe Inc"
136
  msgstr "Modern Tribe Inc"
137
 
138
- #: ../src/Tribe/View_Helpers.php:343
139
  msgid "Nebraska"
140
  msgstr "Небраска"
141
 
142
- #: ../src/admin-views/tribe-options-help.php:179
143
  msgid "Requires:"
144
  msgstr "Изисква:"
145
 
146
- #: ../src/Tribe/View_Helpers.php:344
147
  msgid "Nevada"
148
  msgstr "Невада"
149
 
150
- #: ../src/admin-views/tribe-options-help.php:179
151
  msgid "WordPress "
152
  msgstr "WordPress "
153
 
154
- #: ../src/Tribe/View_Helpers.php:345
155
  msgid "New Hampshire"
156
  msgstr "Ню Хампшър"
157
 
158
- #: ../src/admin-views/tribe-options-help.php:181
159
  msgid "Wordpress.org Plugin Page"
160
  msgstr "Wordpress.org страница за Plugin-и"
161
 
162
- #: ../src/Tribe/View_Helpers.php:346
163
  msgid "New Jersey"
164
  msgstr "Ню Джърси"
165
 
166
- #: ../src/admin-views/tribe-options-help.php:187
167
  msgid "Average Rating"
168
  msgstr "Среден рейтинг"
169
 
170
- #: ../src/Tribe/View_Helpers.php:347
171
  msgid "New Mexico"
172
  msgstr "Ню Мексико"
173
 
174
- #: ../src/admin-views/tribe-options-help.php:193
175
  msgid "Based on %d rating"
176
  msgid_plural "Based on %d ratings"
177
  msgstr[0] "На базата на %d отзив"
178
  msgstr[1] "На базата на %d отзива"
179
 
180
- #: ../src/Tribe/View_Helpers.php:348
181
  msgid "New York"
182
  msgstr "Ню Йорк"
183
 
184
- #: ../src/admin-views/tribe-options-help.php:195
185
  msgid "Give us 5 stars!"
186
  msgstr "Дай ни 5 звезди!"
187
 
188
- #: ../src/Tribe/View_Helpers.php:349
189
  msgid "North Carolina"
190
  msgstr "Северна Каролина"
191
 
192
- #: ../src/admin-views/tribe-options-help.php:199
193
  msgid "Premium Add-Ons"
194
  msgstr "Premium Add-Ons"
195
 
196
- #: ../src/Tribe/View_Helpers.php:350
197
  msgid "North Dakota"
198
  msgstr "Северна Дакота"
199
 
200
- #: ../src/admin-views/tribe-options-help.php:208
201
  msgid "(Coming Soon!)"
202
  msgstr "(Очаквайте скоро!)"
203
 
204
- #: ../src/Tribe/View_Helpers.php:351
205
  msgid "Ohio"
206
  msgstr "Охайо"
207
 
208
- #: ../src/admin-views/tribe-options-help.php:218
209
  msgid "News and Tutorials"
210
  msgstr "Новини и упътвания"
211
 
212
- #: ../src/Tribe/View_Helpers.php:352
213
  msgid "Oklahoma"
214
  msgstr "Оклахома"
215
 
216
- #: ../src/admin-views/tribe-options-network.php:15
217
  msgid "Network Settings"
218
  msgstr "Мрежови настройки"
219
 
220
- #: ../src/Tribe/View_Helpers.php:353
221
  msgid "Oregon"
222
  msgstr "Орегон"
223
 
224
- #: ../src/admin-views/tribe-options-network.php:19
225
  msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
226
  msgstr "Тук е мястото, откъдето могат да се променят всички глобални настройки на Modern Tribe's The Events Calendar."
227
 
228
- #: ../src/Tribe/View_Helpers.php:354
229
  msgid "Pennsylvania"
230
  msgstr "Пенсилвания"
231
 
232
- #: ../src/admin-views/tribe-options-network.php:27
233
  msgid "Hide the following settings tabs on every site:"
234
  msgstr "Скрии тези табове с настройки на всяка страница:"
235
 
236
- #: ../src/Tribe/View_Helpers.php:355
237
  msgid "Rhode Island"
238
  msgstr "Род Айлънд"
239
 
240
- #: ../src/admin-views/venue-meta-box.php:34
241
- #: ../src/functions/advanced-functions/meta_registration.php:176
 
242
  msgid "Address:"
243
  msgstr "Адрес:"
244
 
245
- #: ../src/Tribe/View_Helpers.php:356
246
  msgid "South Carolina"
247
  msgstr "Южна Каролина"
248
 
249
- #: ../src/admin-views/venue-meta-box.php:41
250
  msgid "City:"
251
  msgstr "Град:"
252
 
253
- #: ../src/Tribe/View_Helpers.php:357
254
  msgid "South Dakota"
255
  msgstr "Южна Дакота"
256
 
257
- #: ../src/admin-views/venue-meta-box.php:48
258
  msgid "Country:"
259
  msgstr "Държава:"
260
 
261
- #: ../src/Tribe/View_Helpers.php:358
262
  msgid "Tennessee"
263
  msgstr "Тенеси"
264
 
265
- #: ../src/admin-views/venue-meta-box.php:88
266
  msgid "State or Province:"
267
  msgstr "Област (щат):"
268
 
269
- #: ../src/Tribe/View_Helpers.php:359
270
  msgid "Texas"
271
  msgstr "Тексас"
272
 
273
- #: ../src/admin-views/venue-meta-box.php:92
274
  msgid "Select a State:"
275
  msgstr "Щат:"
276
 
277
- #: ../src/Tribe/View_Helpers.php:360
278
  msgid "Utah"
279
  msgstr "Юта"
280
 
281
- #: ../src/admin-views/venue-meta-box.php:105
282
  msgid "Postal Code:"
283
  msgstr "Пощенски код:"
284
 
285
- #: ../src/Tribe/View_Helpers.php:361
286
  msgid "Vermont"
287
  msgstr "Върмонт"
288
 
289
- #: ../src/admin-views/venue-meta-box.php:137
290
- #: ../src/admin-views/venue-meta-box.php:159
291
  msgid "Show Google Map:"
292
  msgstr "Покажи Google карти:"
293
 
294
- #: ../src/Tribe/View_Helpers.php:362
295
  msgid "Virginia"
296
  msgstr "Вирджиния"
297
 
298
- #: ../src/admin-views/venue-meta-box.php:147
299
- #: ../src/admin-views/venue-meta-box.php:169
300
  msgid "Show Google Maps Link:"
301
  msgstr "Показване на Google карти линк:"
302
 
303
- #: ../src/Tribe/View_Helpers.php:363
304
  msgid "Washington"
305
  msgstr "Вашингтон"
306
 
307
- #: ../src/admin-views/widget-admin-list.php:13
308
  msgid "Title:"
309
  msgstr "Заглавие:"
310
 
311
- #: ../src/Tribe/View_Helpers.php:364
312
  msgid "West Virginia"
313
  msgstr "Западна Вирджиния"
314
 
315
- #: ../src/admin-views/widget-admin-list.php:18
316
  msgid "Show:"
317
  msgstr "Покажи:"
318
 
319
- #: ../src/Tribe/View_Helpers.php:365
320
  msgid "Wisconsin"
321
  msgstr "Уисконсин"
322
 
323
- #: ../src/admin-views/widget-admin-list.php:28
324
  msgid "Show widget only if there are upcoming events:"
325
  msgstr "Показване на уиджета само ако има предстоящи събития:"
326
 
327
- #: ../src/Tribe/View_Helpers.php:366
328
  msgid "Wyoming"
329
  msgstr "Уайоминг"
330
 
331
- #: ../src/functions/advanced-functions/meta_registration.php:16
332
- #: ../src/views/modules/meta/details.php:30
333
  msgid "Details"
334
  msgstr "Детайли"
335
 
336
- #: ../src/Tribe/iCal.php:28
337
  msgctxt "feed link"
338
  msgid "&raquo;"
339
  msgstr "&raquo;"
340
 
341
- #: ../src/functions/advanced-functions/meta_registration.php:80
342
  msgid "Event Tags:"
343
  msgstr "Етикети към събития:"
344
 
345
- #: ../src/Tribe/iCal.php:29
346
  msgid "%1$s %2$s iCal Feed"
347
  msgstr "%1$s %2$s iCal Feed"
348
 
349
- #: ../src/functions/advanced-functions/meta_registration.php:112
350
  msgid "Origin:"
351
  msgstr "Произход:"
352
 
353
- #: ../src/Tribe/iCal.php:75
354
  msgid "Add to Google Calendar"
355
  msgstr "Добави в Google Календар"
356
 
357
- #: ../src/functions/advanced-functions/meta_registration.php:286
358
  msgid "%s:"
359
  msgstr "%s:"
360
 
361
- #: ../src/Tribe/iCal.php:75
362
  msgid "Google Calendar"
363
  msgstr "Google Календар"
364
 
365
- #: ../src/functions/template-tags/date.php:285
366
  msgid "The function needs to be passed an $event or used in the loop."
367
  msgstr "Функцията трябва да бъде асоциирана със $event или да бъде използвана като обща."
368
 
369
- #: ../src/Tribe/iCal.php:76
370
  msgid "Download .ics file"
371
  msgstr "Сваляне на .ics файл"
372
 
373
- #: ../src/functions/template-tags/day.php:107
374
  msgid "<span>&laquo;</span> Previous Day"
375
  msgstr "<span>&laquo;</span> Предходен ден"
376
 
377
- #: ../src/Tribe/iCal.php:76
378
  msgid "iCal Export"
379
  msgstr "iCal импорт"
380
 
381
- #: ../src/functions/template-tags/day.php:109
382
  msgid "Next Day <span>&raquo;</span>"
383
  msgstr "Следващ ден <span>&raquo;</span>"
384
 
385
- #: ../src/Tribe/iCal.php:106
386
  msgid "Month's %s"
387
  msgstr "На месец %s"
388
 
389
- #: ../src/functions/template-tags/day.php:111
390
  msgid "Yesterday"
391
  msgstr "Вчера"
392
 
393
- #: ../src/Tribe/iCal.php:109
394
  msgid "Week's %s"
395
  msgstr "На седмица %s"
396
 
397
- #: ../src/functions/template-tags/day.php:113
398
  msgid "Tomorrow"
399
  msgstr "Утре"
400
 
401
- #: ../src/Tribe/iCal.php:112
402
  msgid "Day's %s"
403
  msgstr "На ден %s"
404
 
405
- #: ../src/functions/template-tags/deprecated.php:1283
406
  msgid "Category"
407
  msgstr "Категория"
408
 
409
- #: ../src/Tribe/iCal.php:115
410
  msgid "Listed %s"
411
  msgstr "Вписани %s"
412
 
413
- #: ../src/functions/template-tags/general.php:441
414
  msgid "Tags:"
415
  msgstr "Етикети:"
416
 
417
- #: ../src/Tribe/iCal.php:120
418
  msgid "Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps"
419
  msgstr "Използвайте това, за да споделяте записи от календара с Google Календар, Apple iCal и други съвместими приложения"
420
 
421
- #: ../src/functions/template-tags/general.php:553
422
  msgid "Loading %s"
423
  msgstr "Зарежда %s"
424
 
425
- #: ../src/admin-views/admin-update-message.php:9
426
- #: ../src/admin-views/admin-welcome-message.php:11
427
  msgid "You are running Version %s and deserve a hug :-)"
428
  msgstr "Използвате версия %s и заслужавате прегръдка :-)"
429
 
430
- #: ../src/Tribe/Cost_Utils.php:123
431
  msgid "Free"
432
  msgstr "Безплатно"
433
 
434
- #: ../src/admin-views/admin-update-message.php:32
435
  msgid "Keep the Core Plugin <strong>FREE</strong>!"
436
  msgstr "Запазете основното разширение <strong>безплатно</strong>!"
437
 
438
- #: ../src/functions/template-tags/general.php:1455
439
  msgid "Calendar powered by %sThe Events Calendar%s"
440
  msgstr "Календара използва %sThe Events Calendar%s"
441
 
442
- #: ../src/admin-views/admin-update-message.php:33
443
  msgid "Every time you rate <strong>5 stars</strong>, a fairy is born. Okay maybe not, but more happy users mean more contributions and help on the forums. The community NEEDS your voice."
444
  msgstr "Всеки път, когато давате оценка <strong>5 звезди</strong>, се ражда приказка. Е, може би не съвсем, но колкото повече потребители имаме, толкова повече помощни материали във форума. Общността има нужда от вашия глас."
445
 
446
- #: ../src/functions/template-tags/loop.php:131
447
  msgid "Upcoming %s"
448
  msgstr "Предстоящи %s"
449
 
450
- #: ../src/admin-views/admin-update-message.php:34
451
- #: ../src/admin-views/admin-welcome-message.php:22
452
  msgid "Rate It"
453
  msgstr "Оценете"
454
 
455
- #: ../src/functions/template-tags/loop.php:145
456
  msgid "%1$s for %2$s - %3$s"
457
  msgstr "%1$s за %2$s - %3$s"
458
 
459
- #: ../src/admin-views/admin-update-message.php:37
460
  msgid "PSST... Want a Discount?"
461
  msgstr "Хей...искаш ли отстъпка ?"
462
 
463
- #: ../src/functions/template-tags/loop.php:147
464
  msgid "Past %s"
465
  msgstr "Минали %s"
466
 
467
- #: ../src/admin-views/admin-update-message.php:38
468
  msgid "We send out discounts to our core users via our newsletter."
469
  msgstr "Изпращаме отстъпки за нашите основни потребители по електронна поща."
470
 
471
- #: ../src/functions/template-tags/loop.php:152
472
- #: ../src/functions/template-tags/loop.php:161
473
  msgid "%1$s for %2$s"
474
  msgstr "%1$s за %2$s"
475
 
476
- #: ../src/admin-views/admin-update-message.php:43
477
- #: ../src/admin-views/admin-welcome-message.php:31
478
  msgid "Sign Up"
479
  msgstr "Запиши се"
480
 
481
- #: ../src/functions/template-tags/options.php:20
482
  msgid "Your current Events URL is %s"
483
  msgstr "В момента адреса на календара е %s"
484
 
485
- #: ../src/admin-views/admin-update-message.php:49
486
  msgid "Looking for Something Special?"
487
  msgstr "Търсите нещо специално?"
488
 
489
- #: ../src/functions/template-tags/options.php:29
490
  msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
491
  msgstr "<strong>Не можете </strong>да използвате същия адрес като горния. Обикновено горния е в множествено число, а този в единствено. <br />URL адреса на отделно събитие е: %s"
492
 
493
- #: ../src/admin-views/admin-update-message.php:51
494
  msgid "Pro"
495
  msgstr "Про"
496
 
497
- #: ../src/io/csv/admin-views/columns.php:22
498
  msgid "Column Mapping: %s"
499
  msgstr "Column Mapping: %s"
500
 
501
- #: ../src/admin-views/admin-update-message.php:53
502
  msgid "Community Events"
503
  msgstr "Community Events"
504
 
505
- #: ../src/io/csv/admin-views/columns.php:27
506
  msgid "Columns have been mapped based on your last import. Please ensure the selected fields match the columns in your CSV file."
507
  msgstr "Колоните бяха разпределени в съответствие с последния ви импорт. Моля уверете се, че полетата отговарят на колоните от вашия CSV файл."
508
 
509
- #: ../src/admin-views/admin-update-message.php:54
510
  msgid "Filters"
511
  msgstr "Филтри"
512
 
513
- #: ../src/io/csv/admin-views/columns.php:32
514
  msgid "Column Headings"
515
  msgstr "Заглавия на колони"
516
 
517
- #: ../src/admin-views/admin-update-message.php:55
518
  msgid "Facebook"
519
  msgstr "Facebook"
520
 
521
- #: ../src/io/csv/admin-views/columns.php:33
522
  msgid "Event Fields"
523
  msgstr "Полета на събитието"
524
 
525
- #: ../src/admin-views/admin-update-message.php:58
526
- #: ../src/admin-views/admin-welcome-message.php:53
527
  msgid "News For Events Users"
528
  msgstr "Новини за потребители на календара"
529
 
530
- #: ../src/io/csv/admin-views/columns.php:44
531
  msgid "Perform Import"
532
  msgstr "Извърши импортиране"
533
 
534
- #: ../src/admin-views/admin-welcome-message.php:19
535
  msgid "Keep The Events Calendar Core FREE"
536
  msgstr "Запазете основната версия на The Events Calendar безплатна"
537
 
538
- #: ../src/io/csv/admin-views/general.php:10
539
  msgid "The Events Calendar: Import"
540
  msgstr "The Events Calendar: Импортиране"
541
 
542
- #: ../src/admin-views/admin-welcome-message.php:20
543
  msgid "5 star ratings help us bring TEC to more users. More happy users mean more support, more features, and more of everything you know and love about The Events Calendar. We couldn't do this without your support."
544
  msgstr "5-звездния рейтинг ни помага да привлечем повече потребители за TEC. Повече щастливи потребители, означават по-добра поддръжка, повече нови функции и повече от всички неща, които знаете и обичате в The Events Calendar. Не можем да го направим без вашата помощ."
545
 
546
- #: ../src/io/csv/admin-views/general.php:12
547
  msgid "Instructions"
548
  msgstr "Инструкции"
549
 
550
- #: ../src/admin-views/admin-welcome-message.php:21
551
  msgid "Rate it five stars today!"
552
  msgstr "Гласувайте с 5 звезди днес!"
553
 
554
- #: ../src/io/csv/admin-views/general.php:14
555
  msgid "To import events, first select a %sDefault Import Event Status%s below to assign to your imported events."
556
  msgstr "За да импортирате събития, първо изберете %sСтатус на импортираните събития по подразбиране%s отдолу, за да го прикачите към вашите импортирани събития."
557
 
558
- #: ../src/admin-views/admin-welcome-message.php:25
559
  msgid "Newsletter Signup"
560
  msgstr "Записване за бюлетина"
561
 
562
- #: ../src/io/csv/admin-views/general.php:17
563
  msgid "Once your setting is saved, move to the applicable Import tab to select import specific criteria."
564
  msgstr "След като настройките ви са запазени веднъж, преминете към съответния импорт-таб , за да изберете специфични критерии за импорт."
565
 
566
- #: ../src/admin-views/admin-welcome-message.php:26
567
  msgid "Stay in touch with The Events Calendar Pro. We send out periodic updates, key developer notices, and even the occasional discount."
568
  msgstr "Бъдете в час с The Events Calendar Pro. Разпространяваме периодични актуализации, ключови подобрения, а понякога и отстъпки."
569
 
570
- #: ../src/io/csv/admin-views/general.php:24
571
  msgid "Import Settings"
572
  msgstr "Настройки за импортиране"
573
 
574
- #: ../src/admin-views/admin-welcome-message.php:40
575
- #: ../src/admin-views/tribe-options-help.php:148
576
  msgid "Getting Started"
577
  msgstr "От къде да започнете"
578
 
579
- #: ../src/io/csv/admin-views/general.php:27
580
  msgid "Default imported event status:"
581
  msgstr "Статус на импортираните събития по подразбиране:"
582
 
583
- #: ../src/admin-views/admin-welcome-message.php:41
584
  msgid "Check out the New User Primer &amp; Tutorials"
585
  msgstr "Разгледайте ръководство \"Първи стъпки\" за нови потребители."
586
 
587
- #: ../src/io/csv/admin-views/general.php:30
588
  msgid "Published"
589
  msgstr "Публикувано"
590
 
591
- #: ../src/admin-views/admin-welcome-message.php:43
592
  msgid "Looking for More Features?"
593
  msgstr "Имате нужда от повече функции?"
594
 
595
- #: ../src/io/csv/admin-views/general.php:31
596
  msgid "Pending"
597
  msgstr "Предстоящо"
598
 
599
- #: ../src/admin-views/admin-welcome-message.php:44
600
  msgid "Addons for Community, Tickets, Filters, Facebook and more."
601
  msgstr "Добавки за общности, билети, филтри, Facebook и други."
602
 
603
- #: ../src/io/csv/admin-views/general.php:32
604
  msgid "Draft"
605
  msgstr "Чернова"
606
 
607
- #: ../src/admin-views/admin-welcome-message.php:46
608
  msgid "Support Resources"
609
  msgstr "Помощни ресурси"
610
 
611
- #: ../src/io/csv/admin-views/header.php:17
612
  msgid "Events Import"
613
  msgstr "Импортиране на събития"
614
 
615
- #: ../src/admin-views/admin-welcome-message.php:47
616
  msgid "FAQs, Documentation, Tutorials and Forums"
617
  msgstr "Въпроси и отговори, Документация, Ръководства и Форуми"
618
 
619
- #: ../src/io/csv/admin-views/import.php:17
620
  msgid "Import Instructions"
621
  msgstr "Инструкции за импортиране"
622
 
623
- #: ../src/admin-views/admin-welcome-message.php:50
624
  msgid "Release Notes"
625
  msgstr "Забележки относно обновлението"
626
 
627
- #: ../src/io/csv/admin-views/import.php:20
628
  msgid "If your events have Organizers or Venues, please import those first."
629
  msgstr "Ако вашите събития имат организатори или места, моля първо ги импортирайте."
630
 
631
- #: ../src/admin-views/admin-welcome-message.php:51
632
  msgid "Get the Skinny on the Latest Updates"
633
  msgstr "Получете вътрешна информация за предстоящи актуализации"
634
 
635
- #: ../src/io/csv/admin-views/import.php:21
636
  msgid "To import organizers or venues:"
637
  msgstr "За да импортирате организатори и места:"
638
 
639
- #: ../src/admin-views/admin-welcome-message.php:54
640
  msgid "Product Releases, Tutorials and Community Activity"
641
  msgstr "Продуктови версии, Ръководства и обществена дейност"
642
 
643
- #: ../src/io/csv/admin-views/import.php:23
644
  msgid "Select the appropriate import type."
645
  msgstr "Изберете подходящия вид импортиране."
646
 
647
- #: ../src/admin-views/app-shop.php:4
648
  msgid "Tribe Event Add-Ons"
649
  msgstr "Tribe Event Add-Ons"
650
 
651
- #: ../src/io/csv/admin-views/import.php:24
652
- #: ../src/io/csv/admin-views/import.php:30
653
  msgid "Upload a CSV file with one record on each line. The first line may contain column names (check the box below)."
654
  msgstr "Качете CSV файл с по един запис на всеки ред. Първия ред може да съдържа имената на колоните (отбележете отметката по-долу)."
655
 
656
- #: ../src/admin-views/app-shop.php:54
657
  msgid "Version"
658
  msgstr "Версия"
659
 
660
- #: ../src/io/csv/admin-views/import.php:25
661
  msgid "One column in your CSV should have the Organizer/Venue name. All other fields are optional."
662
  msgstr "Една колона във вашия CSV файл трява да съдържа името на организатора/мястото. Всички останали полета не са задължителни."
663
 
664
- #: ../src/admin-views/app-shop.php:57
665
  msgid "Last Update"
666
  msgstr "Последна актуализация"
667
 
668
- #: ../src/io/csv/admin-views/import.php:26
669
- #: ../src/io/csv/admin-views/import.php:32
670
  msgid "After you upload your file, you'll have the opportunity to indicate how the columns in your CSV map to fields in The Events Calendar."
671
  msgstr "След като качите CSV файла, ще имате възможност да определите, на коя колона отговаря всяко поле в The Events Calendar."
672
 
673
- #: ../src/admin-views/event-sidebar-options.php:13
674
  msgid "Hide From %s Listings"
675
  msgstr "Скрий от %s записи"
676
 
677
- #: ../src/io/csv/admin-views/import.php:28
678
  msgid "After importing your Organizers and Venues, import your Events:"
679
  msgstr "След като импортирате Организаторите и Местата си, импортирайте събитията си:"
680
 
681
- #: ../src/admin-views/event-sidebar-options.php:15
682
  msgid "Sticky in Month View"
683
  msgstr "Sticky в месечния изглед"
684
 
685
- #: ../src/io/csv/admin-views/import.php:31
686
  msgid "One column in your CSV should have the Event title. Another should have the Event start date. All other fields are optional."
687
  msgstr "Една колона във вашия CSV файл трява да съдържа името на събитието. Всички останали полета не са задължителни."
688
 
689
- #: ../src/admin-views/event-sidebar-options.php:16
690
  msgid "When events are sticky in month view, they'll display first in the list of events shown within a given day block."
691
  msgstr "Когато събитията са Sticky в месечния изглед, те ще се показват първи в списъка от събития в рамките на определен ден."
692
 
693
- #: ../src/io/csv/admin-views/import.php:36
694
  msgid "Questions? <a href=\"%s\">Watch the video</a>."
695
  msgstr "Въпроси? <a href=\"%s\">Изгледайте видеото</a>."
696
 
697
- #: ../src/admin-views/events-meta-box.php:37
698
  msgid "Time &amp; Date"
699
  msgstr "Време &amp; Дата"
700
 
701
- #: ../src/io/csv/admin-views/import.php:43
702
  msgid "Import Type:"
703
  msgstr "Вид импортиране:"
704
 
705
- #: ../src/admin-views/events-meta-box.php:44
706
  msgid "You have changed the recurrence rules of this %1$s. Saving the %1$s will update all future %2$s. If you did not mean to change all %2$s, then please refresh the page."
707
  msgstr "Вие променихте правилата за повторяемост на това %1$s. Запазвайки %1$s ще промени всички бъдещи %2$s. Ако не сте имали намерение да променяте всички %2$s, то моля презаредете страницата."
708
 
709
- #: ../src/io/csv/admin-views/import.php:55
710
  msgid "CSV File:"
711
  msgstr "CSV файл:"
712
 
713
- #: ../src/admin-views/events-meta-box.php:47
714
  msgid "All Day %s:"
715
  msgstr "Целодневно %s:"
716
 
717
- #: ../src/io/csv/admin-views/import.php:59
718
  msgid "Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file is UTF-8 encoded? Make sure to specify the character encoding when you save the file, or pass it through a <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>conversion tool</a>."
719
  msgstr "Качете правилно форматиран CSV файл, с UTF-8 кодировка. Не сте сигурни дали кодировката на файла ви е UTF-8? Уверете се, че сте избрали правилната кодировка, когато записвате файла или го конвертирайте чрез онлайн туул като <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>този</a>."
720
 
721
- #: ../src/admin-views/events-meta-box.php:53
722
  msgid "Start Date &amp; Time:"
723
  msgstr "Начална дата и час:"
724
 
725
- #: ../src/io/csv/admin-views/import.php:67
726
  msgid "This file has column names in the first row"
727
  msgstr "Файлът има имена на колоните в първия ред"
728
 
729
- #: ../src/admin-views/events-meta-box.php:57
730
- #: ../src/admin-views/events-meta-box.php:78
731
  msgid "YYYY-MM-DD"
732
  msgstr "YYYY-MM-DD"
733
 
734
- #: ../src/io/csv/admin-views/import.php:78
735
  msgid "Import CSV File"
736
  msgstr "Импортиране на CSV файл"
737
 
738
- #: ../src/admin-views/events-meta-box.php:75
739
  msgid "End Date &amp; Time:"
740
  msgstr "Крайна дата и час:"
741
 
742
- #: ../src/io/csv/admin-views/result.php:15
743
  msgid "Import Result"
744
  msgstr "Импортиране на резултат"
745
 
746
- #: ../src/admin-views/events-meta-box.php:103
747
  msgid "Location"
748
  msgstr "Местоположение"
749
 
750
- #: ../src/io/csv/admin-views/result.php:17
751
  msgid "Import complete!"
752
  msgstr "Импортирането завършено!"
753
 
754
- #: ../src/admin-views/events-meta-box.php:124
755
  msgid "%s Website"
756
  msgstr "%s Уебсайт"
757
 
758
- #: ../src/io/csv/admin-views/result.php:19
759
  msgid "Inserted: %d"
760
  msgstr "Вмъкнато: %d"
761
 
762
- #: ../src/admin-views/events-meta-box.php:127
763
  msgid "URL:"
764
  msgstr "URL:"
765
 
766
- #: ../src/io/csv/admin-views/result.php:20
767
  msgid "Updated: %d"
768
  msgstr "Обновено: %d"
769
 
770
- #: ../src/admin-views/events-meta-box.php:141
771
  msgid "%s Cost"
772
  msgstr "%s Стойност"
773
 
774
- #: ../src/io/csv/admin-views/result.php:21
775
  msgid "Skipped: %d"
776
  msgstr "Пропуснато: %d"
777
 
778
- #: ../src/admin-views/events-meta-box.php:144
779
  msgid "Currency Symbol:"
780
  msgstr "Символ за валута:"
781
 
782
- #: ../src/io/csv/admin-views/result.php:25
783
  msgid "The import statistics above have the following meaning:"
784
  msgstr "Импортираните по-горе статистики имат следното значение:"
785
 
786
- #: ../src/admin-views/events-meta-box.php:159
787
  msgctxt "Currency symbol position"
788
  msgid "Before cost"
789
  msgstr "Преди цената"
790
 
791
- #: ../src/io/csv/admin-views/result.php:26
792
  msgid "<ol><li><strong>Inserted:</strong> A new item was inserted successfully.</li><li><strong>Updated:</strong> An item was found with the same name and/or start date. The existing item was updated with the new value from the file.</li><li><strong>Skipped:</strong> A row was found in the CSV file that could not be imported. Please see below for the invalid rows.</li></ol>"
793
  msgstr "<ol><li><strong>Вмъкнати: </strong> Нов елемент е вмъкнат успешно.</li><li><strong>Обновени:</strong> Беше намерен елемент със същото име и/или начална дата. Съществуващия запис беше обновен със стойностите от файла. </li><li><strong>Пропуснати:</strong>Намерен е ред, който не може да бъде импортиран. Списък на невалидните редове ще откриете по-долу. </li></ol>"
794
 
795
- #: ../src/admin-views/events-meta-box.php:162
796
  msgctxt "Currency symbol position"
797
  msgid "After cost"
798
  msgstr "След цената"
799
 
800
- #: ../src/io/csv/admin-views/result.php:29
801
  msgid "Skipped row numbers: %s"
802
  msgstr "Номера на пропуснатите редове: %s"
803
 
804
- #: ../src/admin-views/events-meta-box.php:167
805
- #: ../src/functions/advanced-functions/meta_registration.php:48
806
- #: ../src/views/modules/meta/details.php:100
807
  msgid "Cost:"
808
  msgstr "Стойност:"
809
 
810
- #: ../src/admin-views/events-meta-box.php:175
811
  msgid "Enter a 0 for %s that are free or leave blank to hide the field."
812
  msgstr "Въведете 0 за %s които са без входна такса или оставете празно, ако искате да скриете полето."
813
 
814
- #: ../src/admin-views/new-organizer-meta-section.php:15
815
- #: ../src/admin-views/organizer-meta-box.php:15
816
- #: ../src/admin-views/venue-meta-box.php:25
817
  msgid "%s Name:"
818
  msgstr "%s Име:"
819
 
820
- #: ../src/views/day/nav.php:16
821
  msgid "Day Navigation"
822
  msgstr "Навигация по ден"
823
 
824
- #: ../src/admin-views/new-organizer-meta-section.php:21
825
- #: ../src/admin-views/organizer-meta-box.php:22
826
- #: ../src/admin-views/tickets/attendees.php:52
827
- #: ../src/admin-views/venue-meta-box.php:112
828
- #: ../src/functions/advanced-functions/meta_registration.php:159
829
- #: ../src/functions/advanced-functions/meta_registration.php:238
830
- #: ../src/views/modules/meta/organizer.php:41
831
- #: ../src/views/modules/meta/venue.php:40
832
  msgid "Phone:"
833
  msgstr "Телефон:"
834
 
835
- #: ../src/views/day/single-event.php:66 ../src/views/list/single-event.php:70
836
  msgid "Find out more"
837
  msgstr "Виж повече"
838
 
839
- #: ../src/admin-views/new-organizer-meta-section.php:27
840
- #: ../src/admin-views/organizer-meta-box.php:28
841
- #: ../src/admin-views/tickets/attendees.php:61
842
- #: ../src/admin-views/venue-meta-box.php:119
843
- #: ../src/functions/advanced-functions/meta_registration.php:96
844
- #: ../src/functions/advanced-functions/meta_registration.php:191
845
- #: ../src/functions/advanced-functions/meta_registration.php:270
846
- #: ../src/views/modules/meta/details.php:125
847
- #: ../src/views/modules/meta/organizer.php:63
848
- #: ../src/views/modules/meta/venue.php:45
849
  msgid "Website:"
850
  msgstr "Уебсайт:"
851
 
852
- #: ../src/views/list/nav.php:19
853
  msgid "%s List Navigation"
854
  msgstr "%s Навигация на списък"
855
 
856
- #: ../src/admin-views/new-organizer-meta-section.php:33
857
- #: ../src/admin-views/organizer-meta-box.php:34
858
- #: ../src/functions/advanced-functions/meta_registration.php:254
859
- #: ../src/views/modules/meta/organizer.php:52
860
  msgid "Email:"
861
  msgstr "Email:"
862
 
863
- #: ../src/views/list/nav.php:25
864
  msgid "<span>&laquo;</span> Previous %s"
865
  msgstr "<span>&laquo;</span> Назад %s"
866
 
867
- #: ../src/admin-views/new-organizer-meta-section.php:34
868
- #: ../src/admin-views/organizer-meta-box.php:35
869
  msgid "You may want to consider <a href=\"http://wordpress.org/plugins/tags/obfuscate\">obfuscating</a> any e-mail address published on your site to best avoid it getting harvested by spammers."
870
  msgstr "Може би искате да обмислите да <a href=\"http://wordpress.org/plugins/tags/obfuscate\">прикриете</a> имейл адресите, публикувани на вашия сайт, с цел да избегнете атаки от спамъри."
871
 
872
- #: ../src/views/list/nav.php:32
873
  msgid "Next %s <span>&raquo;</span>"
874
  msgstr "Напред %s <span>&raquo;</span>"
875
 
876
- #: ../src/admin-views/new-organizer-meta-section.php:60
877
- #: ../src/admin-views/organizer-meta-box.php:57
878
- #: ../src/admin-views/venue-meta-box.php:193
879
  msgid "%s Name Already Exists"
880
  msgstr "%s Името вече съществува"
881
 
882
- #: ../src/views/modules/bar.php:30 ../src/views/modules/bar.php:61
883
  msgid "Find %s"
884
  msgstr "Намери %s"
885
 
886
- #: ../src/admin-views/tickets/attendees.php:17
887
  msgid "Event Summary"
888
  msgstr "Резюме на събитието:"
889
 
890
- #: ../src/views/modules/bar.php:37
891
  msgid "Event Views Navigation"
892
  msgstr "Event Views Navigation"
893
 
894
- #: ../src/admin-views/tickets/attendees.php:23
895
  msgid "Event Details"
896
  msgstr "Подробности за събитие"
897
 
898
- #: ../src/views/modules/bar.php:38
899
  msgid "View As"
900
  msgstr "Изглед"
901
 
902
- #: ../src/admin-views/tickets/attendees.php:25
903
  msgid "Start Date / Time:"
904
  msgstr "Начална дата / час:"
905
 
906
- #: ../src/views/modules/meta/details.php:119
907
  msgid "%s Tags:"
908
  msgstr "%s Тагове:"
909
 
910
- #: ../src/admin-views/tickets/attendees.php:29
911
  msgid "End Date / Time:"
912
  msgstr "Крайна дата / час:"
913
 
914
- #: ../src/functions/template-tags/general.php:1279
915
  msgid "%s for"
916
  msgstr "%s за"
917
 
918
- #: ../src/admin-views/tickets/attendees.php:69
919
  msgid "Ticket Sales"
920
  msgstr "Продажба на билети"
921
 
922
- #: ../src/functions/template-tags/general.php:1278
923
  msgid "Find out more »"
924
  msgstr "Вижте повече..."
925
 
926
- #: ../src/admin-views/tickets/attendees.php:86
927
  msgid "(%d awaiting review)"
928
  msgid_plural "(%d awaiting review)"
929
  msgstr[0] "(%d очаква одобрение)"
930
  msgstr[1] "(%d очакват одобрение)"
931
 
932
- #: ../src/views/month/nav.php:18
933
  msgid "Calendar Month Navigation"
934
  msgstr "Навигация по календарен месец"
935
 
936
- #: ../src/admin-views/tickets/attendees.php:90
937
- msgid "Sold %d %s"
938
- msgstr "Продадени %d %s"
939
-
940
- #: ../src/views/month/single-day.php:43
941
  msgid "View 1 %1$s"
942
  msgid_plural "View All %2$s %3$s"
943
  msgstr[0] "Виж 1 %1$s"
944
  msgstr[1] ""
945
 
946
- #: ../src/admin-views/tickets/attendees.php:93
947
- msgid "Sold %d of %d %s"
948
- msgstr "Продадени %d of %d %s"
949
-
950
- #: ../src/views/single-event.php:27
951
  msgid "&laquo; All %s"
952
  msgstr "&laquo; Всички %s"
953
 
954
- #: ../src/admin-views/tickets/attendees.php:111
955
  msgid "Tickets sold:"
956
  msgstr "Продадени билети:"
957
 
958
- #: ../src/views/single-event.php:46 ../src/views/single-event.php:91
959
  msgid "%s Navigation"
960
  msgstr "%s Навигация"
961
 
962
- #: ../src/admin-views/tickets/attendees.php:118
963
  msgid "Finalized:"
964
  msgstr "Завършено:"
965
 
966
- #: ../src/views/tickets/attendees-email.php:24
967
  msgid "Attendee List"
968
  msgstr "Списък с участниците"
969
 
970
- #: ../src/admin-views/tickets/attendees.php:121
971
  msgid "Awaiting review:"
972
  msgstr "Очаква одобрение:"
973
 
974
- #: ../src/views/tickets/email.php:26
975
  msgid "Your tickets"
976
  msgstr "Вашите билети"
977
 
978
- #: ../src/admin-views/tickets/attendees.php:128
979
  msgid "Checked in:"
980
  msgstr "Записани:"
981
 
982
- #: ../src/views/tickets/email.php:309
983
  msgid "Ticket Type"
984
  msgstr "Тип на билета"
985
 
986
- #: ../src/admin-views/tickets/attendees.php:146
987
  msgid "Send the attendee list by email"
988
  msgstr "Изпрати листа с присъстващите по имейл."
989
 
990
- #: ../src/views/tickets/email.php:313
991
  msgid "Purchaser"
992
  msgstr "Купувач"
993
 
994
- #: ../src/admin-views/tickets/attendees.php:150
995
  msgid "Select a User:"
996
  msgstr "Избор на потребител:"
997
 
998
- #: ../src/views/widgets/list-widget.php:65
999
  msgid "View All %s"
1000
  msgstr "Виж всички %s"
1001
 
1002
- #: ../src/admin-views/tickets/attendees.php:155
1003
  msgid "Select..."
1004
  msgstr "Избор..."
1005
 
1006
- #: ../src/views/widgets/list-widget.php:71
1007
  msgid "There are no upcoming %s at this time."
1008
  msgstr "Няма предстоящи %s за момента."
1009
 
1010
- #: ../src/admin-views/tickets/attendees.php:160
1011
  msgid "or"
1012
  msgstr "или"
1013
 
1014
- #: ../src/admin-views/tickets/attendees.php:162
1015
  msgid "Email Address:"
1016
  msgstr "Email адрес:"
1017
 
1018
- #: ../src/admin-views/tickets/list.php:21
1019
  msgid "Edit"
1020
  msgstr "Редакция"
1021
 
1022
- #: ../src/admin-views/tickets/list.php:24
1023
  msgid "Edit in %s"
1024
  msgstr "Редакция в %s"
1025
 
1026
- #: ../src/admin-views/tickets/list.php:27
1027
  msgid "View"
1028
  msgstr "Преглед"
1029
 
1030
- #: ../src/admin-views/tickets/list.php:67
1031
  msgid "Sold %d"
1032
  msgstr "Продадени %d"
1033
 
1034
- #: ../src/admin-views/tickets/list.php:69
1035
- msgid "Sold %d of %d"
1036
- msgstr "Продадени %d от %d"
1037
-
1038
- #: ../src/admin-views/tickets/meta-box.php:23
1039
  msgid "This event was created using Community Events. Are you sure you want to sell tickets for it?"
1040
  msgstr "Това събитие е създадено с Community Events. Сигурни ли сте, че искате да продавате билети за него?"
1041
 
1042
- #: ../src/admin-views/tickets/meta-box.php:34
1043
  msgid "Upload image for the ticket header"
1044
  msgstr "Качване на снимки за хедър-а на билета"
1045
 
1046
- #: ../src/admin-views/tickets/meta-box.php:35
1047
  msgid "The maximum image size in the email will be 580px wide by any height, and then scaled for mobile. If you would like \"retina\" support use an image sized to 1160px wide."
1048
  msgstr "Максималният размер на изображението в email-а ще бъде 580px ширина и произволна височина и ще бъде скалирано за мобилни устройства. Ако желаете поддръжка на \"retina\" , използвайте изображение с ширина 1160px."
1049
 
1050
- #: ../src/admin-views/tickets/meta-box.php:38
1051
  msgid "Select an Image"
1052
  msgstr "Избор на изображение"
1053
 
1054
- #: ../src/admin-views/tickets/meta-box.php:46
1055
  msgid "Remove"
1056
  msgstr "Премахване"
1057
 
1058
- #: ../src/admin-views/tickets/meta-box.php:64
1059
- #: ../src/admin-views/tickets/meta-box.php:74
1060
  msgid "Add new ticket"
1061
  msgstr "Добавяне на нов билет"
1062
 
1063
- #: ../src/admin-views/tickets/meta-box.php:75
1064
  msgid "Edit ticket"
1065
  msgstr "Редакция на билет"
1066
 
1067
- #: ../src/admin-views/tickets/meta-box.php:80
1068
  msgid "Sell using:"
1069
  msgstr "Продажба посредством:"
1070
 
1071
- #: ../src/admin-views/tickets/meta-box.php:97
1072
  msgid "Ticket Name:"
1073
  msgstr "Име на билета:"
1074
 
1075
- #: ../src/admin-views/tickets/meta-box.php:104
1076
  msgid "Ticket Description:"
1077
  msgstr "Описание на билета:"
1078
 
1079
- #: ../src/admin-views/tickets/meta-box.php:113
1080
  msgid "Price:"
1081
  msgstr "Цена:"
1082
 
1083
- #: ../src/admin-views/tickets/meta-box.php:119
1084
  msgid "(0 or empty for free tickets)"
1085
  msgstr "(0 или празно за безплатни билети)"
1086
 
1087
- #: ../src/admin-views/tickets/meta-box.php:125
1088
  msgid "Sale Price:"
1089
  msgstr "Продажна цена:"
1090
 
1091
- #: ../src/admin-views/tickets/meta-box.php:131
1092
  msgid "(Current sale price - this can be managed via the product editor)"
1093
  msgstr "(Текуща продажна цена - това може да бъде управлявано чрез продуктов редактор)"
1094
 
1095
- #: ../src/admin-views/tickets/meta-box.php:137
1096
  msgid "Start sale:"
1097
  msgstr "Начало на продажбата:"
1098
 
1099
- #: ../src/admin-views/tickets/meta-box.php:161
1100
  msgid "End sale:"
1101
  msgstr "Край на продажбата:"
1102
 
1103
- #: ../src/admin-views/tickets/meta-box.php:183
1104
  msgid "When will ticket sales occur? If you don't set a start/end date for sales, tickets will be available from now until the event ends."
1105
  msgstr "Кога да се продават билетите? Ако не отбележите начална/крайна дата, билетите ще се продават от момента на публикуване до края на събитието."
1106
 
1107
- #: ../src/admin-views/tickets/meta-box.php:195
1108
  msgid "Save this ticket"
1109
  msgstr "Запазване на билета"
1110
 
1111
- #: ../src/admin-views/tribe-options-display.php:4
1112
  msgid "Default Events Template"
1113
  msgstr "Стандартен шаблон за събития"
1114
 
1115
- #: ../src/admin-views/tribe-options-display.php:5
1116
  msgid "Default Page Template"
1117
  msgstr "Стандартен шаблон за страници"
1118
 
1119
- #: ../src/admin-views/tribe-options-display.php:32
1120
  msgid "Display Settings"
1121
  msgstr "Настройки на изгледа"
1122
 
1123
- #: ../src/admin-views/tribe-options-display.php:37
1124
  msgid "The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme.</p><p>There are going to be situations where no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications."
1125
  msgstr "Настройките по-долу управляват начина на показване на вашия календар. Ако нещо не изглежда както трябва, опитайте да смените стила с една от другите две налични опции, или изберете шаблон за страница от вашата тема. </p><p>Възможно е да има ситуации, в които нито един от вградените шаблони не е напълно перфектен. Проверете нашето <a href=\"%s\">Ръководство за създатели на теми</a> за инструкции относно индивидуални напасвания."
1126
 
1127
- #: ../src/admin-views/tribe-options-display.php:51
1128
  msgid "Basic Template Settings"
1129
  msgstr "Основни настройки на темплейта"
1130
 
1131
- #: ../src/admin-views/tribe-options-display.php:55
1132
  msgid "Default stylesheet used for events templates"
1133
  msgstr "CSS за събития по подразбиране"
1134
 
1135
- #: ../src/admin-views/tribe-options-display.php:58
1136
  msgid "Skeleton Styles"
1137
  msgstr "Базов CSS"
1138
 
1139
- #: ../src/admin-views/tribe-options-display.php:60
1140
  msgid "Only includes enough css to achieve complex layouts like calendar and week view."
1141
  msgstr "Включва само основен CSS, за да могат да се визуализират по сложните оформления."
1142
 
1143
- #: ../src/admin-views/tribe-options-display.php:62
1144
  msgid "Full Styles"
1145
  msgstr "Пълни стилове"
1146
 
1147
- #: ../src/admin-views/tribe-options-display.php:64
1148
  msgid "More detailed styling, tries to grab styles from your theme."
1149
  msgstr "По-детайлен стил, опитва се да възпроизведе стиловете от темата."
1150
 
1151
- #: ../src/admin-views/tribe-options-display.php:66
1152
  msgid "Tribe Events Styles"
1153
  msgstr "Tribe Events стилове"
1154
 
1155
- #: ../src/admin-views/tribe-options-display.php:68
1156
  msgid "A fully designed and styled theme for your events pages."
1157
  msgstr "Напълно оформена и стилизирана тема за вашите страници със събития."
1158
 
1159
- #: ../src/admin-views/tribe-options-display.php:75
1160
  msgid "Events template"
1161
  msgstr "Темплейти за събития"
1162
 
1163
- #: ../src/admin-views/tribe-options-display.php:76
1164
  msgid "Choose a page template to control the appearance of your calendar and event content."
1165
  msgstr "Изберете шаблон за изгледа на вашия календар ."
1166
 
1167
- #: ../src/admin-views/tribe-options-display.php:84
1168
  msgid "Enable event views"
1169
  msgstr "Включване на изглед Събития"
1170
 
1171
- #: ../src/admin-views/tribe-options-display.php:85
1172
  msgid "You must select at least one view."
1173
  msgstr "Трябва да изберете поне един изглед."
1174
 
1175
- #: ../src/admin-views/tribe-options-display.php:92
1176
  msgid "Default view"
1177
  msgstr "Изглед по подразбиране"
1178
 
1179
- #: ../src/admin-views/tribe-options-display.php:100
1180
  msgid "Disable the Event Search Bar"
1181
  msgstr "Изключване на търсачката на събития"
1182
 
1183
- #: ../src/admin-views/tribe-options-display.php:101
1184
  msgid "Check this to use the classic header."
1185
  msgstr "Отбележете, за да използвате класическия header."
1186
 
1187
- #: ../src/admin-views/tribe-options-display.php:107
1188
  msgid "Month view events per day"
1189
  msgstr "Брой събития на ден, показващи се при месечен изглед"
1190
 
1191
- #: ../src/admin-views/tribe-options-display.php:108
1192
  msgid "Change the default 3 events per day in month view. Please note there may be performance issues if you set this too high. <a href=\"%s\">Read more</a>."
1193
  msgstr "Промени трите събития по подразбиране в месечния изглед. Моля, имайте впредвид, че изгледа може да има проблеми, ако изберете твърде голяма стойност. <a href=\"%s\">Прочети повече</a>."
1194
 
1195
- #: ../src/admin-views/tribe-options-display.php:115
1196
  msgid "Enable the Month View Cache"
1197
  msgstr "Активирай кеширане на месечния изглед"
1198
 
1199
- #: ../src/admin-views/tribe-options-display.php:116
1200
  msgid "Check this to cache your month view HTML in transients, which can help improve calendar speed on sites with many events. <a href=\"%s\">Read more</a>."
1201
  msgstr "Проверете това, за да кеширате месечния HTML изглед, което може да подобри скоростта на зареждане на календара на сайтове с множество събития. <a href=\"%s\">Прочети повече</a>."
1202
 
1203
- #: ../src/admin-views/tribe-options-display.php:122
1204
  msgid "Date Format Settings"
1205
  msgstr "Настройки за формат на датата"
1206
 
1207
- #: ../src/admin-views/tribe-options-display.php:126
1208
  msgid "<p>The following three fields accept the date format options available to the php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Learn how to make your own date format here</a>.</p>"
1209
  msgstr "Следващите три полета приемат опции за формат на датата, които се поддържат от php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Научете как да създадете свой формат за датата</a>.</p>"
1210
 
1211
- #: ../src/admin-views/tribe-options-display.php:130
1212
  msgid "Date with year"
1213
  msgstr "Дата с година"
1214
 
1215
- #: ../src/admin-views/tribe-options-display.php:131
1216
  msgid "Enter the format to use for displaying dates with the year. Used when showing an event from a past or future year, also used for dates in view headers."
1217
  msgstr "Въведете формат на датата, който да се използва при показване на дати с година. Използва се за отминали или бъдещи събития, както и за дати в хедъри."
1218
 
1219
- #: ../src/admin-views/tribe-options-display.php:138
1220
  msgid "Date without year"
1221
  msgstr "Дата без година"
1222
 
1223
- #: ../src/admin-views/tribe-options-display.php:139
1224
  msgid "Enter the format to use for displaying dates without a year. Used when showing an event from the current year."
1225
  msgstr "Въведете формат на датата, който да се използва при показване на дати без година. Използва се за събития през текущата година."
1226
 
1227
- #: ../src/admin-views/tribe-options-display.php:146
1228
  msgid "Month and year format"
1229
  msgstr "Формат на месеца и годината"
1230
 
1231
- #: ../src/admin-views/tribe-options-display.php:147
1232
  msgid "Enter the format to use for dates that show a month and year only. Used on month view."
1233
  msgstr "Въведете формат на датата, който да се използва при показване на дати само с месец и година. Използва се при месечен изглед."
1234
 
1235
- #: ../src/admin-views/tribe-options-display.php:154
1236
  msgid "Date time separator"
1237
  msgstr "Разделител за време, дата"
1238
 
1239
- #: ../src/admin-views/tribe-options-display.php:155
1240
  msgid "Enter the separator that will be placed between the date and time, when both are shown."
1241
  msgstr "Въведете разделител, който да се показва между датата и часа, когато и двете са показани."
1242
 
1243
- #: ../src/admin-views/tribe-options-display.php:162
1244
  msgid "Time range separator"
1245
  msgstr "Разделител за период от време"
1246
 
1247
- #: ../src/admin-views/tribe-options-display.php:163
1248
  msgid "Enter the separator that will be used between the start and end time of an event."
1249
  msgstr "Въведете разделител, който да се показва между началния и крайния час на събитие."
1250
 
1251
- #: ../src/admin-views/tribe-options-display.php:170
1252
  msgid "Datepicker Date Format"
1253
  msgstr "Формат на датата за Datepicker"
1254
 
1255
- #: ../src/admin-views/tribe-options-display.php:171
1256
  msgid "Select the date format to use in datepickers"
1257
  msgstr "Формат на датата в прозореца за избор на дата"
1258
 
1259
- #: ../src/admin-views/tribe-options-display.php:188
1260
  msgid "Advanced Template Settings"
1261
  msgstr "Разширени настройки на шаблоните"
1262
 
1263
- #: ../src/admin-views/tribe-options-display.php:192
1264
  msgid "Add HTML before event content"
1265
  msgstr "Добавяне на HTML преди съдържанието на събитието"
1266
 
1267
- #: ../src/admin-views/tribe-options-display.php:193
1268
  msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
1269
  msgstr "Ако сте запознати с HTML, можете да добавите код преди темплейта за събития. При някои теми това е необходимо, с цел да се улесни стилизирането или оформлението."
1270
 
1271
- #: ../src/admin-views/tribe-options-display.php:198
1272
  msgid "Add HTML after event content"
1273
  msgstr "Вмъкване на HTML след описанието на събитието"
1274
 
1275
- #: ../src/admin-views/tribe-options-display.php:199
1276
  msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
1277
  msgstr "Ако сте запознати с HTML, можете да добавите код след темплейта за събития. При някои теми това е необходимо, с цел да се улесни стилизирането или оформлението."
1278
 
1279
- #: ../src/admin-views/tribe-options-general.php:12
1280
  msgid "Finding & extending your calendar."
1281
  msgstr "Намиране и разширяване на календара."
1282
 
1283
- #: ../src/admin-views/tribe-options-general.php:17
1284
  msgid "Finding your calendar."
1285
  msgstr "Намиране на календара."
1286
 
1287
- #: ../src/admin-views/tribe-options-general.php:22
1288
  msgid "Where's my calendar?"
1289
  msgstr "Къде е календарът ми?"
1290
 
1291
- #: ../src/admin-views/tribe-options-general.php:22
1292
  msgid "Right here"
1293
  msgstr "Точно тук"
1294
 
1295
- #: ../src/admin-views/tribe-options-general.php:26
1296
  msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
1297
  msgstr "Нуждаете се от допълнителна функционалност, като например повтарящи се събития, персонализирана metadata, продажба на билети и др.?"
1298
 
1299
- #: ../src/admin-views/tribe-options-general.php:26
1300
  msgid "Check out the available add-ons"
1301
  msgstr "Разгледайте наличните add-on-и"
1302
 
1303
- #: ../src/admin-views/tribe-options-general.php:31
1304
  msgid "We hope our plugin is helping you out."
1305
  msgstr "Надяваме се, че нашият плъгин ви е в помощ."
1306
 
1307
- #: ../src/admin-views/tribe-options-general.php:35
1308
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
1309
  msgstr "Мислите ли си \"Уха, този plugin е невероятен! Трябва да благодаря на Modern Tribe за усърдната им работа.\"? Най-добрия начин да ни благодарите е да поставите малък текстов линк под календара, който води към страницата на проекта."
1310
 
1311
- #: ../src/admin-views/tribe-options-general.php:35
1312
- #: ../src/admin-views/tribe-options-general.php:40
1313
  msgid "See an example of the link"
1314
  msgstr "Преглед на примерен линк"
1315
 
1316
- #: ../src/admin-views/tribe-options-general.php:40
1317
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project."
1318
  msgstr "Мислите ли си \"Уха, този plugin е невероятен! Трябва да благодаря на Modern Tribe за усърдната им работа.\"? Най-добрия начин да ни благодарите е да поставите малък текстов линк под календара, който води към страницата на проекта."
1319
 
1320
- #: ../src/admin-views/tribe-options-general.php:45
1321
  msgid "Show The Events Calendar link"
1322
  msgstr "Показване на линка на Календара"
1323
 
1324
- #: ../src/admin-views/tribe-options-general.php:59
1325
  msgid "General Settings"
1326
  msgstr "Общи настройки"
1327
 
1328
- #: ../src/admin-views/tribe-options-general.php:63
1329
  msgid "Number of events to show per page"
1330
  msgstr "Брой събития, показващи се на страница"
1331
 
1332
- #: ../src/admin-views/tribe-options-general.php:70
1333
  msgid "Use Javascript to control date filtering"
1334
  msgstr "Използвай Javascript за контрол на филтъра по дата"
1335
 
1336
- #: ../src/admin-views/tribe-options-general.php:71
1337
  msgid "This option is disabled when \"Disable the Event Search Bar\" is checked on the Display settings tab."
1338
  msgstr "Тази опция е изключена, когато е сложена отметка на \"Изключване на Търсенето за събития\" в таб Настройки на екран."
1339
 
1340
- #: ../src/admin-views/tribe-options-general.php:71
1341
  msgid "Enable live ajax for datepicker on front end (User submit not required)."
1342
  msgstr "Включване на live ajax за прозореца за избор на дата (Не изисква потвърждение от потребителя)."
1343
 
1344
- #: ../src/admin-views/tribe-options-general.php:79
1345
  msgid "Show comments"
1346
  msgstr "Показване на коментарите"
1347
 
1348
- #: ../src/admin-views/tribe-options-general.php:80
1349
  msgid "Enable comments on event pages."
1350
  msgstr "Включване на коментарите на страниците на събитията"
1351
 
1352
- #: ../src/admin-views/tribe-options-general.php:86
1353
  msgid "Include events in main blog loop"
1354
  msgstr "Включване на събитията в главния loop на блога"
1355
 
1356
- #: ../src/admin-views/tribe-options-general.php:87
1357
  msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
1358
  msgstr "Показване на събитията заедно с останалите публикации на сайта. Събитията ще продължат да се показват и в страницата с календара."
1359
 
1360
- #: ../src/admin-views/tribe-options-general.php:93
1361
- #: ../src/admin-views/tribe-options-general.php:99
1362
  msgid "Events URL slug"
1363
  msgstr "URL за събития"
1364
 
1365
- #: ../src/admin-views/tribe-options-general.php:94
1366
- msgid "You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=\"%s\">%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php\">enable pretty permalinks</a>."
1367
- msgstr "Не можете да променяте адреса на календара, защото permalinks не са включени. В момента URL адреса на страницата със събитията е <a href=\"%s\">%s</a>. <a href=\"%soptions-permalink.php\">Включете permalinks,</a>, за да можете да промените този адрес."
1368
-
1369
- #: ../src/admin-views/tribe-options-general.php:106
1370
- #: ../src/functions/template-tags/options.php:20
1371
  msgid "The slug used for building the events URL."
1372
  msgstr "Префикс използван за сглобяване на URL на страниците от календара."
1373
 
1374
- #: ../src/admin-views/tribe-options-general.php:106
1375
  msgid "Your current events URL is: %s"
1376
  msgstr "В момента URL на календара е: %s"
1377
 
1378
- #: ../src/admin-views/tribe-options-general.php:111
1379
- #: ../src/functions/template-tags/options.php:39
1380
  msgid "Here is the iCal feed URL for your events:"
1381
  msgstr "URL-а за iCal потока на събитията е:"
1382
 
1383
- #: ../src/admin-views/tribe-options-general.php:116
1384
  msgid "Single event URL slug"
1385
  msgstr "URL адрес на събитие"
1386
 
1387
- #: ../src/admin-views/tribe-options-general.php:123
1388
  msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
1389
  msgstr "Горното трябва да е в множествено число, а това в единично. <br />URL-ът за отделно събитие е:: %s"
1390
 
1391
- #: ../src/admin-views/tribe-options-general.php:128
1392
  msgid "End of day cutoff"
1393
  msgstr "Денят свършва в"
1394
 
1395
- #: ../src/admin-views/tribe-options-general.php:149
1396
  msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
1397
  msgstr "Имате събитие което свършва след полунощ? Изберете час след края на събитието, за да избегнете показването му в календара за следващия ден."
1398
 
1399
- #: ../src/admin-views/tribe-options-general.php:154
1400
  msgid "Default currency symbol"
1401
  msgstr "Валута по подразбиране"
1402
 
1403
- #: ../src/admin-views/tribe-options-general.php:155
1404
  msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
1405
  msgstr "Задава валутния символ/съкращение по подразбиране. Това ще се отрази само на събития, които вкарвате или обновявате след промяната, но не и на вече въведените."
1406
 
1407
- #: ../src/admin-views/tribe-options-general.php:162
1408
  msgid "Currency symbol follows value"
1409
  msgstr "Знака за валутата да е след стойността"
1410
 
1411
- #: ../src/admin-views/tribe-options-general.php:163
1412
  msgid "The currency symbol normally precedes the value. Enabling this option positions the symbol after the value."
1413
  msgstr "Обикновено знака за валутата е преди стойността. Включването на тази опция го премества след стойността."
1414
 
1415
- #: ../src/admin-views/tribe-options-general.php:169
1416
  msgid "Map Settings"
1417
  msgstr "Настройки на карта"
1418
 
1419
- #: ../src/admin-views/tribe-options-general.php:173
1420
  msgid "Enable Google Maps"
1421
  msgstr "Включи Google Карти"
1422
 
1423
- #: ../src/admin-views/tribe-options-general.php:174
1424
  msgid "Check to enable maps for events and venues."
1425
  msgstr "Отбележете, за да включите картите за събития и места."
1426
 
1427
- #: ../src/admin-views/tribe-options-general.php:181
1428
  msgid "Google Maps default zoom level"
1429
  msgstr "Степен на приближение в Google Карти по подразбиране"
1430
 
1431
- #: ../src/admin-views/tribe-options-general.php:182
1432
  msgid "0 = zoomed out; 21 = zoomed in."
1433
  msgstr "0 = максимално отдалечено; 21 = максимално приближено."
1434
 
1435
- #: ../src/admin-views/tribe-options-general.php:190
1436
  msgid "Miscellaneous Settings"
1437
  msgstr "Други настройки"
1438
 
1439
- #: ../src/admin-views/tribe-options-general.php:194
1440
  msgid "Duplicate Venues &amp; Organizers"
1441
  msgstr "Дублиращи се Места и Организатори"
1442
 
1443
- #: ../src/admin-views/tribe-options-general.php:194
1444
  msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
1445
  msgstr "Може да бъдат открити дублиращи се места и организатори след обновяване на The Events Calendar от версия, по-стара от 3.0. Кликнете този бутон, за да активирате автоматично сливане на идентичните места и събития."
1446
 
1447
- #: ../src/admin-views/tribe-options-general.php:211
1448
  msgid "Debug mode"
1449
  msgstr "Debug mode"
1450
 
1451
- #: ../src/admin-views/tribe-options-general.php:217
1452
  msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
1453
  msgstr "Включете тази опция, за да записвате log с информация за възникналите грешки. По подразбиране, лога ще се записва в PHP error log-а на сървъра ви. Ако желаете да виждате съобщенията за грешки в браузър-а си, тогава ви препоръчваме да инсталирате %s и да потърсите таб \"Tribe\" в debug output."
1454
 
1455
- #: ../src/admin-views/tribe-options-general.php:217
1456
  msgid "Debug Bar Plugin"
1457
  msgstr "Debug Bar Plugin"
1458
 
1459
- #: ../src/admin-views/tribe-options-general.php:199
1460
  msgid "View Welcome Page"
1461
  msgstr "Преглед на началната страница след инсталация"
1462
 
1463
- #: ../src/admin-views/tribe-options-general.php:199
1464
  msgid "View the page that displayed when you initially installed the plugin."
1465
  msgstr "Страницата се показва, след първоначалната инсталация на разширението."
1466
 
1467
- #: ../src/admin-views/tribe-options-general.php:204
1468
  msgid "View Update Page"
1469
  msgstr "Преглед на страницата с потвърждение за актуализации"
1470
 
1471
- #: ../src/admin-views/tribe-options-general.php:204
1472
  msgid "View the page that displayed when you updated the plugin."
1473
  msgstr "Страницата се показва, след актуализация на разширението."
1474
 
1475
- #: ../src/admin-views/tribe-options-help.php:28
1476
  msgctxt "not available"
1477
  msgid "n/a"
1478
  msgstr "n/a"
1479
 
1480
- #: ../src/admin-views/tribe-options-help.php:29
1481
  msgid "You need to upgrade!"
1482
  msgstr "Имате нужда от ъпгрейд !"
1483
 
1484
- #: ../src/admin-views/tribe-options-help.php:29
1485
  msgid "You are up to date!"
1486
  msgstr "Разполагате с най-новата версия!"
1487
 
1488
- #: ../src/admin-views/tribe-options-help.php:52
1489
  msgid "The Events Calendar PRO"
1490
  msgstr "The Events Calendar PRO"
1491
 
1492
- #: ../src/admin-views/tribe-options-help.php:56
1493
  msgid "The Events Calendar: Eventbrite Tickets"
1494
  msgstr "The Events Calendar: Eventbrite билети"
1495
 
1496
- #: ../src/admin-views/tribe-options-help.php:60
1497
  msgid "The Events Calendar: Community Events"
1498
  msgstr "The Events Calendar: Събития на общността"
1499
 
1500
- #: ../src/Tribe/View_Helpers.php:281
1501
  msgid "Wallis And Futuna Islands"
1502
  msgstr "Уолис и Футуна"
1503
 
1504
- #: ../src/admin-views/tribe-options-help.php:64
1505
  msgid "The Events Calendar: Facebook Events"
1506
  msgstr "The Events Calendar: Facebook събития"
1507
 
1508
- #: ../src/Tribe/View_Helpers.php:282
1509
  msgid "Western Sahara"
1510
  msgstr "Западна Сахара"
1511
 
1512
- #: ../src/admin-views/tribe-options-help.php:68
1513
  msgid "The Events Calendar: WooCommerce Tickets"
1514
  msgstr "The Events Calendar: WooCommerce събития"
1515
 
1516
- #: ../src/Tribe/View_Helpers.php:283
1517
  msgid "Yemen"
1518
  msgstr "Йемен"
1519
 
1520
- #: ../src/admin-views/tribe-options-help.php:73
1521
  msgid "The Events Calendar: EDD Tickets"
1522
  msgstr "The Events Calendar: EDD билети"
1523
 
1524
- #: ../src/Tribe/View_Helpers.php:284
1525
  msgid "Zambia"
1526
  msgstr "Замбия"
1527
 
1528
- #: ../src/admin-views/tribe-options-help.php:78
1529
  msgid "The Events Calendar: WPEC Tickets"
1530
  msgstr "The Events Calendar: WPEC билети"
1531
 
1532
- #: ../src/Tribe/View_Helpers.php:285
1533
  msgid "Zimbabwe"
1534
  msgstr "Зимбабве"
1535
 
1536
- #: ../src/admin-views/tribe-options-help.php:83
1537
  msgid "The Events Calendar: Shopp Tickets"
1538
  msgstr "The Events Calendar: Купуване на билети"
1539
 
1540
- #: ../src/Tribe/View_Helpers.php:316
1541
  msgid "Alabama"
1542
  msgstr "Алабама"
1543
 
1544
- #: ../src/admin-views/tribe-options-help.php:88
1545
  msgid "The Events Calendar: Filter Bar"
1546
  msgstr "The Events Calendar: Лента за филтриране"
1547
 
1548
- #: ../src/Tribe/View_Helpers.php:317
1549
  msgid "Alaska"
1550
  msgstr "Аляска"
1551
 
1552
- #: ../src/Tribe/View_Helpers.php:318
1553
  msgid "Arizona"
1554
  msgstr "Аризона"
1555
 
1556
- #: ../src/admin-views/tribe-options-help.php:97
1557
  msgid "If this is your first time using The Events Calendar, you're in for a treat and are already well on your way to creating a first event. Here are some basics we've found helpful for users jumping into it for the first time:"
1558
  msgstr "Ако за първи път използвате The Events Calendar и сте готови да създадете първото си събитие, тук ще откриете някои съвети, полезни за нови потребители:"
1559
 
1560
- #: ../src/Tribe/View_Helpers.php:319
1561
  msgid "Arkansas"
1562
  msgstr "Арканзас"
1563
 
1564
- #: ../src/admin-views/tribe-options-help.php:100
1565
  msgid "%sOur New User Primer%s was designed for folks in your exact position. Featuring both step-by-step videos and written walkthroughs that feature accompanying screenshots, the primer aims to take you from zero to hero in no time."
1566
  msgstr "%sНовият ни съветник Първи стъпки%s е създаден за хора във вашето положение. Той включва видеа и обяснения тип Стъпка по Стъпка илюстрирани със съответните screenshot-и, което ще ви превърне в специалист за нула време."
1567
 
1568
- #: ../src/Tribe/View_Helpers.php:320
1569
  msgid "California"
1570
  msgstr "Калифорния"
1571
 
1572
- #: ../src/admin-views/tribe-options-help.php:102
1573
  msgid "%sInstallation/Setup FAQs%s from our support page can help give an overview of what the plugin can and cannot do. This section of the FAQs may be helpful as it aims to address any basic install questions not addressed by the new user primer."
1574
  msgstr "%sУпътвания за инсталация/настройки%s от нашата страница за поддръжка могат да ви помогнат да разберете какво може и какво не може нашето разширение. Тази секция от често задавани въпроси може да ви е от полза при правене на базови настройки, които не са включени в съветника \"Първи стъпки\"."
1575
 
1576
- #: ../src/Tribe/View_Helpers.php:321
1577
  msgid "Colorado"
1578
  msgstr "Колорадо"
1579
 
1580
- #: ../src/admin-views/tribe-options-help.php:104
1581
  msgid "Otherwise, if you're feeling adventurous, you can get started by heading to the Events menu and adding your first event."
1582
  msgstr "В случай, че се чувствате готови, можете да преминете към меню Събития, за да добавите първото си събитие."
1583
 
1584
- #: ../src/Tribe/View_Helpers.php:322
1585
  msgid "Connecticut"
1586
  msgstr "Кънектикът"
1587
 
1588
- #: ../src/admin-views/tribe-options-help.php:108
1589
  msgid "We've redone our support page from the ground up in an effort to better help our users. Head over to our %sSupport Page%s and you'll find lots of great resources, including:"
1590
  msgstr "С цел да оказваме по-добра помощ на потребителите, създадохме чисто нова страница за поддръжка. Отидете на %sСтраницата за поддръжка%s, където ще намерите много помощни материали:"
1591
 
1592
- #: ../src/Tribe/View_Helpers.php:323
1593
  msgid "Delaware"
1594
  msgstr "Делауеър"
1595
 
1596
- #: ../src/admin-views/tribe-options-help.php:110
1597
  msgid "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar &amp; Events Calendar PRO"
1598
  msgstr "%sШаблони, функции и филтри%s за The Events Calendar &amp; Events Calendar PRO"
1599
 
1600
- #: ../src/Tribe/View_Helpers.php:324
1601
  msgid "District of Columbia"
1602
  msgstr "Вашингтон, О.К."
1603
 
1604
- #: ../src/admin-views/tribe-options-help.php:112
1605
  msgid "%sFrequently Asked Questions%s ranging from the most basic setup questions to advanced themer tweaks"
1606
  msgstr "%sЧесто задавани въпроси%s вариращи от въпроси за основни настройки до настройки за напреднали"
1607
 
1608
- #: ../src/Tribe/View_Helpers.php:325
1609
  msgid "Florida"
1610
  msgstr "Флорида"
1611
 
1612
- #: ../src/admin-views/tribe-options-help.php:115
1613
  msgid "%sTutorials%s written by both members of our team and users from the community, covering custom queries, integration with third-party themes and plugins, etc."
1614
  msgstr "%sУроци%s написани от членове на екипа ни или от наши потребители относно персонални желания, интеграция, теми и разширения на трети страни и др."
1615
 
1616
- #: ../src/Tribe/View_Helpers.php:327
1617
  msgid "Hawaii"
1618
  msgstr "Хаваи"
1619
 
1620
- #: ../src/admin-views/tribe-options-help.php:117
1621
  msgid "Release notes for painting an overall picture of the plugin's lifecycle and when features/bug fixes were introduced."
1622
  msgstr "Представена е информация за актуализации, която да очертае времевата рамка на бъдещите актуализации и жизнения цикъл на притурката."
1623
 
1624
- #: ../src/Tribe/View_Helpers.php:328
1625
  msgid "Idaho"
1626
  msgstr "Айдахо"
1627
 
1628
- #: ../src/admin-views/tribe-options-help.php:119
1629
  msgid "%sAdd-on documentation%s for all of Modern Tribe's official extensions for The Events Calendar (including WooTickets, Community Events, Eventbrite Tickets, Facebook Events, etc)"
1630
  msgstr "%sДокументация%s за всички официални разширения за продуктите на Modern Tribe (вкл. WooTickets, Community Events, Eventbrite Tickets, Facebook Events и др.)"
1631
 
1632
- #: ../src/Tribe/View_Helpers.php:329
1633
  msgid "Illinois"
1634
  msgstr "Илинойс"
1635
 
1636
- #: ../src/admin-views/tribe-options-help.php:121
1637
  msgid "We've also got a %sModern Tribe UserVoice%s page where we're actively watching for feature ideas from the community. If after playing with the plugin and reviewing the resources above, you're finding a feature isn't present that should be, let us know. Vote up existing feature requests or add your own, and help us shape the future of the products business in a way that best meets the community's needs."
1638
  msgstr "Ние имаме и %sModern Tribe UserVoice%s страница, където редовно следим за нови идеи от потребителското общество. Ако след употребата на разширението сте се сетили за функионалност, която не е налична в момента, молим да ни уведомите. Гласувайте за вече публикуваните идеи или добавете собствена, за да ни помогнете да отговорим по-добре на нуждите на потребителите си за в бъдеще."
1639
 
1640
- #: ../src/Tribe/View_Helpers.php:330
1641
  msgid "Indiana"
1642
  msgstr "Индиана"
1643
 
1644
- #: ../src/admin-views/tribe-options-help.php:125
1645
  msgid "Written documentation can only take things so far...sometimes, you need help from a real person. This is where our %ssupport forums%s come into play."
1646
  msgstr "Писмената документация стига до тук... понякога е необходима човешка помощ. Така на помощ идват нашите %sфоруми за поддръжка%s."
1647
 
1648
- #: ../src/Tribe/View_Helpers.php:331
1649
  msgid "Iowa"
1650
  msgstr "Индиана"
1651
 
1652
- #: ../src/admin-views/tribe-options-help.php:126
1653
  msgid "Users of the free The Events Calendar should post their support concerns to the plugin's %sWordPress.org support forum%s. While we are happy to help identify and fix bugs that are reported at WordPress.org, please make sure to read our %ssupport expectations sticky thread%s before posting so you understand our limitations."
1654
  msgstr "Потребителите на безплатната версия на The Events Calendar могат да споделят проблема си във %sфорума на разширението на WordPress.org%s. С удоволствие ще ви съдействаме за откриването и отстраняването на проблема, който сте докладвали на WordPress.org, но имайте в предвид, че безплатната поддръжка е ограничена. Повече за това можете да %sпрочетете тук%s."
1655
 
1656
- #: ../src/Tribe/View_Helpers.php:332
1657
  msgid "Kansas"
1658
  msgstr "Канзас"
1659
 
1660
- #: ../src/admin-views/tribe-options-help.php:127
1661
  msgid "We hit the WordPress.org forum throughout the week, watching for bugs. If you report a legitimate bug that we're able to reproduce, we will log it and patch for an upcoming release. However we are unfortunately unable to provide customization tips or assist in integrating with 3rd party plugins or themes."
1662
  msgstr "Проверяваме форума на WordPress.org за открити бъгове всяка седмица. Ако сте докладвали реален бъг, който успеем да възпроизведем, ще го отстраним с една от следващите актуализации. За съжаление не сме в състояние да предложим помощ за персонализиране, съвместимост или интегриране на разширението в теми и разширения на трети страни."
1663
 
1664
- #: ../src/Tribe/View_Helpers.php:333
1665
  msgid "Kentucky"
1666
  msgstr "Кентъки"
1667
 
1668
- #: ../src/admin-views/tribe-options-help.php:128
1669
  msgid "If you're a user of The Events Calendar and would like more support, please %spurchase a PRO license%s. We hit the PRO forums daily, and can provide a deeper level of customization/integration support for paying users than we can on WordPress.org."
1670
  msgstr "Ако сте потребител на The Events Calendar и имате нужда от допълнителна поддръжка, %sпоръчайте PRO лиценз%s. PRO форумите за поддръжка се преглеждат всеки ден. "
1671
 
1672
- #: ../src/Tribe/View_Helpers.php:47
1673
  msgid "Afghanistan"
1674
  msgstr "Афганистан"
1675
 
1676
- #: ../src/Tribe/View_Helpers.php:48
1677
  msgid "Albania"
1678
  msgstr "Албания"
1679
 
1680
- #: ../src/Tribe/View_Helpers.php:49
1681
  msgid "Algeria"
1682
  msgstr "Алжир"
1683
 
1684
- #: ../src/Tribe/API.php:431
1685
  msgid "Unnamed Venue"
1686
  msgstr "Място без име"
1687
 
1688
- #: ../src/Tribe/View_Helpers.php:50
1689
  msgid "American Samoa"
1690
  msgstr "Американска Самоа"
1691
 
1692
- #: ../src/Tribe/API.php:507 ../src/Tribe/View_Helpers.php:46
1693
- #: ../src/functions/template-tags/venue.php:272
1694
  msgid "United States"
1695
  msgstr "САЩ"
1696
 
1697
- #: ../src/Tribe/View_Helpers.php:51
1698
  msgid "Andorra"
1699
  msgstr "Андора"
1700
 
1701
- #: ../src/Tribe/Activation_Page.php:197
1702
  msgid "Welcome to The Events Calendar"
1703
  msgstr "Добре дошли в The Events Calendar"
1704
 
1705
- #: ../src/Tribe/View_Helpers.php:52
1706
  msgid "Angola"
1707
  msgstr "Ангола"
1708
 
1709
- #: ../src/Tribe/Activation_Page.php:217
1710
  msgid "Thanks for Updating The Events Calendar"
1711
  msgstr "Благодарим, че актуализирахте The Events Calendar"
1712
 
1713
- #: ../src/Tribe/View_Helpers.php:53
1714
  msgid "Anguilla"
1715
  msgstr "Ангуила"
1716
 
1717
- #: ../src/Tribe/Admin_List.php:229 ../src/Tribe/Main.php:1272
1718
  msgid "%s Categories"
1719
  msgstr "%s Категории"
1720
 
1721
- #: ../src/Tribe/View_Helpers.php:54
1722
  msgid "Antarctica"
1723
  msgstr "Антарктида"
1724
 
1725
- #: ../src/Tribe/Admin_List.php:235
1726
  msgid "Start Date"
1727
  msgstr "Начална дата"
1728
 
1729
- #: ../src/Tribe/View_Helpers.php:55
1730
  msgid "Antigua And Barbuda"
1731
  msgstr "Антигуа и Барбуда"
1732
 
1733
- #: ../src/Tribe/Admin_List.php:236
1734
  msgid "End Date"
1735
  msgstr "Крайна дата"
1736
 
1737
- #: ../src/Tribe/View_Helpers.php:56
1738
  msgid "Argentina"
1739
  msgstr "Аржентина"
1740
 
1741
- #: ../src/Tribe/Admin_List.php:314
1742
  msgid "All %s"
1743
  msgstr "Всички %s"
1744
 
1745
- #: ../src/Tribe/View_Helpers.php:57
1746
  msgid "Armenia"
1747
  msgstr "Армения"
1748
 
1749
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:37
1750
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:69
1751
- #: ../src/views/modules/meta/details.php:40
1752
- #: ../src/views/modules/meta/details.php:65
1753
  msgid "Start:"
1754
  msgstr "Начало:"
1755
 
1756
- #: ../src/Tribe/View_Helpers.php:58
1757
  msgid "Aruba"
1758
  msgstr "Аруба"
1759
 
1760
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:46
1761
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:78
1762
- #: ../src/views/modules/meta/details.php:45
1763
- #: ../src/views/modules/meta/details.php:70
1764
  msgid "End:"
1765
  msgstr "Край:"
1766
 
1767
- #: ../src/Tribe/View_Helpers.php:59
1768
  msgid "Australia"
1769
  msgstr "Австралия"
1770
 
1771
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:57
1772
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:89
1773
- #: ../src/views/modules/meta/details.php:55
1774
- #: ../src/views/modules/meta/details.php:80
1775
  msgid "Date:"
1776
  msgstr "Дата:"
1777
 
1778
- #: ../src/Tribe/View_Helpers.php:60
1779
  msgid "Austria"
1780
  msgstr "Австрия"
1781
 
1782
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:100
1783
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:111
1784
- #: ../src/views/modules/meta/details.php:85
1785
  msgid "Time:"
1786
  msgstr "Час:"
1787
 
1788
- #: ../src/Tribe/View_Helpers.php:61
1789
  msgid "Azerbaijan"
1790
  msgstr "Азербейджан"
1791
 
1792
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:324
1793
- #: ../src/functions/template-tags/google-map.php:46
1794
  msgid "Click to view a Google Map"
1795
  msgstr "Вижте местоположението в Google Карти"
1796
 
1797
- #: ../src/Tribe/View_Helpers.php:62
1798
  msgid "Bahamas"
1799
  msgstr "Бахамски острови"
1800
 
1801
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:325
1802
- #: ../src/functions/template-tags/google-map.php:47
1803
  msgid "+ Google Map"
1804
  msgstr "+ Google Map"
1805
 
1806
- #: ../src/Tribe/View_Helpers.php:63
1807
  msgid "Bahrain"
1808
  msgstr "Бахрейн"
1809
 
1810
- #: ../src/Tribe/Amalgamator.php:260
1811
- #: ../src/admin-views/tribe-options-general.php:194
1812
  msgid "Merge Duplicates"
1813
  msgstr "Обединяване на повторенията"
1814
 
1815
- #: ../src/Tribe/View_Helpers.php:64
1816
  msgid "Bangladesh"
1817
  msgstr "Бангладеш"
1818
 
1819
- #: ../src/Tribe/App_Shop.php:63 ../src/Tribe/App_Shop.php:64
1820
- #: ../src/Tribe/App_Shop.php:94
1821
  msgid "Event Add-Ons"
1822
  msgstr "Приставки за събития"
1823
 
1824
- #: ../src/Tribe/View_Helpers.php:65
1825
  msgid "Barbados"
1826
  msgstr "Барбадос"
1827
 
1828
- #: ../src/Tribe/Credits.php:31
1829
  msgid "This calendar is powered by The Events Calendar."
1830
  msgstr "Този календар е задвижван от The Events Calendar."
1831
 
1832
- #: ../src/Tribe/View_Helpers.php:66
1833
  msgid "Belarus"
1834
  msgstr "Беларус"
1835
 
1836
- #: ../src/Tribe/Credits.php:48
1837
  msgid "Rate <strong>The Events Calendar</strong> <a href=\"%1$s\" target=\"_blank\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href=\"%1$s\" target=\"_blank\">WordPress.org</a> to keep this plugin free. Thanks from the friendly folks at Modern Tribe."
1838
  msgstr "Оценете <strong>The Events Calendar</strong> <a href=\"%1$s\" target=\"_blank\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> на <a href=\"%1$s\" target=\"_blank\">WordPress.org</a>, за да запазите разширението безплатно. Благодарности от вашите приятели - Modern Tribe."
1839
 
1840
- #: ../src/Tribe/View_Helpers.php:67
1841
  msgid "Belgium"
1842
  msgstr "Белгия"
1843
 
1844
- #: ../src/Tribe/Credits.php:48
1845
  msgid "http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5"
1846
  msgstr "http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5"
1847
 
1848
- #: ../src/Tribe/View_Helpers.php:68
1849
  msgid "Belize"
1850
  msgstr "Белиз"
1851
 
1852
- #: ../src/Tribe/Field.php:209
1853
  msgid "Invalid field type specified"
1854
  msgstr "Посочен е невалиден тип на полето"
1855
 
1856
- #: ../src/Tribe/View_Helpers.php:69
1857
  msgid "Benin"
1858
  msgstr "Бенин"
1859
 
1860
- #: ../src/Tribe/Field.php:466
1861
  msgid "No radio options specified"
1862
  msgstr "Не е избран радио бутон"
1863
 
1864
- #: ../src/Tribe/View_Helpers.php:70
1865
  msgid "Bermuda"
1866
  msgstr "Бермудски острови"
1867
 
1868
- #: ../src/Tribe/Field.php:502
1869
  msgid "No checkbox options specified"
1870
  msgstr "Не е избрана отметка"
1871
 
1872
- #: ../src/Tribe/View_Helpers.php:71
1873
  msgid "Bhutan"
1874
  msgstr "Бутан"
1875
 
1876
- #: ../src/Tribe/Field.php:558
1877
  msgid "No select options specified"
1878
  msgstr "Не е избрана опция от падащия списък"
1879
 
1880
- #: ../src/Tribe/View_Helpers.php:72
1881
  msgid "Bolivia"
1882
  msgstr "Боливия"
1883
 
1884
- #: ../src/Tribe/Importer/Admin_Page.php:15
1885
- #: ../src/Tribe/Importer/Admin_Page.php:16 ../src/Tribe/Main.php:3946
1886
  msgid "Import"
1887
  msgstr "Импортиране"
1888
 
1889
- #: ../src/Tribe/View_Helpers.php:73
1890
  msgid "Bosnia And Herzegowina"
1891
  msgstr "Босна и Херцеговина"
1892
 
1893
- #: ../src/Tribe/Importer/Admin_Page.php:54
1894
- #: ../src/Tribe/Importer/Admin_Page.php:187
1895
  msgid "The file went away. Please try again."
1896
  msgstr "Файлът не е достъпен. Моля, опитайте отново."
1897
 
1898
- #: ../src/Tribe/View_Helpers.php:74
1899
  msgid "Botswana"
1900
  msgstr "Ботсвана"
1901
 
1902
- #: ../src/Tribe/Importer/Admin_Page.php:95 ../src/Tribe/Main.php:754
1903
  msgid "General"
1904
  msgstr "Общи"
1905
 
1906
- #: ../src/Tribe/View_Helpers.php:75
1907
  msgid "Bouvet Island"
1908
  msgstr "Буве"
1909
 
1910
- #: ../src/Tribe/Importer/Admin_Page.php:96
1911
  msgid "Import: CSV"
1912
  msgstr "Импортиране: CSV"
1913
 
1914
- #: ../src/Tribe/View_Helpers.php:76
1915
  msgid "Brazil"
1916
  msgstr "Бразилия"
1917
 
1918
- #: ../src/Tribe/Importer/Admin_Page.php:153
1919
  msgid "We were unable to process your request. Please try again."
1920
  msgstr "Операцията НЕ бе успешна. Моля, опитайте отново."
1921
 
1922
- #: ../src/Tribe/View_Helpers.php:77
1923
  msgid "British Indian Ocean Territory"
1924
  msgstr "Британска индоокеанска територия"
1925
 
1926
- #: ../src/Tribe/Importer/Admin_Page.php:194
1927
  msgid "<p>The following fields are required for a successful import:</p>"
1928
  msgstr "<p>Следните полета са задължителни за успешен импорт:</p>"
1929
 
1930
- #: ../src/Tribe/View_Helpers.php:78
1931
  msgid "Brunei Darussalam"
1932
  msgstr "Бруней"
1933
 
1934
- #: ../src/Tribe/Importer/Column_Mapper.php:33
1935
  msgid "Do Not Import"
1936
  msgstr "Да не се импортира"
1937
 
1938
- #: ../src/Tribe/View_Helpers.php:79
1939
  msgid "Bulgaria"
1940
  msgstr "България"
1941
 
1942
- #: ../src/Tribe/Importer/Column_Mapper.php:52
1943
  msgid "Event Name"
1944
  msgstr "Име на събитие"
1945
 
1946
- #: ../src/Tribe/View_Helpers.php:80
1947
  msgid "Burkina Faso"
1948
  msgstr "Буркина Фасо"
1949
 
1950
- #: ../src/Tribe/Importer/Column_Mapper.php:53
1951
  msgid "Event Description"
1952
  msgstr "Описание на събитие"
1953
 
1954
- #: ../src/Tribe/View_Helpers.php:81
1955
  msgid "Burundi"
1956
  msgstr "Бурунди"
1957
 
1958
- #: ../src/Tribe/Importer/Column_Mapper.php:54
1959
  msgid "Event Start Date"
1960
  msgstr "Начална дата на събитието"
1961
 
1962
- #: ../src/Tribe/View_Helpers.php:82
1963
  msgid "Cambodia"
1964
  msgstr "Камбоджа"
1965
 
1966
- #: ../src/Tribe/Importer/Column_Mapper.php:55
1967
  msgid "Event Start Time"
1968
  msgstr "Начален час на събитието"
1969
 
1970
- #: ../src/Tribe/View_Helpers.php:83
1971
  msgid "Cameroon"
1972
  msgstr "Камерун"
1973
 
1974
- #: ../src/Tribe/Importer/Column_Mapper.php:56
1975
  msgid "Event End Date"
1976
  msgstr "Крайна дата на събитието"
1977
 
1978
- #: ../src/Tribe/View_Helpers.php:84
1979
  msgid "Canada"
1980
  msgstr "Канада"
1981
 
1982
- #: ../src/Tribe/Importer/Column_Mapper.php:57
1983
  msgid "Event End Time"
1984
  msgstr "Краен час на събитието"
1985
 
1986
- #: ../src/Tribe/View_Helpers.php:85
1987
  msgid "Cape Verde"
1988
  msgstr "Кабо Верде"
1989
 
1990
- #: ../src/Tribe/Importer/Column_Mapper.php:58
1991
  msgid "All Day Event"
1992
  msgstr "Целодневно събитие"
1993
 
1994
- #: ../src/Tribe/View_Helpers.php:86
1995
  msgid "Cayman Islands"
1996
  msgstr "Кайманови острови"
1997
 
1998
- #: ../src/Tribe/Importer/Column_Mapper.php:59
1999
  msgid "Event Venue Name"
2000
  msgstr "Име на мястото на събитието"
2001
 
2002
- #: ../src/Tribe/View_Helpers.php:87
2003
  msgid "Central African Republic"
2004
  msgstr "Централноафриканска република"
2005
 
2006
- #: ../src/Tribe/Importer/Column_Mapper.php:60
2007
  msgid "Event Organizer Name"
2008
  msgstr "Име на организатора на събитието"
2009
 
2010
- #: ../src/Tribe/View_Helpers.php:88
2011
  msgid "Chad"
2012
  msgstr "Чад"
2013
 
2014
- #: ../src/Tribe/Importer/Column_Mapper.php:61
2015
  msgid "Event Show Map Link"
2016
  msgstr "Линк \"Покажи събитието на картата\""
2017
 
2018
- #: ../src/Tribe/View_Helpers.php:89
2019
  msgid "Chile"
2020
  msgstr "Чили"
2021
 
2022
- #: ../src/Tribe/Importer/Column_Mapper.php:62
2023
  msgid "Event Show Map"
2024
  msgstr "Покажи събитието на картата"
2025
 
2026
- #: ../src/Tribe/View_Helpers.php:90
2027
  msgid "China"
2028
  msgstr "Китай"
2029
 
2030
- #: ../src/Tribe/Importer/Column_Mapper.php:63
2031
  msgid "Event Cost"
2032
  msgstr "Стойност на събитието"
2033
 
2034
- #: ../src/Tribe/View_Helpers.php:91
2035
  msgid "Christmas Island"
2036
  msgstr "Коледен остров"
2037
 
2038
- #: ../src/Tribe/View_Helpers.php:92
2039
  msgid "Cocos (Keeling) Islands"
2040
  msgstr "Кокосови острови"
2041
 
2042
- #: ../src/Tribe/Importer/Column_Mapper.php:64
2043
  msgid "Event Category"
2044
  msgstr "Категория на събитието"
2045
 
2046
- #: ../src/Tribe/View_Helpers.php:93
2047
  msgid "Colombia"
2048
  msgstr "Колумбия"
2049
 
2050
- #: ../src/Tribe/Importer/Column_Mapper.php:65
2051
  msgid "Event Website"
2052
  msgstr "Страница на събитието"
2053
 
2054
- #: ../src/Tribe/View_Helpers.php:94
2055
  msgid "Comoros"
2056
  msgstr "Коморски острови"
2057
 
2058
- #: ../src/Tribe/Importer/Column_Mapper.php:71
2059
  msgid "Venue Name"
2060
  msgstr "Име на мястото"
2061
 
2062
- #: ../src/Tribe/View_Helpers.php:95
2063
  msgid "Congo"
2064
  msgstr "Конго"
2065
 
2066
- #: ../src/Tribe/Importer/Column_Mapper.php:72
2067
  msgid "Venue Country"
2068
  msgstr "Държава"
2069
 
2070
- #: ../src/Tribe/View_Helpers.php:96
2071
  msgid "Congo, The Democratic Republic Of The"
2072
  msgstr "Конго, Демократична република"
2073
 
2074
- #: ../src/Tribe/Importer/Column_Mapper.php:73
2075
  msgid "Venue Address"
2076
  msgstr "Адрес на мястото"
2077
 
2078
- #: ../src/Tribe/View_Helpers.php:97
2079
  msgid "Cook Islands"
2080
  msgstr "Кук"
2081
 
2082
- #: ../src/Tribe/Importer/Column_Mapper.php:74
2083
  msgid "Venue Address 2"
2084
  msgstr "Адрес на мястото 2"
2085
 
2086
- #: ../src/Tribe/View_Helpers.php:98
2087
  msgid "Costa Rica"
2088
  msgstr "Коста Рика"
2089
 
2090
- #: ../src/Tribe/Importer/Column_Mapper.php:75
2091
  msgid "Venue City"
2092
  msgstr "Град"
2093
 
2094
- #: ../src/Tribe/View_Helpers.php:99
2095
  msgid "Cote D'Ivoire"
2096
  msgstr "Кот д'Ивоар"
2097
 
2098
- #: ../src/Tribe/Importer/Column_Mapper.php:76
2099
  msgid "Venue State/Province"
2100
  msgstr "Щат/Провинция"
2101
 
2102
- #: ../src/Tribe/View_Helpers.php:100
2103
  msgid "Croatia (Local Name: Hrvatska)"
2104
  msgstr "Хърватия"
2105
 
2106
- #: ../src/Tribe/Importer/Column_Mapper.php:77
2107
  msgid "Venue Zip"
2108
  msgstr "Пощенски код"
2109
 
2110
- #: ../src/Tribe/View_Helpers.php:101
2111
  msgid "Cuba"
2112
  msgstr "Куба"
2113
 
2114
- #: ../src/Tribe/Importer/Column_Mapper.php:78
2115
  msgid "Venue Phone"
2116
  msgstr "Телефон на мястото"
2117
 
2118
- #: ../src/Tribe/View_Helpers.php:102
2119
  msgid "Cyprus"
2120
  msgstr "Кипър"
2121
 
2122
- #: ../src/Tribe/Importer/Column_Mapper.php:79
2123
  msgid "Venue Website"
2124
  msgstr "Уебсайт на мястото"
2125
 
2126
- #: ../src/Tribe/View_Helpers.php:103
2127
  msgid "Czech Republic"
2128
  msgstr "Чехия"
2129
 
2130
- #: ../src/Tribe/Importer/Column_Mapper.php:85
2131
  msgid "Organizer Name"
2132
  msgstr "Име на организатора"
2133
 
2134
- #: ../src/Tribe/View_Helpers.php:104
2135
  msgid "Denmark"
2136
  msgstr "Дания"
2137
 
2138
- #: ../src/Tribe/Importer/Column_Mapper.php:86
2139
  msgid "Organizer Email"
2140
  msgstr "Имейл на организатора"
2141
 
2142
- #: ../src/Tribe/View_Helpers.php:105
2143
  msgid "Djibouti"
2144
  msgstr "Джибути"
2145
 
2146
- #: ../src/Tribe/Importer/Column_Mapper.php:87
2147
  msgid "Organizer Website"
2148
  msgstr "Уебсайт на организатора"
2149
 
2150
- #: ../src/Tribe/View_Helpers.php:106
2151
  msgid "Dominica"
2152
  msgstr "Доминика"
2153
 
2154
- #: ../src/Tribe/Importer/Column_Mapper.php:88
2155
  msgid "Organizer Phone"
2156
  msgstr "Телефон на организатора"
2157
 
2158
- #: ../src/Tribe/View_Helpers.php:107
2159
  msgid "Dominican Republic"
2160
  msgstr "Доминиканска република"
2161
 
2162
- #: ../src/Tribe/Importer/File_Importer.php:38
2163
  msgid "No importer defined for %s"
2164
  msgstr "Не е дефиниран importer за %s"
2165
 
2166
- #: ../src/Tribe/View_Helpers.php:108
2167
  msgid "East Timor"
2168
  msgstr "Източен Тимор"
2169
 
2170
- #: ../src/Tribe/Importer/File_Importer.php:110
2171
  msgid "Missing required fields in row %d."
2172
  msgstr "Липсват задължителни полета на ред %d."
2173
 
2174
- #: ../src/Tribe/View_Helpers.php:109
2175
  msgid "Ecuador"
2176
  msgstr "Еквадор"
2177
 
2178
- #: ../src/Tribe/Importer/File_Importer.php:118
2179
  msgid "Failed to import record in row %d."
2180
  msgstr "Неуспешно импортиране на запис на ред %d."
2181
 
2182
- #: ../src/Tribe/View_Helpers.php:110
2183
  msgid "Egypt"
2184
  msgstr "Египет"
2185
 
2186
- #: ../src/Tribe/Importer/File_Importer.php:127
2187
  msgid "%s (post ID %d) updated."
2188
  msgstr "%s (публикация с ID %d) обновена."
2189
 
2190
- #: ../src/Tribe/View_Helpers.php:111
2191
  msgid "El Salvador"
2192
  msgstr "Салвадор"
2193
 
2194
- #: ../src/Tribe/Importer/File_Importer.php:131
2195
  msgid "%s (post ID %d) created."
2196
  msgstr "%s (post ID %d) е създаден."
2197
 
2198
- #: ../src/Tribe/View_Helpers.php:112
2199
  msgid "Equatorial Guinea"
2200
  msgstr "Екваториална Гвинея"
2201
 
2202
- #: ../src/Tribe/Importer/File_Uploader.php:28
2203
  msgid "Temporary file not found. Could not save %s."
2204
  msgstr "Временния файл не е открит. %s не може да се запамети."
2205
 
2206
- #: ../src/Tribe/View_Helpers.php:113
2207
  msgid "Eritrea"
2208
  msgstr "Еритрея"
2209
 
2210
- #: ../src/Tribe/Importer/File_Uploader.php:36
2211
  msgid "Could not save %s."
2212
  msgstr "Не можа да запази %s."
2213
 
2214
- #: ../src/Tribe/View_Helpers.php:114
2215
  msgid "Estonia"
2216
  msgstr "Естония"
2217
 
2218
- #: ../src/Tribe/Importer/Options.php:29 ../src/Tribe/Settings.php:520
2219
  msgid "Settings saved."
2220
  msgstr "Настройките са записани."
2221
 
2222
- #: ../src/Tribe/View_Helpers.php:115
2223
  msgid "Ethiopia"
2224
  msgstr "Етиопия"
2225
 
2226
- #: ../src/Tribe/List_Widget.php:30
2227
  msgid "A widget that displays upcoming events."
2228
  msgstr "Уиджет, показващ всички предстоящи събития."
2229
 
2230
- #: ../src/Tribe/View_Helpers.php:116
2231
  msgid "Falkland Islands (Malvinas)"
2232
  msgstr "Фолкландски острови"
2233
 
2234
- #: ../src/Tribe/List_Widget.php:38
2235
  msgid "Events List"
2236
  msgstr "Списък със събитията"
2237
 
2238
- #: ../src/Tribe/View_Helpers.php:117
2239
  msgid "Faroe Islands"
2240
  msgstr "Ферьорски острови"
2241
 
2242
- #: ../src/Tribe/List_Widget.php:171
2243
  msgid "Upcoming Events"
2244
  msgstr "Предстоящи събития"
2245
 
2246
- #: ../src/Tribe/View_Helpers.php:118
2247
  msgid "Fiji"
2248
  msgstr "Фиджи"
2249
 
2250
- #: ../src/Tribe/Main.php:490 ../src/functions/template-tags/venue.php:52
2251
- #: ../src/io/csv/admin-views/import.php:45
2252
  msgid "Venues"
2253
  msgstr "Места"
2254
 
2255
- #: ../src/Tribe/View_Helpers.php:119
2256
  msgid "Finland"
2257
  msgstr "Финландия"
2258
 
2259
- #: ../src/Tribe/Main.php:498
2260
- #: ../src/functions/advanced-functions/meta_registration.php:126
2261
- #: ../src/functions/template-tags/venue.php:41
2262
  msgid "Venue"
2263
  msgstr "Място"
2264
 
2265
- #: ../src/Tribe/View_Helpers.php:120
2266
  msgid "France"
2267
  msgstr "Франция"
2268
 
2269
- #: ../src/Tribe/Main.php:506 ../src/functions/template-tags/organizer.php:82
2270
- #: ../src/io/csv/admin-views/import.php:46
2271
  msgid "Organizers"
2272
  msgstr "Организатори"
2273
 
2274
- #: ../src/Tribe/View_Helpers.php:121
2275
  msgid "France, Metropolitan"
2276
  msgstr "Франция, Метрополия"
2277
 
2278
- #: ../src/Tribe/Main.php:514
2279
- #: ../src/functions/advanced-functions/meta_registration.php:205
2280
- #: ../src/functions/template-tags/organizer.php:71
2281
  msgid "Organizer"
2282
  msgstr "Организатор"
2283
 
2284
- #: ../src/Tribe/View_Helpers.php:122
2285
  msgid "French Guiana"
2286
  msgstr "Френска Гвиана"
2287
 
2288
- #: ../src/Tribe/Main.php:522 ../src/functions/template-tags/general.php:71
2289
- #: ../src/io/csv/admin-views/import.php:47
2290
  msgid "Events"
2291
  msgstr "Събития"
2292
 
2293
- #: ../src/Tribe/View_Helpers.php:123
2294
  msgid "French Polynesia"
2295
  msgstr "Френска Полинезия"
2296
 
2297
- #: ../src/Tribe/Main.php:530 ../src/functions/template-tags/general.php:60
2298
  msgid "Event"
2299
  msgstr "Събитие"
2300
 
2301
- #: ../src/Tribe/View_Helpers.php:124
2302
  msgid "French Southern Territories"
2303
  msgstr "Френски южни и антарктически територии"
2304
 
2305
- #: ../src/Tribe/Main.php:570 ../src/Tribe/Settings.php:132
2306
- #: ../src/admin-views/tribe-options-help.php:169
 
2307
  msgid "The Events Calendar"
2308
  msgstr "The Events Calendar"
2309
 
2310
- #: ../src/Tribe/View_Helpers.php:125
2311
  msgid "Gabon"
2312
  msgstr "Габон"
2313
 
2314
- #: ../src/Tribe/Main.php:575
2315
  msgid "month"
2316
  msgstr "месец"
2317
 
2318
- #: ../src/Tribe/View_Helpers.php:126
2319
  msgid "Gambia"
2320
  msgstr "Гамбия"
2321
 
2322
- #: ../src/Tribe/Main.php:576
2323
  msgid "list"
2324
  msgstr "списък"
2325
 
2326
- #: ../src/Tribe/View_Helpers.php:127 ../src/Tribe/View_Helpers.php:326
2327
  msgid "Georgia"
2328
  msgstr "Грузия"
2329
 
2330
- #: ../src/Tribe/Main.php:577
2331
  msgid "upcoming"
2332
  msgstr "предстоящи"
2333
 
2334
- #: ../src/Tribe/View_Helpers.php:128
2335
  msgid "Germany"
2336
  msgstr "Германия"
2337
 
2338
- #: ../src/Tribe/Main.php:578
2339
  msgid "past"
2340
  msgstr "изминали"
2341
 
2342
- #: ../src/Tribe/View_Helpers.php:129
2343
  msgid "Ghana"
2344
  msgstr "Гана"
2345
 
2346
- #: ../src/Tribe/Main.php:579
2347
  msgid "day"
2348
  msgstr "ден"
2349
 
2350
- #: ../src/Tribe/View_Helpers.php:130
2351
  msgid "Gibraltar"
2352
  msgstr "Гибралтар"
2353
 
2354
- #: ../src/Tribe/Main.php:580
2355
  msgid "today"
2356
  msgstr "днес"
2357
 
2358
- #: ../src/Tribe/View_Helpers.php:131
2359
  msgid "Greece"
2360
  msgstr "Гърция"
2361
 
2362
- #: ../src/Tribe/Main.php:604
2363
  msgid "Initializing Tribe Events on %s"
2364
  msgstr "Стартиране на Tribe Events на %s"
2365
 
2366
- #: ../src/Tribe/View_Helpers.php:132
2367
  msgid "Greenland"
2368
  msgstr "Гренландия"
2369
 
2370
- #: ../src/Tribe/Main.php:674
2371
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
2372
  msgstr "Версията на вашия The Events Calendar е по-стара от тази на вашите The Events Calendar add-on-и. Моля, %sобновете сега.%s"
2373
 
2374
- #: ../src/Tribe/View_Helpers.php:133
2375
  msgid "Grenada"
2376
  msgstr "Гренада"
2377
 
2378
- #: ../src/Tribe/Main.php:686
2379
  msgid "The following plugins are out of date: <b>%s</b>. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %sLearn More%s."
2380
  msgstr "Следните plugin-и са стари версии: <b>%s</b>. Всички add-on-и, съдържат зависимости от The Events Calendar и няма да функционират изправно освен ако не са заедно с подходящата версия. %sНаучете повече%s."
2381
 
2382
- #: ../src/Tribe/View_Helpers.php:134
2383
  msgid "Guadeloupe"
2384
  msgstr "Гваделупа"
2385
 
2386
- #: ../src/Tribe/Main.php:796 ../src/admin-views/tribe-options-licenses.php:33
2387
  msgid "Licenses"
2388
  msgstr "Лицензи"
2389
 
2390
- #: ../src/Tribe/View_Helpers.php:135
2391
  msgid "Guam"
2392
  msgstr "Гуам"
2393
 
2394
- #: ../src/admin-views/tribe-options-licenses.php:13
2395
- msgid "<p>The license key you received when completing your purchase from %s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. <strong>Find your license keys at <a href=\"%s\" target=\"_blank\">%s</a></strong>.</p> <p>Each paid add-on has its own unique license key. Simply paste the key into its appropriate field on below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message.</p> <p>If you're seeing a red message telling you that your key isn't valid or is out of installs, visit <a href=\"%s\" target=\"_blank\">%s</a> to manage your installs or renew / upgrade your license.</p><p>Not seeing an update but expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> and click \"Check Again\".</p>"
2396
- msgstr "<p>Лицензния ключ, който сте получили при покупката от %s ви гарантира достъп до поддръжка и актуализации до изтичането му. Не е необходимо да го въвеждате по-долу, за да работят притурките, но ще е необходимо да го въведете ако желаете да получавате автоматични актуализации. <strong>Можете да видите лицензионните си ключове на <a href=\"%s\" target=\"_blank\">%s</a></strong>.</p> <p>Всеки платен add-on има собствен, уникален лицензионен ключ. Просто поставете ключа в правилното поле по-долу и изчакайте за момент, докато бъде валидиран. Ще знаете, че всичко е преминало успешно, когато се появи зелена дата показваща валидността на лиценза, заедно със съобщение \"валидно\".</p> <p>Ако се появи червено съобщение, което казва, че ключа не е валиден, посетете <a href=\"%s\" target=\"_blank\">%s</a> страницата за управление и подновяване на лицензи.</p><p>Няма нови актуализации, а очаквате такива? В WordPress, отидете на <a href=\"%s\">Табло > Актуализации</a> и кликнете на \"Провери отново\".</p>"
2397
-
2398
- #: ../src/Tribe/View_Helpers.php:136
2399
  msgid "Guatemala"
2400
  msgstr "Гватемала"
2401
 
2402
- #: ../src/Tribe/Main.php:755
2403
  msgid "Display"
2404
  msgstr "Изглед"
2405
 
2406
- #: ../src/Tribe/View_Helpers.php:137
2407
  msgid "Guinea"
2408
  msgstr "Гвинея"
2409
 
2410
- #: ../src/Tribe/Main.php:759 ../src/Tribe/Main.php:3989
2411
- #: ../src/Tribe/Main.php:4084
2412
  msgid "Help"
2413
  msgstr "Помощ"
2414
 
2415
- #: ../src/Tribe/View_Helpers.php:138
2416
  msgid "Guinea-Bissau"
2417
  msgstr "Гвинея-Бисау"
2418
 
2419
- #: ../src/Tribe/Main.php:897
2420
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
2421
  msgstr "The Events Calendar изисква WordPress %s или по-нова версия. Моля, обновете WordPress."
2422
 
2423
- #: ../src/Tribe/View_Helpers.php:139
2424
  msgid "Guyana"
2425
  msgstr "Гвиана"
2426
 
2427
- #: ../src/Tribe/Main.php:900
2428
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
2429
  msgstr "За съжаление, The Events Calendar изисква PHP %s или по-висока версия. Свържете се с уеб администратора си, за да ви прехвърли към по-нова версия на PHP."
2430
 
2431
- #: ../src/Tribe/View_Helpers.php:140
2432
  msgid "Haiti"
2433
  msgstr "Хаити"
2434
 
2435
- #: ../src/Tribe/Main.php:1174
2436
  msgid "category"
2437
  msgstr "категория"
2438
 
2439
- #: ../src/Tribe/View_Helpers.php:141
2440
  msgid "Heard And Mc Donald Islands"
2441
  msgstr "Хърд и Макдоналд"
2442
 
2443
- #: ../src/Tribe/Main.php:1185
2444
  msgid "tag"
2445
  msgstr "таг"
2446
 
2447
- #: ../src/Tribe/View_Helpers.php:142
2448
  msgid "Holy See (Vatican City State)"
2449
  msgstr "Ватикана"
2450
 
2451
- #: ../src/Tribe/Main.php:1220 ../src/Tribe/Main.php:1238
2452
- #: ../src/Tribe/Main.php:1256
2453
  msgid "Add New"
2454
  msgstr "Добавяне"
2455
 
2456
- #: ../src/Tribe/View_Helpers.php:143
2457
  msgid "Honduras"
2458
  msgstr "Хондурас"
2459
 
2460
- #: ../src/Tribe/Main.php:1221 ../src/Tribe/Main.php:1239
2461
- #: ../src/Tribe/Main.php:1257 ../src/Tribe/Main.php:1382
2462
- #: ../src/Tribe/Main.php:1383
2463
  msgid "Add New %s"
2464
  msgstr "Добавяне %s"
2465
 
2466
- #: ../src/Tribe/View_Helpers.php:144
2467
  msgid "Hong Kong"
2468
  msgstr "Хонконг"
2469
 
2470
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:113
2471
- #: ../src/Tribe/Main.php:1222 ../src/Tribe/Main.php:1240
2472
- #: ../src/Tribe/Main.php:1258 ../src/Tribe/Main.php:1402
2473
- #: ../src/Tribe/Main.php:1454 ../src/Tribe/Main.php:3933
2474
  msgid "Edit %s"
2475
  msgstr "Редакция в %s"
2476
 
2477
- #: ../src/Tribe/View_Helpers.php:145
2478
  msgid "Hungary"
2479
  msgstr "Унгария"
2480
 
2481
- #: ../src/Tribe/Main.php:1223 ../src/Tribe/Main.php:1241
2482
- #: ../src/Tribe/Main.php:1259
2483
  msgid "New %s"
2484
  msgstr "Нов %s"
2485
 
2486
- #: ../src/Tribe/View_Helpers.php:146
2487
  msgid "Iceland"
2488
  msgstr "Исландия"
2489
 
2490
- #: ../src/Tribe/Main.php:1224 ../src/Tribe/Main.php:1242
2491
- #: ../src/Tribe/Main.php:1260
2492
  msgid "View %s"
2493
  msgstr "Преглед %s"
2494
 
2495
- #: ../src/Tribe/View_Helpers.php:147
2496
  msgid "India"
2497
  msgstr "Индия"
2498
 
2499
- #: ../src/Tribe/Main.php:1225 ../src/Tribe/Main.php:1243
2500
- #: ../src/Tribe/Main.php:1261
2501
  msgid "Search %s"
2502
  msgstr "Търсене %s"
2503
 
2504
- #: ../src/Tribe/View_Helpers.php:148
2505
  msgid "Indonesia"
2506
  msgstr "Индонезия"
2507
 
2508
- #: ../src/Tribe/Main.php:1226 ../src/Tribe/Main.php:1244
2509
- #: ../src/Tribe/Main.php:1262
2510
  msgid "No %s found"
2511
  msgstr "Няма намерени %s"
2512
 
2513
- #: ../src/Tribe/View_Helpers.php:149
2514
  msgid "Iran (Islamic Republic Of)"
2515
  msgstr "Иран"
2516
 
2517
- #: ../src/Tribe/Main.php:1227 ../src/Tribe/Main.php:1245
2518
- #: ../src/Tribe/Main.php:1263
2519
  msgid "No %s found in Trash"
2520
  msgstr "Няма намерени %s в кошчето."
2521
 
2522
- #: ../src/Tribe/View_Helpers.php:150
2523
  msgid "Iraq"
2524
  msgstr "Ирак"
2525
 
2526
- #: ../src/Tribe/Main.php:1273 ../src/functions/template-tags/general.php:408
2527
  msgid "%s Category"
2528
  msgstr "%s Категория"
2529
 
2530
- #: ../src/Tribe/View_Helpers.php:151
2531
  msgid "Ireland"
2532
  msgstr "Ирландия"
2533
 
2534
- #: ../src/Tribe/Main.php:1274
2535
  msgid "Search %s Categories"
2536
  msgstr "Търси %s Категории"
2537
 
2538
- #: ../src/Tribe/View_Helpers.php:152
2539
  msgid "Israel"
2540
  msgstr "Израел"
2541
 
2542
- #: ../src/Tribe/Main.php:1275
2543
  msgid "All %s Categories"
2544
  msgstr "Всички %s Категории"
2545
 
2546
- #: ../src/Tribe/View_Helpers.php:153
2547
  msgid "Italy"
2548
  msgstr "Италия"
2549
 
2550
- #: ../src/Tribe/Main.php:1276
2551
  msgid "Parent %s Category"
2552
  msgstr "По-горна %s категория"
2553
 
2554
- #: ../src/Tribe/View_Helpers.php:154
2555
  msgid "Jamaica"
2556
  msgstr "Ямайка"
2557
 
2558
- #: ../src/Tribe/Main.php:1277
2559
  msgid "Parent %s Category:"
2560
  msgstr "По-горна %s категория"
2561
 
2562
- #: ../src/Tribe/View_Helpers.php:155
2563
  msgid "Japan"
2564
  msgstr "Япония"
2565
 
2566
- #: ../src/Tribe/Main.php:1278
2567
  msgid "Edit %s Category"
2568
  msgstr "Редактирай %s категория"
2569
 
2570
- #: ../src/Tribe/View_Helpers.php:156
2571
  msgid "Jordan"
2572
  msgstr "Йордания"
2573
 
2574
- #: ../src/Tribe/Main.php:1279
2575
  msgid "Update %s Category"
2576
  msgstr "Обнови %s категория"
2577
 
2578
- #: ../src/Tribe/View_Helpers.php:157
2579
  msgid "Kazakhstan"
2580
  msgstr "Казахстан"
2581
 
2582
- #: ../src/Tribe/Main.php:1280
2583
  msgid "Add New %s Category"
2584
  msgstr "Добави нова %s категория"
2585
 
2586
- #: ../src/Tribe/View_Helpers.php:158
2587
  msgid "Kenya"
2588
  msgstr "Кения"
2589
 
2590
- #: ../src/Tribe/Main.php:1281
2591
  msgid "New %s Category Name"
2592
  msgstr "Ново %s Име на Категория"
2593
 
2594
- #: ../src/Tribe/View_Helpers.php:159
2595
  msgid "Kiribati"
2596
  msgstr "Кирибати"
2597
 
2598
- #: ../src/Tribe/Main.php:1297
2599
  msgid "%1$s updated. <a href=\"%2$s\">View %3$s</a>"
2600
  msgstr "%1$s обновено. <a href=\"%2$s\">Виж %3$s</a>"
2601
 
2602
- #: ../src/Tribe/View_Helpers.php:160
2603
  msgid "Korea, Democratic People's Republic Of"
2604
  msgstr "Северна Корея"
2605
 
2606
- #: ../src/Tribe/Main.php:1298 ../src/Tribe/Main.php:1334
2607
- #: ../src/Tribe/Main.php:1353
2608
  msgid "Custom field updated."
2609
  msgstr "Custom полето е обновено."
2610
 
2611
- #: ../src/Tribe/View_Helpers.php:161
2612
  msgid "Korea, Republic Of"
2613
  msgstr "Южна Корея"
2614
 
2615
- #: ../src/Tribe/Main.php:1299 ../src/Tribe/Main.php:1335
2616
- #: ../src/Tribe/Main.php:1354
2617
  msgid "Custom field deleted."
2618
  msgstr "Custom полето е изтрито."
2619
 
2620
- #: ../src/Tribe/View_Helpers.php:162
2621
  msgid "Kuwait"
2622
  msgstr "Кувейт"
2623
 
2624
- #: ../src/Tribe/Main.php:1300 ../src/Tribe/Main.php:1333
2625
- #: ../src/Tribe/Main.php:1336 ../src/Tribe/Main.php:1352
2626
- #: ../src/Tribe/Main.php:1355
2627
  msgid "%s updated."
2628
  msgstr "%s обновени."
2629
 
2630
- #: ../src/Tribe/View_Helpers.php:163
2631
  msgid "Kyrgyzstan"
2632
  msgstr "Киргизстан"
2633
 
2634
- #: ../src/Tribe/Main.php:1302
2635
  msgid "%1$s restored to revision from %2$s"
2636
  msgstr "%1$s възстановени в нова версия от %2$s"
2637
 
2638
- #: ../src/Tribe/View_Helpers.php:164
2639
  msgid "Lao People's Democratic Republic"
2640
  msgstr "Лаос"
2641
 
2642
- #: ../src/Tribe/Main.php:1304
2643
  msgid "Event published. <a href=\"%1$s\">View %2$s</a>"
2644
  msgstr "Събитието е публикувано. <a href=\"%1$s\">Виж %2$s</a>"
2645
 
2646
- #: ../src/Tribe/View_Helpers.php:165
2647
  msgid "Latvia"
2648
  msgstr "Латвия"
2649
 
2650
- #: ../src/Tribe/Main.php:1308 ../src/Tribe/Main.php:1340
2651
- #: ../src/Tribe/Main.php:1359
2652
  msgid "%s saved."
2653
  msgstr "%s записано."
2654
 
2655
- #: ../src/Tribe/View_Helpers.php:166
2656
  msgid "Lebanon"
2657
  msgstr "Ливан"
2658
 
2659
- #: ../src/Tribe/Main.php:1310
2660
  msgid "%1$s submitted. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2661
  msgstr "%1$s изпратено. <a target=\"_blank\" href=\"%2$s\">Преглед %3$s</a>"
2662
 
2663
- #: ../src/Tribe/View_Helpers.php:167
2664
  msgid "Lesotho"
2665
  msgstr "Лесото"
2666
 
2667
- #: ../src/Tribe/Main.php:1316
2668
  msgid "%1$s scheduled for: <strong>%2$s</strong>. <a target=\"_blank\" href=\"%3$s\">Preview %4$s</a>"
2669
  msgstr "%1$s насрочено за: <strong>%2$s</strong>. <a target=\"_blank\" href=\"%3$s\">Преглед %4$s</a>"
2670
 
2671
- #: ../src/Tribe/View_Helpers.php:168
2672
  msgid "Liberia"
2673
  msgstr "Либерия"
2674
 
2675
- #: ../src/Tribe/Main.php:1319 ../src/Tribe/Main.php:1345
2676
- #: ../src/Tribe/Main.php:1364
2677
  msgid "M j, Y @ G:i"
2678
  msgstr "M j, Y @ G:i"
2679
 
2680
- #: ../src/Tribe/View_Helpers.php:169
2681
  msgid "Libya"
2682
  msgstr "Либия"
2683
 
2684
- #: ../src/Tribe/Main.php:1324
2685
  msgid "%1$s draft updated. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2686
  msgstr "%1$s чернова е обновена. <a target=\"_blank\" href=\"%2$s\">Преглед %3$s</a>"
2687
 
2688
- #: ../src/Tribe/View_Helpers.php:170
2689
  msgid "Liechtenstein"
2690
  msgstr "Лихтенщайн"
2691
 
2692
- #: ../src/Tribe/Main.php:1338 ../src/Tribe/Main.php:1357
2693
  msgid "%s restored to revision from %s"
2694
  msgstr "%s е възстановено от %s"
2695
 
2696
- #: ../src/Tribe/View_Helpers.php:171
2697
  msgid "Lithuania"
2698
  msgstr "Литва"
2699
 
2700
- #: ../src/Tribe/Main.php:1339 ../src/Tribe/Main.php:1358
2701
  msgid "%s published."
2702
  msgstr "%s публикувано."
2703
 
2704
- #: ../src/Tribe/View_Helpers.php:172
2705
  msgid "Luxembourg"
2706
  msgstr "Люксембург"
2707
 
2708
- #: ../src/Tribe/Main.php:1341 ../src/Tribe/Main.php:1360
2709
  msgid "%s submitted."
2710
  msgstr "%s изпратено."
2711
 
2712
- #: ../src/Tribe/View_Helpers.php:173
2713
  msgid "Macau"
2714
  msgstr "Макао"
2715
 
2716
- #: ../src/Tribe/Main.php:1343 ../src/Tribe/Main.php:1362
2717
  msgid "%s scheduled for: <strong>%2$s</strong>."
2718
  msgstr "%s насрочено за <strong>%2$s</strong>."
2719
 
2720
- #: ../src/Tribe/View_Helpers.php:174
2721
  msgid "Macedonia"
2722
  msgstr "Македония"
2723
 
2724
- #: ../src/Tribe/Main.php:1347 ../src/Tribe/Main.php:1366
2725
  msgid "%s draft updated."
2726
  msgstr "%s чернови са обновени."
2727
 
2728
- #: ../src/Tribe/View_Helpers.php:175
2729
  msgid "Madagascar"
2730
  msgstr "Мадагаскар"
2731
 
2732
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88
2733
- #: ../src/Tribe/Main.php:1401 ../src/Tribe/Main.php:1452
2734
  msgid "Use Saved %s:"
2735
  msgstr "Използвай запаметено %s:"
2736
 
2737
- #: ../src/Tribe/View_Helpers.php:176
2738
  msgid "Malawi"
2739
  msgstr "Малави"
2740
 
2741
- #: ../src/Tribe/Main.php:1429
2742
  msgid "Without a defined location your event will not display a <a href=\"https://support.google.com/webmasters/answer/164506\" target=\"_blank\">Google Rich Snippet</a> on the search results."
2743
  msgstr "Без дефинирана локация събитието няма да показва a <a href=\"https://support.google.com/webmasters/answer/164506\" target=\"_blank\">Google Rich Snippet</a> в резултатите от търсене."
2744
 
2745
- #: ../src/Tribe/View_Helpers.php:177
2746
  msgid "Malaysia"
2747
  msgstr "Малайзия"
2748
 
2749
- #: ../src/Tribe/Main.php:1520 ../src/Tribe/Main.php:1602
2750
  msgid "Use New %s"
2751
  msgstr "Създаване на %s"
2752
 
2753
- #: ../src/Tribe/View_Helpers.php:178
2754
  msgid "Maldives"
2755
  msgstr "Малдиви"
2756
 
2757
- #: ../src/Tribe/Main.php:1522 ../src/Tribe/Main.php:1604
2758
  msgid "My %s"
2759
  msgstr "Моето %s"
2760
 
2761
- #: ../src/Tribe/View_Helpers.php:179
2762
  msgid "Mali"
2763
  msgstr "Мали"
2764
 
2765
- #: ../src/Tribe/Main.php:1527 ../src/Tribe/Main.php:1609
2766
  msgid "Available %s"
2767
  msgstr "Налични %s"
2768
 
2769
- #: ../src/Tribe/View_Helpers.php:180
2770
  msgid "Malta"
2771
  msgstr "Малта"
2772
 
2773
- #: ../src/Tribe/Main.php:1538 ../src/Tribe/Main.php:1620
2774
  msgid "No saved %s exists."
2775
  msgstr "Не съществуват запаметени %s."
2776
 
2777
- #: ../src/Tribe/View_Helpers.php:181
2778
  msgid "Marshall Islands"
2779
  msgstr "Маршалови острови"
2780
 
2781
- #: ../src/Tribe/Main.php:1764
2782
  msgid "Next"
2783
  msgstr "Напред"
2784
 
2785
- #: ../src/Tribe/View_Helpers.php:182
2786
  msgid "Martinique"
2787
  msgstr "Мартиника"
2788
 
2789
- #: ../src/Tribe/Main.php:1765
2790
  msgid "Prev"
2791
  msgstr "Назад"
2792
 
2793
- #: ../src/Tribe/View_Helpers.php:183
2794
  msgid "Mauritania"
2795
  msgstr "Мавритания"
2796
 
2797
- #: ../src/Tribe/Main.php:1766 ../src/functions/template-tags/day.php:105
2798
  msgid "Today"
2799
  msgstr "Днес"
2800
 
2801
- #: ../src/Tribe/View_Helpers.php:184
2802
  msgid "Mauritius"
2803
  msgstr "Мавриций"
2804
 
2805
- #: ../src/Tribe/Main.php:1767
2806
  msgid "Done"
2807
  msgstr "Готово"
2808
 
2809
- #: ../src/Tribe/View_Helpers.php:185
2810
  msgid "Mayotte"
2811
  msgstr "Майот"
2812
 
2813
- #: ../src/Tribe/Main.php:1941
2814
  msgid "Network"
2815
  msgstr "Мрежа"
2816
 
2817
- #: ../src/Tribe/View_Helpers.php:186
2818
  msgid "Mexico"
2819
  msgstr "Мексико"
2820
 
2821
- #: ../src/Tribe/Main.php:3428 ../src/Tribe/Main.php:3463
2822
- #: ../src/functions/template-tags/day.php:158
2823
- #: ../src/functions/template-tags/day.php:180
2824
  msgid "Date out of range."
2825
  msgstr "Изберете по-близка дата."
2826
 
2827
- #: ../src/Tribe/View_Helpers.php:187
2828
  msgid "Micronesia, Federated States Of"
2829
  msgstr "Микронезия"
2830
 
2831
- #: ../src/Tribe/Main.php:3499
2832
  msgid "%s Options"
2833
  msgstr "%s Опции"
2834
 
2835
- #: ../src/Tribe/View_Helpers.php:188
2836
  msgid "Moldova, Republic Of"
2837
  msgstr "Молдова"
2838
 
2839
- #: ../src/Tribe/Main.php:3506 ../src/Tribe/Main.php:3517
2840
  msgid "%s Information"
2841
  msgstr "%s Информация"
2842
 
2843
- #: ../src/Tribe/View_Helpers.php:189
2844
  msgid "Monaco"
2845
  msgstr "Монако"
2846
 
2847
- #: ../src/Tribe/Main.php:3730
2848
  msgid "Support"
2849
  msgstr "Поддръжка"
2850
 
2851
- #: ../src/Tribe/View_Helpers.php:190
2852
  msgid "Mongolia"
2853
  msgstr "Монголия"
2854
 
2855
- #: ../src/Tribe/Main.php:3733
2856
  msgid "View All Add-Ons"
2857
  msgstr "Покажи всички Add-Ons"
2858
 
2859
- #: ../src/Tribe/View_Helpers.php:191
2860
  msgid "Montenegro"
2861
  msgstr "Черна гора"
2862
 
2863
- #: ../src/Tribe/Main.php:3754
2864
  msgid "News from Modern Tribe"
2865
  msgstr "Новини от Modern Tribe"
2866
 
2867
- #: ../src/Tribe/View_Helpers.php:192
2868
  msgid "Montserrat"
2869
  msgstr "Монсерат"
2870
 
2871
- #: ../src/Tribe/Main.php:3818
2872
  msgid "Additional Functionality"
2873
  msgstr "Допълнителна функционалност"
2874
 
2875
- #: ../src/Tribe/View_Helpers.php:193
2876
  msgid "Morocco"
2877
  msgstr "Мароко"
2878
 
2879
- #: ../src/Tribe/Main.php:3823
2880
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
2881
  msgstr "Имате нужда от допълнителна функционалност, включително повтарящи се събития, продажба на билети, публикуване на събития от потребителите, повече изгледи и др.?"
2882
 
2883
- #: ../src/Tribe/View_Helpers.php:194
2884
  msgid "Mozambique"
2885
  msgstr "Мозамбик"
2886
 
2887
- #: ../src/Tribe/Main.php:3824
2888
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
2889
  msgstr "Проверете <a href=\"%s\">наличните add-ons</a>."
2890
 
2891
- #: ../src/Tribe/View_Helpers.php:195
2892
  msgid "Myanmar"
2893
  msgstr "Мианмар"
2894
 
2895
- #: ../src/Tribe/Main.php:3875
2896
  msgid "%s"
2897
  msgstr "%s"
2898
 
2899
- #: ../src/Tribe/View_Helpers.php:196
2900
  msgid "Namibia"
2901
  msgstr "Намибия"
2902
 
2903
- #: ../src/Tribe/Main.php:3912 ../src/Tribe/Main.php:4008
2904
  msgid "View Calendar"
2905
  msgstr "Към календара"
2906
 
2907
- #: ../src/Tribe/View_Helpers.php:197
2908
  msgid "Nauru"
2909
  msgstr "Науру"
2910
 
2911
- #: ../src/Tribe/Main.php:3922
2912
  msgid "Add %s"
2913
  msgstr "Добави %s"
2914
 
2915
- #: ../src/Tribe/View_Helpers.php:198
2916
  msgid "Nepal"
2917
  msgstr "Непал"
2918
 
2919
- #: ../src/Tribe/Main.php:3954
2920
  msgid "CSV"
2921
  msgstr "CSV"
2922
 
2923
- #: ../src/Tribe/View_Helpers.php:199
2924
  msgid "Netherlands"
2925
  msgstr "Холандия"
2926
 
2927
- #: ../src/Tribe/Main.php:3976 ../src/Tribe/Main.php:4066
2928
- #: ../src/Tribe/Settings.php:161
2929
  msgid "Settings"
2930
  msgstr "Настройки"
2931
 
2932
- #: ../src/Tribe/View_Helpers.php:200
2933
  msgid "Netherlands Antilles"
2934
  msgstr "Нидерландски Антили"
2935
 
2936
- #: ../src/Tribe/Main.php:4067
2937
  msgid "Calendar"
2938
  msgstr "Календар"
2939
 
2940
- #: ../src/Tribe/View_Helpers.php:201
2941
  msgid "New Caledonia"
2942
  msgstr "Нова Каледония"
2943
 
2944
- #: ../src/Tribe/Main.php:4143
2945
  msgid "List"
2946
  msgstr "Списък"
2947
 
2948
- #: ../src/Tribe/View_Helpers.php:202
2949
  msgid "New Zealand"
2950
  msgstr "Нова Зеландия"
2951
 
2952
- #: ../src/Tribe/Main.php:4161
2953
  msgid "Month"
2954
  msgstr "Месец"
2955
 
2956
- #: ../src/Tribe/View_Helpers.php:203
2957
  msgid "Nicaragua"
2958
  msgstr "Никарагуа"
2959
 
2960
- #: ../src/Tribe/Main.php:4178
2961
  msgid "Day"
2962
  msgstr "Ден"
2963
 
2964
- #: ../src/Tribe/View_Helpers.php:204
2965
  msgid "Niger"
2966
  msgstr "Нигер"
2967
 
2968
- #: ../src/Tribe/Main.php:4203 ../src/Tribe/Main.php:4204
2969
  msgid "Search"
2970
  msgstr "Търсене"
2971
 
2972
- #: ../src/Tribe/View_Helpers.php:205
2973
  msgid "Nigeria"
2974
  msgstr "Нигерия"
2975
 
2976
- #: ../src/Tribe/Main.php:4228 ../src/Tribe/Main.php:4244
2977
  msgid "Date"
2978
  msgstr "Дата"
2979
 
2980
- #: ../src/Tribe/View_Helpers.php:206
2981
  msgid "Niue"
2982
  msgstr "Ниуе"
2983
 
2984
- #: ../src/Tribe/Main.php:4231
2985
  msgid "%s In"
2986
  msgstr "%s в"
2987
 
2988
- #: ../src/Tribe/View_Helpers.php:207
2989
  msgid "Norfolk Island"
2990
  msgstr "Норфолк"
2991
 
2992
- #: ../src/Tribe/Main.php:4233
2993
  msgid "%s From"
2994
  msgstr "%s от"
2995
 
2996
- #: ../src/Tribe/View_Helpers.php:208
2997
  msgid "Northern Mariana Islands"
2998
  msgstr "Северни Мариански острови"
2999
 
3000
- #: ../src/Tribe/Main.php:4235
3001
  msgid "Day Of"
3002
  msgstr "Почивен ден"
3003
 
3004
- #: ../src/Tribe/View_Helpers.php:209
3005
  msgid "Norway"
3006
  msgstr "Норвегия"
3007
 
3008
- #: ../src/Tribe/Main.php:4310
3009
  msgid "Once Every 30 Mins"
3010
  msgstr "На всеки 30 минути"
3011
 
3012
- #: ../src/Tribe/View_Helpers.php:210
3013
  msgid "Oman"
3014
  msgstr "Оман"
3015
 
3016
- #: ../src/Tribe/Options_Exception.php:19 ../src/Tribe/Post_Exception.php:22
3017
  msgid "Error"
3018
  msgstr "Грешка"
3019
 
3020
- #: ../src/Tribe/View_Helpers.php:211
3021
  msgid "Pakistan"
3022
  msgstr "Пакистан"
3023
 
3024
- #: ../src/Tribe/PUE/Checker.php:304
3025
  msgid "License Key"
3026
  msgstr "Сериен номер"
3027
 
3028
- #: ../src/Tribe/View_Helpers.php:212
3029
  msgid "Palau"
3030
  msgstr "Палау"
3031
 
3032
- #: ../src/Tribe/PUE/Checker.php:305
3033
  msgid "A valid license key is required for support and updates"
3034
  msgstr "Валиден сериен номер е необходим за поддръжка и актуализации"
3035
 
3036
- #: ../src/Tribe/View_Helpers.php:213
3037
  msgid "Panama"
3038
  msgstr "Панама"
3039
 
3040
- #: ../src/Tribe/PUE/Checker.php:377
3041
  msgid "License key(s) updated."
3042
  msgstr "Серийния/те номер(а) са обновени."
3043
 
3044
- #: ../src/Tribe/View_Helpers.php:214
3045
  msgid "Papua New Guinea"
3046
  msgstr "Папуа Нова Гвинея"
3047
 
3048
- #: ../src/Tribe/PUE/Checker.php:419
3049
  msgid "Sorry, key validation server is not available."
3050
  msgstr "За съжаление сървъра за валидиране не е достъпен."
3051
 
3052
- #: ../src/Tribe/View_Helpers.php:215
3053
  msgid "Paraguay"
3054
  msgstr "Парагвай"
3055
 
3056
- #: ../src/Tribe/PUE/Checker.php:421
3057
  msgid "Sorry, this key is expired."
3058
  msgstr "За съжаление, кода ви е изтекъл."
3059
 
3060
- #: ../src/Tribe/View_Helpers.php:216
3061
  msgid "Peru"
3062
  msgstr "Перу"
3063
 
3064
- #: ../src/Tribe/PUE/Checker.php:424
3065
  msgid "Sorry, this key is out of installs."
3066
  msgstr "За съжаление този ключ не е валиден."
3067
 
3068
- #: ../src/Tribe/View_Helpers.php:217
3069
  msgid "Philippines"
3070
  msgstr "Филипини"
3071
 
3072
- #: ../src/Tribe/PUE/Checker.php:425
3073
  msgid "Why am I seeing this message?"
3074
  msgstr "Защо виждате това съобщение?"
3075
 
3076
- #: ../src/Tribe/View_Helpers.php:218
3077
  msgid "Pitcairn"
3078
  msgstr "Питкерн"
3079
 
3080
- #: ../src/Tribe/PUE/Checker.php:428
3081
  msgid "Sorry, this key is not valid."
3082
  msgstr "За съжаление, кода ви не е валиден."
3083
 
3084
- #: ../src/Tribe/View_Helpers.php:219
3085
  msgid "Poland"
3086
  msgstr "Полша"
3087
 
3088
- #: ../src/Tribe/PUE/Checker.php:430
3089
  msgid "Valid Key! Expires on %s"
3090
  msgstr "Валиден сериен номер. Изтича на %s"
3091
 
3092
- #: ../src/Tribe/View_Helpers.php:220
3093
  msgid "Portugal"
3094
  msgstr "Португалия"
3095
 
3096
- #: ../src/Tribe/PUE/Checker.php:436
3097
  msgid "Hmmm... something's wrong with this validator. Please contact <a href=\"%s\">support.</a>"
3098
  msgstr "Хмм... нещо с този валидатор се обърка. Моля, свържете се с <a href=\"%s\">поддръжката.</a>"
3099
 
3100
- #: ../src/Tribe/View_Helpers.php:221
3101
  msgid "Puerto Rico"
3102
  msgstr "Пуерто Рико"
3103
 
3104
- #: ../src/Tribe/Settings.php:160 ../src/Tribe/Settings.php:176
3105
  msgid "The Events Calendar Settings"
3106
  msgstr "Настройки на The Events Calendar"
3107
 
3108
- #: ../src/Tribe/View_Helpers.php:222
3109
  msgid "Qatar"
3110
  msgstr "Катар"
3111
 
3112
- #: ../src/Tribe/Settings.php:176
3113
  msgid "Events Settings"
3114
  msgstr "Настройки на събития"
3115
 
3116
- #: ../src/Tribe/View_Helpers.php:223
3117
  msgid "Reunion"
3118
  msgstr "Реюнион"
3119
 
3120
- #: ../src/Tribe/Settings.php:239
3121
  msgid "%s Settings"
3122
  msgstr "%s Настройки"
3123
 
3124
- #: ../src/Tribe/View_Helpers.php:224
3125
  msgid "Romania"
3126
  msgstr "Румъния"
3127
 
3128
- #: ../src/Tribe/Settings.php:253
3129
  msgid "You've requested a non-existent tab."
3130
  msgstr "Търсите несъществуващ таб."
3131
 
3132
- #: ../src/Tribe/View_Helpers.php:225
3133
  msgid "Russian Federation"
3134
  msgstr "Русия"
3135
 
3136
- #: ../src/Tribe/Settings.php:261
3137
- msgid " Save Changes"
3138
- msgstr " Записване на промените"
3139
-
3140
- #: ../src/Tribe/View_Helpers.php:226
3141
  msgid "Rwanda"
3142
  msgstr "Руанда"
3143
 
3144
- #: ../src/Tribe/Settings.php:309
3145
  msgid "You don't have permission to do that."
3146
  msgstr "Нямате достъп."
3147
 
3148
- #: ../src/Tribe/View_Helpers.php:227
3149
  msgid "Saint Kitts And Nevis"
3150
  msgstr "Сейнт Китс и Невис"
3151
 
3152
- #: ../src/Tribe/Settings.php:315
3153
  msgid "The request was sent insecurely."
3154
  msgstr "Заявката не е изпратена криптирано."
3155
 
3156
- #: ../src/Tribe/View_Helpers.php:228
3157
  msgid "Saint Lucia"
3158
  msgstr "Сейнт Лусия"
3159
 
3160
- #: ../src/Tribe/Settings.php:321
3161
  msgid "The request wasn't sent from this tab."
3162
  msgstr "Заявката не е изпратена от този таб."
3163
 
3164
- #: ../src/Tribe/View_Helpers.php:229
3165
  msgid "Saint Vincent And The Grenadines"
3166
  msgstr "Сейнт Винсент и Гренадини"
3167
 
3168
- #: ../src/Tribe/Settings.php:489
3169
  msgid "Your form had the following errors:"
3170
  msgstr "Формуляра Ви има следните грешки:"
3171
 
3172
- #: ../src/Tribe/View_Helpers.php:230
3173
  msgid "Samoa"
3174
  msgstr "Самоа"
3175
 
3176
- #: ../src/Tribe/Settings.php:498
3177
  msgid "None of your settings were saved. Please try again."
3178
  msgstr "Вашите настройки не бяха запаметени. Моля опитайте отново."
3179
 
3180
- #: ../src/Tribe/View_Helpers.php:231
3181
  msgid "San Marino"
3182
  msgstr "Сан Марино"
3183
 
3184
- #: ../src/Tribe/Settings.php:498
3185
  msgid "The above setting was not saved. Other settings were successfully saved."
3186
  msgid_plural "The above settings were not saved. Other settings were successfully saved."
3187
  msgstr[0] "Настройката по-горе не са запаметена. Другите настройки са успешно запаметени."
3188
  msgstr[1] "Настройките по-горе не са запаметени. Другите настройки са успешно запаметени."
3189
 
3190
- #: ../src/Tribe/View_Helpers.php:232
3191
  msgid "Sao Tome And Principe"
3192
  msgstr "Сао Томе и Принсипи"
3193
 
3194
- #: ../src/Tribe/Settings_Tab.php:224
3195
  msgid "There are no fields setup for this tab yet."
3196
  msgstr "Все още няма настройка на полета за този таб."
3197
 
3198
- #: ../src/Tribe/View_Helpers.php:233
3199
  msgid "Saudi Arabia"
3200
  msgstr "Саудитска Арабия"
3201
 
3202
- #: ../src/Tribe/Support.php:46
3203
  msgid "Sometimes it's hard to tell what's going wrong without knowing more about your system steup. For your convenience, we've put together a little report on what's cooking under the hood."
3204
  msgstr "Понякога е трудно да се каже какво се е объркало, без да се знае повече за настройките на системата. За ваше удобство, ние съставихме малък доклад за случващото се под капака."
3205
 
3206
- #: ../src/Tribe/View_Helpers.php:234
3207
  msgid "Senegal"
3208
  msgstr "Сенегал"
3209
 
3210
- #: ../src/Tribe/Support.php:47
3211
  msgid "If you suspect that the problem you're having is related to another plugin, or we're just plain having trouble reproducing your bug report, please copy and send all of this to our support team."
3212
  msgstr "Ако подозирате, че проблема е причинен от друг plugin или ние не сме в състояние да възпроизведем грешката, която сте ни докладвали, молим да копирате и да изпратите всичко това на екипа ни за поддръжка."
3213
 
3214
- #: ../src/Tribe/View_Helpers.php:235
3215
  msgid "Serbia"
3216
  msgstr "Сърбия"
3217
 
3218
- #: ../src/Tribe/Support.php:51
3219
  msgid "System Information"
3220
  msgstr "Системна информация"
3221
 
3222
- #: ../src/Tribe/View_Helpers.php:236
3223
  msgid "Seychelles"
3224
  msgstr "Сейшели"
3225
 
3226
- #: ../src/Tribe/Support.php:137
3227
  msgid "Unknown or not set"
3228
  msgstr "Неизвестно или не е зададено"
3229
 
3230
- #: ../src/Tribe/View_Helpers.php:237
3231
  msgid "Sierra Leone"
3232
  msgstr "Сиера Леоне"
3233
 
3234
- #: ../src/Tribe/Template/Day.php:99 ../src/Tribe/Template/Day.php:115
3235
  msgid "All Day"
3236
  msgstr "Цял ден"
3237
 
3238
- #: ../src/Tribe/View_Helpers.php:238
3239
  msgid "Singapore"
3240
  msgstr "Сингапур"
3241
 
3242
- #: ../src/Tribe/Template/Day.php:102 ../src/Tribe/Template/Day.php:118
3243
  msgid "Ongoing"
3244
  msgstr "В момента"
3245
 
3246
- #: ../src/Tribe/View_Helpers.php:239
3247
  msgid "Slovakia (Slovak Republic)"
3248
  msgstr "Словакия"
3249
 
3250
- #: ../src/Tribe/Template/Day.php:136
3251
- msgid "No matching %s listed under %s scheduled for <strong>%s</strong>. Please try another day."
3252
- msgstr "Няма запис на %s под %s насрочено за <strong>%s</strong>. Моля опитайте с друг ден."
3253
-
3254
- #: ../src/Tribe/View_Helpers.php:240
3255
  msgid "Slovenia"
3256
  msgstr "Словения"
3257
 
3258
- #: ../src/Tribe/Template/Day.php:138
3259
- msgid "No %s scheduled for <strong>%s</strong>. Please try another day."
3260
- msgstr "Няма %s насрочено за <strong>%s</strong>. Моля опитайте с друг ден."
3261
-
3262
- #: ../src/Tribe/View_Helpers.php:241
3263
  msgid "Solomon Islands"
3264
  msgstr "Соломонови острови"
3265
 
3266
- #: ../src/Tribe/Template/Month.php:250
3267
  msgid "There were no results found for <strong>\"%s\"</strong> this month. Try searching next month."
3268
  msgstr "Не са намерени събития за <strong>\"%s\"</strong>. Опитайте с друг месец."
3269
 
3270
- #: ../src/Tribe/View_Helpers.php:242
3271
  msgid "Somalia"
3272
  msgstr "Сомалия"
3273
 
3274
- #: ../src/Tribe/Template/Month.php:253
3275
- msgid "No matching %s listed under %s. Please try viewing the full calendar for a complete list of events."
3276
- msgstr "Няма открити записи на %s от %s. Моля, опитайте да видите пълния календар за пълен списък на събитията."
3277
-
3278
- #: ../src/Tribe/View_Helpers.php:243
3279
  msgid "South Africa"
3280
  msgstr "Република Южна Африка"
3281
 
3282
- #: ../src/Tribe/Template/Month.php:255 ../src/Tribe/Template_Factory.php:366
3283
  msgid "There were no results found."
3284
  msgstr "Не са открити събития."
3285
 
3286
- #: ../src/Tribe/View_Helpers.php:244
3287
  msgid "South Georgia, South Sandwich Islands"
3288
  msgstr "Южна Джорджия и Южни Сандвичеви острови"
3289
 
3290
- #: ../src/Tribe/Template/Month.php:411
3291
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
3292
  msgstr "Заявената дата \"%s\" е невалидна &ndash; вместо това показваме текущия месец"
3293
 
3294
- #: ../src/Tribe/View_Helpers.php:245
3295
  msgid "Spain"
3296
  msgstr "Испания"
3297
 
3298
- #: ../src/Tribe/Template/Single_Event.php:120
3299
  msgid "This %s has passed."
3300
  msgstr "Това %s е минало."
3301
 
3302
- #: ../src/Tribe/View_Helpers.php:246
3303
  msgid "Sri Lanka"
3304
  msgstr "Шри Ланка"
3305
 
3306
- #: ../src/Tribe/Template_Factory.php:353
3307
  msgid "There were no results found for <strong>\"%s\"</strong>."
3308
  msgstr "Не са открити резултати за <strong>\"%s\"</strong>."
3309
 
3310
- #: ../src/Tribe/View_Helpers.php:247
3311
  msgid "St. Helena"
3312
  msgstr "Света Елена"
3313
 
3314
- #: ../src/Tribe/Template_Factory.php:355
3315
- msgid "No results were found for %s in or near <strong>\"%s\"</strong>."
3316
- msgstr "Не са открити резултати за %s в или близо до <strong>\"%s\"</strong>."
3317
-
3318
- #: ../src/Tribe/View_Helpers.php:248
3319
  msgid "St. Pierre And Miquelon"
3320
  msgstr "Сен Пиер и Микелон"
3321
 
3322
- #: ../src/Tribe/Template_Factory.php:357
3323
- msgid "No upcoming %s listed under %s. Check out upcoming %s for this category or view the full calendar."
3324
- msgstr "Не са открити %s в %s. Проверете предстоящите %s за тази категория или вижте целия календар."
3325
-
3326
- #: ../src/Tribe/View_Helpers.php:249
3327
  msgid "Sudan"
3328
  msgstr "Судан"
3329
 
3330
- #: ../src/Tribe/Template_Factory.php:359 ../src/Tribe/Template_Factory.php:364
3331
- msgid "No matching %s listed under %s. Please try viewing the full calendar for a complete list of %s."
3332
- msgstr "Няма записи на %s в %s. Моля опитайте да видите целия календар за пълен списък от %s."
3333
-
3334
- #: ../src/Tribe/View_Helpers.php:250
3335
  msgid "Suriname"
3336
  msgstr "Суринам"
3337
 
3338
- #: ../src/Tribe/Template_Factory.php:361
3339
  msgid "No previous %s "
3340
  msgstr "Няма предишни %s "
3341
 
3342
- #: ../src/Tribe/View_Helpers.php:251
3343
  msgid "Svalbard And Jan Mayen Islands"
3344
  msgstr "Свалбард и Ян Майен"
3345
 
3346
- #: ../src/Tribe/Templates.php:618
3347
  msgid "Template overrides should be moved to the correct subdirectory: %s"
3348
  msgstr "Презаписаните шаблони трябва да са преместени в правилната поддиректория: %s"
3349
 
3350
- #: ../src/Tribe/View_Helpers.php:252
3351
  msgid "Swaziland"
3352
  msgstr "Свазиленд"
3353
 
3354
- #: ../src/Tribe/Templates.php:660
3355
  msgid "Template overrides should be moved to the correct subdirectory: tribe_get_template_part('%s')"
3356
  msgstr "Презаписаните шаблони трябва да са преместени в правилната поддиректория: tribe_get_template_part('%s')"
3357
 
3358
- #: ../src/Tribe/View_Helpers.php:253
3359
  msgid "Sweden"
3360
  msgstr "Швеция"
3361
 
3362
- #: ../src/Tribe/Tickets/Attendees_Table.php:74
3363
  msgid "Order #"
3364
  msgstr "Поръчка №"
3365
 
3366
- #: ../src/Tribe/View_Helpers.php:254
3367
  msgid "Switzerland"
3368
  msgstr "Швейцария"
3369
 
3370
- #: ../src/Tribe/Tickets/Attendees_Table.php:75
3371
  msgid "Order Status"
3372
  msgstr "Статус на поръчката"
3373
 
3374
- #: ../src/Tribe/View_Helpers.php:255
3375
  msgid "Syrian Arab Republic"
3376
  msgstr "Сирия"
3377
 
3378
- #: ../src/Tribe/Tickets/Attendees_Table.php:76
3379
  msgid "Purchaser name"
3380
  msgstr "Име на купувача"
3381
 
3382
- #: ../src/Tribe/View_Helpers.php:256
3383
  msgid "Taiwan"
3384
  msgstr "Тайван"
3385
 
3386
- #: ../src/Tribe/Tickets/Attendees_Table.php:77
3387
  msgid "Purchaser email"
3388
  msgstr "Email на купувача"
3389
 
3390
- #: ../src/Tribe/View_Helpers.php:257
3391
  msgid "Tajikistan"
3392
  msgstr "Таджикистан"
3393
 
3394
- #: ../src/Tribe/Tickets/Attendees_Table.php:78
3395
  msgid "Ticket type"
3396
  msgstr "Вид на билета"
3397
 
3398
- #: ../src/Tribe/View_Helpers.php:258
3399
  msgid "Tanzania, United Republic Of"
3400
  msgstr "Танзания"
3401
 
3402
- #: ../src/Tribe/Tickets/Attendees_Table.php:79
3403
- #: ../src/views/tickets/email.php:305
3404
  msgid "Ticket #"
3405
  msgstr "Билет №"
3406
 
3407
- #: ../src/Tribe/View_Helpers.php:259
3408
  msgid "Thailand"
3409
  msgstr "Тайланд"
3410
 
3411
- #: ../src/Tribe/Tickets/Attendees_Table.php:80
3412
- #: ../src/views/tickets/email.php:317
3413
  msgid "Security Code"
3414
  msgstr "Код за сигурност"
3415
 
3416
- #: ../src/Tribe/View_Helpers.php:260
3417
  msgid "Togo"
3418
  msgstr "Того"
3419
 
3420
- #: ../src/Tribe/Tickets/Attendees_Table.php:81
3421
- #: ../src/Tribe/Tickets/Attendees_Table.php:168
3422
- #: ../src/Tribe/Tickets/Attendees_Table.php:235
3423
  msgid "Check in"
3424
  msgstr "Записване"
3425
 
3426
- #: ../src/Tribe/View_Helpers.php:261
3427
  msgid "Tokelau"
3428
  msgstr "Токелау"
3429
 
3430
- #: ../src/Tribe/Tickets/Attendees_Table.php:169
3431
- #: ../src/Tribe/Tickets/Attendees_Table.php:236
3432
  msgid "Undo Check in"
3433
  msgstr "Отмяна на записването"
3434
 
3435
- #: ../src/Tribe/View_Helpers.php:262
3436
  msgid "Tonga"
3437
  msgstr "Тонга"
3438
 
3439
- #: ../src/Tribe/Tickets/Attendees_Table.php:204
3440
  msgid "Print"
3441
  msgstr "Print"
3442
 
3443
- #: ../src/Tribe/View_Helpers.php:263
3444
  msgid "Trinidad And Tobago"
3445
  msgstr "Тринидад и Тобаго"
3446
 
3447
- #: ../src/Tribe/Tickets/Attendees_Table.php:205
3448
  msgid "Email"
3449
  msgstr "Email"
3450
 
3451
- #: ../src/Tribe/View_Helpers.php:264
3452
  msgid "Tunisia"
3453
  msgstr "Тунис"
3454
 
3455
- #: ../src/Tribe/Tickets/Attendees_Table.php:214 ../src/Tribe/iCal.php:119
3456
  msgid "Export"
3457
  msgstr "Експорт"
3458
 
3459
- #: ../src/Tribe/View_Helpers.php:265
3460
  msgid "Turkey"
3461
  msgstr "Турция"
3462
 
3463
- #: ../src/Tribe/Tickets/Attendees_Table.php:221
3464
  msgid "Filter by purchaser name, ticket #, order # or security code"
3465
  msgstr "Филтриране по дата на поръчка, номер на билет, номер на поръчка или код за сигурност "
3466
 
3467
- #: ../src/Tribe/View_Helpers.php:266
3468
  msgid "Turkmenistan"
3469
  msgstr "Туркменистан"
3470
 
3471
- #: ../src/Tribe/Tickets/Attendees_Table.php:237
3472
- #: ../src/admin-views/tickets/list.php:22
3473
  msgid "Delete"
3474
  msgstr "Изтриване"
3475
 
3476
- #: ../src/Tribe/View_Helpers.php:267
3477
  msgid "Turks And Caicos Islands"
3478
  msgstr "Търкс и Кайкос"
3479
 
3480
- #: ../src/Tribe/Tickets/Metabox.php:26
3481
- #: ../src/admin-views/admin-update-message.php:52
3482
  msgid "Tickets"
3483
  msgstr "Билети"
3484
 
3485
- #: ../src/Tribe/View_Helpers.php:268
3486
  msgid "Tuvalu"
3487
  msgstr "Тувалу"
3488
 
3489
- #: ../src/Tribe/Tickets/Metabox.php:71
3490
  msgid "Ticket header image"
3491
  msgstr "Картинка за хедъра на събитието"
3492
 
3493
- #: ../src/Tribe/View_Helpers.php:269
3494
  msgid "Uganda"
3495
  msgstr "Уганда"
3496
 
3497
- #: ../src/Tribe/Tickets/Metabox.php:72
3498
  msgid "Set as ticket header"
3499
  msgstr "Задайте хедър на събитието"
3500
 
3501
- #: ../src/Tribe/View_Helpers.php:270
3502
  msgid "Ukraine"
3503
  msgstr "Украйна"
3504
 
3505
- #: ../src/Tribe/Tickets/Tickets.php:328
3506
  msgid "Your ticket has been saved."
3507
  msgstr "Билета ви е запазен."
3508
 
3509
- #: ../src/Tribe/View_Helpers.php:271
3510
  msgid "United Arab Emirates"
3511
  msgstr "ОАЕ"
3512
 
3513
- #: ../src/Tribe/Tickets/Tickets.php:409
3514
  msgid "Your ticket has been deleted."
3515
  msgstr "Билета ви е изтрит."
3516
 
3517
- #: ../src/Tribe/View_Helpers.php:272
3518
  msgid "United Kingdom"
3519
  msgstr "Великобритания"
3520
 
3521
- #: ../src/Tribe/Tickets/Tickets_Pro.php:78
3522
- #: ../src/admin-views/tickets/list.php:41
3523
  msgid "See who purchased tickets to this event"
3524
  msgstr "Преглед на закупилите билет за събитието"
3525
 
3526
- #: ../src/Tribe/View_Helpers.php:273
3527
  msgid "United States Minor Outlying Islands"
3528
  msgstr "Малки далечни острови на САЩ"
3529
 
3530
- #: ../src/Tribe/Tickets/Tickets_Pro.php:78
3531
- #: ../src/admin-views/tickets/attendees.php:11
3532
- #: ../src/admin-views/tickets/list.php:41
3533
  msgid "Attendees"
3534
  msgstr "Участници"
3535
 
3536
- #: ../src/Tribe/View_Helpers.php:274
3537
  msgid "Uruguay"
3538
  msgstr "Уругвай"
3539
 
3540
- #: ../src/Tribe/Tickets/Tickets_Pro.php:113
3541
  msgid "You need to select a user or type a valid email address"
3542
  msgstr "Трябва да изберете група или да въведете валиден email адрес"
3543
 
3544
- #: ../src/Tribe/View_Helpers.php:275
3545
  msgid "Uzbekistan"
3546
  msgstr "Узбекистан"
3547
 
3548
- #: ../src/Tribe/Tickets/Tickets_Pro.php:114
3549
  msgid "Sending..."
3550
  msgstr "Изпращане..."
3551
 
3552
- #: ../src/Tribe/View_Helpers.php:276
3553
  msgid "Vanuatu"
3554
  msgstr "Вануату"
3555
 
3556
- #: ../src/Tribe/Tickets/Tickets_Pro.php:140
3557
  msgid "Columns"
3558
  msgstr "Колони"
3559
 
3560
- #: ../src/Tribe/View_Helpers.php:277
3561
  msgid "Venezuela"
3562
  msgstr "Венецуела"
3563
 
3564
- #: ../src/Tribe/Tickets/Tickets_Pro.php:140
3565
  msgid "You can use Screen Options to select which columns you want to see. The selection works in the table below, in the email, for print and for the CSV export."
3566
  msgstr "Можете да използвате Опции за екрана, за да изберете кои колони желаете да виждате. Избора е валиден за таблицата по-долу, в имейл, при принтиране и при CSV експортиране."
3567
 
3568
- #: ../src/Tribe/View_Helpers.php:278
3569
  msgid "Viet Nam"
3570
  msgstr "Виетнам"
3571
 
3572
- #: ../src/Tribe/Tickets/Tickets_Pro.php:230
3573
  msgid "Yes"
3574
  msgstr "Да"
3575
 
3576
- #: ../src/Tribe/View_Helpers.php:279
3577
  msgid "Virgin Islands (British)"
3578
  msgstr "Британски Вирджински острови"
3579
 
3580
- #: ../src/Tribe/Tickets/Tickets_Pro.php:262
3581
  msgid "attendees"
3582
  msgstr "attendees"
3583
 
3584
- #: ../src/Tribe/View_Helpers.php:280
3585
  msgid "Virgin Islands (U.S.)"
3586
  msgstr "Вирджински острови"
3587
 
3588
- #: ../src/Tribe/Tickets/Tickets_Pro.php:316
3589
  msgid "Attendee List for: %s"
3590
  msgstr "Лист с потвърдилите присъствие на: %s"
3591
 
3592
- #: ../src/Tribe/Validate.php:76 ../src/Tribe/Validate.php:117
3593
  msgid "Invalid or incomplete field passed"
3594
  msgstr "Има невалидно или незавършено поле"
3595
 
3596
- #: ../src/Tribe/Validate.php:77 ../src/Tribe/Validate.php:112
3597
- #: ../src/Tribe/Validate.php:118
3598
  msgid "Field ID:"
3599
  msgstr "ID на поле:"
3600
 
3601
- #: ../src/Tribe/Validate.php:111
3602
  msgid "Non-existant field validation function passed"
3603
  msgstr "Изпратена е несъществуваща функция за валидиране на полето"
3604
 
3605
- #: ../src/Tribe/Validate.php:112
3606
  msgctxt "non-existant function name passed for field validation"
3607
  msgid "with function name:"
3608
  msgstr "with function name:"
3609
 
3610
- #: ../src/Tribe/Validate.php:135 ../src/Tribe/Validate.php:151
3611
  msgid "%s must contain numbers and letters only"
3612
  msgstr "%s трябва да съдържа само цифри и букви"
3613
 
3614
- #: ../src/Tribe/Validate.php:167
3615
  msgid "%s must contain numbers, letters and dots only"
3616
  msgstr "%s трябва да съдържа само цифри, букви и точки"
3617
 
3618
- #: ../src/Tribe/Validate.php:181
3619
  msgid "%s must be a positive number."
3620
  msgstr "%s трябва да е положително число."
3621
 
3622
- #: ../src/Tribe/Validate.php:196
3623
  msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
3624
  msgstr "%s трябва да е валиден низ (числа, букви, тире и долно тире)."
3625
 
3626
- #: ../src/Tribe/Validate.php:211
3627
  msgid "%s must be a valid absolute URL."
3628
  msgstr "%s трябва да е валиден абсолюрен URL."
3629
 
3630
- #: ../src/Tribe/Validate.php:227 ../src/Tribe/Validate.php:244
3631
- #: ../src/Tribe/Validate.php:266
3632
  msgid "%s must have a value that's part of its options."
3633
  msgstr "%s трябва да има стойност, която отговаря на една от възможноте опции."
3634
 
3635
- #: ../src/Tribe/Validate.php:280
3636
  msgid "Comparison validation failed because no comparison value was provided, for field %s"
3637
  msgstr "Валидирането на сравнението се провали, тъй като не е зададена стойност за сравнение в полето %s"
3638
 
3639
- #: ../src/Tribe/Validate.php:287
3640
  msgid "%s cannot be the same as %s."
3641
  msgstr "%s не може да съвпада с %s."
3642
 
3643
- #: ../src/Tribe/Validate.php:289
3644
  msgid "%s cannot be a duplicate"
3645
  msgstr "%s не може да се дублира"
3646
 
3647
- #: ../src/Tribe/Validate.php:305
3648
  msgid "%s must be a number or percentage."
3649
  msgstr "%s трябва да е номер или процент."
3650
 
3651
- #: ../src/Tribe/Validate.php:359
3652
  msgid "%s must be a number between 0 and 21."
3653
  msgstr "%s трябва да е число между 0 и 21."
3654
 
3655
- #: ../src/Tribe/Validate.php:375
3656
  msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
3657
  msgstr "%s трябва да съдържа само букви, цифри, тирета, апострофи и интервали."
3658
 
3659
- #: ../src/Tribe/Validate.php:391
3660
  msgid "%s must consist of letters, spaces, apostrophes, and dashes."
3661
  msgstr "%s трябва да съдържа само букви, интервали, апострофи и тирета."
3662
 
3663
- #: ../src/Tribe/Validate.php:405
3664
  msgid "%s must consist of 5 numbers."
3665
  msgstr "%s трябва да съдържа 5 цифри."
3666
 
3667
- #: ../src/Tribe/Validate.php:419
3668
  msgid "%s must be a phone number."
3669
  msgstr "%s трябва да е валиден телефонен номер."
3670
 
3671
- #: ../src/Tribe/Validate.php:435
3672
  msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
3673
  msgstr "Списъка със страните трябва да съдържа по една страна на ред и да бъде в следния формат: <br>САЩ, Съединени Американски щати <br> БГ, България."
3674
 
3675
- #: ../src/Tribe/View_Helpers.php:26 ../src/Tribe/View_Helpers.php:45
3676
  msgid "Select a Country:"
3677
  msgstr "Избор на страна:"
2
  # This file is distributed under the same license as the The Events Calendar package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-08-06 15:44:44+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: The Events Calendar\n"
12
 
13
+ #. Description of the plugin/theme
14
+ msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome."
15
  msgstr ""
16
 
17
+ #. Author of the plugin/theme
18
+ msgid "Modern Tribe, Inc."
19
  msgstr ""
20
 
21
+ #. Author URI of the plugin/theme
22
+ msgid "http://m.tri.be/1x"
23
  msgstr ""
24
 
25
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:62
26
+ msgid "<a href=\"%s\">Edit the page slug</a>"
27
  msgstr ""
28
 
29
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:63
30
+ msgid "Ask the site administrator to edit the page slug"
31
  msgstr ""
32
 
33
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:68
34
+ msgid "<a href=\"%s\">edit The Events Calendar settings</a>."
35
+ msgstr ""
36
+
37
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:69
38
+ msgid " ask the site administrator set a different Events URL slug."
39
+ msgstr ""
40
+
41
+ #: src/Tribe/Admin/Timezone_Updater.php:77
42
+ msgid "Please wait while timezone data is added to your events."
43
+ msgstr ""
44
+
45
+ #: src/Tribe/Admin/Timezone_Updater.php:78
46
+ msgid "Update complete: timezone data has been added to all events in the database."
47
+ msgstr ""
48
+
49
+ #: src/Tribe/Admin/Timezone_Updater.php:87
50
+ msgid "%d%% complete"
51
+ msgstr ""
52
+
53
+ #: src/Tribe/Admin/Timezone_Updater.php:105
54
+ msgid "A problem stopped the timezone update process from completing. Please refresh and try again."
55
+ msgstr ""
56
+
57
+ #: src/Tribe/Importer/Column_Mapper.php:64
58
+ msgid "Event Currency Symbol"
59
+ msgstr ""
60
+
61
+ #: src/Tribe/Importer/Column_Mapper.php:65
62
+ msgid "Event Currency Position"
63
+ msgstr ""
64
+
65
+ #: src/Tribe/Importer/Column_Mapper.php:67
66
+ msgid "Event Tags"
67
+ msgstr ""
68
+
69
+ #: src/Tribe/Main.php:2241
70
+ msgid "page"
71
+ msgstr ""
72
+
73
+ #: src/Tribe/Main.php:2242
74
+ msgid "event"
75
+ msgstr ""
76
+
77
+ #: src/Tribe/Main.php:2243
78
+ msgid "events"
79
+ msgstr ""
80
+
81
+ #: src/Tribe/Main.php:2244
82
+ msgid "all"
83
+ msgstr ""
84
+
85
+ #: src/Tribe/Settings.php:261
86
+ msgid "Save Changes"
87
+ msgstr ""
88
+
89
+ #: src/Tribe/Template/Day.php:136
90
+ msgid "No matching %1$s listed under %2$s scheduled for <strong>%3$s</strong>. Please try another day."
91
+ msgstr ""
92
+
93
+ #: src/Tribe/Template/Day.php:138
94
+ msgid "No %1$s scheduled for <strong>%2$s</strong>. Please try another day."
95
+ msgstr ""
96
+
97
+ #: src/Tribe/Template/Month.php:287
98
+ msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
99
+ msgstr ""
100
+
101
+ #: src/Tribe/Template_Factory.php:355
102
+ msgid "No results were found for %1$s in or near <strong>\"%2$s\"</strong>."
103
+ msgstr ""
104
+
105
+ #: src/Tribe/Template_Factory.php:357
106
+ msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
107
+ msgstr ""
108
+
109
+ #: src/Tribe/Template_Factory.php:359 src/Tribe/Template_Factory.php:364
110
+ msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
111
+ msgstr ""
112
+
113
+ #: src/admin-views/events-meta-box.php:121
114
+ msgid "Timezone:"
115
+ msgstr ""
116
+
117
+ #: src/admin-views/tickets/attendees.php:103
118
+ msgid "Sold %1$d %2$s"
119
+ msgstr ""
120
+
121
+ #: src/admin-views/tickets/attendees.php:106
122
+ msgid "Sold %1$d of %2$d %3$s"
123
+ msgstr ""
124
+
125
+ #: src/admin-views/tickets/list.php:69
126
+ msgid "Sold %1$d of %2$d"
127
+ msgstr ""
128
+
129
+ #: src/admin-views/tribe-options-general.php:94
130
+ msgid "You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=\"%1$s\">%2$s</a>. In order to edit the slug here, <a href=\"%3$soptions-permalink.php\">enable pretty permalinks</a>."
131
+ msgstr ""
132
+
133
+ #: src/admin-views/tribe-options-help.php:199
134
+ msgid "If you find that you aren't getting the level of service you've come to expect from Modern Tribe, shoot us an email at %1$s or tweet %2$s and tell us why. We'll do what we can to make it right."
135
  msgstr ""
136
 
137
+ #: src/admin-views/tribe-options-licenses.php:13
138
+ msgid "<p>The license key you received when completing your purchase from %1$s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. <strong>Find your license keys at <a href=\"%2$s\" target=\"_blank\">%3$s</a></strong>.</p> <p>Each paid add-on has its own unique license key. Simply paste the key into its appropriate field on below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message.</p> <p>If you're seeing a red message telling you that your key isn't valid or is out of installs, visit <a href=\"%4$s\" target=\"_blank\">%5$s</a> to manage your installs or renew / upgrade your license.</p><p>Not seeing an update but expecting one? In WordPress, go to <a href=\"%6$s\">Dashboard > Updates</a> and click \"Check Again\".</p>"
139
+ msgstr ""
140
+
141
+ #: src/admin-views/tribe-options-timezones.php:4
142
+ msgid "Enable timezone support"
143
+ msgstr ""
144
+
145
+ #: src/admin-views/tribe-options-timezones.php:6
146
+ msgid "Update Timezone Data"
147
+ msgstr ""
148
+
149
+ #: src/admin-views/tribe-options-timezones.php:7
150
+ msgid "Click this button to update your database and take advantage of additional timezone capabilities. Please <a href=\"%s\" target=\"_blank\">configure WordPress</a> to use the correct timezone before clicking this button!"
151
+ msgstr ""
152
+
153
+ #: src/admin-views/tribe-options-timezones.php:27
154
+ msgid "Timezone Settings"
155
+ msgstr ""
156
+
157
+ #: src/admin-views/tribe-options-timezones.php:35
158
+ msgid "Timezone mode"
159
+ msgstr ""
160
+
161
+ #: src/admin-views/tribe-options-timezones.php:39
162
+ msgid "Use the local timezones for each event"
163
+ msgstr ""
164
+
165
+ #: src/admin-views/tribe-options-timezones.php:40
166
+ msgid "Use the sitewide timezone everywhere"
167
+ msgstr ""
168
+
169
+ #: src/admin-views/tribe-options-timezones.php:45
170
+ msgid "Show timezone"
171
+ msgstr ""
172
+
173
+ #: src/admin-views/tribe-options-timezones.php:46
174
+ msgid "Appends the timezone to the end of event scheduling information &ndash; this can be useful when you have events in numerous different timezones."
175
+ msgstr ""
176
+
177
+ #: src/functions/template-tags/general.php:411
178
+ msgctxt "category list label"
179
+ msgid "%s Category"
180
+ msgid_plural "%s Categories"
181
+ msgstr[0] ""
182
+ msgstr[1] ""
183
+
184
+ #: src/io/csv/admin-views/general.php:48
185
+ msgid "Save Settings"
186
+ msgstr ""
187
+
188
+ #: src/Tribe/Activation_Page.php:38
189
+ msgid "Go to plugins page"
190
+ msgstr "Отиди на страницата с плъгини"
191
+
192
+ #: src/Tribe/Activation_Page.php:38
193
+ msgid "Return to Plugins page"
194
+ msgstr "Върни се на страницата с плъгини"
195
+
196
+ #: src/Tribe/Activation_Page.php:46
197
+ msgid "Go to WordPress Updates page"
198
+ msgstr "Отиди на страницата с ъпдейти на Wordpress"
199
+
200
+ #: src/Tribe/Activation_Page.php:46
201
+ msgid "Return to WordPress Updates"
202
+ msgstr "Върни се на страницата с ъпдейти на Wordpress"
203
+
204
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88
205
+ msgid "Create New %s"
206
+ msgstr "Създай нов %s"
207
+
208
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:148
209
+ msgid "Add another organizer"
210
+ msgstr "Добави друг органайзер"
211
+
212
+ #: src/Tribe/Cost_Utils.php:108
213
  msgctxt "Cost range separator"
214
  msgid " - "
215
+ msgstr "-"
216
 
217
+ #: src/Tribe/PUE/Checker.php:416
218
  msgid "unknown date"
219
+ msgstr "неизвестна дата"
220
 
221
+ #: src/Tribe/Support.php:142
222
  msgid "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
223
+ msgstr "Правилата за пренаписване бяха изчистени при зареждането на тази помощна страница. Съществува вероятност за нулиране на правилата за пренаписване при плъгини или теми."
224
 
225
+ #: src/admin-views/tribe-options-help.php:155
226
  msgid "If you're looking for help with The Events Calendar, you've come to the right place. We are committed to helping make your calendar be spectacular... and hope the resources provided below will help get you there."
227
+ msgstr "Ако имате нужда от помощ при работата с The Events Calendar, сте на правилното място. Ние сме отдадени на това да ви помогнем да направите календара си страхотен...и се надяваме, че с предоставените ви ресурси ще ви помогнем да постигнете това."
228
 
229
+ #: src/admin-views/tribe-options-help.php:209
230
  msgid "Hi! We are Modern Tribe and we are here to help you be awesome. Thanks so much for installing our labor of love!"
231
+ msgstr "Здравейте ! Ние сме Modern Tribe и сме тук, за да ви помогнем да сте страхотни. Благодарим ви, че инсталирахте резултата от нашия труд !"
232
 
233
+ #: src/admin-views/tribe-options-help.php:231
234
  msgid "Support Resources To Help You Be Awesome"
235
+ msgstr "Помощни материали, които да ви помогнат да сте страхотни"
236
 
237
+ #: src/admin-views/tribe-options-licenses.php:17
238
  msgid ""
239
  "<strong> Using our plugins in a multisite network? </strong>\n"
240
  "\t\tPlease note that your license key will be applied to the entire network, not just this site."
241
  msgstr ""
242
+ "<strong> Използвате нашите плъгини в мрежа от от мулти-сайтове? </strong>\n"
243
+ "→\t→\tИскаме да ви обърнем внимание, че вашия сериен номер ще бъде активиран за всички уебсайтове, не само за настоящия."
244
 
245
+ #: src/admin-views/tribe-options-licenses.php:20
246
  msgid ""
247
  "Only license fields for <strong>network activated</strong> plugins will be\n"
248
  "\t\tlisted on this screen. "
249
  msgstr ""
250
+ "Само полетата за лицензиране на <strong>мрежово активирани</strong> плъгини ще бъдат\n"
251
+ "→\t→\tотбелязани на този екран."
252
 
253
+ #: src/Tribe/View_Helpers.php:334
254
  msgid "Louisiana"
255
  msgstr "Луизиана"
256
 
257
+ #: src/Tribe/View_Helpers.php:335
 
 
 
 
258
  msgid "Maine"
259
  msgstr "Мейн"
260
 
261
+ #: src/admin-views/tribe-options-help.php:200
262
  msgid "More..."
263
  msgstr "Още..."
264
 
265
+ #: src/Tribe/View_Helpers.php:336
266
  msgid "Maryland"
267
  msgstr "Мериленд"
268
 
269
+ #: src/Tribe/View_Helpers.php:337
270
  msgid "Massachusetts"
271
  msgstr "Масачузетс"
272
 
273
+ #: src/Tribe/View_Helpers.php:338
274
  msgid "Michigan"
275
  msgstr "Мичиган"
276
 
277
+ #: src/admin-views/tribe-options-help.php:241
278
  msgid "Forums: Because Everyone Needs A Buddy"
279
  msgstr "Форуми: Защото всеки се нуждае от сродна душа"
280
 
281
+ #: src/Tribe/View_Helpers.php:339
282
  msgid "Minnesota"
283
  msgstr "Минесота"
284
 
285
+ #: src/admin-views/tribe-options-help.php:251
286
  msgid "Not getting help?"
287
  msgstr "Не получавате помощ?"
288
 
289
+ #: src/Tribe/View_Helpers.php:340
290
  msgid "Mississippi"
291
  msgstr "Мисисипи"
292
 
293
+ #: src/admin-views/tribe-options-help.php:277
294
  msgid "Latest Version:"
295
  msgstr "Последна версия:"
296
 
297
+ #: src/Tribe/View_Helpers.php:341
298
  msgid "Missouri"
299
  msgstr "Мисури"
300
 
301
+ #: src/admin-views/tribe-options-help.php:279
302
  msgid "Author:"
303
  msgstr "Автор:"
304
 
305
+ #: src/Tribe/View_Helpers.php:342
306
  msgid "Montana"
307
  msgstr "Монтана"
308
 
309
+ #: src/admin-views/tribe-options-help.php:279
310
  msgid "Modern Tribe Inc"
311
  msgstr "Modern Tribe Inc"
312
 
313
+ #: src/Tribe/View_Helpers.php:343
314
  msgid "Nebraska"
315
  msgstr "Небраска"
316
 
317
+ #: src/admin-views/tribe-options-help.php:284
318
  msgid "Requires:"
319
  msgstr "Изисква:"
320
 
321
+ #: src/Tribe/View_Helpers.php:344
322
  msgid "Nevada"
323
  msgstr "Невада"
324
 
325
+ #: src/admin-views/tribe-options-help.php:284
326
  msgid "WordPress "
327
  msgstr "WordPress "
328
 
329
+ #: src/Tribe/View_Helpers.php:345
330
  msgid "New Hampshire"
331
  msgstr "Ню Хампшър"
332
 
333
+ #: src/admin-views/tribe-options-help.php:295
334
  msgid "Wordpress.org Plugin Page"
335
  msgstr "Wordpress.org страница за Plugin-и"
336
 
337
+ #: src/Tribe/View_Helpers.php:346
338
  msgid "New Jersey"
339
  msgstr "Ню Джърси"
340
 
341
+ #: src/admin-views/tribe-options-help.php:301
342
  msgid "Average Rating"
343
  msgstr "Среден рейтинг"
344
 
345
+ #: src/Tribe/View_Helpers.php:347
346
  msgid "New Mexico"
347
  msgstr "Ню Мексико"
348
 
349
+ #: src/admin-views/tribe-options-help.php:307
350
  msgid "Based on %d rating"
351
  msgid_plural "Based on %d ratings"
352
  msgstr[0] "На базата на %d отзив"
353
  msgstr[1] "На базата на %d отзива"
354
 
355
+ #: src/Tribe/View_Helpers.php:348
356
  msgid "New York"
357
  msgstr "Ню Йорк"
358
 
359
+ #: src/admin-views/tribe-options-help.php:317
360
  msgid "Give us 5 stars!"
361
  msgstr "Дай ни 5 звезди!"
362
 
363
+ #: src/Tribe/View_Helpers.php:349
364
  msgid "North Carolina"
365
  msgstr "Северна Каролина"
366
 
367
+ #: src/admin-views/tribe-options-help.php:321
368
  msgid "Premium Add-Ons"
369
  msgstr "Premium Add-Ons"
370
 
371
+ #: src/Tribe/View_Helpers.php:350
372
  msgid "North Dakota"
373
  msgstr "Северна Дакота"
374
 
375
+ #: src/admin-views/tribe-options-help.php:330
376
  msgid "(Coming Soon!)"
377
  msgstr "(Очаквайте скоро!)"
378
 
379
+ #: src/Tribe/View_Helpers.php:351
380
  msgid "Ohio"
381
  msgstr "Охайо"
382
 
383
+ #: src/admin-views/tribe-options-help.php:340
384
  msgid "News and Tutorials"
385
  msgstr "Новини и упътвания"
386
 
387
+ #: src/Tribe/View_Helpers.php:352
388
  msgid "Oklahoma"
389
  msgstr "Оклахома"
390
 
391
+ #: src/admin-views/tribe-options-network.php:15
392
  msgid "Network Settings"
393
  msgstr "Мрежови настройки"
394
 
395
+ #: src/Tribe/View_Helpers.php:353
396
  msgid "Oregon"
397
  msgstr "Орегон"
398
 
399
+ #: src/admin-views/tribe-options-network.php:19
400
  msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
401
  msgstr "Тук е мястото, откъдето могат да се променят всички глобални настройки на Modern Tribe's The Events Calendar."
402
 
403
+ #: src/Tribe/View_Helpers.php:354
404
  msgid "Pennsylvania"
405
  msgstr "Пенсилвания"
406
 
407
+ #: src/admin-views/tribe-options-network.php:27
408
  msgid "Hide the following settings tabs on every site:"
409
  msgstr "Скрии тези табове с настройки на всяка страница:"
410
 
411
+ #: src/Tribe/View_Helpers.php:355
412
  msgid "Rhode Island"
413
  msgstr "Род Айлънд"
414
 
415
+ #: src/admin-views/tickets/attendees.php:46
416
+ #: src/admin-views/venue-meta-box.php:34
417
+ #: src/functions/advanced-functions/meta_registration.php:176
418
  msgid "Address:"
419
  msgstr "Адрес:"
420
 
421
+ #: src/Tribe/View_Helpers.php:356
422
  msgid "South Carolina"
423
  msgstr "Южна Каролина"
424
 
425
+ #: src/admin-views/venue-meta-box.php:41
426
  msgid "City:"
427
  msgstr "Град:"
428
 
429
+ #: src/Tribe/View_Helpers.php:357
430
  msgid "South Dakota"
431
  msgstr "Южна Дакота"
432
 
433
+ #: src/admin-views/venue-meta-box.php:48
434
  msgid "Country:"
435
  msgstr "Държава:"
436
 
437
+ #: src/Tribe/View_Helpers.php:358
438
  msgid "Tennessee"
439
  msgstr "Тенеси"
440
 
441
+ #: src/admin-views/venue-meta-box.php:88
442
  msgid "State or Province:"
443
  msgstr "Област (щат):"
444
 
445
+ #: src/Tribe/View_Helpers.php:359
446
  msgid "Texas"
447
  msgstr "Тексас"
448
 
449
+ #: src/admin-views/venue-meta-box.php:92
450
  msgid "Select a State:"
451
  msgstr "Щат:"
452
 
453
+ #: src/Tribe/View_Helpers.php:360
454
  msgid "Utah"
455
  msgstr "Юта"
456
 
457
+ #: src/admin-views/venue-meta-box.php:105
458
  msgid "Postal Code:"
459
  msgstr "Пощенски код:"
460
 
461
+ #: src/Tribe/View_Helpers.php:361
462
  msgid "Vermont"
463
  msgstr "Върмонт"
464
 
465
+ #: src/admin-views/venue-meta-box.php:137
466
+ #: src/admin-views/venue-meta-box.php:159
467
  msgid "Show Google Map:"
468
  msgstr "Покажи Google карти:"
469
 
470
+ #: src/Tribe/View_Helpers.php:362
471
  msgid "Virginia"
472
  msgstr "Вирджиния"
473
 
474
+ #: src/admin-views/venue-meta-box.php:147
475
+ #: src/admin-views/venue-meta-box.php:169
476
  msgid "Show Google Maps Link:"
477
  msgstr "Показване на Google карти линк:"
478
 
479
+ #: src/Tribe/View_Helpers.php:363
480
  msgid "Washington"
481
  msgstr "Вашингтон"
482
 
483
+ #: src/admin-views/widget-admin-list.php:13
484
  msgid "Title:"
485
  msgstr "Заглавие:"
486
 
487
+ #: src/Tribe/View_Helpers.php:364
488
  msgid "West Virginia"
489
  msgstr "Западна Вирджиния"
490
 
491
+ #: src/admin-views/widget-admin-list.php:18
492
  msgid "Show:"
493
  msgstr "Покажи:"
494
 
495
+ #: src/Tribe/View_Helpers.php:365
496
  msgid "Wisconsin"
497
  msgstr "Уисконсин"
498
 
499
+ #: src/admin-views/widget-admin-list.php:28
500
  msgid "Show widget only if there are upcoming events:"
501
  msgstr "Показване на уиджета само ако има предстоящи събития:"
502
 
503
+ #: src/Tribe/View_Helpers.php:366
504
  msgid "Wyoming"
505
  msgstr "Уайоминг"
506
 
507
+ #: src/functions/advanced-functions/meta_registration.php:16
508
+ #: src/views/modules/meta/details.php:30
509
  msgid "Details"
510
  msgstr "Детайли"
511
 
512
+ #: src/Tribe/iCal.php:28
513
  msgctxt "feed link"
514
  msgid "&raquo;"
515
  msgstr "&raquo;"
516
 
517
+ #: src/functions/advanced-functions/meta_registration.php:80
518
  msgid "Event Tags:"
519
  msgstr "Етикети към събития:"
520
 
521
+ #: src/Tribe/iCal.php:29
522
  msgid "%1$s %2$s iCal Feed"
523
  msgstr "%1$s %2$s iCal Feed"
524
 
525
+ #: src/functions/advanced-functions/meta_registration.php:112
526
  msgid "Origin:"
527
  msgstr "Произход:"
528
 
529
+ #: src/Tribe/iCal.php:75
530
  msgid "Add to Google Calendar"
531
  msgstr "Добави в Google Календар"
532
 
533
+ #: src/functions/advanced-functions/meta_registration.php:286
534
  msgid "%s:"
535
  msgstr "%s:"
536
 
537
+ #: src/Tribe/iCal.php:75
538
  msgid "Google Calendar"
539
  msgstr "Google Календар"
540
 
541
+ #: src/functions/template-tags/date.php:261
542
  msgid "The function needs to be passed an $event or used in the loop."
543
  msgstr "Функцията трябва да бъде асоциирана със $event или да бъде използвана като обща."
544
 
545
+ #: src/Tribe/iCal.php:76
546
  msgid "Download .ics file"
547
  msgstr "Сваляне на .ics файл"
548
 
549
+ #: src/functions/template-tags/day.php:107
550
  msgid "<span>&laquo;</span> Previous Day"
551
  msgstr "<span>&laquo;</span> Предходен ден"
552
 
553
+ #: src/Tribe/iCal.php:76
554
  msgid "iCal Export"
555
  msgstr "iCal импорт"
556
 
557
+ #: src/functions/template-tags/day.php:109
558
  msgid "Next Day <span>&raquo;</span>"
559
  msgstr "Следващ ден <span>&raquo;</span>"
560
 
561
+ #: src/Tribe/iCal.php:106
562
  msgid "Month's %s"
563
  msgstr "На месец %s"
564
 
565
+ #: src/functions/template-tags/day.php:111
566
  msgid "Yesterday"
567
  msgstr "Вчера"
568
 
569
+ #: src/Tribe/iCal.php:109
570
  msgid "Week's %s"
571
  msgstr "На седмица %s"
572
 
573
+ #: src/functions/template-tags/day.php:113
574
  msgid "Tomorrow"
575
  msgstr "Утре"
576
 
577
+ #: src/Tribe/iCal.php:112
578
  msgid "Day's %s"
579
  msgstr "На ден %s"
580
 
581
+ #: src/functions/template-tags/deprecated.php:1283
582
  msgid "Category"
583
  msgstr "Категория"
584
 
585
+ #: src/Tribe/iCal.php:115
586
  msgid "Listed %s"
587
  msgstr "Вписани %s"
588
 
589
+ #: src/functions/template-tags/general.php:450
590
  msgid "Tags:"
591
  msgstr "Етикети:"
592
 
593
+ #: src/Tribe/iCal.php:120
594
  msgid "Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps"
595
  msgstr "Използвайте това, за да споделяте записи от календара с Google Календар, Apple iCal и други съвместими приложения"
596
 
597
+ #: src/functions/template-tags/general.php:562
598
  msgid "Loading %s"
599
  msgstr "Зарежда %s"
600
 
601
+ #: src/admin-views/admin-update-message.php:9
602
+ #: src/admin-views/admin-welcome-message.php:11
603
  msgid "You are running Version %s and deserve a hug :-)"
604
  msgstr "Използвате версия %s и заслужавате прегръдка :-)"
605
 
606
+ #: src/Tribe/Cost_Utils.php:123
607
  msgid "Free"
608
  msgstr "Безплатно"
609
 
610
+ #: src/admin-views/admin-update-message.php:32
611
  msgid "Keep the Core Plugin <strong>FREE</strong>!"
612
  msgstr "Запазете основното разширение <strong>безплатно</strong>!"
613
 
614
+ #: src/functions/template-tags/general.php:1488
615
  msgid "Calendar powered by %sThe Events Calendar%s"
616
  msgstr "Календара използва %sThe Events Calendar%s"
617
 
618
+ #: src/admin-views/admin-update-message.php:33
619
  msgid "Every time you rate <strong>5 stars</strong>, a fairy is born. Okay maybe not, but more happy users mean more contributions and help on the forums. The community NEEDS your voice."
620
  msgstr "Всеки път, когато давате оценка <strong>5 звезди</strong>, се ражда приказка. Е, може би не съвсем, но колкото повече потребители имаме, толкова повече помощни материали във форума. Общността има нужда от вашия глас."
621
 
622
+ #: src/functions/template-tags/loop.php:131
623
  msgid "Upcoming %s"
624
  msgstr "Предстоящи %s"
625
 
626
+ #: src/admin-views/admin-update-message.php:34
627
+ #: src/admin-views/admin-welcome-message.php:22
628
  msgid "Rate It"
629
  msgstr "Оценете"
630
 
631
+ #: src/functions/template-tags/loop.php:145
632
  msgid "%1$s for %2$s - %3$s"
633
  msgstr "%1$s за %2$s - %3$s"
634
 
635
+ #: src/admin-views/admin-update-message.php:37
636
  msgid "PSST... Want a Discount?"
637
  msgstr "Хей...искаш ли отстъпка ?"
638
 
639
+ #: src/functions/template-tags/loop.php:147
640
  msgid "Past %s"
641
  msgstr "Минали %s"
642
 
643
+ #: src/admin-views/admin-update-message.php:38
644
  msgid "We send out discounts to our core users via our newsletter."
645
  msgstr "Изпращаме отстъпки за нашите основни потребители по електронна поща."
646
 
647
+ #: src/functions/template-tags/loop.php:152
648
+ #: src/functions/template-tags/loop.php:161
649
  msgid "%1$s for %2$s"
650
  msgstr "%1$s за %2$s"
651
 
652
+ #: src/admin-views/admin-update-message.php:43
653
+ #: src/admin-views/admin-welcome-message.php:31
654
  msgid "Sign Up"
655
  msgstr "Запиши се"
656
 
657
+ #: src/functions/template-tags/options.php:20
658
  msgid "Your current Events URL is %s"
659
  msgstr "В момента адреса на календара е %s"
660
 
661
+ #: src/admin-views/admin-update-message.php:49
662
  msgid "Looking for Something Special?"
663
  msgstr "Търсите нещо специално?"
664
 
665
+ #: src/functions/template-tags/options.php:29
666
  msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
667
  msgstr "<strong>Не можете </strong>да използвате същия адрес като горния. Обикновено горния е в множествено число, а този в единствено. <br />URL адреса на отделно събитие е: %s"
668
 
669
+ #: src/admin-views/admin-update-message.php:51
670
  msgid "Pro"
671
  msgstr "Про"
672
 
673
+ #: src/io/csv/admin-views/columns.php:22
674
  msgid "Column Mapping: %s"
675
  msgstr "Column Mapping: %s"
676
 
677
+ #: src/admin-views/admin-update-message.php:53
678
  msgid "Community Events"
679
  msgstr "Community Events"
680
 
681
+ #: src/io/csv/admin-views/columns.php:27
682
  msgid "Columns have been mapped based on your last import. Please ensure the selected fields match the columns in your CSV file."
683
  msgstr "Колоните бяха разпределени в съответствие с последния ви импорт. Моля уверете се, че полетата отговарят на колоните от вашия CSV файл."
684
 
685
+ #: src/admin-views/admin-update-message.php:54
686
  msgid "Filters"
687
  msgstr "Филтри"
688
 
689
+ #: src/io/csv/admin-views/columns.php:32
690
  msgid "Column Headings"
691
  msgstr "Заглавия на колони"
692
 
693
+ #: src/admin-views/admin-update-message.php:55
694
  msgid "Facebook"
695
  msgstr "Facebook"
696
 
697
+ #: src/io/csv/admin-views/columns.php:33
698
  msgid "Event Fields"
699
  msgstr "Полета на събитието"
700
 
701
+ #: src/admin-views/admin-update-message.php:58
702
+ #: src/admin-views/admin-welcome-message.php:53
703
  msgid "News For Events Users"
704
  msgstr "Новини за потребители на календара"
705
 
706
+ #: src/io/csv/admin-views/columns.php:44
707
  msgid "Perform Import"
708
  msgstr "Извърши импортиране"
709
 
710
+ #: src/admin-views/admin-welcome-message.php:19
711
  msgid "Keep The Events Calendar Core FREE"
712
  msgstr "Запазете основната версия на The Events Calendar безплатна"
713
 
714
+ #: src/io/csv/admin-views/general.php:10
715
  msgid "The Events Calendar: Import"
716
  msgstr "The Events Calendar: Импортиране"
717
 
718
+ #: src/admin-views/admin-welcome-message.php:20
719
  msgid "5 star ratings help us bring TEC to more users. More happy users mean more support, more features, and more of everything you know and love about The Events Calendar. We couldn't do this without your support."
720
  msgstr "5-звездния рейтинг ни помага да привлечем повече потребители за TEC. Повече щастливи потребители, означават по-добра поддръжка, повече нови функции и повече от всички неща, които знаете и обичате в The Events Calendar. Не можем да го направим без вашата помощ."
721
 
722
+ #: src/io/csv/admin-views/general.php:12
723
  msgid "Instructions"
724
  msgstr "Инструкции"
725
 
726
+ #: src/admin-views/admin-welcome-message.php:21
727
  msgid "Rate it five stars today!"
728
  msgstr "Гласувайте с 5 звезди днес!"
729
 
730
+ #: src/io/csv/admin-views/general.php:14
731
  msgid "To import events, first select a %sDefault Import Event Status%s below to assign to your imported events."
732
  msgstr "За да импортирате събития, първо изберете %sСтатус на импортираните събития по подразбиране%s отдолу, за да го прикачите към вашите импортирани събития."
733
 
734
+ #: src/admin-views/admin-welcome-message.php:25
735
  msgid "Newsletter Signup"
736
  msgstr "Записване за бюлетина"
737
 
738
+ #: src/io/csv/admin-views/general.php:17
739
  msgid "Once your setting is saved, move to the applicable Import tab to select import specific criteria."
740
  msgstr "След като настройките ви са запазени веднъж, преминете към съответния импорт-таб , за да изберете специфични критерии за импорт."
741
 
742
+ #: src/admin-views/admin-welcome-message.php:26
743
  msgid "Stay in touch with The Events Calendar Pro. We send out periodic updates, key developer notices, and even the occasional discount."
744
  msgstr "Бъдете в час с The Events Calendar Pro. Разпространяваме периодични актуализации, ключови подобрения, а понякога и отстъпки."
745
 
746
+ #: src/io/csv/admin-views/general.php:24
747
  msgid "Import Settings"
748
  msgstr "Настройки за импортиране"
749
 
750
+ #: src/admin-views/admin-welcome-message.php:40
751
+ #: src/admin-views/tribe-options-help.php:221
752
  msgid "Getting Started"
753
  msgstr "От къде да започнете"
754
 
755
+ #: src/io/csv/admin-views/general.php:27
756
  msgid "Default imported event status:"
757
  msgstr "Статус на импортираните събития по подразбиране:"
758
 
759
+ #: src/admin-views/admin-welcome-message.php:41
760
  msgid "Check out the New User Primer &amp; Tutorials"
761
  msgstr "Разгледайте ръководство \"Първи стъпки\" за нови потребители."
762
 
763
+ #: src/io/csv/admin-views/general.php:30
764
  msgid "Published"
765
  msgstr "Публикувано"
766
 
767
+ #: src/admin-views/admin-welcome-message.php:43
768
  msgid "Looking for More Features?"
769
  msgstr "Имате нужда от повече функции?"
770
 
771
+ #: src/io/csv/admin-views/general.php:31
772
  msgid "Pending"
773
  msgstr "Предстоящо"
774
 
775
+ #: src/admin-views/admin-welcome-message.php:44
776
  msgid "Addons for Community, Tickets, Filters, Facebook and more."
777
  msgstr "Добавки за общности, билети, филтри, Facebook и други."
778
 
779
+ #: src/io/csv/admin-views/general.php:32
780
  msgid "Draft"
781
  msgstr "Чернова"
782
 
783
+ #: src/admin-views/admin-welcome-message.php:46
784
  msgid "Support Resources"
785
  msgstr "Помощни ресурси"
786
 
787
+ #: src/io/csv/admin-views/header.php:17
788
  msgid "Events Import"
789
  msgstr "Импортиране на събития"
790
 
791
+ #: src/admin-views/admin-welcome-message.php:47
792
  msgid "FAQs, Documentation, Tutorials and Forums"
793
  msgstr "Въпроси и отговори, Документация, Ръководства и Форуми"
794
 
795
+ #: src/io/csv/admin-views/import.php:17
796
  msgid "Import Instructions"
797
  msgstr "Инструкции за импортиране"
798
 
799
+ #: src/admin-views/admin-welcome-message.php:50
800
  msgid "Release Notes"
801
  msgstr "Забележки относно обновлението"
802
 
803
+ #: src/io/csv/admin-views/import.php:20
804
  msgid "If your events have Organizers or Venues, please import those first."
805
  msgstr "Ако вашите събития имат организатори или места, моля първо ги импортирайте."
806
 
807
+ #: src/admin-views/admin-welcome-message.php:51
808
  msgid "Get the Skinny on the Latest Updates"
809
  msgstr "Получете вътрешна информация за предстоящи актуализации"
810
 
811
+ #: src/io/csv/admin-views/import.php:21
812
  msgid "To import organizers or venues:"
813
  msgstr "За да импортирате организатори и места:"
814
 
815
+ #: src/admin-views/admin-welcome-message.php:54
816
  msgid "Product Releases, Tutorials and Community Activity"
817
  msgstr "Продуктови версии, Ръководства и обществена дейност"
818
 
819
+ #: src/io/csv/admin-views/import.php:23
820
  msgid "Select the appropriate import type."
821
  msgstr "Изберете подходящия вид импортиране."
822
 
823
+ #: src/admin-views/app-shop.php:4
824
  msgid "Tribe Event Add-Ons"
825
  msgstr "Tribe Event Add-Ons"
826
 
827
+ #: src/io/csv/admin-views/import.php:24 src/io/csv/admin-views/import.php:30
 
828
  msgid "Upload a CSV file with one record on each line. The first line may contain column names (check the box below)."
829
  msgstr "Качете CSV файл с по един запис на всеки ред. Първия ред може да съдържа имената на колоните (отбележете отметката по-долу)."
830
 
831
+ #: src/admin-views/app-shop.php:54
832
  msgid "Version"
833
  msgstr "Версия"
834
 
835
+ #: src/io/csv/admin-views/import.php:25
836
  msgid "One column in your CSV should have the Organizer/Venue name. All other fields are optional."
837
  msgstr "Една колона във вашия CSV файл трява да съдържа името на организатора/мястото. Всички останали полета не са задължителни."
838
 
839
+ #: src/admin-views/app-shop.php:57
840
  msgid "Last Update"
841
  msgstr "Последна актуализация"
842
 
843
+ #: src/io/csv/admin-views/import.php:26 src/io/csv/admin-views/import.php:32
 
844
  msgid "After you upload your file, you'll have the opportunity to indicate how the columns in your CSV map to fields in The Events Calendar."
845
  msgstr "След като качите CSV файла, ще имате възможност да определите, на коя колона отговаря всяко поле в The Events Calendar."
846
 
847
+ #: src/admin-views/event-sidebar-options.php:13
848
  msgid "Hide From %s Listings"
849
  msgstr "Скрий от %s записи"
850
 
851
+ #: src/io/csv/admin-views/import.php:28
852
  msgid "After importing your Organizers and Venues, import your Events:"
853
  msgstr "След като импортирате Организаторите и Местата си, импортирайте събитията си:"
854
 
855
+ #: src/admin-views/event-sidebar-options.php:15
856
  msgid "Sticky in Month View"
857
  msgstr "Sticky в месечния изглед"
858
 
859
+ #: src/io/csv/admin-views/import.php:31
860
  msgid "One column in your CSV should have the Event title. Another should have the Event start date. All other fields are optional."
861
  msgstr "Една колона във вашия CSV файл трява да съдържа името на събитието. Всички останали полета не са задължителни."
862
 
863
+ #: src/admin-views/event-sidebar-options.php:16
864
  msgid "When events are sticky in month view, they'll display first in the list of events shown within a given day block."
865
  msgstr "Когато събитията са Sticky в месечния изглед, те ще се показват първи в списъка от събития в рамките на определен ден."
866
 
867
+ #: src/io/csv/admin-views/import.php:36
868
  msgid "Questions? <a href=\"%s\">Watch the video</a>."
869
  msgstr "Въпроси? <a href=\"%s\">Изгледайте видеото</a>."
870
 
871
+ #: src/admin-views/events-meta-box.php:60
872
  msgid "Time &amp; Date"
873
  msgstr "Време &amp; Дата"
874
 
875
+ #: src/io/csv/admin-views/import.php:43
876
  msgid "Import Type:"
877
  msgstr "Вид импортиране:"
878
 
879
+ #: src/admin-views/events-meta-box.php:67
880
  msgid "You have changed the recurrence rules of this %1$s. Saving the %1$s will update all future %2$s. If you did not mean to change all %2$s, then please refresh the page."
881
  msgstr "Вие променихте правилата за повторяемост на това %1$s. Запазвайки %1$s ще промени всички бъдещи %2$s. Ако не сте имали намерение да променяте всички %2$s, то моля презаредете страницата."
882
 
883
+ #: src/io/csv/admin-views/import.php:55
884
  msgid "CSV File:"
885
  msgstr "CSV файл:"
886
 
887
+ #: src/admin-views/events-meta-box.php:70
888
  msgid "All Day %s:"
889
  msgstr "Целодневно %s:"
890
 
891
+ #: src/io/csv/admin-views/import.php:59
892
  msgid "Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file is UTF-8 encoded? Make sure to specify the character encoding when you save the file, or pass it through a <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>conversion tool</a>."
893
  msgstr "Качете правилно форматиран CSV файл, с UTF-8 кодировка. Не сте сигурни дали кодировката на файла ви е UTF-8? Уверете се, че сте избрали правилната кодировка, когато записвате файла или го конвертирайте чрез онлайн туул като <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>този</a>."
894
 
895
+ #: src/admin-views/events-meta-box.php:76
896
  msgid "Start Date &amp; Time:"
897
  msgstr "Начална дата и час:"
898
 
899
+ #: src/io/csv/admin-views/import.php:67
900
  msgid "This file has column names in the first row"
901
  msgstr "Файлът има имена на колоните в първия ред"
902
 
903
+ #: src/admin-views/events-meta-box.php:80
904
+ #: src/admin-views/events-meta-box.php:101
905
  msgid "YYYY-MM-DD"
906
  msgstr "YYYY-MM-DD"
907
 
908
+ #: src/io/csv/admin-views/import.php:78
909
  msgid "Import CSV File"
910
  msgstr "Импортиране на CSV файл"
911
 
912
+ #: src/admin-views/events-meta-box.php:98
913
  msgid "End Date &amp; Time:"
914
  msgstr "Крайна дата и час:"
915
 
916
+ #: src/io/csv/admin-views/result.php:15
917
  msgid "Import Result"
918
  msgstr "Импортиране на резултат"
919
 
920
+ #: src/admin-views/events-meta-box.php:147
921
  msgid "Location"
922
  msgstr "Местоположение"
923
 
924
+ #: src/io/csv/admin-views/result.php:17
925
  msgid "Import complete!"
926
  msgstr "Импортирането завършено!"
927
 
928
+ #: src/admin-views/events-meta-box.php:195
929
  msgid "%s Website"
930
  msgstr "%s Уебсайт"
931
 
932
+ #: src/io/csv/admin-views/result.php:19
933
  msgid "Inserted: %d"
934
  msgstr "Вмъкнато: %d"
935
 
936
+ #: src/admin-views/events-meta-box.php:198
937
  msgid "URL:"
938
  msgstr "URL:"
939
 
940
+ #: src/io/csv/admin-views/result.php:20
941
  msgid "Updated: %d"
942
  msgstr "Обновено: %d"
943
 
944
+ #: src/admin-views/events-meta-box.php:229
945
  msgid "%s Cost"
946
  msgstr "%s Стойност"
947
 
948
+ #: src/io/csv/admin-views/result.php:21
949
  msgid "Skipped: %d"
950
  msgstr "Пропуснато: %d"
951
 
952
+ #: src/admin-views/events-meta-box.php:232
953
  msgid "Currency Symbol:"
954
  msgstr "Символ за валута:"
955
 
956
+ #: src/io/csv/admin-views/result.php:25
957
  msgid "The import statistics above have the following meaning:"
958
  msgstr "Импортираните по-горе статистики имат следното значение:"
959
 
960
+ #: src/admin-views/events-meta-box.php:247
961
  msgctxt "Currency symbol position"
962
  msgid "Before cost"
963
  msgstr "Преди цената"
964
 
965
+ #: src/io/csv/admin-views/result.php:26
966
  msgid "<ol><li><strong>Inserted:</strong> A new item was inserted successfully.</li><li><strong>Updated:</strong> An item was found with the same name and/or start date. The existing item was updated with the new value from the file.</li><li><strong>Skipped:</strong> A row was found in the CSV file that could not be imported. Please see below for the invalid rows.</li></ol>"
967
  msgstr "<ol><li><strong>Вмъкнати: </strong> Нов елемент е вмъкнат успешно.</li><li><strong>Обновени:</strong> Беше намерен елемент със същото име и/или начална дата. Съществуващия запис беше обновен със стойностите от файла. </li><li><strong>Пропуснати:</strong>Намерен е ред, който не може да бъде импортиран. Списък на невалидните редове ще откриете по-долу. </li></ol>"
968
 
969
+ #: src/admin-views/events-meta-box.php:250
970
  msgctxt "Currency symbol position"
971
  msgid "After cost"
972
  msgstr "След цената"
973
 
974
+ #: src/io/csv/admin-views/result.php:29
975
  msgid "Skipped row numbers: %s"
976
  msgstr "Номера на пропуснатите редове: %s"
977
 
978
+ #: src/admin-views/events-meta-box.php:255
979
+ #: src/functions/advanced-functions/meta_registration.php:48
980
+ #: src/views/modules/meta/details.php:100
981
  msgid "Cost:"
982
  msgstr "Стойност:"
983
 
984
+ #: src/admin-views/events-meta-box.php:263
985
  msgid "Enter a 0 for %s that are free or leave blank to hide the field."
986
  msgstr "Въведете 0 за %s които са без входна такса или оставете празно, ако искате да скриете полето."
987
 
988
+ #: src/admin-views/new-organizer-meta-section.php:15
989
+ #: src/admin-views/organizer-meta-box.php:24
990
+ #: src/admin-views/venue-meta-box.php:25
991
  msgid "%s Name:"
992
  msgstr "%s Име:"
993
 
994
+ #: src/views/day/nav.php:16
995
  msgid "Day Navigation"
996
  msgstr "Навигация по ден"
997
 
998
+ #: src/admin-views/new-organizer-meta-section.php:21
999
+ #: src/admin-views/organizer-meta-box.php:31
1000
+ #: src/admin-views/tickets/attendees.php:54
1001
+ #: src/admin-views/venue-meta-box.php:112
1002
+ #: src/functions/advanced-functions/meta_registration.php:159
1003
+ #: src/functions/advanced-functions/meta_registration.php:238
1004
+ #: src/views/modules/meta/organizer.php:41 src/views/modules/meta/venue.php:40
 
1005
  msgid "Phone:"
1006
  msgstr "Телефон:"
1007
 
1008
+ #: src/views/day/single-event.php:66 src/views/list/single-event.php:70
1009
  msgid "Find out more"
1010
  msgstr "Виж повече"
1011
 
1012
+ #: src/admin-views/new-organizer-meta-section.php:27
1013
+ #: src/admin-views/organizer-meta-box.php:37
1014
+ #: src/admin-views/tickets/attendees.php:63
1015
+ #: src/admin-views/venue-meta-box.php:119
1016
+ #: src/functions/advanced-functions/meta_registration.php:96
1017
+ #: src/functions/advanced-functions/meta_registration.php:191
1018
+ #: src/functions/advanced-functions/meta_registration.php:270
1019
+ #: src/views/modules/meta/details.php:125
1020
+ #: src/views/modules/meta/organizer.php:63 src/views/modules/meta/venue.php:45
 
1021
  msgid "Website:"
1022
  msgstr "Уебсайт:"
1023
 
1024
+ #: src/views/list/nav.php:19
1025
  msgid "%s List Navigation"
1026
  msgstr "%s Навигация на списък"
1027
 
1028
+ #: src/admin-views/new-organizer-meta-section.php:35
1029
+ #: src/admin-views/organizer-meta-box.php:43
1030
+ #: src/functions/advanced-functions/meta_registration.php:254
1031
+ #: src/views/modules/meta/organizer.php:52
1032
  msgid "Email:"
1033
  msgstr "Email:"
1034
 
1035
+ #: src/views/list/nav.php:25
1036
  msgid "<span>&laquo;</span> Previous %s"
1037
  msgstr "<span>&laquo;</span> Назад %s"
1038
 
1039
+ #: src/admin-views/new-organizer-meta-section.php:39
1040
+ #: src/admin-views/organizer-meta-box.php:44
1041
  msgid "You may want to consider <a href=\"http://wordpress.org/plugins/tags/obfuscate\">obfuscating</a> any e-mail address published on your site to best avoid it getting harvested by spammers."
1042
  msgstr "Може би искате да обмислите да <a href=\"http://wordpress.org/plugins/tags/obfuscate\">прикриете</a> имейл адресите, публикувани на вашия сайт, с цел да избегнете атаки от спамъри."
1043
 
1044
+ #: src/views/list/nav.php:32
1045
  msgid "Next %s <span>&raquo;</span>"
1046
  msgstr "Напред %s <span>&raquo;</span>"
1047
 
1048
+ #: src/admin-views/new-organizer-meta-section.php:69
1049
+ #: src/admin-views/organizer-meta-box.php:75
1050
+ #: src/admin-views/venue-meta-box.php:193
1051
  msgid "%s Name Already Exists"
1052
  msgstr "%s Името вече съществува"
1053
 
1054
+ #: src/views/modules/bar.php:30 src/views/modules/bar.php:61
1055
  msgid "Find %s"
1056
  msgstr "Намери %s"
1057
 
1058
+ #: src/admin-views/tickets/attendees.php:17
1059
  msgid "Event Summary"
1060
  msgstr "Резюме на събитието:"
1061
 
1062
+ #: src/views/modules/bar.php:37
1063
  msgid "Event Views Navigation"
1064
  msgstr "Event Views Navigation"
1065
 
1066
+ #: src/admin-views/tickets/attendees.php:26
1067
  msgid "Event Details"
1068
  msgstr "Подробности за събитие"
1069
 
1070
+ #: src/views/modules/bar.php:38
1071
  msgid "View As"
1072
  msgstr "Изглед"
1073
 
1074
+ #: src/admin-views/tickets/attendees.php:28
1075
  msgid "Start Date / Time:"
1076
  msgstr "Начална дата / час:"
1077
 
1078
+ #: src/views/modules/meta/details.php:119
1079
  msgid "%s Tags:"
1080
  msgstr "%s Тагове:"
1081
 
1082
+ #: src/admin-views/tickets/attendees.php:32
1083
  msgid "End Date / Time:"
1084
  msgstr "Крайна дата / час:"
1085
 
1086
+ #: src/functions/template-tags/general.php:1312
1087
  msgid "%s for"
1088
  msgstr "%s за"
1089
 
1090
+ #: src/admin-views/tickets/attendees.php:82
1091
  msgid "Ticket Sales"
1092
  msgstr "Продажба на билети"
1093
 
1094
+ #: src/functions/template-tags/general.php:1311
1095
  msgid "Find out more »"
1096
  msgstr "Вижте повече..."
1097
 
1098
+ #: src/admin-views/tickets/attendees.php:99
1099
  msgid "(%d awaiting review)"
1100
  msgid_plural "(%d awaiting review)"
1101
  msgstr[0] "(%d очаква одобрение)"
1102
  msgstr[1] "(%d очакват одобрение)"
1103
 
1104
+ #: src/views/month/nav.php:18
1105
  msgid "Calendar Month Navigation"
1106
  msgstr "Навигация по календарен месец"
1107
 
1108
+ #: src/views/month/single-day.php:43
 
 
 
 
1109
  msgid "View 1 %1$s"
1110
  msgid_plural "View All %2$s %3$s"
1111
  msgstr[0] "Виж 1 %1$s"
1112
  msgstr[1] ""
1113
 
1114
+ #: src/views/single-event.php:27
 
 
 
 
1115
  msgid "&laquo; All %s"
1116
  msgstr "&laquo; Всички %s"
1117
 
1118
+ #: src/admin-views/tickets/attendees.php:127
1119
  msgid "Tickets sold:"
1120
  msgstr "Продадени билети:"
1121
 
1122
+ #: src/views/single-event.php:46 src/views/single-event.php:79
1123
  msgid "%s Navigation"
1124
  msgstr "%s Навигация"
1125
 
1126
+ #: src/admin-views/tickets/attendees.php:136
1127
  msgid "Finalized:"
1128
  msgstr "Завършено:"
1129
 
1130
+ #: src/views/tickets/attendees-email.php:24
1131
  msgid "Attendee List"
1132
  msgstr "Списък с участниците"
1133
 
1134
+ #: src/admin-views/tickets/attendees.php:139
1135
  msgid "Awaiting review:"
1136
  msgstr "Очаква одобрение:"
1137
 
1138
+ #: src/views/tickets/email.php:26
1139
  msgid "Your tickets"
1140
  msgstr "Вашите билети"
1141
 
1142
+ #: src/admin-views/tickets/attendees.php:148
1143
  msgid "Checked in:"
1144
  msgstr "Записани:"
1145
 
1146
+ #: src/views/tickets/email.php:309
1147
  msgid "Ticket Type"
1148
  msgstr "Тип на билета"
1149
 
1150
+ #: src/admin-views/tickets/attendees.php:170
1151
  msgid "Send the attendee list by email"
1152
  msgstr "Изпрати листа с присъстващите по имейл."
1153
 
1154
+ #: src/views/tickets/email.php:313
1155
  msgid "Purchaser"
1156
  msgstr "Купувач"
1157
 
1158
+ #: src/admin-views/tickets/attendees.php:174
1159
  msgid "Select a User:"
1160
  msgstr "Избор на потребител:"
1161
 
1162
+ #: src/views/widgets/list-widget.php:65
1163
  msgid "View All %s"
1164
  msgstr "Виж всички %s"
1165
 
1166
+ #: src/admin-views/tickets/attendees.php:179
1167
  msgid "Select..."
1168
  msgstr "Избор..."
1169
 
1170
+ #: src/views/widgets/list-widget.php:71
1171
  msgid "There are no upcoming %s at this time."
1172
  msgstr "Няма предстоящи %s за момента."
1173
 
1174
+ #: src/admin-views/tickets/attendees.php:184
1175
  msgid "or"
1176
  msgstr "или"
1177
 
1178
+ #: src/admin-views/tickets/attendees.php:186
1179
  msgid "Email Address:"
1180
  msgstr "Email адрес:"
1181
 
1182
+ #: src/admin-views/tickets/list.php:21
1183
  msgid "Edit"
1184
  msgstr "Редакция"
1185
 
1186
+ #: src/admin-views/tickets/list.php:24
1187
  msgid "Edit in %s"
1188
  msgstr "Редакция в %s"
1189
 
1190
+ #: src/admin-views/tickets/list.php:27
1191
  msgid "View"
1192
  msgstr "Преглед"
1193
 
1194
+ #: src/admin-views/tickets/list.php:67
1195
  msgid "Sold %d"
1196
  msgstr "Продадени %d"
1197
 
1198
+ #: src/admin-views/tickets/meta-box.php:23
 
 
 
 
1199
  msgid "This event was created using Community Events. Are you sure you want to sell tickets for it?"
1200
  msgstr "Това събитие е създадено с Community Events. Сигурни ли сте, че искате да продавате билети за него?"
1201
 
1202
+ #: src/admin-views/tickets/meta-box.php:34
1203
  msgid "Upload image for the ticket header"
1204
  msgstr "Качване на снимки за хедър-а на билета"
1205
 
1206
+ #: src/admin-views/tickets/meta-box.php:35
1207
  msgid "The maximum image size in the email will be 580px wide by any height, and then scaled for mobile. If you would like \"retina\" support use an image sized to 1160px wide."
1208
  msgstr "Максималният размер на изображението в email-а ще бъде 580px ширина и произволна височина и ще бъде скалирано за мобилни устройства. Ако желаете поддръжка на \"retina\" , използвайте изображение с ширина 1160px."
1209
 
1210
+ #: src/admin-views/tickets/meta-box.php:38
1211
  msgid "Select an Image"
1212
  msgstr "Избор на изображение"
1213
 
1214
+ #: src/admin-views/tickets/meta-box.php:46
1215
  msgid "Remove"
1216
  msgstr "Премахване"
1217
 
1218
+ #: src/admin-views/tickets/meta-box.php:64
1219
+ #: src/admin-views/tickets/meta-box.php:74
1220
  msgid "Add new ticket"
1221
  msgstr "Добавяне на нов билет"
1222
 
1223
+ #: src/admin-views/tickets/meta-box.php:75
1224
  msgid "Edit ticket"
1225
  msgstr "Редакция на билет"
1226
 
1227
+ #: src/admin-views/tickets/meta-box.php:80
1228
  msgid "Sell using:"
1229
  msgstr "Продажба посредством:"
1230
 
1231
+ #: src/admin-views/tickets/meta-box.php:97
1232
  msgid "Ticket Name:"
1233
  msgstr "Име на билета:"
1234
 
1235
+ #: src/admin-views/tickets/meta-box.php:104
1236
  msgid "Ticket Description:"
1237
  msgstr "Описание на билета:"
1238
 
1239
+ #: src/admin-views/tickets/meta-box.php:113
1240
  msgid "Price:"
1241
  msgstr "Цена:"
1242
 
1243
+ #: src/admin-views/tickets/meta-box.php:119
1244
  msgid "(0 or empty for free tickets)"
1245
  msgstr "(0 или празно за безплатни билети)"
1246
 
1247
+ #: src/admin-views/tickets/meta-box.php:125
1248
  msgid "Sale Price:"
1249
  msgstr "Продажна цена:"
1250
 
1251
+ #: src/admin-views/tickets/meta-box.php:131
1252
  msgid "(Current sale price - this can be managed via the product editor)"
1253
  msgstr "(Текуща продажна цена - това може да бъде управлявано чрез продуктов редактор)"
1254
 
1255
+ #: src/admin-views/tickets/meta-box.php:137
1256
  msgid "Start sale:"
1257
  msgstr "Начало на продажбата:"
1258
 
1259
+ #: src/admin-views/tickets/meta-box.php:161
1260
  msgid "End sale:"
1261
  msgstr "Край на продажбата:"
1262
 
1263
+ #: src/admin-views/tickets/meta-box.php:183
1264
  msgid "When will ticket sales occur? If you don't set a start/end date for sales, tickets will be available from now until the event ends."
1265
  msgstr "Кога да се продават билетите? Ако не отбележите начална/крайна дата, билетите ще се продават от момента на публикуване до края на събитието."
1266
 
1267
+ #: src/admin-views/tickets/meta-box.php:195
1268
  msgid "Save this ticket"
1269
  msgstr "Запазване на билета"
1270
 
1271
+ #: src/admin-views/tribe-options-display.php:4
1272
  msgid "Default Events Template"
1273
  msgstr "Стандартен шаблон за събития"
1274
 
1275
+ #: src/admin-views/tribe-options-display.php:5
1276
  msgid "Default Page Template"
1277
  msgstr "Стандартен шаблон за страници"
1278
 
1279
+ #: src/admin-views/tribe-options-display.php:51
1280
  msgid "Display Settings"
1281
  msgstr "Настройки на изгледа"
1282
 
1283
+ #: src/admin-views/tribe-options-display.php:56
1284
  msgid "The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme.</p><p>There are going to be situations where no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications."
1285
  msgstr "Настройките по-долу управляват начина на показване на вашия календар. Ако нещо не изглежда както трябва, опитайте да смените стила с една от другите две налични опции, или изберете шаблон за страница от вашата тема. </p><p>Възможно е да има ситуации, в които нито един от вградените шаблони не е напълно перфектен. Проверете нашето <a href=\"%s\">Ръководство за създатели на теми</a> за инструкции относно индивидуални напасвания."
1286
 
1287
+ #: src/admin-views/tribe-options-display.php:70
1288
  msgid "Basic Template Settings"
1289
  msgstr "Основни настройки на темплейта"
1290
 
1291
+ #: src/admin-views/tribe-options-display.php:74
1292
  msgid "Default stylesheet used for events templates"
1293
  msgstr "CSS за събития по подразбиране"
1294
 
1295
+ #: src/admin-views/tribe-options-display.php:77
1296
  msgid "Skeleton Styles"
1297
  msgstr "Базов CSS"
1298
 
1299
+ #: src/admin-views/tribe-options-display.php:79
1300
  msgid "Only includes enough css to achieve complex layouts like calendar and week view."
1301
  msgstr "Включва само основен CSS, за да могат да се визуализират по сложните оформления."
1302
 
1303
+ #: src/admin-views/tribe-options-display.php:81
1304
  msgid "Full Styles"
1305
  msgstr "Пълни стилове"
1306
 
1307
+ #: src/admin-views/tribe-options-display.php:83
1308
  msgid "More detailed styling, tries to grab styles from your theme."
1309
  msgstr "По-детайлен стил, опитва се да възпроизведе стиловете от темата."
1310
 
1311
+ #: src/admin-views/tribe-options-display.php:85
1312
  msgid "Tribe Events Styles"
1313
  msgstr "Tribe Events стилове"
1314
 
1315
+ #: src/admin-views/tribe-options-display.php:87
1316
  msgid "A fully designed and styled theme for your events pages."
1317
  msgstr "Напълно оформена и стилизирана тема за вашите страници със събития."
1318
 
1319
+ #: src/admin-views/tribe-options-display.php:94
1320
  msgid "Events template"
1321
  msgstr "Темплейти за събития"
1322
 
1323
+ #: src/admin-views/tribe-options-display.php:95
1324
  msgid "Choose a page template to control the appearance of your calendar and event content."
1325
  msgstr "Изберете шаблон за изгледа на вашия календар ."
1326
 
1327
+ #: src/admin-views/tribe-options-display.php:103
1328
  msgid "Enable event views"
1329
  msgstr "Включване на изглед Събития"
1330
 
1331
+ #: src/admin-views/tribe-options-display.php:104
1332
  msgid "You must select at least one view."
1333
  msgstr "Трябва да изберете поне един изглед."
1334
 
1335
+ #: src/admin-views/tribe-options-display.php:111
1336
  msgid "Default view"
1337
  msgstr "Изглед по подразбиране"
1338
 
1339
+ #: src/admin-views/tribe-options-display.php:119
1340
  msgid "Disable the Event Search Bar"
1341
  msgstr "Изключване на търсачката на събития"
1342
 
1343
+ #: src/admin-views/tribe-options-display.php:120
1344
  msgid "Check this to use the classic header."
1345
  msgstr "Отбележете, за да използвате класическия header."
1346
 
1347
+ #: src/admin-views/tribe-options-display.php:126
1348
  msgid "Month view events per day"
1349
  msgstr "Брой събития на ден, показващи се при месечен изглед"
1350
 
1351
+ #: src/admin-views/tribe-options-display.php:127
1352
  msgid "Change the default 3 events per day in month view. Please note there may be performance issues if you set this too high. <a href=\"%s\">Read more</a>."
1353
  msgstr "Промени трите събития по подразбиране в месечния изглед. Моля, имайте впредвид, че изгледа може да има проблеми, ако изберете твърде голяма стойност. <a href=\"%s\">Прочети повече</a>."
1354
 
1355
+ #: src/admin-views/tribe-options-display.php:134
1356
  msgid "Enable the Month View Cache"
1357
  msgstr "Активирай кеширане на месечния изглед"
1358
 
1359
+ #: src/admin-views/tribe-options-display.php:135
1360
  msgid "Check this to cache your month view HTML in transients, which can help improve calendar speed on sites with many events. <a href=\"%s\">Read more</a>."
1361
  msgstr "Проверете това, за да кеширате месечния HTML изглед, което може да подобри скоростта на зареждане на календара на сайтове с множество събития. <a href=\"%s\">Прочети повече</a>."
1362
 
1363
+ #: src/admin-views/tribe-options-display.php:141
1364
  msgid "Date Format Settings"
1365
  msgstr "Настройки за формат на датата"
1366
 
1367
+ #: src/admin-views/tribe-options-display.php:145
1368
  msgid "<p>The following three fields accept the date format options available to the php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Learn how to make your own date format here</a>.</p>"
1369
  msgstr "Следващите три полета приемат опции за формат на датата, които се поддържат от php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Научете как да създадете свой формат за датата</a>.</p>"
1370
 
1371
+ #: src/admin-views/tribe-options-display.php:149
1372
  msgid "Date with year"
1373
  msgstr "Дата с година"
1374
 
1375
+ #: src/admin-views/tribe-options-display.php:150
1376
  msgid "Enter the format to use for displaying dates with the year. Used when showing an event from a past or future year, also used for dates in view headers."
1377
  msgstr "Въведете формат на датата, който да се използва при показване на дати с година. Използва се за отминали или бъдещи събития, както и за дати в хедъри."
1378
 
1379
+ #: src/admin-views/tribe-options-display.php:157
1380
  msgid "Date without year"
1381
  msgstr "Дата без година"
1382
 
1383
+ #: src/admin-views/tribe-options-display.php:158
1384
  msgid "Enter the format to use for displaying dates without a year. Used when showing an event from the current year."
1385
  msgstr "Въведете формат на датата, който да се използва при показване на дати без година. Използва се за събития през текущата година."
1386
 
1387
+ #: src/admin-views/tribe-options-display.php:165
1388
  msgid "Month and year format"
1389
  msgstr "Формат на месеца и годината"
1390
 
1391
+ #: src/admin-views/tribe-options-display.php:166
1392
  msgid "Enter the format to use for dates that show a month and year only. Used on month view."
1393
  msgstr "Въведете формат на датата, който да се използва при показване на дати само с месец и година. Използва се при месечен изглед."
1394
 
1395
+ #: src/admin-views/tribe-options-display.php:173
1396
  msgid "Date time separator"
1397
  msgstr "Разделител за време, дата"
1398
 
1399
+ #: src/admin-views/tribe-options-display.php:174
1400
  msgid "Enter the separator that will be placed between the date and time, when both are shown."
1401
  msgstr "Въведете разделител, който да се показва между датата и часа, когато и двете са показани."
1402
 
1403
+ #: src/admin-views/tribe-options-display.php:181
1404
  msgid "Time range separator"
1405
  msgstr "Разделител за период от време"
1406
 
1407
+ #: src/admin-views/tribe-options-display.php:182
1408
  msgid "Enter the separator that will be used between the start and end time of an event."
1409
  msgstr "Въведете разделител, който да се показва между началния и крайния час на събитие."
1410
 
1411
+ #: src/admin-views/tribe-options-display.php:189
1412
  msgid "Datepicker Date Format"
1413
  msgstr "Формат на датата за Datepicker"
1414
 
1415
+ #: src/admin-views/tribe-options-display.php:190
1416
  msgid "Select the date format to use in datepickers"
1417
  msgstr "Формат на датата в прозореца за избор на дата"
1418
 
1419
+ #: src/admin-views/tribe-options-display.php:207
1420
  msgid "Advanced Template Settings"
1421
  msgstr "Разширени настройки на шаблоните"
1422
 
1423
+ #: src/admin-views/tribe-options-display.php:211
1424
  msgid "Add HTML before event content"
1425
  msgstr "Добавяне на HTML преди съдържанието на събитието"
1426
 
1427
+ #: src/admin-views/tribe-options-display.php:212
1428
  msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
1429
  msgstr "Ако сте запознати с HTML, можете да добавите код преди темплейта за събития. При някои теми това е необходимо, с цел да се улесни стилизирането или оформлението."
1430
 
1431
+ #: src/admin-views/tribe-options-display.php:217
1432
  msgid "Add HTML after event content"
1433
  msgstr "Вмъкване на HTML след описанието на събитието"
1434
 
1435
+ #: src/admin-views/tribe-options-display.php:218
1436
  msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
1437
  msgstr "Ако сте запознати с HTML, можете да добавите код след темплейта за събития. При някои теми това е необходимо, с цел да се улесни стилизирането или оформлението."
1438
 
1439
+ #: src/admin-views/tribe-options-general.php:12
1440
  msgid "Finding & extending your calendar."
1441
  msgstr "Намиране и разширяване на календара."
1442
 
1443
+ #: src/admin-views/tribe-options-general.php:17
1444
  msgid "Finding your calendar."
1445
  msgstr "Намиране на календара."
1446
 
1447
+ #: src/admin-views/tribe-options-general.php:22
1448
  msgid "Where's my calendar?"
1449
  msgstr "Къде е календарът ми?"
1450
 
1451
+ #: src/admin-views/tribe-options-general.php:22
1452
  msgid "Right here"
1453
  msgstr "Точно тук"
1454
 
1455
+ #: src/admin-views/tribe-options-general.php:26
1456
  msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
1457
  msgstr "Нуждаете се от допълнителна функционалност, като например повтарящи се събития, персонализирана metadata, продажба на билети и др.?"
1458
 
1459
+ #: src/admin-views/tribe-options-general.php:26
1460
  msgid "Check out the available add-ons"
1461
  msgstr "Разгледайте наличните add-on-и"
1462
 
1463
+ #: src/admin-views/tribe-options-general.php:31
1464
  msgid "We hope our plugin is helping you out."
1465
  msgstr "Надяваме се, че нашият плъгин ви е в помощ."
1466
 
1467
+ #: src/admin-views/tribe-options-general.php:35
1468
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
1469
  msgstr "Мислите ли си \"Уха, този plugin е невероятен! Трябва да благодаря на Modern Tribe за усърдната им работа.\"? Най-добрия начин да ни благодарите е да поставите малък текстов линк под календара, който води към страницата на проекта."
1470
 
1471
+ #: src/admin-views/tribe-options-general.php:35
1472
+ #: src/admin-views/tribe-options-general.php:40
1473
  msgid "See an example of the link"
1474
  msgstr "Преглед на примерен линк"
1475
 
1476
+ #: src/admin-views/tribe-options-general.php:40
1477
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project."
1478
  msgstr "Мислите ли си \"Уха, този plugin е невероятен! Трябва да благодаря на Modern Tribe за усърдната им работа.\"? Най-добрия начин да ни благодарите е да поставите малък текстов линк под календара, който води към страницата на проекта."
1479
 
1480
+ #: src/admin-views/tribe-options-general.php:45
1481
  msgid "Show The Events Calendar link"
1482
  msgstr "Показване на линка на Календара"
1483
 
1484
+ #: src/admin-views/tribe-options-general.php:59
1485
  msgid "General Settings"
1486
  msgstr "Общи настройки"
1487
 
1488
+ #: src/admin-views/tribe-options-general.php:63
1489
  msgid "Number of events to show per page"
1490
  msgstr "Брой събития, показващи се на страница"
1491
 
1492
+ #: src/admin-views/tribe-options-general.php:70
1493
  msgid "Use Javascript to control date filtering"
1494
  msgstr "Използвай Javascript за контрол на филтъра по дата"
1495
 
1496
+ #: src/admin-views/tribe-options-general.php:71
1497
  msgid "This option is disabled when \"Disable the Event Search Bar\" is checked on the Display settings tab."
1498
  msgstr "Тази опция е изключена, когато е сложена отметка на \"Изключване на Търсенето за събития\" в таб Настройки на екран."
1499
 
1500
+ #: src/admin-views/tribe-options-general.php:71
1501
  msgid "Enable live ajax for datepicker on front end (User submit not required)."
1502
  msgstr "Включване на live ajax за прозореца за избор на дата (Не изисква потвърждение от потребителя)."
1503
 
1504
+ #: src/admin-views/tribe-options-general.php:79
1505
  msgid "Show comments"
1506
  msgstr "Показване на коментарите"
1507
 
1508
+ #: src/admin-views/tribe-options-general.php:80
1509
  msgid "Enable comments on event pages."
1510
  msgstr "Включване на коментарите на страниците на събитията"
1511
 
1512
+ #: src/admin-views/tribe-options-general.php:86
1513
  msgid "Include events in main blog loop"
1514
  msgstr "Включване на събитията в главния loop на блога"
1515
 
1516
+ #: src/admin-views/tribe-options-general.php:87
1517
  msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
1518
  msgstr "Показване на събитията заедно с останалите публикации на сайта. Събитията ще продължат да се показват и в страницата с календара."
1519
 
1520
+ #: src/admin-views/tribe-options-general.php:93
1521
+ #: src/admin-views/tribe-options-general.php:99
1522
  msgid "Events URL slug"
1523
  msgstr "URL за събития"
1524
 
1525
+ #: src/admin-views/tribe-options-general.php:106
1526
+ #: src/functions/template-tags/options.php:20
 
 
 
 
1527
  msgid "The slug used for building the events URL."
1528
  msgstr "Префикс използван за сглобяване на URL на страниците от календара."
1529
 
1530
+ #: src/admin-views/tribe-options-general.php:106
1531
  msgid "Your current events URL is: %s"
1532
  msgstr "В момента URL на календара е: %s"
1533
 
1534
+ #: src/admin-views/tribe-options-general.php:111
1535
+ #: src/functions/template-tags/options.php:39
1536
  msgid "Here is the iCal feed URL for your events:"
1537
  msgstr "URL-а за iCal потока на събитията е:"
1538
 
1539
+ #: src/admin-views/tribe-options-general.php:116
1540
  msgid "Single event URL slug"
1541
  msgstr "URL адрес на събитие"
1542
 
1543
+ #: src/admin-views/tribe-options-general.php:123
1544
  msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
1545
  msgstr "Горното трябва да е в множествено число, а това в единично. <br />URL-ът за отделно събитие е:: %s"
1546
 
1547
+ #: src/admin-views/tribe-options-general.php:128
1548
  msgid "End of day cutoff"
1549
  msgstr "Денят свършва в"
1550
 
1551
+ #: src/admin-views/tribe-options-general.php:149
1552
  msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
1553
  msgstr "Имате събитие което свършва след полунощ? Изберете час след края на събитието, за да избегнете показването му в календара за следващия ден."
1554
 
1555
+ #: src/admin-views/tribe-options-general.php:154
1556
  msgid "Default currency symbol"
1557
  msgstr "Валута по подразбиране"
1558
 
1559
+ #: src/admin-views/tribe-options-general.php:155
1560
  msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
1561
  msgstr "Задава валутния символ/съкращение по подразбиране. Това ще се отрази само на събития, които вкарвате или обновявате след промяната, но не и на вече въведените."
1562
 
1563
+ #: src/admin-views/tribe-options-general.php:162
1564
  msgid "Currency symbol follows value"
1565
  msgstr "Знака за валутата да е след стойността"
1566
 
1567
+ #: src/admin-views/tribe-options-general.php:163
1568
  msgid "The currency symbol normally precedes the value. Enabling this option positions the symbol after the value."
1569
  msgstr "Обикновено знака за валутата е преди стойността. Включването на тази опция го премества след стойността."
1570
 
1571
+ #: src/admin-views/tribe-options-general.php:169
1572
  msgid "Map Settings"
1573
  msgstr "Настройки на карта"
1574
 
1575
+ #: src/admin-views/tribe-options-general.php:173
1576
  msgid "Enable Google Maps"
1577
  msgstr "Включи Google Карти"
1578
 
1579
+ #: src/admin-views/tribe-options-general.php:174
1580
  msgid "Check to enable maps for events and venues."
1581
  msgstr "Отбележете, за да включите картите за събития и места."
1582
 
1583
+ #: src/admin-views/tribe-options-general.php:181
1584
  msgid "Google Maps default zoom level"
1585
  msgstr "Степен на приближение в Google Карти по подразбиране"
1586
 
1587
+ #: src/admin-views/tribe-options-general.php:182
1588
  msgid "0 = zoomed out; 21 = zoomed in."
1589
  msgstr "0 = максимално отдалечено; 21 = максимално приближено."
1590
 
1591
+ #: src/admin-views/tribe-options-general.php:190
1592
  msgid "Miscellaneous Settings"
1593
  msgstr "Други настройки"
1594
 
1595
+ #: src/admin-views/tribe-options-general.php:194
1596
  msgid "Duplicate Venues &amp; Organizers"
1597
  msgstr "Дублиращи се Места и Организатори"
1598
 
1599
+ #: src/admin-views/tribe-options-general.php:194
1600
  msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
1601
  msgstr "Може да бъдат открити дублиращи се места и организатори след обновяване на The Events Calendar от версия, по-стара от 3.0. Кликнете този бутон, за да активирате автоматично сливане на идентичните места и събития."
1602
 
1603
+ #: src/admin-views/tribe-options-general.php:211
1604
  msgid "Debug mode"
1605
  msgstr "Debug mode"
1606
 
1607
+ #: src/admin-views/tribe-options-general.php:217
1608
  msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
1609
  msgstr "Включете тази опция, за да записвате log с информация за възникналите грешки. По подразбиране, лога ще се записва в PHP error log-а на сървъра ви. Ако желаете да виждате съобщенията за грешки в браузър-а си, тогава ви препоръчваме да инсталирате %s и да потърсите таб \"Tribe\" в debug output."
1610
 
1611
+ #: src/admin-views/tribe-options-general.php:217
1612
  msgid "Debug Bar Plugin"
1613
  msgstr "Debug Bar Plugin"
1614
 
1615
+ #: src/admin-views/tribe-options-general.php:199
1616
  msgid "View Welcome Page"
1617
  msgstr "Преглед на началната страница след инсталация"
1618
 
1619
+ #: src/admin-views/tribe-options-general.php:199
1620
  msgid "View the page that displayed when you initially installed the plugin."
1621
  msgstr "Страницата се показва, след първоначалната инсталация на разширението."
1622
 
1623
+ #: src/admin-views/tribe-options-general.php:204
1624
  msgid "View Update Page"
1625
  msgstr "Преглед на страницата с потвърждение за актуализации"
1626
 
1627
+ #: src/admin-views/tribe-options-general.php:204
1628
  msgid "View the page that displayed when you updated the plugin."
1629
  msgstr "Страницата се показва, след актуализация на разширението."
1630
 
1631
+ #: src/admin-views/tribe-options-help.php:33
1632
  msgctxt "not available"
1633
  msgid "n/a"
1634
  msgstr "n/a"
1635
 
1636
+ #: src/admin-views/tribe-options-help.php:34
1637
  msgid "You need to upgrade!"
1638
  msgstr "Имате нужда от ъпгрейд !"
1639
 
1640
+ #: src/admin-views/tribe-options-help.php:34
1641
  msgid "You are up to date!"
1642
  msgstr "Разполагате с най-новата версия!"
1643
 
1644
+ #: src/admin-views/tribe-options-help.php:63
1645
  msgid "The Events Calendar PRO"
1646
  msgstr "The Events Calendar PRO"
1647
 
1648
+ #: src/admin-views/tribe-options-help.php:72
1649
  msgid "The Events Calendar: Eventbrite Tickets"
1650
  msgstr "The Events Calendar: Eventbrite билети"
1651
 
1652
+ #: src/admin-views/tribe-options-help.php:81
1653
  msgid "The Events Calendar: Community Events"
1654
  msgstr "The Events Calendar: Събития на общността"
1655
 
1656
+ #: src/Tribe/View_Helpers.php:281
1657
  msgid "Wallis And Futuna Islands"
1658
  msgstr "Уолис и Футуна"
1659
 
1660
+ #: src/admin-views/tribe-options-help.php:90
1661
  msgid "The Events Calendar: Facebook Events"
1662
  msgstr "The Events Calendar: Facebook събития"
1663
 
1664
+ #: src/Tribe/View_Helpers.php:282
1665
  msgid "Western Sahara"
1666
  msgstr "Западна Сахара"
1667
 
1668
+ #: src/admin-views/tribe-options-help.php:99
1669
  msgid "The Events Calendar: WooCommerce Tickets"
1670
  msgstr "The Events Calendar: WooCommerce събития"
1671
 
1672
+ #: src/Tribe/View_Helpers.php:283
1673
  msgid "Yemen"
1674
  msgstr "Йемен"
1675
 
1676
+ #: src/admin-views/tribe-options-help.php:109
1677
  msgid "The Events Calendar: EDD Tickets"
1678
  msgstr "The Events Calendar: EDD билети"
1679
 
1680
+ #: src/Tribe/View_Helpers.php:284
1681
  msgid "Zambia"
1682
  msgstr "Замбия"
1683
 
1684
+ #: src/admin-views/tribe-options-help.php:119
1685
  msgid "The Events Calendar: WPEC Tickets"
1686
  msgstr "The Events Calendar: WPEC билети"
1687
 
1688
+ #: src/Tribe/View_Helpers.php:285
1689
  msgid "Zimbabwe"
1690
  msgstr "Зимбабве"
1691
 
1692
+ #: src/admin-views/tribe-options-help.php:129
1693
  msgid "The Events Calendar: Shopp Tickets"
1694
  msgstr "The Events Calendar: Купуване на билети"
1695
 
1696
+ #: src/Tribe/View_Helpers.php:316
1697
  msgid "Alabama"
1698
  msgstr "Алабама"
1699
 
1700
+ #: src/admin-views/tribe-options-help.php:139
1701
  msgid "The Events Calendar: Filter Bar"
1702
  msgstr "The Events Calendar: Лента за филтриране"
1703
 
1704
+ #: src/Tribe/View_Helpers.php:317
1705
  msgid "Alaska"
1706
  msgstr "Аляска"
1707
 
1708
+ #: src/Tribe/View_Helpers.php:318
1709
  msgid "Arizona"
1710
  msgstr "Аризона"
1711
 
1712
+ #: src/admin-views/tribe-options-help.php:164
1713
  msgid "If this is your first time using The Events Calendar, you're in for a treat and are already well on your way to creating a first event. Here are some basics we've found helpful for users jumping into it for the first time:"
1714
  msgstr "Ако за първи път използвате The Events Calendar и сте готови да създадете първото си събитие, тук ще откриете някои съвети, полезни за нови потребители:"
1715
 
1716
+ #: src/Tribe/View_Helpers.php:319
1717
  msgid "Arkansas"
1718
  msgstr "Арканзас"
1719
 
1720
+ #: src/admin-views/tribe-options-help.php:167
1721
  msgid "%sOur New User Primer%s was designed for folks in your exact position. Featuring both step-by-step videos and written walkthroughs that feature accompanying screenshots, the primer aims to take you from zero to hero in no time."
1722
  msgstr "%sНовият ни съветник Първи стъпки%s е създаден за хора във вашето положение. Той включва видеа и обяснения тип Стъпка по Стъпка илюстрирани със съответните screenshot-и, което ще ви превърне в специалист за нула време."
1723
 
1724
+ #: src/Tribe/View_Helpers.php:320
1725
  msgid "California"
1726
  msgstr "Калифорния"
1727
 
1728
+ #: src/admin-views/tribe-options-help.php:169
1729
  msgid "%sInstallation/Setup FAQs%s from our support page can help give an overview of what the plugin can and cannot do. This section of the FAQs may be helpful as it aims to address any basic install questions not addressed by the new user primer."
1730
  msgstr "%sУпътвания за инсталация/настройки%s от нашата страница за поддръжка могат да ви помогнат да разберете какво може и какво не може нашето разширение. Тази секция от често задавани въпроси може да ви е от полза при правене на базови настройки, които не са включени в съветника \"Първи стъпки\"."
1731
 
1732
+ #: src/Tribe/View_Helpers.php:321
1733
  msgid "Colorado"
1734
  msgstr "Колорадо"
1735
 
1736
+ #: src/admin-views/tribe-options-help.php:171
1737
  msgid "Otherwise, if you're feeling adventurous, you can get started by heading to the Events menu and adding your first event."
1738
  msgstr "В случай, че се чувствате готови, можете да преминете към меню Събития, за да добавите първото си събитие."
1739
 
1740
+ #: src/Tribe/View_Helpers.php:322
1741
  msgid "Connecticut"
1742
  msgstr "Кънектикът"
1743
 
1744
+ #: src/admin-views/tribe-options-help.php:175
1745
  msgid "We've redone our support page from the ground up in an effort to better help our users. Head over to our %sSupport Page%s and you'll find lots of great resources, including:"
1746
  msgstr "С цел да оказваме по-добра помощ на потребителите, създадохме чисто нова страница за поддръжка. Отидете на %sСтраницата за поддръжка%s, където ще намерите много помощни материали:"
1747
 
1748
+ #: src/Tribe/View_Helpers.php:323
1749
  msgid "Delaware"
1750
  msgstr "Делауеър"
1751
 
1752
+ #: src/admin-views/tribe-options-help.php:177
1753
  msgid "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar &amp; Events Calendar PRO"
1754
  msgstr "%sШаблони, функции и филтри%s за The Events Calendar &amp; Events Calendar PRO"
1755
 
1756
+ #: src/Tribe/View_Helpers.php:324
1757
  msgid "District of Columbia"
1758
  msgstr "Вашингтон, О.К."
1759
 
1760
+ #: src/admin-views/tribe-options-help.php:179
1761
  msgid "%sFrequently Asked Questions%s ranging from the most basic setup questions to advanced themer tweaks"
1762
  msgstr "%sЧесто задавани въпроси%s вариращи от въпроси за основни настройки до настройки за напреднали"
1763
 
1764
+ #: src/Tribe/View_Helpers.php:325
1765
  msgid "Florida"
1766
  msgstr "Флорида"
1767
 
1768
+ #: src/admin-views/tribe-options-help.php:182
1769
  msgid "%sTutorials%s written by both members of our team and users from the community, covering custom queries, integration with third-party themes and plugins, etc."
1770
  msgstr "%sУроци%s написани от членове на екипа ни или от наши потребители относно персонални желания, интеграция, теми и разширения на трети страни и др."
1771
 
1772
+ #: src/Tribe/View_Helpers.php:327
1773
  msgid "Hawaii"
1774
  msgstr "Хаваи"
1775
 
1776
+ #: src/admin-views/tribe-options-help.php:184
1777
  msgid "Release notes for painting an overall picture of the plugin's lifecycle and when features/bug fixes were introduced."
1778
  msgstr "Представена е информация за актуализации, която да очертае времевата рамка на бъдещите актуализации и жизнения цикъл на притурката."
1779
 
1780
+ #: src/Tribe/View_Helpers.php:328
1781
  msgid "Idaho"
1782
  msgstr "Айдахо"
1783
 
1784
+ #: src/admin-views/tribe-options-help.php:186
1785
  msgid "%sAdd-on documentation%s for all of Modern Tribe's official extensions for The Events Calendar (including WooTickets, Community Events, Eventbrite Tickets, Facebook Events, etc)"
1786
  msgstr "%sДокументация%s за всички официални разширения за продуктите на Modern Tribe (вкл. WooTickets, Community Events, Eventbrite Tickets, Facebook Events и др.)"
1787
 
1788
+ #: src/Tribe/View_Helpers.php:329
1789
  msgid "Illinois"
1790
  msgstr "Илинойс"
1791
 
1792
+ #: src/admin-views/tribe-options-help.php:188
1793
  msgid "We've also got a %sModern Tribe UserVoice%s page where we're actively watching for feature ideas from the community. If after playing with the plugin and reviewing the resources above, you're finding a feature isn't present that should be, let us know. Vote up existing feature requests or add your own, and help us shape the future of the products business in a way that best meets the community's needs."
1794
  msgstr "Ние имаме и %sModern Tribe UserVoice%s страница, където редовно следим за нови идеи от потребителското общество. Ако след употребата на разширението сте се сетили за функионалност, която не е налична в момента, молим да ни уведомите. Гласувайте за вече публикуваните идеи или добавете собствена, за да ни помогнете да отговорим по-добре на нуждите на потребителите си за в бъдеще."
1795
 
1796
+ #: src/Tribe/View_Helpers.php:330
1797
  msgid "Indiana"
1798
  msgstr "Индиана"
1799
 
1800
+ #: src/admin-views/tribe-options-help.php:192
1801
  msgid "Written documentation can only take things so far...sometimes, you need help from a real person. This is where our %ssupport forums%s come into play."
1802
  msgstr "Писмената документация стига до тук... понякога е необходима човешка помощ. Така на помощ идват нашите %sфоруми за поддръжка%s."
1803
 
1804
+ #: src/Tribe/View_Helpers.php:331
1805
  msgid "Iowa"
1806
  msgstr "Индиана"
1807
 
1808
+ #: src/admin-views/tribe-options-help.php:193
1809
  msgid "Users of the free The Events Calendar should post their support concerns to the plugin's %sWordPress.org support forum%s. While we are happy to help identify and fix bugs that are reported at WordPress.org, please make sure to read our %ssupport expectations sticky thread%s before posting so you understand our limitations."
1810
  msgstr "Потребителите на безплатната версия на The Events Calendar могат да споделят проблема си във %sфорума на разширението на WordPress.org%s. С удоволствие ще ви съдействаме за откриването и отстраняването на проблема, който сте докладвали на WordPress.org, но имайте в предвид, че безплатната поддръжка е ограничена. Повече за това можете да %sпрочетете тук%s."
1811
 
1812
+ #: src/Tribe/View_Helpers.php:332
1813
  msgid "Kansas"
1814
  msgstr "Канзас"
1815
 
1816
+ #: src/admin-views/tribe-options-help.php:194
1817
  msgid "We hit the WordPress.org forum throughout the week, watching for bugs. If you report a legitimate bug that we're able to reproduce, we will log it and patch for an upcoming release. However we are unfortunately unable to provide customization tips or assist in integrating with 3rd party plugins or themes."
1818
  msgstr "Проверяваме форума на WordPress.org за открити бъгове всяка седмица. Ако сте докладвали реален бъг, който успеем да възпроизведем, ще го отстраним с една от следващите актуализации. За съжаление не сме в състояние да предложим помощ за персонализиране, съвместимост или интегриране на разширението в теми и разширения на трети страни."
1819
 
1820
+ #: src/Tribe/View_Helpers.php:333
1821
  msgid "Kentucky"
1822
  msgstr "Кентъки"
1823
 
1824
+ #: src/admin-views/tribe-options-help.php:195
1825
  msgid "If you're a user of The Events Calendar and would like more support, please %spurchase a PRO license%s. We hit the PRO forums daily, and can provide a deeper level of customization/integration support for paying users than we can on WordPress.org."
1826
  msgstr "Ако сте потребител на The Events Calendar и имате нужда от допълнителна поддръжка, %sпоръчайте PRO лиценз%s. PRO форумите за поддръжка се преглеждат всеки ден. "
1827
 
1828
+ #: src/Tribe/View_Helpers.php:47
1829
  msgid "Afghanistan"
1830
  msgstr "Афганистан"
1831
 
1832
+ #: src/Tribe/View_Helpers.php:48
1833
  msgid "Albania"
1834
  msgstr "Албания"
1835
 
1836
+ #: src/Tribe/View_Helpers.php:49
1837
  msgid "Algeria"
1838
  msgstr "Алжир"
1839
 
1840
+ #: src/Tribe/API.php:437
1841
  msgid "Unnamed Venue"
1842
  msgstr "Място без име"
1843
 
1844
+ #: src/Tribe/View_Helpers.php:50
1845
  msgid "American Samoa"
1846
  msgstr "Американска Самоа"
1847
 
1848
+ #: src/Tribe/API.php:517 src/Tribe/View_Helpers.php:46
1849
+ #: src/functions/template-tags/venue.php:272
1850
  msgid "United States"
1851
  msgstr "САЩ"
1852
 
1853
+ #: src/Tribe/View_Helpers.php:51
1854
  msgid "Andorra"
1855
  msgstr "Андора"
1856
 
1857
+ #: src/Tribe/Activation_Page.php:196
1858
  msgid "Welcome to The Events Calendar"
1859
  msgstr "Добре дошли в The Events Calendar"
1860
 
1861
+ #: src/Tribe/View_Helpers.php:52
1862
  msgid "Angola"
1863
  msgstr "Ангола"
1864
 
1865
+ #: src/Tribe/Activation_Page.php:216
1866
  msgid "Thanks for Updating The Events Calendar"
1867
  msgstr "Благодарим, че актуализирахте The Events Calendar"
1868
 
1869
+ #: src/Tribe/View_Helpers.php:53
1870
  msgid "Anguilla"
1871
  msgstr "Ангуила"
1872
 
1873
+ #: src/Tribe/Admin_List.php:219 src/Tribe/Main.php:1295
1874
  msgid "%s Categories"
1875
  msgstr "%s Категории"
1876
 
1877
+ #: src/Tribe/View_Helpers.php:54
1878
  msgid "Antarctica"
1879
  msgstr "Антарктида"
1880
 
1881
+ #: src/Tribe/Admin_List.php:225
1882
  msgid "Start Date"
1883
  msgstr "Начална дата"
1884
 
1885
+ #: src/Tribe/View_Helpers.php:55
1886
  msgid "Antigua And Barbuda"
1887
  msgstr "Антигуа и Барбуда"
1888
 
1889
+ #: src/Tribe/Admin_List.php:226
1890
  msgid "End Date"
1891
  msgstr "Крайна дата"
1892
 
1893
+ #: src/Tribe/View_Helpers.php:56
1894
  msgid "Argentina"
1895
  msgstr "Аржентина"
1896
 
1897
+ #: src/Tribe/Admin_List.php:304
1898
  msgid "All %s"
1899
  msgstr "Всички %s"
1900
 
1901
+ #: src/Tribe/View_Helpers.php:57
1902
  msgid "Armenia"
1903
  msgstr "Армения"
1904
 
1905
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:37
1906
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:69
1907
+ #: src/views/modules/meta/details.php:40 src/views/modules/meta/details.php:65
 
1908
  msgid "Start:"
1909
  msgstr "Начало:"
1910
 
1911
+ #: src/Tribe/View_Helpers.php:58
1912
  msgid "Aruba"
1913
  msgstr "Аруба"
1914
 
1915
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:46
1916
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:78
1917
+ #: src/views/modules/meta/details.php:45 src/views/modules/meta/details.php:70
 
1918
  msgid "End:"
1919
  msgstr "Край:"
1920
 
1921
+ #: src/Tribe/View_Helpers.php:59
1922
  msgid "Australia"
1923
  msgstr "Австралия"
1924
 
1925
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:57
1926
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:89
1927
+ #: src/views/modules/meta/details.php:55 src/views/modules/meta/details.php:80
 
1928
  msgid "Date:"
1929
  msgstr "Дата:"
1930
 
1931
+ #: src/Tribe/View_Helpers.php:60
1932
  msgid "Austria"
1933
  msgstr "Австрия"
1934
 
1935
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:100
1936
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:111
1937
+ #: src/views/modules/meta/details.php:85
1938
  msgid "Time:"
1939
  msgstr "Час:"
1940
 
1941
+ #: src/Tribe/View_Helpers.php:61
1942
  msgid "Azerbaijan"
1943
  msgstr "Азербейджан"
1944
 
1945
+ #: src/functions/template-tags/google-map.php:46
 
1946
  msgid "Click to view a Google Map"
1947
  msgstr "Вижте местоположението в Google Карти"
1948
 
1949
+ #: src/Tribe/View_Helpers.php:62
1950
  msgid "Bahamas"
1951
  msgstr "Бахамски острови"
1952
 
1953
+ #: src/functions/template-tags/google-map.php:47
 
1954
  msgid "+ Google Map"
1955
  msgstr "+ Google Map"
1956
 
1957
+ #: src/Tribe/View_Helpers.php:63
1958
  msgid "Bahrain"
1959
  msgstr "Бахрейн"
1960
 
1961
+ #: src/Tribe/Amalgamator.php:260 src/admin-views/tribe-options-general.php:194
 
1962
  msgid "Merge Duplicates"
1963
  msgstr "Обединяване на повторенията"
1964
 
1965
+ #: src/Tribe/View_Helpers.php:64
1966
  msgid "Bangladesh"
1967
  msgstr "Бангладеш"
1968
 
1969
+ #: src/Tribe/App_Shop.php:63 src/Tribe/App_Shop.php:64
1970
+ #: src/Tribe/App_Shop.php:94
1971
  msgid "Event Add-Ons"
1972
  msgstr "Приставки за събития"
1973
 
1974
+ #: src/Tribe/View_Helpers.php:65
1975
  msgid "Barbados"
1976
  msgstr "Барбадос"
1977
 
1978
+ #: src/Tribe/Credits.php:31
1979
  msgid "This calendar is powered by The Events Calendar."
1980
  msgstr "Този календар е задвижван от The Events Calendar."
1981
 
1982
+ #: src/Tribe/View_Helpers.php:66
1983
  msgid "Belarus"
1984
  msgstr "Беларус"
1985
 
1986
+ #: src/Tribe/Credits.php:48
1987
  msgid "Rate <strong>The Events Calendar</strong> <a href=\"%1$s\" target=\"_blank\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href=\"%1$s\" target=\"_blank\">WordPress.org</a> to keep this plugin free. Thanks from the friendly folks at Modern Tribe."
1988
  msgstr "Оценете <strong>The Events Calendar</strong> <a href=\"%1$s\" target=\"_blank\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> на <a href=\"%1$s\" target=\"_blank\">WordPress.org</a>, за да запазите разширението безплатно. Благодарности от вашите приятели - Modern Tribe."
1989
 
1990
+ #: src/Tribe/View_Helpers.php:67
1991
  msgid "Belgium"
1992
  msgstr "Белгия"
1993
 
1994
+ #: src/Tribe/Credits.php:48
1995
  msgid "http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5"
1996
  msgstr "http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5"
1997
 
1998
+ #: src/Tribe/View_Helpers.php:68
1999
  msgid "Belize"
2000
  msgstr "Белиз"
2001
 
2002
+ #: src/Tribe/Field.php:209
2003
  msgid "Invalid field type specified"
2004
  msgstr "Посочен е невалиден тип на полето"
2005
 
2006
+ #: src/Tribe/View_Helpers.php:69
2007
  msgid "Benin"
2008
  msgstr "Бенин"
2009
 
2010
+ #: src/Tribe/Field.php:466
2011
  msgid "No radio options specified"
2012
  msgstr "Не е избран радио бутон"
2013
 
2014
+ #: src/Tribe/View_Helpers.php:70
2015
  msgid "Bermuda"
2016
  msgstr "Бермудски острови"
2017
 
2018
+ #: src/Tribe/Field.php:502
2019
  msgid "No checkbox options specified"
2020
  msgstr "Не е избрана отметка"
2021
 
2022
+ #: src/Tribe/View_Helpers.php:71
2023
  msgid "Bhutan"
2024
  msgstr "Бутан"
2025
 
2026
+ #: src/Tribe/Field.php:558
2027
  msgid "No select options specified"
2028
  msgstr "Не е избрана опция от падащия списък"
2029
 
2030
+ #: src/Tribe/View_Helpers.php:72
2031
  msgid "Bolivia"
2032
  msgstr "Боливия"
2033
 
2034
+ #: src/Tribe/Importer/Admin_Page.php:15 src/Tribe/Importer/Admin_Page.php:16
2035
+ #: src/Tribe/Main.php:4011
2036
  msgid "Import"
2037
  msgstr "Импортиране"
2038
 
2039
+ #: src/Tribe/View_Helpers.php:73
2040
  msgid "Bosnia And Herzegowina"
2041
  msgstr "Босна и Херцеговина"
2042
 
2043
+ #: src/Tribe/Importer/Admin_Page.php:54 src/Tribe/Importer/Admin_Page.php:187
 
2044
  msgid "The file went away. Please try again."
2045
  msgstr "Файлът не е достъпен. Моля, опитайте отново."
2046
 
2047
+ #: src/Tribe/View_Helpers.php:74
2048
  msgid "Botswana"
2049
  msgstr "Ботсвана"
2050
 
2051
+ #: src/Tribe/Importer/Admin_Page.php:95 src/Tribe/Main.php:777
2052
  msgid "General"
2053
  msgstr "Общи"
2054
 
2055
+ #: src/Tribe/View_Helpers.php:75
2056
  msgid "Bouvet Island"
2057
  msgstr "Буве"
2058
 
2059
+ #: src/Tribe/Importer/Admin_Page.php:96
2060
  msgid "Import: CSV"
2061
  msgstr "Импортиране: CSV"
2062
 
2063
+ #: src/Tribe/View_Helpers.php:76
2064
  msgid "Brazil"
2065
  msgstr "Бразилия"
2066
 
2067
+ #: src/Tribe/Importer/Admin_Page.php:153
2068
  msgid "We were unable to process your request. Please try again."
2069
  msgstr "Операцията НЕ бе успешна. Моля, опитайте отново."
2070
 
2071
+ #: src/Tribe/View_Helpers.php:77
2072
  msgid "British Indian Ocean Territory"
2073
  msgstr "Британска индоокеанска територия"
2074
 
2075
+ #: src/Tribe/Importer/Admin_Page.php:194
2076
  msgid "<p>The following fields are required for a successful import:</p>"
2077
  msgstr "<p>Следните полета са задължителни за успешен импорт:</p>"
2078
 
2079
+ #: src/Tribe/View_Helpers.php:78
2080
  msgid "Brunei Darussalam"
2081
  msgstr "Бруней"
2082
 
2083
+ #: src/Tribe/Importer/Column_Mapper.php:33
2084
  msgid "Do Not Import"
2085
  msgstr "Да не се импортира"
2086
 
2087
+ #: src/Tribe/View_Helpers.php:79
2088
  msgid "Bulgaria"
2089
  msgstr "България"
2090
 
2091
+ #: src/Tribe/Importer/Column_Mapper.php:52
2092
  msgid "Event Name"
2093
  msgstr "Име на събитие"
2094
 
2095
+ #: src/Tribe/View_Helpers.php:80
2096
  msgid "Burkina Faso"
2097
  msgstr "Буркина Фасо"
2098
 
2099
+ #: src/Tribe/Importer/Column_Mapper.php:53
2100
  msgid "Event Description"
2101
  msgstr "Описание на събитие"
2102
 
2103
+ #: src/Tribe/View_Helpers.php:81
2104
  msgid "Burundi"
2105
  msgstr "Бурунди"
2106
 
2107
+ #: src/Tribe/Importer/Column_Mapper.php:54
2108
  msgid "Event Start Date"
2109
  msgstr "Начална дата на събитието"
2110
 
2111
+ #: src/Tribe/View_Helpers.php:82
2112
  msgid "Cambodia"
2113
  msgstr "Камбоджа"
2114
 
2115
+ #: src/Tribe/Importer/Column_Mapper.php:55
2116
  msgid "Event Start Time"
2117
  msgstr "Начален час на събитието"
2118
 
2119
+ #: src/Tribe/View_Helpers.php:83
2120
  msgid "Cameroon"
2121
  msgstr "Камерун"
2122
 
2123
+ #: src/Tribe/Importer/Column_Mapper.php:56
2124
  msgid "Event End Date"
2125
  msgstr "Крайна дата на събитието"
2126
 
2127
+ #: src/Tribe/View_Helpers.php:84
2128
  msgid "Canada"
2129
  msgstr "Канада"
2130
 
2131
+ #: src/Tribe/Importer/Column_Mapper.php:57
2132
  msgid "Event End Time"
2133
  msgstr "Краен час на събитието"
2134
 
2135
+ #: src/Tribe/View_Helpers.php:85
2136
  msgid "Cape Verde"
2137
  msgstr "Кабо Верде"
2138
 
2139
+ #: src/Tribe/Importer/Column_Mapper.php:58
2140
  msgid "All Day Event"
2141
  msgstr "Целодневно събитие"
2142
 
2143
+ #: src/Tribe/View_Helpers.php:86
2144
  msgid "Cayman Islands"
2145
  msgstr "Кайманови острови"
2146
 
2147
+ #: src/Tribe/Importer/Column_Mapper.php:59
2148
  msgid "Event Venue Name"
2149
  msgstr "Име на мястото на събитието"
2150
 
2151
+ #: src/Tribe/View_Helpers.php:87
2152
  msgid "Central African Republic"
2153
  msgstr "Централноафриканска република"
2154
 
2155
+ #: src/Tribe/Importer/Column_Mapper.php:60
2156
  msgid "Event Organizer Name"
2157
  msgstr "Име на организатора на събитието"
2158
 
2159
+ #: src/Tribe/View_Helpers.php:88
2160
  msgid "Chad"
2161
  msgstr "Чад"
2162
 
2163
+ #: src/Tribe/Importer/Column_Mapper.php:61
2164
  msgid "Event Show Map Link"
2165
  msgstr "Линк \"Покажи събитието на картата\""
2166
 
2167
+ #: src/Tribe/View_Helpers.php:89
2168
  msgid "Chile"
2169
  msgstr "Чили"
2170
 
2171
+ #: src/Tribe/Importer/Column_Mapper.php:62
2172
  msgid "Event Show Map"
2173
  msgstr "Покажи събитието на картата"
2174
 
2175
+ #: src/Tribe/View_Helpers.php:90
2176
  msgid "China"
2177
  msgstr "Китай"
2178
 
2179
+ #: src/Tribe/Importer/Column_Mapper.php:63
2180
  msgid "Event Cost"
2181
  msgstr "Стойност на събитието"
2182
 
2183
+ #: src/Tribe/View_Helpers.php:91
2184
  msgid "Christmas Island"
2185
  msgstr "Коледен остров"
2186
 
2187
+ #: src/Tribe/View_Helpers.php:92
2188
  msgid "Cocos (Keeling) Islands"
2189
  msgstr "Кокосови острови"
2190
 
2191
+ #: src/Tribe/Importer/Column_Mapper.php:66
2192
  msgid "Event Category"
2193
  msgstr "Категория на събитието"
2194
 
2195
+ #: src/Tribe/View_Helpers.php:93
2196
  msgid "Colombia"
2197
  msgstr "Колумбия"
2198
 
2199
+ #: src/Tribe/Importer/Column_Mapper.php:68
2200
  msgid "Event Website"
2201
  msgstr "Страница на събитието"
2202
 
2203
+ #: src/Tribe/View_Helpers.php:94
2204
  msgid "Comoros"
2205
  msgstr "Коморски острови"
2206
 
2207
+ #: src/Tribe/Importer/Column_Mapper.php:74
2208
  msgid "Venue Name"
2209
  msgstr "Име на мястото"
2210
 
2211
+ #: src/Tribe/View_Helpers.php:95
2212
  msgid "Congo"
2213
  msgstr "Конго"
2214
 
2215
+ #: src/Tribe/Importer/Column_Mapper.php:75
2216
  msgid "Venue Country"
2217
  msgstr "Държава"
2218
 
2219
+ #: src/Tribe/View_Helpers.php:96
2220
  msgid "Congo, The Democratic Republic Of The"
2221
  msgstr "Конго, Демократична република"
2222
 
2223
+ #: src/Tribe/Importer/Column_Mapper.php:76
2224
  msgid "Venue Address"
2225
  msgstr "Адрес на мястото"
2226
 
2227
+ #: src/Tribe/View_Helpers.php:97
2228
  msgid "Cook Islands"
2229
  msgstr "Кук"
2230
 
2231
+ #: src/Tribe/Importer/Column_Mapper.php:77
2232
  msgid "Venue Address 2"
2233
  msgstr "Адрес на мястото 2"
2234
 
2235
+ #: src/Tribe/View_Helpers.php:98
2236
  msgid "Costa Rica"
2237
  msgstr "Коста Рика"
2238
 
2239
+ #: src/Tribe/Importer/Column_Mapper.php:78
2240
  msgid "Venue City"
2241
  msgstr "Град"
2242
 
2243
+ #: src/Tribe/View_Helpers.php:99
2244
  msgid "Cote D'Ivoire"
2245
  msgstr "Кот д'Ивоар"
2246
 
2247
+ #: src/Tribe/Importer/Column_Mapper.php:79
2248
  msgid "Venue State/Province"
2249
  msgstr "Щат/Провинция"
2250
 
2251
+ #: src/Tribe/View_Helpers.php:100
2252
  msgid "Croatia (Local Name: Hrvatska)"
2253
  msgstr "Хърватия"
2254
 
2255
+ #: src/Tribe/Importer/Column_Mapper.php:80
2256
  msgid "Venue Zip"
2257
  msgstr "Пощенски код"
2258
 
2259
+ #: src/Tribe/View_Helpers.php:101
2260
  msgid "Cuba"
2261
  msgstr "Куба"
2262
 
2263
+ #: src/Tribe/Importer/Column_Mapper.php:81
2264
  msgid "Venue Phone"
2265
  msgstr "Телефон на мястото"
2266
 
2267
+ #: src/Tribe/View_Helpers.php:102
2268
  msgid "Cyprus"
2269
  msgstr "Кипър"
2270
 
2271
+ #: src/Tribe/Importer/Column_Mapper.php:82
2272
  msgid "Venue Website"
2273
  msgstr "Уебсайт на мястото"
2274
 
2275
+ #: src/Tribe/View_Helpers.php:103
2276
  msgid "Czech Republic"
2277
  msgstr "Чехия"
2278
 
2279
+ #: src/Tribe/Importer/Column_Mapper.php:88
2280
  msgid "Organizer Name"
2281
  msgstr "Име на организатора"
2282
 
2283
+ #: src/Tribe/View_Helpers.php:104
2284
  msgid "Denmark"
2285
  msgstr "Дания"
2286
 
2287
+ #: src/Tribe/Importer/Column_Mapper.php:89
2288
  msgid "Organizer Email"
2289
  msgstr "Имейл на организатора"
2290
 
2291
+ #: src/Tribe/View_Helpers.php:105
2292
  msgid "Djibouti"
2293
  msgstr "Джибути"
2294
 
2295
+ #: src/Tribe/Importer/Column_Mapper.php:90
2296
  msgid "Organizer Website"
2297
  msgstr "Уебсайт на организатора"
2298
 
2299
+ #: src/Tribe/View_Helpers.php:106
2300
  msgid "Dominica"
2301
  msgstr "Доминика"
2302
 
2303
+ #: src/Tribe/Importer/Column_Mapper.php:91
2304
  msgid "Organizer Phone"
2305
  msgstr "Телефон на организатора"
2306
 
2307
+ #: src/Tribe/View_Helpers.php:107
2308
  msgid "Dominican Republic"
2309
  msgstr "Доминиканска република"
2310
 
2311
+ #: src/Tribe/Importer/File_Importer.php:38
2312
  msgid "No importer defined for %s"
2313
  msgstr "Не е дефиниран importer за %s"
2314
 
2315
+ #: src/Tribe/View_Helpers.php:108
2316
  msgid "East Timor"
2317
  msgstr "Източен Тимор"
2318
 
2319
+ #: src/Tribe/Importer/File_Importer.php:110
2320
  msgid "Missing required fields in row %d."
2321
  msgstr "Липсват задължителни полета на ред %d."
2322
 
2323
+ #: src/Tribe/View_Helpers.php:109
2324
  msgid "Ecuador"
2325
  msgstr "Еквадор"
2326
 
2327
+ #: src/Tribe/Importer/File_Importer.php:118
2328
  msgid "Failed to import record in row %d."
2329
  msgstr "Неуспешно импортиране на запис на ред %d."
2330
 
2331
+ #: src/Tribe/View_Helpers.php:110
2332
  msgid "Egypt"
2333
  msgstr "Египет"
2334
 
2335
+ #: src/Tribe/Importer/File_Importer.php:127
2336
  msgid "%s (post ID %d) updated."
2337
  msgstr "%s (публикация с ID %d) обновена."
2338
 
2339
+ #: src/Tribe/View_Helpers.php:111
2340
  msgid "El Salvador"
2341
  msgstr "Салвадор"
2342
 
2343
+ #: src/Tribe/Importer/File_Importer.php:131
2344
  msgid "%s (post ID %d) created."
2345
  msgstr "%s (post ID %d) е създаден."
2346
 
2347
+ #: src/Tribe/View_Helpers.php:112
2348
  msgid "Equatorial Guinea"
2349
  msgstr "Екваториална Гвинея"
2350
 
2351
+ #: src/Tribe/Importer/File_Uploader.php:28
2352
  msgid "Temporary file not found. Could not save %s."
2353
  msgstr "Временния файл не е открит. %s не може да се запамети."
2354
 
2355
+ #: src/Tribe/View_Helpers.php:113
2356
  msgid "Eritrea"
2357
  msgstr "Еритрея"
2358
 
2359
+ #: src/Tribe/Importer/File_Uploader.php:36
2360
  msgid "Could not save %s."
2361
  msgstr "Не можа да запази %s."
2362
 
2363
+ #: src/Tribe/View_Helpers.php:114
2364
  msgid "Estonia"
2365
  msgstr "Естония"
2366
 
2367
+ #: src/Tribe/Importer/Options.php:29 src/Tribe/Settings.php:520
2368
  msgid "Settings saved."
2369
  msgstr "Настройките са записани."
2370
 
2371
+ #: src/Tribe/View_Helpers.php:115
2372
  msgid "Ethiopia"
2373
  msgstr "Етиопия"
2374
 
2375
+ #: src/Tribe/List_Widget.php:30
2376
  msgid "A widget that displays upcoming events."
2377
  msgstr "Уиджет, показващ всички предстоящи събития."
2378
 
2379
+ #: src/Tribe/View_Helpers.php:116
2380
  msgid "Falkland Islands (Malvinas)"
2381
  msgstr "Фолкландски острови"
2382
 
2383
+ #: src/Tribe/List_Widget.php:38
2384
  msgid "Events List"
2385
  msgstr "Списък със събитията"
2386
 
2387
+ #: src/Tribe/View_Helpers.php:117
2388
  msgid "Faroe Islands"
2389
  msgstr "Ферьорски острови"
2390
 
2391
+ #: src/Tribe/List_Widget.php:172
2392
  msgid "Upcoming Events"
2393
  msgstr "Предстоящи събития"
2394
 
2395
+ #: src/Tribe/View_Helpers.php:118
2396
  msgid "Fiji"
2397
  msgstr "Фиджи"
2398
 
2399
+ #: src/Tribe/Main.php:503 src/functions/template-tags/venue.php:52
2400
+ #: src/io/csv/admin-views/import.php:45
2401
  msgid "Venues"
2402
  msgstr "Места"
2403
 
2404
+ #: src/Tribe/View_Helpers.php:119
2405
  msgid "Finland"
2406
  msgstr "Финландия"
2407
 
2408
+ #: src/Tribe/Main.php:511
2409
+ #: src/functions/advanced-functions/meta_registration.php:126
2410
+ #: src/functions/template-tags/venue.php:41
2411
  msgid "Venue"
2412
  msgstr "Място"
2413
 
2414
+ #: src/Tribe/View_Helpers.php:120
2415
  msgid "France"
2416
  msgstr "Франция"
2417
 
2418
+ #: src/Tribe/Main.php:519 src/functions/template-tags/organizer.php:82
2419
+ #: src/io/csv/admin-views/import.php:46
2420
  msgid "Organizers"
2421
  msgstr "Организатори"
2422
 
2423
+ #: src/Tribe/View_Helpers.php:121
2424
  msgid "France, Metropolitan"
2425
  msgstr "Франция, Метрополия"
2426
 
2427
+ #: src/Tribe/Main.php:527
2428
+ #: src/functions/advanced-functions/meta_registration.php:205
2429
+ #: src/functions/template-tags/organizer.php:71
2430
  msgid "Organizer"
2431
  msgstr "Организатор"
2432
 
2433
+ #: src/Tribe/View_Helpers.php:122
2434
  msgid "French Guiana"
2435
  msgstr "Френска Гвиана"
2436
 
2437
+ #: src/Tribe/Main.php:535 src/functions/template-tags/general.php:71
2438
+ #: src/io/csv/admin-views/import.php:47
2439
  msgid "Events"
2440
  msgstr "Събития"
2441
 
2442
+ #: src/Tribe/View_Helpers.php:123
2443
  msgid "French Polynesia"
2444
  msgstr "Френска Полинезия"
2445
 
2446
+ #: src/Tribe/Main.php:543 src/functions/template-tags/general.php:60
2447
  msgid "Event"
2448
  msgstr "Събитие"
2449
 
2450
+ #: src/Tribe/View_Helpers.php:124
2451
  msgid "French Southern Territories"
2452
  msgstr "Френски южни и антарктически територии"
2453
 
2454
+ #. Plugin Name of the plugin/theme
2455
+ #: src/Tribe/Main.php:583 src/Tribe/Settings.php:132
2456
+ #: src/admin-views/tribe-options-help.php:272
2457
  msgid "The Events Calendar"
2458
  msgstr "The Events Calendar"
2459
 
2460
+ #: src/Tribe/View_Helpers.php:125
2461
  msgid "Gabon"
2462
  msgstr "Габон"
2463
 
2464
+ #: src/Tribe/Main.php:588
2465
  msgid "month"
2466
  msgstr "месец"
2467
 
2468
+ #: src/Tribe/View_Helpers.php:126
2469
  msgid "Gambia"
2470
  msgstr "Гамбия"
2471
 
2472
+ #: src/Tribe/Main.php:589
2473
  msgid "list"
2474
  msgstr "списък"
2475
 
2476
+ #: src/Tribe/View_Helpers.php:127 src/Tribe/View_Helpers.php:326
2477
  msgid "Georgia"
2478
  msgstr "Грузия"
2479
 
2480
+ #: src/Tribe/Main.php:590
2481
  msgid "upcoming"
2482
  msgstr "предстоящи"
2483
 
2484
+ #: src/Tribe/View_Helpers.php:128
2485
  msgid "Germany"
2486
  msgstr "Германия"
2487
 
2488
+ #: src/Tribe/Main.php:591
2489
  msgid "past"
2490
  msgstr "изминали"
2491
 
2492
+ #: src/Tribe/View_Helpers.php:129
2493
  msgid "Ghana"
2494
  msgstr "Гана"
2495
 
2496
+ #: src/Tribe/Main.php:592
2497
  msgid "day"
2498
  msgstr "ден"
2499
 
2500
+ #: src/Tribe/View_Helpers.php:130
2501
  msgid "Gibraltar"
2502
  msgstr "Гибралтар"
2503
 
2504
+ #: src/Tribe/Main.php:593
2505
  msgid "today"
2506
  msgstr "днес"
2507
 
2508
+ #: src/Tribe/View_Helpers.php:131
2509
  msgid "Greece"
2510
  msgstr "Гърция"
2511
 
2512
+ #: src/Tribe/Main.php:620
2513
  msgid "Initializing Tribe Events on %s"
2514
  msgstr "Стартиране на Tribe Events на %s"
2515
 
2516
+ #: src/Tribe/View_Helpers.php:132
2517
  msgid "Greenland"
2518
  msgstr "Гренландия"
2519
 
2520
+ #: src/Tribe/Main.php:697
2521
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
2522
  msgstr "Версията на вашия The Events Calendar е по-стара от тази на вашите The Events Calendar add-on-и. Моля, %sобновете сега.%s"
2523
 
2524
+ #: src/Tribe/View_Helpers.php:133
2525
  msgid "Grenada"
2526
  msgstr "Гренада"
2527
 
2528
+ #: src/Tribe/Main.php:709
2529
  msgid "The following plugins are out of date: <b>%s</b>. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %sLearn More%s."
2530
  msgstr "Следните plugin-и са стари версии: <b>%s</b>. Всички add-on-и, съдържат зависимости от The Events Calendar и няма да функционират изправно освен ако не са заедно с подходящата версия. %sНаучете повече%s."
2531
 
2532
+ #: src/Tribe/View_Helpers.php:134
2533
  msgid "Guadeloupe"
2534
  msgstr "Гваделупа"
2535
 
2536
+ #: src/Tribe/Main.php:819 src/admin-views/tribe-options-licenses.php:33
2537
  msgid "Licenses"
2538
  msgstr "Лицензи"
2539
 
2540
+ #: src/Tribe/View_Helpers.php:135
2541
  msgid "Guam"
2542
  msgstr "Гуам"
2543
 
2544
+ #: src/Tribe/View_Helpers.php:136
 
 
 
 
2545
  msgid "Guatemala"
2546
  msgstr "Гватемала"
2547
 
2548
+ #: src/Tribe/Main.php:778
2549
  msgid "Display"
2550
  msgstr "Изглед"
2551
 
2552
+ #: src/Tribe/View_Helpers.php:137
2553
  msgid "Guinea"
2554
  msgstr "Гвинея"
2555
 
2556
+ #: src/Tribe/Main.php:782 src/Tribe/Main.php:4054 src/Tribe/Main.php:4149
 
2557
  msgid "Help"
2558
  msgstr "Помощ"
2559
 
2560
+ #: src/Tribe/View_Helpers.php:138
2561
  msgid "Guinea-Bissau"
2562
  msgstr "Гвинея-Бисау"
2563
 
2564
+ #: src/Tribe/Main.php:920
2565
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
2566
  msgstr "The Events Calendar изисква WordPress %s или по-нова версия. Моля, обновете WordPress."
2567
 
2568
+ #: src/Tribe/View_Helpers.php:139
2569
  msgid "Guyana"
2570
  msgstr "Гвиана"
2571
 
2572
+ #: src/Tribe/Main.php:923
2573
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
2574
  msgstr "За съжаление, The Events Calendar изисква PHP %s или по-висока версия. Свържете се с уеб администратора си, за да ви прехвърли към по-нова версия на PHP."
2575
 
2576
+ #: src/Tribe/View_Helpers.php:140
2577
  msgid "Haiti"
2578
  msgstr "Хаити"
2579
 
2580
+ #: src/Tribe/Main.php:1197 src/Tribe/Main.php:2240
2581
  msgid "category"
2582
  msgstr "категория"
2583
 
2584
+ #: src/Tribe/View_Helpers.php:141
2585
  msgid "Heard And Mc Donald Islands"
2586
  msgstr "Хърд и Макдоналд"
2587
 
2588
+ #: src/Tribe/Main.php:1208 src/Tribe/Main.php:2239
2589
  msgid "tag"
2590
  msgstr "таг"
2591
 
2592
+ #: src/Tribe/View_Helpers.php:142
2593
  msgid "Holy See (Vatican City State)"
2594
  msgstr "Ватикана"
2595
 
2596
+ #: src/Tribe/Main.php:1243 src/Tribe/Main.php:1261 src/Tribe/Main.php:1279
 
2597
  msgid "Add New"
2598
  msgstr "Добавяне"
2599
 
2600
+ #: src/Tribe/View_Helpers.php:143
2601
  msgid "Honduras"
2602
  msgstr "Хондурас"
2603
 
2604
+ #: src/Tribe/Main.php:1244 src/Tribe/Main.php:1262 src/Tribe/Main.php:1280
2605
+ #: src/Tribe/Main.php:1405 src/Tribe/Main.php:1406
 
2606
  msgid "Add New %s"
2607
  msgstr "Добавяне %s"
2608
 
2609
+ #: src/Tribe/View_Helpers.php:144
2610
  msgid "Hong Kong"
2611
  msgstr "Хонконг"
2612
 
2613
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:112 src/Tribe/Main.php:1245
2614
+ #: src/Tribe/Main.php:1263 src/Tribe/Main.php:1281 src/Tribe/Main.php:1425
2615
+ #: src/Tribe/Main.php:1477 src/Tribe/Main.php:3998
 
2616
  msgid "Edit %s"
2617
  msgstr "Редакция в %s"
2618
 
2619
+ #: src/Tribe/View_Helpers.php:145
2620
  msgid "Hungary"
2621
  msgstr "Унгария"
2622
 
2623
+ #: src/Tribe/Main.php:1246 src/Tribe/Main.php:1264 src/Tribe/Main.php:1282
 
2624
  msgid "New %s"
2625
  msgstr "Нов %s"
2626
 
2627
+ #: src/Tribe/View_Helpers.php:146
2628
  msgid "Iceland"
2629
  msgstr "Исландия"
2630
 
2631
+ #: src/Tribe/Main.php:1247 src/Tribe/Main.php:1265 src/Tribe/Main.php:1283
 
2632
  msgid "View %s"
2633
  msgstr "Преглед %s"
2634
 
2635
+ #: src/Tribe/View_Helpers.php:147
2636
  msgid "India"
2637
  msgstr "Индия"
2638
 
2639
+ #: src/Tribe/Main.php:1248 src/Tribe/Main.php:1266 src/Tribe/Main.php:1284
 
2640
  msgid "Search %s"
2641
  msgstr "Търсене %s"
2642
 
2643
+ #: src/Tribe/View_Helpers.php:148
2644
  msgid "Indonesia"
2645
  msgstr "Индонезия"
2646
 
2647
+ #: src/Tribe/Main.php:1249 src/Tribe/Main.php:1267 src/Tribe/Main.php:1285
 
2648
  msgid "No %s found"
2649
  msgstr "Няма намерени %s"
2650
 
2651
+ #: src/Tribe/View_Helpers.php:149
2652
  msgid "Iran (Islamic Republic Of)"
2653
  msgstr "Иран"
2654
 
2655
+ #: src/Tribe/Main.php:1250 src/Tribe/Main.php:1268 src/Tribe/Main.php:1286
 
2656
  msgid "No %s found in Trash"
2657
  msgstr "Няма намерени %s в кошчето."
2658
 
2659
+ #: src/Tribe/View_Helpers.php:150
2660
  msgid "Iraq"
2661
  msgstr "Ирак"
2662
 
2663
+ #: src/Tribe/Main.php:1296
2664
  msgid "%s Category"
2665
  msgstr "%s Категория"
2666
 
2667
+ #: src/Tribe/View_Helpers.php:151
2668
  msgid "Ireland"
2669
  msgstr "Ирландия"
2670
 
2671
+ #: src/Tribe/Main.php:1297
2672
  msgid "Search %s Categories"
2673
  msgstr "Търси %s Категории"
2674
 
2675
+ #: src/Tribe/View_Helpers.php:152
2676
  msgid "Israel"
2677
  msgstr "Израел"
2678
 
2679
+ #: src/Tribe/Main.php:1298
2680
  msgid "All %s Categories"
2681
  msgstr "Всички %s Категории"
2682
 
2683
+ #: src/Tribe/View_Helpers.php:153
2684
  msgid "Italy"
2685
  msgstr "Италия"
2686
 
2687
+ #: src/Tribe/Main.php:1299
2688
  msgid "Parent %s Category"
2689
  msgstr "По-горна %s категория"
2690
 
2691
+ #: src/Tribe/View_Helpers.php:154
2692
  msgid "Jamaica"
2693
  msgstr "Ямайка"
2694
 
2695
+ #: src/Tribe/Main.php:1300
2696
  msgid "Parent %s Category:"
2697
  msgstr "По-горна %s категория"
2698
 
2699
+ #: src/Tribe/View_Helpers.php:155
2700
  msgid "Japan"
2701
  msgstr "Япония"
2702
 
2703
+ #: src/Tribe/Main.php:1301
2704
  msgid "Edit %s Category"
2705
  msgstr "Редактирай %s категория"
2706
 
2707
+ #: src/Tribe/View_Helpers.php:156
2708
  msgid "Jordan"
2709
  msgstr "Йордания"
2710
 
2711
+ #: src/Tribe/Main.php:1302
2712
  msgid "Update %s Category"
2713
  msgstr "Обнови %s категория"
2714
 
2715
+ #: src/Tribe/View_Helpers.php:157
2716
  msgid "Kazakhstan"
2717
  msgstr "Казахстан"
2718
 
2719
+ #: src/Tribe/Main.php:1303
2720
  msgid "Add New %s Category"
2721
  msgstr "Добави нова %s категория"
2722
 
2723
+ #: src/Tribe/View_Helpers.php:158
2724
  msgid "Kenya"
2725
  msgstr "Кения"
2726
 
2727
+ #: src/Tribe/Main.php:1304
2728
  msgid "New %s Category Name"
2729
  msgstr "Ново %s Име на Категория"
2730
 
2731
+ #: src/Tribe/View_Helpers.php:159
2732
  msgid "Kiribati"
2733
  msgstr "Кирибати"
2734
 
2735
+ #: src/Tribe/Main.php:1320
2736
  msgid "%1$s updated. <a href=\"%2$s\">View %3$s</a>"
2737
  msgstr "%1$s обновено. <a href=\"%2$s\">Виж %3$s</a>"
2738
 
2739
+ #: src/Tribe/View_Helpers.php:160
2740
  msgid "Korea, Democratic People's Republic Of"
2741
  msgstr "Северна Корея"
2742
 
2743
+ #: src/Tribe/Main.php:1321 src/Tribe/Main.php:1357 src/Tribe/Main.php:1376
 
2744
  msgid "Custom field updated."
2745
  msgstr "Custom полето е обновено."
2746
 
2747
+ #: src/Tribe/View_Helpers.php:161
2748
  msgid "Korea, Republic Of"
2749
  msgstr "Южна Корея"
2750
 
2751
+ #: src/Tribe/Main.php:1322 src/Tribe/Main.php:1358 src/Tribe/Main.php:1377
 
2752
  msgid "Custom field deleted."
2753
  msgstr "Custom полето е изтрито."
2754
 
2755
+ #: src/Tribe/View_Helpers.php:162
2756
  msgid "Kuwait"
2757
  msgstr "Кувейт"
2758
 
2759
+ #: src/Tribe/Main.php:1323 src/Tribe/Main.php:1356 src/Tribe/Main.php:1359
2760
+ #: src/Tribe/Main.php:1375 src/Tribe/Main.php:1378
 
2761
  msgid "%s updated."
2762
  msgstr "%s обновени."
2763
 
2764
+ #: src/Tribe/View_Helpers.php:163
2765
  msgid "Kyrgyzstan"
2766
  msgstr "Киргизстан"
2767
 
2768
+ #: src/Tribe/Main.php:1325
2769
  msgid "%1$s restored to revision from %2$s"
2770
  msgstr "%1$s възстановени в нова версия от %2$s"
2771
 
2772
+ #: src/Tribe/View_Helpers.php:164
2773
  msgid "Lao People's Democratic Republic"
2774
  msgstr "Лаос"
2775
 
2776
+ #: src/Tribe/Main.php:1327
2777
  msgid "Event published. <a href=\"%1$s\">View %2$s</a>"
2778
  msgstr "Събитието е публикувано. <a href=\"%1$s\">Виж %2$s</a>"
2779
 
2780
+ #: src/Tribe/View_Helpers.php:165
2781
  msgid "Latvia"
2782
  msgstr "Латвия"
2783
 
2784
+ #: src/Tribe/Main.php:1331 src/Tribe/Main.php:1363 src/Tribe/Main.php:1382
 
2785
  msgid "%s saved."
2786
  msgstr "%s записано."
2787
 
2788
+ #: src/Tribe/View_Helpers.php:166
2789
  msgid "Lebanon"
2790
  msgstr "Ливан"
2791
 
2792
+ #: src/Tribe/Main.php:1333
2793
  msgid "%1$s submitted. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2794
  msgstr "%1$s изпратено. <a target=\"_blank\" href=\"%2$s\">Преглед %3$s</a>"
2795
 
2796
+ #: src/Tribe/View_Helpers.php:167
2797
  msgid "Lesotho"
2798
  msgstr "Лесото"
2799
 
2800
+ #: src/Tribe/Main.php:1339
2801
  msgid "%1$s scheduled for: <strong>%2$s</strong>. <a target=\"_blank\" href=\"%3$s\">Preview %4$s</a>"
2802
  msgstr "%1$s насрочено за: <strong>%2$s</strong>. <a target=\"_blank\" href=\"%3$s\">Преглед %4$s</a>"
2803
 
2804
+ #: src/Tribe/View_Helpers.php:168
2805
  msgid "Liberia"
2806
  msgstr "Либерия"
2807
 
2808
+ #: src/Tribe/Main.php:1342 src/Tribe/Main.php:1368 src/Tribe/Main.php:1387
 
2809
  msgid "M j, Y @ G:i"
2810
  msgstr "M j, Y @ G:i"
2811
 
2812
+ #: src/Tribe/View_Helpers.php:169
2813
  msgid "Libya"
2814
  msgstr "Либия"
2815
 
2816
+ #: src/Tribe/Main.php:1347
2817
  msgid "%1$s draft updated. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2818
  msgstr "%1$s чернова е обновена. <a target=\"_blank\" href=\"%2$s\">Преглед %3$s</a>"
2819
 
2820
+ #: src/Tribe/View_Helpers.php:170
2821
  msgid "Liechtenstein"
2822
  msgstr "Лихтенщайн"
2823
 
2824
+ #: src/Tribe/Main.php:1361 src/Tribe/Main.php:1380
2825
  msgid "%s restored to revision from %s"
2826
  msgstr "%s е възстановено от %s"
2827
 
2828
+ #: src/Tribe/View_Helpers.php:171
2829
  msgid "Lithuania"
2830
  msgstr "Литва"
2831
 
2832
+ #: src/Tribe/Main.php:1362 src/Tribe/Main.php:1381
2833
  msgid "%s published."
2834
  msgstr "%s публикувано."
2835
 
2836
+ #: src/Tribe/View_Helpers.php:172
2837
  msgid "Luxembourg"
2838
  msgstr "Люксембург"
2839
 
2840
+ #: src/Tribe/Main.php:1364 src/Tribe/Main.php:1383
2841
  msgid "%s submitted."
2842
  msgstr "%s изпратено."
2843
 
2844
+ #: src/Tribe/View_Helpers.php:173
2845
  msgid "Macau"
2846
  msgstr "Макао"
2847
 
2848
+ #: src/Tribe/Main.php:1366 src/Tribe/Main.php:1385
2849
  msgid "%s scheduled for: <strong>%2$s</strong>."
2850
  msgstr "%s насрочено за <strong>%2$s</strong>."
2851
 
2852
+ #: src/Tribe/View_Helpers.php:174
2853
  msgid "Macedonia"
2854
  msgstr "Македония"
2855
 
2856
+ #: src/Tribe/Main.php:1370 src/Tribe/Main.php:1389
2857
  msgid "%s draft updated."
2858
  msgstr "%s чернови са обновени."
2859
 
2860
+ #: src/Tribe/View_Helpers.php:175
2861
  msgid "Madagascar"
2862
  msgstr "Мадагаскар"
2863
 
2864
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88 src/Tribe/Main.php:1424
2865
+ #: src/Tribe/Main.php:1475
2866
  msgid "Use Saved %s:"
2867
  msgstr "Използвай запаметено %s:"
2868
 
2869
+ #: src/Tribe/View_Helpers.php:176
2870
  msgid "Malawi"
2871
  msgstr "Малави"
2872
 
2873
+ #: src/Tribe/Main.php:1452
2874
  msgid "Without a defined location your event will not display a <a href=\"https://support.google.com/webmasters/answer/164506\" target=\"_blank\">Google Rich Snippet</a> on the search results."
2875
  msgstr "Без дефинирана локация събитието няма да показва a <a href=\"https://support.google.com/webmasters/answer/164506\" target=\"_blank\">Google Rich Snippet</a> в резултатите от търсене."
2876
 
2877
+ #: src/Tribe/View_Helpers.php:177
2878
  msgid "Malaysia"
2879
  msgstr "Малайзия"
2880
 
2881
+ #: src/Tribe/Main.php:1543 src/Tribe/Main.php:1625
2882
  msgid "Use New %s"
2883
  msgstr "Създаване на %s"
2884
 
2885
+ #: src/Tribe/View_Helpers.php:178
2886
  msgid "Maldives"
2887
  msgstr "Малдиви"
2888
 
2889
+ #: src/Tribe/Main.php:1545 src/Tribe/Main.php:1627
2890
  msgid "My %s"
2891
  msgstr "Моето %s"
2892
 
2893
+ #: src/Tribe/View_Helpers.php:179
2894
  msgid "Mali"
2895
  msgstr "Мали"
2896
 
2897
+ #: src/Tribe/Main.php:1550 src/Tribe/Main.php:1632
2898
  msgid "Available %s"
2899
  msgstr "Налични %s"
2900
 
2901
+ #: src/Tribe/View_Helpers.php:180
2902
  msgid "Malta"
2903
  msgstr "Малта"
2904
 
2905
+ #: src/Tribe/Main.php:1561 src/Tribe/Main.php:1643
2906
  msgid "No saved %s exists."
2907
  msgstr "Не съществуват запаметени %s."
2908
 
2909
+ #: src/Tribe/View_Helpers.php:181
2910
  msgid "Marshall Islands"
2911
  msgstr "Маршалови острови"
2912
 
2913
+ #: src/Tribe/Main.php:1787
2914
  msgid "Next"
2915
  msgstr "Напред"
2916
 
2917
+ #: src/Tribe/View_Helpers.php:182
2918
  msgid "Martinique"
2919
  msgstr "Мартиника"
2920
 
2921
+ #: src/Tribe/Main.php:1788
2922
  msgid "Prev"
2923
  msgstr "Назад"
2924
 
2925
+ #: src/Tribe/View_Helpers.php:183
2926
  msgid "Mauritania"
2927
  msgstr "Мавритания"
2928
 
2929
+ #: src/Tribe/Main.php:1789 src/functions/template-tags/day.php:105
2930
  msgid "Today"
2931
  msgstr "Днес"
2932
 
2933
+ #: src/Tribe/View_Helpers.php:184
2934
  msgid "Mauritius"
2935
  msgstr "Мавриций"
2936
 
2937
+ #: src/Tribe/Main.php:1790
2938
  msgid "Done"
2939
  msgstr "Готово"
2940
 
2941
+ #: src/Tribe/View_Helpers.php:185
2942
  msgid "Mayotte"
2943
  msgstr "Майот"
2944
 
2945
+ #: src/Tribe/Main.php:1964
2946
  msgid "Network"
2947
  msgstr "Мрежа"
2948
 
2949
+ #: src/Tribe/View_Helpers.php:186
2950
  msgid "Mexico"
2951
  msgstr "Мексико"
2952
 
2953
+ #: src/Tribe/Main.php:3508 src/Tribe/Main.php:3543
2954
+ #: src/functions/template-tags/day.php:158
2955
+ #: src/functions/template-tags/day.php:180
2956
  msgid "Date out of range."
2957
  msgstr "Изберете по-близка дата."
2958
 
2959
+ #: src/Tribe/View_Helpers.php:187
2960
  msgid "Micronesia, Federated States Of"
2961
  msgstr "Микронезия"
2962
 
2963
+ #: src/Tribe/Main.php:3579
2964
  msgid "%s Options"
2965
  msgstr "%s Опции"
2966
 
2967
+ #: src/Tribe/View_Helpers.php:188
2968
  msgid "Moldova, Republic Of"
2969
  msgstr "Молдова"
2970
 
2971
+ #: src/Tribe/Main.php:3586 src/Tribe/Main.php:3597
2972
  msgid "%s Information"
2973
  msgstr "%s Информация"
2974
 
2975
+ #: src/Tribe/View_Helpers.php:189
2976
  msgid "Monaco"
2977
  msgstr "Монако"
2978
 
2979
+ #: src/Tribe/Main.php:3810
2980
  msgid "Support"
2981
  msgstr "Поддръжка"
2982
 
2983
+ #: src/Tribe/View_Helpers.php:190
2984
  msgid "Mongolia"
2985
  msgstr "Монголия"
2986
 
2987
+ #: src/Tribe/Main.php:3813
2988
  msgid "View All Add-Ons"
2989
  msgstr "Покажи всички Add-Ons"
2990
 
2991
+ #: src/Tribe/View_Helpers.php:191
2992
  msgid "Montenegro"
2993
  msgstr "Черна гора"
2994
 
2995
+ #: src/Tribe/Main.php:3834
2996
  msgid "News from Modern Tribe"
2997
  msgstr "Новини от Modern Tribe"
2998
 
2999
+ #: src/Tribe/View_Helpers.php:192
3000
  msgid "Montserrat"
3001
  msgstr "Монсерат"
3002
 
3003
+ #: src/Tribe/Main.php:3883
3004
  msgid "Additional Functionality"
3005
  msgstr "Допълнителна функционалност"
3006
 
3007
+ #: src/Tribe/View_Helpers.php:193
3008
  msgid "Morocco"
3009
  msgstr "Мароко"
3010
 
3011
+ #: src/Tribe/Main.php:3888
3012
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
3013
  msgstr "Имате нужда от допълнителна функционалност, включително повтарящи се събития, продажба на билети, публикуване на събития от потребителите, повече изгледи и др.?"
3014
 
3015
+ #: src/Tribe/View_Helpers.php:194
3016
  msgid "Mozambique"
3017
  msgstr "Мозамбик"
3018
 
3019
+ #: src/Tribe/Main.php:3889
3020
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
3021
  msgstr "Проверете <a href=\"%s\">наличните add-ons</a>."
3022
 
3023
+ #: src/Tribe/View_Helpers.php:195
3024
  msgid "Myanmar"
3025
  msgstr "Мианмар"
3026
 
3027
+ #: src/Tribe/Main.php:3940
3028
  msgid "%s"
3029
  msgstr "%s"
3030
 
3031
+ #: src/Tribe/View_Helpers.php:196
3032
  msgid "Namibia"
3033
  msgstr "Намибия"
3034
 
3035
+ #: src/Tribe/Main.php:3977 src/Tribe/Main.php:4073
3036
  msgid "View Calendar"
3037
  msgstr "Към календара"
3038
 
3039
+ #: src/Tribe/View_Helpers.php:197
3040
  msgid "Nauru"
3041
  msgstr "Науру"
3042
 
3043
+ #: src/Tribe/Main.php:3987
3044
  msgid "Add %s"
3045
  msgstr "Добави %s"
3046
 
3047
+ #: src/Tribe/View_Helpers.php:198
3048
  msgid "Nepal"
3049
  msgstr "Непал"
3050
 
3051
+ #: src/Tribe/Main.php:4019
3052
  msgid "CSV"
3053
  msgstr "CSV"
3054
 
3055
+ #: src/Tribe/View_Helpers.php:199
3056
  msgid "Netherlands"
3057
  msgstr "Холандия"
3058
 
3059
+ #: src/Tribe/Main.php:4041 src/Tribe/Main.php:4131 src/Tribe/Settings.php:161
 
3060
  msgid "Settings"
3061
  msgstr "Настройки"
3062
 
3063
+ #: src/Tribe/View_Helpers.php:200
3064
  msgid "Netherlands Antilles"
3065
  msgstr "Нидерландски Антили"
3066
 
3067
+ #: src/Tribe/Main.php:4132
3068
  msgid "Calendar"
3069
  msgstr "Календар"
3070
 
3071
+ #: src/Tribe/View_Helpers.php:201
3072
  msgid "New Caledonia"
3073
  msgstr "Нова Каледония"
3074
 
3075
+ #: src/Tribe/Main.php:4208
3076
  msgid "List"
3077
  msgstr "Списък"
3078
 
3079
+ #: src/Tribe/View_Helpers.php:202
3080
  msgid "New Zealand"
3081
  msgstr "Нова Зеландия"
3082
 
3083
+ #: src/Tribe/Main.php:4226
3084
  msgid "Month"
3085
  msgstr "Месец"
3086
 
3087
+ #: src/Tribe/View_Helpers.php:203
3088
  msgid "Nicaragua"
3089
  msgstr "Никарагуа"
3090
 
3091
+ #: src/Tribe/Main.php:4243
3092
  msgid "Day"
3093
  msgstr "Ден"
3094
 
3095
+ #: src/Tribe/View_Helpers.php:204
3096
  msgid "Niger"
3097
  msgstr "Нигер"
3098
 
3099
+ #: src/Tribe/Main.php:4268 src/Tribe/Main.php:4269
3100
  msgid "Search"
3101
  msgstr "Търсене"
3102
 
3103
+ #: src/Tribe/View_Helpers.php:205
3104
  msgid "Nigeria"
3105
  msgstr "Нигерия"
3106
 
3107
+ #: src/Tribe/Main.php:4293 src/Tribe/Main.php:4309
3108
  msgid "Date"
3109
  msgstr "Дата"
3110
 
3111
+ #: src/Tribe/View_Helpers.php:206
3112
  msgid "Niue"
3113
  msgstr "Ниуе"
3114
 
3115
+ #: src/Tribe/Main.php:4296
3116
  msgid "%s In"
3117
  msgstr "%s в"
3118
 
3119
+ #: src/Tribe/View_Helpers.php:207
3120
  msgid "Norfolk Island"
3121
  msgstr "Норфолк"
3122
 
3123
+ #: src/Tribe/Main.php:4298
3124
  msgid "%s From"
3125
  msgstr "%s от"
3126
 
3127
+ #: src/Tribe/View_Helpers.php:208
3128
  msgid "Northern Mariana Islands"
3129
  msgstr "Северни Мариански острови"
3130
 
3131
+ #: src/Tribe/Main.php:4300
3132
  msgid "Day Of"
3133
  msgstr "Почивен ден"
3134
 
3135
+ #: src/Tribe/View_Helpers.php:209
3136
  msgid "Norway"
3137
  msgstr "Норвегия"
3138
 
3139
+ #: src/Tribe/Main.php:4375
3140
  msgid "Once Every 30 Mins"
3141
  msgstr "На всеки 30 минути"
3142
 
3143
+ #: src/Tribe/View_Helpers.php:210
3144
  msgid "Oman"
3145
  msgstr "Оман"
3146
 
3147
+ #: src/Tribe/Options_Exception.php:19 src/Tribe/Post_Exception.php:22
3148
  msgid "Error"
3149
  msgstr "Грешка"
3150
 
3151
+ #: src/Tribe/View_Helpers.php:211
3152
  msgid "Pakistan"
3153
  msgstr "Пакистан"
3154
 
3155
+ #: src/Tribe/PUE/Checker.php:304
3156
  msgid "License Key"
3157
  msgstr "Сериен номер"
3158
 
3159
+ #: src/Tribe/View_Helpers.php:212
3160
  msgid "Palau"
3161
  msgstr "Палау"
3162
 
3163
+ #: src/Tribe/PUE/Checker.php:305
3164
  msgid "A valid license key is required for support and updates"
3165
  msgstr "Валиден сериен номер е необходим за поддръжка и актуализации"
3166
 
3167
+ #: src/Tribe/View_Helpers.php:213
3168
  msgid "Panama"
3169
  msgstr "Панама"
3170
 
3171
+ #: src/Tribe/PUE/Checker.php:377
3172
  msgid "License key(s) updated."
3173
  msgstr "Серийния/те номер(а) са обновени."
3174
 
3175
+ #: src/Tribe/View_Helpers.php:214
3176
  msgid "Papua New Guinea"
3177
  msgstr "Папуа Нова Гвинея"
3178
 
3179
+ #: src/Tribe/PUE/Checker.php:419
3180
  msgid "Sorry, key validation server is not available."
3181
  msgstr "За съжаление сървъра за валидиране не е достъпен."
3182
 
3183
+ #: src/Tribe/View_Helpers.php:215
3184
  msgid "Paraguay"
3185
  msgstr "Парагвай"
3186
 
3187
+ #: src/Tribe/PUE/Checker.php:421
3188
  msgid "Sorry, this key is expired."
3189
  msgstr "За съжаление, кода ви е изтекъл."
3190
 
3191
+ #: src/Tribe/View_Helpers.php:216
3192
  msgid "Peru"
3193
  msgstr "Перу"
3194
 
3195
+ #: src/Tribe/PUE/Checker.php:424
3196
  msgid "Sorry, this key is out of installs."
3197
  msgstr "За съжаление този ключ не е валиден."
3198
 
3199
+ #: src/Tribe/View_Helpers.php:217
3200
  msgid "Philippines"
3201
  msgstr "Филипини"
3202
 
3203
+ #: src/Tribe/PUE/Checker.php:425
3204
  msgid "Why am I seeing this message?"
3205
  msgstr "Защо виждате това съобщение?"
3206
 
3207
+ #: src/Tribe/View_Helpers.php:218
3208
  msgid "Pitcairn"
3209
  msgstr "Питкерн"
3210
 
3211
+ #: src/Tribe/PUE/Checker.php:428
3212
  msgid "Sorry, this key is not valid."
3213
  msgstr "За съжаление, кода ви не е валиден."
3214
 
3215
+ #: src/Tribe/View_Helpers.php:219
3216
  msgid "Poland"
3217
  msgstr "Полша"
3218
 
3219
+ #: src/Tribe/PUE/Checker.php:430
3220
  msgid "Valid Key! Expires on %s"
3221
  msgstr "Валиден сериен номер. Изтича на %s"
3222
 
3223
+ #: src/Tribe/View_Helpers.php:220
3224
  msgid "Portugal"
3225
  msgstr "Португалия"
3226
 
3227
+ #: src/Tribe/PUE/Checker.php:436
3228
  msgid "Hmmm... something's wrong with this validator. Please contact <a href=\"%s\">support.</a>"
3229
  msgstr "Хмм... нещо с този валидатор се обърка. Моля, свържете се с <a href=\"%s\">поддръжката.</a>"
3230
 
3231
+ #: src/Tribe/View_Helpers.php:221
3232
  msgid "Puerto Rico"
3233
  msgstr "Пуерто Рико"
3234
 
3235
+ #: src/Tribe/Settings.php:160 src/Tribe/Settings.php:176
3236
  msgid "The Events Calendar Settings"
3237
  msgstr "Настройки на The Events Calendar"
3238
 
3239
+ #: src/Tribe/View_Helpers.php:222
3240
  msgid "Qatar"
3241
  msgstr "Катар"
3242
 
3243
+ #: src/Tribe/Settings.php:176
3244
  msgid "Events Settings"
3245
  msgstr "Настройки на събития"
3246
 
3247
+ #: src/Tribe/View_Helpers.php:223
3248
  msgid "Reunion"
3249
  msgstr "Реюнион"
3250
 
3251
+ #: src/Tribe/Settings.php:239
3252
  msgid "%s Settings"
3253
  msgstr "%s Настройки"
3254
 
3255
+ #: src/Tribe/View_Helpers.php:224
3256
  msgid "Romania"
3257
  msgstr "Румъния"
3258
 
3259
+ #: src/Tribe/Settings.php:253
3260
  msgid "You've requested a non-existent tab."
3261
  msgstr "Търсите несъществуващ таб."
3262
 
3263
+ #: src/Tribe/View_Helpers.php:225
3264
  msgid "Russian Federation"
3265
  msgstr "Русия"
3266
 
3267
+ #: src/Tribe/View_Helpers.php:226
 
 
 
 
3268
  msgid "Rwanda"
3269
  msgstr "Руанда"
3270
 
3271
+ #: src/Tribe/Settings.php:309
3272
  msgid "You don't have permission to do that."
3273
  msgstr "Нямате достъп."
3274
 
3275
+ #: src/Tribe/View_Helpers.php:227
3276
  msgid "Saint Kitts And Nevis"
3277
  msgstr "Сейнт Китс и Невис"
3278
 
3279
+ #: src/Tribe/Settings.php:315
3280
  msgid "The request was sent insecurely."
3281
  msgstr "Заявката не е изпратена криптирано."
3282
 
3283
+ #: src/Tribe/View_Helpers.php:228
3284
  msgid "Saint Lucia"
3285
  msgstr "Сейнт Лусия"
3286
 
3287
+ #: src/Tribe/Settings.php:321
3288
  msgid "The request wasn't sent from this tab."
3289
  msgstr "Заявката не е изпратена от този таб."
3290
 
3291
+ #: src/Tribe/View_Helpers.php:229
3292
  msgid "Saint Vincent And The Grenadines"
3293
  msgstr "Сейнт Винсент и Гренадини"
3294
 
3295
+ #: src/Tribe/Settings.php:489
3296
  msgid "Your form had the following errors:"
3297
  msgstr "Формуляра Ви има следните грешки:"
3298
 
3299
+ #: src/Tribe/View_Helpers.php:230
3300
  msgid "Samoa"
3301
  msgstr "Самоа"
3302
 
3303
+ #: src/Tribe/Settings.php:498
3304
  msgid "None of your settings were saved. Please try again."
3305
  msgstr "Вашите настройки не бяха запаметени. Моля опитайте отново."
3306
 
3307
+ #: src/Tribe/View_Helpers.php:231
3308
  msgid "San Marino"
3309
  msgstr "Сан Марино"
3310
 
3311
+ #: src/Tribe/Settings.php:498
3312
  msgid "The above setting was not saved. Other settings were successfully saved."
3313
  msgid_plural "The above settings were not saved. Other settings were successfully saved."
3314
  msgstr[0] "Настройката по-горе не са запаметена. Другите настройки са успешно запаметени."
3315
  msgstr[1] "Настройките по-горе не са запаметени. Другите настройки са успешно запаметени."
3316
 
3317
+ #: src/Tribe/View_Helpers.php:232
3318
  msgid "Sao Tome And Principe"
3319
  msgstr "Сао Томе и Принсипи"
3320
 
3321
+ #: src/Tribe/Settings_Tab.php:224
3322
  msgid "There are no fields setup for this tab yet."
3323
  msgstr "Все още няма настройка на полета за този таб."
3324
 
3325
+ #: src/Tribe/View_Helpers.php:233
3326
  msgid "Saudi Arabia"
3327
  msgstr "Саудитска Арабия"
3328
 
3329
+ #: src/Tribe/Support.php:46
3330
  msgid "Sometimes it's hard to tell what's going wrong without knowing more about your system steup. For your convenience, we've put together a little report on what's cooking under the hood."
3331
  msgstr "Понякога е трудно да се каже какво се е объркало, без да се знае повече за настройките на системата. За ваше удобство, ние съставихме малък доклад за случващото се под капака."
3332
 
3333
+ #: src/Tribe/View_Helpers.php:234
3334
  msgid "Senegal"
3335
  msgstr "Сенегал"
3336
 
3337
+ #: src/Tribe/Support.php:47
3338
  msgid "If you suspect that the problem you're having is related to another plugin, or we're just plain having trouble reproducing your bug report, please copy and send all of this to our support team."
3339
  msgstr "Ако подозирате, че проблема е причинен от друг plugin или ние не сме в състояние да възпроизведем грешката, която сте ни докладвали, молим да копирате и да изпратите всичко това на екипа ни за поддръжка."
3340
 
3341
+ #: src/Tribe/View_Helpers.php:235
3342
  msgid "Serbia"
3343
  msgstr "Сърбия"
3344
 
3345
+ #: src/Tribe/Support.php:51
3346
  msgid "System Information"
3347
  msgstr "Системна информация"
3348
 
3349
+ #: src/Tribe/View_Helpers.php:236
3350
  msgid "Seychelles"
3351
  msgstr "Сейшели"
3352
 
3353
+ #: src/Tribe/Support.php:137
3354
  msgid "Unknown or not set"
3355
  msgstr "Неизвестно или не е зададено"
3356
 
3357
+ #: src/Tribe/View_Helpers.php:237
3358
  msgid "Sierra Leone"
3359
  msgstr "Сиера Леоне"
3360
 
3361
+ #: src/Tribe/Template/Day.php:99 src/Tribe/Template/Day.php:115
3362
  msgid "All Day"
3363
  msgstr "Цял ден"
3364
 
3365
+ #: src/Tribe/View_Helpers.php:238
3366
  msgid "Singapore"
3367
  msgstr "Сингапур"
3368
 
3369
+ #: src/Tribe/Template/Day.php:102 src/Tribe/Template/Day.php:118
3370
  msgid "Ongoing"
3371
  msgstr "В момента"
3372
 
3373
+ #: src/Tribe/View_Helpers.php:239
3374
  msgid "Slovakia (Slovak Republic)"
3375
  msgstr "Словакия"
3376
 
3377
+ #: src/Tribe/View_Helpers.php:240
 
 
 
 
3378
  msgid "Slovenia"
3379
  msgstr "Словения"
3380
 
3381
+ #: src/Tribe/View_Helpers.php:241
 
 
 
 
3382
  msgid "Solomon Islands"
3383
  msgstr "Соломонови острови"
3384
 
3385
+ #: src/Tribe/Template/Month.php:284
3386
  msgid "There were no results found for <strong>\"%s\"</strong> this month. Try searching next month."
3387
  msgstr "Не са намерени събития за <strong>\"%s\"</strong>. Опитайте с друг месец."
3388
 
3389
+ #: src/Tribe/View_Helpers.php:242
3390
  msgid "Somalia"
3391
  msgstr "Сомалия"
3392
 
3393
+ #: src/Tribe/View_Helpers.php:243
 
 
 
 
3394
  msgid "South Africa"
3395
  msgstr "Република Южна Африка"
3396
 
3397
+ #: src/Tribe/Template/Month.php:289 src/Tribe/Template_Factory.php:366
3398
  msgid "There were no results found."
3399
  msgstr "Не са открити събития."
3400
 
3401
+ #: src/Tribe/View_Helpers.php:244
3402
  msgid "South Georgia, South Sandwich Islands"
3403
  msgstr "Южна Джорджия и Южни Сандвичеви острови"
3404
 
3405
+ #: src/Tribe/Template/Month.php:692
3406
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
3407
  msgstr "Заявената дата \"%s\" е невалидна &ndash; вместо това показваме текущия месец"
3408
 
3409
+ #: src/Tribe/View_Helpers.php:245
3410
  msgid "Spain"
3411
  msgstr "Испания"
3412
 
3413
+ #: src/Tribe/Template/Single_Event.php:120
3414
  msgid "This %s has passed."
3415
  msgstr "Това %s е минало."
3416
 
3417
+ #: src/Tribe/View_Helpers.php:246
3418
  msgid "Sri Lanka"
3419
  msgstr "Шри Ланка"
3420
 
3421
+ #: src/Tribe/Template_Factory.php:353
3422
  msgid "There were no results found for <strong>\"%s\"</strong>."
3423
  msgstr "Не са открити резултати за <strong>\"%s\"</strong>."
3424
 
3425
+ #: src/Tribe/View_Helpers.php:247
3426
  msgid "St. Helena"
3427
  msgstr "Света Елена"
3428
 
3429
+ #: src/Tribe/View_Helpers.php:248
 
 
 
 
3430
  msgid "St. Pierre And Miquelon"
3431
  msgstr "Сен Пиер и Микелон"
3432
 
3433
+ #: src/Tribe/View_Helpers.php:249
 
 
 
 
3434
  msgid "Sudan"
3435
  msgstr "Судан"
3436
 
3437
+ #: src/Tribe/View_Helpers.php:250
 
 
 
 
3438
  msgid "Suriname"
3439
  msgstr "Суринам"
3440
 
3441
+ #: src/Tribe/Template_Factory.php:361
3442
  msgid "No previous %s "
3443
  msgstr "Няма предишни %s "
3444
 
3445
+ #: src/Tribe/View_Helpers.php:251
3446
  msgid "Svalbard And Jan Mayen Islands"
3447
  msgstr "Свалбард и Ян Майен"
3448
 
3449
+ #: src/Tribe/Templates.php:618
3450
  msgid "Template overrides should be moved to the correct subdirectory: %s"
3451
  msgstr "Презаписаните шаблони трябва да са преместени в правилната поддиректория: %s"
3452
 
3453
+ #: src/Tribe/View_Helpers.php:252
3454
  msgid "Swaziland"
3455
  msgstr "Свазиленд"
3456
 
3457
+ #: src/Tribe/Templates.php:660
3458
  msgid "Template overrides should be moved to the correct subdirectory: tribe_get_template_part('%s')"
3459
  msgstr "Презаписаните шаблони трябва да са преместени в правилната поддиректория: tribe_get_template_part('%s')"
3460
 
3461
+ #: src/Tribe/View_Helpers.php:253
3462
  msgid "Sweden"
3463
  msgstr "Швеция"
3464
 
3465
+ #: src/Tribe/Tickets/Attendees_Table.php:74
3466
  msgid "Order #"
3467
  msgstr "Поръчка №"
3468
 
3469
+ #: src/Tribe/View_Helpers.php:254
3470
  msgid "Switzerland"
3471
  msgstr "Швейцария"
3472
 
3473
+ #: src/Tribe/Tickets/Attendees_Table.php:75
3474
  msgid "Order Status"
3475
  msgstr "Статус на поръчката"
3476
 
3477
+ #: src/Tribe/View_Helpers.php:255
3478
  msgid "Syrian Arab Republic"
3479
  msgstr "Сирия"
3480
 
3481
+ #: src/Tribe/Tickets/Attendees_Table.php:76
3482
  msgid "Purchaser name"
3483
  msgstr "Име на купувача"
3484
 
3485
+ #: src/Tribe/View_Helpers.php:256
3486
  msgid "Taiwan"
3487
  msgstr "Тайван"
3488
 
3489
+ #: src/Tribe/Tickets/Attendees_Table.php:77
3490
  msgid "Purchaser email"
3491
  msgstr "Email на купувача"
3492
 
3493
+ #: src/Tribe/View_Helpers.php:257
3494
  msgid "Tajikistan"
3495
  msgstr "Таджикистан"
3496
 
3497
+ #: src/Tribe/Tickets/Attendees_Table.php:78
3498
  msgid "Ticket type"
3499
  msgstr "Вид на билета"
3500
 
3501
+ #: src/Tribe/View_Helpers.php:258
3502
  msgid "Tanzania, United Republic Of"
3503
  msgstr "Танзания"
3504
 
3505
+ #: src/Tribe/Tickets/Attendees_Table.php:79 src/views/tickets/email.php:305
 
3506
  msgid "Ticket #"
3507
  msgstr "Билет №"
3508
 
3509
+ #: src/Tribe/View_Helpers.php:259
3510
  msgid "Thailand"
3511
  msgstr "Тайланд"
3512
 
3513
+ #: src/Tribe/Tickets/Attendees_Table.php:80 src/views/tickets/email.php:317
 
3514
  msgid "Security Code"
3515
  msgstr "Код за сигурност"
3516
 
3517
+ #: src/Tribe/View_Helpers.php:260
3518
  msgid "Togo"
3519
  msgstr "Того"
3520
 
3521
+ #: src/Tribe/Tickets/Attendees_Table.php:81
3522
+ #: src/Tribe/Tickets/Attendees_Table.php:166
3523
+ #: src/Tribe/Tickets/Attendees_Table.php:238
3524
  msgid "Check in"
3525
  msgstr "Записване"
3526
 
3527
+ #: src/Tribe/View_Helpers.php:261
3528
  msgid "Tokelau"
3529
  msgstr "Токелау"
3530
 
3531
+ #: src/Tribe/Tickets/Attendees_Table.php:167
3532
+ #: src/Tribe/Tickets/Attendees_Table.php:239
3533
  msgid "Undo Check in"
3534
  msgstr "Отмяна на записването"
3535
 
3536
+ #: src/Tribe/View_Helpers.php:262
3537
  msgid "Tonga"
3538
  msgstr "Тонга"
3539
 
3540
+ #: src/Tribe/Tickets/Attendees_Table.php:211
3541
  msgid "Print"
3542
  msgstr "Print"
3543
 
3544
+ #: src/Tribe/View_Helpers.php:263
3545
  msgid "Trinidad And Tobago"
3546
  msgstr "Тринидад и Тобаго"
3547
 
3548
+ #: src/Tribe/Tickets/Attendees_Table.php:212
3549
  msgid "Email"
3550
  msgstr "Email"
3551
 
3552
+ #: src/Tribe/View_Helpers.php:264
3553
  msgid "Tunisia"
3554
  msgstr "Тунис"
3555
 
3556
+ #: src/Tribe/Tickets/Attendees_Table.php:213 src/Tribe/iCal.php:119
3557
  msgid "Export"
3558
  msgstr "Експорт"
3559
 
3560
+ #: src/Tribe/View_Helpers.php:265
3561
  msgid "Turkey"
3562
  msgstr "Турция"
3563
 
3564
+ #: src/Tribe/Tickets/Attendees_Table.php:219
3565
  msgid "Filter by purchaser name, ticket #, order # or security code"
3566
  msgstr "Филтриране по дата на поръчка, номер на билет, номер на поръчка или код за сигурност "
3567
 
3568
+ #: src/Tribe/View_Helpers.php:266
3569
  msgid "Turkmenistan"
3570
  msgstr "Туркменистан"
3571
 
3572
+ #: src/Tribe/Tickets/Attendees_Table.php:240
3573
+ #: src/admin-views/tickets/list.php:22
3574
  msgid "Delete"
3575
  msgstr "Изтриване"
3576
 
3577
+ #: src/Tribe/View_Helpers.php:267
3578
  msgid "Turks And Caicos Islands"
3579
  msgstr "Търкс и Кайкос"
3580
 
3581
+ #: src/Tribe/Tickets/Metabox.php:26 src/admin-views/admin-update-message.php:52
 
3582
  msgid "Tickets"
3583
  msgstr "Билети"
3584
 
3585
+ #: src/Tribe/View_Helpers.php:268
3586
  msgid "Tuvalu"
3587
  msgstr "Тувалу"
3588
 
3589
+ #: src/Tribe/Tickets/Metabox.php:71
3590
  msgid "Ticket header image"
3591
  msgstr "Картинка за хедъра на събитието"
3592
 
3593
+ #: src/Tribe/View_Helpers.php:269
3594
  msgid "Uganda"
3595
  msgstr "Уганда"
3596
 
3597
+ #: src/Tribe/Tickets/Metabox.php:72
3598
  msgid "Set as ticket header"
3599
  msgstr "Задайте хедър на събитието"
3600
 
3601
+ #: src/Tribe/View_Helpers.php:270
3602
  msgid "Ukraine"
3603
  msgstr "Украйна"
3604
 
3605
+ #: src/Tribe/Tickets/Tickets.php:328
3606
  msgid "Your ticket has been saved."
3607
  msgstr "Билета ви е запазен."
3608
 
3609
+ #: src/Tribe/View_Helpers.php:271
3610
  msgid "United Arab Emirates"
3611
  msgstr "ОАЕ"
3612
 
3613
+ #: src/Tribe/Tickets/Tickets.php:409
3614
  msgid "Your ticket has been deleted."
3615
  msgstr "Билета ви е изтрит."
3616
 
3617
+ #: src/Tribe/View_Helpers.php:272
3618
  msgid "United Kingdom"
3619
  msgstr "Великобритания"
3620
 
3621
+ #: src/Tribe/Tickets/Tickets_Pro.php:78 src/admin-views/tickets/list.php:41
 
3622
  msgid "See who purchased tickets to this event"
3623
  msgstr "Преглед на закупилите билет за събитието"
3624
 
3625
+ #: src/Tribe/View_Helpers.php:273
3626
  msgid "United States Minor Outlying Islands"
3627
  msgstr "Малки далечни острови на САЩ"
3628
 
3629
+ #: src/Tribe/Tickets/Tickets_Pro.php:78
3630
+ #: src/admin-views/tickets/attendees.php:11 src/admin-views/tickets/list.php:41
 
3631
  msgid "Attendees"
3632
  msgstr "Участници"
3633
 
3634
+ #: src/Tribe/View_Helpers.php:274
3635
  msgid "Uruguay"
3636
  msgstr "Уругвай"
3637
 
3638
+ #: src/Tribe/Tickets/Tickets_Pro.php:113
3639
  msgid "You need to select a user or type a valid email address"
3640
  msgstr "Трябва да изберете група или да въведете валиден email адрес"
3641
 
3642
+ #: src/Tribe/View_Helpers.php:275
3643
  msgid "Uzbekistan"
3644
  msgstr "Узбекистан"
3645
 
3646
+ #: src/Tribe/Tickets/Tickets_Pro.php:114
3647
  msgid "Sending..."
3648
  msgstr "Изпращане..."
3649
 
3650
+ #: src/Tribe/View_Helpers.php:276
3651
  msgid "Vanuatu"
3652
  msgstr "Вануату"
3653
 
3654
+ #: src/Tribe/Tickets/Tickets_Pro.php:140
3655
  msgid "Columns"
3656
  msgstr "Колони"
3657
 
3658
+ #: src/Tribe/View_Helpers.php:277
3659
  msgid "Venezuela"
3660
  msgstr "Венецуела"
3661
 
3662
+ #: src/Tribe/Tickets/Tickets_Pro.php:140
3663
  msgid "You can use Screen Options to select which columns you want to see. The selection works in the table below, in the email, for print and for the CSV export."
3664
  msgstr "Можете да използвате Опции за екрана, за да изберете кои колони желаете да виждате. Избора е валиден за таблицата по-долу, в имейл, при принтиране и при CSV експортиране."
3665
 
3666
+ #: src/Tribe/View_Helpers.php:278
3667
  msgid "Viet Nam"
3668
  msgstr "Виетнам"
3669
 
3670
+ #: src/Tribe/Tickets/Tickets_Pro.php:230
3671
  msgid "Yes"
3672
  msgstr "Да"
3673
 
3674
+ #: src/Tribe/View_Helpers.php:279
3675
  msgid "Virgin Islands (British)"
3676
  msgstr "Британски Вирджински острови"
3677
 
3678
+ #: src/Tribe/Tickets/Tickets_Pro.php:262
3679
  msgid "attendees"
3680
  msgstr "attendees"
3681
 
3682
+ #: src/Tribe/View_Helpers.php:280
3683
  msgid "Virgin Islands (U.S.)"
3684
  msgstr "Вирджински острови"
3685
 
3686
+ #: src/Tribe/Tickets/Tickets_Pro.php:316
3687
  msgid "Attendee List for: %s"
3688
  msgstr "Лист с потвърдилите присъствие на: %s"
3689
 
3690
+ #: src/Tribe/Validate.php:76 src/Tribe/Validate.php:117
3691
  msgid "Invalid or incomplete field passed"
3692
  msgstr "Има невалидно или незавършено поле"
3693
 
3694
+ #: src/Tribe/Validate.php:77 src/Tribe/Validate.php:112
3695
+ #: src/Tribe/Validate.php:118
3696
  msgid "Field ID:"
3697
  msgstr "ID на поле:"
3698
 
3699
+ #: src/Tribe/Validate.php:111
3700
  msgid "Non-existant field validation function passed"
3701
  msgstr "Изпратена е несъществуваща функция за валидиране на полето"
3702
 
3703
+ #: src/Tribe/Validate.php:112
3704
  msgctxt "non-existant function name passed for field validation"
3705
  msgid "with function name:"
3706
  msgstr "with function name:"
3707
 
3708
+ #: src/Tribe/Validate.php:135 src/Tribe/Validate.php:151
3709
  msgid "%s must contain numbers and letters only"
3710
  msgstr "%s трябва да съдържа само цифри и букви"
3711
 
3712
+ #: src/Tribe/Validate.php:167
3713
  msgid "%s must contain numbers, letters and dots only"
3714
  msgstr "%s трябва да съдържа само цифри, букви и точки"
3715
 
3716
+ #: src/Tribe/Validate.php:181
3717
  msgid "%s must be a positive number."
3718
  msgstr "%s трябва да е положително число."
3719
 
3720
+ #: src/Tribe/Validate.php:196
3721
  msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
3722
  msgstr "%s трябва да е валиден низ (числа, букви, тире и долно тире)."
3723
 
3724
+ #: src/Tribe/Validate.php:211
3725
  msgid "%s must be a valid absolute URL."
3726
  msgstr "%s трябва да е валиден абсолюрен URL."
3727
 
3728
+ #: src/Tribe/Validate.php:227 src/Tribe/Validate.php:244
3729
+ #: src/Tribe/Validate.php:266
3730
  msgid "%s must have a value that's part of its options."
3731
  msgstr "%s трябва да има стойност, която отговаря на една от възможноте опции."
3732
 
3733
+ #: src/Tribe/Validate.php:280
3734
  msgid "Comparison validation failed because no comparison value was provided, for field %s"
3735
  msgstr "Валидирането на сравнението се провали, тъй като не е зададена стойност за сравнение в полето %s"
3736
 
3737
+ #: src/Tribe/Validate.php:287
3738
  msgid "%s cannot be the same as %s."
3739
  msgstr "%s не може да съвпада с %s."
3740
 
3741
+ #: src/Tribe/Validate.php:289
3742
  msgid "%s cannot be a duplicate"
3743
  msgstr "%s не може да се дублира"
3744
 
3745
+ #: src/Tribe/Validate.php:305
3746
  msgid "%s must be a number or percentage."
3747
  msgstr "%s трябва да е номер или процент."
3748
 
3749
+ #: src/Tribe/Validate.php:359
3750
  msgid "%s must be a number between 0 and 21."
3751
  msgstr "%s трябва да е число между 0 и 21."
3752
 
3753
+ #: src/Tribe/Validate.php:375
3754
  msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
3755
  msgstr "%s трябва да съдържа само букви, цифри, тирета, апострофи и интервали."
3756
 
3757
+ #: src/Tribe/Validate.php:391
3758
  msgid "%s must consist of letters, spaces, apostrophes, and dashes."
3759
  msgstr "%s трябва да съдържа само букви, интервали, апострофи и тирета."
3760
 
3761
+ #: src/Tribe/Validate.php:405
3762
  msgid "%s must consist of 5 numbers."
3763
  msgstr "%s трябва да съдържа 5 цифри."
3764
 
3765
+ #: src/Tribe/Validate.php:419
3766
  msgid "%s must be a phone number."
3767
  msgstr "%s трябва да е валиден телефонен номер."
3768
 
3769
+ #: src/Tribe/Validate.php:435
3770
  msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
3771
  msgstr "Списъка със страните трябва да съдържа по една страна на ред и да бъде в следния формат: <br>САЩ, Съединени Американски щати <br> БГ, България."
3772
 
3773
+ #: src/Tribe/View_Helpers.php:26 src/Tribe/View_Helpers.php:45
3774
  msgid "Select a Country:"
3775
  msgstr "Избор на страна:"
lang/tribe-events-calendar-ca.mo CHANGED
Binary file
lang/tribe-events-calendar-ca.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the The Events Calendar package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-07-21 14:54:20+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,3668 +10,3766 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: The Events Calendar\n"
12
 
13
- #: ../src/Tribe/Activation_Page.php:39
14
- msgid "Go to plugins page"
15
  msgstr ""
16
 
17
- #: ../src/Tribe/Activation_Page.php:39
18
- msgid "Return to Plugins page"
19
  msgstr ""
20
 
21
- #: ../src/Tribe/Activation_Page.php:47
22
- msgid "Go to WordPress Updates page"
23
  msgstr ""
24
 
25
- #: ../src/Tribe/Activation_Page.php:47
26
- msgid "Return to WordPress Updates"
27
  msgstr ""
28
 
29
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88
30
- msgid "Create New %s"
31
  msgstr ""
32
 
33
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:149
34
- msgid "Add another organizer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  msgstr ""
36
 
37
- #: ../src/Tribe/Cost_Utils.php:108
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  msgctxt "Cost range separator"
39
  msgid " - "
40
- msgstr ""
41
 
42
- #: ../src/Tribe/PUE/Checker.php:416
43
  msgid "unknown date"
44
- msgstr ""
45
 
46
- #: ../src/Tribe/Support.php:142
47
  msgid "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
48
- msgstr ""
49
 
50
- #: ../src/admin-views/tribe-options-help.php:94
51
  msgid "If you're looking for help with The Events Calendar, you've come to the right place. We are committed to helping make your calendar be spectacular... and hope the resources provided below will help get you there."
52
- msgstr ""
53
 
54
- #: ../src/admin-views/tribe-options-help.php:142
55
  msgid "Hi! We are Modern Tribe and we are here to help you be awesome. Thanks so much for installing our labor of love!"
56
- msgstr ""
57
 
58
- #: ../src/admin-views/tribe-options-help.php:151
59
  msgid "Support Resources To Help You Be Awesome"
60
- msgstr ""
61
 
62
- #: ../src/admin-views/tribe-options-licenses.php:17
63
  msgid ""
64
  "<strong> Using our plugins in a multisite network? </strong>\n"
65
  "\t\tPlease note that your license key will be applied to the entire network, not just this site."
66
  msgstr ""
 
 
67
 
68
- #: ../src/admin-views/tribe-options-licenses.php:20
69
  msgid ""
70
  "Only license fields for <strong>network activated</strong> plugins will be\n"
71
  "\t\tlisted on this screen. "
72
  msgstr ""
 
 
73
 
74
- #: ../src/Tribe/View_Helpers.php:334
75
  msgid "Louisiana"
76
  msgstr "Louisiana"
77
 
78
- #: ../src/admin-views/tribe-options-help.php:132
79
- msgid "If you find that you aren't getting the level of service you've come to expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us why. We'll do what we can to make it right."
80
- msgstr "Si vostè creu que no està rebent el nivell de servei que cap esperar de Modern Tribe, envïins un e-mail a %s o un tweet a %s i díguins el perquè. Farem el possible per solucionar-ho."
81
-
82
- #: ../src/Tribe/View_Helpers.php:335
83
  msgid "Maine"
84
  msgstr "Maine"
85
 
86
- #: ../src/admin-views/tribe-options-help.php:133
87
  msgid "More..."
88
  msgstr "Més..."
89
 
90
- #: ../src/Tribe/View_Helpers.php:336
91
  msgid "Maryland"
92
  msgstr "Maryland"
93
 
94
- #: ../src/Tribe/View_Helpers.php:337
95
  msgid "Massachusetts"
96
  msgstr "Massachussets"
97
 
98
- #: ../src/Tribe/View_Helpers.php:338
99
  msgid "Michigan"
100
  msgstr "Michigan"
101
 
102
- #: ../src/admin-views/tribe-options-help.php:154
103
  msgid "Forums: Because Everyone Needs A Buddy"
104
- msgstr "Forums: Perquè tothom necessita un company"
105
 
106
- #: ../src/Tribe/View_Helpers.php:339
107
  msgid "Minnesota"
108
  msgstr "Minnesota"
109
 
110
- #: ../src/admin-views/tribe-options-help.php:157
111
  msgid "Not getting help?"
112
  msgstr "No resulta d'ajuda?"
113
 
114
- #: ../src/Tribe/View_Helpers.php:340
115
  msgid "Mississippi"
116
- msgstr "Mississippi"
117
 
118
- #: ../src/admin-views/tribe-options-help.php:174
119
  msgid "Latest Version:"
120
  msgstr "Última versió:"
121
 
122
- #: ../src/Tribe/View_Helpers.php:341
123
  msgid "Missouri"
124
  msgstr "Missouri"
125
 
126
- #: ../src/admin-views/tribe-options-help.php:176
127
  msgid "Author:"
128
  msgstr "Autor:"
129
 
130
- #: ../src/Tribe/View_Helpers.php:342
131
  msgid "Montana"
132
  msgstr "Montana"
133
 
134
- #: ../src/admin-views/tribe-options-help.php:176
135
  msgid "Modern Tribe Inc"
136
  msgstr "Modern Tribe Inc"
137
 
138
- #: ../src/Tribe/View_Helpers.php:343
139
  msgid "Nebraska"
140
  msgstr "Nebraska"
141
 
142
- #: ../src/admin-views/tribe-options-help.php:179
143
  msgid "Requires:"
144
  msgstr "Requereix:"
145
 
146
- #: ../src/Tribe/View_Helpers.php:344
147
  msgid "Nevada"
148
  msgstr "Nevada"
149
 
150
- #: ../src/admin-views/tribe-options-help.php:179
151
  msgid "WordPress "
152
  msgstr "WordPress "
153
 
154
- #: ../src/Tribe/View_Helpers.php:345
155
  msgid "New Hampshire"
156
- msgstr "New Hampshire"
157
 
158
- #: ../src/admin-views/tribe-options-help.php:181
159
  msgid "Wordpress.org Plugin Page"
160
  msgstr "Pàgina de plugins de Wordpress.org"
161
 
162
- #: ../src/Tribe/View_Helpers.php:346
163
  msgid "New Jersey"
164
- msgstr "New Jersey"
165
 
166
- #: ../src/admin-views/tribe-options-help.php:187
167
  msgid "Average Rating"
168
  msgstr "Valoracions"
169
 
170
- #: ../src/Tribe/View_Helpers.php:347
171
  msgid "New Mexico"
172
- msgstr "New Mexico"
173
 
174
- #: ../src/admin-views/tribe-options-help.php:193
175
  msgid "Based on %d rating"
176
  msgid_plural "Based on %d ratings"
177
  msgstr[0] "Basat en %d valoració"
178
  msgstr[1] "Basat en %d valoracions"
179
 
180
- #: ../src/Tribe/View_Helpers.php:348
181
  msgid "New York"
182
- msgstr "New York"
183
 
184
- #: ../src/admin-views/tribe-options-help.php:195
185
  msgid "Give us 5 stars!"
186
  msgstr "Dóna'ns 5 estrelles!"
187
 
188
- #: ../src/Tribe/View_Helpers.php:349
189
  msgid "North Carolina"
190
- msgstr "North Carolina"
191
 
192
- #: ../src/admin-views/tribe-options-help.php:199
193
  msgid "Premium Add-Ons"
194
- msgstr "Complements (Add-Ons) Premium"
195
 
196
- #: ../src/Tribe/View_Helpers.php:350
197
  msgid "North Dakota"
198
- msgstr "North Dakota"
199
 
200
- #: ../src/admin-views/tribe-options-help.php:208
201
  msgid "(Coming Soon!)"
202
  msgstr "(Pròximament!)"
203
 
204
- #: ../src/Tribe/View_Helpers.php:351
205
  msgid "Ohio"
206
  msgstr "Ohio"
207
 
208
- #: ../src/admin-views/tribe-options-help.php:218
209
  msgid "News and Tutorials"
210
  msgstr "Notícies i tutorials"
211
 
212
- #: ../src/Tribe/View_Helpers.php:352
213
  msgid "Oklahoma"
214
  msgstr "Oklahoma"
215
 
216
- #: ../src/admin-views/tribe-options-network.php:15
217
  msgid "Network Settings"
218
- msgstr "Ajustaments de xarxa"
219
 
220
- #: ../src/Tribe/View_Helpers.php:353
221
  msgid "Oregon"
222
  msgstr "Oregon"
223
 
224
- #: ../src/admin-views/tribe-options-network.php:19
225
  msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
226
- msgstr "Aquí es on es poden modificar tots els ajustaments de xarxa de The Events Calendar de Modern Tribe."
227
 
228
- #: ../src/Tribe/View_Helpers.php:354
229
  msgid "Pennsylvania"
230
- msgstr "Pennsylvania"
231
 
232
- #: ../src/admin-views/tribe-options-network.php:27
233
  msgid "Hide the following settings tabs on every site:"
234
- msgstr "Amaga les següents pestanyes d'ajustaments a cada lloc web:"
235
 
236
- #: ../src/Tribe/View_Helpers.php:355
237
  msgid "Rhode Island"
238
  msgstr "Rhode Island"
239
 
240
- #: ../src/admin-views/venue-meta-box.php:34
241
- #: ../src/functions/advanced-functions/meta_registration.php:176
 
242
  msgid "Address:"
243
  msgstr "Adreça:"
244
 
245
- #: ../src/Tribe/View_Helpers.php:356
246
  msgid "South Carolina"
247
- msgstr "South Carolina"
248
 
249
- #: ../src/admin-views/venue-meta-box.php:41
250
  msgid "City:"
251
  msgstr "Ciutat:"
252
 
253
- #: ../src/Tribe/View_Helpers.php:357
254
  msgid "South Dakota"
255
- msgstr "South Dakota"
256
 
257
- #: ../src/admin-views/venue-meta-box.php:48
258
  msgid "Country:"
259
  msgstr "País:"
260
 
261
- #: ../src/Tribe/View_Helpers.php:358
262
  msgid "Tennessee"
263
  msgstr "Tennessee"
264
 
265
- #: ../src/admin-views/venue-meta-box.php:88
266
  msgid "State or Province:"
267
  msgstr "Estat o província:"
268
 
269
- #: ../src/Tribe/View_Helpers.php:359
270
  msgid "Texas"
271
  msgstr "Texas"
272
 
273
- #: ../src/admin-views/venue-meta-box.php:92
274
  msgid "Select a State:"
275
  msgstr "Tria un estat:"
276
 
277
- #: ../src/Tribe/View_Helpers.php:360
278
  msgid "Utah"
279
  msgstr "Utah"
280
 
281
- #: ../src/admin-views/venue-meta-box.php:105
282
  msgid "Postal Code:"
283
  msgstr "Codi postal:"
284
 
285
- #: ../src/Tribe/View_Helpers.php:361
286
  msgid "Vermont"
287
  msgstr "Vermont"
288
 
289
- #: ../src/admin-views/venue-meta-box.php:137
290
- #: ../src/admin-views/venue-meta-box.php:159
291
  msgid "Show Google Map:"
292
  msgstr "Mostra Google Map:"
293
 
294
- #: ../src/Tribe/View_Helpers.php:362
295
  msgid "Virginia"
296
- msgstr "Virginia"
297
 
298
- #: ../src/admin-views/venue-meta-box.php:147
299
- #: ../src/admin-views/venue-meta-box.php:169
300
  msgid "Show Google Maps Link:"
301
  msgstr "Mostra l'enllaç a Google Maps:"
302
 
303
- #: ../src/Tribe/View_Helpers.php:363
304
  msgid "Washington"
305
  msgstr "Washington"
306
 
307
- #: ../src/admin-views/widget-admin-list.php:13
308
  msgid "Title:"
309
  msgstr "Títol:"
310
 
311
- #: ../src/Tribe/View_Helpers.php:364
312
  msgid "West Virginia"
313
- msgstr "West Virginia"
314
 
315
- #: ../src/admin-views/widget-admin-list.php:18
316
  msgid "Show:"
317
  msgstr "Mostra:"
318
 
319
- #: ../src/Tribe/View_Helpers.php:365
320
  msgid "Wisconsin"
321
  msgstr "Wisconsin"
322
 
323
- #: ../src/admin-views/widget-admin-list.php:28
324
  msgid "Show widget only if there are upcoming events:"
325
- msgstr "Mostra el giny només si hi ha pròxims esdeveniments:"
326
 
327
- #: ../src/Tribe/View_Helpers.php:366
328
  msgid "Wyoming"
329
  msgstr "Wyoming"
330
 
331
- #: ../src/functions/advanced-functions/meta_registration.php:16
332
- #: ../src/views/modules/meta/details.php:30
333
  msgid "Details"
334
  msgstr "Detalls"
335
 
336
- #: ../src/Tribe/iCal.php:28
337
  msgctxt "feed link"
338
  msgid "&raquo;"
339
  msgstr "&raquo;"
340
 
341
- #: ../src/functions/advanced-functions/meta_registration.php:80
342
  msgid "Event Tags:"
343
  msgstr "Etiquetes d'esdeveniments:"
344
 
345
- #: ../src/Tribe/iCal.php:29
346
  msgid "%1$s %2$s iCal Feed"
347
  msgstr "%1$s %2$s Feed iCal"
348
 
349
- #: ../src/functions/advanced-functions/meta_registration.php:112
350
  msgid "Origin:"
351
  msgstr "Orígen:"
352
 
353
- #: ../src/Tribe/iCal.php:75
354
  msgid "Add to Google Calendar"
355
  msgstr "Afegeix a Google Calendar"
356
 
357
- #: ../src/functions/advanced-functions/meta_registration.php:286
358
  msgid "%s:"
359
  msgstr "%s:"
360
 
361
- #: ../src/Tribe/iCal.php:75
362
  msgid "Google Calendar"
363
  msgstr "Google Calendar"
364
 
365
- #: ../src/functions/template-tags/date.php:285
366
  msgid "The function needs to be passed an $event or used in the loop."
367
- msgstr "La funció necessita ser passada com a $event o utilitzada al bucle."
368
 
369
- #: ../src/Tribe/iCal.php:76
370
  msgid "Download .ics file"
371
  msgstr "Baixa el fitxer .ics"
372
 
373
- #: ../src/functions/template-tags/day.php:107
374
  msgid "<span>&laquo;</span> Previous Day"
375
  msgstr "<span>&laquo;</span> Dia anterior"
376
 
377
- #: ../src/Tribe/iCal.php:76
378
  msgid "iCal Export"
379
  msgstr "Exportar iCal"
380
 
381
- #: ../src/functions/template-tags/day.php:109
382
  msgid "Next Day <span>&raquo;</span>"
383
  msgstr "Dia següent <span>&raquo;</span>"
384
 
385
- #: ../src/Tribe/iCal.php:106
386
  msgid "Month's %s"
387
- msgstr ""
388
 
389
- #: ../src/functions/template-tags/day.php:111
390
  msgid "Yesterday"
391
  msgstr "Ahir"
392
 
393
- #: ../src/Tribe/iCal.php:109
394
  msgid "Week's %s"
395
- msgstr ""
396
 
397
- #: ../src/functions/template-tags/day.php:113
398
  msgid "Tomorrow"
399
  msgstr "Demà"
400
 
401
- #: ../src/Tribe/iCal.php:112
402
  msgid "Day's %s"
403
- msgstr ""
404
 
405
- #: ../src/functions/template-tags/deprecated.php:1283
406
  msgid "Category"
407
  msgstr "Categoria"
408
 
409
- #: ../src/Tribe/iCal.php:115
410
  msgid "Listed %s"
411
- msgstr ""
412
 
413
- #: ../src/functions/template-tags/general.php:441
414
  msgid "Tags:"
415
  msgstr "Etiquetes:"
416
 
417
- #: ../src/Tribe/iCal.php:120
418
  msgid "Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps"
419
  msgstr "Utilitza-ho per compartir informació del calendari a través de Google Calendar, Apple iCal i altres aplicacions compatibles."
420
 
421
- #: ../src/functions/template-tags/general.php:553
422
  msgid "Loading %s"
423
  msgstr "Carregant %s"
424
 
425
- #: ../src/admin-views/admin-update-message.php:9
426
- #: ../src/admin-views/admin-welcome-message.php:11
427
  msgid "You are running Version %s and deserve a hug :-)"
428
  msgstr "Estàs fent servir la versió %s i et mereixes una abraçada :-)"
429
 
430
- #: ../src/Tribe/Cost_Utils.php:123
431
  msgid "Free"
432
  msgstr "Gratuït"
433
 
434
- #: ../src/admin-views/admin-update-message.php:32
435
  msgid "Keep the Core Plugin <strong>FREE</strong>!"
436
- msgstr ""
437
 
438
- #: ../src/functions/template-tags/general.php:1455
439
  msgid "Calendar powered by %sThe Events Calendar%s"
440
- msgstr ""
441
 
442
- #: ../src/admin-views/admin-update-message.php:33
443
  msgid "Every time you rate <strong>5 stars</strong>, a fairy is born. Okay maybe not, but more happy users mean more contributions and help on the forums. The community NEEDS your voice."
444
- msgstr ""
445
 
446
- #: ../src/functions/template-tags/loop.php:131
447
  msgid "Upcoming %s"
448
  msgstr "Propers %s"
449
 
450
- #: ../src/admin-views/admin-update-message.php:34
451
- #: ../src/admin-views/admin-welcome-message.php:22
452
  msgid "Rate It"
453
  msgstr "Valora-ho"
454
 
455
- #: ../src/functions/template-tags/loop.php:145
456
  msgid "%1$s for %2$s - %3$s"
457
  msgstr "%1$s per %2$s - %3$s"
458
 
459
- #: ../src/admin-views/admin-update-message.php:37
460
  msgid "PSST... Want a Discount?"
461
  msgstr "Pssst... vols un descompte?"
462
 
463
- #: ../src/functions/template-tags/loop.php:147
464
  msgid "Past %s"
465
- msgstr ""
466
 
467
- #: ../src/admin-views/admin-update-message.php:38
468
  msgid "We send out discounts to our core users via our newsletter."
469
- msgstr ""
470
 
471
- #: ../src/functions/template-tags/loop.php:152
472
- #: ../src/functions/template-tags/loop.php:161
473
  msgid "%1$s for %2$s"
474
  msgstr "%1$s per %2$s"
475
 
476
- #: ../src/admin-views/admin-update-message.php:43
477
- #: ../src/admin-views/admin-welcome-message.php:31
478
  msgid "Sign Up"
479
- msgstr ""
480
 
481
- #: ../src/functions/template-tags/options.php:20
482
  msgid "Your current Events URL is %s"
483
- msgstr ""
484
 
485
- #: ../src/admin-views/admin-update-message.php:49
486
  msgid "Looking for Something Special?"
487
  msgstr "Estàs buscant alguna cosa especial?"
488
 
489
- #: ../src/functions/template-tags/options.php:29
490
  msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
491
- msgstr ""
492
 
493
- #: ../src/admin-views/admin-update-message.php:51
494
  msgid "Pro"
495
  msgstr "Pro"
496
 
497
- #: ../src/io/csv/admin-views/columns.php:22
498
  msgid "Column Mapping: %s"
499
- msgstr ""
500
 
501
- #: ../src/admin-views/admin-update-message.php:53
502
  msgid "Community Events"
503
- msgstr "Esdeveniments de la comunitat"
504
 
505
- #: ../src/io/csv/admin-views/columns.php:27
506
  msgid "Columns have been mapped based on your last import. Please ensure the selected fields match the columns in your CSV file."
507
- msgstr ""
508
 
509
- #: ../src/admin-views/admin-update-message.php:54
510
  msgid "Filters"
511
  msgstr "Filtres"
512
 
513
- #: ../src/io/csv/admin-views/columns.php:32
514
  msgid "Column Headings"
515
  msgstr "Capceleres de columna"
516
 
517
- #: ../src/admin-views/admin-update-message.php:55
518
  msgid "Facebook"
519
  msgstr "Facebook"
520
 
521
- #: ../src/io/csv/admin-views/columns.php:33
522
  msgid "Event Fields"
523
  msgstr "Camps de esdeveniments"
524
 
525
- #: ../src/admin-views/admin-update-message.php:58
526
- #: ../src/admin-views/admin-welcome-message.php:53
527
  msgid "News For Events Users"
528
  msgstr "Notícies per usuaris de Events"
529
 
530
- #: ../src/io/csv/admin-views/columns.php:44
531
  msgid "Perform Import"
532
  msgstr "Importar"
533
 
534
- #: ../src/admin-views/admin-welcome-message.php:19
535
  msgid "Keep The Events Calendar Core FREE"
536
  msgstr "Mantenir The Events Calendar Core GRATUÏT"
537
 
538
- #: ../src/io/csv/admin-views/general.php:10
539
  msgid "The Events Calendar: Import"
540
  msgstr "The Events Calendar: Importació"
541
 
542
- #: ../src/admin-views/admin-welcome-message.php:20
543
  msgid "5 star ratings help us bring TEC to more users. More happy users mean more support, more features, and more of everything you know and love about The Events Calendar. We couldn't do this without your support."
544
- msgstr ""
545
 
546
- #: ../src/io/csv/admin-views/general.php:12
547
  msgid "Instructions"
548
  msgstr "Instruccions"
549
 
550
- #: ../src/admin-views/admin-welcome-message.php:21
551
  msgid "Rate it five stars today!"
552
- msgstr "Valora-ho amb 5 estrelles avui!"
553
 
554
- #: ../src/io/csv/admin-views/general.php:14
555
  msgid "To import events, first select a %sDefault Import Event Status%s below to assign to your imported events."
556
- msgstr ""
557
 
558
- #: ../src/admin-views/admin-welcome-message.php:25
559
  msgid "Newsletter Signup"
560
- msgstr ""
561
 
562
- #: ../src/io/csv/admin-views/general.php:17
563
  msgid "Once your setting is saved, move to the applicable Import tab to select import specific criteria."
564
- msgstr ""
565
 
566
- #: ../src/admin-views/admin-welcome-message.php:26
567
  msgid "Stay in touch with The Events Calendar Pro. We send out periodic updates, key developer notices, and even the occasional discount."
568
- msgstr ""
569
 
570
- #: ../src/io/csv/admin-views/general.php:24
571
  msgid "Import Settings"
572
- msgstr "Importar ajustaments"
573
 
574
- #: ../src/admin-views/admin-welcome-message.php:40
575
- #: ../src/admin-views/tribe-options-help.php:148
576
  msgid "Getting Started"
577
  msgstr "Començar"
578
 
579
- #: ../src/io/csv/admin-views/general.php:27
580
  msgid "Default imported event status:"
581
- msgstr ""
582
 
583
- #: ../src/admin-views/admin-welcome-message.php:41
584
  msgid "Check out the New User Primer &amp; Tutorials"
585
- msgstr ""
586
 
587
- #: ../src/io/csv/admin-views/general.php:30
588
  msgid "Published"
589
  msgstr "Publicat"
590
 
591
- #: ../src/admin-views/admin-welcome-message.php:43
592
  msgid "Looking for More Features?"
593
  msgstr "Estàs buscant més funcionalitats?"
594
 
595
- #: ../src/io/csv/admin-views/general.php:31
596
  msgid "Pending"
597
  msgstr "Pendent"
598
 
599
- #: ../src/admin-views/admin-welcome-message.php:44
600
  msgid "Addons for Community, Tickets, Filters, Facebook and more."
601
- msgstr ""
602
 
603
- #: ../src/io/csv/admin-views/general.php:32
604
  msgid "Draft"
605
  msgstr "Esborrany"
606
 
607
- #: ../src/admin-views/admin-welcome-message.php:46
608
  msgid "Support Resources"
609
- msgstr ""
610
 
611
- #: ../src/io/csv/admin-views/header.php:17
612
  msgid "Events Import"
613
- msgstr ""
614
 
615
- #: ../src/admin-views/admin-welcome-message.php:47
616
  msgid "FAQs, Documentation, Tutorials and Forums"
617
- msgstr ""
618
 
619
- #: ../src/io/csv/admin-views/import.php:17
620
  msgid "Import Instructions"
621
- msgstr ""
622
 
623
- #: ../src/admin-views/admin-welcome-message.php:50
624
  msgid "Release Notes"
625
  msgstr "Notes de la versió"
626
 
627
- #: ../src/io/csv/admin-views/import.php:20
628
  msgid "If your events have Organizers or Venues, please import those first."
629
- msgstr ""
630
 
631
- #: ../src/admin-views/admin-welcome-message.php:51
632
  msgid "Get the Skinny on the Latest Updates"
633
- msgstr ""
634
 
635
- #: ../src/io/csv/admin-views/import.php:21
636
  msgid "To import organizers or venues:"
637
  msgstr "Per importar organitzadors i recintes:"
638
 
639
- #: ../src/admin-views/admin-welcome-message.php:54
640
  msgid "Product Releases, Tutorials and Community Activity"
641
  msgstr "Llençaments, tutorials i activitat de la comunitat"
642
 
643
- #: ../src/io/csv/admin-views/import.php:23
644
  msgid "Select the appropriate import type."
645
- msgstr "Selecciona el tipus apropiat d'importació."
646
 
647
- #: ../src/admin-views/app-shop.php:4
648
  msgid "Tribe Event Add-Ons"
649
- msgstr ""
650
 
651
- #: ../src/io/csv/admin-views/import.php:24
652
- #: ../src/io/csv/admin-views/import.php:30
653
  msgid "Upload a CSV file with one record on each line. The first line may contain column names (check the box below)."
654
- msgstr ""
655
 
656
- #: ../src/admin-views/app-shop.php:54
657
  msgid "Version"
658
  msgstr "Versió"
659
 
660
- #: ../src/io/csv/admin-views/import.php:25
661
  msgid "One column in your CSV should have the Organizer/Venue name. All other fields are optional."
662
- msgstr ""
663
 
664
- #: ../src/admin-views/app-shop.php:57
665
  msgid "Last Update"
666
  msgstr "Darrera actualització"
667
 
668
- #: ../src/io/csv/admin-views/import.php:26
669
- #: ../src/io/csv/admin-views/import.php:32
670
  msgid "After you upload your file, you'll have the opportunity to indicate how the columns in your CSV map to fields in The Events Calendar."
671
- msgstr ""
672
 
673
- #: ../src/admin-views/event-sidebar-options.php:13
674
  msgid "Hide From %s Listings"
675
- msgstr ""
676
 
677
- #: ../src/io/csv/admin-views/import.php:28
678
  msgid "After importing your Organizers and Venues, import your Events:"
679
  msgstr "Després d'importar els teus organitzadors i recintes, importa els teus esdeveniments:"
680
 
681
- #: ../src/admin-views/event-sidebar-options.php:15
682
  msgid "Sticky in Month View"
683
- msgstr ""
684
 
685
- #: ../src/io/csv/admin-views/import.php:31
686
  msgid "One column in your CSV should have the Event title. Another should have the Event start date. All other fields are optional."
687
- msgstr ""
688
 
689
- #: ../src/admin-views/event-sidebar-options.php:16
690
  msgid "When events are sticky in month view, they'll display first in the list of events shown within a given day block."
691
- msgstr ""
692
 
693
- #: ../src/io/csv/admin-views/import.php:36
694
  msgid "Questions? <a href=\"%s\">Watch the video</a>."
695
- msgstr ""
696
 
697
- #: ../src/admin-views/events-meta-box.php:37
698
  msgid "Time &amp; Date"
699
  msgstr "Hora i data"
700
 
701
- #: ../src/io/csv/admin-views/import.php:43
702
  msgid "Import Type:"
703
  msgstr "Tipus d'importació:"
704
 
705
- #: ../src/admin-views/events-meta-box.php:44
706
  msgid "You have changed the recurrence rules of this %1$s. Saving the %1$s will update all future %2$s. If you did not mean to change all %2$s, then please refresh the page."
707
- msgstr ""
708
 
709
- #: ../src/io/csv/admin-views/import.php:55
710
  msgid "CSV File:"
711
  msgstr "Fitxer CSV:"
712
 
713
- #: ../src/admin-views/events-meta-box.php:47
714
  msgid "All Day %s:"
715
- msgstr ""
716
 
717
- #: ../src/io/csv/admin-views/import.php:59
718
  msgid "Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file is UTF-8 encoded? Make sure to specify the character encoding when you save the file, or pass it through a <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>conversion tool</a>."
719
- msgstr ""
720
 
721
- #: ../src/admin-views/events-meta-box.php:53
722
  msgid "Start Date &amp; Time:"
723
  msgstr "Data i hora d'inici"
724
 
725
- #: ../src/io/csv/admin-views/import.php:67
726
  msgid "This file has column names in the first row"
727
- msgstr ""
728
 
729
- #: ../src/admin-views/events-meta-box.php:57
730
- #: ../src/admin-views/events-meta-box.php:78
731
  msgid "YYYY-MM-DD"
732
  msgstr "AAAA-MM-DD"
733
 
734
- #: ../src/io/csv/admin-views/import.php:78
735
  msgid "Import CSV File"
736
  msgstr "Importar fitxer CSV"
737
 
738
- #: ../src/admin-views/events-meta-box.php:75
739
  msgid "End Date &amp; Time:"
740
  msgstr "Data i hora de finalització:"
741
 
742
- #: ../src/io/csv/admin-views/result.php:15
743
  msgid "Import Result"
744
  msgstr "Resultat de la importació"
745
 
746
- #: ../src/admin-views/events-meta-box.php:103
747
  msgid "Location"
748
  msgstr "Ubicació:"
749
 
750
- #: ../src/io/csv/admin-views/result.php:17
751
  msgid "Import complete!"
752
  msgstr "Importació completada!"
753
 
754
- #: ../src/admin-views/events-meta-box.php:124
755
  msgid "%s Website"
756
- msgstr ""
757
 
758
- #: ../src/io/csv/admin-views/result.php:19
759
  msgid "Inserted: %d"
760
  msgstr "Inserits: %d"
761
 
762
- #: ../src/admin-views/events-meta-box.php:127
763
  msgid "URL:"
764
  msgstr "URL:"
765
 
766
- #: ../src/io/csv/admin-views/result.php:20
767
  msgid "Updated: %d"
768
  msgstr "Actualitzats: %d"
769
 
770
- #: ../src/admin-views/events-meta-box.php:141
771
  msgid "%s Cost"
772
- msgstr ""
773
 
774
- #: ../src/io/csv/admin-views/result.php:21
775
  msgid "Skipped: %d"
776
  msgstr "Saltats: %d"
777
 
778
- #: ../src/admin-views/events-meta-box.php:144
779
  msgid "Currency Symbol:"
780
- msgstr "Símbol de moneda:"
781
 
782
- #: ../src/io/csv/admin-views/result.php:25
783
  msgid "The import statistics above have the following meaning:"
784
- msgstr "Les estadístiques d'importació de damunt tenen el següent significat:"
785
 
786
- #: ../src/admin-views/events-meta-box.php:159
787
  msgctxt "Currency symbol position"
788
  msgid "Before cost"
789
  msgstr "Abans del cost"
790
 
791
- #: ../src/io/csv/admin-views/result.php:26
792
  msgid "<ol><li><strong>Inserted:</strong> A new item was inserted successfully.</li><li><strong>Updated:</strong> An item was found with the same name and/or start date. The existing item was updated with the new value from the file.</li><li><strong>Skipped:</strong> A row was found in the CSV file that could not be imported. Please see below for the invalid rows.</li></ol>"
793
- msgstr ""
794
 
795
- #: ../src/admin-views/events-meta-box.php:162
796
  msgctxt "Currency symbol position"
797
  msgid "After cost"
798
  msgstr "Després del cost"
799
 
800
- #: ../src/io/csv/admin-views/result.php:29
801
  msgid "Skipped row numbers: %s"
802
  msgstr "Números de fila saltats: %s"
803
 
804
- #: ../src/admin-views/events-meta-box.php:167
805
- #: ../src/functions/advanced-functions/meta_registration.php:48
806
- #: ../src/views/modules/meta/details.php:100
807
  msgid "Cost:"
808
  msgstr "Cost:"
809
 
810
- #: ../src/admin-views/events-meta-box.php:175
811
  msgid "Enter a 0 for %s that are free or leave blank to hide the field."
812
- msgstr ""
813
 
814
- #: ../src/admin-views/new-organizer-meta-section.php:15
815
- #: ../src/admin-views/organizer-meta-box.php:15
816
- #: ../src/admin-views/venue-meta-box.php:25
817
  msgid "%s Name:"
818
- msgstr ""
819
 
820
- #: ../src/views/day/nav.php:16
821
  msgid "Day Navigation"
822
- msgstr ""
823
-
824
- #: ../src/admin-views/new-organizer-meta-section.php:21
825
- #: ../src/admin-views/organizer-meta-box.php:22
826
- #: ../src/admin-views/tickets/attendees.php:52
827
- #: ../src/admin-views/venue-meta-box.php:112
828
- #: ../src/functions/advanced-functions/meta_registration.php:159
829
- #: ../src/functions/advanced-functions/meta_registration.php:238
830
- #: ../src/views/modules/meta/organizer.php:41
831
- #: ../src/views/modules/meta/venue.php:40
832
  msgid "Phone:"
833
- msgstr ""
834
 
835
- #: ../src/views/day/single-event.php:66 ../src/views/list/single-event.php:70
836
  msgid "Find out more"
837
  msgstr "Per saber-ne més"
838
 
839
- #: ../src/admin-views/new-organizer-meta-section.php:27
840
- #: ../src/admin-views/organizer-meta-box.php:28
841
- #: ../src/admin-views/tickets/attendees.php:61
842
- #: ../src/admin-views/venue-meta-box.php:119
843
- #: ../src/functions/advanced-functions/meta_registration.php:96
844
- #: ../src/functions/advanced-functions/meta_registration.php:191
845
- #: ../src/functions/advanced-functions/meta_registration.php:270
846
- #: ../src/views/modules/meta/details.php:125
847
- #: ../src/views/modules/meta/organizer.php:63
848
- #: ../src/views/modules/meta/venue.php:45
849
  msgid "Website:"
850
  msgstr "Web:"
851
 
852
- #: ../src/views/list/nav.php:19
853
  msgid "%s List Navigation"
854
- msgstr ""
855
 
856
- #: ../src/admin-views/new-organizer-meta-section.php:33
857
- #: ../src/admin-views/organizer-meta-box.php:34
858
- #: ../src/functions/advanced-functions/meta_registration.php:254
859
- #: ../src/views/modules/meta/organizer.php:52
860
  msgid "Email:"
861
  msgstr "Correu electrònic:"
862
 
863
- #: ../src/views/list/nav.php:25
864
  msgid "<span>&laquo;</span> Previous %s"
865
  msgstr "<span>&laquo;</span> %s anteriors"
866
 
867
- #: ../src/admin-views/new-organizer-meta-section.php:34
868
- #: ../src/admin-views/organizer-meta-box.php:35
869
  msgid "You may want to consider <a href=\"http://wordpress.org/plugins/tags/obfuscate\">obfuscating</a> any e-mail address published on your site to best avoid it getting harvested by spammers."
870
- msgstr ""
871
 
872
- #: ../src/views/list/nav.php:32
873
  msgid "Next %s <span>&raquo;</span>"
874
  msgstr "%s següents <span>&raquo;</span>"
875
 
876
- #: ../src/admin-views/new-organizer-meta-section.php:60
877
- #: ../src/admin-views/organizer-meta-box.php:57
878
- #: ../src/admin-views/venue-meta-box.php:193
879
  msgid "%s Name Already Exists"
880
- msgstr ""
881
 
882
- #: ../src/views/modules/bar.php:30 ../src/views/modules/bar.php:61
883
  msgid "Find %s"
884
  msgstr "Trobar %s"
885
 
886
- #: ../src/admin-views/tickets/attendees.php:17
887
  msgid "Event Summary"
888
  msgstr "Resum de l'esdeveniment"
889
 
890
- #: ../src/views/modules/bar.php:37
891
  msgid "Event Views Navigation"
892
- msgstr ""
893
 
894
- #: ../src/admin-views/tickets/attendees.php:23
895
  msgid "Event Details"
896
  msgstr "Detalls de l'esdeveniment"
897
 
898
- #: ../src/views/modules/bar.php:38
899
  msgid "View As"
900
  msgstr "Veure com"
901
 
902
- #: ../src/admin-views/tickets/attendees.php:25
903
  msgid "Start Date / Time:"
904
  msgstr "Data / Hora d'inici:"
905
 
906
- #: ../src/views/modules/meta/details.php:119
907
  msgid "%s Tags:"
908
- msgstr ""
909
 
910
- #: ../src/admin-views/tickets/attendees.php:29
911
  msgid "End Date / Time:"
912
  msgstr "Data / Hora de finalització"
913
 
914
- #: ../src/functions/template-tags/general.php:1279
915
  msgid "%s for"
916
- msgstr ""
917
 
918
- #: ../src/admin-views/tickets/attendees.php:69
919
  msgid "Ticket Sales"
920
- msgstr ""
921
 
922
- #: ../src/functions/template-tags/general.php:1278
923
  msgid "Find out more »"
924
  msgstr "Per saber-ne més »"
925
 
926
- #: ../src/admin-views/tickets/attendees.php:86
927
  msgid "(%d awaiting review)"
928
  msgid_plural "(%d awaiting review)"
929
- msgstr[0] ""
930
- msgstr[1] ""
931
 
932
- #: ../src/views/month/nav.php:18
933
  msgid "Calendar Month Navigation"
934
- msgstr ""
935
 
936
- #: ../src/admin-views/tickets/attendees.php:90
937
- msgid "Sold %d %s"
938
- msgstr ""
939
-
940
- #: ../src/views/month/single-day.php:43
941
  msgid "View 1 %1$s"
942
  msgid_plural "View All %2$s %3$s"
943
  msgstr[0] "Veure 1 %1$s"
944
  msgstr[1] "Veure tots %2$s %3$s"
945
 
946
- #: ../src/admin-views/tickets/attendees.php:93
947
- msgid "Sold %d of %d %s"
948
- msgstr ""
949
-
950
- #: ../src/views/single-event.php:27
951
  msgid "&laquo; All %s"
952
- msgstr ""
953
 
954
- #: ../src/admin-views/tickets/attendees.php:111
955
  msgid "Tickets sold:"
956
- msgstr ""
957
 
958
- #: ../src/views/single-event.php:46 ../src/views/single-event.php:91
959
  msgid "%s Navigation"
960
- msgstr ""
961
 
962
- #: ../src/admin-views/tickets/attendees.php:118
963
  msgid "Finalized:"
964
  msgstr "Finalitzat:"
965
 
966
- #: ../src/views/tickets/attendees-email.php:24
967
  msgid "Attendee List"
968
  msgstr "Llista d'assistents"
969
 
970
- #: ../src/admin-views/tickets/attendees.php:121
971
  msgid "Awaiting review:"
972
- msgstr ""
973
 
974
- #: ../src/views/tickets/email.php:26
975
  msgid "Your tickets"
976
- msgstr ""
977
 
978
- #: ../src/admin-views/tickets/attendees.php:128
979
  msgid "Checked in:"
980
- msgstr ""
981
 
982
- #: ../src/views/tickets/email.php:309
983
  msgid "Ticket Type"
984
- msgstr ""
985
 
986
- #: ../src/admin-views/tickets/attendees.php:146
987
  msgid "Send the attendee list by email"
988
- msgstr ""
989
 
990
- #: ../src/views/tickets/email.php:313
991
  msgid "Purchaser"
992
  msgstr "Comprador"
993
 
994
- #: ../src/admin-views/tickets/attendees.php:150
995
  msgid "Select a User:"
996
  msgstr "Selecciona un usuari:"
997
 
998
- #: ../src/views/widgets/list-widget.php:65
999
  msgid "View All %s"
1000
  msgstr "Veure tots %s"
1001
 
1002
- #: ../src/admin-views/tickets/attendees.php:155
1003
  msgid "Select..."
1004
  msgstr "Selecciona..."
1005
 
1006
- #: ../src/views/widgets/list-widget.php:71
1007
  msgid "There are no upcoming %s at this time."
1008
- msgstr "No hi ha propers %s en aquest moment."
1009
 
1010
- #: ../src/admin-views/tickets/attendees.php:160
1011
  msgid "or"
1012
  msgstr "o"
1013
 
1014
- #: ../src/admin-views/tickets/attendees.php:162
1015
  msgid "Email Address:"
1016
  msgstr "Adreça de correu electrònic:"
1017
 
1018
- #: ../src/admin-views/tickets/list.php:21
1019
  msgid "Edit"
1020
  msgstr "Editar"
1021
 
1022
- #: ../src/admin-views/tickets/list.php:24
1023
  msgid "Edit in %s"
1024
  msgstr "Editar a %s"
1025
 
1026
- #: ../src/admin-views/tickets/list.php:27
1027
  msgid "View"
1028
  msgstr "Veure"
1029
 
1030
- #: ../src/admin-views/tickets/list.php:67
1031
  msgid "Sold %d"
1032
- msgstr ""
1033
-
1034
- #: ../src/admin-views/tickets/list.php:69
1035
- msgid "Sold %d of %d"
1036
- msgstr ""
1037
 
1038
- #: ../src/admin-views/tickets/meta-box.php:23
1039
  msgid "This event was created using Community Events. Are you sure you want to sell tickets for it?"
1040
- msgstr ""
1041
 
1042
- #: ../src/admin-views/tickets/meta-box.php:34
1043
  msgid "Upload image for the ticket header"
1044
- msgstr ""
1045
 
1046
- #: ../src/admin-views/tickets/meta-box.php:35
1047
  msgid "The maximum image size in the email will be 580px wide by any height, and then scaled for mobile. If you would like \"retina\" support use an image sized to 1160px wide."
1048
- msgstr ""
1049
 
1050
- #: ../src/admin-views/tickets/meta-box.php:38
1051
  msgid "Select an Image"
1052
  msgstr "Selecciona una imatge"
1053
 
1054
- #: ../src/admin-views/tickets/meta-box.php:46
1055
  msgid "Remove"
1056
  msgstr "Eliminar"
1057
 
1058
- #: ../src/admin-views/tickets/meta-box.php:64
1059
- #: ../src/admin-views/tickets/meta-box.php:74
1060
  msgid "Add new ticket"
1061
- msgstr ""
1062
 
1063
- #: ../src/admin-views/tickets/meta-box.php:75
1064
  msgid "Edit ticket"
1065
- msgstr ""
1066
 
1067
- #: ../src/admin-views/tickets/meta-box.php:80
1068
  msgid "Sell using:"
1069
  msgstr "Vendre utilitzant:"
1070
 
1071
- #: ../src/admin-views/tickets/meta-box.php:97
1072
  msgid "Ticket Name:"
1073
- msgstr ""
1074
 
1075
- #: ../src/admin-views/tickets/meta-box.php:104
1076
  msgid "Ticket Description:"
1077
- msgstr ""
1078
 
1079
- #: ../src/admin-views/tickets/meta-box.php:113
1080
  msgid "Price:"
1081
  msgstr "Preu:"
1082
 
1083
- #: ../src/admin-views/tickets/meta-box.php:119
1084
  msgid "(0 or empty for free tickets)"
1085
- msgstr ""
1086
 
1087
- #: ../src/admin-views/tickets/meta-box.php:125
1088
  msgid "Sale Price:"
1089
- msgstr ""
1090
 
1091
- #: ../src/admin-views/tickets/meta-box.php:131
1092
  msgid "(Current sale price - this can be managed via the product editor)"
1093
- msgstr ""
1094
 
1095
- #: ../src/admin-views/tickets/meta-box.php:137
1096
  msgid "Start sale:"
1097
- msgstr ""
1098
 
1099
- #: ../src/admin-views/tickets/meta-box.php:161
1100
  msgid "End sale:"
1101
- msgstr ""
1102
 
1103
- #: ../src/admin-views/tickets/meta-box.php:183
1104
  msgid "When will ticket sales occur? If you don't set a start/end date for sales, tickets will be available from now until the event ends."
1105
- msgstr ""
1106
 
1107
- #: ../src/admin-views/tickets/meta-box.php:195
1108
  msgid "Save this ticket"
1109
- msgstr ""
1110
 
1111
- #: ../src/admin-views/tribe-options-display.php:4
1112
  msgid "Default Events Template"
1113
  msgstr "Plantilla d'esdeveniments predeterminada"
1114
 
1115
- #: ../src/admin-views/tribe-options-display.php:5
1116
  msgid "Default Page Template"
1117
  msgstr "Plantilla de pàgina predeterminada"
1118
 
1119
- #: ../src/admin-views/tribe-options-display.php:32
1120
  msgid "Display Settings"
1121
  msgstr "Configuració de visualització"
1122
 
1123
- #: ../src/admin-views/tribe-options-display.php:37
1124
  msgid "The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme.</p><p>There are going to be situations where no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications."
1125
- msgstr ""
1126
 
1127
- #: ../src/admin-views/tribe-options-display.php:51
1128
  msgid "Basic Template Settings"
1129
  msgstr "Configuració de la plantilla bàsica"
1130
 
1131
- #: ../src/admin-views/tribe-options-display.php:55
1132
  msgid "Default stylesheet used for events templates"
1133
  msgstr "Full d'estil predeterminat per les plantilles d'esdeveniments"
1134
 
1135
- #: ../src/admin-views/tribe-options-display.php:58
1136
  msgid "Skeleton Styles"
1137
- msgstr ""
1138
 
1139
- #: ../src/admin-views/tribe-options-display.php:60
1140
  msgid "Only includes enough css to achieve complex layouts like calendar and week view."
1141
- msgstr ""
1142
 
1143
- #: ../src/admin-views/tribe-options-display.php:62
1144
  msgid "Full Styles"
1145
  msgstr "Estils complets"
1146
 
1147
- #: ../src/admin-views/tribe-options-display.php:64
1148
  msgid "More detailed styling, tries to grab styles from your theme."
1149
- msgstr ""
1150
 
1151
- #: ../src/admin-views/tribe-options-display.php:66
1152
  msgid "Tribe Events Styles"
1153
- msgstr ""
1154
 
1155
- #: ../src/admin-views/tribe-options-display.php:68
1156
  msgid "A fully designed and styled theme for your events pages."
1157
- msgstr ""
1158
 
1159
- #: ../src/admin-views/tribe-options-display.php:75
1160
  msgid "Events template"
1161
  msgstr "Plantilla d'esdeveniments"
1162
 
1163
- #: ../src/admin-views/tribe-options-display.php:76
1164
  msgid "Choose a page template to control the appearance of your calendar and event content."
1165
  msgstr "Tria una plantilla de pàgina per controlar l'aparença del teu calendari i el contingut dels esdeveniments."
1166
 
1167
- #: ../src/admin-views/tribe-options-display.php:84
1168
  msgid "Enable event views"
1169
  msgstr "Habilitar les vistes d'esdeveniments"
1170
 
1171
- #: ../src/admin-views/tribe-options-display.php:85
1172
  msgid "You must select at least one view."
1173
  msgstr "Has de seleccionar una vista almenys."
1174
 
1175
- #: ../src/admin-views/tribe-options-display.php:92
1176
  msgid "Default view"
1177
  msgstr "Vista predeterminada"
1178
 
1179
- #: ../src/admin-views/tribe-options-display.php:100
1180
  msgid "Disable the Event Search Bar"
1181
  msgstr "Deshabilitar la barra de cerca d'esdeveniments"
1182
 
1183
- #: ../src/admin-views/tribe-options-display.php:101
1184
  msgid "Check this to use the classic header."
1185
  msgstr "Marca això per utilitzar la capçalera clàssica."
1186
 
1187
- #: ../src/admin-views/tribe-options-display.php:107
1188
  msgid "Month view events per day"
1189
- msgstr ""
1190
 
1191
- #: ../src/admin-views/tribe-options-display.php:108
1192
  msgid "Change the default 3 events per day in month view. Please note there may be performance issues if you set this too high. <a href=\"%s\">Read more</a>."
1193
- msgstr ""
1194
 
1195
- #: ../src/admin-views/tribe-options-display.php:115
1196
  msgid "Enable the Month View Cache"
1197
- msgstr ""
1198
 
1199
- #: ../src/admin-views/tribe-options-display.php:116
1200
  msgid "Check this to cache your month view HTML in transients, which can help improve calendar speed on sites with many events. <a href=\"%s\">Read more</a>."
1201
- msgstr ""
1202
 
1203
- #: ../src/admin-views/tribe-options-display.php:122
1204
  msgid "Date Format Settings"
1205
  msgstr "Configuració del format de data"
1206
 
1207
- #: ../src/admin-views/tribe-options-display.php:126
1208
  msgid "<p>The following three fields accept the date format options available to the php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Learn how to make your own date format here</a>.</p>"
1209
- msgstr ""
1210
 
1211
- #: ../src/admin-views/tribe-options-display.php:130
1212
  msgid "Date with year"
1213
  msgstr "Data amb any"
1214
 
1215
- #: ../src/admin-views/tribe-options-display.php:131
1216
  msgid "Enter the format to use for displaying dates with the year. Used when showing an event from a past or future year, also used for dates in view headers."
1217
- msgstr ""
1218
 
1219
- #: ../src/admin-views/tribe-options-display.php:138
1220
  msgid "Date without year"
1221
  msgstr "Data sense any"
1222
 
1223
- #: ../src/admin-views/tribe-options-display.php:139
1224
  msgid "Enter the format to use for displaying dates without a year. Used when showing an event from the current year."
1225
- msgstr ""
1226
 
1227
- #: ../src/admin-views/tribe-options-display.php:146
1228
  msgid "Month and year format"
1229
  msgstr "Format de mes i any"
1230
 
1231
- #: ../src/admin-views/tribe-options-display.php:147
1232
  msgid "Enter the format to use for dates that show a month and year only. Used on month view."
1233
- msgstr ""
1234
 
1235
- #: ../src/admin-views/tribe-options-display.php:154
1236
  msgid "Date time separator"
1237
  msgstr "Separador de data i hora"
1238
 
1239
- #: ../src/admin-views/tribe-options-display.php:155
1240
  msgid "Enter the separator that will be placed between the date and time, when both are shown."
1241
- msgstr ""
1242
 
1243
- #: ../src/admin-views/tribe-options-display.php:162
1244
  msgid "Time range separator"
1245
  msgstr "Separador de rang d'hores"
1246
 
1247
- #: ../src/admin-views/tribe-options-display.php:163
1248
  msgid "Enter the separator that will be used between the start and end time of an event."
1249
- msgstr ""
1250
 
1251
- #: ../src/admin-views/tribe-options-display.php:170
1252
  msgid "Datepicker Date Format"
1253
- msgstr ""
1254
 
1255
- #: ../src/admin-views/tribe-options-display.php:171
1256
  msgid "Select the date format to use in datepickers"
1257
- msgstr ""
1258
 
1259
- #: ../src/admin-views/tribe-options-display.php:188
1260
  msgid "Advanced Template Settings"
1261
- msgstr "Configuració de plantilles avançada"
1262
 
1263
- #: ../src/admin-views/tribe-options-display.php:192
1264
  msgid "Add HTML before event content"
1265
  msgstr "Afegir HTML abans del contingut de l'esdeveniment"
1266
 
1267
- #: ../src/admin-views/tribe-options-display.php:193
1268
  msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
1269
- msgstr ""
1270
 
1271
- #: ../src/admin-views/tribe-options-display.php:198
1272
  msgid "Add HTML after event content"
1273
  msgstr "Afegir HTML després del contingut de l'esdeveniment"
1274
 
1275
- #: ../src/admin-views/tribe-options-display.php:199
1276
  msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
1277
- msgstr ""
1278
 
1279
- #: ../src/admin-views/tribe-options-general.php:12
1280
  msgid "Finding & extending your calendar."
1281
- msgstr ""
1282
 
1283
- #: ../src/admin-views/tribe-options-general.php:17
1284
  msgid "Finding your calendar."
1285
- msgstr ""
1286
 
1287
- #: ../src/admin-views/tribe-options-general.php:22
1288
  msgid "Where's my calendar?"
1289
  msgstr "On és el meu calendari?"
1290
 
1291
- #: ../src/admin-views/tribe-options-general.php:22
1292
  msgid "Right here"
1293
  msgstr "Aquí"
1294
 
1295
- #: ../src/admin-views/tribe-options-general.php:26
1296
  msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
1297
  msgstr "Estàs buscant funcionalitats addicionals com ara esdeveniments recurrents, metadades personalitzades, esdeveniments comunitaris, venda de tiquets i més?"
1298
 
1299
- #: ../src/admin-views/tribe-options-general.php:26
1300
  msgid "Check out the available add-ons"
1301
  msgstr "Fes una ullada als complements disponibles"
1302
 
1303
- #: ../src/admin-views/tribe-options-general.php:31
1304
  msgid "We hope our plugin is helping you out."
1305
- msgstr ""
1306
 
1307
- #: ../src/admin-views/tribe-options-general.php:35
1308
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
1309
- msgstr ""
1310
 
1311
- #: ../src/admin-views/tribe-options-general.php:35
1312
- #: ../src/admin-views/tribe-options-general.php:40
1313
  msgid "See an example of the link"
1314
- msgstr ""
1315
 
1316
- #: ../src/admin-views/tribe-options-general.php:40
1317
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project."
1318
- msgstr ""
1319
 
1320
- #: ../src/admin-views/tribe-options-general.php:45
1321
  msgid "Show The Events Calendar link"
1322
- msgstr ""
1323
 
1324
- #: ../src/admin-views/tribe-options-general.php:59
1325
  msgid "General Settings"
1326
  msgstr "Configuració general"
1327
 
1328
- #: ../src/admin-views/tribe-options-general.php:63
1329
  msgid "Number of events to show per page"
1330
  msgstr "Número d'esdeveniments a mostrar per pàgina"
1331
 
1332
- #: ../src/admin-views/tribe-options-general.php:70
1333
  msgid "Use Javascript to control date filtering"
1334
  msgstr "Utilitza Javascript per controlar el filtre de dates"
1335
 
1336
- #: ../src/admin-views/tribe-options-general.php:71
1337
  msgid "This option is disabled when \"Disable the Event Search Bar\" is checked on the Display settings tab."
1338
- msgstr ""
1339
 
1340
- #: ../src/admin-views/tribe-options-general.php:71
1341
  msgid "Enable live ajax for datepicker on front end (User submit not required)."
1342
- msgstr ""
1343
 
1344
- #: ../src/admin-views/tribe-options-general.php:79
1345
  msgid "Show comments"
1346
  msgstr "Mostrar comentaris"
1347
 
1348
- #: ../src/admin-views/tribe-options-general.php:80
1349
  msgid "Enable comments on event pages."
1350
  msgstr "Habilita els comentaris a les pàgines dels esdeveniments."
1351
 
1352
- #: ../src/admin-views/tribe-options-general.php:86
1353
  msgid "Include events in main blog loop"
1354
  msgstr "Inclou els esdeveniments en el bucle principal del blog"
1355
 
1356
- #: ../src/admin-views/tribe-options-general.php:87
1357
  msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
1358
- msgstr ""
1359
 
1360
- #: ../src/admin-views/tribe-options-general.php:93
1361
- #: ../src/admin-views/tribe-options-general.php:99
1362
  msgid "Events URL slug"
1363
- msgstr ""
1364
 
1365
- #: ../src/admin-views/tribe-options-general.php:94
1366
- msgid "You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=\"%s\">%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php\">enable pretty permalinks</a>."
1367
- msgstr ""
1368
-
1369
- #: ../src/admin-views/tribe-options-general.php:106
1370
- #: ../src/functions/template-tags/options.php:20
1371
  msgid "The slug used for building the events URL."
1372
- msgstr ""
1373
 
1374
- #: ../src/admin-views/tribe-options-general.php:106
1375
  msgid "Your current events URL is: %s"
1376
- msgstr ""
1377
 
1378
- #: ../src/admin-views/tribe-options-general.php:111
1379
- #: ../src/functions/template-tags/options.php:39
1380
  msgid "Here is the iCal feed URL for your events:"
1381
- msgstr ""
1382
 
1383
- #: ../src/admin-views/tribe-options-general.php:116
1384
  msgid "Single event URL slug"
1385
- msgstr ""
1386
 
1387
- #: ../src/admin-views/tribe-options-general.php:123
1388
  msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
1389
- msgstr ""
1390
 
1391
- #: ../src/admin-views/tribe-options-general.php:128
1392
  msgid "End of day cutoff"
1393
- msgstr ""
1394
 
1395
- #: ../src/admin-views/tribe-options-general.php:149
1396
  msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
1397
- msgstr ""
1398
 
1399
- #: ../src/admin-views/tribe-options-general.php:154
1400
  msgid "Default currency symbol"
1401
- msgstr "Símbol de moneda predeterminat"
1402
 
1403
- #: ../src/admin-views/tribe-options-general.php:155
1404
  msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
1405
- msgstr ""
1406
 
1407
- #: ../src/admin-views/tribe-options-general.php:162
1408
  msgid "Currency symbol follows value"
1409
- msgstr ""
1410
 
1411
- #: ../src/admin-views/tribe-options-general.php:163
1412
  msgid "The currency symbol normally precedes the value. Enabling this option positions the symbol after the value."
1413
- msgstr ""
1414
 
1415
- #: ../src/admin-views/tribe-options-general.php:169
1416
  msgid "Map Settings"
1417
  msgstr "Configuració del mapa"
1418
 
1419
- #: ../src/admin-views/tribe-options-general.php:173
1420
  msgid "Enable Google Maps"
1421
  msgstr "Habilita Google Maps"
1422
 
1423
- #: ../src/admin-views/tribe-options-general.php:174
1424
  msgid "Check to enable maps for events and venues."
1425
  msgstr "Marca per habilitar els mapes en els esdeveniments i els recintes."
1426
 
1427
- #: ../src/admin-views/tribe-options-general.php:181
1428
  msgid "Google Maps default zoom level"
1429
- msgstr ""
1430
 
1431
- #: ../src/admin-views/tribe-options-general.php:182
1432
  msgid "0 = zoomed out; 21 = zoomed in."
1433
- msgstr ""
1434
 
1435
- #: ../src/admin-views/tribe-options-general.php:190
1436
  msgid "Miscellaneous Settings"
1437
- msgstr ""
1438
 
1439
- #: ../src/admin-views/tribe-options-general.php:194
1440
  msgid "Duplicate Venues &amp; Organizers"
1441
- msgstr ""
1442
 
1443
- #: ../src/admin-views/tribe-options-general.php:194
1444
  msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
1445
- msgstr ""
1446
 
1447
- #: ../src/admin-views/tribe-options-general.php:211
1448
  msgid "Debug mode"
1449
  msgstr "Mode de depuració"
1450
 
1451
- #: ../src/admin-views/tribe-options-general.php:217
1452
  msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
1453
- msgstr ""
1454
 
1455
- #: ../src/admin-views/tribe-options-general.php:217
1456
  msgid "Debug Bar Plugin"
1457
- msgstr ""
1458
 
1459
- #: ../src/admin-views/tribe-options-general.php:199
1460
  msgid "View Welcome Page"
1461
  msgstr "Veure pàgina de benvinguda"
1462
 
1463
- #: ../src/admin-views/tribe-options-general.php:199
1464
  msgid "View the page that displayed when you initially installed the plugin."
1465
- msgstr ""
1466
 
1467
- #: ../src/admin-views/tribe-options-general.php:204
1468
  msgid "View Update Page"
1469
- msgstr ""
1470
 
1471
- #: ../src/admin-views/tribe-options-general.php:204
1472
  msgid "View the page that displayed when you updated the plugin."
1473
- msgstr ""
1474
 
1475
- #: ../src/admin-views/tribe-options-help.php:28
1476
  msgctxt "not available"
1477
  msgid "n/a"
1478
- msgstr "n/a"
1479
 
1480
- #: ../src/admin-views/tribe-options-help.php:29
1481
  msgid "You need to upgrade!"
1482
  msgstr "Has d'actualitzar-te!"
1483
 
1484
- #: ../src/admin-views/tribe-options-help.php:29
1485
  msgid "You are up to date!"
1486
  msgstr "Estàs actualitzat!"
1487
 
1488
- #: ../src/admin-views/tribe-options-help.php:52
1489
  msgid "The Events Calendar PRO"
1490
  msgstr "The Events Calendar PRO"
1491
 
1492
- #: ../src/admin-views/tribe-options-help.php:56
1493
  msgid "The Events Calendar: Eventbrite Tickets"
1494
  msgstr "The Events Calendar: Eventbrite Tickets"
1495
 
1496
- #: ../src/admin-views/tribe-options-help.php:60
1497
  msgid "The Events Calendar: Community Events"
1498
  msgstr "The Events Calendar: Community Events"
1499
 
1500
- #: ../src/Tribe/View_Helpers.php:281
1501
  msgid "Wallis And Futuna Islands"
1502
  msgstr "Wallis i Futuna"
1503
 
1504
- #: ../src/admin-views/tribe-options-help.php:64
1505
  msgid "The Events Calendar: Facebook Events"
1506
  msgstr "The Events Calendar: Facebook Events"
1507
 
1508
- #: ../src/Tribe/View_Helpers.php:282
1509
  msgid "Western Sahara"
1510
  msgstr "Sàhara Occidental"
1511
 
1512
- #: ../src/admin-views/tribe-options-help.php:68
1513
  msgid "The Events Calendar: WooCommerce Tickets"
1514
  msgstr "The Events Calendar: WooCommerce Tickets"
1515
 
1516
- #: ../src/Tribe/View_Helpers.php:283
1517
  msgid "Yemen"
1518
  msgstr "Iemen"
1519
 
1520
- #: ../src/admin-views/tribe-options-help.php:73
1521
  msgid "The Events Calendar: EDD Tickets"
1522
  msgstr "The Events Calendar: EDD Tickets"
1523
 
1524
- #: ../src/Tribe/View_Helpers.php:284
1525
  msgid "Zambia"
1526
  msgstr "Zàmbia"
1527
 
1528
- #: ../src/admin-views/tribe-options-help.php:78
1529
  msgid "The Events Calendar: WPEC Tickets"
1530
  msgstr "The Events Calendar: WPEC Tickets"
1531
 
1532
- #: ../src/Tribe/View_Helpers.php:285
1533
  msgid "Zimbabwe"
1534
  msgstr "Zimbabwe"
1535
 
1536
- #: ../src/admin-views/tribe-options-help.php:83
1537
  msgid "The Events Calendar: Shopp Tickets"
1538
  msgstr "The Events Calendar: Shopp Tickets"
1539
 
1540
- #: ../src/Tribe/View_Helpers.php:316
1541
  msgid "Alabama"
1542
  msgstr "Alabama"
1543
 
1544
- #: ../src/admin-views/tribe-options-help.php:88
1545
  msgid "The Events Calendar: Filter Bar"
1546
  msgstr "The Events Calendar: Filter Bar"
1547
 
1548
- #: ../src/Tribe/View_Helpers.php:317
1549
  msgid "Alaska"
1550
  msgstr "Alaska"
1551
 
1552
- #: ../src/Tribe/View_Helpers.php:318
1553
  msgid "Arizona"
1554
  msgstr "Arizona"
1555
 
1556
- #: ../src/admin-views/tribe-options-help.php:97
1557
  msgid "If this is your first time using The Events Calendar, you're in for a treat and are already well on your way to creating a first event. Here are some basics we've found helpful for users jumping into it for the first time:"
1558
- msgstr ""
1559
 
1560
- #: ../src/Tribe/View_Helpers.php:319
1561
  msgid "Arkansas"
1562
  msgstr "Arkansas"
1563
 
1564
- #: ../src/admin-views/tribe-options-help.php:100
1565
  msgid "%sOur New User Primer%s was designed for folks in your exact position. Featuring both step-by-step videos and written walkthroughs that feature accompanying screenshots, the primer aims to take you from zero to hero in no time."
1566
- msgstr ""
1567
 
1568
- #: ../src/Tribe/View_Helpers.php:320
1569
  msgid "California"
1570
  msgstr "Califòrnia"
1571
 
1572
- #: ../src/admin-views/tribe-options-help.php:102
1573
  msgid "%sInstallation/Setup FAQs%s from our support page can help give an overview of what the plugin can and cannot do. This section of the FAQs may be helpful as it aims to address any basic install questions not addressed by the new user primer."
1574
- msgstr ""
1575
 
1576
- #: ../src/Tribe/View_Helpers.php:321
1577
  msgid "Colorado"
1578
  msgstr "Colorado"
1579
 
1580
- #: ../src/admin-views/tribe-options-help.php:104
1581
  msgid "Otherwise, if you're feeling adventurous, you can get started by heading to the Events menu and adding your first event."
1582
- msgstr ""
1583
 
1584
- #: ../src/Tribe/View_Helpers.php:322
1585
  msgid "Connecticut"
1586
  msgstr "Connecticut"
1587
 
1588
- #: ../src/admin-views/tribe-options-help.php:108
1589
  msgid "We've redone our support page from the ground up in an effort to better help our users. Head over to our %sSupport Page%s and you'll find lots of great resources, including:"
1590
- msgstr ""
1591
 
1592
- #: ../src/Tribe/View_Helpers.php:323
1593
  msgid "Delaware"
1594
  msgstr "Delaware"
1595
 
1596
- #: ../src/admin-views/tribe-options-help.php:110
1597
  msgid "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar &amp; Events Calendar PRO"
1598
- msgstr ""
1599
 
1600
- #: ../src/Tribe/View_Helpers.php:324
1601
  msgid "District of Columbia"
1602
  msgstr "Districte de Colúmbia"
1603
 
1604
- #: ../src/admin-views/tribe-options-help.php:112
1605
  msgid "%sFrequently Asked Questions%s ranging from the most basic setup questions to advanced themer tweaks"
1606
- msgstr ""
1607
 
1608
- #: ../src/Tribe/View_Helpers.php:325
1609
  msgid "Florida"
1610
  msgstr "Florida"
1611
 
1612
- #: ../src/admin-views/tribe-options-help.php:115
1613
  msgid "%sTutorials%s written by both members of our team and users from the community, covering custom queries, integration with third-party themes and plugins, etc."
1614
- msgstr ""
1615
 
1616
- #: ../src/Tribe/View_Helpers.php:327
1617
  msgid "Hawaii"
1618
  msgstr "Hawaii"
1619
 
1620
- #: ../src/admin-views/tribe-options-help.php:117
1621
  msgid "Release notes for painting an overall picture of the plugin's lifecycle and when features/bug fixes were introduced."
1622
- msgstr ""
1623
 
1624
- #: ../src/Tribe/View_Helpers.php:328
1625
  msgid "Idaho"
1626
  msgstr "Idaho"
1627
 
1628
- #: ../src/admin-views/tribe-options-help.php:119
1629
  msgid "%sAdd-on documentation%s for all of Modern Tribe's official extensions for The Events Calendar (including WooTickets, Community Events, Eventbrite Tickets, Facebook Events, etc)"
1630
- msgstr ""
1631
 
1632
- #: ../src/Tribe/View_Helpers.php:329
1633
  msgid "Illinois"
1634
  msgstr "Illinois"
1635
 
1636
- #: ../src/admin-views/tribe-options-help.php:121
1637
  msgid "We've also got a %sModern Tribe UserVoice%s page where we're actively watching for feature ideas from the community. If after playing with the plugin and reviewing the resources above, you're finding a feature isn't present that should be, let us know. Vote up existing feature requests or add your own, and help us shape the future of the products business in a way that best meets the community's needs."
1638
- msgstr ""
1639
 
1640
- #: ../src/Tribe/View_Helpers.php:330
1641
  msgid "Indiana"
1642
  msgstr "Indiana"
1643
 
1644
- #: ../src/admin-views/tribe-options-help.php:125
1645
  msgid "Written documentation can only take things so far...sometimes, you need help from a real person. This is where our %ssupport forums%s come into play."
1646
- msgstr ""
1647
 
1648
- #: ../src/Tribe/View_Helpers.php:331
1649
  msgid "Iowa"
1650
  msgstr "Iowa"
1651
 
1652
- #: ../src/admin-views/tribe-options-help.php:126
1653
  msgid "Users of the free The Events Calendar should post their support concerns to the plugin's %sWordPress.org support forum%s. While we are happy to help identify and fix bugs that are reported at WordPress.org, please make sure to read our %ssupport expectations sticky thread%s before posting so you understand our limitations."
1654
- msgstr ""
1655
 
1656
- #: ../src/Tribe/View_Helpers.php:332
1657
  msgid "Kansas"
1658
  msgstr "Kansas"
1659
 
1660
- #: ../src/admin-views/tribe-options-help.php:127
1661
  msgid "We hit the WordPress.org forum throughout the week, watching for bugs. If you report a legitimate bug that we're able to reproduce, we will log it and patch for an upcoming release. However we are unfortunately unable to provide customization tips or assist in integrating with 3rd party plugins or themes."
1662
- msgstr ""
1663
 
1664
- #: ../src/Tribe/View_Helpers.php:333
1665
  msgid "Kentucky"
1666
  msgstr "Kentucky"
1667
 
1668
- #: ../src/admin-views/tribe-options-help.php:128
1669
  msgid "If you're a user of The Events Calendar and would like more support, please %spurchase a PRO license%s. We hit the PRO forums daily, and can provide a deeper level of customization/integration support for paying users than we can on WordPress.org."
1670
- msgstr ""
1671
 
1672
- #: ../src/Tribe/View_Helpers.php:47
1673
  msgid "Afghanistan"
1674
  msgstr "Afganistan"
1675
 
1676
- #: ../src/Tribe/View_Helpers.php:48
1677
  msgid "Albania"
1678
  msgstr "Albània"
1679
 
1680
- #: ../src/Tribe/View_Helpers.php:49
1681
  msgid "Algeria"
1682
  msgstr "Algèria"
1683
 
1684
- #: ../src/Tribe/API.php:431
1685
  msgid "Unnamed Venue"
1686
  msgstr "Recinte sense nom"
1687
 
1688
- #: ../src/Tribe/View_Helpers.php:50
1689
  msgid "American Samoa"
1690
  msgstr "Samoa Nord-americana"
1691
 
1692
- #: ../src/Tribe/API.php:507 ../src/Tribe/View_Helpers.php:46
1693
- #: ../src/functions/template-tags/venue.php:272
1694
  msgid "United States"
1695
  msgstr "Estats Units"
1696
 
1697
- #: ../src/Tribe/View_Helpers.php:51
1698
  msgid "Andorra"
1699
  msgstr "Andorra"
1700
 
1701
- #: ../src/Tribe/Activation_Page.php:197
1702
  msgid "Welcome to The Events Calendar"
1703
  msgstr "Benvingut/da a The Events Calendar"
1704
 
1705
- #: ../src/Tribe/View_Helpers.php:52
1706
  msgid "Angola"
1707
  msgstr "Angola"
1708
 
1709
- #: ../src/Tribe/Activation_Page.php:217
1710
  msgid "Thanks for Updating The Events Calendar"
1711
  msgstr "Gràcies per actualitzar The Events Calendar"
1712
 
1713
- #: ../src/Tribe/View_Helpers.php:53
1714
  msgid "Anguilla"
1715
  msgstr "Anguilla"
1716
 
1717
- #: ../src/Tribe/Admin_List.php:229 ../src/Tribe/Main.php:1272
1718
  msgid "%s Categories"
1719
- msgstr ""
1720
 
1721
- #: ../src/Tribe/View_Helpers.php:54
1722
  msgid "Antarctica"
1723
  msgstr "Antàrtida"
1724
 
1725
- #: ../src/Tribe/Admin_List.php:235
1726
  msgid "Start Date"
1727
  msgstr "Data d'inici"
1728
 
1729
- #: ../src/Tribe/View_Helpers.php:55
1730
  msgid "Antigua And Barbuda"
1731
  msgstr "Antigua i Barbuda"
1732
 
1733
- #: ../src/Tribe/Admin_List.php:236
1734
  msgid "End Date"
1735
  msgstr "Data de finalització"
1736
 
1737
- #: ../src/Tribe/View_Helpers.php:56
1738
  msgid "Argentina"
1739
  msgstr "Argentina"
1740
 
1741
- #: ../src/Tribe/Admin_List.php:314
1742
  msgid "All %s"
1743
- msgstr ""
1744
 
1745
- #: ../src/Tribe/View_Helpers.php:57
1746
  msgid "Armenia"
1747
  msgstr "Armènia"
1748
 
1749
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:37
1750
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:69
1751
- #: ../src/views/modules/meta/details.php:40
1752
- #: ../src/views/modules/meta/details.php:65
1753
  msgid "Start:"
1754
  msgstr "Inici:"
1755
 
1756
- #: ../src/Tribe/View_Helpers.php:58
1757
  msgid "Aruba"
1758
  msgstr "Aruba"
1759
 
1760
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:46
1761
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:78
1762
- #: ../src/views/modules/meta/details.php:45
1763
- #: ../src/views/modules/meta/details.php:70
1764
  msgid "End:"
1765
  msgstr "Finalització:"
1766
 
1767
- #: ../src/Tribe/View_Helpers.php:59
1768
  msgid "Australia"
1769
  msgstr "Austràlia"
1770
 
1771
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:57
1772
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:89
1773
- #: ../src/views/modules/meta/details.php:55
1774
- #: ../src/views/modules/meta/details.php:80
1775
  msgid "Date:"
1776
  msgstr "Data:"
1777
 
1778
- #: ../src/Tribe/View_Helpers.php:60
1779
  msgid "Austria"
1780
  msgstr "Àustria"
1781
 
1782
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:100
1783
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:111
1784
- #: ../src/views/modules/meta/details.php:85
1785
  msgid "Time:"
1786
  msgstr "Hora:"
1787
 
1788
- #: ../src/Tribe/View_Helpers.php:61
1789
  msgid "Azerbaijan"
1790
  msgstr "Azerbaidjan"
1791
 
1792
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:324
1793
- #: ../src/functions/template-tags/google-map.php:46
1794
  msgid "Click to view a Google Map"
1795
  msgstr "Clica per veure un mapa de Google"
1796
 
1797
- #: ../src/Tribe/View_Helpers.php:62
1798
  msgid "Bahamas"
1799
  msgstr "Bahames"
1800
 
1801
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:325
1802
- #: ../src/functions/template-tags/google-map.php:47
1803
  msgid "+ Google Map"
1804
  msgstr "+ Mapa de Google"
1805
 
1806
- #: ../src/Tribe/View_Helpers.php:63
1807
  msgid "Bahrain"
1808
  msgstr "Bahrain"
1809
 
1810
- #: ../src/Tribe/Amalgamator.php:260
1811
- #: ../src/admin-views/tribe-options-general.php:194
1812
  msgid "Merge Duplicates"
1813
- msgstr ""
1814
 
1815
- #: ../src/Tribe/View_Helpers.php:64
1816
  msgid "Bangladesh"
1817
  msgstr "Bangla Desh"
1818
 
1819
- #: ../src/Tribe/App_Shop.php:63 ../src/Tribe/App_Shop.php:64
1820
- #: ../src/Tribe/App_Shop.php:94
1821
  msgid "Event Add-Ons"
1822
- msgstr ""
1823
 
1824
- #: ../src/Tribe/View_Helpers.php:65
1825
  msgid "Barbados"
1826
  msgstr "Barbados"
1827
 
1828
- #: ../src/Tribe/Credits.php:31
1829
  msgid "This calendar is powered by The Events Calendar."
1830
- msgstr ""
1831
 
1832
- #: ../src/Tribe/View_Helpers.php:66
1833
  msgid "Belarus"
1834
  msgstr "Bielorússia"
1835
 
1836
- #: ../src/Tribe/Credits.php:48
1837
  msgid "Rate <strong>The Events Calendar</strong> <a href=\"%1$s\" target=\"_blank\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href=\"%1$s\" target=\"_blank\">WordPress.org</a> to keep this plugin free. Thanks from the friendly folks at Modern Tribe."
1838
- msgstr ""
1839
 
1840
- #: ../src/Tribe/View_Helpers.php:67
1841
  msgid "Belgium"
1842
  msgstr "Bèlgica"
1843
 
1844
- #: ../src/Tribe/Credits.php:48
1845
  msgid "http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5"
1846
  msgstr "http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5"
1847
 
1848
- #: ../src/Tribe/View_Helpers.php:68
1849
  msgid "Belize"
1850
  msgstr "Belize"
1851
 
1852
- #: ../src/Tribe/Field.php:209
1853
  msgid "Invalid field type specified"
1854
- msgstr ""
1855
 
1856
- #: ../src/Tribe/View_Helpers.php:69
1857
  msgid "Benin"
1858
  msgstr "Benín"
1859
 
1860
- #: ../src/Tribe/Field.php:466
1861
  msgid "No radio options specified"
1862
- msgstr ""
1863
 
1864
- #: ../src/Tribe/View_Helpers.php:70
1865
  msgid "Bermuda"
1866
  msgstr "Bermudes"
1867
 
1868
- #: ../src/Tribe/Field.php:502
1869
  msgid "No checkbox options specified"
1870
- msgstr ""
1871
 
1872
- #: ../src/Tribe/View_Helpers.php:71
1873
  msgid "Bhutan"
1874
  msgstr "Bhutan"
1875
 
1876
- #: ../src/Tribe/Field.php:558
1877
  msgid "No select options specified"
1878
- msgstr ""
1879
 
1880
- #: ../src/Tribe/View_Helpers.php:72
1881
  msgid "Bolivia"
1882
  msgstr "Bolívia"
1883
 
1884
- #: ../src/Tribe/Importer/Admin_Page.php:15
1885
- #: ../src/Tribe/Importer/Admin_Page.php:16 ../src/Tribe/Main.php:3946
1886
  msgid "Import"
1887
  msgstr "Importar"
1888
 
1889
- #: ../src/Tribe/View_Helpers.php:73
1890
  msgid "Bosnia And Herzegowina"
1891
  msgstr "Bòsnia i Hercegovina"
1892
 
1893
- #: ../src/Tribe/Importer/Admin_Page.php:54
1894
- #: ../src/Tribe/Importer/Admin_Page.php:187
1895
  msgid "The file went away. Please try again."
1896
- msgstr ""
1897
 
1898
- #: ../src/Tribe/View_Helpers.php:74
1899
  msgid "Botswana"
1900
  msgstr "Botswana"
1901
 
1902
- #: ../src/Tribe/Importer/Admin_Page.php:95 ../src/Tribe/Main.php:754
1903
  msgid "General"
1904
- msgstr ""
1905
 
1906
- #: ../src/Tribe/View_Helpers.php:75
1907
  msgid "Bouvet Island"
1908
  msgstr "Illa Bouvet"
1909
 
1910
- #: ../src/Tribe/Importer/Admin_Page.php:96
1911
  msgid "Import: CSV"
1912
  msgstr "Importar: CSV"
1913
 
1914
- #: ../src/Tribe/View_Helpers.php:76
1915
  msgid "Brazil"
1916
  msgstr "Brasil"
1917
 
1918
- #: ../src/Tribe/Importer/Admin_Page.php:153
1919
  msgid "We were unable to process your request. Please try again."
1920
- msgstr ""
1921
 
1922
- #: ../src/Tribe/View_Helpers.php:77
1923
  msgid "British Indian Ocean Territory"
1924
  msgstr "Territori Britànic de l'Oceà Índic"
1925
 
1926
- #: ../src/Tribe/Importer/Admin_Page.php:194
1927
  msgid "<p>The following fields are required for a successful import:</p>"
1928
- msgstr ""
1929
 
1930
- #: ../src/Tribe/View_Helpers.php:78
1931
  msgid "Brunei Darussalam"
1932
- msgstr ""
1933
 
1934
- #: ../src/Tribe/Importer/Column_Mapper.php:33
1935
  msgid "Do Not Import"
1936
- msgstr ""
1937
 
1938
- #: ../src/Tribe/View_Helpers.php:79
1939
  msgid "Bulgaria"
1940
- msgstr ""
1941
 
1942
- #: ../src/Tribe/Importer/Column_Mapper.php:52
1943
  msgid "Event Name"
1944
- msgstr ""
1945
 
1946
- #: ../src/Tribe/View_Helpers.php:80
1947
  msgid "Burkina Faso"
1948
- msgstr ""
1949
 
1950
- #: ../src/Tribe/Importer/Column_Mapper.php:53
1951
  msgid "Event Description"
1952
- msgstr ""
1953
 
1954
- #: ../src/Tribe/View_Helpers.php:81
1955
  msgid "Burundi"
1956
- msgstr ""
1957
 
1958
- #: ../src/Tribe/Importer/Column_Mapper.php:54
1959
  msgid "Event Start Date"
1960
- msgstr ""
1961
 
1962
- #: ../src/Tribe/View_Helpers.php:82
1963
  msgid "Cambodia"
1964
- msgstr ""
1965
 
1966
- #: ../src/Tribe/Importer/Column_Mapper.php:55
1967
  msgid "Event Start Time"
1968
- msgstr ""
1969
 
1970
- #: ../src/Tribe/View_Helpers.php:83
1971
  msgid "Cameroon"
1972
- msgstr ""
1973
 
1974
- #: ../src/Tribe/Importer/Column_Mapper.php:56
1975
  msgid "Event End Date"
1976
- msgstr ""
1977
 
1978
- #: ../src/Tribe/View_Helpers.php:84
1979
  msgid "Canada"
1980
- msgstr ""
1981
 
1982
- #: ../src/Tribe/Importer/Column_Mapper.php:57
1983
  msgid "Event End Time"
1984
- msgstr ""
1985
 
1986
- #: ../src/Tribe/View_Helpers.php:85
1987
  msgid "Cape Verde"
1988
- msgstr ""
1989
 
1990
- #: ../src/Tribe/Importer/Column_Mapper.php:58
1991
  msgid "All Day Event"
1992
- msgstr ""
1993
 
1994
- #: ../src/Tribe/View_Helpers.php:86
1995
  msgid "Cayman Islands"
1996
- msgstr ""
1997
 
1998
- #: ../src/Tribe/Importer/Column_Mapper.php:59
1999
  msgid "Event Venue Name"
2000
- msgstr ""
2001
 
2002
- #: ../src/Tribe/View_Helpers.php:87
2003
  msgid "Central African Republic"
2004
- msgstr ""
2005
 
2006
- #: ../src/Tribe/Importer/Column_Mapper.php:60
2007
  msgid "Event Organizer Name"
2008
- msgstr ""
2009
 
2010
- #: ../src/Tribe/View_Helpers.php:88
2011
  msgid "Chad"
2012
- msgstr ""
2013
 
2014
- #: ../src/Tribe/Importer/Column_Mapper.php:61
2015
  msgid "Event Show Map Link"
2016
- msgstr ""
2017
 
2018
- #: ../src/Tribe/View_Helpers.php:89
2019
  msgid "Chile"
2020
- msgstr ""
2021
 
2022
- #: ../src/Tribe/Importer/Column_Mapper.php:62
2023
  msgid "Event Show Map"
2024
- msgstr ""
2025
 
2026
- #: ../src/Tribe/View_Helpers.php:90
2027
  msgid "China"
2028
- msgstr ""
2029
 
2030
- #: ../src/Tribe/Importer/Column_Mapper.php:63
2031
  msgid "Event Cost"
2032
- msgstr ""
2033
 
2034
- #: ../src/Tribe/View_Helpers.php:91
2035
  msgid "Christmas Island"
2036
- msgstr ""
2037
 
2038
- #: ../src/Tribe/View_Helpers.php:92
2039
  msgid "Cocos (Keeling) Islands"
2040
- msgstr ""
2041
 
2042
- #: ../src/Tribe/Importer/Column_Mapper.php:64
2043
  msgid "Event Category"
2044
  msgstr "Categoria de l'esdeveniment"
2045
 
2046
- #: ../src/Tribe/View_Helpers.php:93
2047
  msgid "Colombia"
2048
- msgstr ""
2049
 
2050
- #: ../src/Tribe/Importer/Column_Mapper.php:65
2051
  msgid "Event Website"
2052
- msgstr ""
2053
 
2054
- #: ../src/Tribe/View_Helpers.php:94
2055
  msgid "Comoros"
2056
- msgstr ""
2057
 
2058
- #: ../src/Tribe/Importer/Column_Mapper.php:71
2059
  msgid "Venue Name"
2060
- msgstr ""
2061
 
2062
- #: ../src/Tribe/View_Helpers.php:95
2063
  msgid "Congo"
2064
- msgstr ""
2065
 
2066
- #: ../src/Tribe/Importer/Column_Mapper.php:72
2067
  msgid "Venue Country"
2068
- msgstr ""
2069
 
2070
- #: ../src/Tribe/View_Helpers.php:96
2071
  msgid "Congo, The Democratic Republic Of The"
2072
- msgstr ""
2073
 
2074
- #: ../src/Tribe/Importer/Column_Mapper.php:73
2075
  msgid "Venue Address"
2076
- msgstr ""
2077
 
2078
- #: ../src/Tribe/View_Helpers.php:97
2079
  msgid "Cook Islands"
2080
- msgstr ""
2081
 
2082
- #: ../src/Tribe/Importer/Column_Mapper.php:74
2083
  msgid "Venue Address 2"
2084
- msgstr ""
2085
 
2086
- #: ../src/Tribe/View_Helpers.php:98
2087
  msgid "Costa Rica"
2088
- msgstr ""
2089
 
2090
- #: ../src/Tribe/Importer/Column_Mapper.php:75
2091
  msgid "Venue City"
2092
- msgstr ""
2093
 
2094
- #: ../src/Tribe/View_Helpers.php:99
2095
  msgid "Cote D'Ivoire"
2096
- msgstr ""
2097
 
2098
- #: ../src/Tribe/Importer/Column_Mapper.php:76
2099
  msgid "Venue State/Province"
2100
- msgstr ""
2101
 
2102
- #: ../src/Tribe/View_Helpers.php:100
2103
  msgid "Croatia (Local Name: Hrvatska)"
2104
- msgstr ""
2105
 
2106
- #: ../src/Tribe/Importer/Column_Mapper.php:77
2107
  msgid "Venue Zip"
2108
- msgstr ""
2109
 
2110
- #: ../src/Tribe/View_Helpers.php:101
2111
  msgid "Cuba"
2112
- msgstr ""
2113
 
2114
- #: ../src/Tribe/Importer/Column_Mapper.php:78
2115
  msgid "Venue Phone"
2116
- msgstr ""
2117
 
2118
- #: ../src/Tribe/View_Helpers.php:102
2119
  msgid "Cyprus"
2120
- msgstr ""
2121
 
2122
- #: ../src/Tribe/Importer/Column_Mapper.php:79
2123
  msgid "Venue Website"
2124
- msgstr ""
2125
 
2126
- #: ../src/Tribe/View_Helpers.php:103
2127
  msgid "Czech Republic"
2128
- msgstr ""
2129
 
2130
- #: ../src/Tribe/Importer/Column_Mapper.php:85
2131
  msgid "Organizer Name"
2132
- msgstr ""
2133
 
2134
- #: ../src/Tribe/View_Helpers.php:104
2135
  msgid "Denmark"
2136
- msgstr ""
2137
 
2138
- #: ../src/Tribe/Importer/Column_Mapper.php:86
2139
  msgid "Organizer Email"
2140
- msgstr ""
2141
 
2142
- #: ../src/Tribe/View_Helpers.php:105
2143
  msgid "Djibouti"
2144
- msgstr ""
2145
 
2146
- #: ../src/Tribe/Importer/Column_Mapper.php:87
2147
  msgid "Organizer Website"
2148
- msgstr ""
2149
 
2150
- #: ../src/Tribe/View_Helpers.php:106
2151
  msgid "Dominica"
2152
- msgstr ""
2153
 
2154
- #: ../src/Tribe/Importer/Column_Mapper.php:88
2155
  msgid "Organizer Phone"
2156
- msgstr ""
2157
 
2158
- #: ../src/Tribe/View_Helpers.php:107
2159
  msgid "Dominican Republic"
2160
- msgstr ""
2161
 
2162
- #: ../src/Tribe/Importer/File_Importer.php:38
2163
  msgid "No importer defined for %s"
2164
- msgstr ""
2165
 
2166
- #: ../src/Tribe/View_Helpers.php:108
2167
  msgid "East Timor"
2168
- msgstr ""
2169
 
2170
- #: ../src/Tribe/Importer/File_Importer.php:110
2171
  msgid "Missing required fields in row %d."
2172
- msgstr ""
2173
 
2174
- #: ../src/Tribe/View_Helpers.php:109
2175
  msgid "Ecuador"
2176
- msgstr ""
2177
 
2178
- #: ../src/Tribe/Importer/File_Importer.php:118
2179
  msgid "Failed to import record in row %d."
2180
- msgstr ""
2181
 
2182
- #: ../src/Tribe/View_Helpers.php:110
2183
  msgid "Egypt"
2184
- msgstr ""
2185
 
2186
- #: ../src/Tribe/Importer/File_Importer.php:127
2187
  msgid "%s (post ID %d) updated."
2188
- msgstr ""
2189
 
2190
- #: ../src/Tribe/View_Helpers.php:111
2191
  msgid "El Salvador"
2192
- msgstr ""
2193
 
2194
- #: ../src/Tribe/Importer/File_Importer.php:131
2195
  msgid "%s (post ID %d) created."
2196
- msgstr ""
2197
 
2198
- #: ../src/Tribe/View_Helpers.php:112
2199
  msgid "Equatorial Guinea"
2200
- msgstr ""
2201
 
2202
- #: ../src/Tribe/Importer/File_Uploader.php:28
2203
  msgid "Temporary file not found. Could not save %s."
2204
- msgstr ""
2205
 
2206
- #: ../src/Tribe/View_Helpers.php:113
2207
  msgid "Eritrea"
2208
- msgstr ""
2209
 
2210
- #: ../src/Tribe/Importer/File_Uploader.php:36
2211
  msgid "Could not save %s."
2212
- msgstr ""
2213
 
2214
- #: ../src/Tribe/View_Helpers.php:114
2215
  msgid "Estonia"
2216
- msgstr ""
2217
 
2218
- #: ../src/Tribe/Importer/Options.php:29 ../src/Tribe/Settings.php:520
2219
  msgid "Settings saved."
2220
- msgstr ""
2221
 
2222
- #: ../src/Tribe/View_Helpers.php:115
2223
  msgid "Ethiopia"
2224
- msgstr ""
2225
 
2226
- #: ../src/Tribe/List_Widget.php:30
2227
  msgid "A widget that displays upcoming events."
2228
- msgstr ""
2229
 
2230
- #: ../src/Tribe/View_Helpers.php:116
2231
  msgid "Falkland Islands (Malvinas)"
2232
- msgstr ""
2233
 
2234
- #: ../src/Tribe/List_Widget.php:38
2235
  msgid "Events List"
2236
- msgstr ""
2237
 
2238
- #: ../src/Tribe/View_Helpers.php:117
2239
  msgid "Faroe Islands"
2240
- msgstr ""
2241
 
2242
- #: ../src/Tribe/List_Widget.php:171
2243
  msgid "Upcoming Events"
2244
- msgstr ""
2245
 
2246
- #: ../src/Tribe/View_Helpers.php:118
2247
  msgid "Fiji"
2248
- msgstr ""
2249
 
2250
- #: ../src/Tribe/Main.php:490 ../src/functions/template-tags/venue.php:52
2251
- #: ../src/io/csv/admin-views/import.php:45
2252
  msgid "Venues"
2253
- msgstr ""
2254
 
2255
- #: ../src/Tribe/View_Helpers.php:119
2256
  msgid "Finland"
2257
- msgstr ""
2258
 
2259
- #: ../src/Tribe/Main.php:498
2260
- #: ../src/functions/advanced-functions/meta_registration.php:126
2261
- #: ../src/functions/template-tags/venue.php:41
2262
  msgid "Venue"
2263
- msgstr ""
2264
 
2265
- #: ../src/Tribe/View_Helpers.php:120
2266
  msgid "France"
2267
- msgstr ""
2268
 
2269
- #: ../src/Tribe/Main.php:506 ../src/functions/template-tags/organizer.php:82
2270
- #: ../src/io/csv/admin-views/import.php:46
2271
  msgid "Organizers"
2272
- msgstr ""
2273
 
2274
- #: ../src/Tribe/View_Helpers.php:121
2275
  msgid "France, Metropolitan"
2276
- msgstr ""
2277
 
2278
- #: ../src/Tribe/Main.php:514
2279
- #: ../src/functions/advanced-functions/meta_registration.php:205
2280
- #: ../src/functions/template-tags/organizer.php:71
2281
  msgid "Organizer"
2282
- msgstr ""
2283
 
2284
- #: ../src/Tribe/View_Helpers.php:122
2285
  msgid "French Guiana"
2286
- msgstr ""
2287
 
2288
- #: ../src/Tribe/Main.php:522 ../src/functions/template-tags/general.php:71
2289
- #: ../src/io/csv/admin-views/import.php:47
2290
  msgid "Events"
2291
- msgstr ""
2292
 
2293
- #: ../src/Tribe/View_Helpers.php:123
2294
  msgid "French Polynesia"
2295
- msgstr ""
2296
 
2297
- #: ../src/Tribe/Main.php:530 ../src/functions/template-tags/general.php:60
2298
  msgid "Event"
2299
- msgstr ""
2300
 
2301
- #: ../src/Tribe/View_Helpers.php:124
2302
  msgid "French Southern Territories"
2303
- msgstr ""
2304
 
2305
- #: ../src/Tribe/Main.php:570 ../src/Tribe/Settings.php:132
2306
- #: ../src/admin-views/tribe-options-help.php:169
 
2307
  msgid "The Events Calendar"
2308
- msgstr "Calendari d'activitats"
2309
 
2310
- #: ../src/Tribe/View_Helpers.php:125
2311
  msgid "Gabon"
2312
- msgstr ""
2313
 
2314
- #: ../src/Tribe/Main.php:575
2315
  msgid "month"
2316
- msgstr ""
2317
 
2318
- #: ../src/Tribe/View_Helpers.php:126
2319
  msgid "Gambia"
2320
- msgstr ""
2321
 
2322
- #: ../src/Tribe/Main.php:576
2323
  msgid "list"
2324
- msgstr ""
2325
 
2326
- #: ../src/Tribe/View_Helpers.php:127 ../src/Tribe/View_Helpers.php:326
2327
  msgid "Georgia"
2328
- msgstr ""
2329
 
2330
- #: ../src/Tribe/Main.php:577
2331
  msgid "upcoming"
2332
- msgstr ""
2333
 
2334
- #: ../src/Tribe/View_Helpers.php:128
2335
  msgid "Germany"
2336
- msgstr ""
2337
 
2338
- #: ../src/Tribe/Main.php:578
2339
  msgid "past"
2340
- msgstr ""
2341
 
2342
- #: ../src/Tribe/View_Helpers.php:129
2343
  msgid "Ghana"
2344
- msgstr ""
2345
 
2346
- #: ../src/Tribe/Main.php:579
2347
  msgid "day"
2348
- msgstr ""
2349
 
2350
- #: ../src/Tribe/View_Helpers.php:130
2351
  msgid "Gibraltar"
2352
- msgstr ""
2353
 
2354
- #: ../src/Tribe/Main.php:580
2355
  msgid "today"
2356
- msgstr ""
2357
 
2358
- #: ../src/Tribe/View_Helpers.php:131
2359
  msgid "Greece"
2360
- msgstr ""
2361
 
2362
- #: ../src/Tribe/Main.php:604
2363
  msgid "Initializing Tribe Events on %s"
2364
- msgstr ""
2365
 
2366
- #: ../src/Tribe/View_Helpers.php:132
2367
  msgid "Greenland"
2368
- msgstr ""
2369
 
2370
- #: ../src/Tribe/Main.php:674
2371
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
2372
- msgstr ""
2373
 
2374
- #: ../src/Tribe/View_Helpers.php:133
2375
  msgid "Grenada"
2376
- msgstr ""
2377
 
2378
- #: ../src/Tribe/Main.php:686
2379
  msgid "The following plugins are out of date: <b>%s</b>. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %sLearn More%s."
2380
- msgstr ""
2381
 
2382
- #: ../src/Tribe/View_Helpers.php:134
2383
  msgid "Guadeloupe"
2384
- msgstr ""
2385
 
2386
- #: ../src/Tribe/Main.php:796 ../src/admin-views/tribe-options-licenses.php:33
2387
  msgid "Licenses"
2388
- msgstr ""
2389
 
2390
- #: ../src/Tribe/View_Helpers.php:135
2391
  msgid "Guam"
2392
- msgstr ""
2393
 
2394
- #: ../src/admin-views/tribe-options-licenses.php:13
2395
- msgid "<p>The license key you received when completing your purchase from %s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. <strong>Find your license keys at <a href=\"%s\" target=\"_blank\">%s</a></strong>.</p> <p>Each paid add-on has its own unique license key. Simply paste the key into its appropriate field on below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message.</p> <p>If you're seeing a red message telling you that your key isn't valid or is out of installs, visit <a href=\"%s\" target=\"_blank\">%s</a> to manage your installs or renew / upgrade your license.</p><p>Not seeing an update but expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> and click \"Check Again\".</p>"
2396
- msgstr ""
2397
-
2398
- #: ../src/Tribe/View_Helpers.php:136
2399
  msgid "Guatemala"
2400
- msgstr ""
2401
 
2402
- #: ../src/Tribe/Main.php:755
2403
  msgid "Display"
2404
- msgstr ""
2405
 
2406
- #: ../src/Tribe/View_Helpers.php:137
2407
  msgid "Guinea"
2408
- msgstr ""
2409
 
2410
- #: ../src/Tribe/Main.php:759 ../src/Tribe/Main.php:3989
2411
- #: ../src/Tribe/Main.php:4084
2412
  msgid "Help"
2413
- msgstr ""
2414
 
2415
- #: ../src/Tribe/View_Helpers.php:138
2416
  msgid "Guinea-Bissau"
2417
- msgstr ""
2418
 
2419
- #: ../src/Tribe/Main.php:897
2420
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
2421
- msgstr ""
2422
 
2423
- #: ../src/Tribe/View_Helpers.php:139
2424
  msgid "Guyana"
2425
- msgstr ""
2426
 
2427
- #: ../src/Tribe/Main.php:900
2428
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
2429
- msgstr ""
2430
 
2431
- #: ../src/Tribe/View_Helpers.php:140
2432
  msgid "Haiti"
2433
- msgstr ""
2434
 
2435
- #: ../src/Tribe/Main.php:1174
2436
  msgid "category"
2437
- msgstr ""
2438
 
2439
- #: ../src/Tribe/View_Helpers.php:141
2440
  msgid "Heard And Mc Donald Islands"
2441
- msgstr ""
2442
 
2443
- #: ../src/Tribe/Main.php:1185
2444
  msgid "tag"
2445
- msgstr ""
2446
 
2447
- #: ../src/Tribe/View_Helpers.php:142
2448
  msgid "Holy See (Vatican City State)"
2449
- msgstr ""
2450
 
2451
- #: ../src/Tribe/Main.php:1220 ../src/Tribe/Main.php:1238
2452
- #: ../src/Tribe/Main.php:1256
2453
  msgid "Add New"
2454
- msgstr ""
2455
 
2456
- #: ../src/Tribe/View_Helpers.php:143
2457
  msgid "Honduras"
2458
- msgstr ""
2459
 
2460
- #: ../src/Tribe/Main.php:1221 ../src/Tribe/Main.php:1239
2461
- #: ../src/Tribe/Main.php:1257 ../src/Tribe/Main.php:1382
2462
- #: ../src/Tribe/Main.php:1383
2463
  msgid "Add New %s"
2464
- msgstr ""
2465
 
2466
- #: ../src/Tribe/View_Helpers.php:144
2467
  msgid "Hong Kong"
2468
- msgstr ""
2469
 
2470
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:113
2471
- #: ../src/Tribe/Main.php:1222 ../src/Tribe/Main.php:1240
2472
- #: ../src/Tribe/Main.php:1258 ../src/Tribe/Main.php:1402
2473
- #: ../src/Tribe/Main.php:1454 ../src/Tribe/Main.php:3933
2474
  msgid "Edit %s"
2475
- msgstr ""
2476
 
2477
- #: ../src/Tribe/View_Helpers.php:145
2478
  msgid "Hungary"
2479
- msgstr ""
2480
 
2481
- #: ../src/Tribe/Main.php:1223 ../src/Tribe/Main.php:1241
2482
- #: ../src/Tribe/Main.php:1259
2483
  msgid "New %s"
2484
- msgstr ""
2485
 
2486
- #: ../src/Tribe/View_Helpers.php:146
2487
  msgid "Iceland"
2488
- msgstr ""
2489
 
2490
- #: ../src/Tribe/Main.php:1224 ../src/Tribe/Main.php:1242
2491
- #: ../src/Tribe/Main.php:1260
2492
  msgid "View %s"
2493
- msgstr ""
2494
 
2495
- #: ../src/Tribe/View_Helpers.php:147
2496
  msgid "India"
2497
- msgstr ""
2498
 
2499
- #: ../src/Tribe/Main.php:1225 ../src/Tribe/Main.php:1243
2500
- #: ../src/Tribe/Main.php:1261
2501
  msgid "Search %s"
2502
- msgstr ""
2503
 
2504
- #: ../src/Tribe/View_Helpers.php:148
2505
  msgid "Indonesia"
2506
- msgstr ""
2507
 
2508
- #: ../src/Tribe/Main.php:1226 ../src/Tribe/Main.php:1244
2509
- #: ../src/Tribe/Main.php:1262
2510
  msgid "No %s found"
2511
- msgstr ""
2512
 
2513
- #: ../src/Tribe/View_Helpers.php:149
2514
  msgid "Iran (Islamic Republic Of)"
2515
- msgstr ""
2516
 
2517
- #: ../src/Tribe/Main.php:1227 ../src/Tribe/Main.php:1245
2518
- #: ../src/Tribe/Main.php:1263
2519
  msgid "No %s found in Trash"
2520
- msgstr ""
2521
 
2522
- #: ../src/Tribe/View_Helpers.php:150
2523
  msgid "Iraq"
2524
  msgstr "Iraq"
2525
 
2526
- #: ../src/Tribe/Main.php:1273 ../src/functions/template-tags/general.php:408
2527
  msgid "%s Category"
2528
- msgstr ""
2529
 
2530
- #: ../src/Tribe/View_Helpers.php:151
2531
  msgid "Ireland"
2532
  msgstr "Irlanda"
2533
 
2534
- #: ../src/Tribe/Main.php:1274
2535
  msgid "Search %s Categories"
2536
- msgstr ""
2537
 
2538
- #: ../src/Tribe/View_Helpers.php:152
2539
  msgid "Israel"
2540
  msgstr "Israel"
2541
 
2542
- #: ../src/Tribe/Main.php:1275
2543
  msgid "All %s Categories"
2544
- msgstr ""
2545
 
2546
- #: ../src/Tribe/View_Helpers.php:153
2547
  msgid "Italy"
2548
  msgstr "Itàlia"
2549
 
2550
- #: ../src/Tribe/Main.php:1276
2551
  msgid "Parent %s Category"
2552
- msgstr ""
2553
 
2554
- #: ../src/Tribe/View_Helpers.php:154
2555
  msgid "Jamaica"
2556
  msgstr "Jamaica"
2557
 
2558
- #: ../src/Tribe/Main.php:1277
2559
  msgid "Parent %s Category:"
2560
- msgstr ""
2561
 
2562
- #: ../src/Tribe/View_Helpers.php:155
2563
  msgid "Japan"
2564
  msgstr "Japó"
2565
 
2566
- #: ../src/Tribe/Main.php:1278
2567
  msgid "Edit %s Category"
2568
- msgstr ""
2569
 
2570
- #: ../src/Tribe/View_Helpers.php:156
2571
  msgid "Jordan"
2572
  msgstr "Jordània"
2573
 
2574
- #: ../src/Tribe/Main.php:1279
2575
  msgid "Update %s Category"
2576
- msgstr ""
2577
 
2578
- #: ../src/Tribe/View_Helpers.php:157
2579
  msgid "Kazakhstan"
2580
  msgstr "Kazakhstan"
2581
 
2582
- #: ../src/Tribe/Main.php:1280
2583
  msgid "Add New %s Category"
2584
- msgstr ""
2585
 
2586
- #: ../src/Tribe/View_Helpers.php:158
2587
  msgid "Kenya"
2588
  msgstr "Kenya"
2589
 
2590
- #: ../src/Tribe/Main.php:1281
2591
  msgid "New %s Category Name"
2592
- msgstr ""
2593
 
2594
- #: ../src/Tribe/View_Helpers.php:159
2595
  msgid "Kiribati"
2596
  msgstr "Kiribati"
2597
 
2598
- #: ../src/Tribe/Main.php:1297
2599
  msgid "%1$s updated. <a href=\"%2$s\">View %3$s</a>"
2600
- msgstr ""
2601
 
2602
- #: ../src/Tribe/View_Helpers.php:160
2603
  msgid "Korea, Democratic People's Republic Of"
2604
- msgstr ""
2605
 
2606
- #: ../src/Tribe/Main.php:1298 ../src/Tribe/Main.php:1334
2607
- #: ../src/Tribe/Main.php:1353
2608
  msgid "Custom field updated."
2609
- msgstr ""
2610
 
2611
- #: ../src/Tribe/View_Helpers.php:161
2612
  msgid "Korea, Republic Of"
2613
- msgstr ""
2614
 
2615
- #: ../src/Tribe/Main.php:1299 ../src/Tribe/Main.php:1335
2616
- #: ../src/Tribe/Main.php:1354
2617
  msgid "Custom field deleted."
2618
- msgstr ""
2619
 
2620
- #: ../src/Tribe/View_Helpers.php:162
2621
  msgid "Kuwait"
2622
- msgstr ""
2623
 
2624
- #: ../src/Tribe/Main.php:1300 ../src/Tribe/Main.php:1333
2625
- #: ../src/Tribe/Main.php:1336 ../src/Tribe/Main.php:1352
2626
- #: ../src/Tribe/Main.php:1355
2627
  msgid "%s updated."
2628
- msgstr ""
2629
 
2630
- #: ../src/Tribe/View_Helpers.php:163
2631
  msgid "Kyrgyzstan"
2632
- msgstr ""
2633
 
2634
- #: ../src/Tribe/Main.php:1302
2635
  msgid "%1$s restored to revision from %2$s"
2636
- msgstr ""
2637
 
2638
- #: ../src/Tribe/View_Helpers.php:164
2639
  msgid "Lao People's Democratic Republic"
2640
  msgstr "Laos, República Democràtica Popular de"
2641
 
2642
- #: ../src/Tribe/Main.php:1304
2643
  msgid "Event published. <a href=\"%1$s\">View %2$s</a>"
2644
  msgstr "Esdeveniment publicat. <a href=\"%1$s\">Veure %2$s</a>"
2645
 
2646
- #: ../src/Tribe/View_Helpers.php:165
2647
  msgid "Latvia"
2648
  msgstr "Letònia"
2649
 
2650
- #: ../src/Tribe/Main.php:1308 ../src/Tribe/Main.php:1340
2651
- #: ../src/Tribe/Main.php:1359
2652
  msgid "%s saved."
2653
  msgstr "%s guardat."
2654
 
2655
- #: ../src/Tribe/View_Helpers.php:166
2656
  msgid "Lebanon"
2657
  msgstr "Líban"
2658
 
2659
- #: ../src/Tribe/Main.php:1310
2660
  msgid "%1$s submitted. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2661
  msgstr "%1$s enviat. <a target=\"_blank\" href=\"%2$s\">Previsualitzar %3$s</a>"
2662
 
2663
- #: ../src/Tribe/View_Helpers.php:167
2664
  msgid "Lesotho"
2665
  msgstr "Lesotho"
2666
 
2667
- #: ../src/Tribe/Main.php:1316
2668
  msgid "%1$s scheduled for: <strong>%2$s</strong>. <a target=\"_blank\" href=\"%3$s\">Preview %4$s</a>"
2669
  msgstr "%1$s programat per: <strong>%2$s</strong>. <a target=\"_blank\" href=\"%3$s\">Previsualitzar %4$s</a>"
2670
 
2671
- #: ../src/Tribe/View_Helpers.php:168
2672
  msgid "Liberia"
2673
  msgstr "Libèria"
2674
 
2675
- #: ../src/Tribe/Main.php:1319 ../src/Tribe/Main.php:1345
2676
- #: ../src/Tribe/Main.php:1364
2677
  msgid "M j, Y @ G:i"
2678
  msgstr "M j, Y @ G:i"
2679
 
2680
- #: ../src/Tribe/View_Helpers.php:169
2681
  msgid "Libya"
2682
  msgstr "Líbia"
2683
 
2684
- #: ../src/Tribe/Main.php:1324
2685
  msgid "%1$s draft updated. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2686
  msgstr "%1$s esborrany actualitzat. <a target=\"_blank\" href=\"%2$s\">Previsualitzar %3$s</a>"
2687
 
2688
- #: ../src/Tribe/View_Helpers.php:170
2689
  msgid "Liechtenstein"
2690
  msgstr "Liechtenstein"
2691
 
2692
- #: ../src/Tribe/Main.php:1338 ../src/Tribe/Main.php:1357
2693
  msgid "%s restored to revision from %s"
2694
- msgstr ""
2695
 
2696
- #: ../src/Tribe/View_Helpers.php:171
2697
  msgid "Lithuania"
2698
  msgstr "Lituània"
2699
 
2700
- #: ../src/Tribe/Main.php:1339 ../src/Tribe/Main.php:1358
2701
  msgid "%s published."
2702
- msgstr ""
2703
 
2704
- #: ../src/Tribe/View_Helpers.php:172
2705
  msgid "Luxembourg"
2706
  msgstr "Luxemburg"
2707
 
2708
- #: ../src/Tribe/Main.php:1341 ../src/Tribe/Main.php:1360
2709
  msgid "%s submitted."
2710
- msgstr ""
2711
 
2712
- #: ../src/Tribe/View_Helpers.php:173
2713
  msgid "Macau"
2714
  msgstr "Macau"
2715
 
2716
- #: ../src/Tribe/Main.php:1343 ../src/Tribe/Main.php:1362
2717
  msgid "%s scheduled for: <strong>%2$s</strong>."
2718
- msgstr ""
2719
 
2720
- #: ../src/Tribe/View_Helpers.php:174
2721
  msgid "Macedonia"
2722
  msgstr "Macedònia"
2723
 
2724
- #: ../src/Tribe/Main.php:1347 ../src/Tribe/Main.php:1366
2725
  msgid "%s draft updated."
2726
- msgstr ""
2727
 
2728
- #: ../src/Tribe/View_Helpers.php:175
2729
  msgid "Madagascar"
2730
  msgstr "Madagascar"
2731
 
2732
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88
2733
- #: ../src/Tribe/Main.php:1401 ../src/Tribe/Main.php:1452
2734
  msgid "Use Saved %s:"
2735
- msgstr ""
2736
 
2737
- #: ../src/Tribe/View_Helpers.php:176
2738
  msgid "Malawi"
2739
  msgstr "Malawi"
2740
 
2741
- #: ../src/Tribe/Main.php:1429
2742
  msgid "Without a defined location your event will not display a <a href=\"https://support.google.com/webmasters/answer/164506\" target=\"_blank\">Google Rich Snippet</a> on the search results."
2743
- msgstr ""
2744
 
2745
- #: ../src/Tribe/View_Helpers.php:177
2746
  msgid "Malaysia"
2747
  msgstr "Malàisia"
2748
 
2749
- #: ../src/Tribe/Main.php:1520 ../src/Tribe/Main.php:1602
2750
  msgid "Use New %s"
2751
- msgstr ""
2752
 
2753
- #: ../src/Tribe/View_Helpers.php:178
2754
  msgid "Maldives"
2755
  msgstr "Maldives"
2756
 
2757
- #: ../src/Tribe/Main.php:1522 ../src/Tribe/Main.php:1604
2758
  msgid "My %s"
2759
- msgstr ""
2760
 
2761
- #: ../src/Tribe/View_Helpers.php:179
2762
  msgid "Mali"
2763
  msgstr "Mali"
2764
 
2765
- #: ../src/Tribe/Main.php:1527 ../src/Tribe/Main.php:1609
2766
  msgid "Available %s"
2767
- msgstr ""
2768
 
2769
- #: ../src/Tribe/View_Helpers.php:180
2770
  msgid "Malta"
2771
  msgstr "Malta"
2772
 
2773
- #: ../src/Tribe/Main.php:1538 ../src/Tribe/Main.php:1620
2774
  msgid "No saved %s exists."
2775
- msgstr ""
2776
 
2777
- #: ../src/Tribe/View_Helpers.php:181
2778
  msgid "Marshall Islands"
2779
  msgstr "Illes Marshall"
2780
 
2781
- #: ../src/Tribe/Main.php:1764
2782
  msgid "Next"
2783
  msgstr "Següent"
2784
 
2785
- #: ../src/Tribe/View_Helpers.php:182
2786
  msgid "Martinique"
2787
  msgstr "Martinica"
2788
 
2789
- #: ../src/Tribe/Main.php:1765
2790
  msgid "Prev"
2791
  msgstr "Anterior"
2792
 
2793
- #: ../src/Tribe/View_Helpers.php:183
2794
  msgid "Mauritania"
2795
  msgstr "Mauritània"
2796
 
2797
- #: ../src/Tribe/Main.php:1766 ../src/functions/template-tags/day.php:105
2798
  msgid "Today"
2799
  msgstr "Avui"
2800
 
2801
- #: ../src/Tribe/View_Helpers.php:184
2802
  msgid "Mauritius"
2803
  msgstr "Maurici"
2804
 
2805
- #: ../src/Tribe/Main.php:1767
2806
  msgid "Done"
2807
  msgstr "Fet"
2808
 
2809
- #: ../src/Tribe/View_Helpers.php:185
2810
  msgid "Mayotte"
2811
  msgstr "Mayotte"
2812
 
2813
- #: ../src/Tribe/Main.php:1941
2814
  msgid "Network"
2815
  msgstr "Xarxa"
2816
 
2817
- #: ../src/Tribe/View_Helpers.php:186
2818
  msgid "Mexico"
2819
  msgstr "Mèxic"
2820
 
2821
- #: ../src/Tribe/Main.php:3428 ../src/Tribe/Main.php:3463
2822
- #: ../src/functions/template-tags/day.php:158
2823
- #: ../src/functions/template-tags/day.php:180
2824
  msgid "Date out of range."
2825
  msgstr "Data fora de rang."
2826
 
2827
- #: ../src/Tribe/View_Helpers.php:187
2828
  msgid "Micronesia, Federated States Of"
2829
  msgstr "Micronèsia, Estats Federats de"
2830
 
2831
- #: ../src/Tribe/Main.php:3499
2832
  msgid "%s Options"
2833
- msgstr ""
2834
 
2835
- #: ../src/Tribe/View_Helpers.php:188
2836
  msgid "Moldova, Republic Of"
2837
  msgstr "Moldàvia, República de"
2838
 
2839
- #: ../src/Tribe/Main.php:3506 ../src/Tribe/Main.php:3517
2840
  msgid "%s Information"
2841
- msgstr ""
2842
 
2843
- #: ../src/Tribe/View_Helpers.php:189
2844
  msgid "Monaco"
2845
  msgstr "Mònaco"
2846
 
2847
- #: ../src/Tribe/Main.php:3730
2848
  msgid "Support"
2849
  msgstr "Suport"
2850
 
2851
- #: ../src/Tribe/View_Helpers.php:190
2852
  msgid "Mongolia"
2853
  msgstr "Mongòlia"
2854
 
2855
- #: ../src/Tribe/Main.php:3733
2856
  msgid "View All Add-Ons"
2857
  msgstr "Veure tots els complements"
2858
 
2859
- #: ../src/Tribe/View_Helpers.php:191
2860
  msgid "Montenegro"
2861
  msgstr "Montenegro"
2862
 
2863
- #: ../src/Tribe/Main.php:3754
2864
  msgid "News from Modern Tribe"
2865
  msgstr "Notícies de Modern Tribe"
2866
 
2867
- #: ../src/Tribe/View_Helpers.php:192
2868
  msgid "Montserrat"
2869
  msgstr "Montserrat"
2870
 
2871
- #: ../src/Tribe/Main.php:3818
2872
  msgid "Additional Functionality"
2873
  msgstr "Funcionalitats addicionals"
2874
 
2875
- #: ../src/Tribe/View_Helpers.php:193
2876
  msgid "Morocco"
2877
  msgstr "Marroc"
2878
 
2879
- #: ../src/Tribe/Main.php:3823
2880
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
2881
- msgstr ""
2882
 
2883
- #: ../src/Tribe/View_Helpers.php:194
2884
  msgid "Mozambique"
2885
- msgstr ""
2886
 
2887
- #: ../src/Tribe/Main.php:3824
2888
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
2889
- msgstr ""
2890
 
2891
- #: ../src/Tribe/View_Helpers.php:195
2892
  msgid "Myanmar"
2893
- msgstr ""
2894
 
2895
- #: ../src/Tribe/Main.php:3875
2896
  msgid "%s"
2897
- msgstr ""
2898
 
2899
- #: ../src/Tribe/View_Helpers.php:196
2900
  msgid "Namibia"
2901
- msgstr ""
2902
 
2903
- #: ../src/Tribe/Main.php:3912 ../src/Tribe/Main.php:4008
2904
  msgid "View Calendar"
2905
- msgstr ""
2906
 
2907
- #: ../src/Tribe/View_Helpers.php:197
2908
  msgid "Nauru"
2909
- msgstr ""
2910
 
2911
- #: ../src/Tribe/Main.php:3922
2912
  msgid "Add %s"
2913
- msgstr ""
2914
 
2915
- #: ../src/Tribe/View_Helpers.php:198
2916
  msgid "Nepal"
2917
  msgstr "Nepal"
2918
 
2919
- #: ../src/Tribe/Main.php:3954
2920
  msgid "CSV"
2921
  msgstr "CSV"
2922
 
2923
- #: ../src/Tribe/View_Helpers.php:199
2924
  msgid "Netherlands"
2925
  msgstr "Països Baixos"
2926
 
2927
- #: ../src/Tribe/Main.php:3976 ../src/Tribe/Main.php:4066
2928
- #: ../src/Tribe/Settings.php:161
2929
  msgid "Settings"
2930
  msgstr "Configuració"
2931
 
2932
- #: ../src/Tribe/View_Helpers.php:200
2933
  msgid "Netherlands Antilles"
2934
  msgstr "Antilles Holandeses"
2935
 
2936
- #: ../src/Tribe/Main.php:4067
2937
  msgid "Calendar"
2938
  msgstr "Calendari"
2939
 
2940
- #: ../src/Tribe/View_Helpers.php:201
2941
  msgid "New Caledonia"
2942
  msgstr "Nova Caledònia"
2943
 
2944
- #: ../src/Tribe/Main.php:4143
2945
  msgid "List"
2946
  msgstr "Llista"
2947
 
2948
- #: ../src/Tribe/View_Helpers.php:202
2949
  msgid "New Zealand"
2950
  msgstr "Nova Zelanda"
2951
 
2952
- #: ../src/Tribe/Main.php:4161
2953
  msgid "Month"
2954
  msgstr "Mes"
2955
 
2956
- #: ../src/Tribe/View_Helpers.php:203
2957
  msgid "Nicaragua"
2958
  msgstr "Nicaragua"
2959
 
2960
- #: ../src/Tribe/Main.php:4178
2961
  msgid "Day"
2962
  msgstr "Dia"
2963
 
2964
- #: ../src/Tribe/View_Helpers.php:204
2965
  msgid "Niger"
2966
  msgstr "Níger"
2967
 
2968
- #: ../src/Tribe/Main.php:4203 ../src/Tribe/Main.php:4204
2969
  msgid "Search"
2970
  msgstr "Buscar"
2971
 
2972
- #: ../src/Tribe/View_Helpers.php:205
2973
  msgid "Nigeria"
2974
  msgstr "Nigèria"
2975
 
2976
- #: ../src/Tribe/Main.php:4228 ../src/Tribe/Main.php:4244
2977
  msgid "Date"
2978
  msgstr "Data"
2979
 
2980
- #: ../src/Tribe/View_Helpers.php:206
2981
  msgid "Niue"
2982
  msgstr "Niue"
2983
 
2984
- #: ../src/Tribe/Main.php:4231
2985
  msgid "%s In"
2986
- msgstr ""
2987
 
2988
- #: ../src/Tribe/View_Helpers.php:207
2989
  msgid "Norfolk Island"
2990
  msgstr "Illa Norfolk"
2991
 
2992
- #: ../src/Tribe/Main.php:4233
2993
  msgid "%s From"
2994
- msgstr ""
2995
 
2996
- #: ../src/Tribe/View_Helpers.php:208
2997
  msgid "Northern Mariana Islands"
2998
  msgstr "Illes Marianes del Nord"
2999
 
3000
- #: ../src/Tribe/Main.php:4235
3001
  msgid "Day Of"
3002
- msgstr ""
3003
 
3004
- #: ../src/Tribe/View_Helpers.php:209
3005
  msgid "Norway"
3006
  msgstr "Noruega"
3007
 
3008
- #: ../src/Tribe/Main.php:4310
3009
  msgid "Once Every 30 Mins"
3010
  msgstr "Un cop cada 30 minuts"
3011
 
3012
- #: ../src/Tribe/View_Helpers.php:210
3013
  msgid "Oman"
3014
  msgstr "Oman"
3015
 
3016
- #: ../src/Tribe/Options_Exception.php:19 ../src/Tribe/Post_Exception.php:22
3017
  msgid "Error"
3018
  msgstr "Error"
3019
 
3020
- #: ../src/Tribe/View_Helpers.php:211
3021
  msgid "Pakistan"
3022
  msgstr "Pakistan"
3023
 
3024
- #: ../src/Tribe/PUE/Checker.php:304
3025
  msgid "License Key"
3026
  msgstr "Clau de llicència"
3027
 
3028
- #: ../src/Tribe/View_Helpers.php:212
3029
  msgid "Palau"
3030
  msgstr "Palau"
3031
 
3032
- #: ../src/Tribe/PUE/Checker.php:305
3033
  msgid "A valid license key is required for support and updates"
3034
- msgstr ""
3035
 
3036
- #: ../src/Tribe/View_Helpers.php:213
3037
  msgid "Panama"
3038
  msgstr "Panamà"
3039
 
3040
- #: ../src/Tribe/PUE/Checker.php:377
3041
  msgid "License key(s) updated."
3042
- msgstr ""
3043
 
3044
- #: ../src/Tribe/View_Helpers.php:214
3045
  msgid "Papua New Guinea"
3046
  msgstr "Papua Nova Guinea"
3047
 
3048
- #: ../src/Tribe/PUE/Checker.php:419
3049
  msgid "Sorry, key validation server is not available."
3050
  msgstr "Ho sentim, el servidor de validació de claus no està disponible."
3051
 
3052
- #: ../src/Tribe/View_Helpers.php:215
3053
  msgid "Paraguay"
3054
  msgstr "Paraguai"
3055
 
3056
- #: ../src/Tribe/PUE/Checker.php:421
3057
  msgid "Sorry, this key is expired."
3058
  msgstr "Ho sentim, aquesta clau ha caducat."
3059
 
3060
- #: ../src/Tribe/View_Helpers.php:216
3061
  msgid "Peru"
3062
  msgstr "Perú"
3063
 
3064
- #: ../src/Tribe/PUE/Checker.php:424
3065
  msgid "Sorry, this key is out of installs."
3066
- msgstr ""
3067
 
3068
- #: ../src/Tribe/View_Helpers.php:217
3069
  msgid "Philippines"
3070
  msgstr "Filipines"
3071
 
3072
- #: ../src/Tribe/PUE/Checker.php:425
3073
  msgid "Why am I seeing this message?"
3074
- msgstr ""
3075
 
3076
- #: ../src/Tribe/View_Helpers.php:218
3077
  msgid "Pitcairn"
3078
  msgstr "Illes Pitcairn"
3079
 
3080
- #: ../src/Tribe/PUE/Checker.php:428
3081
  msgid "Sorry, this key is not valid."
3082
  msgstr "Ho sentim, aquesta clau no és vàlida."
3083
 
3084
- #: ../src/Tribe/View_Helpers.php:219
3085
  msgid "Poland"
3086
  msgstr "Polònia"
3087
 
3088
- #: ../src/Tribe/PUE/Checker.php:430
3089
  msgid "Valid Key! Expires on %s"
3090
  msgstr "Clau vàlida! Caduca el %s"
3091
 
3092
- #: ../src/Tribe/View_Helpers.php:220
3093
  msgid "Portugal"
3094
  msgstr "Portugal"
3095
 
3096
- #: ../src/Tribe/PUE/Checker.php:436
3097
  msgid "Hmmm... something's wrong with this validator. Please contact <a href=\"%s\">support.</a>"
3098
- msgstr ""
3099
 
3100
- #: ../src/Tribe/View_Helpers.php:221
3101
  msgid "Puerto Rico"
3102
  msgstr "Puerto Rico"
3103
 
3104
- #: ../src/Tribe/Settings.php:160 ../src/Tribe/Settings.php:176
3105
  msgid "The Events Calendar Settings"
3106
  msgstr "Configuració de The Events Calendar"
3107
 
3108
- #: ../src/Tribe/View_Helpers.php:222
3109
  msgid "Qatar"
3110
  msgstr "Qatar"
3111
 
3112
- #: ../src/Tribe/Settings.php:176
3113
  msgid "Events Settings"
3114
  msgstr "Configuració dels esdeveniments"
3115
 
3116
- #: ../src/Tribe/View_Helpers.php:223
3117
  msgid "Reunion"
3118
  msgstr "Reunió"
3119
 
3120
- #: ../src/Tribe/Settings.php:239
3121
  msgid "%s Settings"
3122
- msgstr ""
3123
 
3124
- #: ../src/Tribe/View_Helpers.php:224
3125
  msgid "Romania"
3126
  msgstr "Romania"
3127
 
3128
- #: ../src/Tribe/Settings.php:253
3129
  msgid "You've requested a non-existent tab."
3130
- msgstr ""
3131
 
3132
- #: ../src/Tribe/View_Helpers.php:225
3133
  msgid "Russian Federation"
3134
  msgstr "Federació Russa"
3135
 
3136
- #: ../src/Tribe/Settings.php:261
3137
- msgid " Save Changes"
3138
- msgstr "Guardar els canvis"
3139
-
3140
- #: ../src/Tribe/View_Helpers.php:226
3141
  msgid "Rwanda"
3142
  msgstr "Rwanda"
3143
 
3144
- #: ../src/Tribe/Settings.php:309
3145
  msgid "You don't have permission to do that."
3146
  msgstr "No tens permís per fer això."
3147
 
3148
- #: ../src/Tribe/View_Helpers.php:227
3149
  msgid "Saint Kitts And Nevis"
3150
  msgstr "Saint Kitts i Nevis"
3151
 
3152
- #: ../src/Tribe/Settings.php:315
3153
  msgid "The request was sent insecurely."
3154
- msgstr ""
3155
 
3156
- #: ../src/Tribe/View_Helpers.php:228
3157
  msgid "Saint Lucia"
3158
  msgstr "Saint Lucia"
3159
 
3160
- #: ../src/Tribe/Settings.php:321
3161
  msgid "The request wasn't sent from this tab."
3162
- msgstr ""
3163
 
3164
- #: ../src/Tribe/View_Helpers.php:229
3165
  msgid "Saint Vincent And The Grenadines"
3166
  msgstr "Saint Vincent i les Grenadines"
3167
 
3168
- #: ../src/Tribe/Settings.php:489
3169
  msgid "Your form had the following errors:"
3170
- msgstr ""
3171
 
3172
- #: ../src/Tribe/View_Helpers.php:230
3173
  msgid "Samoa"
3174
  msgstr "Samoa"
3175
 
3176
- #: ../src/Tribe/Settings.php:498
3177
  msgid "None of your settings were saved. Please try again."
3178
- msgstr ""
3179
 
3180
- #: ../src/Tribe/View_Helpers.php:231
3181
  msgid "San Marino"
3182
  msgstr "San Marino"
3183
 
3184
- #: ../src/Tribe/Settings.php:498
3185
  msgid "The above setting was not saved. Other settings were successfully saved."
3186
  msgid_plural "The above settings were not saved. Other settings were successfully saved."
3187
- msgstr[0] ""
3188
- msgstr[1] ""
3189
 
3190
- #: ../src/Tribe/View_Helpers.php:232
3191
  msgid "Sao Tome And Principe"
3192
  msgstr "São Tomé i Príncipe"
3193
 
3194
- #: ../src/Tribe/Settings_Tab.php:224
3195
  msgid "There are no fields setup for this tab yet."
3196
- msgstr ""
3197
 
3198
- #: ../src/Tribe/View_Helpers.php:233
3199
  msgid "Saudi Arabia"
3200
  msgstr "Aràbia Saudita"
3201
 
3202
- #: ../src/Tribe/Support.php:46
3203
  msgid "Sometimes it's hard to tell what's going wrong without knowing more about your system steup. For your convenience, we've put together a little report on what's cooking under the hood."
3204
- msgstr ""
3205
 
3206
- #: ../src/Tribe/View_Helpers.php:234
3207
  msgid "Senegal"
3208
  msgstr "Senegal"
3209
 
3210
- #: ../src/Tribe/Support.php:47
3211
  msgid "If you suspect that the problem you're having is related to another plugin, or we're just plain having trouble reproducing your bug report, please copy and send all of this to our support team."
3212
- msgstr ""
3213
 
3214
- #: ../src/Tribe/View_Helpers.php:235
3215
  msgid "Serbia"
3216
  msgstr "Sèrbia"
3217
 
3218
- #: ../src/Tribe/Support.php:51
3219
  msgid "System Information"
3220
  msgstr "Informació del sistema"
3221
 
3222
- #: ../src/Tribe/View_Helpers.php:236
3223
  msgid "Seychelles"
3224
  msgstr "Seychelles"
3225
 
3226
- #: ../src/Tribe/Support.php:137
3227
  msgid "Unknown or not set"
3228
- msgstr ""
3229
 
3230
- #: ../src/Tribe/View_Helpers.php:237
3231
  msgid "Sierra Leone"
3232
  msgstr "Sierra Leone"
3233
 
3234
- #: ../src/Tribe/Template/Day.php:99 ../src/Tribe/Template/Day.php:115
3235
  msgid "All Day"
3236
  msgstr "Tot el dia"
3237
 
3238
- #: ../src/Tribe/View_Helpers.php:238
3239
  msgid "Singapore"
3240
  msgstr "Singapur"
3241
 
3242
- #: ../src/Tribe/Template/Day.php:102 ../src/Tribe/Template/Day.php:118
3243
  msgid "Ongoing"
3244
  msgstr "En marxa"
3245
 
3246
- #: ../src/Tribe/View_Helpers.php:239
3247
  msgid "Slovakia (Slovak Republic)"
3248
  msgstr "Eslovàquia (República Eslovaca)"
3249
 
3250
- #: ../src/Tribe/Template/Day.php:136
3251
- msgid "No matching %s listed under %s scheduled for <strong>%s</strong>. Please try another day."
3252
- msgstr ""
3253
-
3254
- #: ../src/Tribe/View_Helpers.php:240
3255
  msgid "Slovenia"
3256
  msgstr "Eslovènia"
3257
 
3258
- #: ../src/Tribe/Template/Day.php:138
3259
- msgid "No %s scheduled for <strong>%s</strong>. Please try another day."
3260
- msgstr ""
3261
-
3262
- #: ../src/Tribe/View_Helpers.php:241
3263
  msgid "Solomon Islands"
3264
  msgstr "Illes Salomó"
3265
 
3266
- #: ../src/Tribe/Template/Month.php:250
3267
  msgid "There were no results found for <strong>\"%s\"</strong> this month. Try searching next month."
3268
- msgstr ""
3269
 
3270
- #: ../src/Tribe/View_Helpers.php:242
3271
  msgid "Somalia"
3272
  msgstr "Somàlia"
3273
 
3274
- #: ../src/Tribe/Template/Month.php:253
3275
- msgid "No matching %s listed under %s. Please try viewing the full calendar for a complete list of events."
3276
- msgstr ""
3277
-
3278
- #: ../src/Tribe/View_Helpers.php:243
3279
  msgid "South Africa"
3280
  msgstr "Sud-àfrica"
3281
 
3282
- #: ../src/Tribe/Template/Month.php:255 ../src/Tribe/Template_Factory.php:366
3283
  msgid "There were no results found."
3284
- msgstr ""
3285
 
3286
- #: ../src/Tribe/View_Helpers.php:244
3287
  msgid "South Georgia, South Sandwich Islands"
3288
- msgstr ""
3289
 
3290
- #: ../src/Tribe/Template/Month.php:411
3291
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
3292
- msgstr ""
3293
 
3294
- #: ../src/Tribe/View_Helpers.php:245
3295
  msgid "Spain"
3296
  msgstr "Espanya"
3297
 
3298
- #: ../src/Tribe/Template/Single_Event.php:120
3299
  msgid "This %s has passed."
3300
- msgstr ""
3301
 
3302
- #: ../src/Tribe/View_Helpers.php:246
3303
  msgid "Sri Lanka"
3304
  msgstr "Sri Lanka"
3305
 
3306
- #: ../src/Tribe/Template_Factory.php:353
3307
  msgid "There were no results found for <strong>\"%s\"</strong>."
3308
- msgstr ""
3309
 
3310
- #: ../src/Tribe/View_Helpers.php:247
3311
  msgid "St. Helena"
3312
  msgstr "Santa Helena"
3313
 
3314
- #: ../src/Tribe/Template_Factory.php:355
3315
- msgid "No results were found for %s in or near <strong>\"%s\"</strong>."
3316
- msgstr ""
3317
-
3318
- #: ../src/Tribe/View_Helpers.php:248
3319
  msgid "St. Pierre And Miquelon"
3320
  msgstr "Saint-Pierre i Miquelon"
3321
 
3322
- #: ../src/Tribe/Template_Factory.php:357
3323
- msgid "No upcoming %s listed under %s. Check out upcoming %s for this category or view the full calendar."
3324
- msgstr ""
3325
-
3326
- #: ../src/Tribe/View_Helpers.php:249
3327
  msgid "Sudan"
3328
  msgstr "Sudan"
3329
 
3330
- #: ../src/Tribe/Template_Factory.php:359 ../src/Tribe/Template_Factory.php:364
3331
- msgid "No matching %s listed under %s. Please try viewing the full calendar for a complete list of %s."
3332
- msgstr ""
3333
-
3334
- #: ../src/Tribe/View_Helpers.php:250
3335
  msgid "Suriname"
3336
  msgstr "Surinam"
3337
 
3338
- #: ../src/Tribe/Template_Factory.php:361
3339
  msgid "No previous %s "
3340
- msgstr ""
3341
 
3342
- #: ../src/Tribe/View_Helpers.php:251
3343
  msgid "Svalbard And Jan Mayen Islands"
3344
  msgstr "Svalbard i Jan Mayen"
3345
 
3346
- #: ../src/Tribe/Templates.php:618
3347
  msgid "Template overrides should be moved to the correct subdirectory: %s"
3348
- msgstr ""
3349
 
3350
- #: ../src/Tribe/View_Helpers.php:252
3351
  msgid "Swaziland"
3352
  msgstr "Swazilàndia"
3353
 
3354
- #: ../src/Tribe/Templates.php:660
3355
  msgid "Template overrides should be moved to the correct subdirectory: tribe_get_template_part('%s')"
3356
- msgstr ""
3357
 
3358
- #: ../src/Tribe/View_Helpers.php:253
3359
  msgid "Sweden"
3360
  msgstr "Suècia"
3361
 
3362
- #: ../src/Tribe/Tickets/Attendees_Table.php:74
3363
  msgid "Order #"
3364
  msgstr "Comanda #"
3365
 
3366
- #: ../src/Tribe/View_Helpers.php:254
3367
  msgid "Switzerland"
3368
  msgstr "Suïssa"
3369
 
3370
- #: ../src/Tribe/Tickets/Attendees_Table.php:75
3371
  msgid "Order Status"
3372
  msgstr "Estat de la comanda"
3373
 
3374
- #: ../src/Tribe/View_Helpers.php:255
3375
  msgid "Syrian Arab Republic"
3376
  msgstr "Síria"
3377
 
3378
- #: ../src/Tribe/Tickets/Attendees_Table.php:76
3379
  msgid "Purchaser name"
3380
  msgstr "Nom del comprador"
3381
 
3382
- #: ../src/Tribe/View_Helpers.php:256
3383
  msgid "Taiwan"
3384
  msgstr "Taiwan"
3385
 
3386
- #: ../src/Tribe/Tickets/Attendees_Table.php:77
3387
  msgid "Purchaser email"
3388
  msgstr "Correu electrònic del comprador"
3389
 
3390
- #: ../src/Tribe/View_Helpers.php:257
3391
  msgid "Tajikistan"
3392
  msgstr "Tajikistan"
3393
 
3394
- #: ../src/Tribe/Tickets/Attendees_Table.php:78
3395
  msgid "Ticket type"
3396
- msgstr ""
3397
 
3398
- #: ../src/Tribe/View_Helpers.php:258
3399
  msgid "Tanzania, United Republic Of"
3400
  msgstr "Tanzània, República Unida de"
3401
 
3402
- #: ../src/Tribe/Tickets/Attendees_Table.php:79
3403
- #: ../src/views/tickets/email.php:305
3404
  msgid "Ticket #"
3405
- msgstr ""
3406
 
3407
- #: ../src/Tribe/View_Helpers.php:259
3408
  msgid "Thailand"
3409
  msgstr "Tailàndia"
3410
 
3411
- #: ../src/Tribe/Tickets/Attendees_Table.php:80
3412
- #: ../src/views/tickets/email.php:317
3413
  msgid "Security Code"
3414
  msgstr "Codi de seguretat"
3415
 
3416
- #: ../src/Tribe/View_Helpers.php:260
3417
  msgid "Togo"
3418
  msgstr "Togo"
3419
 
3420
- #: ../src/Tribe/Tickets/Attendees_Table.php:81
3421
- #: ../src/Tribe/Tickets/Attendees_Table.php:168
3422
- #: ../src/Tribe/Tickets/Attendees_Table.php:235
3423
  msgid "Check in"
3424
- msgstr ""
3425
 
3426
- #: ../src/Tribe/View_Helpers.php:261
3427
  msgid "Tokelau"
3428
  msgstr "Tokelau"
3429
 
3430
- #: ../src/Tribe/Tickets/Attendees_Table.php:169
3431
- #: ../src/Tribe/Tickets/Attendees_Table.php:236
3432
  msgid "Undo Check in"
3433
- msgstr ""
3434
 
3435
- #: ../src/Tribe/View_Helpers.php:262
3436
  msgid "Tonga"
3437
  msgstr "Tonga"
3438
 
3439
- #: ../src/Tribe/Tickets/Attendees_Table.php:204
3440
  msgid "Print"
3441
- msgstr ""
3442
 
3443
- #: ../src/Tribe/View_Helpers.php:263
3444
  msgid "Trinidad And Tobago"
3445
  msgstr "Trinitat i Tobago"
3446
 
3447
- #: ../src/Tribe/Tickets/Attendees_Table.php:205
3448
  msgid "Email"
3449
  msgstr "Correu electrònic"
3450
 
3451
- #: ../src/Tribe/View_Helpers.php:264
3452
  msgid "Tunisia"
3453
  msgstr "Tunísia"
3454
 
3455
- #: ../src/Tribe/Tickets/Attendees_Table.php:214 ../src/Tribe/iCal.php:119
3456
  msgid "Export"
3457
  msgstr "Exportar"
3458
 
3459
- #: ../src/Tribe/View_Helpers.php:265
3460
  msgid "Turkey"
3461
  msgstr "Turquia"
3462
 
3463
- #: ../src/Tribe/Tickets/Attendees_Table.php:221
3464
  msgid "Filter by purchaser name, ticket #, order # or security code"
3465
- msgstr ""
3466
 
3467
- #: ../src/Tribe/View_Helpers.php:266
3468
  msgid "Turkmenistan"
3469
  msgstr "Turkmenistan"
3470
 
3471
- #: ../src/Tribe/Tickets/Attendees_Table.php:237
3472
- #: ../src/admin-views/tickets/list.php:22
3473
  msgid "Delete"
3474
  msgstr "Eliminar"
3475
 
3476
- #: ../src/Tribe/View_Helpers.php:267
3477
  msgid "Turks And Caicos Islands"
3478
  msgstr "Illes Turks i Caicos"
3479
 
3480
- #: ../src/Tribe/Tickets/Metabox.php:26
3481
- #: ../src/admin-views/admin-update-message.php:52
3482
  msgid "Tickets"
3483
- msgstr ""
3484
 
3485
- #: ../src/Tribe/View_Helpers.php:268
3486
  msgid "Tuvalu"
3487
  msgstr "Tuvalu"
3488
 
3489
- #: ../src/Tribe/Tickets/Metabox.php:71
3490
  msgid "Ticket header image"
3491
- msgstr ""
3492
 
3493
- #: ../src/Tribe/View_Helpers.php:269
3494
  msgid "Uganda"
3495
  msgstr "Uganda"
3496
 
3497
- #: ../src/Tribe/Tickets/Metabox.php:72
3498
  msgid "Set as ticket header"
3499
- msgstr ""
3500
 
3501
- #: ../src/Tribe/View_Helpers.php:270
3502
  msgid "Ukraine"
3503
  msgstr "Ucraïna"
3504
 
3505
- #: ../src/Tribe/Tickets/Tickets.php:328
3506
  msgid "Your ticket has been saved."
3507
  msgstr "El teu tiquet ha estat guardat."
3508
 
3509
- #: ../src/Tribe/View_Helpers.php:271
3510
  msgid "United Arab Emirates"
3511
- msgstr ""
3512
 
3513
- #: ../src/Tribe/Tickets/Tickets.php:409
3514
  msgid "Your ticket has been deleted."
3515
  msgstr "S'ha eliminat el teu tiquet."
3516
 
3517
- #: ../src/Tribe/View_Helpers.php:272
3518
  msgid "United Kingdom"
3519
  msgstr "regne Unit"
3520
 
3521
- #: ../src/Tribe/Tickets/Tickets_Pro.php:78
3522
- #: ../src/admin-views/tickets/list.php:41
3523
  msgid "See who purchased tickets to this event"
3524
- msgstr ""
3525
 
3526
- #: ../src/Tribe/View_Helpers.php:273
3527
  msgid "United States Minor Outlying Islands"
3528
- msgstr ""
3529
 
3530
- #: ../src/Tribe/Tickets/Tickets_Pro.php:78
3531
- #: ../src/admin-views/tickets/attendees.php:11
3532
- #: ../src/admin-views/tickets/list.php:41
3533
  msgid "Attendees"
3534
  msgstr "Assistents"
3535
 
3536
- #: ../src/Tribe/View_Helpers.php:274
3537
  msgid "Uruguay"
3538
  msgstr "Uruguai"
3539
 
3540
- #: ../src/Tribe/Tickets/Tickets_Pro.php:113
3541
  msgid "You need to select a user or type a valid email address"
3542
- msgstr ""
3543
 
3544
- #: ../src/Tribe/View_Helpers.php:275
3545
  msgid "Uzbekistan"
3546
  msgstr "Uzbekistan"
3547
 
3548
- #: ../src/Tribe/Tickets/Tickets_Pro.php:114
3549
  msgid "Sending..."
3550
  msgstr "Enviant..."
3551
 
3552
- #: ../src/Tribe/View_Helpers.php:276
3553
  msgid "Vanuatu"
3554
  msgstr "Vanuatu"
3555
 
3556
- #: ../src/Tribe/Tickets/Tickets_Pro.php:140
3557
  msgid "Columns"
3558
  msgstr "Columnes"
3559
 
3560
- #: ../src/Tribe/View_Helpers.php:277
3561
  msgid "Venezuela"
3562
  msgstr "Venezuela"
3563
 
3564
- #: ../src/Tribe/Tickets/Tickets_Pro.php:140
3565
  msgid "You can use Screen Options to select which columns you want to see. The selection works in the table below, in the email, for print and for the CSV export."
3566
- msgstr ""
3567
 
3568
- #: ../src/Tribe/View_Helpers.php:278
3569
  msgid "Viet Nam"
3570
  msgstr "Vietnam"
3571
 
3572
- #: ../src/Tribe/Tickets/Tickets_Pro.php:230
3573
  msgid "Yes"
3574
  msgstr "Sí"
3575
 
3576
- #: ../src/Tribe/View_Helpers.php:279
3577
  msgid "Virgin Islands (British)"
3578
  msgstr "Illes Verges (Britàniques)"
3579
 
3580
- #: ../src/Tribe/Tickets/Tickets_Pro.php:262
3581
  msgid "attendees"
3582
  msgstr "assistents"
3583
 
3584
- #: ../src/Tribe/View_Helpers.php:280
3585
  msgid "Virgin Islands (U.S.)"
3586
  msgstr "Illes Verges (Nord-americanes) "
3587
 
3588
- #: ../src/Tribe/Tickets/Tickets_Pro.php:316
3589
  msgid "Attendee List for: %s"
3590
  msgstr "Llista d'assistents per: %s"
3591
 
3592
- #: ../src/Tribe/Validate.php:76 ../src/Tribe/Validate.php:117
3593
  msgid "Invalid or incomplete field passed"
3594
- msgstr ""
3595
 
3596
- #: ../src/Tribe/Validate.php:77 ../src/Tribe/Validate.php:112
3597
- #: ../src/Tribe/Validate.php:118
3598
  msgid "Field ID:"
3599
  msgstr "ID del camp:"
3600
 
3601
- #: ../src/Tribe/Validate.php:111
3602
  msgid "Non-existant field validation function passed"
3603
- msgstr ""
3604
 
3605
- #: ../src/Tribe/Validate.php:112
3606
  msgctxt "non-existant function name passed for field validation"
3607
  msgid "with function name:"
3608
- msgstr ""
3609
 
3610
- #: ../src/Tribe/Validate.php:135 ../src/Tribe/Validate.php:151
3611
  msgid "%s must contain numbers and letters only"
3612
- msgstr ""
3613
 
3614
- #: ../src/Tribe/Validate.php:167
3615
  msgid "%s must contain numbers, letters and dots only"
3616
- msgstr ""
3617
 
3618
- #: ../src/Tribe/Validate.php:181
3619
  msgid "%s must be a positive number."
3620
- msgstr ""
3621
 
3622
- #: ../src/Tribe/Validate.php:196
3623
  msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
3624
- msgstr ""
3625
 
3626
- #: ../src/Tribe/Validate.php:211
3627
  msgid "%s must be a valid absolute URL."
3628
- msgstr ""
3629
 
3630
- #: ../src/Tribe/Validate.php:227 ../src/Tribe/Validate.php:244
3631
- #: ../src/Tribe/Validate.php:266
3632
  msgid "%s must have a value that's part of its options."
3633
- msgstr ""
3634
 
3635
- #: ../src/Tribe/Validate.php:280
3636
  msgid "Comparison validation failed because no comparison value was provided, for field %s"
3637
- msgstr ""
3638
 
3639
- #: ../src/Tribe/Validate.php:287
3640
  msgid "%s cannot be the same as %s."
3641
- msgstr ""
3642
 
3643
- #: ../src/Tribe/Validate.php:289
3644
  msgid "%s cannot be a duplicate"
3645
- msgstr ""
3646
 
3647
- #: ../src/Tribe/Validate.php:305
3648
  msgid "%s must be a number or percentage."
3649
- msgstr ""
3650
 
3651
- #: ../src/Tribe/Validate.php:359
3652
  msgid "%s must be a number between 0 and 21."
3653
- msgstr ""
3654
 
3655
- #: ../src/Tribe/Validate.php:375
3656
  msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
3657
- msgstr ""
3658
 
3659
- #: ../src/Tribe/Validate.php:391
3660
  msgid "%s must consist of letters, spaces, apostrophes, and dashes."
3661
- msgstr ""
3662
 
3663
- #: ../src/Tribe/Validate.php:405
3664
  msgid "%s must consist of 5 numbers."
3665
- msgstr ""
3666
 
3667
- #: ../src/Tribe/Validate.php:419
3668
  msgid "%s must be a phone number."
3669
- msgstr ""
3670
 
3671
- #: ../src/Tribe/Validate.php:435
3672
  msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
3673
- msgstr ""
3674
 
3675
- #: ../src/Tribe/View_Helpers.php:26 ../src/Tribe/View_Helpers.php:45
3676
  msgid "Select a Country:"
3677
  msgstr "Selecciona un país:"
2
  # This file is distributed under the same license as the The Events Calendar package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-08-06 15:42:42+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: The Events Calendar\n"
12
 
13
+ #. Description of the plugin/theme
14
+ msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome."
15
  msgstr ""
16
 
17
+ #. Author of the plugin/theme
18
+ msgid "Modern Tribe, Inc."
19
  msgstr ""
20
 
21
+ #. Author URI of the plugin/theme
22
+ msgid "http://m.tri.be/1x"
23
  msgstr ""
24
 
25
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:62
26
+ msgid "<a href=\"%s\">Edit the page slug</a>"
27
  msgstr ""
28
 
29
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:63
30
+ msgid "Ask the site administrator to edit the page slug"
31
  msgstr ""
32
 
33
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:68
34
+ msgid "<a href=\"%s\">edit The Events Calendar settings</a>."
35
+ msgstr ""
36
+
37
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:69
38
+ msgid " ask the site administrator set a different Events URL slug."
39
+ msgstr ""
40
+
41
+ #: src/Tribe/Admin/Timezone_Updater.php:77
42
+ msgid "Please wait while timezone data is added to your events."
43
+ msgstr ""
44
+
45
+ #: src/Tribe/Admin/Timezone_Updater.php:78
46
+ msgid "Update complete: timezone data has been added to all events in the database."
47
+ msgstr ""
48
+
49
+ #: src/Tribe/Admin/Timezone_Updater.php:87
50
+ msgid "%d%% complete"
51
+ msgstr ""
52
+
53
+ #: src/Tribe/Admin/Timezone_Updater.php:105
54
+ msgid "A problem stopped the timezone update process from completing. Please refresh and try again."
55
+ msgstr ""
56
+
57
+ #: src/Tribe/Importer/Column_Mapper.php:64
58
+ msgid "Event Currency Symbol"
59
+ msgstr ""
60
+
61
+ #: src/Tribe/Importer/Column_Mapper.php:65
62
+ msgid "Event Currency Position"
63
+ msgstr ""
64
+
65
+ #: src/Tribe/Importer/Column_Mapper.php:67
66
+ msgid "Event Tags"
67
+ msgstr ""
68
+
69
+ #: src/Tribe/Main.php:2241
70
+ msgid "page"
71
+ msgstr ""
72
+
73
+ #: src/Tribe/Main.php:2242
74
+ msgid "event"
75
+ msgstr ""
76
+
77
+ #: src/Tribe/Main.php:2243
78
+ msgid "events"
79
+ msgstr ""
80
+
81
+ #: src/Tribe/Main.php:2244
82
+ msgid "all"
83
+ msgstr ""
84
+
85
+ #: src/Tribe/Settings.php:261
86
+ msgid "Save Changes"
87
+ msgstr ""
88
+
89
+ #: src/Tribe/Template/Day.php:136
90
+ msgid "No matching %1$s listed under %2$s scheduled for <strong>%3$s</strong>. Please try another day."
91
+ msgstr ""
92
+
93
+ #: src/Tribe/Template/Day.php:138
94
+ msgid "No %1$s scheduled for <strong>%2$s</strong>. Please try another day."
95
+ msgstr ""
96
+
97
+ #: src/Tribe/Template/Month.php:287
98
+ msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
99
+ msgstr ""
100
+
101
+ #: src/Tribe/Template_Factory.php:355
102
+ msgid "No results were found for %1$s in or near <strong>\"%2$s\"</strong>."
103
+ msgstr ""
104
+
105
+ #: src/Tribe/Template_Factory.php:357
106
+ msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
107
+ msgstr ""
108
+
109
+ #: src/Tribe/Template_Factory.php:359 src/Tribe/Template_Factory.php:364
110
+ msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
111
+ msgstr ""
112
+
113
+ #: src/admin-views/events-meta-box.php:121
114
+ msgid "Timezone:"
115
+ msgstr ""
116
+
117
+ #: src/admin-views/tickets/attendees.php:103
118
+ msgid "Sold %1$d %2$s"
119
+ msgstr ""
120
+
121
+ #: src/admin-views/tickets/attendees.php:106
122
+ msgid "Sold %1$d of %2$d %3$s"
123
+ msgstr ""
124
+
125
+ #: src/admin-views/tickets/list.php:69
126
+ msgid "Sold %1$d of %2$d"
127
+ msgstr ""
128
+
129
+ #: src/admin-views/tribe-options-general.php:94
130
+ msgid "You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=\"%1$s\">%2$s</a>. In order to edit the slug here, <a href=\"%3$soptions-permalink.php\">enable pretty permalinks</a>."
131
+ msgstr ""
132
+
133
+ #: src/admin-views/tribe-options-help.php:199
134
+ msgid "If you find that you aren't getting the level of service you've come to expect from Modern Tribe, shoot us an email at %1$s or tweet %2$s and tell us why. We'll do what we can to make it right."
135
+ msgstr ""
136
+
137
+ #: src/admin-views/tribe-options-licenses.php:13
138
+ msgid "<p>The license key you received when completing your purchase from %1$s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. <strong>Find your license keys at <a href=\"%2$s\" target=\"_blank\">%3$s</a></strong>.</p> <p>Each paid add-on has its own unique license key. Simply paste the key into its appropriate field on below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message.</p> <p>If you're seeing a red message telling you that your key isn't valid or is out of installs, visit <a href=\"%4$s\" target=\"_blank\">%5$s</a> to manage your installs or renew / upgrade your license.</p><p>Not seeing an update but expecting one? In WordPress, go to <a href=\"%6$s\">Dashboard > Updates</a> and click \"Check Again\".</p>"
139
+ msgstr ""
140
+
141
+ #: src/admin-views/tribe-options-timezones.php:4
142
+ msgid "Enable timezone support"
143
+ msgstr ""
144
+
145
+ #: src/admin-views/tribe-options-timezones.php:6
146
+ msgid "Update Timezone Data"
147
+ msgstr ""
148
+
149
+ #: src/admin-views/tribe-options-timezones.php:7
150
+ msgid "Click this button to update your database and take advantage of additional timezone capabilities. Please <a href=\"%s\" target=\"_blank\">configure WordPress</a> to use the correct timezone before clicking this button!"
151
  msgstr ""
152
 
153
+ #: src/admin-views/tribe-options-timezones.php:27
154
+ msgid "Timezone Settings"
155
+ msgstr ""
156
+
157
+ #: src/admin-views/tribe-options-timezones.php:35
158
+ msgid "Timezone mode"
159
+ msgstr ""
160
+
161
+ #: src/admin-views/tribe-options-timezones.php:39
162
+ msgid "Use the local timezones for each event"
163
+ msgstr ""
164
+
165
+ #: src/admin-views/tribe-options-timezones.php:40
166
+ msgid "Use the sitewide timezone everywhere"
167
+ msgstr ""
168
+
169
+ #: src/admin-views/tribe-options-timezones.php:45
170
+ msgid "Show timezone"
171
+ msgstr ""
172
+
173
+ #: src/admin-views/tribe-options-timezones.php:46
174
+ msgid "Appends the timezone to the end of event scheduling information &ndash; this can be useful when you have events in numerous different timezones."
175
+ msgstr ""
176
+
177
+ #: src/functions/template-tags/general.php:411
178
+ msgctxt "category list label"
179
+ msgid "%s Category"
180
+ msgid_plural "%s Categories"
181
+ msgstr[0] ""
182
+ msgstr[1] ""
183
+
184
+ #: src/io/csv/admin-views/general.php:48
185
+ msgid "Save Settings"
186
+ msgstr ""
187
+
188
+ #: src/Tribe/Activation_Page.php:38
189
+ msgid "Go to plugins page"
190
+ msgstr "Anar a la pàgina de plugins"
191
+
192
+ #: src/Tribe/Activation_Page.php:38
193
+ msgid "Return to Plugins page"
194
+ msgstr "Tornar a la pàgina de plugins"
195
+
196
+ #: src/Tribe/Activation_Page.php:46
197
+ msgid "Go to WordPress Updates page"
198
+ msgstr "Anar a la pàgina d'actualitzacions de WordPress"
199
+
200
+ #: src/Tribe/Activation_Page.php:46
201
+ msgid "Return to WordPress Updates"
202
+ msgstr "Tornar a les actualitzacions de WordPress "
203
+
204
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88
205
+ msgid "Create New %s"
206
+ msgstr "Crear nou %s"
207
+
208
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:148
209
+ msgid "Add another organizer"
210
+ msgstr "Afegir un altre organitzador"
211
+
212
+ #: src/Tribe/Cost_Utils.php:108
213
  msgctxt "Cost range separator"
214
  msgid " - "
215
+ msgstr " - "
216
 
217
+ #: src/Tribe/PUE/Checker.php:416
218
  msgid "unknown date"
219
+ msgstr "data desconeguda"
220
 
221
+ #: src/Tribe/Support.php:142
222
  msgid "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
223
+ msgstr "Las regles de reescriptura s'han buidat al carregar aquesta pàgina d'ajuda. El més probable és que hi hagi un buidat de regles de reescriptura en algun plugin o tema!"
224
 
225
+ #: src/admin-views/tribe-options-help.php:155
226
  msgid "If you're looking for help with The Events Calendar, you've come to the right place. We are committed to helping make your calendar be spectacular... and hope the resources provided below will help get you there."
227
+ msgstr "Si estàs buscant ajuda per utilitzar The Events Calendar, has vingut al lloc correcte. Ens comprometem a fer que el teu calendari sigui espectacular... i esperem que els recursos proporcionats a continuació t'ajudin a fer-ho."
228
 
229
+ #: src/admin-views/tribe-options-help.php:209
230
  msgid "Hi! We are Modern Tribe and we are here to help you be awesome. Thanks so much for installing our labor of love!"
231
+ msgstr "Hola! Som Modern Tribe i estem aquí per ajudar-te a ser fantàstic. Moltes gràcies per instal·lar el nostre producte fet amb molt d'amor!"
232
 
233
+ #: src/admin-views/tribe-options-help.php:231
234
  msgid "Support Resources To Help You Be Awesome"
235
+ msgstr "Recursos de suport per ajudar-te a ser fantàstic"
236
 
237
+ #: src/admin-views/tribe-options-licenses.php:17
238
  msgid ""
239
  "<strong> Using our plugins in a multisite network? </strong>\n"
240
  "\t\tPlease note that your license key will be applied to the entire network, not just this site."
241
  msgstr ""
242
+ "<strong>Utilitzes els nostres plugins en una xarxa multilloc?</strong> \n"
243
+ " → → Recorda que la clau de llicència s'aplicarà a tota la xarxa, no només en aquesta web."
244
 
245
+ #: src/admin-views/tribe-options-licenses.php:20
246
  msgid ""
247
  "Only license fields for <strong>network activated</strong> plugins will be\n"
248
  "\t\tlisted on this screen. "
249
  msgstr ""
250
+ "Només els camps de llicència per plugins <strong>activats en xarxa</strong> es\n"
251
+ "→\t→\tllistaran en aquesta pantalla. "
252
 
253
+ #: src/Tribe/View_Helpers.php:334
254
  msgid "Louisiana"
255
  msgstr "Louisiana"
256
 
257
+ #: src/Tribe/View_Helpers.php:335
 
 
 
 
258
  msgid "Maine"
259
  msgstr "Maine"
260
 
261
+ #: src/admin-views/tribe-options-help.php:200
262
  msgid "More..."
263
  msgstr "Més..."
264
 
265
+ #: src/Tribe/View_Helpers.php:336
266
  msgid "Maryland"
267
  msgstr "Maryland"
268
 
269
+ #: src/Tribe/View_Helpers.php:337
270
  msgid "Massachusetts"
271
  msgstr "Massachussets"
272
 
273
+ #: src/Tribe/View_Helpers.php:338
274
  msgid "Michigan"
275
  msgstr "Michigan"
276
 
277
+ #: src/admin-views/tribe-options-help.php:241
278
  msgid "Forums: Because Everyone Needs A Buddy"
279
+ msgstr "Fòrums: Perquè tothom necessita un company"
280
 
281
+ #: src/Tribe/View_Helpers.php:339
282
  msgid "Minnesota"
283
  msgstr "Minnesota"
284
 
285
+ #: src/admin-views/tribe-options-help.php:251
286
  msgid "Not getting help?"
287
  msgstr "No resulta d'ajuda?"
288
 
289
+ #: src/Tribe/View_Helpers.php:340
290
  msgid "Mississippi"
291
+ msgstr "Mississipí"
292
 
293
+ #: src/admin-views/tribe-options-help.php:277
294
  msgid "Latest Version:"
295
  msgstr "Última versió:"
296
 
297
+ #: src/Tribe/View_Helpers.php:341
298
  msgid "Missouri"
299
  msgstr "Missouri"
300
 
301
+ #: src/admin-views/tribe-options-help.php:279
302
  msgid "Author:"
303
  msgstr "Autor:"
304
 
305
+ #: src/Tribe/View_Helpers.php:342
306
  msgid "Montana"
307
  msgstr "Montana"
308
 
309
+ #: src/admin-views/tribe-options-help.php:279
310
  msgid "Modern Tribe Inc"
311
  msgstr "Modern Tribe Inc"
312
 
313
+ #: src/Tribe/View_Helpers.php:343
314
  msgid "Nebraska"
315
  msgstr "Nebraska"
316
 
317
+ #: src/admin-views/tribe-options-help.php:284
318
  msgid "Requires:"
319
  msgstr "Requereix:"
320
 
321
+ #: src/Tribe/View_Helpers.php:344
322
  msgid "Nevada"
323
  msgstr "Nevada"
324
 
325
+ #: src/admin-views/tribe-options-help.php:284
326
  msgid "WordPress "
327
  msgstr "WordPress "
328
 
329
+ #: src/Tribe/View_Helpers.php:345
330
  msgid "New Hampshire"
331
+ msgstr "Nou Hampshire"
332
 
333
+ #: src/admin-views/tribe-options-help.php:295
334
  msgid "Wordpress.org Plugin Page"
335
  msgstr "Pàgina de plugins de Wordpress.org"
336
 
337
+ #: src/Tribe/View_Helpers.php:346
338
  msgid "New Jersey"
339
+ msgstr "Nova Jersey"
340
 
341
+ #: src/admin-views/tribe-options-help.php:301
342
  msgid "Average Rating"
343
  msgstr "Valoracions"
344
 
345
+ #: src/Tribe/View_Helpers.php:347
346
  msgid "New Mexico"
347
+ msgstr "Nou Mèxic"
348
 
349
+ #: src/admin-views/tribe-options-help.php:307
350
  msgid "Based on %d rating"
351
  msgid_plural "Based on %d ratings"
352
  msgstr[0] "Basat en %d valoració"
353
  msgstr[1] "Basat en %d valoracions"
354
 
355
+ #: src/Tribe/View_Helpers.php:348
356
  msgid "New York"
357
+ msgstr "Nova York"
358
 
359
+ #: src/admin-views/tribe-options-help.php:317
360
  msgid "Give us 5 stars!"
361
  msgstr "Dóna'ns 5 estrelles!"
362
 
363
+ #: src/Tribe/View_Helpers.php:349
364
  msgid "North Carolina"
365
+ msgstr "Carolina del Nord"
366
 
367
+ #: src/admin-views/tribe-options-help.php:321
368
  msgid "Premium Add-Ons"
369
+ msgstr "Complements premium"
370
 
371
+ #: src/Tribe/View_Helpers.php:350
372
  msgid "North Dakota"
373
+ msgstr "Dakota del Nord"
374
 
375
+ #: src/admin-views/tribe-options-help.php:330
376
  msgid "(Coming Soon!)"
377
  msgstr "(Pròximament!)"
378
 
379
+ #: src/Tribe/View_Helpers.php:351
380
  msgid "Ohio"
381
  msgstr "Ohio"
382
 
383
+ #: src/admin-views/tribe-options-help.php:340
384
  msgid "News and Tutorials"
385
  msgstr "Notícies i tutorials"
386
 
387
+ #: src/Tribe/View_Helpers.php:352
388
  msgid "Oklahoma"
389
  msgstr "Oklahoma"
390
 
391
+ #: src/admin-views/tribe-options-network.php:15
392
  msgid "Network Settings"
393
+ msgstr "Configuració de xarxa"
394
 
395
+ #: src/Tribe/View_Helpers.php:353
396
  msgid "Oregon"
397
  msgstr "Oregon"
398
 
399
+ #: src/admin-views/tribe-options-network.php:19
400
  msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
401
+ msgstr "Aquí és on es poden modificar tots els ajustos de xarxa de The Events Calendar de Modern Tribe."
402
 
403
+ #: src/Tribe/View_Helpers.php:354
404
  msgid "Pennsylvania"
405
+ msgstr "Pennsilvània"
406
 
407
+ #: src/admin-views/tribe-options-network.php:27
408
  msgid "Hide the following settings tabs on every site:"
409
+ msgstr "Amaga les següents pestanyes d'ajustos a cada web:"
410
 
411
+ #: src/Tribe/View_Helpers.php:355
412
  msgid "Rhode Island"
413
  msgstr "Rhode Island"
414
 
415
+ #: src/admin-views/tickets/attendees.php:46
416
+ #: src/admin-views/venue-meta-box.php:34
417
+ #: src/functions/advanced-functions/meta_registration.php:176
418
  msgid "Address:"
419
  msgstr "Adreça:"
420
 
421
+ #: src/Tribe/View_Helpers.php:356
422
  msgid "South Carolina"
423
+ msgstr "Carolina del Sud"
424
 
425
+ #: src/admin-views/venue-meta-box.php:41
426
  msgid "City:"
427
  msgstr "Ciutat:"
428
 
429
+ #: src/Tribe/View_Helpers.php:357
430
  msgid "South Dakota"
431
+ msgstr "Dakota del Sud"
432
 
433
+ #: src/admin-views/venue-meta-box.php:48
434
  msgid "Country:"
435
  msgstr "País:"
436
 
437
+ #: src/Tribe/View_Helpers.php:358
438
  msgid "Tennessee"
439
  msgstr "Tennessee"
440
 
441
+ #: src/admin-views/venue-meta-box.php:88
442
  msgid "State or Province:"
443
  msgstr "Estat o província:"
444
 
445
+ #: src/Tribe/View_Helpers.php:359
446
  msgid "Texas"
447
  msgstr "Texas"
448
 
449
+ #: src/admin-views/venue-meta-box.php:92
450
  msgid "Select a State:"
451
  msgstr "Tria un estat:"
452
 
453
+ #: src/Tribe/View_Helpers.php:360
454
  msgid "Utah"
455
  msgstr "Utah"
456
 
457
+ #: src/admin-views/venue-meta-box.php:105
458
  msgid "Postal Code:"
459
  msgstr "Codi postal:"
460
 
461
+ #: src/Tribe/View_Helpers.php:361
462
  msgid "Vermont"
463
  msgstr "Vermont"
464
 
465
+ #: src/admin-views/venue-meta-box.php:137
466
+ #: src/admin-views/venue-meta-box.php:159
467
  msgid "Show Google Map:"
468
  msgstr "Mostra Google Map:"
469
 
470
+ #: src/Tribe/View_Helpers.php:362
471
  msgid "Virginia"
472
+ msgstr "Virgínia"
473
 
474
+ #: src/admin-views/venue-meta-box.php:147
475
+ #: src/admin-views/venue-meta-box.php:169
476
  msgid "Show Google Maps Link:"
477
  msgstr "Mostra l'enllaç a Google Maps:"
478
 
479
+ #: src/Tribe/View_Helpers.php:363
480
  msgid "Washington"
481
  msgstr "Washington"
482
 
483
+ #: src/admin-views/widget-admin-list.php:13
484
  msgid "Title:"
485
  msgstr "Títol:"
486
 
487
+ #: src/Tribe/View_Helpers.php:364
488
  msgid "West Virginia"
489
+ msgstr "Virgínia Occidental"
490
 
491
+ #: src/admin-views/widget-admin-list.php:18
492
  msgid "Show:"
493
  msgstr "Mostra:"
494
 
495
+ #: src/Tribe/View_Helpers.php:365
496
  msgid "Wisconsin"
497
  msgstr "Wisconsin"
498
 
499
+ #: src/admin-views/widget-admin-list.php:28
500
  msgid "Show widget only if there are upcoming events:"
501
+ msgstr "Mostra el giny només si hi ha esdeveniments programats:"
502
 
503
+ #: src/Tribe/View_Helpers.php:366
504
  msgid "Wyoming"
505
  msgstr "Wyoming"
506
 
507
+ #: src/functions/advanced-functions/meta_registration.php:16
508
+ #: src/views/modules/meta/details.php:30
509
  msgid "Details"
510
  msgstr "Detalls"
511
 
512
+ #: src/Tribe/iCal.php:28
513
  msgctxt "feed link"
514
  msgid "&raquo;"
515
  msgstr "&raquo;"
516
 
517
+ #: src/functions/advanced-functions/meta_registration.php:80
518
  msgid "Event Tags:"
519
  msgstr "Etiquetes d'esdeveniments:"
520
 
521
+ #: src/Tribe/iCal.php:29
522
  msgid "%1$s %2$s iCal Feed"
523
  msgstr "%1$s %2$s Feed iCal"
524
 
525
+ #: src/functions/advanced-functions/meta_registration.php:112
526
  msgid "Origin:"
527
  msgstr "Orígen:"
528
 
529
+ #: src/Tribe/iCal.php:75
530
  msgid "Add to Google Calendar"
531
  msgstr "Afegeix a Google Calendar"
532
 
533
+ #: src/functions/advanced-functions/meta_registration.php:286
534
  msgid "%s:"
535
  msgstr "%s:"
536
 
537
+ #: src/Tribe/iCal.php:75
538
  msgid "Google Calendar"
539
  msgstr "Google Calendar"
540
 
541
+ #: src/functions/template-tags/date.php:261
542
  msgid "The function needs to be passed an $event or used in the loop."
543
+ msgstr "La funció necessita un $event com a paràmetre o ser utilitzada en el bucle principal. "
544
 
545
+ #: src/Tribe/iCal.php:76
546
  msgid "Download .ics file"
547
  msgstr "Baixa el fitxer .ics"
548
 
549
+ #: src/functions/template-tags/day.php:107
550
  msgid "<span>&laquo;</span> Previous Day"
551
  msgstr "<span>&laquo;</span> Dia anterior"
552
 
553
+ #: src/Tribe/iCal.php:76
554
  msgid "iCal Export"
555
  msgstr "Exportar iCal"
556
 
557
+ #: src/functions/template-tags/day.php:109
558
  msgid "Next Day <span>&raquo;</span>"
559
  msgstr "Dia següent <span>&raquo;</span>"
560
 
561
+ #: src/Tribe/iCal.php:106
562
  msgid "Month's %s"
563
+ msgstr "%s del mes"
564
 
565
+ #: src/functions/template-tags/day.php:111
566
  msgid "Yesterday"
567
  msgstr "Ahir"
568
 
569
+ #: src/Tribe/iCal.php:109
570
  msgid "Week's %s"
571
+ msgstr "%s de la setmana"
572
 
573
+ #: src/functions/template-tags/day.php:113
574
  msgid "Tomorrow"
575
  msgstr "Demà"
576
 
577
+ #: src/Tribe/iCal.php:112
578
  msgid "Day's %s"
579
+ msgstr "%s del dia"
580
 
581
+ #: src/functions/template-tags/deprecated.php:1283
582
  msgid "Category"
583
  msgstr "Categoria"
584
 
585
+ #: src/Tribe/iCal.php:115
586
  msgid "Listed %s"
587
+ msgstr "%s llistats"
588
 
589
+ #: src/functions/template-tags/general.php:450
590
  msgid "Tags:"
591
  msgstr "Etiquetes:"
592
 
593
+ #: src/Tribe/iCal.php:120
594
  msgid "Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps"
595
  msgstr "Utilitza-ho per compartir informació del calendari a través de Google Calendar, Apple iCal i altres aplicacions compatibles."
596
 
597
+ #: src/functions/template-tags/general.php:562
598
  msgid "Loading %s"
599
  msgstr "Carregant %s"
600
 
601
+ #: src/admin-views/admin-update-message.php:9
602
+ #: src/admin-views/admin-welcome-message.php:11
603
  msgid "You are running Version %s and deserve a hug :-)"
604
  msgstr "Estàs fent servir la versió %s i et mereixes una abraçada :-)"
605
 
606
+ #: src/Tribe/Cost_Utils.php:123
607
  msgid "Free"
608
  msgstr "Gratuït"
609
 
610
+ #: src/admin-views/admin-update-message.php:32
611
  msgid "Keep the Core Plugin <strong>FREE</strong>!"
612
+ msgstr "Mantingues el nucli del plugin <strong>GRATUÏT</strong>!"
613
 
614
+ #: src/functions/template-tags/general.php:1488
615
  msgid "Calendar powered by %sThe Events Calendar%s"
616
+ msgstr "Calendari creat amb %sThe Events Calendar%s"
617
 
618
+ #: src/admin-views/admin-update-message.php:33
619
  msgid "Every time you rate <strong>5 stars</strong>, a fairy is born. Okay maybe not, but more happy users mean more contributions and help on the forums. The community NEEDS your voice."
620
+ msgstr "Cada vegada que ens dones <strong>5 estrelles</strong> una fada neix. D'acord, potser no, però tenir més usuaris contents significa més contribucions i ajuda en els fòrums. La comunitat NECESSITA la teva veu."
621
 
622
+ #: src/functions/template-tags/loop.php:131
623
  msgid "Upcoming %s"
624
  msgstr "Propers %s"
625
 
626
+ #: src/admin-views/admin-update-message.php:34
627
+ #: src/admin-views/admin-welcome-message.php:22
628
  msgid "Rate It"
629
  msgstr "Valora-ho"
630
 
631
+ #: src/functions/template-tags/loop.php:145
632
  msgid "%1$s for %2$s - %3$s"
633
  msgstr "%1$s per %2$s - %3$s"
634
 
635
+ #: src/admin-views/admin-update-message.php:37
636
  msgid "PSST... Want a Discount?"
637
  msgstr "Pssst... vols un descompte?"
638
 
639
+ #: src/functions/template-tags/loop.php:147
640
  msgid "Past %s"
641
+ msgstr "%s passats"
642
 
643
+ #: src/admin-views/admin-update-message.php:38
644
  msgid "We send out discounts to our core users via our newsletter."
645
+ msgstr "Enviem descomptes als nostres usuaris principals a través del nostre butlletí de notícies."
646
 
647
+ #: src/functions/template-tags/loop.php:152
648
+ #: src/functions/template-tags/loop.php:161
649
  msgid "%1$s for %2$s"
650
  msgstr "%1$s per %2$s"
651
 
652
+ #: src/admin-views/admin-update-message.php:43
653
+ #: src/admin-views/admin-welcome-message.php:31
654
  msgid "Sign Up"
655
+ msgstr "Donar-se d'alta"
656
 
657
+ #: src/functions/template-tags/options.php:20
658
  msgid "Your current Events URL is %s"
659
+ msgstr "La URL actual per als esdeveniments és %s"
660
 
661
+ #: src/admin-views/admin-update-message.php:49
662
  msgid "Looking for Something Special?"
663
  msgstr "Estàs buscant alguna cosa especial?"
664
 
665
+ #: src/functions/template-tags/options.php:29
666
  msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
667
+ msgstr "<strong>No pots</strong> utilitzar el mateix slug d'abans. Recomanem que l'anterior sigui el plural i aquest el singular.<br />La URL per a un únic esdeveniment ha de ser com: %s"
668
 
669
+ #: src/admin-views/admin-update-message.php:51
670
  msgid "Pro"
671
  msgstr "Pro"
672
 
673
+ #: src/io/csv/admin-views/columns.php:22
674
  msgid "Column Mapping: %s"
675
+ msgstr "Assignació de columnes: %s"
676
 
677
+ #: src/admin-views/admin-update-message.php:53
678
  msgid "Community Events"
679
+ msgstr "Community Events"
680
 
681
+ #: src/io/csv/admin-views/columns.php:27
682
  msgid "Columns have been mapped based on your last import. Please ensure the selected fields match the columns in your CSV file."
683
+ msgstr "Les columnes s'han assignat basant-nos en la teva última importació. Si us plau, assegura't de que els camps seleccionats coincideixen amb les columnes del teu fitxer CSV."
684
 
685
+ #: src/admin-views/admin-update-message.php:54
686
  msgid "Filters"
687
  msgstr "Filtres"
688
 
689
+ #: src/io/csv/admin-views/columns.php:32
690
  msgid "Column Headings"
691
  msgstr "Capceleres de columna"
692
 
693
+ #: src/admin-views/admin-update-message.php:55
694
  msgid "Facebook"
695
  msgstr "Facebook"
696
 
697
+ #: src/io/csv/admin-views/columns.php:33
698
  msgid "Event Fields"
699
  msgstr "Camps de esdeveniments"
700
 
701
+ #: src/admin-views/admin-update-message.php:58
702
+ #: src/admin-views/admin-welcome-message.php:53
703
  msgid "News For Events Users"
704
  msgstr "Notícies per usuaris de Events"
705
 
706
+ #: src/io/csv/admin-views/columns.php:44
707
  msgid "Perform Import"
708
  msgstr "Importar"
709
 
710
+ #: src/admin-views/admin-welcome-message.php:19
711
  msgid "Keep The Events Calendar Core FREE"
712
  msgstr "Mantenir The Events Calendar Core GRATUÏT"
713
 
714
+ #: src/io/csv/admin-views/general.php:10
715
  msgid "The Events Calendar: Import"
716
  msgstr "The Events Calendar: Importació"
717
 
718
+ #: src/admin-views/admin-welcome-message.php:20
719
  msgid "5 star ratings help us bring TEC to more users. More happy users mean more support, more features, and more of everything you know and love about The Events Calendar. We couldn't do this without your support."
720
+ msgstr "Les qualificacions de 5 estrelles ens ajuden a portar TEC a més usuaris. Tenir més usuaris feliços significa més suport, més funcionalitats i més de tot que tant t'agrada sobre The Events Calendar. No podríem fer-ho sense el teu suport."
721
 
722
+ #: src/io/csv/admin-views/general.php:12
723
  msgid "Instructions"
724
  msgstr "Instruccions"
725
 
726
+ #: src/admin-views/admin-welcome-message.php:21
727
  msgid "Rate it five stars today!"
728
+ msgstr "Valora'l amb 5 estrelles avui!"
729
 
730
+ #: src/io/csv/admin-views/general.php:14
731
  msgid "To import events, first select a %sDefault Import Event Status%s below to assign to your imported events."
732
+ msgstr "Per importar esdeveniments, primer has de seleccionar un %sestat predeterminat dels esdeveniments importats%s a continuació per assignar-lo als teus esdeveniments importats."
733
 
734
+ #: src/admin-views/admin-welcome-message.php:25
735
  msgid "Newsletter Signup"
736
+ msgstr "Inscripció al butlletí de notícies"
737
 
738
+ #: src/io/csv/admin-views/general.php:17
739
  msgid "Once your setting is saved, move to the applicable Import tab to select import specific criteria."
740
+ msgstr "Un cop es guardi la configuració, avança a la pestanya d'importació corresponent per seleccionar els criteris específics de la importació."
741
 
742
+ #: src/admin-views/admin-welcome-message.php:26
743
  msgid "Stay in touch with The Events Calendar Pro. We send out periodic updates, key developer notices, and even the occasional discount."
744
+ msgstr "Estigues en contacte amb The Events Calendar Pro. Enviem actualitzacions periòdiques, notificacions per a desenvolupadors i, fins i tot, algun descompte ocasional."
745
 
746
+ #: src/io/csv/admin-views/general.php:24
747
  msgid "Import Settings"
748
+ msgstr "Configuració de la importació"
749
 
750
+ #: src/admin-views/admin-welcome-message.php:40
751
+ #: src/admin-views/tribe-options-help.php:221
752
  msgid "Getting Started"
753
  msgstr "Començar"
754
 
755
+ #: src/io/csv/admin-views/general.php:27
756
  msgid "Default imported event status:"
757
+ msgstr "Estat predeterminat dels esdeveniments importats:"
758
 
759
+ #: src/admin-views/admin-welcome-message.php:41
760
  msgid "Check out the New User Primer &amp; Tutorials"
761
+ msgstr "Fes una ullada a la introducció i els tutorials per a nous usuaris"
762
 
763
+ #: src/io/csv/admin-views/general.php:30
764
  msgid "Published"
765
  msgstr "Publicat"
766
 
767
+ #: src/admin-views/admin-welcome-message.php:43
768
  msgid "Looking for More Features?"
769
  msgstr "Estàs buscant més funcionalitats?"
770
 
771
+ #: src/io/csv/admin-views/general.php:31
772
  msgid "Pending"
773
  msgstr "Pendent"
774
 
775
+ #: src/admin-views/admin-welcome-message.php:44
776
  msgid "Addons for Community, Tickets, Filters, Facebook and more."
777
+ msgstr "Complements per comunitats, tiquets, filtres, Facebook i més."
778
 
779
+ #: src/io/csv/admin-views/general.php:32
780
  msgid "Draft"
781
  msgstr "Esborrany"
782
 
783
+ #: src/admin-views/admin-welcome-message.php:46
784
  msgid "Support Resources"
785
+ msgstr "Recursos de suport"
786
 
787
+ #: src/io/csv/admin-views/header.php:17
788
  msgid "Events Import"
789
+ msgstr "Importació d'esdeveniments"
790
 
791
+ #: src/admin-views/admin-welcome-message.php:47
792
  msgid "FAQs, Documentation, Tutorials and Forums"
793
+ msgstr "FAQs, documentació, tutorials i fòrums"
794
 
795
+ #: src/io/csv/admin-views/import.php:17
796
  msgid "Import Instructions"
797
+ msgstr "Instruccions d'importació"
798
 
799
+ #: src/admin-views/admin-welcome-message.php:50
800
  msgid "Release Notes"
801
  msgstr "Notes de la versió"
802
 
803
+ #: src/io/csv/admin-views/import.php:20
804
  msgid "If your events have Organizers or Venues, please import those first."
805
+ msgstr "Si els teus esdeveniments tenen organitzadors o recintes, si us plau, importa'ls abans."
806
 
807
+ #: src/admin-views/admin-welcome-message.php:51
808
  msgid "Get the Skinny on the Latest Updates"
809
+ msgstr "Obtingues els detalls sobre les últimes actualitzacions"
810
 
811
+ #: src/io/csv/admin-views/import.php:21
812
  msgid "To import organizers or venues:"
813
  msgstr "Per importar organitzadors i recintes:"
814
 
815
+ #: src/admin-views/admin-welcome-message.php:54
816
  msgid "Product Releases, Tutorials and Community Activity"
817
  msgstr "Llençaments, tutorials i activitat de la comunitat"
818
 
819
+ #: src/io/csv/admin-views/import.php:23
820
  msgid "Select the appropriate import type."
821
+ msgstr "Selecciona el tipus adequat d'importació."
822
 
823
+ #: src/admin-views/app-shop.php:4
824
  msgid "Tribe Event Add-Ons"
825
+ msgstr "Complements de Tribe Events"
826
 
827
+ #: src/io/csv/admin-views/import.php:24 src/io/csv/admin-views/import.php:30
 
828
  msgid "Upload a CSV file with one record on each line. The first line may contain column names (check the box below)."
829
+ msgstr "Puja un fitxer CSV amb un registre per línia. La primera línia pot contenir els noms de les columnes (si és així, marca el quadre que hi ha a continuació)."
830
 
831
+ #: src/admin-views/app-shop.php:54
832
  msgid "Version"
833
  msgstr "Versió"
834
 
835
+ #: src/io/csv/admin-views/import.php:25
836
  msgid "One column in your CSV should have the Organizer/Venue name. All other fields are optional."
837
+ msgstr "Una columna del teu CSV ha de tenir el nom de l'organitzador/recinte . Tots els altres camps són opcionals."
838
 
839
+ #: src/admin-views/app-shop.php:57
840
  msgid "Last Update"
841
  msgstr "Darrera actualització"
842
 
843
+ #: src/io/csv/admin-views/import.php:26 src/io/csv/admin-views/import.php:32
 
844
  msgid "After you upload your file, you'll have the opportunity to indicate how the columns in your CSV map to fields in The Events Calendar."
845
+ msgstr "Després de pujar el fitxer, tindràs l'oportunitat d'indicar com es relacionen les columnes del teu mapa CSV amb els camps de The Events Calendar."
846
 
847
+ #: src/admin-views/event-sidebar-options.php:13
848
  msgid "Hide From %s Listings"
849
+ msgstr "Amagar de la llista d'%s"
850
 
851
+ #: src/io/csv/admin-views/import.php:28
852
  msgid "After importing your Organizers and Venues, import your Events:"
853
  msgstr "Després d'importar els teus organitzadors i recintes, importa els teus esdeveniments:"
854
 
855
+ #: src/admin-views/event-sidebar-options.php:15
856
  msgid "Sticky in Month View"
857
+ msgstr "Prioritari a la vista mensual"
858
 
859
+ #: src/io/csv/admin-views/import.php:31
860
  msgid "One column in your CSV should have the Event title. Another should have the Event start date. All other fields are optional."
861
+ msgstr "Una columna del teu CSV ha de tenir el títol de l'esdeveniment. Una altra ha de tenir la data d'inici de l'esdeveniment. Tots els altres camps són opcionals."
862
 
863
+ #: src/admin-views/event-sidebar-options.php:16
864
  msgid "When events are sticky in month view, they'll display first in the list of events shown within a given day block."
865
+ msgstr "Els esdeveniments prioritaris es mostren a la vista mensual a sobre dels altres esdeveniments dins d'un rang de dates."
866
 
867
+ #: src/io/csv/admin-views/import.php:36
868
  msgid "Questions? <a href=\"%s\">Watch the video</a>."
869
+ msgstr "Preguntes? <a href=\"%s\">Mira el vídeo</a>."
870
 
871
+ #: src/admin-views/events-meta-box.php:60
872
  msgid "Time &amp; Date"
873
  msgstr "Hora i data"
874
 
875
+ #: src/io/csv/admin-views/import.php:43
876
  msgid "Import Type:"
877
  msgstr "Tipus d'importació:"
878
 
879
+ #: src/admin-views/events-meta-box.php:67
880
  msgid "You have changed the recurrence rules of this %1$s. Saving the %1$s will update all future %2$s. If you did not mean to change all %2$s, then please refresh the page."
881
+ msgstr "Has canviat les regles de recurrència d'aquest %1$s. Si guardes l'%1$s s'actualitzaran tot els %2$s futurs. Si no volies canviar tots els %2$s, llavors refresca la pàgina."
882
 
883
+ #: src/io/csv/admin-views/import.php:55
884
  msgid "CSV File:"
885
  msgstr "Fitxer CSV:"
886
 
887
+ #: src/admin-views/events-meta-box.php:70
888
  msgid "All Day %s:"
889
+ msgstr "%s de tot el dia:"
890
 
891
+ #: src/io/csv/admin-views/import.php:59
892
  msgid "Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file is UTF-8 encoded? Make sure to specify the character encoding when you save the file, or pass it through a <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>conversion tool</a>."
893
+ msgstr "Puja un fitxer CSV codificat amb el format correcte (UTF-8). No saps amb seguretat si el fitxer està codificat en UTF-8? Assegura't d'especificar la codificació dels caràcters a l'hora de guardar el fitxer, o converteix-lo amb aquesta <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>eina de conversió</a>."
894
 
895
+ #: src/admin-views/events-meta-box.php:76
896
  msgid "Start Date &amp; Time:"
897
  msgstr "Data i hora d'inici"
898
 
899
+ #: src/io/csv/admin-views/import.php:67
900
  msgid "This file has column names in the first row"
901
+ msgstr "Aquest fitxer té els noms de les columnes a la primera fila"
902
 
903
+ #: src/admin-views/events-meta-box.php:80
904
+ #: src/admin-views/events-meta-box.php:101
905
  msgid "YYYY-MM-DD"
906
  msgstr "AAAA-MM-DD"
907
 
908
+ #: src/io/csv/admin-views/import.php:78
909
  msgid "Import CSV File"
910
  msgstr "Importar fitxer CSV"
911
 
912
+ #: src/admin-views/events-meta-box.php:98
913
  msgid "End Date &amp; Time:"
914
  msgstr "Data i hora de finalització:"
915
 
916
+ #: src/io/csv/admin-views/result.php:15
917
  msgid "Import Result"
918
  msgstr "Resultat de la importació"
919
 
920
+ #: src/admin-views/events-meta-box.php:147
921
  msgid "Location"
922
  msgstr "Ubicació:"
923
 
924
+ #: src/io/csv/admin-views/result.php:17
925
  msgid "Import complete!"
926
  msgstr "Importació completada!"
927
 
928
+ #: src/admin-views/events-meta-box.php:195
929
  msgid "%s Website"
930
+ msgstr "Web de l'%s"
931
 
932
+ #: src/io/csv/admin-views/result.php:19
933
  msgid "Inserted: %d"
934
  msgstr "Inserits: %d"
935
 
936
+ #: src/admin-views/events-meta-box.php:198
937
  msgid "URL:"
938
  msgstr "URL:"
939
 
940
+ #: src/io/csv/admin-views/result.php:20
941
  msgid "Updated: %d"
942
  msgstr "Actualitzats: %d"
943
 
944
+ #: src/admin-views/events-meta-box.php:229
945
  msgid "%s Cost"
946
+ msgstr "Cost de l'%s"
947
 
948
+ #: src/io/csv/admin-views/result.php:21
949
  msgid "Skipped: %d"
950
  msgstr "Saltats: %d"
951
 
952
+ #: src/admin-views/events-meta-box.php:232
953
  msgid "Currency Symbol:"
954
+ msgstr "Símbol monetari:"
955
 
956
+ #: src/io/csv/admin-views/result.php:25
957
  msgid "The import statistics above have the following meaning:"
958
+ msgstr "Les estadístiques d'importació anteriors tenen el següent significat:"
959
 
960
+ #: src/admin-views/events-meta-box.php:247
961
  msgctxt "Currency symbol position"
962
  msgid "Before cost"
963
  msgstr "Abans del cost"
964
 
965
+ #: src/io/csv/admin-views/result.php:26
966
  msgid "<ol><li><strong>Inserted:</strong> A new item was inserted successfully.</li><li><strong>Updated:</strong> An item was found with the same name and/or start date. The existing item was updated with the new value from the file.</li><li><strong>Skipped:</strong> A row was found in the CSV file that could not be imported. Please see below for the invalid rows.</li></ol>"
967
+ msgstr "<ol><li><strong>Inserit:</strong> S'ha inserit amb èxit un nou element.</li><li><strong>Actualitzat:</strong> S'ha trobat un element amb el mateix nom i/o data d'inici. L'element existent s'ha actualitzat amb el nou valor del fitxer.</li><li><strong>Saltats:</strong> S'ha trobat una fila del fitxer CSV que no s'ha pogut importar. Mira a continuació les files no vàlides.</li></ol>"
968
 
969
+ #: src/admin-views/events-meta-box.php:250
970
  msgctxt "Currency symbol position"
971
  msgid "After cost"
972
  msgstr "Després del cost"
973
 
974
+ #: src/io/csv/admin-views/result.php:29
975
  msgid "Skipped row numbers: %s"
976
  msgstr "Números de fila saltats: %s"
977
 
978
+ #: src/admin-views/events-meta-box.php:255
979
+ #: src/functions/advanced-functions/meta_registration.php:48
980
+ #: src/views/modules/meta/details.php:100
981
  msgid "Cost:"
982
  msgstr "Cost:"
983
 
984
+ #: src/admin-views/events-meta-box.php:263
985
  msgid "Enter a 0 for %s that are free or leave blank to hide the field."
986
+ msgstr "Introdueix un 0 per als %s que són gratuïts o deixa-ho en blanc per amagar el camp."
987
 
988
+ #: src/admin-views/new-organizer-meta-section.php:15
989
+ #: src/admin-views/organizer-meta-box.php:24
990
+ #: src/admin-views/venue-meta-box.php:25
991
  msgid "%s Name:"
992
+ msgstr "Nom de l'%s:"
993
 
994
+ #: src/views/day/nav.php:16
995
  msgid "Day Navigation"
996
+ msgstr "Navegació per dia"
997
+
998
+ #: src/admin-views/new-organizer-meta-section.php:21
999
+ #: src/admin-views/organizer-meta-box.php:31
1000
+ #: src/admin-views/tickets/attendees.php:54
1001
+ #: src/admin-views/venue-meta-box.php:112
1002
+ #: src/functions/advanced-functions/meta_registration.php:159
1003
+ #: src/functions/advanced-functions/meta_registration.php:238
1004
+ #: src/views/modules/meta/organizer.php:41 src/views/modules/meta/venue.php:40
 
1005
  msgid "Phone:"
1006
+ msgstr "Telèfon:"
1007
 
1008
+ #: src/views/day/single-event.php:66 src/views/list/single-event.php:70
1009
  msgid "Find out more"
1010
  msgstr "Per saber-ne més"
1011
 
1012
+ #: src/admin-views/new-organizer-meta-section.php:27
1013
+ #: src/admin-views/organizer-meta-box.php:37
1014
+ #: src/admin-views/tickets/attendees.php:63
1015
+ #: src/admin-views/venue-meta-box.php:119
1016
+ #: src/functions/advanced-functions/meta_registration.php:96
1017
+ #: src/functions/advanced-functions/meta_registration.php:191
1018
+ #: src/functions/advanced-functions/meta_registration.php:270
1019
+ #: src/views/modules/meta/details.php:125
1020
+ #: src/views/modules/meta/organizer.php:63 src/views/modules/meta/venue.php:45
 
1021
  msgid "Website:"
1022
  msgstr "Web:"
1023
 
1024
+ #: src/views/list/nav.php:19
1025
  msgid "%s List Navigation"
1026
+ msgstr "Navegació de llista d'%s"
1027
 
1028
+ #: src/admin-views/new-organizer-meta-section.php:35
1029
+ #: src/admin-views/organizer-meta-box.php:43
1030
+ #: src/functions/advanced-functions/meta_registration.php:254
1031
+ #: src/views/modules/meta/organizer.php:52
1032
  msgid "Email:"
1033
  msgstr "Correu electrònic:"
1034
 
1035
+ #: src/views/list/nav.php:25
1036
  msgid "<span>&laquo;</span> Previous %s"
1037
  msgstr "<span>&laquo;</span> %s anteriors"
1038
 
1039
+ #: src/admin-views/new-organizer-meta-section.php:39
1040
+ #: src/admin-views/organizer-meta-box.php:44
1041
  msgid "You may want to consider <a href=\"http://wordpress.org/plugins/tags/obfuscate\">obfuscating</a> any e-mail address published on your site to best avoid it getting harvested by spammers."
1042
+ msgstr "Pots considerar la possibilitat d'<a href=\"http://wordpress.org/plugins/tags/obfuscate\">ofuscar</a> qualsevol adreça de correu electrònic publicada a la teva web per evitar que els spammers la rastregin."
1043
 
1044
+ #: src/views/list/nav.php:32
1045
  msgid "Next %s <span>&raquo;</span>"
1046
  msgstr "%s següents <span>&raquo;</span>"
1047
 
1048
+ #: src/admin-views/new-organizer-meta-section.php:69
1049
+ #: src/admin-views/organizer-meta-box.php:75
1050
+ #: src/admin-views/venue-meta-box.php:193
1051
  msgid "%s Name Already Exists"
1052
+ msgstr "El nom de l'%s ja existeix"
1053
 
1054
+ #: src/views/modules/bar.php:30 src/views/modules/bar.php:61
1055
  msgid "Find %s"
1056
  msgstr "Trobar %s"
1057
 
1058
+ #: src/admin-views/tickets/attendees.php:17
1059
  msgid "Event Summary"
1060
  msgstr "Resum de l'esdeveniment"
1061
 
1062
+ #: src/views/modules/bar.php:37
1063
  msgid "Event Views Navigation"
1064
+ msgstr "Navegació de les vistes d'esdeveniments"
1065
 
1066
+ #: src/admin-views/tickets/attendees.php:26
1067
  msgid "Event Details"
1068
  msgstr "Detalls de l'esdeveniment"
1069
 
1070
+ #: src/views/modules/bar.php:38
1071
  msgid "View As"
1072
  msgstr "Veure com"
1073
 
1074
+ #: src/admin-views/tickets/attendees.php:28
1075
  msgid "Start Date / Time:"
1076
  msgstr "Data / Hora d'inici:"
1077
 
1078
+ #: src/views/modules/meta/details.php:119
1079
  msgid "%s Tags:"
1080
+ msgstr "Etiquetes de l'%s:"
1081
 
1082
+ #: src/admin-views/tickets/attendees.php:32
1083
  msgid "End Date / Time:"
1084
  msgstr "Data / Hora de finalització"
1085
 
1086
+ #: src/functions/template-tags/general.php:1312
1087
  msgid "%s for"
1088
+ msgstr "%s per"
1089
 
1090
+ #: src/admin-views/tickets/attendees.php:82
1091
  msgid "Ticket Sales"
1092
+ msgstr "Venda de tiquets"
1093
 
1094
+ #: src/functions/template-tags/general.php:1311
1095
  msgid "Find out more »"
1096
  msgstr "Per saber-ne més »"
1097
 
1098
+ #: src/admin-views/tickets/attendees.php:99
1099
  msgid "(%d awaiting review)"
1100
  msgid_plural "(%d awaiting review)"
1101
+ msgstr[0] "(%d en espera de revisió)"
1102
+ msgstr[1] "(%d en espera de revisió)"
1103
 
1104
+ #: src/views/month/nav.php:18
1105
  msgid "Calendar Month Navigation"
1106
+ msgstr "Navegació del calendari mensual"
1107
 
1108
+ #: src/views/month/single-day.php:43
 
 
 
 
1109
  msgid "View 1 %1$s"
1110
  msgid_plural "View All %2$s %3$s"
1111
  msgstr[0] "Veure 1 %1$s"
1112
  msgstr[1] "Veure tots %2$s %3$s"
1113
 
1114
+ #: src/views/single-event.php:27
 
 
 
 
1115
  msgid "&laquo; All %s"
1116
+ msgstr "&laquo; Tots els %s"
1117
 
1118
+ #: src/admin-views/tickets/attendees.php:127
1119
  msgid "Tickets sold:"
1120
+ msgstr "Tiquets venuts:"
1121
 
1122
+ #: src/views/single-event.php:46 src/views/single-event.php:79
1123
  msgid "%s Navigation"
1124
+ msgstr "Navegació d'%s"
1125
 
1126
+ #: src/admin-views/tickets/attendees.php:136
1127
  msgid "Finalized:"
1128
  msgstr "Finalitzat:"
1129
 
1130
+ #: src/views/tickets/attendees-email.php:24
1131
  msgid "Attendee List"
1132
  msgstr "Llista d'assistents"
1133
 
1134
+ #: src/admin-views/tickets/attendees.php:139
1135
  msgid "Awaiting review:"
1136
+ msgstr "En espera de revisió:"
1137
 
1138
+ #: src/views/tickets/email.php:26
1139
  msgid "Your tickets"
1140
+ msgstr "Els teus tiquets"
1141
 
1142
+ #: src/admin-views/tickets/attendees.php:148
1143
  msgid "Checked in:"
1144
+ msgstr "Assistiran:"
1145
 
1146
+ #: src/views/tickets/email.php:309
1147
  msgid "Ticket Type"
1148
+ msgstr "Tipus de tiquet"
1149
 
1150
+ #: src/admin-views/tickets/attendees.php:170
1151
  msgid "Send the attendee list by email"
1152
+ msgstr "Enviar la llista d'assistents per correu electrònic"
1153
 
1154
+ #: src/views/tickets/email.php:313
1155
  msgid "Purchaser"
1156
  msgstr "Comprador"
1157
 
1158
+ #: src/admin-views/tickets/attendees.php:174
1159
  msgid "Select a User:"
1160
  msgstr "Selecciona un usuari:"
1161
 
1162
+ #: src/views/widgets/list-widget.php:65
1163
  msgid "View All %s"
1164
  msgstr "Veure tots %s"
1165
 
1166
+ #: src/admin-views/tickets/attendees.php:179
1167
  msgid "Select..."
1168
  msgstr "Selecciona..."
1169
 
1170
+ #: src/views/widgets/list-widget.php:71
1171
  msgid "There are no upcoming %s at this time."
1172
+ msgstr "No hi ha %s programats en aquest moment."
1173
 
1174
+ #: src/admin-views/tickets/attendees.php:184
1175
  msgid "or"
1176
  msgstr "o"
1177
 
1178
+ #: src/admin-views/tickets/attendees.php:186
1179
  msgid "Email Address:"
1180
  msgstr "Adreça de correu electrònic:"
1181
 
1182
+ #: src/admin-views/tickets/list.php:21
1183
  msgid "Edit"
1184
  msgstr "Editar"
1185
 
1186
+ #: src/admin-views/tickets/list.php:24
1187
  msgid "Edit in %s"
1188
  msgstr "Editar a %s"
1189
 
1190
+ #: src/admin-views/tickets/list.php:27
1191
  msgid "View"
1192
  msgstr "Veure"
1193
 
1194
+ #: src/admin-views/tickets/list.php:67
1195
  msgid "Sold %d"
1196
+ msgstr "Venuts %d"
 
 
 
 
1197
 
1198
+ #: src/admin-views/tickets/meta-box.php:23
1199
  msgid "This event was created using Community Events. Are you sure you want to sell tickets for it?"
1200
+ msgstr "Aquest esdeveniment s'ha creat utilitzant Community Events. Segur que vols vendre tiquets per a ell?"
1201
 
1202
+ #: src/admin-views/tickets/meta-box.php:34
1203
  msgid "Upload image for the ticket header"
1204
+ msgstr "Puja una imatge per utilitzar-la a la capçalera del tiquet"
1205
 
1206
+ #: src/admin-views/tickets/meta-box.php:35
1207
  msgid "The maximum image size in the email will be 580px wide by any height, and then scaled for mobile. If you would like \"retina\" support use an image sized to 1160px wide."
1208
+ msgstr "La mida màxima de la imatge en el correu serà de 580px d'ample, i després es redimensionarà per a dispositius mòbils. Si vols que la imatge es vegi correctament als dispositius \"retina\" utilitza una imatge de 1160px d'ample."
1209
 
1210
+ #: src/admin-views/tickets/meta-box.php:38
1211
  msgid "Select an Image"
1212
  msgstr "Selecciona una imatge"
1213
 
1214
+ #: src/admin-views/tickets/meta-box.php:46
1215
  msgid "Remove"
1216
  msgstr "Eliminar"
1217
 
1218
+ #: src/admin-views/tickets/meta-box.php:64
1219
+ #: src/admin-views/tickets/meta-box.php:74
1220
  msgid "Add new ticket"
1221
+ msgstr "Afegir nou tiquet"
1222
 
1223
+ #: src/admin-views/tickets/meta-box.php:75
1224
  msgid "Edit ticket"
1225
+ msgstr "Editar tiquet"
1226
 
1227
+ #: src/admin-views/tickets/meta-box.php:80
1228
  msgid "Sell using:"
1229
  msgstr "Vendre utilitzant:"
1230
 
1231
+ #: src/admin-views/tickets/meta-box.php:97
1232
  msgid "Ticket Name:"
1233
+ msgstr "Nom del tiquet:"
1234
 
1235
+ #: src/admin-views/tickets/meta-box.php:104
1236
  msgid "Ticket Description:"
1237
+ msgstr "Descripció del tiquet:"
1238
 
1239
+ #: src/admin-views/tickets/meta-box.php:113
1240
  msgid "Price:"
1241
  msgstr "Preu:"
1242
 
1243
+ #: src/admin-views/tickets/meta-box.php:119
1244
  msgid "(0 or empty for free tickets)"
1245
+ msgstr "(0 o buit per a tiquets gratuïts)"
1246
 
1247
+ #: src/admin-views/tickets/meta-box.php:125
1248
  msgid "Sale Price:"
1249
+ msgstr "Preu especial:"
1250
 
1251
+ #: src/admin-views/tickets/meta-box.php:131
1252
  msgid "(Current sale price - this can be managed via the product editor)"
1253
+ msgstr "(Preu especial actual - es pot gestionar mitjançant l'editor del producte)"
1254
 
1255
+ #: src/admin-views/tickets/meta-box.php:137
1256
  msgid "Start sale:"
1257
+ msgstr "Inici de l'oferta:"
1258
 
1259
+ #: src/admin-views/tickets/meta-box.php:161
1260
  msgid "End sale:"
1261
+ msgstr "Finalització de l'oferta:"
1262
 
1263
+ #: src/admin-views/tickets/meta-box.php:183
1264
  msgid "When will ticket sales occur? If you don't set a start/end date for sales, tickets will be available from now until the event ends."
1265
+ msgstr "Indica les dates de venda dels tiquets. Si no indiques les dates d'inici/finalització de la venda, els tiquets estaran disponibles des d'ara fins que finalitzi l'esdeveniment."
1266
 
1267
+ #: src/admin-views/tickets/meta-box.php:195
1268
  msgid "Save this ticket"
1269
+ msgstr "Guarda aquest tiquet"
1270
 
1271
+ #: src/admin-views/tribe-options-display.php:4
1272
  msgid "Default Events Template"
1273
  msgstr "Plantilla d'esdeveniments predeterminada"
1274
 
1275
+ #: src/admin-views/tribe-options-display.php:5
1276
  msgid "Default Page Template"
1277
  msgstr "Plantilla de pàgina predeterminada"
1278
 
1279
+ #: src/admin-views/tribe-options-display.php:51
1280
  msgid "Display Settings"
1281
  msgstr "Configuració de visualització"
1282
 
1283
+ #: src/admin-views/tribe-options-display.php:56
1284
  msgid "The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme.</p><p>There are going to be situations where no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications."
1285
+ msgstr "La següent configuració controla com es mostra el teu calendari. Si no es veu correctament, intenta canviar entre els tres fulls d'estil alternatius o selecciona una plantilla de pàgina del teu tema.</p><p>Hi haurà situacions en què cap plantilla sigui perfecta al 100&#37;. Fes una ullada a la nostra <a href=\"%s\">guia per a dissenyadors</a> amb instruccions per dissenys personalitzats."
1286
 
1287
+ #: src/admin-views/tribe-options-display.php:70
1288
  msgid "Basic Template Settings"
1289
  msgstr "Configuració de la plantilla bàsica"
1290
 
1291
+ #: src/admin-views/tribe-options-display.php:74
1292
  msgid "Default stylesheet used for events templates"
1293
  msgstr "Full d'estil predeterminat per les plantilles d'esdeveniments"
1294
 
1295
+ #: src/admin-views/tribe-options-display.php:77
1296
  msgid "Skeleton Styles"
1297
+ msgstr "Estils bàsics"
1298
 
1299
+ #: src/admin-views/tribe-options-display.php:79
1300
  msgid "Only includes enough css to achieve complex layouts like calendar and week view."
1301
+ msgstr "Només inclou el css suficient per aconseguir dissenys complexos com la vista del calendari i de la setmana."
1302
 
1303
+ #: src/admin-views/tribe-options-display.php:81
1304
  msgid "Full Styles"
1305
  msgstr "Estils complets"
1306
 
1307
+ #: src/admin-views/tribe-options-display.php:83
1308
  msgid "More detailed styling, tries to grab styles from your theme."
1309
+ msgstr "Estils més detallats, intenta utilitzar els estils del teu tema."
1310
 
1311
+ #: src/admin-views/tribe-options-display.php:85
1312
  msgid "Tribe Events Styles"
1313
+ msgstr "Estils de Tribe Events"
1314
 
1315
+ #: src/admin-views/tribe-options-display.php:87
1316
  msgid "A fully designed and styled theme for your events pages."
1317
+ msgstr "Un tema totalment dissenyat per a les teves pàgines d'esdeveniments."
1318
 
1319
+ #: src/admin-views/tribe-options-display.php:94
1320
  msgid "Events template"
1321
  msgstr "Plantilla d'esdeveniments"
1322
 
1323
+ #: src/admin-views/tribe-options-display.php:95
1324
  msgid "Choose a page template to control the appearance of your calendar and event content."
1325
  msgstr "Tria una plantilla de pàgina per controlar l'aparença del teu calendari i el contingut dels esdeveniments."
1326
 
1327
+ #: src/admin-views/tribe-options-display.php:103
1328
  msgid "Enable event views"
1329
  msgstr "Habilitar les vistes d'esdeveniments"
1330
 
1331
+ #: src/admin-views/tribe-options-display.php:104
1332
  msgid "You must select at least one view."
1333
  msgstr "Has de seleccionar una vista almenys."
1334
 
1335
+ #: src/admin-views/tribe-options-display.php:111
1336
  msgid "Default view"
1337
  msgstr "Vista predeterminada"
1338
 
1339
+ #: src/admin-views/tribe-options-display.php:119
1340
  msgid "Disable the Event Search Bar"
1341
  msgstr "Deshabilitar la barra de cerca d'esdeveniments"
1342
 
1343
+ #: src/admin-views/tribe-options-display.php:120
1344
  msgid "Check this to use the classic header."
1345
  msgstr "Marca això per utilitzar la capçalera clàssica."
1346
 
1347
+ #: src/admin-views/tribe-options-display.php:126
1348
  msgid "Month view events per day"
1349
+ msgstr "Esdeveniments per dia a la vista mensual"
1350
 
1351
+ #: src/admin-views/tribe-options-display.php:127
1352
  msgid "Change the default 3 events per day in month view. Please note there may be performance issues if you set this too high. <a href=\"%s\">Read more</a>."
1353
+ msgstr "Canvia el valor predeterminat de 3 esdeveniments per dia a la vista mensual. Si us plau, tingues en compte que el rendiment de la teva web pot empitjorar si aquest valor és massa alt. <a href=\"%s\">Més informació</a>."
1354
 
1355
+ #: src/admin-views/tribe-options-display.php:134
1356
  msgid "Enable the Month View Cache"
1357
+ msgstr "Habilitar la cache de la vista mensual"
1358
 
1359
+ #: src/admin-views/tribe-options-display.php:135
1360
  msgid "Check this to cache your month view HTML in transients, which can help improve calendar speed on sites with many events. <a href=\"%s\">Read more</a>."
1361
+ msgstr "Habilita aquesta opció per guardar el codi HTML de la vista mensual als transients. Això pot millorar la velocitat del calendari a les webs amb molts esdeveniments. <a href=\"%s\">Més informació</a>."
1362
 
1363
+ #: src/admin-views/tribe-options-display.php:141
1364
  msgid "Date Format Settings"
1365
  msgstr "Configuració del format de data"
1366
 
1367
+ #: src/admin-views/tribe-options-display.php:145
1368
  msgid "<p>The following three fields accept the date format options available to the php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Learn how to make your own date format here</a>.</p>"
1369
+ msgstr "<p>Els tres camps següents accepten les opcions de format de data de la funció de php date(). Pots consultar les opcions vàlides per <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">personalitzar el format de la data</a>.</p>"
1370
 
1371
+ #: src/admin-views/tribe-options-display.php:149
1372
  msgid "Date with year"
1373
  msgstr "Data amb any"
1374
 
1375
+ #: src/admin-views/tribe-options-display.php:150
1376
  msgid "Enter the format to use for displaying dates with the year. Used when showing an event from a past or future year, also used for dates in view headers."
1377
+ msgstr "Introdueix el format que vols utilitzar per a la visualització de dates amb any. S'utilitza quan es mostra un esdeveniment d'un any passat o futur, també s'utilitza per a les dates de les capçaleres de les vistes."
1378
 
1379
+ #: src/admin-views/tribe-options-display.php:157
1380
  msgid "Date without year"
1381
  msgstr "Data sense any"
1382
 
1383
+ #: src/admin-views/tribe-options-display.php:158
1384
  msgid "Enter the format to use for displaying dates without a year. Used when showing an event from the current year."
1385
+ msgstr "Introdueix el format que vols utilitzar per a la visualització de dates sense any. S'utilitza quan es mostra un esdeveniment de l'any en curs."
1386
 
1387
+ #: src/admin-views/tribe-options-display.php:165
1388
  msgid "Month and year format"
1389
  msgstr "Format de mes i any"
1390
 
1391
+ #: src/admin-views/tribe-options-display.php:166
1392
  msgid "Enter the format to use for dates that show a month and year only. Used on month view."
1393
+ msgstr "Introdueix el format que vols utilitzar per a la visualització de dates que mostren només un mes i un any. S'utilitza a la vista mensual."
1394
 
1395
+ #: src/admin-views/tribe-options-display.php:173
1396
  msgid "Date time separator"
1397
  msgstr "Separador de data i hora"
1398
 
1399
+ #: src/admin-views/tribe-options-display.php:174
1400
  msgid "Enter the separator that will be placed between the date and time, when both are shown."
1401
+ msgstr "Introdueix el separador que es col·locarà entre la data i l'hora, quan es mostren totes dues."
1402
 
1403
+ #: src/admin-views/tribe-options-display.php:181
1404
  msgid "Time range separator"
1405
  msgstr "Separador de rang d'hores"
1406
 
1407
+ #: src/admin-views/tribe-options-display.php:182
1408
  msgid "Enter the separator that will be used between the start and end time of an event."
1409
+ msgstr "Introdueix el separador que s'utilitzarà entre l'hora d'inici i la de finalització d'un esdeveniment."
1410
 
1411
+ #: src/admin-views/tribe-options-display.php:189
1412
  msgid "Datepicker Date Format"
1413
+ msgstr "Format de data del selector de dates"
1414
 
1415
+ #: src/admin-views/tribe-options-display.php:190
1416
  msgid "Select the date format to use in datepickers"
1417
+ msgstr "Selecciona el format de data a utilitzar en el selector de dates"
1418
 
1419
+ #: src/admin-views/tribe-options-display.php:207
1420
  msgid "Advanced Template Settings"
1421
+ msgstr "Configuració avançada de les plantilles"
1422
 
1423
+ #: src/admin-views/tribe-options-display.php:211
1424
  msgid "Add HTML before event content"
1425
  msgstr "Afegir HTML abans del contingut de l'esdeveniment"
1426
 
1427
+ #: src/admin-views/tribe-options-display.php:212
1428
  msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
1429
+ msgstr "Si estàs familiaritzat amb HTML, pots afegir codi addicional abans de la plantilla de l'esdeveniment. Alguns temes poden necessitar-ho per ajudar amb els estils o el disseny."
1430
 
1431
+ #: src/admin-views/tribe-options-display.php:217
1432
  msgid "Add HTML after event content"
1433
  msgstr "Afegir HTML després del contingut de l'esdeveniment"
1434
 
1435
+ #: src/admin-views/tribe-options-display.php:218
1436
  msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
1437
+ msgstr "Si estàs familiaritzat amb HTML, pots afegir codi addicional després de la plantilla de l'esdeveniment. Alguns temes poden necessitar-ho per ajudar amb els estils o el disseny. "
1438
 
1439
+ #: src/admin-views/tribe-options-general.php:12
1440
  msgid "Finding & extending your calendar."
1441
+ msgstr "Cerca i ampliació del teu calendari."
1442
 
1443
+ #: src/admin-views/tribe-options-general.php:17
1444
  msgid "Finding your calendar."
1445
+ msgstr "Cerca del teu calendari."
1446
 
1447
+ #: src/admin-views/tribe-options-general.php:22
1448
  msgid "Where's my calendar?"
1449
  msgstr "On és el meu calendari?"
1450
 
1451
+ #: src/admin-views/tribe-options-general.php:22
1452
  msgid "Right here"
1453
  msgstr "Aquí"
1454
 
1455
+ #: src/admin-views/tribe-options-general.php:26
1456
  msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
1457
  msgstr "Estàs buscant funcionalitats addicionals com ara esdeveniments recurrents, metadades personalitzades, esdeveniments comunitaris, venda de tiquets i més?"
1458
 
1459
+ #: src/admin-views/tribe-options-general.php:26
1460
  msgid "Check out the available add-ons"
1461
  msgstr "Fes una ullada als complements disponibles"
1462
 
1463
+ #: src/admin-views/tribe-options-general.php:31
1464
  msgid "We hope our plugin is helping you out."
1465
+ msgstr "Esperem que el nostre plugin et sigui d'utilitat."
1466
 
1467
+ #: src/admin-views/tribe-options-general.php:35
1468
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
1469
+ msgstr "Estàs pensant \"Vaja, aquest plugin és fantàstic! Hauria donar les gràcies a la gent de Modern Tribe per la seva feina\"? El millor agraïment que podem demanar és el reconeixement. Permet-nos afegir a la part inferior del teu calendari un petit enllaç de text al projecte The Events Calendar."
1470
 
1471
+ #: src/admin-views/tribe-options-general.php:35
1472
+ #: src/admin-views/tribe-options-general.php:40
1473
  msgid "See an example of the link"
1474
+ msgstr "Mira un exemple de l'enlllaç"
1475
 
1476
+ #: src/admin-views/tribe-options-general.php:40
1477
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project."
1478
+ msgstr "Estàs pensant \"Vaja, aquest plugin és fantàstic! Hauria donar les gràcies a la gent de Modern Tribe per la seva feina\"? El millor agraïment que podem demanar és el reconeixement. Permet-nos afegir a la part inferior del teu calendari un petit enllaç de text al projecte The Events Calendar. "
1479
 
1480
+ #: src/admin-views/tribe-options-general.php:45
1481
  msgid "Show The Events Calendar link"
1482
+ msgstr "Mostrar l'enllaç a The Events Calendar"
1483
 
1484
+ #: src/admin-views/tribe-options-general.php:59
1485
  msgid "General Settings"
1486
  msgstr "Configuració general"
1487
 
1488
+ #: src/admin-views/tribe-options-general.php:63
1489
  msgid "Number of events to show per page"
1490
  msgstr "Número d'esdeveniments a mostrar per pàgina"
1491
 
1492
+ #: src/admin-views/tribe-options-general.php:70
1493
  msgid "Use Javascript to control date filtering"
1494
  msgstr "Utilitza Javascript per controlar el filtre de dates"
1495
 
1496
+ #: src/admin-views/tribe-options-general.php:71
1497
  msgid "This option is disabled when \"Disable the Event Search Bar\" is checked on the Display settings tab."
1498
+ msgstr "Aquesta opció està desactivada quan \"Deshabilitar la barra de cerca d'esdeveniments\" està marcada a la pestanya de configuració de visualització."
1499
 
1500
+ #: src/admin-views/tribe-options-general.php:71
1501
  msgid "Enable live ajax for datepicker on front end (User submit not required)."
1502
+ msgstr "Habilitar ajax per refrescar el selector de dates al moment (No és necessària la intervenció de l'usuari)."
1503
 
1504
+ #: src/admin-views/tribe-options-general.php:79
1505
  msgid "Show comments"
1506
  msgstr "Mostrar comentaris"
1507
 
1508
+ #: src/admin-views/tribe-options-general.php:80
1509
  msgid "Enable comments on event pages."
1510
  msgstr "Habilita els comentaris a les pàgines dels esdeveniments."
1511
 
1512
+ #: src/admin-views/tribe-options-general.php:86
1513
  msgid "Include events in main blog loop"
1514
  msgstr "Inclou els esdeveniments en el bucle principal del blog"
1515
 
1516
+ #: src/admin-views/tribe-options-general.php:87
1517
  msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
1518
+ msgstr "Mostra els esdeveniments juntament amb les altres entrades de la web. Quan s'habilita aquesta opció els esdeveniments es continuen mostrant a la pàgina d'esdeveniments."
1519
 
1520
+ #: src/admin-views/tribe-options-general.php:93
1521
+ #: src/admin-views/tribe-options-general.php:99
1522
  msgid "Events URL slug"
1523
+ msgstr "URL slug dels esdeveniments"
1524
 
1525
+ #: src/admin-views/tribe-options-general.php:106
1526
+ #: src/functions/template-tags/options.php:20
 
 
 
 
1527
  msgid "The slug used for building the events URL."
1528
+ msgstr "L'slug utilitzat per construir la URL dels esdeveniments."
1529
 
1530
+ #: src/admin-views/tribe-options-general.php:106
1531
  msgid "Your current events URL is: %s"
1532
+ msgstr "La URL actual dels esdeveniments és: %s"
1533
 
1534
+ #: src/admin-views/tribe-options-general.php:111
1535
+ #: src/functions/template-tags/options.php:39
1536
  msgid "Here is the iCal feed URL for your events:"
1537
+ msgstr "Aquesta és la URL del feed iCal per als teus esdeveniments:"
1538
 
1539
+ #: src/admin-views/tribe-options-general.php:116
1540
  msgid "Single event URL slug"
1541
+ msgstr "URL slug d'un únic esdeveniment"
1542
 
1543
+ #: src/admin-views/tribe-options-general.php:123
1544
  msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
1545
+ msgstr "El camp anterior hauria de ser un plural, i aquest, un singular.<br />La URL d'un únic esdeveniment és: %s"
1546
 
1547
+ #: src/admin-views/tribe-options-general.php:128
1548
  msgid "End of day cutoff"
1549
+ msgstr "Límit per al final del dia "
1550
 
1551
+ #: src/admin-views/tribe-options-general.php:149
1552
  msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
1553
+ msgstr "Tens esdeveniments que passen de la mitjanit? Indica quan finalitza el dia per evitar que aquests esdeveniments es mostrin el dia següent."
1554
 
1555
+ #: src/admin-views/tribe-options-general.php:154
1556
  msgid "Default currency symbol"
1557
+ msgstr "Símbol monetari predeterminat"
1558
 
1559
+ #: src/admin-views/tribe-options-general.php:155
1560
  msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
1561
+ msgstr "Indica el símbol monetari predeterminat per als costos dels esdeveniments. Recorda que això només afecta els esdeveniments futurs, i els canvis realitzats no s'aplicaran amb caràcter retroactiu."
1562
 
1563
+ #: src/admin-views/tribe-options-general.php:162
1564
  msgid "Currency symbol follows value"
1565
+ msgstr "Posició del símbol monetari"
1566
 
1567
+ #: src/admin-views/tribe-options-general.php:163
1568
  msgid "The currency symbol normally precedes the value. Enabling this option positions the symbol after the value."
1569
+ msgstr "El símbol monetari normalment precedeix al valor. Activant aquesta opció es col·loca el símbol darrere del valor."
1570
 
1571
+ #: src/admin-views/tribe-options-general.php:169
1572
  msgid "Map Settings"
1573
  msgstr "Configuració del mapa"
1574
 
1575
+ #: src/admin-views/tribe-options-general.php:173
1576
  msgid "Enable Google Maps"
1577
  msgstr "Habilita Google Maps"
1578
 
1579
+ #: src/admin-views/tribe-options-general.php:174
1580
  msgid "Check to enable maps for events and venues."
1581
  msgstr "Marca per habilitar els mapes en els esdeveniments i els recintes."
1582
 
1583
+ #: src/admin-views/tribe-options-general.php:181
1584
  msgid "Google Maps default zoom level"
1585
+ msgstr "Nivell de zoom predeterminat de Google Maps"
1586
 
1587
+ #: src/admin-views/tribe-options-general.php:182
1588
  msgid "0 = zoomed out; 21 = zoomed in."
1589
+ msgstr "0 = lluny; 21 = prop. "
1590
 
1591
+ #: src/admin-views/tribe-options-general.php:190
1592
  msgid "Miscellaneous Settings"
1593
+ msgstr "Configuració diversa"
1594
 
1595
+ #: src/admin-views/tribe-options-general.php:194
1596
  msgid "Duplicate Venues &amp; Organizers"
1597
+ msgstr "Organitzadors i recintes duplicats"
1598
 
1599
+ #: src/admin-views/tribe-options-general.php:194
1600
  msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
1601
+ msgstr "Pot ser que després d'actualitzar d'una versió anterior de The Events Calendar a la 3.0 et trobis organitzadors i recintes duplicats. Clica aquest botó per arreglar aquest problema."
1602
 
1603
+ #: src/admin-views/tribe-options-general.php:211
1604
  msgid "Debug mode"
1605
  msgstr "Mode de depuració"
1606
 
1607
+ #: src/admin-views/tribe-options-general.php:217
1608
  msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
1609
+ msgstr "Habilita aquesta opció per mantenir una bitàcola (log) d'informació per a depuració. Per defecte aquesta informació s'envia a la bitàcola d'errors de PHP. Si vols veure aquests errors en el navegador et recomanem que instal·lis el %s i busca la pestanya \"Tribe\" a la pantalla de depuració."
1610
 
1611
+ #: src/admin-views/tribe-options-general.php:217
1612
  msgid "Debug Bar Plugin"
1613
+ msgstr "Plugin Debug Bar"
1614
 
1615
+ #: src/admin-views/tribe-options-general.php:199
1616
  msgid "View Welcome Page"
1617
  msgstr "Veure pàgina de benvinguda"
1618
 
1619
+ #: src/admin-views/tribe-options-general.php:199
1620
  msgid "View the page that displayed when you initially installed the plugin."
1621
+ msgstr "Veure la pàgina que es va mostrar quan vas instal·lar el plugin."
1622
 
1623
+ #: src/admin-views/tribe-options-general.php:204
1624
  msgid "View Update Page"
1625
+ msgstr "Veure la pàgina d'actualitzacions"
1626
 
1627
+ #: src/admin-views/tribe-options-general.php:204
1628
  msgid "View the page that displayed when you updated the plugin."
1629
+ msgstr "Veure la pàgina que es va mostrar quan vas actualitzar el plugin."
1630
 
1631
+ #: src/admin-views/tribe-options-help.php:33
1632
  msgctxt "not available"
1633
  msgid "n/a"
1634
+ msgstr "no disponible"
1635
 
1636
+ #: src/admin-views/tribe-options-help.php:34
1637
  msgid "You need to upgrade!"
1638
  msgstr "Has d'actualitzar-te!"
1639
 
1640
+ #: src/admin-views/tribe-options-help.php:34
1641
  msgid "You are up to date!"
1642
  msgstr "Estàs actualitzat!"
1643
 
1644
+ #: src/admin-views/tribe-options-help.php:63
1645
  msgid "The Events Calendar PRO"
1646
  msgstr "The Events Calendar PRO"
1647
 
1648
+ #: src/admin-views/tribe-options-help.php:72
1649
  msgid "The Events Calendar: Eventbrite Tickets"
1650
  msgstr "The Events Calendar: Eventbrite Tickets"
1651
 
1652
+ #: src/admin-views/tribe-options-help.php:81
1653
  msgid "The Events Calendar: Community Events"
1654
  msgstr "The Events Calendar: Community Events"
1655
 
1656
+ #: src/Tribe/View_Helpers.php:281
1657
  msgid "Wallis And Futuna Islands"
1658
  msgstr "Wallis i Futuna"
1659
 
1660
+ #: src/admin-views/tribe-options-help.php:90
1661
  msgid "The Events Calendar: Facebook Events"
1662
  msgstr "The Events Calendar: Facebook Events"
1663
 
1664
+ #: src/Tribe/View_Helpers.php:282
1665
  msgid "Western Sahara"
1666
  msgstr "Sàhara Occidental"
1667
 
1668
+ #: src/admin-views/tribe-options-help.php:99
1669
  msgid "The Events Calendar: WooCommerce Tickets"
1670
  msgstr "The Events Calendar: WooCommerce Tickets"
1671
 
1672
+ #: src/Tribe/View_Helpers.php:283
1673
  msgid "Yemen"
1674
  msgstr "Iemen"
1675
 
1676
+ #: src/admin-views/tribe-options-help.php:109
1677
  msgid "The Events Calendar: EDD Tickets"
1678
  msgstr "The Events Calendar: EDD Tickets"
1679
 
1680
+ #: src/Tribe/View_Helpers.php:284
1681
  msgid "Zambia"
1682
  msgstr "Zàmbia"
1683
 
1684
+ #: src/admin-views/tribe-options-help.php:119
1685
  msgid "The Events Calendar: WPEC Tickets"
1686
  msgstr "The Events Calendar: WPEC Tickets"
1687
 
1688
+ #: src/Tribe/View_Helpers.php:285
1689
  msgid "Zimbabwe"
1690
  msgstr "Zimbabwe"
1691
 
1692
+ #: src/admin-views/tribe-options-help.php:129
1693
  msgid "The Events Calendar: Shopp Tickets"
1694
  msgstr "The Events Calendar: Shopp Tickets"
1695
 
1696
+ #: src/Tribe/View_Helpers.php:316
1697
  msgid "Alabama"
1698
  msgstr "Alabama"
1699
 
1700
+ #: src/admin-views/tribe-options-help.php:139
1701
  msgid "The Events Calendar: Filter Bar"
1702
  msgstr "The Events Calendar: Filter Bar"
1703
 
1704
+ #: src/Tribe/View_Helpers.php:317
1705
  msgid "Alaska"
1706
  msgstr "Alaska"
1707
 
1708
+ #: src/Tribe/View_Helpers.php:318
1709
  msgid "Arizona"
1710
  msgstr "Arizona"
1711
 
1712
+ #: src/admin-views/tribe-options-help.php:164
1713
  msgid "If this is your first time using The Events Calendar, you're in for a treat and are already well on your way to creating a first event. Here are some basics we've found helpful for users jumping into it for the first time:"
1714
+ msgstr "Si aquesta és la primera vegada que utilitzes The Events Calendar, estàs d'enhorabona i en el bon camí per crear un primer esdeveniment. Aquí hi ha alguns fonaments que trobem útils per als usuaris que fan el salt per primer cop:"
1715
 
1716
+ #: src/Tribe/View_Helpers.php:319
1717
  msgid "Arkansas"
1718
  msgstr "Arkansas"
1719
 
1720
+ #: src/admin-views/tribe-options-help.php:167
1721
  msgid "%sOur New User Primer%s was designed for folks in your exact position. Featuring both step-by-step videos and written walkthroughs that feature accompanying screenshots, the primer aims to take you from zero to hero in no time."
1722
+ msgstr "%sLa nostra guia d'introducció%s està pensada per a persones que es troben en la teva situació. Amb vídeos d'introducció i tutorials escrits acompanyats d'imatges, aquesta guia té com a objectiu convertir-te en un usuari experimentat en poc temps."
1723
 
1724
+ #: src/Tribe/View_Helpers.php:320
1725
  msgid "California"
1726
  msgstr "Califòrnia"
1727
 
1728
+ #: src/admin-views/tribe-options-help.php:169
1729
  msgid "%sInstallation/Setup FAQs%s from our support page can help give an overview of what the plugin can and cannot do. This section of the FAQs may be helpful as it aims to address any basic install questions not addressed by the new user primer."
1730
+ msgstr "La secció de %sPreguntes Freqüents sobre la Instal·lació i Configuració%s de la nostra pàgina de suport t'ajudarà a tenir una visió general del que el plugin pot i no pot fer. Aquesta secció et pot ser útil, ja que té com a objectiu abordar les qüestions bàsiques d'instal·lació no contingudes en el tutorial d'introducció."
1731
 
1732
+ #: src/Tribe/View_Helpers.php:321
1733
  msgid "Colorado"
1734
  msgstr "Colorado"
1735
 
1736
+ #: src/admin-views/tribe-options-help.php:171
1737
  msgid "Otherwise, if you're feeling adventurous, you can get started by heading to the Events menu and adding your first event."
1738
+ msgstr "Altrament, si tens esperit d'aventura, pots començar fent una ullada al menú Esdeveniments i afegint el teu primer esdeveniment."
1739
 
1740
+ #: src/Tribe/View_Helpers.php:322
1741
  msgid "Connecticut"
1742
  msgstr "Connecticut"
1743
 
1744
+ #: src/admin-views/tribe-options-help.php:175
1745
  msgid "We've redone our support page from the ground up in an effort to better help our users. Head over to our %sSupport Page%s and you'll find lots of great resources, including:"
1746
+ msgstr "Hem refet la nostra pàgina de suport des de zero amb la intenció d'ajudar millor als nostres usuaris. Passa't per la nostra %sSupport Page%s on hi trobaràs un munt de recursos excel·lents, incloent:"
1747
 
1748
+ #: src/Tribe/View_Helpers.php:323
1749
  msgid "Delaware"
1750
  msgstr "Delaware"
1751
 
1752
+ #: src/admin-views/tribe-options-help.php:177
1753
  msgid "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar &amp; Events Calendar PRO"
1754
+ msgstr "%sEtiquetes de plantilla, funcions, i filtres%s per a The Events Calendar i Events Calendar PRO"
1755
 
1756
+ #: src/Tribe/View_Helpers.php:324
1757
  msgid "District of Columbia"
1758
  msgstr "Districte de Colúmbia"
1759
 
1760
+ #: src/admin-views/tribe-options-help.php:179
1761
  msgid "%sFrequently Asked Questions%s ranging from the most basic setup questions to advanced themer tweaks"
1762
+ msgstr "A la secció %sPreguntes Freqüents%s trobarás preguntes que van des de les qüestions de configuració més bàsiques fins els ajustos més avançats."
1763
 
1764
+ #: src/Tribe/View_Helpers.php:325
1765
  msgid "Florida"
1766
  msgstr "Florida"
1767
 
1768
+ #: src/admin-views/tribe-options-help.php:182
1769
  msgid "%sTutorials%s written by both members of our team and users from the community, covering custom queries, integration with third-party themes and plugins, etc."
1770
+ msgstr "%sTutorials%s escrits tant pels membres del nostre equip com pels usuaris de la comunitat, que abasten consultes personalitzades, integració amb temes i plugins de tercers, etc."
1771
 
1772
+ #: src/Tribe/View_Helpers.php:327
1773
  msgid "Hawaii"
1774
  msgstr "Hawaii"
1775
 
1776
+ #: src/admin-views/tribe-options-help.php:184
1777
  msgid "Release notes for painting an overall picture of the plugin's lifecycle and when features/bug fixes were introduced."
1778
+ msgstr "Notes de la versió per a explicar l'evolució del plugin i quan es van introduir noves característiques i correccions d'errors."
1779
 
1780
+ #: src/Tribe/View_Helpers.php:328
1781
  msgid "Idaho"
1782
  msgstr "Idaho"
1783
 
1784
+ #: src/admin-views/tribe-options-help.php:186
1785
  msgid "%sAdd-on documentation%s for all of Modern Tribe's official extensions for The Events Calendar (including WooTickets, Community Events, Eventbrite Tickets, Facebook Events, etc)"
1786
+ msgstr "%sDocumentació%s per a totes les extensions oficials de Modern Tribe de The Events Calendar (incloent WooTickets, Community Events, Eventbrite Tickets, Facebook Events, etc)"
1787
 
1788
+ #: src/Tribe/View_Helpers.php:329
1789
  msgid "Illinois"
1790
  msgstr "Illinois"
1791
 
1792
+ #: src/admin-views/tribe-options-help.php:188
1793
  msgid "We've also got a %sModern Tribe UserVoice%s page where we're actively watching for feature ideas from the community. If after playing with the plugin and reviewing the resources above, you're finding a feature isn't present that should be, let us know. Vote up existing feature requests or add your own, and help us shape the future of the products business in a way that best meets the community's needs."
1794
+ msgstr "També tenim una pàgina d'%sIdees per Modern Tribe%s on busquem activament idees de la comunitat d'usuaris per implementar noves funcions. Si després d'utilitzar el plugin i fer una ullada als recursos anteriors, veus necessària una característica que no hi és present, posa't en contacte amb nosaltres. Pots donar el teu vot positiu a les sol·licituds de característiques ja presents o afegir les teves pròpies, i així ens ajudaràs a donar forma al futur dels productes de l'empresa de manera que millor s'adaptin a les necessitats de la comunitat."
1795
 
1796
+ #: src/Tribe/View_Helpers.php:330
1797
  msgid "Indiana"
1798
  msgstr "Indiana"
1799
 
1800
+ #: src/admin-views/tribe-options-help.php:192
1801
  msgid "Written documentation can only take things so far...sometimes, you need help from a real person. This is where our %ssupport forums%s come into play."
1802
+ msgstr "La documentació escrita et pot ajudar només fins a cert punt... de vegades és necessària l'ajuda d'una persona real. Aquí és on entren en joc els nostres %sfòrums de suport%s."
1803
 
1804
+ #: src/Tribe/View_Helpers.php:331
1805
  msgid "Iowa"
1806
  msgstr "Iowa"
1807
 
1808
+ #: src/admin-views/tribe-options-help.php:193
1809
  msgid "Users of the free The Events Calendar should post their support concerns to the plugin's %sWordPress.org support forum%s. While we are happy to help identify and fix bugs that are reported at WordPress.org, please make sure to read our %ssupport expectations sticky thread%s before posting so you understand our limitations."
1810
+ msgstr "Els usuaris de la versió lliure de The Events Calendar han de publicar les seves consultes sobre el plugin en els %sfòrums de suport de WordPress.org%s. Encara que estem encantats d'ajudar a identificar i corregir els errors que s'inclouen a WordPress.org, si us plau assegura't de llegir el %sfil fixat amb les expectatives de suport%s abans de publicar res perquè entenguis les nostres limitacions."
1811
 
1812
+ #: src/Tribe/View_Helpers.php:332
1813
  msgid "Kansas"
1814
  msgstr "Kansas"
1815
 
1816
+ #: src/admin-views/tribe-options-help.php:194
1817
  msgid "We hit the WordPress.org forum throughout the week, watching for bugs. If you report a legitimate bug that we're able to reproduce, we will log it and patch for an upcoming release. However we are unfortunately unable to provide customization tips or assist in integrating with 3rd party plugins or themes."
1818
+ msgstr "Recorrem el fòrum de WordPress.org durant tota la setmana a la recerca d'errors. Si ens informes d'un error legítim que som capaços de reproduir, el registrarem i l'arreglarem en un proper llançament. No obstant això, el que no podem oferir són consells de personalització o ajudar en la integració amb temes o plugins de tercers."
1819
 
1820
+ #: src/Tribe/View_Helpers.php:333
1821
  msgid "Kentucky"
1822
  msgstr "Kentucky"
1823
 
1824
+ #: src/admin-views/tribe-options-help.php:195
1825
  msgid "If you're a user of The Events Calendar and would like more support, please %spurchase a PRO license%s. We hit the PRO forums daily, and can provide a deeper level of customization/integration support for paying users than we can on WordPress.org."
1826
+ msgstr "Si ets un usuari de The Events Calendar i vols obtenir més ajuda, si us plau %scompra una llicència PRO%s. Donem suport en els fòrums PRO diàriament i podem proporcionar un major nivell de suport per a la personalització/integració als usuaris de pagament del que podem fer-ho a WordPress.org."
1827
 
1828
+ #: src/Tribe/View_Helpers.php:47
1829
  msgid "Afghanistan"
1830
  msgstr "Afganistan"
1831
 
1832
+ #: src/Tribe/View_Helpers.php:48
1833
  msgid "Albania"
1834
  msgstr "Albània"
1835
 
1836
+ #: src/Tribe/View_Helpers.php:49
1837
  msgid "Algeria"
1838
  msgstr "Algèria"
1839
 
1840
+ #: src/Tribe/API.php:437
1841
  msgid "Unnamed Venue"
1842
  msgstr "Recinte sense nom"
1843
 
1844
+ #: src/Tribe/View_Helpers.php:50
1845
  msgid "American Samoa"
1846
  msgstr "Samoa Nord-americana"
1847
 
1848
+ #: src/Tribe/API.php:517 src/Tribe/View_Helpers.php:46
1849
+ #: src/functions/template-tags/venue.php:272
1850
  msgid "United States"
1851
  msgstr "Estats Units"
1852
 
1853
+ #: src/Tribe/View_Helpers.php:51
1854
  msgid "Andorra"
1855
  msgstr "Andorra"
1856
 
1857
+ #: src/Tribe/Activation_Page.php:196
1858
  msgid "Welcome to The Events Calendar"
1859
  msgstr "Benvingut/da a The Events Calendar"
1860
 
1861
+ #: src/Tribe/View_Helpers.php:52
1862
  msgid "Angola"
1863
  msgstr "Angola"
1864
 
1865
+ #: src/Tribe/Activation_Page.php:216
1866
  msgid "Thanks for Updating The Events Calendar"
1867
  msgstr "Gràcies per actualitzar The Events Calendar"
1868
 
1869
+ #: src/Tribe/View_Helpers.php:53
1870
  msgid "Anguilla"
1871
  msgstr "Anguilla"
1872
 
1873
+ #: src/Tribe/Admin_List.php:219 src/Tribe/Main.php:1295
1874
  msgid "%s Categories"
1875
+ msgstr "Categories d'%s"
1876
 
1877
+ #: src/Tribe/View_Helpers.php:54
1878
  msgid "Antarctica"
1879
  msgstr "Antàrtida"
1880
 
1881
+ #: src/Tribe/Admin_List.php:225
1882
  msgid "Start Date"
1883
  msgstr "Data d'inici"
1884
 
1885
+ #: src/Tribe/View_Helpers.php:55
1886
  msgid "Antigua And Barbuda"
1887
  msgstr "Antigua i Barbuda"
1888
 
1889
+ #: src/Tribe/Admin_List.php:226
1890
  msgid "End Date"
1891
  msgstr "Data de finalització"
1892
 
1893
+ #: src/Tribe/View_Helpers.php:56
1894
  msgid "Argentina"
1895
  msgstr "Argentina"
1896
 
1897
+ #: src/Tribe/Admin_List.php:304
1898
  msgid "All %s"
1899
+ msgstr "Tots els %s"
1900
 
1901
+ #: src/Tribe/View_Helpers.php:57
1902
  msgid "Armenia"
1903
  msgstr "Armènia"
1904
 
1905
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:37
1906
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:69
1907
+ #: src/views/modules/meta/details.php:40 src/views/modules/meta/details.php:65
 
1908
  msgid "Start:"
1909
  msgstr "Inici:"
1910
 
1911
+ #: src/Tribe/View_Helpers.php:58
1912
  msgid "Aruba"
1913
  msgstr "Aruba"
1914
 
1915
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:46
1916
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:78
1917
+ #: src/views/modules/meta/details.php:45 src/views/modules/meta/details.php:70
 
1918
  msgid "End:"
1919
  msgstr "Finalització:"
1920
 
1921
+ #: src/Tribe/View_Helpers.php:59
1922
  msgid "Australia"
1923
  msgstr "Austràlia"
1924
 
1925
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:57
1926
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:89
1927
+ #: src/views/modules/meta/details.php:55 src/views/modules/meta/details.php:80
 
1928
  msgid "Date:"
1929
  msgstr "Data:"
1930
 
1931
+ #: src/Tribe/View_Helpers.php:60
1932
  msgid "Austria"
1933
  msgstr "Àustria"
1934
 
1935
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:100
1936
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:111
1937
+ #: src/views/modules/meta/details.php:85
1938
  msgid "Time:"
1939
  msgstr "Hora:"
1940
 
1941
+ #: src/Tribe/View_Helpers.php:61
1942
  msgid "Azerbaijan"
1943
  msgstr "Azerbaidjan"
1944
 
1945
+ #: src/functions/template-tags/google-map.php:46
 
1946
  msgid "Click to view a Google Map"
1947
  msgstr "Clica per veure un mapa de Google"
1948
 
1949
+ #: src/Tribe/View_Helpers.php:62
1950
  msgid "Bahamas"
1951
  msgstr "Bahames"
1952
 
1953
+ #: src/functions/template-tags/google-map.php:47
 
1954
  msgid "+ Google Map"
1955
  msgstr "+ Mapa de Google"
1956
 
1957
+ #: src/Tribe/View_Helpers.php:63
1958
  msgid "Bahrain"
1959
  msgstr "Bahrain"
1960
 
1961
+ #: src/Tribe/Amalgamator.php:260 src/admin-views/tribe-options-general.php:194
 
1962
  msgid "Merge Duplicates"
1963
+ msgstr "Eliminar duplicats"
1964
 
1965
+ #: src/Tribe/View_Helpers.php:64
1966
  msgid "Bangladesh"
1967
  msgstr "Bangla Desh"
1968
 
1969
+ #: src/Tribe/App_Shop.php:63 src/Tribe/App_Shop.php:64
1970
+ #: src/Tribe/App_Shop.php:94
1971
  msgid "Event Add-Ons"
1972
+ msgstr "Complements de l'esdeveniment"
1973
 
1974
+ #: src/Tribe/View_Helpers.php:65
1975
  msgid "Barbados"
1976
  msgstr "Barbados"
1977
 
1978
+ #: src/Tribe/Credits.php:31
1979
  msgid "This calendar is powered by The Events Calendar."
1980
+ msgstr "Aquest calendari està creat amb The Events Calendar."
1981
 
1982
+ #: src/Tribe/View_Helpers.php:66
1983
  msgid "Belarus"
1984
  msgstr "Bielorússia"
1985
 
1986
+ #: src/Tribe/Credits.php:48
1987
  msgid "Rate <strong>The Events Calendar</strong> <a href=\"%1$s\" target=\"_blank\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href=\"%1$s\" target=\"_blank\">WordPress.org</a> to keep this plugin free. Thanks from the friendly folks at Modern Tribe."
1988
+ msgstr "Puntua <strong>The Events Calendar</strong> amb <a href=\"%1$s\" target=\"_blank\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> a <a href=\"%1$s\" target=\"_blank\">WordPress.org</a> per a que aquest plugin continuï sent gratuït. Gràcies de part dels amics de Modern Tribe."
1989
 
1990
+ #: src/Tribe/View_Helpers.php:67
1991
  msgid "Belgium"
1992
  msgstr "Bèlgica"
1993
 
1994
+ #: src/Tribe/Credits.php:48
1995
  msgid "http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5"
1996
  msgstr "http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5"
1997
 
1998
+ #: src/Tribe/View_Helpers.php:68
1999
  msgid "Belize"
2000
  msgstr "Belize"
2001
 
2002
+ #: src/Tribe/Field.php:209
2003
  msgid "Invalid field type specified"
2004
+ msgstr "El tipus de camp especificat és incorrecte"
2005
 
2006
+ #: src/Tribe/View_Helpers.php:69
2007
  msgid "Benin"
2008
  msgstr "Benín"
2009
 
2010
+ #: src/Tribe/Field.php:466
2011
  msgid "No radio options specified"
2012
+ msgstr "No s'ha especificat cap opció "
2013
 
2014
+ #: src/Tribe/View_Helpers.php:70
2015
  msgid "Bermuda"
2016
  msgstr "Bermudes"
2017
 
2018
+ #: src/Tribe/Field.php:502
2019
  msgid "No checkbox options specified"
2020
+ msgstr "No s'ha especificat cap opció"
2021
 
2022
+ #: src/Tribe/View_Helpers.php:71
2023
  msgid "Bhutan"
2024
  msgstr "Bhutan"
2025
 
2026
+ #: src/Tribe/Field.php:558
2027
  msgid "No select options specified"
2028
+ msgstr "No s'ha especificat cap opció"
2029
 
2030
+ #: src/Tribe/View_Helpers.php:72
2031
  msgid "Bolivia"
2032
  msgstr "Bolívia"
2033
 
2034
+ #: src/Tribe/Importer/Admin_Page.php:15 src/Tribe/Importer/Admin_Page.php:16
2035
+ #: src/Tribe/Main.php:4011
2036
  msgid "Import"
2037
  msgstr "Importar"
2038
 
2039
+ #: src/Tribe/View_Helpers.php:73
2040
  msgid "Bosnia And Herzegowina"
2041
  msgstr "Bòsnia i Hercegovina"
2042
 
2043
+ #: src/Tribe/Importer/Admin_Page.php:54 src/Tribe/Importer/Admin_Page.php:187
 
2044
  msgid "The file went away. Please try again."
2045
+ msgstr "El fitxer ha desaparegut. Si us plau, intenta-ho de nou."
2046
 
2047
+ #: src/Tribe/View_Helpers.php:74
2048
  msgid "Botswana"
2049
  msgstr "Botswana"
2050
 
2051
+ #: src/Tribe/Importer/Admin_Page.php:95 src/Tribe/Main.php:777
2052
  msgid "General"
2053
+ msgstr "General"
2054
 
2055
+ #: src/Tribe/View_Helpers.php:75
2056
  msgid "Bouvet Island"
2057
  msgstr "Illa Bouvet"
2058
 
2059
+ #: src/Tribe/Importer/Admin_Page.php:96
2060
  msgid "Import: CSV"
2061
  msgstr "Importar: CSV"
2062
 
2063
+ #: src/Tribe/View_Helpers.php:76
2064
  msgid "Brazil"
2065
  msgstr "Brasil"
2066
 
2067
+ #: src/Tribe/Importer/Admin_Page.php:153
2068
  msgid "We were unable to process your request. Please try again."
2069
+ msgstr "No s'ha pogut processar la teva sol·licitud. Si us plau, intenta-ho de nou."
2070
 
2071
+ #: src/Tribe/View_Helpers.php:77
2072
  msgid "British Indian Ocean Territory"
2073
  msgstr "Territori Britànic de l'Oceà Índic"
2074
 
2075
+ #: src/Tribe/Importer/Admin_Page.php:194
2076
  msgid "<p>The following fields are required for a successful import:</p>"
2077
+ msgstr "<p>Els següents camps són obligatoris per a una importació correcta:</p>"
2078
 
2079
+ #: src/Tribe/View_Helpers.php:78
2080
  msgid "Brunei Darussalam"
2081
+ msgstr "Brunei Darussalam"
2082
 
2083
+ #: src/Tribe/Importer/Column_Mapper.php:33
2084
  msgid "Do Not Import"
2085
+ msgstr "No importar"
2086
 
2087
+ #: src/Tribe/View_Helpers.php:79
2088
  msgid "Bulgaria"
2089
+ msgstr "Bulgària"
2090
 
2091
+ #: src/Tribe/Importer/Column_Mapper.php:52
2092
  msgid "Event Name"
2093
+ msgstr "Nom de l'esdeveniment"
2094
 
2095
+ #: src/Tribe/View_Helpers.php:80
2096
  msgid "Burkina Faso"
2097
+ msgstr "Burkina Faso"
2098
 
2099
+ #: src/Tribe/Importer/Column_Mapper.php:53
2100
  msgid "Event Description"
2101
+ msgstr "Descripció de l'esdeveniment"
2102
 
2103
+ #: src/Tribe/View_Helpers.php:81
2104
  msgid "Burundi"
2105
+ msgstr "Burundi"
2106
 
2107
+ #: src/Tribe/Importer/Column_Mapper.php:54
2108
  msgid "Event Start Date"
2109
+ msgstr "Data d'inici de l'esdeveniment"
2110
 
2111
+ #: src/Tribe/View_Helpers.php:82
2112
  msgid "Cambodia"
2113
+ msgstr "Cambodja"
2114
 
2115
+ #: src/Tribe/Importer/Column_Mapper.php:55
2116
  msgid "Event Start Time"
2117
+ msgstr "Hora d'inici de l'esdeveniment"
2118
 
2119
+ #: src/Tribe/View_Helpers.php:83
2120
  msgid "Cameroon"
2121
+ msgstr "Camerun"
2122
 
2123
+ #: src/Tribe/Importer/Column_Mapper.php:56
2124
  msgid "Event End Date"
2125
+ msgstr "Data de finalització de l'esdeveniment"
2126
 
2127
+ #: src/Tribe/View_Helpers.php:84
2128
  msgid "Canada"
2129
+ msgstr "Canadà"
2130
 
2131
+ #: src/Tribe/Importer/Column_Mapper.php:57
2132
  msgid "Event End Time"
2133
+ msgstr "Hora de finalització de l'esdeveniment"
2134
 
2135
+ #: src/Tribe/View_Helpers.php:85
2136
  msgid "Cape Verde"
2137
+ msgstr "Cap Verd"
2138
 
2139
+ #: src/Tribe/Importer/Column_Mapper.php:58
2140
  msgid "All Day Event"
2141
+ msgstr "Tot el dia"
2142
 
2143
+ #: src/Tribe/View_Helpers.php:86
2144
  msgid "Cayman Islands"
2145
+ msgstr "Illes Caiman"
2146
 
2147
+ #: src/Tribe/Importer/Column_Mapper.php:59
2148
  msgid "Event Venue Name"
2149
+ msgstr "Nom del recinte de l'esdeveniment"
2150
 
2151
+ #: src/Tribe/View_Helpers.php:87
2152
  msgid "Central African Republic"
2153
+ msgstr "República Centreafricana"
2154
 
2155
+ #: src/Tribe/Importer/Column_Mapper.php:60
2156
  msgid "Event Organizer Name"
2157
+ msgstr "Nom de l'organitzador de l'esdeveniment"
2158
 
2159
+ #: src/Tribe/View_Helpers.php:88
2160
  msgid "Chad"
2161
+ msgstr "Txad"
2162
 
2163
+ #: src/Tribe/Importer/Column_Mapper.php:61
2164
  msgid "Event Show Map Link"
2165
+ msgstr "Mostrar enllaç al mapa"
2166
 
2167
+ #: src/Tribe/View_Helpers.php:89
2168
  msgid "Chile"
2169
+ msgstr "Xile"
2170
 
2171
+ #: src/Tribe/Importer/Column_Mapper.php:62
2172
  msgid "Event Show Map"
2173
+ msgstr "Mostrar mapa"
2174
 
2175
+ #: src/Tribe/View_Helpers.php:90
2176
  msgid "China"
2177
+ msgstr "Xina"
2178
 
2179
+ #: src/Tribe/Importer/Column_Mapper.php:63
2180
  msgid "Event Cost"
2181
+ msgstr "Cost de l'esdeveniment"
2182
 
2183
+ #: src/Tribe/View_Helpers.php:91
2184
  msgid "Christmas Island"
2185
+ msgstr "Illa Christmas"
2186
 
2187
+ #: src/Tribe/View_Helpers.php:92
2188
  msgid "Cocos (Keeling) Islands"
2189
+ msgstr "Cocos (Keeling)"
2190
 
2191
+ #: src/Tribe/Importer/Column_Mapper.php:66
2192
  msgid "Event Category"
2193
  msgstr "Categoria de l'esdeveniment"
2194
 
2195
+ #: src/Tribe/View_Helpers.php:93
2196
  msgid "Colombia"
2197
+ msgstr "Colòmbia"
2198
 
2199
+ #: src/Tribe/Importer/Column_Mapper.php:68
2200
  msgid "Event Website"
2201
+ msgstr "Web de l'esdeveniment"
2202
 
2203
+ #: src/Tribe/View_Helpers.php:94
2204
  msgid "Comoros"
2205
+ msgstr "Comores"
2206
 
2207
+ #: src/Tribe/Importer/Column_Mapper.php:74
2208
  msgid "Venue Name"
2209
+ msgstr "Nom del recinte"
2210
 
2211
+ #: src/Tribe/View_Helpers.php:95
2212
  msgid "Congo"
2213
+ msgstr "Congo"
2214
 
2215
+ #: src/Tribe/Importer/Column_Mapper.php:75
2216
  msgid "Venue Country"
2217
+ msgstr "País del recinte"
2218
 
2219
+ #: src/Tribe/View_Helpers.php:96
2220
  msgid "Congo, The Democratic Republic Of The"
2221
+ msgstr "Congo, La República Democràtica del"
2222
 
2223
+ #: src/Tribe/Importer/Column_Mapper.php:76
2224
  msgid "Venue Address"
2225
+ msgstr "Adreça del recinte"
2226
 
2227
+ #: src/Tribe/View_Helpers.php:97
2228
  msgid "Cook Islands"
2229
+ msgstr "Illes Cook"
2230
 
2231
+ #: src/Tribe/Importer/Column_Mapper.php:77
2232
  msgid "Venue Address 2"
2233
+ msgstr "Adreça del recinte 2"
2234
 
2235
+ #: src/Tribe/View_Helpers.php:98
2236
  msgid "Costa Rica"
2237
+ msgstr "Costa Rica"
2238
 
2239
+ #: src/Tribe/Importer/Column_Mapper.php:78
2240
  msgid "Venue City"
2241
+ msgstr "Ciutat del recinte"
2242
 
2243
+ #: src/Tribe/View_Helpers.php:99
2244
  msgid "Cote D'Ivoire"
2245
+ msgstr "Costa d'Ivori"
2246
 
2247
+ #: src/Tribe/Importer/Column_Mapper.php:79
2248
  msgid "Venue State/Province"
2249
+ msgstr "Estat/Província del recinte"
2250
 
2251
+ #: src/Tribe/View_Helpers.php:100
2252
  msgid "Croatia (Local Name: Hrvatska)"
2253
+ msgstr "Croàcia (Nom Local: Hrvatska)"
2254
 
2255
+ #: src/Tribe/Importer/Column_Mapper.php:80
2256
  msgid "Venue Zip"
2257
+ msgstr "Codi postal del recinte"
2258
 
2259
+ #: src/Tribe/View_Helpers.php:101
2260
  msgid "Cuba"
2261
+ msgstr "Cuba"
2262
 
2263
+ #: src/Tribe/Importer/Column_Mapper.php:81
2264
  msgid "Venue Phone"
2265
+ msgstr "Telèfon del recinte"
2266
 
2267
+ #: src/Tribe/View_Helpers.php:102
2268
  msgid "Cyprus"
2269
+ msgstr "Xipre"
2270
 
2271
+ #: src/Tribe/Importer/Column_Mapper.php:82
2272
  msgid "Venue Website"
2273
+ msgstr "Web del recinte"
2274
 
2275
+ #: src/Tribe/View_Helpers.php:103
2276
  msgid "Czech Republic"
2277
+ msgstr "República Txeca"
2278
 
2279
+ #: src/Tribe/Importer/Column_Mapper.php:88
2280
  msgid "Organizer Name"
2281
+ msgstr "Nom de l'organitzador"
2282
 
2283
+ #: src/Tribe/View_Helpers.php:104
2284
  msgid "Denmark"
2285
+ msgstr "Dinamarca"
2286
 
2287
+ #: src/Tribe/Importer/Column_Mapper.php:89
2288
  msgid "Organizer Email"
2289
+ msgstr "Correu electrònic de l'organitzador"
2290
 
2291
+ #: src/Tribe/View_Helpers.php:105
2292
  msgid "Djibouti"
2293
+ msgstr "Djibouti"
2294
 
2295
+ #: src/Tribe/Importer/Column_Mapper.php:90
2296
  msgid "Organizer Website"
2297
+ msgstr "Web de l'organitzador"
2298
 
2299
+ #: src/Tribe/View_Helpers.php:106
2300
  msgid "Dominica"
2301
+ msgstr "Dominica"
2302
 
2303
+ #: src/Tribe/Importer/Column_Mapper.php:91
2304
  msgid "Organizer Phone"
2305
+ msgstr "Telèfon de l'organitzador"
2306
 
2307
+ #: src/Tribe/View_Helpers.php:107
2308
  msgid "Dominican Republic"
2309
+ msgstr "República Dominicana"
2310
 
2311
+ #: src/Tribe/Importer/File_Importer.php:38
2312
  msgid "No importer defined for %s"
2313
+ msgstr "Cap importador definit per %s"
2314
 
2315
+ #: src/Tribe/View_Helpers.php:108
2316
  msgid "East Timor"
2317
+ msgstr "Timor Oriental"
2318
 
2319
+ #: src/Tribe/Importer/File_Importer.php:110
2320
  msgid "Missing required fields in row %d."
2321
+ msgstr "Falten camps obligatoris a la fila %d."
2322
 
2323
+ #: src/Tribe/View_Helpers.php:109
2324
  msgid "Ecuador"
2325
+ msgstr "Equador"
2326
 
2327
+ #: src/Tribe/Importer/File_Importer.php:118
2328
  msgid "Failed to import record in row %d."
2329
+ msgstr "No s'ha pogut importar el registre de la fila %d."
2330
 
2331
+ #: src/Tribe/View_Helpers.php:110
2332
  msgid "Egypt"
2333
+ msgstr "Egipte"
2334
 
2335
+ #: src/Tribe/Importer/File_Importer.php:127
2336
  msgid "%s (post ID %d) updated."
2337
+ msgstr "%s (ID d'entrada %d) actualitzat."
2338
 
2339
+ #: src/Tribe/View_Helpers.php:111
2340
  msgid "El Salvador"
2341
+ msgstr "El Salvador"
2342
 
2343
+ #: src/Tribe/Importer/File_Importer.php:131
2344
  msgid "%s (post ID %d) created."
2345
+ msgstr "%s (ID d'entrada %d) creat."
2346
 
2347
+ #: src/Tribe/View_Helpers.php:112
2348
  msgid "Equatorial Guinea"
2349
+ msgstr "Guinea Equatorial"
2350
 
2351
+ #: src/Tribe/Importer/File_Uploader.php:28
2352
  msgid "Temporary file not found. Could not save %s."
2353
+ msgstr "No es troba el fitxer temporal. No s'ha pogut guardar %s."
2354
 
2355
+ #: src/Tribe/View_Helpers.php:113
2356
  msgid "Eritrea"
2357
+ msgstr "Eritrea"
2358
 
2359
+ #: src/Tribe/Importer/File_Uploader.php:36
2360
  msgid "Could not save %s."
2361
+ msgstr "No s'ha pogut guardar %s."
2362
 
2363
+ #: src/Tribe/View_Helpers.php:114
2364
  msgid "Estonia"
2365
+ msgstr "Estònia"
2366
 
2367
+ #: src/Tribe/Importer/Options.php:29 src/Tribe/Settings.php:520
2368
  msgid "Settings saved."
2369
+ msgstr "Configuració guardada."
2370
 
2371
+ #: src/Tribe/View_Helpers.php:115
2372
  msgid "Ethiopia"
2373
+ msgstr "Etiòpia"
2374
 
2375
+ #: src/Tribe/List_Widget.php:30
2376
  msgid "A widget that displays upcoming events."
2377
+ msgstr "Un giny que mostra els propers esdeveniments."
2378
 
2379
+ #: src/Tribe/View_Helpers.php:116
2380
  msgid "Falkland Islands (Malvinas)"
2381
+ msgstr "Illes Malvines (Falkland)"
2382
 
2383
+ #: src/Tribe/List_Widget.php:38
2384
  msgid "Events List"
2385
+ msgstr "Llista d'esdeveniments"
2386
 
2387
+ #: src/Tribe/View_Helpers.php:117
2388
  msgid "Faroe Islands"
2389
+ msgstr "Illes Fèroe"
2390
 
2391
+ #: src/Tribe/List_Widget.php:172
2392
  msgid "Upcoming Events"
2393
+ msgstr "Propers esdeveniments"
2394
 
2395
+ #: src/Tribe/View_Helpers.php:118
2396
  msgid "Fiji"
2397
+ msgstr "Fiji"
2398
 
2399
+ #: src/Tribe/Main.php:503 src/functions/template-tags/venue.php:52
2400
+ #: src/io/csv/admin-views/import.php:45
2401
  msgid "Venues"
2402
+ msgstr "Recintes"
2403
 
2404
+ #: src/Tribe/View_Helpers.php:119
2405
  msgid "Finland"
2406
+ msgstr "Finlàndia"
2407
 
2408
+ #: src/Tribe/Main.php:511
2409
+ #: src/functions/advanced-functions/meta_registration.php:126
2410
+ #: src/functions/template-tags/venue.php:41
2411
  msgid "Venue"
2412
+ msgstr "Recinte"
2413
 
2414
+ #: src/Tribe/View_Helpers.php:120
2415
  msgid "France"
2416
+ msgstr "França"
2417
 
2418
+ #: src/Tribe/Main.php:519 src/functions/template-tags/organizer.php:82
2419
+ #: src/io/csv/admin-views/import.php:46
2420
  msgid "Organizers"
2421
+ msgstr "Organitzadors"
2422
 
2423
+ #: src/Tribe/View_Helpers.php:121
2424
  msgid "France, Metropolitan"
2425
+ msgstr "França, Metropolitana"
2426
 
2427
+ #: src/Tribe/Main.php:527
2428
+ #: src/functions/advanced-functions/meta_registration.php:205
2429
+ #: src/functions/template-tags/organizer.php:71
2430
  msgid "Organizer"
2431
+ msgstr "Organitzador"
2432
 
2433
+ #: src/Tribe/View_Helpers.php:122
2434
  msgid "French Guiana"
2435
+ msgstr "Guaiana Francesa"
2436
 
2437
+ #: src/Tribe/Main.php:535 src/functions/template-tags/general.php:71
2438
+ #: src/io/csv/admin-views/import.php:47
2439
  msgid "Events"
2440
+ msgstr "Esdeveniments"
2441
 
2442
+ #: src/Tribe/View_Helpers.php:123
2443
  msgid "French Polynesia"
2444
+ msgstr "Polinèsia Francesa"
2445
 
2446
+ #: src/Tribe/Main.php:543 src/functions/template-tags/general.php:60
2447
  msgid "Event"
2448
+ msgstr "Esdeveniment"
2449
 
2450
+ #: src/Tribe/View_Helpers.php:124
2451
  msgid "French Southern Territories"
2452
+ msgstr "Territoris Francesos del Sud"
2453
 
2454
+ #. Plugin Name of the plugin/theme
2455
+ #: src/Tribe/Main.php:583 src/Tribe/Settings.php:132
2456
+ #: src/admin-views/tribe-options-help.php:272
2457
  msgid "The Events Calendar"
2458
+ msgstr "The Events Calendar"
2459
 
2460
+ #: src/Tribe/View_Helpers.php:125
2461
  msgid "Gabon"
2462
+ msgstr "Gabon"
2463
 
2464
+ #: src/Tribe/Main.php:588
2465
  msgid "month"
2466
+ msgstr "mes"
2467
 
2468
+ #: src/Tribe/View_Helpers.php:126
2469
  msgid "Gambia"
2470
+ msgstr "Gàmbia"
2471
 
2472
+ #: src/Tribe/Main.php:589
2473
  msgid "list"
2474
+ msgstr "llista"
2475
 
2476
+ #: src/Tribe/View_Helpers.php:127 src/Tribe/View_Helpers.php:326
2477
  msgid "Georgia"
2478
+ msgstr "Geòrgia"
2479
 
2480
+ #: src/Tribe/Main.php:590
2481
  msgid "upcoming"
2482
+ msgstr "pròxims"
2483
 
2484
+ #: src/Tribe/View_Helpers.php:128
2485
  msgid "Germany"
2486
+ msgstr "Alemanya"
2487
 
2488
+ #: src/Tribe/Main.php:591
2489
  msgid "past"
2490
+ msgstr "passats"
2491
 
2492
+ #: src/Tribe/View_Helpers.php:129
2493
  msgid "Ghana"
2494
+ msgstr "Ghana"
2495
 
2496
+ #: src/Tribe/Main.php:592
2497
  msgid "day"
2498
+ msgstr "dia"
2499
 
2500
+ #: src/Tribe/View_Helpers.php:130
2501
  msgid "Gibraltar"
2502
+ msgstr "Gibraltar"
2503
 
2504
+ #: src/Tribe/Main.php:593
2505
  msgid "today"
2506
+ msgstr "avui"
2507
 
2508
+ #: src/Tribe/View_Helpers.php:131
2509
  msgid "Greece"
2510
+ msgstr "Grècia"
2511
 
2512
+ #: src/Tribe/Main.php:620
2513
  msgid "Initializing Tribe Events on %s"
2514
+ msgstr "Inicialitzant Tribe Events a %s"
2515
 
2516
+ #: src/Tribe/View_Helpers.php:132
2517
  msgid "Greenland"
2518
+ msgstr "Groenlàndia"
2519
 
2520
+ #: src/Tribe/Main.php:697
2521
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
2522
+ msgstr "La teva versió de The Events Calendar no està al dia amb un dels teus complements. Si us plau, %sactualitza-la.%s"
2523
 
2524
+ #: src/Tribe/View_Helpers.php:133
2525
  msgid "Grenada"
2526
+ msgstr "Grenada"
2527
 
2528
+ #: src/Tribe/Main.php:709
2529
  msgid "The following plugins are out of date: <b>%s</b>. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %sLearn More%s."
2530
+ msgstr "Els següents plugins no estan actualitzats: <b>%s</b>. Tots els complements depenen de The Events Calendar i no funcionaran correctament fins que utilitzis la versió correcta. %sMés informació%s."
2531
 
2532
+ #: src/Tribe/View_Helpers.php:134
2533
  msgid "Guadeloupe"
2534
+ msgstr "Guadalupe"
2535
 
2536
+ #: src/Tribe/Main.php:819 src/admin-views/tribe-options-licenses.php:33
2537
  msgid "Licenses"
2538
+ msgstr "Llicències"
2539
 
2540
+ #: src/Tribe/View_Helpers.php:135
2541
  msgid "Guam"
2542
+ msgstr "Guam"
2543
 
2544
+ #: src/Tribe/View_Helpers.php:136
 
 
 
 
2545
  msgid "Guatemala"
2546
+ msgstr "Guatemala"
2547
 
2548
+ #: src/Tribe/Main.php:778
2549
  msgid "Display"
2550
+ msgstr "Visualització"
2551
 
2552
+ #: src/Tribe/View_Helpers.php:137
2553
  msgid "Guinea"
2554
+ msgstr "Guinea"
2555
 
2556
+ #: src/Tribe/Main.php:782 src/Tribe/Main.php:4054 src/Tribe/Main.php:4149
 
2557
  msgid "Help"
2558
+ msgstr "Ajuda"
2559
 
2560
+ #: src/Tribe/View_Helpers.php:138
2561
  msgid "Guinea-Bissau"
2562
+ msgstr "Guinea-Bissau"
2563
 
2564
+ #: src/Tribe/Main.php:920
2565
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
2566
+ msgstr "Ho sentim, The Events Calendar requereix WordPress %s o superior. Si us plau, actualitza la teva instal·lació de WordPress."
2567
 
2568
+ #: src/Tribe/View_Helpers.php:139
2569
  msgid "Guyana"
2570
+ msgstr "Guyana"
2571
 
2572
+ #: src/Tribe/Main.php:923
2573
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
2574
+ msgstr "Ho sentim, The Events Calendar requereix PHP %s o superior. Parla amb el teu proveïdor d'allotjament web per que instal·li una versió de PHP superior."
2575
 
2576
+ #: src/Tribe/View_Helpers.php:140
2577
  msgid "Haiti"
2578
+ msgstr "Haití"
2579
 
2580
+ #: src/Tribe/Main.php:1197 src/Tribe/Main.php:2240
2581
  msgid "category"
2582
+ msgstr "categoria"
2583
 
2584
+ #: src/Tribe/View_Helpers.php:141
2585
  msgid "Heard And Mc Donald Islands"
2586
+ msgstr "Illes Heard i McDonald"
2587
 
2588
+ #: src/Tribe/Main.php:1208 src/Tribe/Main.php:2239
2589
  msgid "tag"
2590
+ msgstr "etiqueta"
2591
 
2592
+ #: src/Tribe/View_Helpers.php:142
2593
  msgid "Holy See (Vatican City State)"
2594
+ msgstr "Santa Seu (Ciutat del Vaticà)"
2595
 
2596
+ #: src/Tribe/Main.php:1243 src/Tribe/Main.php:1261 src/Tribe/Main.php:1279
 
2597
  msgid "Add New"
2598
+ msgstr "Afegir nou"
2599
 
2600
+ #: src/Tribe/View_Helpers.php:143
2601
  msgid "Honduras"
2602
+ msgstr "Hondures"
2603
 
2604
+ #: src/Tribe/Main.php:1244 src/Tribe/Main.php:1262 src/Tribe/Main.php:1280
2605
+ #: src/Tribe/Main.php:1405 src/Tribe/Main.php:1406
 
2606
  msgid "Add New %s"
2607
+ msgstr "Afegir nou %s"
2608
 
2609
+ #: src/Tribe/View_Helpers.php:144
2610
  msgid "Hong Kong"
2611
+ msgstr "Hong Kong"
2612
 
2613
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:112 src/Tribe/Main.php:1245
2614
+ #: src/Tribe/Main.php:1263 src/Tribe/Main.php:1281 src/Tribe/Main.php:1425
2615
+ #: src/Tribe/Main.php:1477 src/Tribe/Main.php:3998
 
2616
  msgid "Edit %s"
2617
+ msgstr "Editar %s"
2618
 
2619
+ #: src/Tribe/View_Helpers.php:145
2620
  msgid "Hungary"
2621
+ msgstr "Hongria"
2622
 
2623
+ #: src/Tribe/Main.php:1246 src/Tribe/Main.php:1264 src/Tribe/Main.php:1282
 
2624
  msgid "New %s"
2625
+ msgstr "Nou %s"
2626
 
2627
+ #: src/Tribe/View_Helpers.php:146
2628
  msgid "Iceland"
2629
+ msgstr "Islàndia"
2630
 
2631
+ #: src/Tribe/Main.php:1247 src/Tribe/Main.php:1265 src/Tribe/Main.php:1283
 
2632
  msgid "View %s"
2633
+ msgstr "Veure %s"
2634
 
2635
+ #: src/Tribe/View_Helpers.php:147
2636
  msgid "India"
2637
+ msgstr "Índia"
2638
 
2639
+ #: src/Tribe/Main.php:1248 src/Tribe/Main.php:1266 src/Tribe/Main.php:1284
 
2640
  msgid "Search %s"
2641
+ msgstr "Buscar %s"
2642
 
2643
+ #: src/Tribe/View_Helpers.php:148
2644
  msgid "Indonesia"
2645
+ msgstr "Indonèsia"
2646
 
2647
+ #: src/Tribe/Main.php:1249 src/Tribe/Main.php:1267 src/Tribe/Main.php:1285
 
2648
  msgid "No %s found"
2649
+ msgstr "No s'han trobat %s"
2650
 
2651
+ #: src/Tribe/View_Helpers.php:149
2652
  msgid "Iran (Islamic Republic Of)"
2653
+ msgstr "Iran (República Islàmica de l')"
2654
 
2655
+ #: src/Tribe/Main.php:1250 src/Tribe/Main.php:1268 src/Tribe/Main.php:1286
 
2656
  msgid "No %s found in Trash"
2657
+ msgstr "No s'han trobat %s a la paperera"
2658
 
2659
+ #: src/Tribe/View_Helpers.php:150
2660
  msgid "Iraq"
2661
  msgstr "Iraq"
2662
 
2663
+ #: src/Tribe/Main.php:1296
2664
  msgid "%s Category"
2665
+ msgstr "Categoria d'%s"
2666
 
2667
+ #: src/Tribe/View_Helpers.php:151
2668
  msgid "Ireland"
2669
  msgstr "Irlanda"
2670
 
2671
+ #: src/Tribe/Main.php:1297
2672
  msgid "Search %s Categories"
2673
+ msgstr "Busca categories d'%s"
2674
 
2675
+ #: src/Tribe/View_Helpers.php:152
2676
  msgid "Israel"
2677
  msgstr "Israel"
2678
 
2679
+ #: src/Tribe/Main.php:1298
2680
  msgid "All %s Categories"
2681
+ msgstr "Totes les categories d'%s"
2682
 
2683
+ #: src/Tribe/View_Helpers.php:153
2684
  msgid "Italy"
2685
  msgstr "Itàlia"
2686
 
2687
+ #: src/Tribe/Main.php:1299
2688
  msgid "Parent %s Category"
2689
+ msgstr "Categoria d'%s superior"
2690
 
2691
+ #: src/Tribe/View_Helpers.php:154
2692
  msgid "Jamaica"
2693
  msgstr "Jamaica"
2694
 
2695
+ #: src/Tribe/Main.php:1300
2696
  msgid "Parent %s Category:"
2697
+ msgstr "Categoria d'%s superior:"
2698
 
2699
+ #: src/Tribe/View_Helpers.php:155
2700
  msgid "Japan"
2701
  msgstr "Japó"
2702
 
2703
+ #: src/Tribe/Main.php:1301
2704
  msgid "Edit %s Category"
2705
+ msgstr "Editar categoria d'%s"
2706
 
2707
+ #: src/Tribe/View_Helpers.php:156
2708
  msgid "Jordan"
2709
  msgstr "Jordània"
2710
 
2711
+ #: src/Tribe/Main.php:1302
2712
  msgid "Update %s Category"
2713
+ msgstr "Actualitzar categoria d'%s"
2714
 
2715
+ #: src/Tribe/View_Helpers.php:157
2716
  msgid "Kazakhstan"
2717
  msgstr "Kazakhstan"
2718
 
2719
+ #: src/Tribe/Main.php:1303
2720
  msgid "Add New %s Category"
2721
+ msgstr "Afegir nova categoria d'%s"
2722
 
2723
+ #: src/Tribe/View_Helpers.php:158
2724
  msgid "Kenya"
2725
  msgstr "Kenya"
2726
 
2727
+ #: src/Tribe/Main.php:1304
2728
  msgid "New %s Category Name"
2729
+ msgstr "Nom de la nova categoria d'%s"
2730
 
2731
+ #: src/Tribe/View_Helpers.php:159
2732
  msgid "Kiribati"
2733
  msgstr "Kiribati"
2734
 
2735
+ #: src/Tribe/Main.php:1320
2736
  msgid "%1$s updated. <a href=\"%2$s\">View %3$s</a>"
2737
+ msgstr "%1$s actualitzat. <a href=\"%2$s\">Veure %3$s</a>"
2738
 
2739
+ #: src/Tribe/View_Helpers.php:160
2740
  msgid "Korea, Democratic People's Republic Of"
2741
+ msgstr "Corea, República Popular Democràtica de"
2742
 
2743
+ #: src/Tribe/Main.php:1321 src/Tribe/Main.php:1357 src/Tribe/Main.php:1376
 
2744
  msgid "Custom field updated."
2745
+ msgstr "Camp personalitzat actualitzat."
2746
 
2747
+ #: src/Tribe/View_Helpers.php:161
2748
  msgid "Korea, Republic Of"
2749
+ msgstr "Corea, República de"
2750
 
2751
+ #: src/Tribe/Main.php:1322 src/Tribe/Main.php:1358 src/Tribe/Main.php:1377
 
2752
  msgid "Custom field deleted."
2753
+ msgstr "Camp personalitzat eliminat."
2754
 
2755
+ #: src/Tribe/View_Helpers.php:162
2756
  msgid "Kuwait"
2757
+ msgstr "Kuwait"
2758
 
2759
+ #: src/Tribe/Main.php:1323 src/Tribe/Main.php:1356 src/Tribe/Main.php:1359
2760
+ #: src/Tribe/Main.php:1375 src/Tribe/Main.php:1378
 
2761
  msgid "%s updated."
2762
+ msgstr "%s actualitzat."
2763
 
2764
+ #: src/Tribe/View_Helpers.php:163
2765
  msgid "Kyrgyzstan"
2766
+ msgstr "Kirguizistan"
2767
 
2768
+ #: src/Tribe/Main.php:1325
2769
  msgid "%1$s restored to revision from %2$s"
2770
+ msgstr "%1$s restaurat amb la revisió de %2$s"
2771
 
2772
+ #: src/Tribe/View_Helpers.php:164
2773
  msgid "Lao People's Democratic Republic"
2774
  msgstr "Laos, República Democràtica Popular de"
2775
 
2776
+ #: src/Tribe/Main.php:1327
2777
  msgid "Event published. <a href=\"%1$s\">View %2$s</a>"
2778
  msgstr "Esdeveniment publicat. <a href=\"%1$s\">Veure %2$s</a>"
2779
 
2780
+ #: src/Tribe/View_Helpers.php:165
2781
  msgid "Latvia"
2782
  msgstr "Letònia"
2783
 
2784
+ #: src/Tribe/Main.php:1331 src/Tribe/Main.php:1363 src/Tribe/Main.php:1382
 
2785
  msgid "%s saved."
2786
  msgstr "%s guardat."
2787
 
2788
+ #: src/Tribe/View_Helpers.php:166
2789
  msgid "Lebanon"
2790
  msgstr "Líban"
2791
 
2792
+ #: src/Tribe/Main.php:1333
2793
  msgid "%1$s submitted. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2794
  msgstr "%1$s enviat. <a target=\"_blank\" href=\"%2$s\">Previsualitzar %3$s</a>"
2795
 
2796
+ #: src/Tribe/View_Helpers.php:167
2797
  msgid "Lesotho"
2798
  msgstr "Lesotho"
2799
 
2800
+ #: src/Tribe/Main.php:1339
2801
  msgid "%1$s scheduled for: <strong>%2$s</strong>. <a target=\"_blank\" href=\"%3$s\">Preview %4$s</a>"
2802
  msgstr "%1$s programat per: <strong>%2$s</strong>. <a target=\"_blank\" href=\"%3$s\">Previsualitzar %4$s</a>"
2803
 
2804
+ #: src/Tribe/View_Helpers.php:168
2805
  msgid "Liberia"
2806
  msgstr "Libèria"
2807
 
2808
+ #: src/Tribe/Main.php:1342 src/Tribe/Main.php:1368 src/Tribe/Main.php:1387
 
2809
  msgid "M j, Y @ G:i"
2810
  msgstr "M j, Y @ G:i"
2811
 
2812
+ #: src/Tribe/View_Helpers.php:169
2813
  msgid "Libya"
2814
  msgstr "Líbia"
2815
 
2816
+ #: src/Tribe/Main.php:1347
2817
  msgid "%1$s draft updated. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2818
  msgstr "%1$s esborrany actualitzat. <a target=\"_blank\" href=\"%2$s\">Previsualitzar %3$s</a>"
2819
 
2820
+ #: src/Tribe/View_Helpers.php:170
2821
  msgid "Liechtenstein"
2822
  msgstr "Liechtenstein"
2823
 
2824
+ #: src/Tribe/Main.php:1361 src/Tribe/Main.php:1380
2825
  msgid "%s restored to revision from %s"
2826
+ msgstr "%s restaurat a la revisió de %s"
2827
 
2828
+ #: src/Tribe/View_Helpers.php:171
2829
  msgid "Lithuania"
2830
  msgstr "Lituània"
2831
 
2832
+ #: src/Tribe/Main.php:1362 src/Tribe/Main.php:1381
2833
  msgid "%s published."
2834
+ msgstr "%s publicat."
2835
 
2836
+ #: src/Tribe/View_Helpers.php:172
2837
  msgid "Luxembourg"
2838
  msgstr "Luxemburg"
2839
 
2840
+ #: src/Tribe/Main.php:1364 src/Tribe/Main.php:1383
2841
  msgid "%s submitted."
2842
+ msgstr "%s enviat."
2843
 
2844
+ #: src/Tribe/View_Helpers.php:173
2845
  msgid "Macau"
2846
  msgstr "Macau"
2847
 
2848
+ #: src/Tribe/Main.php:1366 src/Tribe/Main.php:1385
2849
  msgid "%s scheduled for: <strong>%2$s</strong>."
2850
+ msgstr "%s programat per: <strong>%2$s</strong>."
2851
 
2852
+ #: src/Tribe/View_Helpers.php:174
2853
  msgid "Macedonia"
2854
  msgstr "Macedònia"
2855
 
2856
+ #: src/Tribe/Main.php:1370 src/Tribe/Main.php:1389
2857
  msgid "%s draft updated."
2858
+ msgstr "%s esborrany actualitzat."
2859
 
2860
+ #: src/Tribe/View_Helpers.php:175
2861
  msgid "Madagascar"
2862
  msgstr "Madagascar"
2863
 
2864
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88 src/Tribe/Main.php:1424
2865
+ #: src/Tribe/Main.php:1475
2866
  msgid "Use Saved %s:"
2867
+ msgstr "Utilitza %s guardat:"
2868
 
2869
+ #: src/Tribe/View_Helpers.php:176
2870
  msgid "Malawi"
2871
  msgstr "Malawi"
2872
 
2873
+ #: src/Tribe/Main.php:1452
2874
  msgid "Without a defined location your event will not display a <a href=\"https://support.google.com/webmasters/answer/164506\" target=\"_blank\">Google Rich Snippet</a> on the search results."
2875
+ msgstr "Sense una ubicació definida el teu esdeveniment no mostrarà un <a href=\"https://support.google.com/webmasters/answer/164506\" target=\"_blank\">Google Rich Snippet</a> en els resultats del cercador."
2876
 
2877
+ #: src/Tribe/View_Helpers.php:177
2878
  msgid "Malaysia"
2879
  msgstr "Malàisia"
2880
 
2881
+ #: src/Tribe/Main.php:1543 src/Tribe/Main.php:1625
2882
  msgid "Use New %s"
2883
+ msgstr "Utilitza nou %s"
2884
 
2885
+ #: src/Tribe/View_Helpers.php:178
2886
  msgid "Maldives"
2887
  msgstr "Maldives"
2888
 
2889
+ #: src/Tribe/Main.php:1545 src/Tribe/Main.php:1627
2890
  msgid "My %s"
2891
+ msgstr "El meu %s"
2892
 
2893
+ #: src/Tribe/View_Helpers.php:179
2894
  msgid "Mali"
2895
  msgstr "Mali"
2896
 
2897
+ #: src/Tribe/Main.php:1550 src/Tribe/Main.php:1632
2898
  msgid "Available %s"
2899
+ msgstr "%s disponibles"
2900
 
2901
+ #: src/Tribe/View_Helpers.php:180
2902
  msgid "Malta"
2903
  msgstr "Malta"
2904
 
2905
+ #: src/Tribe/Main.php:1561 src/Tribe/Main.php:1643
2906
  msgid "No saved %s exists."
2907
+ msgstr "No existeix cap %s guardat."
2908
 
2909
+ #: src/Tribe/View_Helpers.php:181
2910
  msgid "Marshall Islands"
2911
  msgstr "Illes Marshall"
2912
 
2913
+ #: src/Tribe/Main.php:1787
2914
  msgid "Next"
2915
  msgstr "Següent"
2916
 
2917
+ #: src/Tribe/View_Helpers.php:182
2918
  msgid "Martinique"
2919
  msgstr "Martinica"
2920
 
2921
+ #: src/Tribe/Main.php:1788
2922
  msgid "Prev"
2923
  msgstr "Anterior"
2924
 
2925
+ #: src/Tribe/View_Helpers.php:183
2926
  msgid "Mauritania"
2927
  msgstr "Mauritània"
2928
 
2929
+ #: src/Tribe/Main.php:1789 src/functions/template-tags/day.php:105
2930
  msgid "Today"
2931
  msgstr "Avui"
2932
 
2933
+ #: src/Tribe/View_Helpers.php:184
2934
  msgid "Mauritius"
2935
  msgstr "Maurici"
2936
 
2937
+ #: src/Tribe/Main.php:1790
2938
  msgid "Done"
2939
  msgstr "Fet"
2940
 
2941
+ #: src/Tribe/View_Helpers.php:185
2942
  msgid "Mayotte"
2943
  msgstr "Mayotte"
2944
 
2945
+ #: src/Tribe/Main.php:1964
2946
  msgid "Network"
2947
  msgstr "Xarxa"
2948
 
2949
+ #: src/Tribe/View_Helpers.php:186
2950
  msgid "Mexico"
2951
  msgstr "Mèxic"
2952
 
2953
+ #: src/Tribe/Main.php:3508 src/Tribe/Main.php:3543
2954
+ #: src/functions/template-tags/day.php:158
2955
+ #: src/functions/template-tags/day.php:180
2956
  msgid "Date out of range."
2957
  msgstr "Data fora de rang."
2958
 
2959
+ #: src/Tribe/View_Helpers.php:187
2960
  msgid "Micronesia, Federated States Of"
2961
  msgstr "Micronèsia, Estats Federats de"
2962
 
2963
+ #: src/Tribe/Main.php:3579
2964
  msgid "%s Options"
2965
+ msgstr "Opcions d'%s"
2966
 
2967
+ #: src/Tribe/View_Helpers.php:188
2968
  msgid "Moldova, Republic Of"
2969
  msgstr "Moldàvia, República de"
2970
 
2971
+ #: src/Tribe/Main.php:3586 src/Tribe/Main.php:3597
2972
  msgid "%s Information"
2973
+ msgstr "Informació de %s"
2974
 
2975
+ #: src/Tribe/View_Helpers.php:189
2976
  msgid "Monaco"
2977
  msgstr "Mònaco"
2978
 
2979
+ #: src/Tribe/Main.php:3810
2980
  msgid "Support"
2981
  msgstr "Suport"
2982
 
2983
+ #: src/Tribe/View_Helpers.php:190
2984
  msgid "Mongolia"
2985
  msgstr "Mongòlia"
2986
 
2987
+ #: src/Tribe/Main.php:3813
2988
  msgid "View All Add-Ons"
2989
  msgstr "Veure tots els complements"
2990
 
2991
+ #: src/Tribe/View_Helpers.php:191
2992
  msgid "Montenegro"
2993
  msgstr "Montenegro"
2994
 
2995
+ #: src/Tribe/Main.php:3834
2996
  msgid "News from Modern Tribe"
2997
  msgstr "Notícies de Modern Tribe"
2998
 
2999
+ #: src/Tribe/View_Helpers.php:192
3000
  msgid "Montserrat"
3001
  msgstr "Montserrat"
3002
 
3003
+ #: src/Tribe/Main.php:3883
3004
  msgid "Additional Functionality"
3005
  msgstr "Funcionalitats addicionals"
3006
 
3007
+ #: src/Tribe/View_Helpers.php:193
3008
  msgid "Morocco"
3009
  msgstr "Marroc"
3010
 
3011
+ #: src/Tribe/Main.php:3888
3012
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
3013
+ msgstr "Busques funcionalitats addicionals com ara esdeveniments recurrents, venda de tiquets, esdeveniments afegits pel públic, vistes addicionals i més?"
3014
 
3015
+ #: src/Tribe/View_Helpers.php:194
3016
  msgid "Mozambique"
3017
+ msgstr "Moçambic"
3018
 
3019
+ #: src/Tribe/Main.php:3889
3020
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
3021
+ msgstr "Fes una ullada als <a href=\"%s\">complements disponibles</a>."
3022
 
3023
+ #: src/Tribe/View_Helpers.php:195
3024
  msgid "Myanmar"
3025
+ msgstr "Myanmar"
3026
 
3027
+ #: src/Tribe/Main.php:3940
3028
  msgid "%s"
3029
+ msgstr "%s"
3030
 
3031
+ #: src/Tribe/View_Helpers.php:196
3032
  msgid "Namibia"
3033
+ msgstr "Namíbia"
3034
 
3035
+ #: src/Tribe/Main.php:3977 src/Tribe/Main.php:4073
3036
  msgid "View Calendar"
3037
+ msgstr "Veure calendari"
3038
 
3039
+ #: src/Tribe/View_Helpers.php:197
3040
  msgid "Nauru"
3041
+ msgstr "Nauru"
3042
 
3043
+ #: src/Tribe/Main.php:3987
3044
  msgid "Add %s"
3045
+ msgstr "Afegir %s"
3046
 
3047
+ #: src/Tribe/View_Helpers.php:198
3048
  msgid "Nepal"
3049
  msgstr "Nepal"
3050
 
3051
+ #: src/Tribe/Main.php:4019
3052
  msgid "CSV"
3053
  msgstr "CSV"
3054
 
3055
+ #: src/Tribe/View_Helpers.php:199
3056
  msgid "Netherlands"
3057
  msgstr "Països Baixos"
3058
 
3059
+ #: src/Tribe/Main.php:4041 src/Tribe/Main.php:4131 src/Tribe/Settings.php:161
 
3060
  msgid "Settings"
3061
  msgstr "Configuració"
3062
 
3063
+ #: src/Tribe/View_Helpers.php:200
3064
  msgid "Netherlands Antilles"
3065
  msgstr "Antilles Holandeses"
3066
 
3067
+ #: src/Tribe/Main.php:4132
3068
  msgid "Calendar"
3069
  msgstr "Calendari"
3070
 
3071
+ #: src/Tribe/View_Helpers.php:201
3072
  msgid "New Caledonia"
3073
  msgstr "Nova Caledònia"
3074
 
3075
+ #: src/Tribe/Main.php:4208
3076
  msgid "List"
3077
  msgstr "Llista"
3078
 
3079
+ #: src/Tribe/View_Helpers.php:202
3080
  msgid "New Zealand"
3081
  msgstr "Nova Zelanda"
3082
 
3083
+ #: src/Tribe/Main.php:4226
3084
  msgid "Month"
3085
  msgstr "Mes"
3086
 
3087
+ #: src/Tribe/View_Helpers.php:203
3088
  msgid "Nicaragua"
3089
  msgstr "Nicaragua"
3090
 
3091
+ #: src/Tribe/Main.php:4243
3092
  msgid "Day"
3093
  msgstr "Dia"
3094
 
3095
+ #: src/Tribe/View_Helpers.php:204
3096
  msgid "Niger"
3097
  msgstr "Níger"
3098
 
3099
+ #: src/Tribe/Main.php:4268 src/Tribe/Main.php:4269
3100
  msgid "Search"
3101
  msgstr "Buscar"
3102
 
3103
+ #: src/Tribe/View_Helpers.php:205
3104
  msgid "Nigeria"
3105
  msgstr "Nigèria"
3106
 
3107
+ #: src/Tribe/Main.php:4293 src/Tribe/Main.php:4309
3108
  msgid "Date"
3109
  msgstr "Data"
3110
 
3111
+ #: src/Tribe/View_Helpers.php:206
3112
  msgid "Niue"
3113
  msgstr "Niue"
3114
 
3115
+ #: src/Tribe/Main.php:4296
3116
  msgid "%s In"
3117
+ msgstr "%s a"
3118
 
3119
+ #: src/Tribe/View_Helpers.php:207
3120
  msgid "Norfolk Island"
3121
  msgstr "Illa Norfolk"
3122
 
3123
+ #: src/Tribe/Main.php:4298
3124
  msgid "%s From"
3125
+ msgstr "%s de"
3126
 
3127
+ #: src/Tribe/View_Helpers.php:208
3128
  msgid "Northern Mariana Islands"
3129
  msgstr "Illes Marianes del Nord"
3130
 
3131
+ #: src/Tribe/Main.php:4300
3132
  msgid "Day Of"
3133
+ msgstr "Dia de"
3134
 
3135
+ #: src/Tribe/View_Helpers.php:209
3136
  msgid "Norway"
3137
  msgstr "Noruega"
3138
 
3139
+ #: src/Tribe/Main.php:4375
3140
  msgid "Once Every 30 Mins"
3141
  msgstr "Un cop cada 30 minuts"
3142
 
3143
+ #: src/Tribe/View_Helpers.php:210
3144
  msgid "Oman"
3145
  msgstr "Oman"
3146
 
3147
+ #: src/Tribe/Options_Exception.php:19 src/Tribe/Post_Exception.php:22
3148
  msgid "Error"
3149
  msgstr "Error"
3150
 
3151
+ #: src/Tribe/View_Helpers.php:211
3152
  msgid "Pakistan"
3153
  msgstr "Pakistan"
3154
 
3155
+ #: src/Tribe/PUE/Checker.php:304
3156
  msgid "License Key"
3157
  msgstr "Clau de llicència"
3158
 
3159
+ #: src/Tribe/View_Helpers.php:212
3160
  msgid "Palau"
3161
  msgstr "Palau"
3162
 
3163
+ #: src/Tribe/PUE/Checker.php:305
3164
  msgid "A valid license key is required for support and updates"
3165
+ msgstr "Una clau de llicència vàlida es obligatòria per a gaudir de suport i actualitzacions"
3166
 
3167
+ #: src/Tribe/View_Helpers.php:213
3168
  msgid "Panama"
3169
  msgstr "Panamà"
3170
 
3171
+ #: src/Tribe/PUE/Checker.php:377
3172
  msgid "License key(s) updated."
3173
+ msgstr "Clau(s) de llicència actualitzada(es)."
3174
 
3175
+ #: src/Tribe/View_Helpers.php:214
3176
  msgid "Papua New Guinea"
3177
  msgstr "Papua Nova Guinea"
3178
 
3179
+ #: src/Tribe/PUE/Checker.php:419
3180
  msgid "Sorry, key validation server is not available."
3181
  msgstr "Ho sentim, el servidor de validació de claus no està disponible."
3182
 
3183
+ #: src/Tribe/View_Helpers.php:215
3184
  msgid "Paraguay"
3185
  msgstr "Paraguai"
3186
 
3187
+ #: src/Tribe/PUE/Checker.php:421
3188
  msgid "Sorry, this key is expired."
3189
  msgstr "Ho sentim, aquesta clau ha caducat."
3190
 
3191
+ #: src/Tribe/View_Helpers.php:216
3192
  msgid "Peru"
3193
  msgstr "Perú"
3194
 
3195
+ #: src/Tribe/PUE/Checker.php:424
3196
  msgid "Sorry, this key is out of installs."
3197
+ msgstr "Ho sentim, aquesta clau ja no és vàlida."
3198
 
3199
+ #: src/Tribe/View_Helpers.php:217
3200
  msgid "Philippines"
3201
  msgstr "Filipines"
3202
 
3203
+ #: src/Tribe/PUE/Checker.php:425
3204
  msgid "Why am I seeing this message?"
3205
+ msgstr "Per què veig aquest missatge?"
3206
 
3207
+ #: src/Tribe/View_Helpers.php:218
3208
  msgid "Pitcairn"
3209
  msgstr "Illes Pitcairn"
3210
 
3211
+ #: src/Tribe/PUE/Checker.php:428
3212
  msgid "Sorry, this key is not valid."
3213
  msgstr "Ho sentim, aquesta clau no és vàlida."
3214
 
3215
+ #: src/Tribe/View_Helpers.php:219
3216
  msgid "Poland"
3217
  msgstr "Polònia"
3218
 
3219
+ #: src/Tribe/PUE/Checker.php:430
3220
  msgid "Valid Key! Expires on %s"
3221
  msgstr "Clau vàlida! Caduca el %s"
3222
 
3223
+ #: src/Tribe/View_Helpers.php:220
3224
  msgid "Portugal"
3225
  msgstr "Portugal"
3226
 
3227
+ #: src/Tribe/PUE/Checker.php:436
3228
  msgid "Hmmm... something's wrong with this validator. Please contact <a href=\"%s\">support.</a>"
3229
+ msgstr "Hmmm... hi ha alguna cosa que no acaba de funcionar amb aquest validador. Si us plau, posa't en contacte amb l'equip de <a href=\"%s\">suport</a>."
3230
 
3231
+ #: src/Tribe/View_Helpers.php:221
3232
  msgid "Puerto Rico"
3233
  msgstr "Puerto Rico"
3234
 
3235
+ #: src/Tribe/Settings.php:160 src/Tribe/Settings.php:176
3236
  msgid "The Events Calendar Settings"
3237
  msgstr "Configuració de The Events Calendar"
3238
 
3239
+ #: src/Tribe/View_Helpers.php:222
3240
  msgid "Qatar"
3241
  msgstr "Qatar"
3242
 
3243
+ #: src/Tribe/Settings.php:176
3244
  msgid "Events Settings"
3245
  msgstr "Configuració dels esdeveniments"
3246
 
3247
+ #: src/Tribe/View_Helpers.php:223
3248
  msgid "Reunion"
3249
  msgstr "Reunió"
3250
 
3251
+ #: src/Tribe/Settings.php:239
3252
  msgid "%s Settings"
3253
+ msgstr "Configuració de %s"
3254
 
3255
+ #: src/Tribe/View_Helpers.php:224
3256
  msgid "Romania"
3257
  msgstr "Romania"
3258
 
3259
+ #: src/Tribe/Settings.php:253
3260
  msgid "You've requested a non-existent tab."
3261
+ msgstr "Has sol·licitat una pestanya inexistent."
3262
 
3263
+ #: src/Tribe/View_Helpers.php:225
3264
  msgid "Russian Federation"
3265
  msgstr "Federació Russa"
3266
 
3267
+ #: src/Tribe/View_Helpers.php:226
 
 
 
 
3268
  msgid "Rwanda"
3269
  msgstr "Rwanda"
3270
 
3271
+ #: src/Tribe/Settings.php:309
3272
  msgid "You don't have permission to do that."
3273
  msgstr "No tens permís per fer això."
3274
 
3275
+ #: src/Tribe/View_Helpers.php:227
3276
  msgid "Saint Kitts And Nevis"
3277
  msgstr "Saint Kitts i Nevis"
3278
 
3279
+ #: src/Tribe/Settings.php:315
3280
  msgid "The request was sent insecurely."
3281
+ msgstr "La sol·licitud s'ha enviat de forma insegura."
3282
 
3283
+ #: src/Tribe/View_Helpers.php:228
3284
  msgid "Saint Lucia"
3285
  msgstr "Saint Lucia"
3286
 
3287
+ #: src/Tribe/Settings.php:321
3288
  msgid "The request wasn't sent from this tab."
3289
+ msgstr "La sol·licitud no s'ha enviat des d'aquesta pestanya."
3290
 
3291
+ #: src/Tribe/View_Helpers.php:229
3292
  msgid "Saint Vincent And The Grenadines"
3293
  msgstr "Saint Vincent i les Grenadines"
3294
 
3295
+ #: src/Tribe/Settings.php:489
3296
  msgid "Your form had the following errors:"
3297
+ msgstr "El formulari té els errors següents:"
3298
 
3299
+ #: src/Tribe/View_Helpers.php:230
3300
  msgid "Samoa"
3301
  msgstr "Samoa"
3302
 
3303
+ #: src/Tribe/Settings.php:498
3304
  msgid "None of your settings were saved. Please try again."
3305
+ msgstr "Cap ajust s'ha guardat. Si us plau, torna-ho a intentar."
3306
 
3307
+ #: src/Tribe/View_Helpers.php:231
3308
  msgid "San Marino"
3309
  msgstr "San Marino"
3310
 
3311
+ #: src/Tribe/Settings.php:498
3312
  msgid "The above setting was not saved. Other settings were successfully saved."
3313
  msgid_plural "The above settings were not saved. Other settings were successfully saved."
3314
+ msgstr[0] "L'ajust anterior no s'ha guardat. Els altres ajustos s'han guardat correctament."
3315
+ msgstr[1] "Els ajustos anteriors no s'han guardat. Els altres ajustos s'han guardat correctament."
3316
 
3317
+ #: src/Tribe/View_Helpers.php:232
3318
  msgid "Sao Tome And Principe"
3319
  msgstr "São Tomé i Príncipe"
3320
 
3321
+ #: src/Tribe/Settings_Tab.php:224
3322
  msgid "There are no fields setup for this tab yet."
3323
+ msgstr "Encara no hi ha cap configuració de camps per aquesta pestanya."
3324
 
3325
+ #: src/Tribe/View_Helpers.php:233
3326
  msgid "Saudi Arabia"
3327
  msgstr "Aràbia Saudita"
3328
 
3329
+ #: src/Tribe/Support.php:46
3330
  msgid "Sometimes it's hard to tell what's going wrong without knowing more about your system steup. For your convenience, we've put together a little report on what's cooking under the hood."
3331
+ msgstr "A vegades és difícil saber el que va malament sense conèixer més detalls sobre el teu sistema. Per a la teva comoditat, hem preparat un petit informe sobre el que es cou entre bastidors."
3332
 
3333
+ #: src/Tribe/View_Helpers.php:234
3334
  msgid "Senegal"
3335
  msgstr "Senegal"
3336
 
3337
+ #: src/Tribe/Support.php:47
3338
  msgid "If you suspect that the problem you're having is related to another plugin, or we're just plain having trouble reproducing your bug report, please copy and send all of this to our support team."
3339
+ msgstr "Si sospites que el problema que estàs tenint està relacionat amb un altre plugin, o simplement estàs tenint problemes per reproduir el teu informe d'errors, si us plau, copia i envia tot això al nostre equip de suport."
3340
 
3341
+ #: src/Tribe/View_Helpers.php:235
3342
  msgid "Serbia"
3343
  msgstr "Sèrbia"
3344
 
3345
+ #: src/Tribe/Support.php:51
3346
  msgid "System Information"
3347
  msgstr "Informació del sistema"
3348
 
3349
+ #: src/Tribe/View_Helpers.php:236
3350
  msgid "Seychelles"
3351
  msgstr "Seychelles"
3352
 
3353
+ #: src/Tribe/Support.php:137
3354
  msgid "Unknown or not set"
3355
+ msgstr "Desconegut o no configurat"
3356
 
3357
+ #: src/Tribe/View_Helpers.php:237
3358
  msgid "Sierra Leone"
3359
  msgstr "Sierra Leone"
3360
 
3361
+ #: src/Tribe/Template/Day.php:99 src/Tribe/Template/Day.php:115
3362
  msgid "All Day"
3363
  msgstr "Tot el dia"
3364
 
3365
+ #: src/Tribe/View_Helpers.php:238
3366
  msgid "Singapore"
3367
  msgstr "Singapur"
3368
 
3369
+ #: src/Tribe/Template/Day.php:102 src/Tribe/Template/Day.php:118
3370
  msgid "Ongoing"
3371
  msgstr "En marxa"
3372
 
3373
+ #: src/Tribe/View_Helpers.php:239
3374
  msgid "Slovakia (Slovak Republic)"
3375
  msgstr "Eslovàquia (República Eslovaca)"
3376
 
3377
+ #: src/Tribe/View_Helpers.php:240
 
 
 
 
3378
  msgid "Slovenia"
3379
  msgstr "Eslovènia"
3380
 
3381
+ #: src/Tribe/View_Helpers.php:241
 
 
 
 
3382
  msgid "Solomon Islands"
3383
  msgstr "Illes Salomó"
3384
 
3385
+ #: src/Tribe/Template/Month.php:284
3386
  msgid "There were no results found for <strong>\"%s\"</strong> this month. Try searching next month."
3387
+ msgstr "No s'ha trobat cap resultat per <strong>\"%s\"</strong> aquest mes. Prova a buscar en el mes següent."
3388
 
3389
+ #: src/Tribe/View_Helpers.php:242
3390
  msgid "Somalia"
3391
  msgstr "Somàlia"
3392
 
3393
+ #: src/Tribe/View_Helpers.php:243
 
 
 
 
3394
  msgid "South Africa"
3395
  msgstr "Sud-àfrica"
3396
 
3397
+ #: src/Tribe/Template/Month.php:289 src/Tribe/Template_Factory.php:366
3398
  msgid "There were no results found."
3399
+ msgstr "No s'ha trobat cap resultat."
3400
 
3401
+ #: src/Tribe/View_Helpers.php:244
3402
  msgid "South Georgia, South Sandwich Islands"
3403
+ msgstr "Illes Geòrgia del Sud i Sandwich del Sud"
3404
 
3405
+ #: src/Tribe/Template/Month.php:692
3406
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
3407
+ msgstr "La data sol·licitada \"%s\" no era vàlida &ndash; es mostra el mes actual en el seu lloc"
3408
 
3409
+ #: src/Tribe/View_Helpers.php:245
3410
  msgid "Spain"
3411
  msgstr "Espanya"
3412
 
3413
+ #: src/Tribe/Template/Single_Event.php:120
3414
  msgid "This %s has passed."
3415
+ msgstr "Aquest %s ja ha passat."
3416
 
3417
+ #: src/Tribe/View_Helpers.php:246
3418
  msgid "Sri Lanka"
3419
  msgstr "Sri Lanka"
3420
 
3421
+ #: src/Tribe/Template_Factory.php:353
3422
  msgid "There were no results found for <strong>\"%s\"</strong>."
3423
+ msgstr "No s'ha trobat cap resultat per <strong>\"%s\"</strong>."
3424
 
3425
+ #: src/Tribe/View_Helpers.php:247
3426
  msgid "St. Helena"
3427
  msgstr "Santa Helena"
3428
 
3429
+ #: src/Tribe/View_Helpers.php:248
 
 
 
 
3430
  msgid "St. Pierre And Miquelon"
3431
  msgstr "Saint-Pierre i Miquelon"
3432
 
3433
+ #: src/Tribe/View_Helpers.php:249
 
 
 
 
3434
  msgid "Sudan"
3435
  msgstr "Sudan"
3436
 
3437
+ #: src/Tribe/View_Helpers.php:250
 
 
 
 
3438
  msgid "Suriname"
3439
  msgstr "Surinam"
3440
 
3441
+ #: src/Tribe/Template_Factory.php:361
3442
  msgid "No previous %s "
3443
+ msgstr "Cap %s anterior"
3444
 
3445
+ #: src/Tribe/View_Helpers.php:251
3446
  msgid "Svalbard And Jan Mayen Islands"
3447
  msgstr "Svalbard i Jan Mayen"
3448
 
3449
+ #: src/Tribe/Templates.php:618
3450
  msgid "Template overrides should be moved to the correct subdirectory: %s"
3451
+ msgstr "Las plantilles sobreescrites han de moure's al subdirectori correcte: %s"
3452
 
3453
+ #: src/Tribe/View_Helpers.php:252
3454
  msgid "Swaziland"
3455
  msgstr "Swazilàndia"
3456
 
3457
+ #: src/Tribe/Templates.php:660
3458
  msgid "Template overrides should be moved to the correct subdirectory: tribe_get_template_part('%s')"
3459
+ msgstr "Les plantilles sobreescrites han de moure's al subdirectori correcte: tribe_get_template_part('%s')"
3460
 
3461
+ #: src/Tribe/View_Helpers.php:253
3462
  msgid "Sweden"
3463
  msgstr "Suècia"
3464
 
3465
+ #: src/Tribe/Tickets/Attendees_Table.php:74
3466
  msgid "Order #"
3467
  msgstr "Comanda #"
3468
 
3469
+ #: src/Tribe/View_Helpers.php:254
3470
  msgid "Switzerland"
3471
  msgstr "Suïssa"
3472
 
3473
+ #: src/Tribe/Tickets/Attendees_Table.php:75
3474
  msgid "Order Status"
3475
  msgstr "Estat de la comanda"
3476
 
3477
+ #: src/Tribe/View_Helpers.php:255
3478
  msgid "Syrian Arab Republic"
3479
  msgstr "Síria"
3480
 
3481
+ #: src/Tribe/Tickets/Attendees_Table.php:76
3482
  msgid "Purchaser name"
3483
  msgstr "Nom del comprador"
3484
 
3485
+ #: src/Tribe/View_Helpers.php:256
3486
  msgid "Taiwan"
3487
  msgstr "Taiwan"
3488
 
3489
+ #: src/Tribe/Tickets/Attendees_Table.php:77
3490
  msgid "Purchaser email"
3491
  msgstr "Correu electrònic del comprador"
3492
 
3493
+ #: src/Tribe/View_Helpers.php:257
3494
  msgid "Tajikistan"
3495
  msgstr "Tajikistan"
3496
 
3497
+ #: src/Tribe/Tickets/Attendees_Table.php:78
3498
  msgid "Ticket type"
3499
+ msgstr "Tipus de tiquet"
3500
 
3501
+ #: src/Tribe/View_Helpers.php:258
3502
  msgid "Tanzania, United Republic Of"
3503
  msgstr "Tanzània, República Unida de"
3504
 
3505
+ #: src/Tribe/Tickets/Attendees_Table.php:79 src/views/tickets/email.php:305
 
3506
  msgid "Ticket #"
3507
+ msgstr "# de tiquet"
3508
 
3509
+ #: src/Tribe/View_Helpers.php:259
3510
  msgid "Thailand"
3511
  msgstr "Tailàndia"
3512
 
3513
+ #: src/Tribe/Tickets/Attendees_Table.php:80 src/views/tickets/email.php:317
 
3514
  msgid "Security Code"
3515
  msgstr "Codi de seguretat"
3516
 
3517
+ #: src/Tribe/View_Helpers.php:260
3518
  msgid "Togo"
3519
  msgstr "Togo"
3520
 
3521
+ #: src/Tribe/Tickets/Attendees_Table.php:81
3522
+ #: src/Tribe/Tickets/Attendees_Table.php:166
3523
+ #: src/Tribe/Tickets/Attendees_Table.php:238
3524
  msgid "Check in"
3525
+ msgstr "Registrar-se"
3526
 
3527
+ #: src/Tribe/View_Helpers.php:261
3528
  msgid "Tokelau"
3529
  msgstr "Tokelau"
3530
 
3531
+ #: src/Tribe/Tickets/Attendees_Table.php:167
3532
+ #: src/Tribe/Tickets/Attendees_Table.php:239
3533
  msgid "Undo Check in"
3534
+ msgstr "Cancel·lar el registre"
3535
 
3536
+ #: src/Tribe/View_Helpers.php:262
3537
  msgid "Tonga"
3538
  msgstr "Tonga"
3539
 
3540
+ #: src/Tribe/Tickets/Attendees_Table.php:211
3541
  msgid "Print"
3542
+ msgstr "Imprimir"
3543
 
3544
+ #: src/Tribe/View_Helpers.php:263
3545
  msgid "Trinidad And Tobago"
3546
  msgstr "Trinitat i Tobago"
3547
 
3548
+ #: src/Tribe/Tickets/Attendees_Table.php:212
3549
  msgid "Email"
3550
  msgstr "Correu electrònic"
3551
 
3552
+ #: src/Tribe/View_Helpers.php:264
3553
  msgid "Tunisia"
3554
  msgstr "Tunísia"
3555
 
3556
+ #: src/Tribe/Tickets/Attendees_Table.php:213 src/Tribe/iCal.php:119
3557
  msgid "Export"
3558
  msgstr "Exportar"
3559
 
3560
+ #: src/Tribe/View_Helpers.php:265
3561
  msgid "Turkey"
3562
  msgstr "Turquia"
3563
 
3564
+ #: src/Tribe/Tickets/Attendees_Table.php:219
3565
  msgid "Filter by purchaser name, ticket #, order # or security code"
3566
+ msgstr "Filtrar per nom del comprador, # de tiquet, # de comanda o codi de seguretat"
3567
 
3568
+ #: src/Tribe/View_Helpers.php:266
3569
  msgid "Turkmenistan"
3570
  msgstr "Turkmenistan"
3571
 
3572
+ #: src/Tribe/Tickets/Attendees_Table.php:240
3573
+ #: src/admin-views/tickets/list.php:22
3574
  msgid "Delete"
3575
  msgstr "Eliminar"
3576
 
3577
+ #: src/Tribe/View_Helpers.php:267
3578
  msgid "Turks And Caicos Islands"
3579
  msgstr "Illes Turks i Caicos"
3580
 
3581
+ #: src/Tribe/Tickets/Metabox.php:26 src/admin-views/admin-update-message.php:52
 
3582
  msgid "Tickets"
3583
+ msgstr "Tiquets"
3584
 
3585
+ #: src/Tribe/View_Helpers.php:268
3586
  msgid "Tuvalu"
3587
  msgstr "Tuvalu"
3588
 
3589
+ #: src/Tribe/Tickets/Metabox.php:71
3590
  msgid "Ticket header image"
3591
+ msgstr "Imatge de capçalera del tiquet"
3592
 
3593
+ #: src/Tribe/View_Helpers.php:269
3594
  msgid "Uganda"
3595
  msgstr "Uganda"
3596
 
3597
+ #: src/Tribe/Tickets/Metabox.php:72
3598
  msgid "Set as ticket header"
3599
+ msgstr "Establir com a capçalera de tiquet"
3600
 
3601
+ #: src/Tribe/View_Helpers.php:270
3602
  msgid "Ukraine"
3603
  msgstr "Ucraïna"
3604
 
3605
+ #: src/Tribe/Tickets/Tickets.php:328
3606
  msgid "Your ticket has been saved."
3607
  msgstr "El teu tiquet ha estat guardat."
3608
 
3609
+ #: src/Tribe/View_Helpers.php:271
3610
  msgid "United Arab Emirates"
3611
+ msgstr "Emirats Àrabs Units"
3612
 
3613
+ #: src/Tribe/Tickets/Tickets.php:409
3614
  msgid "Your ticket has been deleted."
3615
  msgstr "S'ha eliminat el teu tiquet."
3616
 
3617
+ #: src/Tribe/View_Helpers.php:272
3618
  msgid "United Kingdom"
3619
  msgstr "regne Unit"
3620
 
3621
+ #: src/Tribe/Tickets/Tickets_Pro.php:78 src/admin-views/tickets/list.php:41
 
3622
  msgid "See who purchased tickets to this event"
3623
+ msgstr "Veure qui ha comprat tiquets per aquest esdeveniment"
3624
 
3625
+ #: src/Tribe/View_Helpers.php:273
3626
  msgid "United States Minor Outlying Islands"
3627
+ msgstr "Illes Perifèriques Menors dels Estats Units"
3628
 
3629
+ #: src/Tribe/Tickets/Tickets_Pro.php:78
3630
+ #: src/admin-views/tickets/attendees.php:11 src/admin-views/tickets/list.php:41
 
3631
  msgid "Attendees"
3632
  msgstr "Assistents"
3633
 
3634
+ #: src/Tribe/View_Helpers.php:274
3635
  msgid "Uruguay"
3636
  msgstr "Uruguai"
3637
 
3638
+ #: src/Tribe/Tickets/Tickets_Pro.php:113
3639
  msgid "You need to select a user or type a valid email address"
3640
+ msgstr "Has de seleccionar un usuari o introduir una adreça de correu electrònic vàlida"
3641
 
3642
+ #: src/Tribe/View_Helpers.php:275
3643
  msgid "Uzbekistan"
3644
  msgstr "Uzbekistan"
3645
 
3646
+ #: src/Tribe/Tickets/Tickets_Pro.php:114
3647
  msgid "Sending..."
3648
  msgstr "Enviant..."
3649
 
3650
+ #: src/Tribe/View_Helpers.php:276
3651
  msgid "Vanuatu"
3652
  msgstr "Vanuatu"
3653
 
3654
+ #: src/Tribe/Tickets/Tickets_Pro.php:140
3655
  msgid "Columns"
3656
  msgstr "Columnes"
3657
 
3658
+ #: src/Tribe/View_Helpers.php:277
3659
  msgid "Venezuela"
3660
  msgstr "Venezuela"
3661
 
3662
+ #: src/Tribe/Tickets/Tickets_Pro.php:140
3663
  msgid "You can use Screen Options to select which columns you want to see. The selection works in the table below, in the email, for print and for the CSV export."
3664
+ msgstr "A les opcions de pantalla pots seleccionar quines columnes vols veure. Aquestes opcions afecten el llistat de la taula següent, el que s'envia per correu, les impressions i l'exportació CSV."
3665
 
3666
+ #: src/Tribe/View_Helpers.php:278
3667
  msgid "Viet Nam"
3668
  msgstr "Vietnam"
3669
 
3670
+ #: src/Tribe/Tickets/Tickets_Pro.php:230
3671
  msgid "Yes"
3672
  msgstr "Sí"
3673
 
3674
+ #: src/Tribe/View_Helpers.php:279
3675
  msgid "Virgin Islands (British)"
3676
  msgstr "Illes Verges (Britàniques)"
3677
 
3678
+ #: src/Tribe/Tickets/Tickets_Pro.php:262
3679
  msgid "attendees"
3680
  msgstr "assistents"
3681
 
3682
+ #: src/Tribe/View_Helpers.php:280
3683
  msgid "Virgin Islands (U.S.)"
3684
  msgstr "Illes Verges (Nord-americanes) "
3685
 
3686
+ #: src/Tribe/Tickets/Tickets_Pro.php:316
3687
  msgid "Attendee List for: %s"
3688
  msgstr "Llista d'assistents per: %s"
3689
 
3690
+ #: src/Tribe/Validate.php:76 src/Tribe/Validate.php:117
3691
  msgid "Invalid or incomplete field passed"
3692
+ msgstr "El camp indicat és invàlid o incomplet"
3693
 
3694
+ #: src/Tribe/Validate.php:77 src/Tribe/Validate.php:112
3695
+ #: src/Tribe/Validate.php:118
3696
  msgid "Field ID:"
3697
  msgstr "ID del camp:"
3698
 
3699
+ #: src/Tribe/Validate.php:111
3700
  msgid "Non-existant field validation function passed"
3701
+ msgstr "La funció de validació de camp indicada és inexistent"
3702
 
3703
+ #: src/Tribe/Validate.php:112
3704
  msgctxt "non-existant function name passed for field validation"
3705
  msgid "with function name:"
3706
+ msgstr "amb el nom de funció:"
3707
 
3708
+ #: src/Tribe/Validate.php:135 src/Tribe/Validate.php:151
3709
  msgid "%s must contain numbers and letters only"
3710
+ msgstr "%s ha de contenir només números i lletres"
3711
 
3712
+ #: src/Tribe/Validate.php:167
3713
  msgid "%s must contain numbers, letters and dots only"
3714
+ msgstr "%s ha de contenir només números, lletres i punts"
3715
 
3716
+ #: src/Tribe/Validate.php:181
3717
  msgid "%s must be a positive number."
3718
+ msgstr "%s ha de ser un número positiu."
3719
 
3720
+ #: src/Tribe/Validate.php:196
3721
  msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
3722
+ msgstr "%s ha de ser un slug vàlid (números, lletres, guions i guions baixos)."
3723
 
3724
+ #: src/Tribe/Validate.php:211
3725
  msgid "%s must be a valid absolute URL."
3726
+ msgstr "%s ha de ser una URL absoluta vàlida."
3727
 
3728
+ #: src/Tribe/Validate.php:227 src/Tribe/Validate.php:244
3729
+ #: src/Tribe/Validate.php:266
3730
  msgid "%s must have a value that's part of its options."
3731
+ msgstr "%s ha de tenir un valor que sigui part de les seves opcions."
3732
 
3733
+ #: src/Tribe/Validate.php:280
3734
  msgid "Comparison validation failed because no comparison value was provided, for field %s"
3735
+ msgstr "La validació per comparació ha fallat perquè no s'ha indicat el valor a comparar per al camp %s"
3736
 
3737
+ #: src/Tribe/Validate.php:287
3738
  msgid "%s cannot be the same as %s."
3739
+ msgstr "%s no pot ser el mateix que %s."
3740
 
3741
+ #: src/Tribe/Validate.php:289
3742
  msgid "%s cannot be a duplicate"
3743
+ msgstr "%s no pot ser un duplicat"
3744
 
3745
+ #: src/Tribe/Validate.php:305
3746
  msgid "%s must be a number or percentage."
3747
+ msgstr "%s ha de ser un número o un percentatge."
3748
 
3749
+ #: src/Tribe/Validate.php:359
3750
  msgid "%s must be a number between 0 and 21."
3751
+ msgstr "%s ha de ser un número entre 0 i 21."
3752
 
3753
+ #: src/Tribe/Validate.php:375
3754
  msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
3755
+ msgstr "%s ha de consistir només de lletres, números, guions, apòstrofs i espais,"
3756
 
3757
+ #: src/Tribe/Validate.php:391
3758
  msgid "%s must consist of letters, spaces, apostrophes, and dashes."
3759
+ msgstr "%s ha de consistir només de lletres, espais, apòstrofs i guions."
3760
 
3761
+ #: src/Tribe/Validate.php:405
3762
  msgid "%s must consist of 5 numbers."
3763
+ msgstr "%s ha de contenir només 5 números."
3764
 
3765
+ #: src/Tribe/Validate.php:419
3766
  msgid "%s must be a phone number."
3767
+ msgstr "%s ha de ser un número de telèfon."
3768
 
3769
+ #: src/Tribe/Validate.php:435
3770
  msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
3771
+ msgstr "La llista de països ha de contenir només un país per línia de la següent manera: <br>US, Estats Units<br> UK, Regne Unit."
3772
 
3773
+ #: src/Tribe/View_Helpers.php:26 src/Tribe/View_Helpers.php:45
3774
  msgid "Select a Country:"
3775
  msgstr "Selecciona un país:"
lang/tribe-events-calendar-cs_CZ.mo CHANGED
Binary file
lang/tribe-events-calendar-cs_CZ.po CHANGED
@@ -10,3672 +10,3767 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: The Events Calendar\n"
12
 
13
- #: ../src/Tribe/Activation_Page.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "Go to plugins page"
15
  msgstr ""
16
 
17
- #: ../src/Tribe/Activation_Page.php:39
18
  msgid "Return to Plugins page"
19
  msgstr ""
20
 
21
- #: ../src/Tribe/Activation_Page.php:47
22
  msgid "Go to WordPress Updates page"
23
  msgstr ""
24
 
25
- #: ../src/Tribe/Activation_Page.php:47
26
  msgid "Return to WordPress Updates"
27
  msgstr ""
28
 
29
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88
30
  msgid "Create New %s"
31
  msgstr ""
32
 
33
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:149
34
  msgid "Add another organizer"
35
  msgstr ""
36
 
37
- #: ../src/Tribe/Cost_Utils.php:108
38
  msgctxt "Cost range separator"
39
  msgid " - "
40
  msgstr ""
41
 
42
- #: ../src/Tribe/PUE/Checker.php:416
43
  msgid "unknown date"
44
  msgstr ""
45
 
46
- #: ../src/Tribe/Support.php:142
47
  msgid "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
48
  msgstr ""
49
 
50
- #: ../src/admin-views/tribe-options-help.php:94
51
  msgid "If you're looking for help with The Events Calendar, you've come to the right place. We are committed to helping make your calendar be spectacular... and hope the resources provided below will help get you there."
52
  msgstr ""
53
 
54
- #: ../src/admin-views/tribe-options-help.php:142
55
  msgid "Hi! We are Modern Tribe and we are here to help you be awesome. Thanks so much for installing our labor of love!"
56
  msgstr ""
57
 
58
- #: ../src/admin-views/tribe-options-help.php:151
59
  msgid "Support Resources To Help You Be Awesome"
60
  msgstr ""
61
 
62
- #: ../src/admin-views/tribe-options-licenses.php:17
63
  msgid ""
64
  "<strong> Using our plugins in a multisite network? </strong>\n"
65
  "\t\tPlease note that your license key will be applied to the entire network, not just this site."
66
  msgstr ""
67
 
68
- #: ../src/admin-views/tribe-options-licenses.php:20
69
  msgid ""
70
  "Only license fields for <strong>network activated</strong> plugins will be\n"
71
  "\t\tlisted on this screen. "
72
  msgstr ""
73
 
74
- #: ../src/Tribe/View_Helpers.php:334
75
  msgid "Louisiana"
76
  msgstr "Louisiana"
77
 
78
- #: ../src/admin-views/tribe-options-help.php:132
79
- msgid "If you find that you aren't getting the level of service you've come to expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us why. We'll do what we can to make it right."
80
- msgstr "Pokud si myslíte, že se vám od Modern Tribe nedostává očekávané úrovně služeb, pošlete nám email na %s nebo tweet na %s a řekněte proč. Uděláme vše co je v našich silách, abychom to dali do pořádku."
81
-
82
- #: ../src/Tribe/View_Helpers.php:335
83
  msgid "Maine"
84
  msgstr "Maine"
85
 
86
- #: ../src/admin-views/tribe-options-help.php:133
87
  msgid "More..."
88
  msgstr "Více..."
89
 
90
- #: ../src/Tribe/View_Helpers.php:336
91
  msgid "Maryland"
92
  msgstr "Maryland"
93
 
94
- #: ../src/Tribe/View_Helpers.php:337
95
  msgid "Massachusetts"
96
  msgstr "Massachusetts"
97
 
98
- #: ../src/Tribe/View_Helpers.php:338
99
  msgid "Michigan"
100
  msgstr "Michigan"
101
 
102
- #: ../src/admin-views/tribe-options-help.php:154
103
  msgid "Forums: Because Everyone Needs A Buddy"
104
  msgstr "Fórum: Protože každý potřebuje parťáka"
105
 
106
- #: ../src/Tribe/View_Helpers.php:339
107
  msgid "Minnesota"
108
  msgstr "Minnesota"
109
 
110
- #: ../src/admin-views/tribe-options-help.php:157
111
  msgid "Not getting help?"
112
  msgstr "Nedostává se vám pomoci?"
113
 
114
- #: ../src/Tribe/View_Helpers.php:340
115
  msgid "Mississippi"
116
  msgstr "Mississippi"
117
 
118
- #: ../src/admin-views/tribe-options-help.php:174
119
  msgid "Latest Version:"
120
  msgstr "Nejnovější verze:"
121
 
122
- #: ../src/Tribe/View_Helpers.php:341
123
  msgid "Missouri"
124
  msgstr "Missouri"
125
 
126
- #: ../src/admin-views/tribe-options-help.php:176
127
  msgid "Author:"
128
  msgstr "Autor:"
129
 
130
- #: ../src/Tribe/View_Helpers.php:342
131
  msgid "Montana"
132
  msgstr "Montana"
133
 
134
- #: ../src/admin-views/tribe-options-help.php:176
135
  msgid "Modern Tribe Inc"
136
  msgstr "Modern Tribe Inc"
137
 
138
- #: ../src/Tribe/View_Helpers.php:343
139
  msgid "Nebraska"
140
  msgstr "Nebraska"
141
 
142
- #: ../src/admin-views/tribe-options-help.php:179
143
  msgid "Requires:"
144
  msgstr "Vyžaduje:"
145
 
146
- #: ../src/Tribe/View_Helpers.php:344
147
  msgid "Nevada"
148
  msgstr "Nevada"
149
 
150
- #: ../src/admin-views/tribe-options-help.php:179
151
  msgid "WordPress "
152
  msgstr "WordPress"
153
 
154
- #: ../src/Tribe/View_Helpers.php:345
155
  msgid "New Hampshire"
156
  msgstr "New Hampshire"
157
 
158
- #: ../src/admin-views/tribe-options-help.php:181
159
  msgid "Wordpress.org Plugin Page"
160
  msgstr "Oficiální stránka pluginu v adresáři WordPressu"
161
 
162
- #: ../src/Tribe/View_Helpers.php:346
163
  msgid "New Jersey"
164
  msgstr "New Jersey"
165
 
166
- #: ../src/admin-views/tribe-options-help.php:187
167
  msgid "Average Rating"
168
  msgstr "Průměrné hodnocení"
169
 
170
- #: ../src/Tribe/View_Helpers.php:347
171
  msgid "New Mexico"
172
  msgstr "Nové Mexiko"
173
 
174
- #: ../src/admin-views/tribe-options-help.php:193
175
  msgid "Based on %d rating"
176
  msgid_plural "Based on %d ratings"
177
  msgstr[0] "Hodnotil %d uživatel"
178
  msgstr[1] "Hodnotili %d uživatelé"
179
  msgstr[2] "Hodnotilo %d uživatelů"
180
 
181
- #: ../src/Tribe/View_Helpers.php:348
182
  msgid "New York"
183
  msgstr "New York"
184
 
185
- #: ../src/admin-views/tribe-options-help.php:195
186
  msgid "Give us 5 stars!"
187
  msgstr "Dejte nám 5 hvězdiček"
188
 
189
- #: ../src/Tribe/View_Helpers.php:349
190
  msgid "North Carolina"
191
  msgstr "Severní Karolína"
192
 
193
- #: ../src/admin-views/tribe-options-help.php:199
194
  msgid "Premium Add-Ons"
195
  msgstr "Premium doplňky"
196
 
197
- #: ../src/Tribe/View_Helpers.php:350
198
  msgid "North Dakota"
199
  msgstr "Severní Dakota"
200
 
201
- #: ../src/admin-views/tribe-options-help.php:208
202
  msgid "(Coming Soon!)"
203
  msgstr "(Připravujeme)"
204
 
205
- #: ../src/Tribe/View_Helpers.php:351
206
  msgid "Ohio"
207
  msgstr "Ohio"
208
 
209
- #: ../src/admin-views/tribe-options-help.php:218
210
  msgid "News and Tutorials"
211
  msgstr "Aktuality a návody"
212
 
213
- #: ../src/Tribe/View_Helpers.php:352
214
  msgid "Oklahoma"
215
  msgstr "Oklahoma"
216
 
217
- #: ../src/admin-views/tribe-options-network.php:15
218
  msgid "Network Settings"
219
  msgstr "Nastavení v síti webů"
220
 
221
- #: ../src/Tribe/View_Helpers.php:353
222
  msgid "Oregon"
223
  msgstr "Oregon"
224
 
225
- #: ../src/admin-views/tribe-options-network.php:19
226
  msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
227
  msgstr "Zde si můžete změnit veškerá globální nastavení pluginu The Events Calendar pro celou síť webů."
228
 
229
- #: ../src/Tribe/View_Helpers.php:354
230
  msgid "Pennsylvania"
231
  msgstr "Pensylvánie"
232
 
233
- #: ../src/admin-views/tribe-options-network.php:27
234
  msgid "Hide the following settings tabs on every site:"
235
  msgstr "Skrýt následující panely s nastavením na každém webu:"
236
 
237
- #: ../src/Tribe/View_Helpers.php:355
238
  msgid "Rhode Island"
239
  msgstr "Rhode Island"
240
 
241
- #: ../src/admin-views/venue-meta-box.php:34
242
- #: ../src/functions/advanced-functions/meta_registration.php:176
 
243
  msgid "Address:"
244
  msgstr "Adresa:"
245
 
246
- #: ../src/Tribe/View_Helpers.php:356
247
  msgid "South Carolina"
248
  msgstr "Jižní Karolína"
249
 
250
- #: ../src/admin-views/venue-meta-box.php:41
251
  msgid "City:"
252
  msgstr "Město:"
253
 
254
- #: ../src/Tribe/View_Helpers.php:357
255
  msgid "South Dakota"
256
  msgstr "Jižní Dakota"
257
 
258
- #: ../src/admin-views/venue-meta-box.php:48
259
  msgid "Country:"
260
  msgstr "Země:"
261
 
262
- #: ../src/Tribe/View_Helpers.php:358
263
  msgid "Tennessee"
264
  msgstr "Tennessee"
265
 
266
- #: ../src/admin-views/venue-meta-box.php:88
267
  msgid "State or Province:"
268
  msgstr "Kraj:"
269
 
270
- #: ../src/Tribe/View_Helpers.php:359
271
  msgid "Texas"
272
  msgstr "Texas"
273
 
274
- #: ../src/admin-views/venue-meta-box.php:92
275
  msgid "Select a State:"
276
  msgstr "Vyberte stát:"
277
 
278
- #: ../src/Tribe/View_Helpers.php:360
279
  msgid "Utah"
280
  msgstr "Utah"
281
 
282
- #: ../src/admin-views/venue-meta-box.php:105
283
  msgid "Postal Code:"
284
  msgstr "PSČ:"
285
 
286
- #: ../src/Tribe/View_Helpers.php:361
287
  msgid "Vermont"
288
  msgstr "Vermont"
289
 
290
- #: ../src/admin-views/venue-meta-box.php:137
291
- #: ../src/admin-views/venue-meta-box.php:159
292
  msgid "Show Google Map:"
293
  msgstr "Zobrazit Google mapu:"
294
 
295
- #: ../src/Tribe/View_Helpers.php:362
296
  msgid "Virginia"
297
  msgstr "Virginie"
298
 
299
- #: ../src/admin-views/venue-meta-box.php:147
300
- #: ../src/admin-views/venue-meta-box.php:169
301
  msgid "Show Google Maps Link:"
302
  msgstr "Zobrazit odkaz na Mapy Google:"
303
 
304
- #: ../src/Tribe/View_Helpers.php:363
305
  msgid "Washington"
306
  msgstr "Washington"
307
 
308
- #: ../src/admin-views/widget-admin-list.php:13
309
  msgid "Title:"
310
  msgstr "Název:"
311
 
312
- #: ../src/Tribe/View_Helpers.php:364
313
  msgid "West Virginia"
314
  msgstr "Západní Virginie"
315
 
316
- #: ../src/admin-views/widget-admin-list.php:18
317
  msgid "Show:"
318
  msgstr "Zobrazit:"
319
 
320
- #: ../src/Tribe/View_Helpers.php:365
321
  msgid "Wisconsin"
322
  msgstr "Wisconsin"
323
 
324
- #: ../src/admin-views/widget-admin-list.php:28
325
  msgid "Show widget only if there are upcoming events:"
326
  msgstr "Zobrazit widget pouze pokud jsou nadcházející akce:"
327
 
328
- #: ../src/Tribe/View_Helpers.php:366
329
  msgid "Wyoming"
330
  msgstr "Wyoming"
331
 
332
- #: ../src/functions/advanced-functions/meta_registration.php:16
333
- #: ../src/views/modules/meta/details.php:30
334
  msgid "Details"
335
  msgstr "Podrobnosti"
336
 
337
- #: ../src/Tribe/iCal.php:28
338
  msgctxt "feed link"
339
  msgid "&raquo;"
340
  msgstr "&raquo;"
341
 
342
- #: ../src/functions/advanced-functions/meta_registration.php:80
343
  msgid "Event Tags:"
344
  msgstr "Štítky akce:"
345
 
346
- #: ../src/Tribe/iCal.php:29
347
  msgid "%1$s %2$s iCal Feed"
348
  msgstr "%1$s %2$s iCal Feed"
349
 
350
- #: ../src/functions/advanced-functions/meta_registration.php:112
351
  msgid "Origin:"
352
  msgstr "Původ:"
353
 
354
- #: ../src/Tribe/iCal.php:75
355
  msgid "Add to Google Calendar"
356
  msgstr "Přidat do Google kalendáře"
357
 
358
- #: ../src/functions/advanced-functions/meta_registration.php:286
359
  msgid "%s:"
360
  msgstr "%s:"
361
 
362
- #: ../src/Tribe/iCal.php:75
363
  msgid "Google Calendar"
364
  msgstr "Kalendář Google"
365
 
366
- #: ../src/functions/template-tags/date.php:285
367
  msgid "The function needs to be passed an $event or used in the loop."
368
  msgstr ""
369
 
370
- #: ../src/Tribe/iCal.php:76
371
  msgid "Download .ics file"
372
  msgstr "Stáhnout .ics soubor"
373
 
374
- #: ../src/functions/template-tags/day.php:107
375
  msgid "<span>&laquo;</span> Previous Day"
376
  msgstr "<span>&laquo;</span> Předchozí den"
377
 
378
- #: ../src/Tribe/iCal.php:76
379
  msgid "iCal Export"
380
  msgstr "Exportovat do iCal"
381
 
382
- #: ../src/functions/template-tags/day.php:109
383
  msgid "Next Day <span>&raquo;</span>"
384
  msgstr "Následující den <span>&raquo;</span>"
385
 
386
- #: ../src/Tribe/iCal.php:106
387
  msgid "Month's %s"
388
  msgstr "Měsíční %s"
389
 
390
- #: ../src/functions/template-tags/day.php:111
391
  msgid "Yesterday"
392
  msgstr "Včera"
393
 
394
- #: ../src/Tribe/iCal.php:109
395
  msgid "Week's %s"
396
  msgstr "Týdenní %s"
397
 
398
- #: ../src/functions/template-tags/day.php:113
399
  msgid "Tomorrow"
400
  msgstr "Zítra"
401
 
402
- #: ../src/Tribe/iCal.php:112
403
  msgid "Day's %s"
404
  msgstr "Denní %s"
405
 
406
- #: ../src/functions/template-tags/deprecated.php:1283
407
  msgid "Category"
408
  msgstr "Rubrika"
409
 
410
- #: ../src/Tribe/iCal.php:115
411
  msgid "Listed %s"
412
  msgstr "Zobrazeny %s"
413
 
414
- #: ../src/functions/template-tags/general.php:441
415
  msgid "Tags:"
416
  msgstr "Štítky:"
417
 
418
- #: ../src/Tribe/iCal.php:120
419
  msgid "Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps"
420
  msgstr ""
421
 
422
- #: ../src/functions/template-tags/general.php:553
423
  msgid "Loading %s"
424
  msgstr "Načítání %s"
425
 
426
- #: ../src/admin-views/admin-update-message.php:9
427
- #: ../src/admin-views/admin-welcome-message.php:11
428
  msgid "You are running Version %s and deserve a hug :-)"
429
  msgstr "Používáte verzi %s a zasloužíte si obejmout :-)"
430
 
431
- #: ../src/Tribe/Cost_Utils.php:123
432
  msgid "Free"
433
  msgstr "Zdarma"
434
 
435
- #: ../src/admin-views/admin-update-message.php:32
436
  msgid "Keep the Core Plugin <strong>FREE</strong>!"
437
  msgstr "Ponechat Core Plugin <strong>ZDARMA</strong>!"
438
 
439
- #: ../src/functions/template-tags/general.php:1455
440
  msgid "Calendar powered by %sThe Events Calendar%s"
441
  msgstr "Vytvořeno pomocí %sThe Events Calendar%s"
442
 
443
- #: ../src/admin-views/admin-update-message.php:33
444
  msgid "Every time you rate <strong>5 stars</strong>, a fairy is born. Okay maybe not, but more happy users mean more contributions and help on the forums. The community NEEDS your voice."
445
  msgstr ""
446
 
447
- #: ../src/functions/template-tags/loop.php:131
448
  msgid "Upcoming %s"
449
  msgstr "Nadcházející %s"
450
 
451
- #: ../src/admin-views/admin-update-message.php:34
452
- #: ../src/admin-views/admin-welcome-message.php:22
453
  msgid "Rate It"
454
  msgstr "Ohodnotit"
455
 
456
- #: ../src/functions/template-tags/loop.php:145
457
  msgid "%1$s for %2$s - %3$s"
458
  msgstr ""
459
 
460
- #: ../src/admin-views/admin-update-message.php:37
461
  msgid "PSST... Want a Discount?"
462
  msgstr ""
463
 
464
- #: ../src/functions/template-tags/loop.php:147
465
  msgid "Past %s"
466
  msgstr ""
467
 
468
- #: ../src/admin-views/admin-update-message.php:38
469
  msgid "We send out discounts to our core users via our newsletter."
470
  msgstr ""
471
 
472
- #: ../src/functions/template-tags/loop.php:152
473
- #: ../src/functions/template-tags/loop.php:161
474
  msgid "%1$s for %2$s"
475
  msgstr ""
476
 
477
- #: ../src/admin-views/admin-update-message.php:43
478
- #: ../src/admin-views/admin-welcome-message.php:31
479
  msgid "Sign Up"
480
  msgstr "Přihlásit"
481
 
482
- #: ../src/functions/template-tags/options.php:20
483
  msgid "Your current Events URL is %s"
484
  msgstr "Vaše současná URL adresa pro Akce je %s"
485
 
486
- #: ../src/admin-views/admin-update-message.php:49
487
  msgid "Looking for Something Special?"
488
  msgstr "Hledáte něco speciálního?"
489
 
490
- #: ../src/functions/template-tags/options.php:29
491
  msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
492
  msgstr "<strong>Nelze</strong> použít stejný název v URL jako výše uvedený. Ten by měl být v ideálním případě v množném čísle a tento v jednotném.<br />Vaše URL adresa pro jednotlivou Akci vypadá takto: %s"
493
 
494
- #: ../src/admin-views/admin-update-message.php:51
495
  msgid "Pro"
496
  msgstr "Pro"
497
 
498
- #: ../src/io/csv/admin-views/columns.php:22
499
  msgid "Column Mapping: %s"
500
  msgstr "Mapování sloupců: %s"
501
 
502
- #: ../src/admin-views/admin-update-message.php:53
503
  msgid "Community Events"
504
  msgstr ""
505
 
506
- #: ../src/io/csv/admin-views/columns.php:27
507
  msgid "Columns have been mapped based on your last import. Please ensure the selected fields match the columns in your CSV file."
508
  msgstr ""
509
 
510
- #: ../src/admin-views/admin-update-message.php:54
511
  msgid "Filters"
512
  msgstr "Filtry"
513
 
514
- #: ../src/io/csv/admin-views/columns.php:32
515
  msgid "Column Headings"
516
  msgstr "Záhlaví sloupců"
517
 
518
- #: ../src/admin-views/admin-update-message.php:55
519
  msgid "Facebook"
520
  msgstr "Facebook"
521
 
522
- #: ../src/io/csv/admin-views/columns.php:33
523
  msgid "Event Fields"
524
  msgstr "Pole akce"
525
 
526
- #: ../src/admin-views/admin-update-message.php:58
527
- #: ../src/admin-views/admin-welcome-message.php:53
528
  msgid "News For Events Users"
529
  msgstr ""
530
 
531
- #: ../src/io/csv/admin-views/columns.php:44
532
  msgid "Perform Import"
533
  msgstr "Importovat"
534
 
535
- #: ../src/admin-views/admin-welcome-message.php:19
536
  msgid "Keep The Events Calendar Core FREE"
537
  msgstr ""
538
 
539
- #: ../src/io/csv/admin-views/general.php:10
540
  msgid "The Events Calendar: Import"
541
  msgstr "The Events Calendar: Import"
542
 
543
- #: ../src/admin-views/admin-welcome-message.php:20
544
  msgid "5 star ratings help us bring TEC to more users. More happy users mean more support, more features, and more of everything you know and love about The Events Calendar. We couldn't do this without your support."
545
  msgstr ""
546
 
547
- #: ../src/io/csv/admin-views/general.php:12
548
  msgid "Instructions"
549
  msgstr "Instrukce"
550
 
551
- #: ../src/admin-views/admin-welcome-message.php:21
552
  msgid "Rate it five stars today!"
553
  msgstr "Ohodnotit 5 hvězdičkami ještě dnes!"
554
 
555
- #: ../src/io/csv/admin-views/general.php:14
556
  msgid "To import events, first select a %sDefault Import Event Status%s below to assign to your imported events."
557
  msgstr ""
558
 
559
- #: ../src/admin-views/admin-welcome-message.php:25
560
  msgid "Newsletter Signup"
561
  msgstr ""
562
 
563
- #: ../src/io/csv/admin-views/general.php:17
564
  msgid "Once your setting is saved, move to the applicable Import tab to select import specific criteria."
565
  msgstr ""
566
 
567
- #: ../src/admin-views/admin-welcome-message.php:26
568
  msgid "Stay in touch with The Events Calendar Pro. We send out periodic updates, key developer notices, and even the occasional discount."
569
  msgstr ""
570
 
571
- #: ../src/io/csv/admin-views/general.php:24
572
  msgid "Import Settings"
573
  msgstr "Nastavení importu"
574
 
575
- #: ../src/admin-views/admin-welcome-message.php:40
576
- #: ../src/admin-views/tribe-options-help.php:148
577
  msgid "Getting Started"
578
  msgstr "Začínáme"
579
 
580
- #: ../src/io/csv/admin-views/general.php:27
581
  msgid "Default imported event status:"
582
  msgstr ""
583
 
584
- #: ../src/admin-views/admin-welcome-message.php:41
585
  msgid "Check out the New User Primer &amp; Tutorials"
586
  msgstr ""
587
 
588
- #: ../src/io/csv/admin-views/general.php:30
589
  msgid "Published"
590
  msgstr "Publikováno"
591
 
592
- #: ../src/admin-views/admin-welcome-message.php:43
593
  msgid "Looking for More Features?"
594
  msgstr "Hledáte další funkce?"
595
 
596
- #: ../src/io/csv/admin-views/general.php:31
597
  msgid "Pending"
598
  msgstr "Čekající na schválení"
599
 
600
- #: ../src/admin-views/admin-welcome-message.php:44
601
  msgid "Addons for Community, Tickets, Filters, Facebook and more."
602
  msgstr ""
603
 
604
- #: ../src/io/csv/admin-views/general.php:32
605
  msgid "Draft"
606
  msgstr "Koncept"
607
 
608
- #: ../src/admin-views/admin-welcome-message.php:46
609
  msgid "Support Resources"
610
  msgstr ""
611
 
612
- #: ../src/io/csv/admin-views/header.php:17
613
  msgid "Events Import"
614
  msgstr "Importovat Akce"
615
 
616
- #: ../src/admin-views/admin-welcome-message.php:47
617
  msgid "FAQs, Documentation, Tutorials and Forums"
618
  msgstr "FAQs, Dokumentace, Návody a Fóra"
619
 
620
- #: ../src/io/csv/admin-views/import.php:17
621
  msgid "Import Instructions"
622
  msgstr "Instrukce pro importování"
623
 
624
- #: ../src/admin-views/admin-welcome-message.php:50
625
  msgid "Release Notes"
626
  msgstr ""
627
 
628
- #: ../src/io/csv/admin-views/import.php:20
629
  msgid "If your events have Organizers or Venues, please import those first."
630
  msgstr "Pokud vaše akce mají Pořadatele nebo Místa konání, importujte je prosím jako první."
631
 
632
- #: ../src/admin-views/admin-welcome-message.php:51
633
  msgid "Get the Skinny on the Latest Updates"
634
  msgstr ""
635
 
636
- #: ../src/io/csv/admin-views/import.php:21
637
  msgid "To import organizers or venues:"
638
  msgstr "Pro import Pořadatelů a Míst konání:"
639
 
640
- #: ../src/admin-views/admin-welcome-message.php:54
641
  msgid "Product Releases, Tutorials and Community Activity"
642
  msgstr ""
643
 
644
- #: ../src/io/csv/admin-views/import.php:23
645
  msgid "Select the appropriate import type."
646
  msgstr "Vyberte příslušný typ importu."
647
 
648
- #: ../src/admin-views/app-shop.php:4
649
  msgid "Tribe Event Add-Ons"
650
  msgstr "Tribe doplňky pro akce"
651
 
652
- #: ../src/io/csv/admin-views/import.php:24
653
- #: ../src/io/csv/admin-views/import.php:30
654
  msgid "Upload a CSV file with one record on each line. The first line may contain column names (check the box below)."
655
  msgstr "Nahrajte CSV soubor s jedním záznamem na každém řádku. První řádek může obsahovat záhlaví sloupců (zaškrtněte políčko níže)."
656
 
657
- #: ../src/admin-views/app-shop.php:54
658
  msgid "Version"
659
  msgstr "Verze"
660
 
661
- #: ../src/io/csv/admin-views/import.php:25
662
  msgid "One column in your CSV should have the Organizer/Venue name. All other fields are optional."
663
  msgstr "Jeden ze sloupců ve vašem CSV souboru by měl obsahovat jméno Pořadatele/Místa konání. Ostatní pole jsou volitelná."
664
 
665
- #: ../src/admin-views/app-shop.php:57
666
  msgid "Last Update"
667
  msgstr "Poslední aktualizace"
668
 
669
- #: ../src/io/csv/admin-views/import.php:26
670
- #: ../src/io/csv/admin-views/import.php:32
671
  msgid "After you upload your file, you'll have the opportunity to indicate how the columns in your CSV map to fields in The Events Calendar."
672
  msgstr "Po nahrání souboru budete mít možnost namapovat jednotlivé sloupce vašeho CSV na patřičná pole v pluginu The Events Calendar."
673
 
674
- #: ../src/admin-views/event-sidebar-options.php:13
675
  msgid "Hide From %s Listings"
676
  msgstr ""
677
 
678
- #: ../src/io/csv/admin-views/import.php:28
679
  msgid "After importing your Organizers and Venues, import your Events:"
680
  msgstr "Po naimportování vašich Pořadatelů a Míst konání můžete importovat vaše Akce:"
681
 
682
- #: ../src/admin-views/event-sidebar-options.php:15
683
  msgid "Sticky in Month View"
684
  msgstr ""
685
 
686
- #: ../src/io/csv/admin-views/import.php:31
687
  msgid "One column in your CSV should have the Event title. Another should have the Event start date. All other fields are optional."
688
  msgstr "Jeden ze sloupců ve vašem CSV souboru by měl obsahovat jméno akce. Další by měl obsahovat počáteční datum akce. Ostatní pole jsou volitelná."
689
 
690
- #: ../src/admin-views/event-sidebar-options.php:16
691
  msgid "When events are sticky in month view, they'll display first in the list of events shown within a given day block."
692
  msgstr ""
693
 
694
- #: ../src/io/csv/admin-views/import.php:36
695
  msgid "Questions? <a href=\"%s\">Watch the video</a>."
696
  msgstr "Máte dotazy? <a href=\"%s\">Podívejte se na video</a>."
697
 
698
- #: ../src/admin-views/events-meta-box.php:37
699
  msgid "Time &amp; Date"
700
  msgstr "Čas &amp; Datum"
701
 
702
- #: ../src/io/csv/admin-views/import.php:43
703
  msgid "Import Type:"
704
  msgstr "Typ importu:"
705
 
706
- #: ../src/admin-views/events-meta-box.php:44
707
  msgid "You have changed the recurrence rules of this %1$s. Saving the %1$s will update all future %2$s. If you did not mean to change all %2$s, then please refresh the page."
708
  msgstr ""
709
 
710
- #: ../src/io/csv/admin-views/import.php:55
711
  msgid "CSV File:"
712
  msgstr "CSV soubor:"
713
 
714
- #: ../src/admin-views/events-meta-box.php:47
715
  msgid "All Day %s:"
716
  msgstr "Celý den %s:"
717
 
718
- #: ../src/io/csv/admin-views/import.php:59
719
  msgid "Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file is UTF-8 encoded? Make sure to specify the character encoding when you save the file, or pass it through a <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>conversion tool</a>."
720
  msgstr "Nahrajte správně formátovaný CSV soubor v kódování UTF-8. Nejste si jisti, zda je váš soubor v kódování UTF-8? Ujistěte se, že jste při ukládání souboru zadali správné kódování znaků, nebo jej převeďte prostřednictvím <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>konverzního nástroje</a>."
721
 
722
- #: ../src/admin-views/events-meta-box.php:53
723
  msgid "Start Date &amp; Time:"
724
  msgstr "Datum a čas zahájení:"
725
 
726
- #: ../src/io/csv/admin-views/import.php:67
727
  msgid "This file has column names in the first row"
728
  msgstr "Soubor má v prvním řádku záhlaví sloupců"
729
 
730
- #: ../src/admin-views/events-meta-box.php:57
731
- #: ../src/admin-views/events-meta-box.php:78
732
  msgid "YYYY-MM-DD"
733
  msgstr "RRRR-MM-DD"
734
 
735
- #: ../src/io/csv/admin-views/import.php:78
736
  msgid "Import CSV File"
737
  msgstr "Importovat CSV soubor"
738
 
739
- #: ../src/admin-views/events-meta-box.php:75
740
  msgid "End Date &amp; Time:"
741
  msgstr "Datum a čas ukončení:"
742
 
743
- #: ../src/io/csv/admin-views/result.php:15
744
  msgid "Import Result"
745
  msgstr "Výsledek importu"
746
 
747
- #: ../src/admin-views/events-meta-box.php:103
748
  msgid "Location"
749
  msgstr "Místo"
750
 
751
- #: ../src/io/csv/admin-views/result.php:17
752
  msgid "Import complete!"
753
  msgstr "Importování bylo dokončeno!"
754
 
755
- #: ../src/admin-views/events-meta-box.php:124
756
  msgid "%s Website"
757
  msgstr "%s Www"
758
 
759
- #: ../src/io/csv/admin-views/result.php:19
760
  msgid "Inserted: %d"
761
  msgstr "Vloženo: %d"
762
 
763
- #: ../src/admin-views/events-meta-box.php:127
764
  msgid "URL:"
765
  msgstr "URL adresa:"
766
 
767
- #: ../src/io/csv/admin-views/result.php:20
768
  msgid "Updated: %d"
769
  msgstr "Aktualizováno: %d"
770
 
771
- #: ../src/admin-views/events-meta-box.php:141
772
  msgid "%s Cost"
773
  msgstr "%s Cena"
774
 
775
- #: ../src/io/csv/admin-views/result.php:21
776
  msgid "Skipped: %d"
777
  msgstr "Vynecháno: %d"
778
 
779
- #: ../src/admin-views/events-meta-box.php:144
780
  msgid "Currency Symbol:"
781
  msgstr "Symbol měny:"
782
 
783
- #: ../src/io/csv/admin-views/result.php:25
784
  msgid "The import statistics above have the following meaning:"
785
  msgstr "Výše uvedená statistika importu má následující význam:"
786
 
787
- #: ../src/admin-views/events-meta-box.php:159
788
  msgctxt "Currency symbol position"
789
  msgid "Before cost"
790
  msgstr "Před cenou"
791
 
792
- #: ../src/io/csv/admin-views/result.php:26
793
  msgid "<ol><li><strong>Inserted:</strong> A new item was inserted successfully.</li><li><strong>Updated:</strong> An item was found with the same name and/or start date. The existing item was updated with the new value from the file.</li><li><strong>Skipped:</strong> A row was found in the CSV file that could not be imported. Please see below for the invalid rows.</li></ol>"
794
  msgstr "<ol><li><strong>Vloženo:</strong> Nový záznam byl úspěšně vložen.</li><li><strong>Aktualizováno:</strong> Byl nalezen záznam se stejným jménem a/nebo počátečním datem. Existující záznam byl aktualizován s novou hodnotou ze souboru.</li><li><strong>Vynecháno:</strong> V souboru CSV byl nalezen řádek, který nemohl být importován. Údaje o neplatných řádcích naleznete níže.</li></ol>"
795
 
796
- #: ../src/admin-views/events-meta-box.php:162
797
  msgctxt "Currency symbol position"
798
  msgid "After cost"
799
  msgstr "Za cenou"
800
 
801
- #: ../src/io/csv/admin-views/result.php:29
802
  msgid "Skipped row numbers: %s"
803
  msgstr "Čísla vynechaných řádků: %s"
804
 
805
- #: ../src/admin-views/events-meta-box.php:167
806
- #: ../src/functions/advanced-functions/meta_registration.php:48
807
- #: ../src/views/modules/meta/details.php:100
808
  msgid "Cost:"
809
  msgstr "Cena:"
810
 
811
- #: ../src/admin-views/events-meta-box.php:175
812
  msgid "Enter a 0 for %s that are free or leave blank to hide the field."
813
  msgstr ""
814
 
815
- #: ../src/admin-views/new-organizer-meta-section.php:15
816
- #: ../src/admin-views/organizer-meta-box.php:15
817
- #: ../src/admin-views/venue-meta-box.php:25
818
  msgid "%s Name:"
819
  msgstr "%s Jméno:"
820
 
821
- #: ../src/views/day/nav.php:16
822
  msgid "Day Navigation"
823
  msgstr "Navigece ve dnech"
824
 
825
- #: ../src/admin-views/new-organizer-meta-section.php:21
826
- #: ../src/admin-views/organizer-meta-box.php:22
827
- #: ../src/admin-views/tickets/attendees.php:52
828
- #: ../src/admin-views/venue-meta-box.php:112
829
- #: ../src/functions/advanced-functions/meta_registration.php:159
830
- #: ../src/functions/advanced-functions/meta_registration.php:238
831
- #: ../src/views/modules/meta/organizer.php:41
832
- #: ../src/views/modules/meta/venue.php:40
833
  msgid "Phone:"
834
  msgstr "Telefon:"
835
 
836
- #: ../src/views/day/single-event.php:66 ../src/views/list/single-event.php:70
837
  msgid "Find out more"
838
  msgstr "Více informací"
839
 
840
- #: ../src/admin-views/new-organizer-meta-section.php:27
841
- #: ../src/admin-views/organizer-meta-box.php:28
842
- #: ../src/admin-views/tickets/attendees.php:61
843
- #: ../src/admin-views/venue-meta-box.php:119
844
- #: ../src/functions/advanced-functions/meta_registration.php:96
845
- #: ../src/functions/advanced-functions/meta_registration.php:191
846
- #: ../src/functions/advanced-functions/meta_registration.php:270
847
- #: ../src/views/modules/meta/details.php:125
848
- #: ../src/views/modules/meta/organizer.php:63
849
- #: ../src/views/modules/meta/venue.php:45
850
  msgid "Website:"
851
  msgstr "Webová stránka:"
852
 
853
- #: ../src/views/list/nav.php:19
854
  msgid "%s List Navigation"
855
  msgstr "%s Seznam - navigace"
856
 
857
- #: ../src/admin-views/new-organizer-meta-section.php:33
858
- #: ../src/admin-views/organizer-meta-box.php:34
859
- #: ../src/functions/advanced-functions/meta_registration.php:254
860
- #: ../src/views/modules/meta/organizer.php:52
861
  msgid "Email:"
862
  msgstr "Email:"
863
 
864
- #: ../src/views/list/nav.php:25
865
  msgid "<span>&laquo;</span> Previous %s"
866
  msgstr "<span>&laquo;</span> Předchozí %s"
867
 
868
- #: ../src/admin-views/new-organizer-meta-section.php:34
869
- #: ../src/admin-views/organizer-meta-box.php:35
870
  msgid "You may want to consider <a href=\"http://wordpress.org/plugins/tags/obfuscate\">obfuscating</a> any e-mail address published on your site to best avoid it getting harvested by spammers."
871
  msgstr "Aby váš web nebyl zdrojem pro spammery, je vhodné <a href=\"http://wordpress.org/plugins/tags/obfuscate\">maskovat</a> všechny emailové adresy zveřejněné na vašich stránkách."
872
 
873
- #: ../src/views/list/nav.php:32
874
  msgid "Next %s <span>&raquo;</span>"
875
  msgstr "Další %s <span>&raquo;</span>"
876
 
877
- #: ../src/admin-views/new-organizer-meta-section.php:60
878
- #: ../src/admin-views/organizer-meta-box.php:57
879
- #: ../src/admin-views/venue-meta-box.php:193
880
  msgid "%s Name Already Exists"
881
  msgstr "%s Jméno již existuje"
882
 
883
- #: ../src/views/modules/bar.php:30 ../src/views/modules/bar.php:61
884
  msgid "Find %s"
885
  msgstr "Najít %s"
886
 
887
- #: ../src/admin-views/tickets/attendees.php:17
888
  msgid "Event Summary"
889
  msgstr "Přehled akce"
890
 
891
- #: ../src/views/modules/bar.php:37
892
  msgid "Event Views Navigation"
893
  msgstr "Navigace pro zobrazení akce"
894
 
895
- #: ../src/admin-views/tickets/attendees.php:23
896
  msgid "Event Details"
897
  msgstr "Údaje o akci"
898
 
899
- #: ../src/views/modules/bar.php:38
900
  msgid "View As"
901
  msgstr "Zobrazit jako"
902
 
903
- #: ../src/admin-views/tickets/attendees.php:25
904
  msgid "Start Date / Time:"
905
  msgstr "Datum / čas zahájení:"
906
 
907
- #: ../src/views/modules/meta/details.php:119
908
  msgid "%s Tags:"
909
  msgstr "%s Štítky:"
910
 
911
- #: ../src/admin-views/tickets/attendees.php:29
912
  msgid "End Date / Time:"
913
  msgstr "Datum / čas ukončení:"
914
 
915
- #: ../src/functions/template-tags/general.php:1279
916
  msgid "%s for"
917
  msgstr "%s pro"
918
 
919
- #: ../src/admin-views/tickets/attendees.php:69
920
  msgid "Ticket Sales"
921
  msgstr "Prodeje vstupenek"
922
 
923
- #: ../src/functions/template-tags/general.php:1278
924
  msgid "Find out more »"
925
  msgstr "Zobrazit více »"
926
 
927
- #: ../src/admin-views/tickets/attendees.php:86
928
  msgid "(%d awaiting review)"
929
  msgid_plural "(%d awaiting review)"
930
  msgstr[0] "(%d čekající hodnocení)"
931
  msgstr[1] "(%d čekající hodnocení)"
932
  msgstr[2] "(%d čekajících hodnocení)"
933
 
934
- #: ../src/views/month/nav.php:18
935
  msgid "Calendar Month Navigation"
936
  msgstr "Navigace pro měsíce v kalendáři"
937
 
938
- #: ../src/admin-views/tickets/attendees.php:90
939
- msgid "Sold %d %s"
940
- msgstr "Prodáno %d %s"
941
-
942
- #: ../src/views/month/single-day.php:43
943
  msgid "View 1 %1$s"
944
  msgid_plural "View All %2$s %3$s"
945
  msgstr[0] "Zobrazit 1 %1$s"
946
  msgstr[1] "Zobrazit všechny %2$s %3$s"
947
  msgstr[2] "Zobrazit všechny %2$s %3$s"
948
 
949
- #: ../src/admin-views/tickets/attendees.php:93
950
- msgid "Sold %d of %d %s"
951
- msgstr "prodáno %d z %d %s"
952
-
953
- #: ../src/views/single-event.php:27
954
  msgid "&laquo; All %s"
955
  msgstr "&laquo; Vše %s"
956
 
957
- #: ../src/admin-views/tickets/attendees.php:111
958
  msgid "Tickets sold:"
959
  msgstr "Prodáno vstupenek:"
960
 
961
- #: ../src/views/single-event.php:46 ../src/views/single-event.php:91
962
  msgid "%s Navigation"
963
  msgstr "%s Navigace"
964
 
965
- #: ../src/admin-views/tickets/attendees.php:118
966
  msgid "Finalized:"
967
  msgstr ""
968
 
969
- #: ../src/views/tickets/attendees-email.php:24
970
  msgid "Attendee List"
971
  msgstr "Seznam účastníků"
972
 
973
- #: ../src/admin-views/tickets/attendees.php:121
974
  msgid "Awaiting review:"
975
  msgstr "Čekající na schválení:"
976
 
977
- #: ../src/views/tickets/email.php:26
978
  msgid "Your tickets"
979
  msgstr "Vaše vstupenky"
980
 
981
- #: ../src/admin-views/tickets/attendees.php:128
982
  msgid "Checked in:"
983
  msgstr "Zaškrtnutých:"
984
 
985
- #: ../src/views/tickets/email.php:309
986
  msgid "Ticket Type"
987
  msgstr "Typ vstupenky"
988
 
989
- #: ../src/admin-views/tickets/attendees.php:146
990
  msgid "Send the attendee list by email"
991
  msgstr "Poslat seznam účastníků emailem"
992
 
993
- #: ../src/views/tickets/email.php:313
994
  msgid "Purchaser"
995
  msgstr "Kupující"
996
 
997
- #: ../src/admin-views/tickets/attendees.php:150
998
  msgid "Select a User:"
999
  msgstr "Vybrat uživatele:"
1000
 
1001
- #: ../src/views/widgets/list-widget.php:65
1002
  msgid "View All %s"
1003
  msgstr "Zobrazit všechny %s"
1004
 
1005
- #: ../src/admin-views/tickets/attendees.php:155
1006
  msgid "Select..."
1007
  msgstr "Vybrat"
1008
 
1009
- #: ../src/views/widgets/list-widget.php:71
1010
  msgid "There are no upcoming %s at this time."
1011
  msgstr ""
1012
 
1013
- #: ../src/admin-views/tickets/attendees.php:160
1014
  msgid "or"
1015
  msgstr "nebo"
1016
 
1017
- #: ../src/admin-views/tickets/attendees.php:162
1018
  msgid "Email Address:"
1019
  msgstr "Emailová adresa:"
1020
 
1021
- #: ../src/admin-views/tickets/list.php:21
1022
  msgid "Edit"
1023
  msgstr "Upravit"
1024
 
1025
- #: ../src/admin-views/tickets/list.php:24
1026
  msgid "Edit in %s"
1027
  msgstr "Upravit v %s"
1028
 
1029
- #: ../src/admin-views/tickets/list.php:27
1030
  msgid "View"
1031
  msgstr "Zobrazit"
1032
 
1033
- #: ../src/admin-views/tickets/list.php:67
1034
  msgid "Sold %d"
1035
  msgstr "Prodáno %d"
1036
 
1037
- #: ../src/admin-views/tickets/list.php:69
1038
- msgid "Sold %d of %d"
1039
- msgstr "Prodáno %d z celkem %d"
1040
-
1041
- #: ../src/admin-views/tickets/meta-box.php:23
1042
  msgid "This event was created using Community Events. Are you sure you want to sell tickets for it?"
1043
  msgstr "Tato akce byla vytvořena pomocí Komunitních akcí. Opravdu si přejete prodávat vstupenky na tuto akci?"
1044
 
1045
- #: ../src/admin-views/tickets/meta-box.php:34
1046
  msgid "Upload image for the ticket header"
1047
  msgstr "Nahrát obrázek pro záhlaví vstupenky"
1048
 
1049
- #: ../src/admin-views/tickets/meta-box.php:35
1050
  msgid "The maximum image size in the email will be 580px wide by any height, and then scaled for mobile. If you would like \"retina\" support use an image sized to 1160px wide."
1051
  msgstr "Maximální velikost obrázku v emailu bude 580 pixelů na šířku s volnou výškou a pro mobilní zařízení bude obrázek následně zmenšen. Pokud chcete mít podporu pro \"Retina\" displej, použijte obrázek široký 1160 pixelů."
1052
 
1053
- #: ../src/admin-views/tickets/meta-box.php:38
1054
  msgid "Select an Image"
1055
  msgstr "Zvolit obrázek"
1056
 
1057
- #: ../src/admin-views/tickets/meta-box.php:46
1058
  msgid "Remove"
1059
  msgstr "Odstranit"
1060
 
1061
- #: ../src/admin-views/tickets/meta-box.php:64
1062
- #: ../src/admin-views/tickets/meta-box.php:74
1063
  msgid "Add new ticket"
1064
  msgstr "Přidat novou vstupenku"
1065
 
1066
- #: ../src/admin-views/tickets/meta-box.php:75
1067
  msgid "Edit ticket"
1068
  msgstr "Upravit vstupenku"
1069
 
1070
- #: ../src/admin-views/tickets/meta-box.php:80
1071
  msgid "Sell using:"
1072
  msgstr "Prodej pomocí:"
1073
 
1074
- #: ../src/admin-views/tickets/meta-box.php:97
1075
  msgid "Ticket Name:"
1076
  msgstr "Název vstupenky:"
1077
 
1078
- #: ../src/admin-views/tickets/meta-box.php:104
1079
  msgid "Ticket Description:"
1080
  msgstr "Popis vstupenky:"
1081
 
1082
- #: ../src/admin-views/tickets/meta-box.php:113
1083
  msgid "Price:"
1084
  msgstr "Cena:"
1085
 
1086
- #: ../src/admin-views/tickets/meta-box.php:119
1087
  msgid "(0 or empty for free tickets)"
1088
  msgstr "(pro vstupné zdarma ponechte prázdné nebo zadejte 0)"
1089
 
1090
- #: ../src/admin-views/tickets/meta-box.php:125
1091
  msgid "Sale Price:"
1092
  msgstr "Akční cena:"
1093
 
1094
- #: ../src/admin-views/tickets/meta-box.php:131
1095
  msgid "(Current sale price - this can be managed via the product editor)"
1096
  msgstr "(Aktuální cena - může být upravena přes editor produktů)"
1097
 
1098
- #: ../src/admin-views/tickets/meta-box.php:137
1099
  msgid "Start sale:"
1100
  msgstr "Začátek prodeje:"
1101
 
1102
- #: ../src/admin-views/tickets/meta-box.php:161
1103
  msgid "End sale:"
1104
  msgstr "Konec prodeje:"
1105
 
1106
- #: ../src/admin-views/tickets/meta-box.php:183
1107
  msgid "When will ticket sales occur? If you don't set a start/end date for sales, tickets will be available from now until the event ends."
1108
  msgstr "Kdy nastane prodej vstupenek? Pokud nenastavíte začátek a konec prodeje, budou vstupenky k dispozici od této chvíle až do ukončení akce."
1109
 
1110
- #: ../src/admin-views/tickets/meta-box.php:195
1111
  msgid "Save this ticket"
1112
  msgstr "Uložit vstupenku"
1113
 
1114
- #: ../src/admin-views/tribe-options-display.php:4
1115
  msgid "Default Events Template"
1116
  msgstr "Výchozí šablona akcí"
1117
 
1118
- #: ../src/admin-views/tribe-options-display.php:5
1119
  msgid "Default Page Template"
1120
  msgstr "Výchozí šablona stránky"
1121
 
1122
- #: ../src/admin-views/tribe-options-display.php:32
1123
  msgid "Display Settings"
1124
  msgstr "Nastavení zobrazení"
1125
 
1126
- #: ../src/admin-views/tribe-options-display.php:37
1127
  msgid "The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme.</p><p>There are going to be situations where no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications."
1128
  msgstr ""
1129
 
1130
- #: ../src/admin-views/tribe-options-display.php:51
1131
  msgid "Basic Template Settings"
1132
  msgstr "Základní nastavení šablony"
1133
 
1134
- #: ../src/admin-views/tribe-options-display.php:55
1135
  msgid "Default stylesheet used for events templates"
1136
  msgstr "Výchozí CSS styl použitý pro šablony akcí"
1137
 
1138
- #: ../src/admin-views/tribe-options-display.php:58
1139
  msgid "Skeleton Styles"
1140
  msgstr "Základní styly"
1141
 
1142
- #: ../src/admin-views/tribe-options-display.php:60
1143
  msgid "Only includes enough css to achieve complex layouts like calendar and week view."
1144
  msgstr "Zahrnují pouze CSS pro dosažení složitějších rozvržení prvků jako je kalendář a týdenní přehled."
1145
 
1146
- #: ../src/admin-views/tribe-options-display.php:62
1147
  msgid "Full Styles"
1148
  msgstr "Úplné styly"
1149
 
1150
- #: ../src/admin-views/tribe-options-display.php:64
1151
  msgid "More detailed styling, tries to grab styles from your theme."
1152
  msgstr "Detailnější stylování, pokusí se převzít styly z vaší šablony."
1153
 
1154
- #: ../src/admin-views/tribe-options-display.php:66
1155
  msgid "Tribe Events Styles"
1156
  msgstr "Tribe Events styly"
1157
 
1158
- #: ../src/admin-views/tribe-options-display.php:68
1159
  msgid "A fully designed and styled theme for your events pages."
1160
  msgstr "Plně navržená a nastylovaná šablona pro stránky vašich akcí."
1161
 
1162
- #: ../src/admin-views/tribe-options-display.php:75
1163
  msgid "Events template"
1164
  msgstr "Šablona akcí"
1165
 
1166
- #: ../src/admin-views/tribe-options-display.php:76
1167
  msgid "Choose a page template to control the appearance of your calendar and event content."
1168
  msgstr "Vyberte šablonu stránky, která ovlivní vzhled vašeho kalendáře a obsahu akce."
1169
 
1170
- #: ../src/admin-views/tribe-options-display.php:84
1171
  msgid "Enable event views"
1172
  msgstr "Povolit zobrazení akcí"
1173
 
1174
- #: ../src/admin-views/tribe-options-display.php:85
1175
  msgid "You must select at least one view."
1176
  msgstr "Musíte vybrat alespoň jedno zobrazení."
1177
 
1178
- #: ../src/admin-views/tribe-options-display.php:92
1179
  msgid "Default view"
1180
  msgstr "Výchozí zobrazení"
1181
 
1182
- #: ../src/admin-views/tribe-options-display.php:100
1183
  msgid "Disable the Event Search Bar"
1184
  msgstr "Vypnout vyhledávací lištu akcí"
1185
 
1186
- #: ../src/admin-views/tribe-options-display.php:101
1187
  msgid "Check this to use the classic header."
1188
  msgstr "Zaškrtněte tuto volbu pokud chcete použít klasickou hlavičku."
1189
 
1190
- #: ../src/admin-views/tribe-options-display.php:107
1191
  msgid "Month view events per day"
1192
  msgstr "Počet akcí na den v měsíčním přehledu"
1193
 
1194
- #: ../src/admin-views/tribe-options-display.php:108
1195
  msgid "Change the default 3 events per day in month view. Please note there may be performance issues if you set this too high. <a href=\"%s\">Read more</a>."
1196
  msgstr ""
1197
 
1198
- #: ../src/admin-views/tribe-options-display.php:115
1199
  msgid "Enable the Month View Cache"
1200
  msgstr "Povolit cache Měsíčního přehledu"
1201
 
1202
- #: ../src/admin-views/tribe-options-display.php:116
1203
  msgid "Check this to cache your month view HTML in transients, which can help improve calendar speed on sites with many events. <a href=\"%s\">Read more</a>."
1204
  msgstr ""
1205
 
1206
- #: ../src/admin-views/tribe-options-display.php:122
1207
  msgid "Date Format Settings"
1208
  msgstr "Nastavení formátu data"
1209
 
1210
- #: ../src/admin-views/tribe-options-display.php:126
1211
  msgid "<p>The following three fields accept the date format options available to the php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Learn how to make your own date format here</a>.</p>"
1212
  msgstr ""
1213
 
1214
- #: ../src/admin-views/tribe-options-display.php:130
1215
  msgid "Date with year"
1216
  msgstr "Datum se zobrazením roku"
1217
 
1218
- #: ../src/admin-views/tribe-options-display.php:131
1219
  msgid "Enter the format to use for displaying dates with the year. Used when showing an event from a past or future year, also used for dates in view headers."
1220
  msgstr "Zadejte formát k použití pro zobrazení dat s rokem. Používá se při zobrazení události z minulosti nebo pro budoucí rok, bude také použitý pro data zobrazená v záhlaví."
1221
 
1222
- #: ../src/admin-views/tribe-options-display.php:138
1223
  msgid "Date without year"
1224
  msgstr "Datum bez zobrazení roku"
1225
 
1226
- #: ../src/admin-views/tribe-options-display.php:139
1227
  msgid "Enter the format to use for displaying dates without a year. Used when showing an event from the current year."
1228
  msgstr ""
1229
 
1230
- #: ../src/admin-views/tribe-options-display.php:146
1231
  msgid "Month and year format"
1232
  msgstr "Formát měsíce a roku"
1233
 
1234
- #: ../src/admin-views/tribe-options-display.php:147
1235
  msgid "Enter the format to use for dates that show a month and year only. Used on month view."
1236
  msgstr ""
1237
 
1238
- #: ../src/admin-views/tribe-options-display.php:154
1239
  msgid "Date time separator"
1240
  msgstr "Oddělovač času"
1241
 
1242
- #: ../src/admin-views/tribe-options-display.php:155
1243
  msgid "Enter the separator that will be placed between the date and time, when both are shown."
1244
  msgstr ""
1245
 
1246
- #: ../src/admin-views/tribe-options-display.php:162
1247
  msgid "Time range separator"
1248
  msgstr "Oddělovač času"
1249
 
1250
- #: ../src/admin-views/tribe-options-display.php:163
1251
  msgid "Enter the separator that will be used between the start and end time of an event."
1252
  msgstr ""
1253
 
1254
- #: ../src/admin-views/tribe-options-display.php:170
1255
  msgid "Datepicker Date Format"
1256
  msgstr ""
1257
 
1258
- #: ../src/admin-views/tribe-options-display.php:171
1259
  msgid "Select the date format to use in datepickers"
1260
  msgstr ""
1261
 
1262
- #: ../src/admin-views/tribe-options-display.php:188
1263
  msgid "Advanced Template Settings"
1264
  msgstr "Rozšířená nastavení šablony"
1265
 
1266
- #: ../src/admin-views/tribe-options-display.php:192
1267
  msgid "Add HTML before event content"
1268
  msgstr "Přidat HTML kód před obsah akce"
1269
 
1270
- #: ../src/admin-views/tribe-options-display.php:193
1271
  msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
1272
  msgstr "Pokud se vyznáte v HTML, můžete zde přidat dodatečný kód před šablonu akce. Některé šablony mohou toto vyžadovat jako pomoc při stylování nebo rozložení prvků."
1273
 
1274
- #: ../src/admin-views/tribe-options-display.php:198
1275
  msgid "Add HTML after event content"
1276
  msgstr "Přidat HTML kód za obsah akce"
1277
 
1278
- #: ../src/admin-views/tribe-options-display.php:199
1279
  msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
1280
  msgstr "Pokud se vyznáte v HTML, můžete zde přidat dodatečný kód za šablonu akce. Některé šablony mohou toto vyžadovat jako pomoc při stylování nebo rozložení prvků."
1281
 
1282
- #: ../src/admin-views/tribe-options-general.php:12
1283
  msgid "Finding & extending your calendar."
1284
  msgstr "Nalezení a přidání dalších funkcí do vašeho kalendáře."
1285
 
1286
- #: ../src/admin-views/tribe-options-general.php:17
1287
  msgid "Finding your calendar."
1288
  msgstr "Nalezení vašeho kalendáře."
1289
 
1290
- #: ../src/admin-views/tribe-options-general.php:22
1291
  msgid "Where's my calendar?"
1292
  msgstr "Kde najdu svůj kalendář?"
1293
 
1294
- #: ../src/admin-views/tribe-options-general.php:22
1295
  msgid "Right here"
1296
  msgstr "Přímo zde"
1297
 
1298
- #: ../src/admin-views/tribe-options-general.php:26
1299
  msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
1300
  msgstr "Hledáte další funkce, včetně opakujících se akcí, vlastní meta data, komunitní akce, prodej vstupenek a další?"
1301
 
1302
- #: ../src/admin-views/tribe-options-general.php:26
1303
  msgid "Check out the available add-ons"
1304
  msgstr "Prohlédněte si dostupné doplňky"
1305
 
1306
- #: ../src/admin-views/tribe-options-general.php:31
1307
  msgid "We hope our plugin is helping you out."
1308
  msgstr "Doufáme, že je náš plugin pro vás užitečný."
1309
 
1310
- #: ../src/admin-views/tribe-options-general.php:35
1311
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
1312
  msgstr "Říkáte si: \"Wow, to je ale úžasný plugin! Měl bych poděkovat Modern Tribe za jejich těžkou práci.\" Největším poděkováním, které bychom si mohli přát je uznání. Stačí přidat malý textový odkaz v dolní části vašeho kalendáře odkazující na projekt The Events Calendar."
1313
 
1314
- #: ../src/admin-views/tribe-options-general.php:35
1315
- #: ../src/admin-views/tribe-options-general.php:40
1316
  msgid "See an example of the link"
1317
  msgstr "Prohlédněte si příklad odkazu"
1318
 
1319
- #: ../src/admin-views/tribe-options-general.php:40
1320
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project."
1321
  msgstr "Říkáte si: \"Wow, to je ale úžasný plugin! Měl bych poděkovat Modern Tribe za jejich těžkou práci.\" Největším poděkováním, které bychom si mohli přát je uznání. Stačí přidat malý textový odkaz v dolní části vašeho kalendáře odkazující na projekt The Events Calendar."
1322
 
1323
- #: ../src/admin-views/tribe-options-general.php:45
1324
  msgid "Show The Events Calendar link"
1325
  msgstr "Zobrazit odkaz na stránky pluginu The Events Calendar"
1326
 
1327
- #: ../src/admin-views/tribe-options-general.php:59
1328
  msgid "General Settings"
1329
  msgstr "Obecné nastavení"
1330
 
1331
- #: ../src/admin-views/tribe-options-general.php:63
1332
  msgid "Number of events to show per page"
1333
  msgstr "Počet zobrazených akcí na stránku"
1334
 
1335
- #: ../src/admin-views/tribe-options-general.php:70
1336
  msgid "Use Javascript to control date filtering"
1337
  msgstr "Použít Javascript pro filtrování podle data"
1338
 
1339
- #: ../src/admin-views/tribe-options-general.php:71
1340
  msgid "This option is disabled when \"Disable the Event Search Bar\" is checked on the Display settings tab."
1341
  msgstr "Tato volba není aktivní pokud je na panelu Zobrazování zaškrtnuta volba \"Vypnout vyhledávací lištu akcí\"."
1342
 
1343
- #: ../src/admin-views/tribe-options-general.php:71
1344
  msgid "Enable live ajax for datepicker on front end (User submit not required)."
1345
  msgstr "Povolit živý ajax pro datepicker na front endu (uživatel nemusí potvrzovat výběr tlačítkem)."
1346
 
1347
- #: ../src/admin-views/tribe-options-general.php:79
1348
  msgid "Show comments"
1349
  msgstr "Zobrazit komentáře"
1350
 
1351
- #: ../src/admin-views/tribe-options-general.php:80
1352
  msgid "Enable comments on event pages."
1353
  msgstr "Povolit komentáře na stránkách akce."
1354
 
1355
- #: ../src/admin-views/tribe-options-general.php:86
1356
  msgid "Include events in main blog loop"
1357
  msgstr "Zahrnout akce do hlavního výpisu příspěvků"
1358
 
1359
- #: ../src/admin-views/tribe-options-general.php:87
1360
  msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
1361
  msgstr "Zobrazit akce spolu s ostatními příspěvky na webu. Pokud je tato volba zaškrtnuta, akce se budou také nadále zobrazovat na výchozí stránce akcí."
1362
 
1363
- #: ../src/admin-views/tribe-options-general.php:93
1364
- #: ../src/admin-views/tribe-options-general.php:99
1365
  msgid "Events URL slug"
1366
  msgstr "Název v URL u akcí"
1367
 
1368
- #: ../src/admin-views/tribe-options-general.php:94
1369
- msgid "You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=\"%s\">%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php\">enable pretty permalinks</a>."
1370
- msgstr "Název v URL pro stránku akcí nelze změnit, protože nemáte zapnuté používání trvalých odkazů. Vaše současná URL adresa pro stránku akcí je <a href=\"%s\">%s</a>. Chcete-li upravit název v URL, musíte nejdříve <a href=\"%soptions-permalink.php\">zapnout trvalé odkazy</a>."
1371
-
1372
- #: ../src/admin-views/tribe-options-general.php:106
1373
- #: ../src/functions/template-tags/options.php:20
1374
  msgid "The slug used for building the events URL."
1375
  msgstr "Název v URL použitý při tvorbě URL adres Akcí."
1376
 
1377
- #: ../src/admin-views/tribe-options-general.php:106
1378
  msgid "Your current events URL is: %s"
1379
  msgstr "Vaše současná URL adresa pro Akce je: %s"
1380
 
1381
- #: ../src/admin-views/tribe-options-general.php:111
1382
- #: ../src/functions/template-tags/options.php:39
1383
  msgid "Here is the iCal feed URL for your events:"
1384
  msgstr "Zde je URL adresa iCal zdroje vašich akcí:"
1385
 
1386
- #: ../src/admin-views/tribe-options-general.php:116
1387
  msgid "Single event URL slug"
1388
  msgstr "Název v URL u jednotlivé akce"
1389
 
1390
- #: ../src/admin-views/tribe-options-general.php:123
1391
  msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
1392
  msgstr "Výše uvedený by měl být v ideálním případě v množném čísle a tento v jednotném.<br />Vaše URL adresa pro jednotlivou Akci je: %s"
1393
 
1394
- #: ../src/admin-views/tribe-options-general.php:128
1395
  msgid "End of day cutoff"
1396
  msgstr "Mezní hranice pro konec dne"
1397
 
1398
- #: ../src/admin-views/tribe-options-general.php:149
1399
  msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
1400
  msgstr "Máte akci, která trvá i po půlnoci? Zde si můžete nastavit čas kdy akce daného dne končí a tím zabráníte aby se tato akce zobrazila v kalendáři následujícího dne."
1401
 
1402
- #: ../src/admin-views/tribe-options-general.php:154
1403
  msgid "Default currency symbol"
1404
  msgstr "Výchozí symbol měny"
1405
 
1406
- #: ../src/admin-views/tribe-options-general.php:155
1407
  msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
1408
  msgstr "Zadejte výchozí symbol měny pro vstupné na akci. Berte na vědomí, že tato volba a její případná změna se projeví pouze u nových akcí, ale nikoliv zpětně."
1409
 
1410
- #: ../src/admin-views/tribe-options-general.php:162
1411
  msgid "Currency symbol follows value"
1412
  msgstr "Symbol měny uvádět za hodnotou"
1413
 
1414
- #: ../src/admin-views/tribe-options-general.php:163
1415
  msgid "The currency symbol normally precedes the value. Enabling this option positions the symbol after the value."
1416
  msgstr "Symbol měny se obvykle uvádí před hodnotou. Zaškrtnutím této volby se symbol vloží za hodnotu."
1417
 
1418
- #: ../src/admin-views/tribe-options-general.php:169
1419
  msgid "Map Settings"
1420
  msgstr "Nastavení map"
1421
 
1422
- #: ../src/admin-views/tribe-options-general.php:173
1423
  msgid "Enable Google Maps"
1424
  msgstr "Povolit Mapy Google"
1425
 
1426
- #: ../src/admin-views/tribe-options-general.php:174
1427
  msgid "Check to enable maps for events and venues."
1428
  msgstr "Zaškrtnutím této volby povolíte mapy pro akce a místa konání."
1429
 
1430
- #: ../src/admin-views/tribe-options-general.php:181
1431
  msgid "Google Maps default zoom level"
1432
  msgstr "Výchozí měřítko Map Google"
1433
 
1434
- #: ../src/admin-views/tribe-options-general.php:182
1435
  msgid "0 = zoomed out; 21 = zoomed in."
1436
  msgstr "0 = oddálený; 21 = přiblížený."
1437
 
1438
- #: ../src/admin-views/tribe-options-general.php:190
1439
  msgid "Miscellaneous Settings"
1440
  msgstr "Další nastavení"
1441
 
1442
- #: ../src/admin-views/tribe-options-general.php:194
1443
  msgid "Duplicate Venues &amp; Organizers"
1444
  msgstr "Duplicitní Místa konání a Pořadatelé"
1445
 
1446
- #: ../src/admin-views/tribe-options-general.php:194
1447
  msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
1448
  msgstr "Při aktualizaci pluginu The Events Calendar z verze starší než 3.0 se může stát, že objevíte duplicitní zaznamy u pořadatelů a míst konání. Kliknutím na toto tlačítko dojde k automatickému sloučení identických míst konání a pořadatelů."
1449
 
1450
- #: ../src/admin-views/tribe-options-general.php:211
1451
  msgid "Debug mode"
1452
  msgstr "Debug režim"
1453
 
1454
- #: ../src/admin-views/tribe-options-general.php:217
1455
  msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
1456
  msgstr "Zaškrtnutím této volby se budou zapisovat debug informace. Standardně se budou zapisovat do chybového logu PHP na vašem serveru. Pokud si přejete, aby se zprávy protokolu zobrazovaly ve vašem prohlížeči, pak doporučujeme nainstalovat %s a podívat se do záložky \"Tribe\" v debug výstupu."
1457
 
1458
- #: ../src/admin-views/tribe-options-general.php:217
1459
  msgid "Debug Bar Plugin"
1460
  msgstr "Debug Bar Plugin"
1461
 
1462
- #: ../src/admin-views/tribe-options-general.php:199
1463
  msgid "View Welcome Page"
1464
  msgstr "Zobrazit uvítací stránku"
1465
 
1466
- #: ../src/admin-views/tribe-options-general.php:199
1467
  msgid "View the page that displayed when you initially installed the plugin."
1468
  msgstr ""
1469
 
1470
- #: ../src/admin-views/tribe-options-general.php:204
1471
  msgid "View Update Page"
1472
  msgstr "Zobrazit stránku s aktualizacemi"
1473
 
1474
- #: ../src/admin-views/tribe-options-general.php:204
1475
  msgid "View the page that displayed when you updated the plugin."
1476
  msgstr ""
1477
 
1478
- #: ../src/admin-views/tribe-options-help.php:28
1479
  msgctxt "not available"
1480
  msgid "n/a"
1481
  msgstr "není k dispozici"
1482
 
1483
- #: ../src/admin-views/tribe-options-help.php:29
1484
  msgid "You need to upgrade!"
1485
  msgstr "Je třeba provést aktualizaci!"
1486
 
1487
- #: ../src/admin-views/tribe-options-help.php:29
1488
  msgid "You are up to date!"
1489
  msgstr "Používáte nejnovější verzi!"
1490
 
1491
- #: ../src/admin-views/tribe-options-help.php:52
1492
  msgid "The Events Calendar PRO"
1493
  msgstr "The Events Calendar Pro"
1494
 
1495
- #: ../src/admin-views/tribe-options-help.php:56
1496
  msgid "The Events Calendar: Eventbrite Tickets"
1497
  msgstr "The Events Calendar: Eventbrite Tickets"
1498
 
1499
- #: ../src/admin-views/tribe-options-help.php:60
1500
  msgid "The Events Calendar: Community Events"
1501
  msgstr "The Events Calendar: Community Events"
1502
 
1503
- #: ../src/Tribe/View_Helpers.php:281
1504
  msgid "Wallis And Futuna Islands"
1505
  msgstr "Wallis a Futuna"
1506
 
1507
- #: ../src/admin-views/tribe-options-help.php:64
1508
  msgid "The Events Calendar: Facebook Events"
1509
  msgstr "The Events Calendar: Facebook Events"
1510
 
1511
- #: ../src/Tribe/View_Helpers.php:282
1512
  msgid "Western Sahara"
1513
  msgstr "Západní Sahara"
1514
 
1515
- #: ../src/admin-views/tribe-options-help.php:68
1516
  msgid "The Events Calendar: WooCommerce Tickets"
1517
  msgstr "The Events Calendar: WooCommerce Tickets"
1518
 
1519
- #: ../src/Tribe/View_Helpers.php:283
1520
  msgid "Yemen"
1521
  msgstr "Jemen"
1522
 
1523
- #: ../src/admin-views/tribe-options-help.php:73
1524
  msgid "The Events Calendar: EDD Tickets"
1525
  msgstr "The Events Calendar: EDD Tickets"
1526
 
1527
- #: ../src/Tribe/View_Helpers.php:284
1528
  msgid "Zambia"
1529
  msgstr "Zambie"
1530
 
1531
- #: ../src/admin-views/tribe-options-help.php:78
1532
  msgid "The Events Calendar: WPEC Tickets"
1533
  msgstr "The Events Calendar: WPEC Tickets"
1534
 
1535
- #: ../src/Tribe/View_Helpers.php:285
1536
  msgid "Zimbabwe"
1537
  msgstr "Zimbabwe"
1538
 
1539
- #: ../src/admin-views/tribe-options-help.php:83
1540
  msgid "The Events Calendar: Shopp Tickets"
1541
  msgstr "The Events Calendar: Shopp Tickets"
1542
 
1543
- #: ../src/Tribe/View_Helpers.php:316
1544
  msgid "Alabama"
1545
  msgstr "Alabama"
1546
 
1547
- #: ../src/admin-views/tribe-options-help.php:88
1548
  msgid "The Events Calendar: Filter Bar"
1549
  msgstr "The Events Calendar: Filter Bar"
1550
 
1551
- #: ../src/Tribe/View_Helpers.php:317
1552
  msgid "Alaska"
1553
  msgstr "Aljaška"
1554
 
1555
- #: ../src/Tribe/View_Helpers.php:318
1556
  msgid "Arizona"
1557
  msgstr "Arizona"
1558
 
1559
- #: ../src/admin-views/tribe-options-help.php:97
1560
  msgid "If this is your first time using The Events Calendar, you're in for a treat and are already well on your way to creating a first event. Here are some basics we've found helpful for users jumping into it for the first time:"
1561
  msgstr "Pokud teprve začínáte s pluginem The Events Calendar, čeká vás příjemné překvapení a jste již na cestě k vytvoření vaší první akce. Zde je několik základních informací, které mohou být užitečné pro začátečníky:"
1562
 
1563
- #: ../src/Tribe/View_Helpers.php:319
1564
  msgid "Arkansas"
1565
  msgstr "Arkansas"
1566
 
1567
- #: ../src/admin-views/tribe-options-help.php:100
1568
  msgid "%sOur New User Primer%s was designed for folks in your exact position. Featuring both step-by-step videos and written walkthroughs that feature accompanying screenshots, the primer aims to take you from zero to hero in no time."
1569
  msgstr "%sNaše příručka nového uživatele%s byla vytvořena přávě pro vás. Pomocí video průvodců a popisných návodů se screenshoty přestanete být pouhým začátečníkem ve velmi krátkém čase."
1570
 
1571
- #: ../src/Tribe/View_Helpers.php:320
1572
  msgid "California"
1573
  msgstr "Kalifornie"
1574
 
1575
- #: ../src/admin-views/tribe-options-help.php:102
1576
  msgid "%sInstallation/Setup FAQs%s from our support page can help give an overview of what the plugin can and cannot do. This section of the FAQs may be helpful as it aims to address any basic install questions not addressed by the new user primer."
1577
  msgstr "%sFAQ k instalaci a nastavení%s na naší stránce podpory vám poskytne přehled o tom, co plugin může a nemůže dělat. Tato sekce často kladených otázek ohledně základní instalace je užitečná zejména v případech, které nejsou řešeny v příručce nového uživatele."
1578
 
1579
- #: ../src/Tribe/View_Helpers.php:321
1580
  msgid "Colorado"
1581
  msgstr "Colorado"
1582
 
1583
- #: ../src/admin-views/tribe-options-help.php:104
1584
  msgid "Otherwise, if you're feeling adventurous, you can get started by heading to the Events menu and adding your first event."
1585
  msgstr "Pokud jste ale dobrodružné povahy, můžete rovnou přejít do nabídky Akce a vytvořit vaši první akci."
1586
 
1587
- #: ../src/Tribe/View_Helpers.php:322
1588
  msgid "Connecticut"
1589
  msgstr "Connecticut"
1590
 
1591
- #: ../src/admin-views/tribe-options-help.php:108
1592
  msgid "We've redone our support page from the ground up in an effort to better help our users. Head over to our %sSupport Page%s and you'll find lots of great resources, including:"
1593
  msgstr "Abychom mohli lépe pomoci našim uživatelům, naši stránku podpory jsme předělali úplně od základů. Vydejte se tedy na naši %sstránku podpory%s, kde najdete spoustu skvělých informačních zdrojů, včetně:"
1594
 
1595
- #: ../src/Tribe/View_Helpers.php:323
1596
  msgid "Delaware"
1597
  msgstr "Delaware"
1598
 
1599
- #: ../src/admin-views/tribe-options-help.php:110
1600
  msgid "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar &amp; Events Calendar PRO"
1601
  msgstr "%sŠablonové tagy, funkce, háky a filtry%s implementované v pluginu The Events Calendar a Events Calendar PRO"
1602
 
1603
- #: ../src/Tribe/View_Helpers.php:324
1604
  msgid "District of Columbia"
1605
  msgstr "District of Columbia"
1606
 
1607
- #: ../src/admin-views/tribe-options-help.php:112
1608
  msgid "%sFrequently Asked Questions%s ranging from the most basic setup questions to advanced themer tweaks"
1609
  msgstr "%sČasto kladené otázky%s pokrývající dotazy na základní nastavení až po pokročilé vychytávky v šablonách"
1610
 
1611
- #: ../src/Tribe/View_Helpers.php:325
1612
  msgid "Florida"
1613
  msgstr "Florida"
1614
 
1615
- #: ../src/admin-views/tribe-options-help.php:115
1616
  msgid "%sTutorials%s written by both members of our team and users from the community, covering custom queries, integration with third-party themes and plugins, etc."
1617
  msgstr "%sNávody%s jak od členů našeho týmu tak i od uživatelů z komunity vysvětlují tematiku vlastních dotazů či integraci s pluginy a šablonami třetích stran, apod."
1618
 
1619
- #: ../src/Tribe/View_Helpers.php:327
1620
  msgid "Hawaii"
1621
  msgstr "Havaj"
1622
 
1623
- #: ../src/admin-views/tribe-options-help.php:117
1624
  msgid "Release notes for painting an overall picture of the plugin's lifecycle and when features/bug fixes were introduced."
1625
  msgstr "Poznámky k verzi pro nastíněníí celkového obrazu o životním cyklu pluginu a kdy byly zavedeny funkce či opraveny chyby."
1626
 
1627
- #: ../src/Tribe/View_Helpers.php:328
1628
  msgid "Idaho"
1629
  msgstr "Idaho"
1630
 
1631
- #: ../src/admin-views/tribe-options-help.php:119
1632
  msgid "%sAdd-on documentation%s for all of Modern Tribe's official extensions for The Events Calendar (including WooTickets, Community Events, Eventbrite Tickets, Facebook Events, etc)"
1633
  msgstr "%sDokumentace k doplňkům%s pro všechny oficiální doplňky od Modern Tribe pro plugin The Events Calendar (včetně WooTickets, Community Events, Eventbrite Tickets, Facebook Events, atd.)"
1634
 
1635
- #: ../src/Tribe/View_Helpers.php:329
1636
  msgid "Illinois"
1637
  msgstr "Illinois"
1638
 
1639
- #: ../src/admin-views/tribe-options-help.php:121
1640
  msgid "We've also got a %sModern Tribe UserVoice%s page where we're actively watching for feature ideas from the community. If after playing with the plugin and reviewing the resources above, you're finding a feature isn't present that should be, let us know. Vote up existing feature requests or add your own, and help us shape the future of the products business in a way that best meets the community's needs."
1641
  msgstr "Máme také stránku %sModern Tribe UserVoice%s, kde aktivně sledujeme nápady z komunity na nové funkce. Pokud po vyzkoušení pluginu a prozkoumání výše uvedených zdrojů vás napadne funkce, kterou plugin nemá a měl by mít, dejte nám vědět. Hlasujte pro stávající požadavky na nové funkce nebo přidejte své vlastní a pomozte nám tak utvářet budoucnost produktu způsobem, který nejlépe vyhovuje potřebám komunity."
1642
 
1643
- #: ../src/Tribe/View_Helpers.php:330
1644
  msgid "Indiana"
1645
  msgstr "Indiana"
1646
 
1647
- #: ../src/admin-views/tribe-options-help.php:125
1648
  msgid "Written documentation can only take things so far...sometimes, you need help from a real person. This is where our %ssupport forums%s come into play."
1649
  msgstr "Písemná dokumentace má přeci jenom své limity a někdy zkrátka potřebujete pomoc od skutečné osoby. A právě zde vstupují do hry naše %sfóra podpory%s."
1650
 
1651
- #: ../src/Tribe/View_Helpers.php:331
1652
  msgid "Iowa"
1653
  msgstr "Iowa"
1654
 
1655
- #: ../src/admin-views/tribe-options-help.php:126
1656
  msgid "Users of the free The Events Calendar should post their support concerns to the plugin's %sWordPress.org support forum%s. While we are happy to help identify and fix bugs that are reported at WordPress.org, please make sure to read our %ssupport expectations sticky thread%s before posting so you understand our limitations."
1657
  msgstr "Uživatelé bezplatné verze pluginu The Events Calendar by měli posílat své dotazy na %sfórum podpory na WordPress.org%s. Přestože rádi pomůžeme identifikovat a opravit chyby, které jsou hlášeny na webu WordPress.org, před posláním příspěvku si prosím přečtěte naše %szvýrazněné vlákno očekávané podpory%s, abyste lépe pochopili naše omezení."
1658
 
1659
- #: ../src/Tribe/View_Helpers.php:332
1660
  msgid "Kansas"
1661
  msgstr "Kansas"
1662
 
1663
- #: ../src/admin-views/tribe-options-help.php:127
1664
  msgid "We hit the WordPress.org forum throughout the week, watching for bugs. If you report a legitimate bug that we're able to reproduce, we will log it and patch for an upcoming release. However we are unfortunately unable to provide customization tips or assist in integrating with 3rd party plugins or themes."
1665
  msgstr "Fórum na WordPress.org sledujeme během celého týdne kvůli přehledu o nahlášených chybách. Pokud ohlásíte legitimní chybu, kterou jsme schopni reprodukovat, my ji zaznamenáme a vydáme opravu v nadcházející verzi. Nicméně bohužel nejsme schopni poskytovat rady pro přizpůsobení nebo pomáhat při integraci s pluginy nebo šablonami třetích stran."
1666
 
1667
- #: ../src/Tribe/View_Helpers.php:333
1668
  msgid "Kentucky"
1669
  msgstr "Kentucky"
1670
 
1671
- #: ../src/admin-views/tribe-options-help.php:128
1672
  msgid "If you're a user of The Events Calendar and would like more support, please %spurchase a PRO license%s. We hit the PRO forums daily, and can provide a deeper level of customization/integration support for paying users than we can on WordPress.org."
1673
  msgstr "Pokud jste uživatelem pluginu The Events Calendar a chtěli byste větší podporu, zvažte %szakoupení PRO licence%s. Naše PRO fórum sledujeme každý den a platícím uživatelům můžeme poskytnout větší míru podpory ohledně přizpůsobení či integrace než uživatelům na webu WordPress.org."
1674
 
1675
- #: ../src/Tribe/View_Helpers.php:47
1676
  msgid "Afghanistan"
1677
  msgstr "Afghánistán"
1678
 
1679
- #: ../src/Tribe/View_Helpers.php:48
1680
  msgid "Albania"
1681
  msgstr "Albánie"
1682
 
1683
- #: ../src/Tribe/View_Helpers.php:49
1684
  msgid "Algeria"
1685
  msgstr "Alžírsko"
1686
 
1687
- #: ../src/Tribe/API.php:431
1688
  msgid "Unnamed Venue"
1689
  msgstr "Neznámé místo konání"
1690
 
1691
- #: ../src/Tribe/View_Helpers.php:50
1692
  msgid "American Samoa"
1693
  msgstr "Americká Samoa"
1694
 
1695
- #: ../src/Tribe/API.php:507 ../src/Tribe/View_Helpers.php:46
1696
- #: ../src/functions/template-tags/venue.php:272
1697
  msgid "United States"
1698
  msgstr "Spojené státy"
1699
 
1700
- #: ../src/Tribe/View_Helpers.php:51
1701
  msgid "Andorra"
1702
  msgstr "Andorra"
1703
 
1704
- #: ../src/Tribe/Activation_Page.php:197
1705
  msgid "Welcome to The Events Calendar"
1706
  msgstr "Vítejte v The Events Calendar"
1707
 
1708
- #: ../src/Tribe/View_Helpers.php:52
1709
  msgid "Angola"
1710
  msgstr "Angola"
1711
 
1712
- #: ../src/Tribe/Activation_Page.php:217
1713
  msgid "Thanks for Updating The Events Calendar"
1714
  msgstr ""
1715
 
1716
- #: ../src/Tribe/View_Helpers.php:53
1717
  msgid "Anguilla"
1718
  msgstr "Anguilla"
1719
 
1720
- #: ../src/Tribe/Admin_List.php:229 ../src/Tribe/Main.php:1272
1721
  msgid "%s Categories"
1722
  msgstr "%s Kategorie"
1723
 
1724
- #: ../src/Tribe/View_Helpers.php:54
1725
  msgid "Antarctica"
1726
  msgstr "Antarktida"
1727
 
1728
- #: ../src/Tribe/Admin_List.php:235
1729
  msgid "Start Date"
1730
  msgstr "Počáteční datum"
1731
 
1732
- #: ../src/Tribe/View_Helpers.php:55
1733
  msgid "Antigua And Barbuda"
1734
  msgstr "Antigua a Barbuda"
1735
 
1736
- #: ../src/Tribe/Admin_List.php:236
1737
  msgid "End Date"
1738
  msgstr "Koncové datum"
1739
 
1740
- #: ../src/Tribe/View_Helpers.php:56
1741
  msgid "Argentina"
1742
  msgstr "Argentina"
1743
 
1744
- #: ../src/Tribe/Admin_List.php:314
1745
  msgid "All %s"
1746
  msgstr "Celkem %s"
1747
 
1748
- #: ../src/Tribe/View_Helpers.php:57
1749
  msgid "Armenia"
1750
  msgstr "Arménie"
1751
 
1752
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:37
1753
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:69
1754
- #: ../src/views/modules/meta/details.php:40
1755
- #: ../src/views/modules/meta/details.php:65
1756
  msgid "Start:"
1757
  msgstr "Zahájení:"
1758
 
1759
- #: ../src/Tribe/View_Helpers.php:58
1760
  msgid "Aruba"
1761
  msgstr "Aruba"
1762
 
1763
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:46
1764
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:78
1765
- #: ../src/views/modules/meta/details.php:45
1766
- #: ../src/views/modules/meta/details.php:70
1767
  msgid "End:"
1768
  msgstr "Ukončení:"
1769
 
1770
- #: ../src/Tribe/View_Helpers.php:59
1771
  msgid "Australia"
1772
  msgstr "Austrálie"
1773
 
1774
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:57
1775
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:89
1776
- #: ../src/views/modules/meta/details.php:55
1777
- #: ../src/views/modules/meta/details.php:80
1778
  msgid "Date:"
1779
  msgstr "Datum:"
1780
 
1781
- #: ../src/Tribe/View_Helpers.php:60
1782
  msgid "Austria"
1783
  msgstr "Rakousko"
1784
 
1785
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:100
1786
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:111
1787
- #: ../src/views/modules/meta/details.php:85
1788
  msgid "Time:"
1789
  msgstr "Čas:"
1790
 
1791
- #: ../src/Tribe/View_Helpers.php:61
1792
  msgid "Azerbaijan"
1793
  msgstr "Ázerbájdžán"
1794
 
1795
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:324
1796
- #: ../src/functions/template-tags/google-map.php:46
1797
  msgid "Click to view a Google Map"
1798
  msgstr "Klikněte pro zobrazení ve službě Mapy Google"
1799
 
1800
- #: ../src/Tribe/View_Helpers.php:62
1801
  msgid "Bahamas"
1802
  msgstr "Bahamy"
1803
 
1804
- #: ../src/Tribe/Advanced_Functions/Register_Meta.php:325
1805
- #: ../src/functions/template-tags/google-map.php:47
1806
  msgid "+ Google Map"
1807
  msgstr "+ Mapa Google"
1808
 
1809
- #: ../src/Tribe/View_Helpers.php:63
1810
  msgid "Bahrain"
1811
  msgstr "Bahrajn"
1812
 
1813
- #: ../src/Tribe/Amalgamator.php:260
1814
- #: ../src/admin-views/tribe-options-general.php:194
1815
  msgid "Merge Duplicates"
1816
  msgstr "Sloučit duplicity"
1817
 
1818
- #: ../src/Tribe/View_Helpers.php:64
1819
  msgid "Bangladesh"
1820
  msgstr "Bangladéš"
1821
 
1822
- #: ../src/Tribe/App_Shop.php:63 ../src/Tribe/App_Shop.php:64
1823
- #: ../src/Tribe/App_Shop.php:94
1824
  msgid "Event Add-Ons"
1825
  msgstr "Doplňky pro akce"
1826
 
1827
- #: ../src/Tribe/View_Helpers.php:65
1828
  msgid "Barbados"
1829
  msgstr "Barbados"
1830
 
1831
- #: ../src/Tribe/Credits.php:31
1832
  msgid "This calendar is powered by The Events Calendar."
1833
  msgstr "Kaledář běží na pluginu The Events Calendar."
1834
 
1835
- #: ../src/Tribe/View_Helpers.php:66
1836
  msgid "Belarus"
1837
  msgstr "Bělorusko"
1838
 
1839
- #: ../src/Tribe/Credits.php:48
1840
  msgid "Rate <strong>The Events Calendar</strong> <a href=\"%1$s\" target=\"_blank\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href=\"%1$s\" target=\"_blank\">WordPress.org</a> to keep this plugin free. Thanks from the friendly folks at Modern Tribe."
1841
  msgstr ""
1842
 
1843
- #: ../src/Tribe/View_Helpers.php:67
1844
  msgid "Belgium"
1845
  msgstr "Belgie"
1846
 
1847
- #: ../src/Tribe/Credits.php:48
1848
  msgid "http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5"
1849
  msgstr "http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5"
1850
 
1851
- #: ../src/Tribe/View_Helpers.php:68
1852
  msgid "Belize"
1853
  msgstr "Belize"
1854
 
1855
- #: ../src/Tribe/Field.php:209
1856
  msgid "Invalid field type specified"
1857
  msgstr "Uvedený typ pole je neplatný"
1858
 
1859
- #: ../src/Tribe/View_Helpers.php:69
1860
  msgid "Benin"
1861
  msgstr "Benin"
1862
 
1863
- #: ../src/Tribe/Field.php:466
1864
  msgid "No radio options specified"
1865
  msgstr "Nebyly specifikovány položky přepínače"
1866
 
1867
- #: ../src/Tribe/View_Helpers.php:70
1868
  msgid "Bermuda"
1869
  msgstr "Bermudy"
1870
 
1871
- #: ../src/Tribe/Field.php:502
1872
  msgid "No checkbox options specified"
1873
  msgstr "Nebyly specifikovány položky zaškrtávacího políčka"
1874
 
1875
- #: ../src/Tribe/View_Helpers.php:71
1876
  msgid "Bhutan"
1877
  msgstr "Bhútán"
1878
 
1879
- #: ../src/Tribe/Field.php:558
1880
  msgid "No select options specified"
1881
  msgstr "Nebyly specifikovány položky rozbalovacího seznamu"
1882
 
1883
- #: ../src/Tribe/View_Helpers.php:72
1884
  msgid "Bolivia"
1885
  msgstr "Bolívie"
1886
 
1887
- #: ../src/Tribe/Importer/Admin_Page.php:15
1888
- #: ../src/Tribe/Importer/Admin_Page.php:16 ../src/Tribe/Main.php:3946
1889
  msgid "Import"
1890
  msgstr "Importovat"
1891
 
1892
- #: ../src/Tribe/View_Helpers.php:73
1893
  msgid "Bosnia And Herzegowina"
1894
  msgstr "Bosna a Hercegovina"
1895
 
1896
- #: ../src/Tribe/Importer/Admin_Page.php:54
1897
- #: ../src/Tribe/Importer/Admin_Page.php:187
1898
  msgid "The file went away. Please try again."
1899
  msgstr "Soubor není k dispozici. Zkuste to prosím znovu."
1900
 
1901
- #: ../src/Tribe/View_Helpers.php:74
1902
  msgid "Botswana"
1903
  msgstr "Botswana"
1904
 
1905
- #: ../src/Tribe/Importer/Admin_Page.php:95 ../src/Tribe/Main.php:754
1906
  msgid "General"
1907
  msgstr "Obecné"
1908
 
1909
- #: ../src/Tribe/View_Helpers.php:75
1910
  msgid "Bouvet Island"
1911
  msgstr "Bouvetův ostrov"
1912
 
1913
- #: ../src/Tribe/Importer/Admin_Page.php:96
1914
  msgid "Import: CSV"
1915
  msgstr "CSV import:"
1916
 
1917
- #: ../src/Tribe/View_Helpers.php:76
1918
  msgid "Brazil"
1919
  msgstr "Brazílie"
1920
 
1921
- #: ../src/Tribe/Importer/Admin_Page.php:153
1922
  msgid "We were unable to process your request. Please try again."
1923
  msgstr "Nepodařilo se zpracovat váš požadavek. Zkuste to prosím znovu."
1924
 
1925
- #: ../src/Tribe/View_Helpers.php:77
1926
  msgid "British Indian Ocean Territory"
1927
  msgstr "Britské indickooceánské území"
1928
 
1929
- #: ../src/Tribe/Importer/Admin_Page.php:194
1930
  msgid "<p>The following fields are required for a successful import:</p>"
1931
  msgstr "<p>Pro úspěšný import jsou vyžadována následující pole:</p>"
1932
 
1933
- #: ../src/Tribe/View_Helpers.php:78
1934
  msgid "Brunei Darussalam"
1935
  msgstr "Brunej"
1936
 
1937
- #: ../src/Tribe/Importer/Column_Mapper.php:33
1938
  msgid "Do Not Import"
1939
  msgstr "Neimportovat"
1940
 
1941
- #: ../src/Tribe/View_Helpers.php:79
1942
  msgid "Bulgaria"
1943
  msgstr "Bulharsko"
1944
 
1945
- #: ../src/Tribe/Importer/Column_Mapper.php:52
1946
  msgid "Event Name"
1947
  msgstr "Název akce"
1948
 
1949
- #: ../src/Tribe/View_Helpers.php:80
1950
  msgid "Burkina Faso"
1951
  msgstr "Burkina Faso"
1952
 
1953
- #: ../src/Tribe/Importer/Column_Mapper.php:53
1954
  msgid "Event Description"
1955
  msgstr "Popis akce"
1956
 
1957
- #: ../src/Tribe/View_Helpers.php:81
1958
  msgid "Burundi"
1959
  msgstr "Burundi"
1960
 
1961
- #: ../src/Tribe/Importer/Column_Mapper.php:54
1962
  msgid "Event Start Date"
1963
  msgstr "Počáteční datum akce"
1964
 
1965
- #: ../src/Tribe/View_Helpers.php:82
1966
  msgid "Cambodia"
1967
  msgstr "Kambodža"
1968
 
1969
- #: ../src/Tribe/Importer/Column_Mapper.php:55
1970
  msgid "Event Start Time"
1971
  msgstr "Čas zahájení akce"
1972
 
1973
- #: ../src/Tribe/View_Helpers.php:83
1974
  msgid "Cameroon"
1975
  msgstr "Kamerun"
1976
 
1977
- #: ../src/Tribe/Importer/Column_Mapper.php:56
1978
  msgid "Event End Date"
1979
  msgstr "Koncové datum akce"
1980
 
1981
- #: ../src/Tribe/View_Helpers.php:84
1982
  msgid "Canada"
1983
  msgstr "Kanada"
1984
 
1985
- #: ../src/Tribe/Importer/Column_Mapper.php:57
1986
  msgid "Event End Time"
1987
  msgstr "Čas ukončení akce"
1988
 
1989
- #: ../src/Tribe/View_Helpers.php:85
1990
  msgid "Cape Verde"
1991
  msgstr "Kapverdy"
1992
 
1993
- #: ../src/Tribe/Importer/Column_Mapper.php:58
1994
  msgid "All Day Event"
1995
  msgstr "Celodenní akce"
1996
 
1997
- #: ../src/Tribe/View_Helpers.php:86
1998
  msgid "Cayman Islands"
1999
  msgstr "Kajmanské ostrovy"
2000
 
2001
- #: ../src/Tribe/Importer/Column_Mapper.php:59
2002
  msgid "Event Venue Name"
2003
  msgstr "Místo konání akce"
2004
 
2005
- #: ../src/Tribe/View_Helpers.php:87
2006
  msgid "Central African Republic"
2007
  msgstr "Středoafrická republika"
2008
 
2009
- #: ../src/Tribe/Importer/Column_Mapper.php:60
2010
  msgid "Event Organizer Name"
2011
  msgstr "Jméno pořadatele akce"
2012
 
2013
- #: ../src/Tribe/View_Helpers.php:88
2014
  msgid "Chad"
2015
  msgstr "Čad"
2016
 
2017
- #: ../src/Tribe/Importer/Column_Mapper.php:61
2018
  msgid "Event Show Map Link"
2019
  msgstr "Zobrazit odkaz na mapu akce"
2020
 
2021
- #: ../src/Tribe/View_Helpers.php:89
2022
  msgid "Chile"
2023
  msgstr "Chile"
2024
 
2025
- #: ../src/Tribe/Importer/Column_Mapper.php:62
2026
  msgid "Event Show Map"
2027
  msgstr "Zobrazit mapu akce"
2028
 
2029
- #: ../src/Tribe/View_Helpers.php:90
2030
  msgid "China"
2031
  msgstr "Čína"
2032
 
2033
- #: ../src/Tribe/Importer/Column_Mapper.php:63
2034
  msgid "Event Cost"
2035
  msgstr "Vstupné na akci"
2036
 
2037
- #: ../src/Tribe/View_Helpers.php:91
2038
  msgid "Christmas Island"
2039
  msgstr "Vánoční ostrov"
2040
 
2041
- #: ../src/Tribe/View_Helpers.php:92
2042
  msgid "Cocos (Keeling) Islands"
2043
  msgstr "Kokosové (Keelingovy) ostrovy"
2044
 
2045
- #: ../src/Tribe/Importer/Column_Mapper.php:64
2046
  msgid "Event Category"
2047
  msgstr "Rubrika akcí"
2048
 
2049
- #: ../src/Tribe/View_Helpers.php:93
2050
  msgid "Colombia"
2051
  msgstr "Kolumbie"
2052
 
2053
- #: ../src/Tribe/Importer/Column_Mapper.php:65
2054
  msgid "Event Website"
2055
  msgstr "Webová stránka akce"
2056
 
2057
- #: ../src/Tribe/View_Helpers.php:94
2058
  msgid "Comoros"
2059
  msgstr "Komory"
2060
 
2061
- #: ../src/Tribe/Importer/Column_Mapper.php:71
2062
  msgid "Venue Name"
2063
  msgstr "Místo konání"
2064
 
2065
- #: ../src/Tribe/View_Helpers.php:95
2066
  msgid "Congo"
2067
  msgstr "Republika Kongo"
2068
 
2069
- #: ../src/Tribe/Importer/Column_Mapper.php:72
2070
  msgid "Venue Country"
2071
  msgstr "Země místa konání"
2072
 
2073
- #: ../src/Tribe/View_Helpers.php:96
2074
  msgid "Congo, The Democratic Republic Of The"
2075
  msgstr "Demokratická republika Kongo"
2076
 
2077
- #: ../src/Tribe/Importer/Column_Mapper.php:73
2078
  msgid "Venue Address"
2079
  msgstr "Adresa místa konání"
2080
 
2081
- #: ../src/Tribe/View_Helpers.php:97
2082
  msgid "Cook Islands"
2083
  msgstr "Cookovy ostrovy"
2084
 
2085
- #: ../src/Tribe/Importer/Column_Mapper.php:74
2086
  msgid "Venue Address 2"
2087
  msgstr "Adresa místa konání 2"
2088
 
2089
- #: ../src/Tribe/View_Helpers.php:98
2090
  msgid "Costa Rica"
2091
  msgstr "Kostarika"
2092
 
2093
- #: ../src/Tribe/Importer/Column_Mapper.php:75
2094
  msgid "Venue City"
2095
  msgstr "Město místa konání"
2096
 
2097
- #: ../src/Tribe/View_Helpers.php:99
2098
  msgid "Cote D'Ivoire"
2099
  msgstr "Pobřeží slonoviny"
2100
 
2101
- #: ../src/Tribe/Importer/Column_Mapper.php:76
2102
  msgid "Venue State/Province"
2103
  msgstr "Kraj místa konání"
2104
 
2105
- #: ../src/Tribe/View_Helpers.php:100
2106
  msgid "Croatia (Local Name: Hrvatska)"
2107
  msgstr "Chorvatsko"
2108
 
2109
- #: ../src/Tribe/Importer/Column_Mapper.php:77
2110
  msgid "Venue Zip"
2111
  msgstr "PSČ místa konání"
2112
 
2113
- #: ../src/Tribe/View_Helpers.php:101
2114
  msgid "Cuba"
2115
  msgstr "Kuba"
2116
 
2117
- #: ../src/Tribe/Importer/Column_Mapper.php:78
2118
  msgid "Venue Phone"
2119
  msgstr "Telefon místa konání"
2120
 
2121
- #: ../src/Tribe/View_Helpers.php:102
2122
  msgid "Cyprus"
2123
  msgstr "Kypr"
2124
 
2125
- #: ../src/Tribe/Importer/Column_Mapper.php:79
2126
  msgid "Venue Website"
2127
  msgstr "Webové stránky místa konání"
2128
 
2129
- #: ../src/Tribe/View_Helpers.php:103
2130
  msgid "Czech Republic"
2131
  msgstr "Česká republika"
2132
 
2133
- #: ../src/Tribe/Importer/Column_Mapper.php:85
2134
  msgid "Organizer Name"
2135
  msgstr "Jméno pořadatele"
2136
 
2137
- #: ../src/Tribe/View_Helpers.php:104
2138
  msgid "Denmark"
2139
  msgstr "Dánsko"
2140
 
2141
- #: ../src/Tribe/Importer/Column_Mapper.php:86
2142
  msgid "Organizer Email"
2143
  msgstr "Email pořadatele"
2144
 
2145
- #: ../src/Tribe/View_Helpers.php:105
2146
  msgid "Djibouti"
2147
  msgstr "Džibutsko"
2148
 
2149
- #: ../src/Tribe/Importer/Column_Mapper.php:87
2150
  msgid "Organizer Website"
2151
  msgstr "Web pořadatele"
2152
 
2153
- #: ../src/Tribe/View_Helpers.php:106
2154
  msgid "Dominica"
2155
  msgstr "Dominika"
2156
 
2157
- #: ../src/Tribe/Importer/Column_Mapper.php:88
2158
  msgid "Organizer Phone"
2159
  msgstr "Telefon pořadatele"
2160
 
2161
- #: ../src/Tribe/View_Helpers.php:107
2162
  msgid "Dominican Republic"
2163
  msgstr "Dominikánská republika"
2164
 
2165
- #: ../src/Tribe/Importer/File_Importer.php:38
2166
  msgid "No importer defined for %s"
2167
  msgstr "Pro %s není definovaný importer"
2168
 
2169
- #: ../src/Tribe/View_Helpers.php:108
2170
  msgid "East Timor"
2171
  msgstr "Východní Timor"
2172
 
2173
- #: ../src/Tribe/Importer/File_Importer.php:110
2174
  msgid "Missing required fields in row %d."
2175
  msgstr "Chybí vyžadovaná pole v řádku %d."
2176
 
2177
- #: ../src/Tribe/View_Helpers.php:109
2178
  msgid "Ecuador"
2179
  msgstr "Ekvádor"
2180
 
2181
- #: ../src/Tribe/Importer/File_Importer.php:118
2182
  msgid "Failed to import record in row %d."
2183
  msgstr "Nepodařilo se importovat záznam v řádku %d."
2184
 
2185
- #: ../src/Tribe/View_Helpers.php:110
2186
  msgid "Egypt"
2187
  msgstr "Egypt"
2188
 
2189
- #: ../src/Tribe/Importer/File_Importer.php:127
2190
  msgid "%s (post ID %d) updated."
2191
  msgstr "Příspěvek %s (ID: %d) byl aktualizován."
2192
 
2193
- #: ../src/Tribe/View_Helpers.php:111
2194
  msgid "El Salvador"
2195
  msgstr "Salvador"
2196
 
2197
- #: ../src/Tribe/Importer/File_Importer.php:131
2198
  msgid "%s (post ID %d) created."
2199
  msgstr "Příspěvek %s (ID: %d) byl vytvořen."
2200
 
2201
- #: ../src/Tribe/View_Helpers.php:112
2202
  msgid "Equatorial Guinea"
2203
  msgstr "Rovníková Guinea"
2204
 
2205
- #: ../src/Tribe/Importer/File_Uploader.php:28
2206
  msgid "Temporary file not found. Could not save %s."
2207
  msgstr "Dočasný soubor nebyl nalezen. Nepodařilo se uložit soubor %s."
2208
 
2209
- #: ../src/Tribe/View_Helpers.php:113
2210
  msgid "Eritrea"
2211
  msgstr "Eritrea"
2212
 
2213
- #: ../src/Tribe/Importer/File_Uploader.php:36
2214
  msgid "Could not save %s."
2215
  msgstr "Soubor %s nelze uložit."
2216
 
2217
- #: ../src/Tribe/View_Helpers.php:114
2218
  msgid "Estonia"
2219
  msgstr "Estonsko"
2220
 
2221
- #: ../src/Tribe/Importer/Options.php:29 ../src/Tribe/Settings.php:520
2222
  msgid "Settings saved."
2223
  msgstr "Nastavení bylo uloženo."
2224
 
2225
- #: ../src/Tribe/View_Helpers.php:115
2226
  msgid "Ethiopia"
2227
  msgstr "Etiopie"
2228
 
2229
- #: ../src/Tribe/List_Widget.php:30
2230
  msgid "A widget that displays upcoming events."
2231
  msgstr "Widget, který zobrazuje seznam nadcházejících akcí."
2232
 
2233
- #: ../src/Tribe/View_Helpers.php:116
2234
  msgid "Falkland Islands (Malvinas)"
2235
  msgstr "Falklandy (Malvíny)"
2236
 
2237
- #: ../src/Tribe/List_Widget.php:38
2238
  msgid "Events List"
2239
  msgstr "Seznam akcí"
2240
 
2241
- #: ../src/Tribe/View_Helpers.php:117
2242
  msgid "Faroe Islands"
2243
  msgstr "Faerské ostrovy"
2244
 
2245
- #: ../src/Tribe/List_Widget.php:171
2246
  msgid "Upcoming Events"
2247
  msgstr "Nadcházející akce"
2248
 
2249
- #: ../src/Tribe/View_Helpers.php:118
2250
  msgid "Fiji"
2251
  msgstr "Fidži"
2252
 
2253
- #: ../src/Tribe/Main.php:490 ../src/functions/template-tags/venue.php:52
2254
- #: ../src/io/csv/admin-views/import.php:45
2255
  msgid "Venues"
2256
  msgstr "Místa konání"
2257
 
2258
- #: ../src/Tribe/View_Helpers.php:119
2259
  msgid "Finland"
2260
  msgstr "Finsko"
2261
 
2262
- #: ../src/Tribe/Main.php:498
2263
- #: ../src/functions/advanced-functions/meta_registration.php:126
2264
- #: ../src/functions/template-tags/venue.php:41
2265
  msgid "Venue"
2266
  msgstr "Místo konání"
2267
 
2268
- #: ../src/Tribe/View_Helpers.php:120
2269
  msgid "France"
2270
  msgstr "Francie"
2271
 
2272
- #: ../src/Tribe/Main.php:506 ../src/functions/template-tags/organizer.php:82
2273
- #: ../src/io/csv/admin-views/import.php:46
2274
  msgid "Organizers"
2275
  msgstr "Pořadatelé"
2276
 
2277
- #: ../src/Tribe/View_Helpers.php:121
2278
  msgid "France, Metropolitan"
2279
  msgstr "Metropolitní Francie"
2280
 
2281
- #: ../src/Tribe/Main.php:514
2282
- #: ../src/functions/advanced-functions/meta_registration.php:205
2283
- #: ../src/functions/template-tags/organizer.php:71
2284
  msgid "Organizer"
2285
  msgstr "Pořadatel"
2286
 
2287
- #: ../src/Tribe/View_Helpers.php:122
2288
  msgid "French Guiana"
2289
  msgstr "Francouzská Guyana"
2290
 
2291
- #: ../src/Tribe/Main.php:522 ../src/functions/template-tags/general.php:71
2292
- #: ../src/io/csv/admin-views/import.php:47
2293
  msgid "Events"
2294
  msgstr "Akce"
2295
 
2296
- #: ../src/Tribe/View_Helpers.php:123
2297
  msgid "French Polynesia"
2298
  msgstr "Francouzská Polynésie"
2299
 
2300
- #: ../src/Tribe/Main.php:530 ../src/functions/template-tags/general.php:60
2301
  msgid "Event"
2302
  msgstr "Akce"
2303
 
2304
- #: ../src/Tribe/View_Helpers.php:124
2305
  msgid "French Southern Territories"
2306
  msgstr "Francouzská jižní a antarktická území"
2307
 
2308
- #: ../src/Tribe/Main.php:570 ../src/Tribe/Settings.php:132
2309
- #: ../src/admin-views/tribe-options-help.php:169
 
2310
  msgid "The Events Calendar"
2311
  msgstr "The Events Calendar"
2312
 
2313
- #: ../src/Tribe/View_Helpers.php:125
2314
  msgid "Gabon"
2315
  msgstr "Gabon"
2316
 
2317
- #: ../src/Tribe/Main.php:575
2318
  msgid "month"
2319
  msgstr "měsíc"
2320
 
2321
- #: ../src/Tribe/View_Helpers.php:126
2322
  msgid "Gambia"
2323
  msgstr "Gambie"
2324
 
2325
- #: ../src/Tribe/Main.php:576
2326
  msgid "list"
2327
  msgstr "seznam"
2328
 
2329
- #: ../src/Tribe/View_Helpers.php:127 ../src/Tribe/View_Helpers.php:326
2330
  msgid "Georgia"
2331
  msgstr "Gruzie"
2332
 
2333
- #: ../src/Tribe/Main.php:577
2334
  msgid "upcoming"
2335
  msgstr "nadcházející"
2336
 
2337
- #: ../src/Tribe/View_Helpers.php:128
2338
  msgid "Germany"
2339
  msgstr "Německo"
2340
 
2341
- #: ../src/Tribe/Main.php:578
2342
  msgid "past"
2343
  msgstr "uplynulé"
2344
 
2345
- #: ../src/Tribe/View_Helpers.php:129
2346
  msgid "Ghana"
2347
  msgstr "Ghana"
2348
 
2349
- #: ../src/Tribe/Main.php:579
2350
  msgid "day"
2351
  msgstr "den"
2352
 
2353
- #: ../src/Tribe/View_Helpers.php:130
2354
  msgid "Gibraltar"
2355
  msgstr "Gibraltar"
2356
 
2357
- #: ../src/Tribe/Main.php:580
2358
  msgid "today"
2359
  msgstr "dnes"
2360
 
2361
- #: ../src/Tribe/View_Helpers.php:131
2362
  msgid "Greece"
2363
  msgstr "Řecko"
2364
 
2365
- #: ../src/Tribe/Main.php:604
2366
  msgid "Initializing Tribe Events on %s"
2367
  msgstr "Initializing Tribe Events on %s"
2368
 
2369
- #: ../src/Tribe/View_Helpers.php:132
2370
  msgid "Greenland"
2371
  msgstr "Grónsko"
2372
 
2373
- #: ../src/Tribe/Main.php:674
2374
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
2375
  msgstr "Vaše verze pluginu The Events Calendar není dostatečně aktuální s jedním z jeho doplňků. Proveďte prosím %saktualizaci.%s"
2376
 
2377
- #: ../src/Tribe/View_Helpers.php:133
2378
  msgid "Grenada"
2379
  msgstr "Grenada"
2380
 
2381
- #: ../src/Tribe/Main.php:686
2382
  msgid "The following plugins are out of date: <b>%s</b>. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %sLearn More%s."
2383
  msgstr ""
2384
 
2385
- #: ../src/Tribe/View_Helpers.php:134
2386
  msgid "Guadeloupe"
2387
  msgstr "Guadeloupe"
2388
 
2389
- #: ../src/Tribe/Main.php:796 ../src/admin-views/tribe-options-licenses.php:33
2390
  msgid "Licenses"
2391
  msgstr "Licence"
2392
 
2393
- #: ../src/Tribe/View_Helpers.php:135
2394
  msgid "Guam"
2395
  msgstr "Guam"
2396
 
2397
- #: ../src/admin-views/tribe-options-licenses.php:13
2398
- msgid "<p>The license key you received when completing your purchase from %s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. <strong>Find your license keys at <a href=\"%s\" target=\"_blank\">%s</a></strong>.</p> <p>Each paid add-on has its own unique license key. Simply paste the key into its appropriate field on below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message.</p> <p>If you're seeing a red message telling you that your key isn't valid or is out of installs, visit <a href=\"%s\" target=\"_blank\">%s</a> to manage your installs or renew / upgrade your license.</p><p>Not seeing an update but expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> and click \"Check Again\".</p>"
2399
- msgstr "<p>Licenční klíč, který jste obdrželi při dokončování vašeho nákupu na %s, vám umožňuje přístup k zákaznické podpoře a aktualizacím. Svůj klíč nemusíte zadávat aby byly pluginy plně funkční. Nicméně bez vloženého klíče nebude možné provést automatické aktualizace. <strong>Své licenční klíče můžete najít na stránce <a href=\"%s\" target=\"_blank\">%s</a></strong>.</p> <p>Každý plugin/doplněk má svůj unikátní licenční klíč. Do příslušného políčka v níže uvedeném seznamu stačí vložit klíč a chvíli počkat na ověření. Jakmile se objeví zeleně Datum platnosti společně s nápisem \"valid\", je vše hotovo.</p> <p>Pokud však vidíte červeně zprávu, která říká že váš klíč není platný nebo že je mimo instalaci, navštivte web <a href=\"%s\" target=\"_blank\">%s</a>, kde si můžete spravovat své instalace nebo obnovit platnost licence.</p> <p>Pokud se vám nezobrazila očekávaná aktualizace, přejděte ve WordPressu na stránku <a href=\"%s\">Nástěnka > Aktualizace</a> a klikněte na \"Zkontrolovat znovu\".</p>"
2400
-
2401
- #: ../src/Tribe/View_Helpers.php:136
2402
  msgid "Guatemala"
2403
  msgstr "Guatemala"
2404
 
2405
- #: ../src/Tribe/Main.php:755
2406
  msgid "Display"
2407
  msgstr "Zobrazování"
2408
 
2409
- #: ../src/Tribe/View_Helpers.php:137
2410
  msgid "Guinea"
2411
  msgstr "Guinea"
2412
 
2413
- #: ../src/Tribe/Main.php:759 ../src/Tribe/Main.php:3989
2414
- #: ../src/Tribe/Main.php:4084
2415
  msgid "Help"
2416
  msgstr "Nápověda"
2417
 
2418
- #: ../src/Tribe/View_Helpers.php:138
2419
  msgid "Guinea-Bissau"
2420
  msgstr "Guinea-Bissau"
2421
 
2422
- #: ../src/Tribe/Main.php:897
2423
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
2424
  msgstr "Omlouváme se, ale plugin The Events Calendar vyžaduje alespoň WordPress %s. Aktualizujte si prosím svůj WordPress."
2425
 
2426
- #: ../src/Tribe/View_Helpers.php:139
2427
  msgid "Guyana"
2428
  msgstr "Guyana"
2429
 
2430
- #: ../src/Tribe/Main.php:900
2431
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
2432
  msgstr "Omlouváme se, ale plugin The Events Calendar vyžaduje alespoň PHP %s. Požádejte svého poskytovatele webhostingu o přechod na novější verzi PHP."
2433
 
2434
- #: ../src/Tribe/View_Helpers.php:140
2435
  msgid "Haiti"
2436
  msgstr "Haiti"
2437
 
2438
- #: ../src/Tribe/Main.php:1174
2439
  msgid "category"
2440
  msgstr "rubrika"
2441
 
2442
- #: ../src/Tribe/View_Helpers.php:141
2443
  msgid "Heard And Mc Donald Islands"
2444
  msgstr "Heardův ostrov a McDonaldovy ostrovy"
2445
 
2446
- #: ../src/Tribe/Main.php:1185
2447
  msgid "tag"
2448
  msgstr "stitek"
2449
 
2450
- #: ../src/Tribe/View_Helpers.php:142
2451
  msgid "Holy See (Vatican City State)"
2452
  msgstr "Svatý stolec (Vatikán)"
2453
 
2454
- #: ../src/Tribe/Main.php:1220 ../src/Tribe/Main.php:1238
2455
- #: ../src/Tribe/Main.php:1256
2456
  msgid "Add New"
2457
  msgstr "Vytvořit akci"
2458
 
2459
- #: ../src/Tribe/View_Helpers.php:143
2460
  msgid "Honduras"
2461
  msgstr "Honduras"
2462
 
2463
- #: ../src/Tribe/Main.php:1221 ../src/Tribe/Main.php:1239
2464
- #: ../src/Tribe/Main.php:1257 ../src/Tribe/Main.php:1382
2465
- #: ../src/Tribe/Main.php:1383
2466
  msgid "Add New %s"
2467
  msgstr "Přidat nový %s"
2468
 
2469
- #: ../src/Tribe/View_Helpers.php:144
2470
  msgid "Hong Kong"
2471
  msgstr "Hongkong"
2472
 
2473
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:113
2474
- #: ../src/Tribe/Main.php:1222 ../src/Tribe/Main.php:1240
2475
- #: ../src/Tribe/Main.php:1258 ../src/Tribe/Main.php:1402
2476
- #: ../src/Tribe/Main.php:1454 ../src/Tribe/Main.php:3933
2477
  msgid "Edit %s"
2478
  msgstr "Upravit %s"
2479
 
2480
- #: ../src/Tribe/View_Helpers.php:145
2481
  msgid "Hungary"
2482
  msgstr "Maďarsko"
2483
 
2484
- #: ../src/Tribe/Main.php:1223 ../src/Tribe/Main.php:1241
2485
- #: ../src/Tribe/Main.php:1259
2486
  msgid "New %s"
2487
  msgstr "Nové %s"
2488
 
2489
- #: ../src/Tribe/View_Helpers.php:146
2490
  msgid "Iceland"
2491
  msgstr "Island"
2492
 
2493
- #: ../src/Tribe/Main.php:1224 ../src/Tribe/Main.php:1242
2494
- #: ../src/Tribe/Main.php:1260
2495
  msgid "View %s"
2496
  msgstr "Zobrazit %s"
2497
 
2498
- #: ../src/Tribe/View_Helpers.php:147
2499
  msgid "India"
2500
  msgstr "Indie"
2501
 
2502
- #: ../src/Tribe/Main.php:1225 ../src/Tribe/Main.php:1243
2503
- #: ../src/Tribe/Main.php:1261
2504
  msgid "Search %s"
2505
  msgstr "Hledat %s"
2506
 
2507
- #: ../src/Tribe/View_Helpers.php:148
2508
  msgid "Indonesia"
2509
  msgstr "Indonésie"
2510
 
2511
- #: ../src/Tribe/Main.php:1226 ../src/Tribe/Main.php:1244
2512
- #: ../src/Tribe/Main.php:1262
2513
  msgid "No %s found"
2514
  msgstr "Žádné %s nenalezeny"
2515
 
2516
- #: ../src/Tribe/View_Helpers.php:149
2517
  msgid "Iran (Islamic Republic Of)"
2518
  msgstr "Írán"
2519
 
2520
- #: ../src/Tribe/Main.php:1227 ../src/Tribe/Main.php:1245
2521
- #: ../src/Tribe/Main.php:1263
2522
  msgid "No %s found in Trash"
2523
  msgstr "Žádný %s nebyl v koši nalezen"
2524
 
2525
- #: ../src/Tribe/View_Helpers.php:150
2526
  msgid "Iraq"
2527
  msgstr "Irák"
2528
 
2529
- #: ../src/Tribe/Main.php:1273 ../src/functions/template-tags/general.php:408
2530
  msgid "%s Category"
2531
  msgstr "%s Kategorie"
2532
 
2533
- #: ../src/Tribe/View_Helpers.php:151
2534
  msgid "Ireland"
2535
  msgstr "Irsko"
2536
 
2537
- #: ../src/Tribe/Main.php:1274
2538
  msgid "Search %s Categories"
2539
  msgstr "Hledat %s v kategoriích"
2540
 
2541
- #: ../src/Tribe/View_Helpers.php:152
2542
  msgid "Israel"
2543
  msgstr "Izrael"
2544
 
2545
- #: ../src/Tribe/Main.php:1275
2546
  msgid "All %s Categories"
2547
  msgstr "Všechny %s Kategorie"
2548
 
2549
- #: ../src/Tribe/View_Helpers.php:153
2550
  msgid "Italy"
2551
  msgstr "Itálie"
2552
 
2553
- #: ../src/Tribe/Main.php:1276
2554
  msgid "Parent %s Category"
2555
  msgstr ""
2556
 
2557
- #: ../src/Tribe/View_Helpers.php:154
2558
  msgid "Jamaica"
2559
  msgstr "Jamajka"
2560
 
2561
- #: ../src/Tribe/Main.php:1277
2562
  msgid "Parent %s Category:"
2563
  msgstr ""
2564
 
2565
- #: ../src/Tribe/View_Helpers.php:155
2566
  msgid "Japan"
2567
  msgstr "Japonsko"
2568
 
2569
- #: ../src/Tribe/Main.php:1278
2570
  msgid "Edit %s Category"
2571
  msgstr "Upravit %s Kategorii"
2572
 
2573
- #: ../src/Tribe/View_Helpers.php:156
2574
  msgid "Jordan"
2575
  msgstr "Jordánsko"
2576
 
2577
- #: ../src/Tribe/Main.php:1279
2578
  msgid "Update %s Category"
2579
  msgstr "Aktualizovat %s Kategorii"
2580
 
2581
- #: ../src/Tribe/View_Helpers.php:157
2582
  msgid "Kazakhstan"
2583
  msgstr "Kazachstán"
2584
 
2585
- #: ../src/Tribe/Main.php:1280
2586
  msgid "Add New %s Category"
2587
  msgstr "Přuidat novou %s kategorii"
2588
 
2589
- #: ../src/Tribe/View_Helpers.php:158
2590
  msgid "Kenya"
2591
  msgstr "Keňa"
2592
 
2593
- #: ../src/Tribe/Main.php:1281
2594
  msgid "New %s Category Name"
2595
  msgstr "Nové %s jména kategorií"
2596
 
2597
- #: ../src/Tribe/View_Helpers.php:159
2598
  msgid "Kiribati"
2599
  msgstr "Kiribati"
2600
 
2601
- #: ../src/Tribe/Main.php:1297
2602
  msgid "%1$s updated. <a href=\"%2$s\">View %3$s</a>"
2603
  msgstr "%1$s aktualiozováno. <a href=\"%2$s\">Zobrazit %3$s</a>"
2604
 
2605
- #: ../src/Tribe/View_Helpers.php:160
2606
  msgid "Korea, Democratic People's Republic Of"
2607
  msgstr "Severní Korea"
2608
 
2609
- #: ../src/Tribe/Main.php:1298 ../src/Tribe/Main.php:1334
2610
- #: ../src/Tribe/Main.php:1353
2611
  msgid "Custom field updated."
2612
  msgstr "Uživatelské pole bylo aktualizováno."
2613
 
2614
- #: ../src/Tribe/View_Helpers.php:161
2615
  msgid "Korea, Republic Of"
2616
  msgstr "Jižní Korea"
2617
 
2618
- #: ../src/Tribe/Main.php:1299 ../src/Tribe/Main.php:1335
2619
- #: ../src/Tribe/Main.php:1354
2620
  msgid "Custom field deleted."
2621
  msgstr "Uživatelské pole bylo smazáno."
2622
 
2623
- #: ../src/Tribe/View_Helpers.php:162
2624
  msgid "Kuwait"
2625
  msgstr "Kuvajt"
2626
 
2627
- #: ../src/Tribe/Main.php:1300 ../src/Tribe/Main.php:1333
2628
- #: ../src/Tribe/Main.php:1336 ../src/Tribe/Main.php:1352
2629
- #: ../src/Tribe/Main.php:1355
2630
  msgid "%s updated."
2631
  msgstr "%s aktualizováno."
2632
 
2633
- #: ../src/Tribe/View_Helpers.php:163
2634
  msgid "Kyrgyzstan"
2635
  msgstr "Kyrgyzstán"
2636
 
2637
- #: ../src/Tribe/Main.php:1302
2638
  msgid "%1$s restored to revision from %2$s"
2639
  msgstr ""
2640
 
2641
- #: ../src/Tribe/View_Helpers.php:164
2642
  msgid "Lao People's Democratic Republic"
2643
  msgstr "Laos"
2644
 
2645
- #: ../src/Tribe/Main.php:1304
2646
  msgid "Event published. <a href=\"%1$s\">View %2$s</a>"
2647
  msgstr "Akce publikována. <a href=\"%1$s\">Zobrazit %2$s</a>"
2648
 
2649
- #: ../src/Tribe/View_Helpers.php:165
2650
  msgid "Latvia"
2651
  msgstr "Lotyšsko"
2652
 
2653
- #: ../src/Tribe/Main.php:1308 ../src/Tribe/Main.php:1340
2654
- #: ../src/Tribe/Main.php:1359
2655
  msgid "%s saved."
2656
  msgstr "%s uloženo."
2657
 
2658
- #: ../src/Tribe/View_Helpers.php:166
2659
  msgid "Lebanon"
2660
  msgstr "Libanon"
2661
 
2662
- #: ../src/Tribe/Main.php:1310
2663
  msgid "%1$s submitted. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2664
  msgstr ""
2665
 
2666
- #: ../src/Tribe/View_Helpers.php:167
2667
  msgid "Lesotho"
2668
  msgstr "Lesotho"
2669
 
2670
- #: ../src/Tribe/Main.php:1316
2671
  msgid "%1$s scheduled for: <strong>%2$s</strong>. <a target=\"_blank\" href=\"%3$s\">Preview %4$s</a>"
2672
  msgstr ""
2673
 
2674
- #: ../src/Tribe/View_Helpers.php:168
2675
  msgid "Liberia"
2676
  msgstr "Libérie"
2677
 
2678
- #: ../src/Tribe/Main.php:1319 ../src/Tribe/Main.php:1345
2679
- #: ../src/Tribe/Main.php:1364
2680
  msgid "M j, Y @ G:i"
2681
  msgstr "j.n.Y, G:i"
2682
 
2683
- #: ../src/Tribe/View_Helpers.php:169
2684
  msgid "Libya"
2685
  msgstr "Libye"
2686
 
2687
- #: ../src/Tribe/Main.php:1324
2688
  msgid "%1$s draft updated. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2689
  msgstr ""
2690
 
2691
- #: ../src/Tribe/View_Helpers.php:170
2692
  msgid "Liechtenstein"
2693
  msgstr "Lichtenštejnsko"
2694
 
2695
- #: ../src/Tribe/Main.php:1338 ../src/Tribe/Main.php:1357
2696
  msgid "%s restored to revision from %s"
2697
  msgstr "%s obnoveno do stavu revize od %s"
2698
 
2699
- #: ../src/Tribe/View_Helpers.php:171
2700
  msgid "Lithuania"
2701
  msgstr "Litva"
2702
 
2703
- #: ../src/Tribe/Main.php:1339 ../src/Tribe/Main.php:1358
2704
  msgid "%s published."
2705
  msgstr "%s publikováno."
2706
 
2707
- #: ../src/Tribe/View_Helpers.php:172
2708
  msgid "Luxembourg"
2709
  msgstr "Lucembursko"
2710
 
2711
- #: ../src/Tribe/Main.php:1341 ../src/Tribe/Main.php:1360
2712
  msgid "%s submitted."
2713
  msgstr "%s uloženo."
2714
 
2715
- #: ../src/Tribe/View_Helpers.php:173
2716
  msgid "Macau"
2717
  msgstr "Macao"
2718
 
2719
- #: ../src/Tribe/Main.php:1343 ../src/Tribe/Main.php:1362
2720
  msgid "%s scheduled for: <strong>%2$s</strong>."
2721
  msgstr "%s naplánováno na: <strong>%2$s</strong>."
2722
 
2723
- #: ../src/Tribe/View_Helpers.php:174
2724
  msgid "Macedonia"
2725
  msgstr "Makedonie"
2726
 
2727
- #: ../src/Tribe/Main.php:1347 ../src/Tribe/Main.php:1366
2728
  msgid "%s draft updated."
2729
  msgstr "%s koncept aktualizován."
2730
 
2731
- #: ../src/Tribe/View_Helpers.php:175
2732
  msgid "Madagascar"
2733
  msgstr "Madagaskar"
2734
 
2735
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88
2736
- #: ../src/Tribe/Main.php:1401 ../src/Tribe/Main.php:1452
2737
  msgid "Use Saved %s:"
2738
  msgstr "Použít uloženou %s"
2739
 
2740
- #: ../src/Tribe/View_Helpers.php:176
2741
  msgid "Malawi"
2742
  msgstr "Malawi"
2743
 
2744
- #: ../src/Tribe/Main.php:1429
2745
  msgid "Without a defined location your event will not display a <a href=\"https://support.google.com/webmasters/answer/164506\" target=\"_blank\">Google Rich Snippet</a> on the search results."
2746
  msgstr ""
2747
 
2748
- #: ../src/Tribe/View_Helpers.php:177
2749
  msgid "Malaysia"
2750
  msgstr "Malajsie"
2751
 
2752
- #: ../src/Tribe/Main.php:1520 ../src/Tribe/Main.php:1602
2753
  msgid "Use New %s"
2754
  msgstr "Použít novou %s"
2755
 
2756
- #: ../src/Tribe/View_Helpers.php:178
2757
  msgid "Maldives"
2758
  msgstr "Maledivy"
2759
 
2760
- #: ../src/Tribe/Main.php:1522 ../src/Tribe/Main.php:1604
2761
  msgid "My %s"
2762
  msgstr "Moje %s"
2763
 
2764
- #: ../src/Tribe/View_Helpers.php:179
2765
  msgid "Mali"
2766
  msgstr "Mali"
2767
 
2768
- #: ../src/Tribe/Main.php:1527 ../src/Tribe/Main.php:1609
2769
  msgid "Available %s"
2770
  msgstr "Dostupné %s"
2771
 
2772
- #: ../src/Tribe/View_Helpers.php:180
2773
  msgid "Malta"
2774
  msgstr "Malta"
2775
 
2776
- #: ../src/Tribe/Main.php:1538 ../src/Tribe/Main.php:1620
2777
  msgid "No saved %s exists."
2778
  msgstr ""
2779
 
2780
- #: ../src/Tribe/View_Helpers.php:181
2781
  msgid "Marshall Islands"
2782
  msgstr "Marshallovy ostrovy"
2783
 
2784
- #: ../src/Tribe/Main.php:1764
2785
  msgid "Next"
2786
  msgstr "Další"
2787
 
2788
- #: ../src/Tribe/View_Helpers.php:182
2789
  msgid "Martinique"
2790
  msgstr "Martinik"
2791
 
2792
- #: ../src/Tribe/Main.php:1765
2793
  msgid "Prev"
2794
  msgstr "Předchozí"
2795
 
2796
- #: ../src/Tribe/View_Helpers.php:183
2797
  msgid "Mauritania"
2798
  msgstr "Mauritánie"
2799
 
2800
- #: ../src/Tribe/Main.php:1766 ../src/functions/template-tags/day.php:105
2801
  msgid "Today"
2802
  msgstr "Dnes"
2803
 
2804
- #: ../src/Tribe/View_Helpers.php:184
2805
  msgid "Mauritius"
2806
  msgstr "Mauricius"
2807
 
2808
- #: ../src/Tribe/Main.php:1767
2809
  msgid "Done"
2810
  msgstr "Hotovo"
2811
 
2812
- #: ../src/Tribe/View_Helpers.php:185
2813
  msgid "Mayotte"
2814
  msgstr "Mayotte"
2815
 
2816
- #: ../src/Tribe/Main.php:1941
2817
  msgid "Network"
2818
  msgstr "Síť webů"
2819
 
2820
- #: ../src/Tribe/View_Helpers.php:186
2821
  msgid "Mexico"
2822
  msgstr "Mexiko"
2823
 
2824
- #: ../src/Tribe/Main.php:3428 ../src/Tribe/Main.php:3463
2825
- #: ../src/functions/template-tags/day.php:158
2826
- #: ../src/functions/template-tags/day.php:180
2827
  msgid "Date out of range."
2828
  msgstr "Datum je mimo platný rozsah."
2829
 
2830
- #: ../src/Tribe/View_Helpers.php:187
2831
  msgid "Micronesia, Federated States Of"
2832
  msgstr "Mikronésie"
2833
 
2834
- #: ../src/Tribe/Main.php:3499
2835
  msgid "%s Options"
2836
  msgstr "%s Nastavení"
2837
 
2838
- #: ../src/Tribe/View_Helpers.php:188
2839
  msgid "Moldova, Republic Of"
2840
  msgstr "Moldavsko"
2841
 
2842
- #: ../src/Tribe/Main.php:3506 ../src/Tribe/Main.php:3517
2843
  msgid "%s Information"
2844
  msgstr "%s Informace"
2845
 
2846
- #: ../src/Tribe/View_Helpers.php:189
2847
  msgid "Monaco"
2848
  msgstr "Monako"
2849
 
2850
- #: ../src/Tribe/Main.php:3730
2851
  msgid "Support"
2852
  msgstr "Podpora"
2853
 
2854
- #: ../src/Tribe/View_Helpers.php:190
2855
  msgid "Mongolia"
2856
  msgstr "Mongolsko"
2857
 
2858
- #: ../src/Tribe/Main.php:3733
2859
  msgid "View All Add-Ons"
2860
  msgstr "Prohlédnout všechny doplňky"
2861
 
2862
- #: ../src/Tribe/View_Helpers.php:191
2863
  msgid "Montenegro"
2864
  msgstr "Černá Hora"
2865
 
2866
- #: ../src/Tribe/Main.php:3754
2867
  msgid "News from Modern Tribe"
2868
  msgstr "Novinky od Modern Tribe"
2869
 
2870
- #: ../src/Tribe/View_Helpers.php:192
2871
  msgid "Montserrat"
2872
  msgstr "Montserrat"
2873
 
2874
- #: ../src/Tribe/Main.php:3818
2875
  msgid "Additional Functionality"
2876
  msgstr "Další funkce"
2877
 
2878
- #: ../src/Tribe/View_Helpers.php:193
2879
  msgid "Morocco"
2880
  msgstr "Maroko"
2881
 
2882
- #: ../src/Tribe/Main.php:3823
2883
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
2884
  msgstr "Hledáte další funkce, včetně opakujících se akcí, prodeje vstupenek, veřejně přidávaných akcí, nových způsobů zobrazení a další?"
2885
 
2886
- #: ../src/Tribe/View_Helpers.php:194
2887
  msgid "Mozambique"
2888
  msgstr "Mosambik"
2889
 
2890
- #: ../src/Tribe/Main.php:3824
2891
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
2892
  msgstr "Podívejte se na <a href=\"%s\">dostupné doplňky</a>."
2893
 
2894
- #: ../src/Tribe/View_Helpers.php:195
2895
  msgid "Myanmar"
2896
  msgstr "Myanmar"
2897
 
2898
- #: ../src/Tribe/Main.php:3875
2899
  msgid "%s"
2900
  msgstr ""
2901
 
2902
- #: ../src/Tribe/View_Helpers.php:196
2903
  msgid "Namibia"
2904
  msgstr "Namibie"
2905
 
2906
- #: ../src/Tribe/Main.php:3912 ../src/Tribe/Main.php:4008
2907
  msgid "View Calendar"
2908
  msgstr "Zobrazit kalendář"
2909
 
2910
- #: ../src/Tribe/View_Helpers.php:197
2911
  msgid "Nauru"
2912
  msgstr "Nauru"
2913
 
2914
- #: ../src/Tribe/Main.php:3922
2915
  msgid "Add %s"
2916
  msgstr "Přidat %s"
2917
 
2918
- #: ../src/Tribe/View_Helpers.php:198
2919
  msgid "Nepal"
2920
  msgstr "Nepál"
2921
 
2922
- #: ../src/Tribe/Main.php:3954
2923
  msgid "CSV"
2924
  msgstr "CSV"
2925
 
2926
- #: ../src/Tribe/View_Helpers.php:199
2927
  msgid "Netherlands"
2928
  msgstr "Nizozemsko"
2929
 
2930
- #: ../src/Tribe/Main.php:3976 ../src/Tribe/Main.php:4066
2931
- #: ../src/Tribe/Settings.php:161
2932
  msgid "Settings"
2933
  msgstr "Nastavení"
2934
 
2935
- #: ../src/Tribe/View_Helpers.php:200
2936
  msgid "Netherlands Antilles"
2937
  msgstr "Nizozemské Antily"
2938
 
2939
- #: ../src/Tribe/Main.php:4067
2940
  msgid "Calendar"
2941
  msgstr "Kalendář"
2942
 
2943
- #: ../src/Tribe/View_Helpers.php:201
2944
  msgid "New Caledonia"
2945
  msgstr "Nová Kaledonie"
2946
 
2947
- #: ../src/Tribe/Main.php:4143
2948
  msgid "List"
2949
  msgstr "Seznam"
2950
 
2951
- #: ../src/Tribe/View_Helpers.php:202
2952
  msgid "New Zealand"
2953
  msgstr "Nový Zéland"
2954
 
2955
- #: ../src/Tribe/Main.php:4161
2956
  msgid "Month"
2957
  msgstr "Měsíc"
2958
 
2959
- #: ../src/Tribe/View_Helpers.php:203
2960
  msgid "Nicaragua"
2961
  msgstr "Nikaragua"
2962
 
2963
- #: ../src/Tribe/Main.php:4178
2964
  msgid "Day"
2965
  msgstr "Den"
2966
 
2967
- #: ../src/Tribe/View_Helpers.php:204
2968
  msgid "Niger"
2969
  msgstr "Niger"
2970
 
2971
- #: ../src/Tribe/Main.php:4203 ../src/Tribe/Main.php:4204
2972
  msgid "Search"
2973
  msgstr "Hledat"
2974
 
2975
- #: ../src/Tribe/View_Helpers.php:205
2976
  msgid "Nigeria"
2977
  msgstr "Nigérie"
2978
 
2979
- #: ../src/Tribe/Main.php:4228 ../src/Tribe/Main.php:4244
2980
  msgid "Date"
2981
  msgstr "Datum"
2982
 
2983
- #: ../src/Tribe/View_Helpers.php:206
2984
  msgid "Niue"
2985
  msgstr "Niue"
2986
 
2987
- #: ../src/Tribe/Main.php:4231
2988
  msgid "%s In"
2989
  msgstr "%s V"
2990
 
2991
- #: ../src/Tribe/View_Helpers.php:207
2992
  msgid "Norfolk Island"
2993
  msgstr "Norfolk"
2994
 
2995
- #: ../src/Tribe/Main.php:4233
2996
  msgid "%s From"
2997
  msgstr "%s Od"
2998
 
2999
- #: ../src/Tribe/View_Helpers.php:208
3000
  msgid "Northern Mariana Islands"
3001
  msgstr "Severní Mariany"
3002
 
3003
- #: ../src/Tribe/Main.php:4235
3004
  msgid "Day Of"
3005
  msgstr "Den z"
3006
 
3007
- #: ../src/Tribe/View_Helpers.php:209
3008
  msgid "Norway"
3009
  msgstr "Norsko"
3010
 
3011
- #: ../src/Tribe/Main.php:4310
3012
  msgid "Once Every 30 Mins"
3013
  msgstr "Jednou za 30 minut"
3014
 
3015
- #: ../src/Tribe/View_Helpers.php:210
3016
  msgid "Oman"
3017
  msgstr "Omán"
3018
 
3019
- #: ../src/Tribe/Options_Exception.php:19 ../src/Tribe/Post_Exception.php:22
3020
  msgid "Error"
3021
  msgstr "Chyba"
3022
 
3023
- #: ../src/Tribe/View_Helpers.php:211
3024
  msgid "Pakistan"
3025
  msgstr "Pákistán"
3026
 
3027
- #: ../src/Tribe/PUE/Checker.php:304
3028
  msgid "License Key"
3029
  msgstr "Licenční klíč"
3030
 
3031
- #: ../src/Tribe/View_Helpers.php:212
3032
  msgid "Palau"
3033
  msgstr "Palau"
3034
 
3035
- #: ../src/Tribe/PUE/Checker.php:305
3036
  msgid "A valid license key is required for support and updates"
3037
  msgstr "Platný licenční klíč je vyžadován pro podporu a aktualizace"
3038
 
3039
- #: ../src/Tribe/View_Helpers.php:213
3040
  msgid "Panama"
3041
  msgstr "Panama"
3042
 
3043
- #: ../src/Tribe/PUE/Checker.php:377
3044
  msgid "License key(s) updated."
3045
  msgstr "Licenční klíč(e) byl aktualizován."
3046
 
3047
- #: ../src/Tribe/View_Helpers.php:214
3048
  msgid "Papua New Guinea"
3049
  msgstr "Papua-Nová Guinea"
3050
 
3051
- #: ../src/Tribe/PUE/Checker.php:419
3052
  msgid "Sorry, key validation server is not available."
3053
  msgstr "Omlouváme se, ale server k ověření klíče není dostupný."
3054
 
3055
- #: ../src/Tribe/View_Helpers.php:215
3056
  msgid "Paraguay"
3057
  msgstr "Paraguay"
3058
 
3059
- #: ../src/Tribe/PUE/Checker.php:421
3060
  msgid "Sorry, this key is expired."
3061
  msgstr "Omlouváme se, ale platnost tohoto klíče skončila."
3062
 
3063
- #: ../src/Tribe/View_Helpers.php:216
3064
  msgid "Peru"
3065
  msgstr "Peru"
3066
 
3067
- #: ../src/Tribe/PUE/Checker.php:424
3068
  msgid "Sorry, this key is out of installs."
3069
  msgstr "Omlouváme se, ale tento klíč je mimo instalaci."
3070
 
3071
- #: ../src/Tribe/View_Helpers.php:217
3072
  msgid "Philippines"
3073
  msgstr "Filipíny"
3074
 
3075
- #: ../src/Tribe/PUE/Checker.php:425
3076
  msgid "Why am I seeing this message?"
3077
  msgstr "Proč vidím tuto zprávu?"
3078
 
3079
- #: ../src/Tribe/View_Helpers.php:218
3080
  msgid "Pitcairn"
3081
  msgstr "Pitcairnovy ostrovy"
3082
 
3083
- #: ../src/Tribe/PUE/Checker.php:428
3084
  msgid "Sorry, this key is not valid."
3085
  msgstr "Omlouváme se, ale tento klíč není platný."
3086
 
3087
- #: ../src/Tribe/View_Helpers.php:219
3088
  msgid "Poland"
3089
  msgstr "Polsko"
3090
 
3091
- #: ../src/Tribe/PUE/Checker.php:430
3092
  msgid "Valid Key! Expires on %s"
3093
  msgstr "Platný klíč! Platnost tohoto klíče skončí %s"
3094
 
3095
- #: ../src/Tribe/View_Helpers.php:220
3096
  msgid "Portugal"
3097
  msgstr "Portugalsko"
3098
 
3099
- #: ../src/Tribe/PUE/Checker.php:436
3100
  msgid "Hmmm... something's wrong with this validator. Please contact <a href=\"%s\">support.</a>"
3101
  msgstr "Hmmm... něco je špatně s tímto validátorem. Kontaktujte prosím <a href=\"%s\">podporu.</a>"
3102
 
3103
- #: ../src/Tribe/View_Helpers.php:221
3104
  msgid "Puerto Rico"
3105
  msgstr "Portoriko"
3106
 
3107
- #: ../src/Tribe/Settings.php:160 ../src/Tribe/Settings.php:176
3108
  msgid "The Events Calendar Settings"
3109
  msgstr "Nastavení pro The Events Calendar"
3110
 
3111
- #: ../src/Tribe/View_Helpers.php:222
3112
  msgid "Qatar"
3113
  msgstr "Katar"
3114
 
3115
- #: ../src/Tribe/Settings.php:176
3116
  msgid "Events Settings"
3117
  msgstr "Nastavení akcí"
3118
 
3119
- #: ../src/Tribe/View_Helpers.php:223
3120
  msgid "Reunion"
3121
  msgstr "Réunion"
3122
 
3123
- #: ../src/Tribe/Settings.php:239
3124
  msgid "%s Settings"
3125
  msgstr "Nastavení %s"
3126
 
3127
- #: ../src/Tribe/View_Helpers.php:224
3128
  msgid "Romania"
3129
  msgstr "Rumunsko"
3130
 
3131
- #: ../src/Tribe/Settings.php:253
3132
  msgid "You've requested a non-existent tab."
3133
  msgstr "Požadovaný panel neexistuje."
3134
 
3135
- #: ../src/Tribe/View_Helpers.php:225
3136
  msgid "Russian Federation"
3137
  msgstr "Rusko"
3138
 
3139
- #: ../src/Tribe/Settings.php:261
3140
- msgid " Save Changes"
3141
- msgstr "Uložit změny"
3142
-
3143
- #: ../src/Tribe/View_Helpers.php:226
3144
  msgid "Rwanda"
3145
  msgstr "Rwanda"
3146
 
3147
- #: ../src/Tribe/Settings.php:309
3148
  msgid "You don't have permission to do that."
3149
  msgstr "Nemáte dostatečné oprávnění pro tuto činnost."
3150
 
3151
- #: ../src/Tribe/View_Helpers.php:227
3152
  msgid "Saint Kitts And Nevis"
3153
  msgstr "Svatý Kryštof a Nevis"
3154
 
3155
- #: ../src/Tribe/Settings.php:315
3156
  msgid "The request was sent insecurely."
3157
  msgstr "Požadavek byl odeslán nezabezpečený."
3158
 
3159
- #: ../src/Tribe/View_Helpers.php:228
3160
  msgid "Saint Lucia"
3161
  msgstr "Svatá Lucie"
3162
 
3163
- #: ../src/Tribe/Settings.php:321
3164
  msgid "The request wasn't sent from this tab."
3165
  msgstr "Požadavek nebyl odeslán z tohoto panelu."
3166
 
3167
- #: ../src/Tribe/View_Helpers.php:229
3168
  msgid "Saint Vincent And The Grenadines"
3169
  msgstr "Svatý Vincenc a Grenadiny"
3170
 
3171
- #: ../src/Tribe/Settings.php:489
3172
  msgid "Your form had the following errors:"
3173
  msgstr "Ve formuláři se vyskytly následující chyby:"
3174
 
3175
- #: ../src/Tribe/View_Helpers.php:230
3176
  msgid "Samoa"
3177
  msgstr "Samoa"
3178
 
3179
- #: ../src/Tribe/Settings.php:498
3180
  msgid "None of your settings were saved. Please try again."
3181
  msgstr "Žádné z vašich nastavení nebylo uloženo. Zkuste to prosím znovu."
3182
 
3183
- #: ../src/Tribe/View_Helpers.php:231
3184
  msgid "San Marino"
3185
  msgstr "San Marino"
3186
 
3187
- #: ../src/Tribe/Settings.php:498
3188
  msgid "The above setting was not saved. Other settings were successfully saved."
3189
  msgid_plural "The above settings were not saved. Other settings were successfully saved."
3190
  msgstr[0] "Výše uvedené nastavení nebylo uloženo. Ostatní nastavení byla úspěšně uložena."
3191
  msgstr[1] "Výše uvedená nastavení nebyla uložena. Ostatní nastavení byla úspěšně uložena."
3192
  msgstr[2] "Výše uvedená nastavení nebyla uložena. Ostatní nastavení byla úspěšně uložena."
3193
 
3194
- #: ../src/Tribe/View_Helpers.php:232
3195
  msgid "Sao Tome And Principe"
3196
  msgstr "Svatý Tomáš a Princův ostrov"
3197
 
3198
- #: ../src/Tribe/Settings_Tab.php:224
3199
  msgid "There are no fields setup for this tab yet."
3200
  msgstr "Pro tento panel nejsou zatím nastavena žádná pole."
3201
 
3202
- #: ../src/Tribe/View_Helpers.php:233
3203
  msgid "Saudi Arabia"
3204
  msgstr "Saúdská Arábie"
3205
 
3206
- #: ../src/Tribe/Support.php:46
3207
  msgid "Sometimes it's hard to tell what's going wrong without knowing more about your system steup. For your convenience, we've put together a little report on what's cooking under the hood."
3208
  msgstr "Někdy je těžké říct, co je špatně bez podrobnějších informací o nastavení vašeho systému. Proto jsme sestavili malou zprávu o tom, co máte pod kapotou."
3209
 
3210
- #: ../src/Tribe/View_Helpers.php:234
3211
  msgid "Senegal"
3212
  msgstr "Senegal"
3213
 
3214
- #: ../src/Tribe/Support.php:47
3215
  msgid "If you suspect that the problem you're having is related to another plugin, or we're just plain having trouble reproducing your bug report, please copy and send all of this to our support team."
3216
  msgstr "Pokud máte podezření, že váš problém má spojitost s jiným pluginem anebo jen zkrátka máme potíže s reprodukcí vašeho chybového hlášení, prosím zkopírujte a pošlete to vše našemu týmu technické podpory."
3217
 
3218
- #: ../src/Tribe/View_Helpers.php:235
3219
  msgid "Serbia"
3220
  msgstr "Srbsko"
3221
 
3222
- #: ../src/Tribe/Support.php:51
3223
  msgid "System Information"
3224
  msgstr "Informace o systému"
3225
 
3226
- #: ../src/Tribe/View_Helpers.php:236
3227
  msgid "Seychelles"
3228
  msgstr "Seychely"
3229
 
3230
- #: ../src/Tribe/Support.php:137
3231
  msgid "Unknown or not set"
3232
  msgstr "Neznámý nebo nenastavený"
3233
 
3234
- #: ../src/Tribe/View_Helpers.php:237
3235
  msgid "Sierra Leone"
3236
  msgstr "Sierra Leone"
3237
 
3238
- #: ../src/Tribe/Template/Day.php:99 ../src/Tribe/Template/Day.php:115
3239
  msgid "All Day"
3240
  msgstr "Celý den"
3241
 
3242
- #: ../src/Tribe/View_Helpers.php:238
3243
  msgid "Singapore"
3244
  msgstr "Singapur"
3245
 
3246
- #: ../src/Tribe/Template/Day.php:102 ../src/Tribe/Template/Day.php:118
3247
  msgid "Ongoing"
3248
  msgstr "Probíhající"
3249
 
3250
- #: ../src/Tribe/View_Helpers.php:239
3251
  msgid "Slovakia (Slovak Republic)"
3252
  msgstr "Slovensko"
3253
 
3254
- #: ../src/Tribe/Template/Day.php:136
3255
- msgid "No matching %s listed under %s scheduled for <strong>%s</strong>. Please try another day."
3256
- msgstr ""
3257
-
3258
- #: ../src/Tribe/View_Helpers.php:240
3259
  msgid "Slovenia"
3260
  msgstr "Slovinsko"
3261
 
3262
- #: ../src/Tribe/Template/Day.php:138
3263
- msgid "No %s scheduled for <strong>%s</strong>. Please try another day."
3264
- msgstr ""
3265
-
3266
- #: ../src/Tribe/View_Helpers.php:241
3267
  msgid "Solomon Islands"
3268
  msgstr "Šalamounovy ostrovy"
3269
 
3270
- #: ../src/Tribe/Template/Month.php:250
3271
  msgid "There were no results found for <strong>\"%s\"</strong> this month. Try searching next month."
3272
  msgstr "Nebyly nalezeny žádné záznamy pro <strong>\"%s\"</strong> v tomto měsíci. Zkuste hledat v dalším měsíci."
3273
 
3274
- #: ../src/Tribe/View_Helpers.php:242
3275
  msgid "Somalia"
3276
  msgstr "Somálsko"
3277
 
3278
- #: ../src/Tribe/Template/Month.php:253
3279
- msgid "No matching %s listed under %s. Please try viewing the full calendar for a complete list of events."
3280
- msgstr ""
3281
-
3282
- #: ../src/Tribe/View_Helpers.php:243
3283
  msgid "South Africa"
3284
  msgstr "Jihoafrická republika"
3285
 
3286
- #: ../src/Tribe/Template/Month.php:255 ../src/Tribe/Template_Factory.php:366
3287
  msgid "There were no results found."
3288
  msgstr "Nebyly nalezeny žádné záznamy."
3289
 
3290
- #: ../src/Tribe/View_Helpers.php:244
3291
  msgid "South Georgia, South Sandwich Islands"
3292
  msgstr "Jižní Georgie a Jižní Sandwichovy ostrovy"
3293
 
3294
- #: ../src/Tribe/Template/Month.php:411
3295
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
3296
  msgstr ""
3297
 
3298
- #: ../src/Tribe/View_Helpers.php:245
3299
  msgid "Spain"
3300
  msgstr "Španělsko"
3301
 
3302
- #: ../src/Tribe/Template/Single_Event.php:120
3303
  msgid "This %s has passed."
3304
  msgstr "%s již proběhla."
3305
 
3306
- #: ../src/Tribe/View_Helpers.php:246
3307
  msgid "Sri Lanka"
3308
  msgstr "Šrí Lanka"
3309
 
3310
- #: ../src/Tribe/Template_Factory.php:353
3311
  msgid "There were no results found for <strong>\"%s\"</strong>."
3312
  msgstr "Nebyly nalezeny žádné záznamy pro <strong>\"%s\"</strong>."
3313
 
3314
- #: ../src/Tribe/View_Helpers.php:247
3315
  msgid "St. Helena"
3316
  msgstr "Svatá Helena"
3317
 
3318
- #: ../src/Tribe/Template_Factory.php:355
3319
- msgid "No results were found for %s in or near <strong>\"%s\"</strong>."
3320
- msgstr ""
3321
-
3322
- #: ../src/Tribe/View_Helpers.php:248
3323
  msgid "St. Pierre And Miquelon"
3324
  msgstr "Saint-Pierre a Miquelon"
3325
 
3326
- #: ../src/Tribe/Template_Factory.php:357
3327
- msgid "No upcoming %s listed under %s. Check out upcoming %s for this category or view the full calendar."
3328
- msgstr ""
3329
-
3330
- #: ../src/Tribe/View_Helpers.php:249
3331
  msgid "Sudan"
3332
  msgstr "Súdán"
3333
 
3334
- #: ../src/Tribe/Template_Factory.php:359 ../src/Tribe/Template_Factory.php:364
3335
- msgid "No matching %s listed under %s. Please try viewing the full calendar for a complete list of %s."
3336
- msgstr ""
3337
-
3338
- #: ../src/Tribe/View_Helpers.php:250
3339
  msgid "Suriname"
3340
  msgstr "Surinam"
3341
 
3342
- #: ../src/Tribe/Template_Factory.php:361
3343
  msgid "No previous %s "
3344
  msgstr ""
3345
 
3346
- #: ../src/Tribe/View_Helpers.php:251
3347
  msgid "Svalbard And Jan Mayen Islands"
3348
  msgstr "Špicberky"
3349
 
3350
- #: ../src/Tribe/Templates.php:618
3351
  msgid "Template overrides should be moved to the correct subdirectory: %s"
3352
  msgstr "Přepisy šablon je třeba přemístit do správného podadresáře: %s"
3353
 
3354
- #: ../src/Tribe/View_Helpers.php:252
3355
  msgid "Swaziland"
3356
  msgstr "Svazijsko"
3357
 
3358
- #: ../src/Tribe/Templates.php:660
3359
  msgid "Template overrides should be moved to the correct subdirectory: tribe_get_template_part('%s')"
3360
  msgstr "Přepisy šablon je třeba přemístit do správného podadresáře: tribe_get_template_part('%s')"
3361
 
3362
- #: ../src/Tribe/View_Helpers.php:253
3363
  msgid "Sweden"
3364
  msgstr "Švédsko"
3365
 
3366
- #: ../src/Tribe/Tickets/Attendees_Table.php:74
3367
  msgid "Order #"
3368
  msgstr "Objednávka č."
3369
 
3370
- #: ../src/Tribe/View_Helpers.php:254
3371
  msgid "Switzerland"
3372
  msgstr "Švýcarsko"
3373
 
3374
- #: ../src/Tribe/Tickets/Attendees_Table.php:75
3375
  msgid "Order Status"
3376
  msgstr "Stav objednávky"
3377
 
3378
- #: ../src/Tribe/View_Helpers.php:255
3379
  msgid "Syrian Arab Republic"
3380
  msgstr "Sýrie"
3381
 
3382
- #: ../src/Tribe/Tickets/Attendees_Table.php:76
3383
  msgid "Purchaser name"
3384
  msgstr "Jméno kupce"
3385
 
3386
- #: ../src/Tribe/View_Helpers.php:256
3387
  msgid "Taiwan"
3388
  msgstr "Tchaj-wan (Čínská republika)"
3389
 
3390
- #: ../src/Tribe/Tickets/Attendees_Table.php:77
3391
  msgid "Purchaser email"
3392
  msgstr "Email kupce"
3393
 
3394
- #: ../src/Tribe/View_Helpers.php:257
3395
  msgid "Tajikistan"
3396
  msgstr "Tádžikistán"
3397
 
3398
- #: ../src/Tribe/Tickets/Attendees_Table.php:78
3399
  msgid "Ticket type"
3400
  msgstr "Typ vstupenky"
3401
 
3402
- #: ../src/Tribe/View_Helpers.php:258
3403
  msgid "Tanzania, United Republic Of"
3404
  msgstr "Tanzanie"
3405
 
3406
- #: ../src/Tribe/Tickets/Attendees_Table.php:79
3407
- #: ../src/views/tickets/email.php:305
3408
  msgid "Ticket #"
3409
  msgstr "Vstupenka č."
3410
 
3411
- #: ../src/Tribe/View_Helpers.php:259
3412
  msgid "Thailand"
3413
  msgstr "Thajsko"
3414
 
3415
- #: ../src/Tribe/Tickets/Attendees_Table.php:80
3416
- #: ../src/views/tickets/email.php:317
3417
  msgid "Security Code"
3418
  msgstr "Kontrolní kód"
3419
 
3420
- #: ../src/Tribe/View_Helpers.php:260
3421
  msgid "Togo"
3422
  msgstr "Togo"
3423
 
3424
- #: ../src/Tribe/Tickets/Attendees_Table.php:81
3425
- #: ../src/Tribe/Tickets/Attendees_Table.php:168
3426
- #: ../src/Tribe/Tickets/Attendees_Table.php:235
3427
  msgid "Check in"
3428
  msgstr "Zaškrtnout"
3429
 
3430
- #: ../src/Tribe/View_Helpers.php:261
3431
  msgid "Tokelau"
3432
  msgstr "Tokelau"
3433
 
3434
- #: ../src/Tribe/Tickets/Attendees_Table.php:169
3435
- #: ../src/Tribe/Tickets/Attendees_Table.php:236
3436
  msgid "Undo Check in"
3437
  msgstr "Zrušit zaškrtnutí"
3438
 
3439
- #: ../src/Tribe/View_Helpers.php:262
3440
  msgid "Tonga"
3441
  msgstr "Tonga"
3442
 
3443
- #: ../src/Tribe/Tickets/Attendees_Table.php:204
3444
  msgid "Print"
3445
  msgstr "Tisk"
3446
 
3447
- #: ../src/Tribe/View_Helpers.php:263
3448
  msgid "Trinidad And Tobago"
3449
  msgstr "Trinidad a Tobago"
3450
 
3451
- #: ../src/Tribe/Tickets/Attendees_Table.php:205
3452
  msgid "Email"
3453
  msgstr "Email"
3454
 
3455
- #: ../src/Tribe/View_Helpers.php:264
3456
  msgid "Tunisia"
3457
  msgstr "Tunisko"
3458
 
3459
- #: ../src/Tribe/Tickets/Attendees_Table.php:214 ../src/Tribe/iCal.php:119
3460
  msgid "Export"
3461
  msgstr "Export"
3462
 
3463
- #: ../src/Tribe/View_Helpers.php:265
3464
  msgid "Turkey"
3465
  msgstr "Turecko"
3466
 
3467
- #: ../src/Tribe/Tickets/Attendees_Table.php:221
3468
  msgid "Filter by purchaser name, ticket #, order # or security code"
3469
  msgstr ""
3470
 
3471
- #: ../src/Tribe/View_Helpers.php:266
3472
  msgid "Turkmenistan"
3473
  msgstr "Turkmenistán"
3474
 
3475
- #: ../src/Tribe/Tickets/Attendees_Table.php:237
3476
- #: ../src/admin-views/tickets/list.php:22
3477
  msgid "Delete"
3478
  msgstr "Smazat"
3479
 
3480
- #: ../src/Tribe/View_Helpers.php:267
3481
  msgid "Turks And Caicos Islands"
3482
  msgstr "Turks a Caicos"
3483
 
3484
- #: ../src/Tribe/Tickets/Metabox.php:26
3485
- #: ../src/admin-views/admin-update-message.php:52
3486
  msgid "Tickets"
3487
  msgstr "Vstupenky"
3488
 
3489
- #: ../src/Tribe/View_Helpers.php:268
3490
  msgid "Tuvalu"
3491
  msgstr "Tuvalu"
3492
 
3493
- #: ../src/Tribe/Tickets/Metabox.php:71
3494
  msgid "Ticket header image"
3495
  msgstr "Obrázek v záhlaví vstupenky"
3496
 
3497
- #: ../src/Tribe/View_Helpers.php:269
3498
  msgid "Uganda"
3499
  msgstr "Uganda"
3500
 
3501
- #: ../src/Tribe/Tickets/Metabox.php:72
3502
  msgid "Set as ticket header"
3503
  msgstr "Použít jako obrázek v záhlaví vstupenky"
3504
 
3505
- #: ../src/Tribe/View_Helpers.php:270
3506
  msgid "Ukraine"
3507
  msgstr "Ukrajina"
3508
 
3509
- #: ../src/Tribe/Tickets/Tickets.php:328
3510
  msgid "Your ticket has been saved."
3511
  msgstr "Vaše vstupenka byla uložena."
3512
 
3513
- #: ../src/Tribe/View_Helpers.php:271
3514
  msgid "United Arab Emirates"
3515
  msgstr "Spojené arabské emiráty"
3516
 
3517
- #: ../src/Tribe/Tickets/Tickets.php:409
3518
  msgid "Your ticket has been deleted."
3519
  msgstr "Vaše vstupenka byla smazána."
3520
 
3521
- #: ../src/Tribe/View_Helpers.php:272
3522
  msgid "United Kingdom"
3523
  msgstr "Spojené království"
3524
 
3525
- #: ../src/Tribe/Tickets/Tickets_Pro.php:78
3526
- #: ../src/admin-views/tickets/list.php:41
3527
  msgid "See who purchased tickets to this event"
3528
  msgstr "Kdo si koupil vstupenky na tuto akci"
3529
 
3530
- #: ../src/Tribe/View_Helpers.php:273
3531
  msgid "United States Minor Outlying Islands"
3532
  msgstr "Menší odlehlé ostrovy Spojených států amerických"
3533
 
3534
- #: ../src/Tribe/Tickets/Tickets_Pro.php:78
3535
- #: ../src/admin-views/tickets/attendees.php:11
3536
- #: ../src/admin-views/tickets/list.php:41
3537
  msgid "Attendees"
3538
  msgstr "Účastníci"
3539
 
3540
- #: ../src/Tribe/View_Helpers.php:274
3541
  msgid "Uruguay"
3542
  msgstr "Uruguay"
3543
 
3544
- #: ../src/Tribe/Tickets/Tickets_Pro.php:113
3545
  msgid "You need to select a user or type a valid email address"
3546
  msgstr "Je třeba vybrat uživatele nebo zadat platnou emailovou adresu"
3547
 
3548
- #: ../src/Tribe/View_Helpers.php:275
3549
  msgid "Uzbekistan"
3550
  msgstr "Uzbekistán"
3551
 
3552
- #: ../src/Tribe/Tickets/Tickets_Pro.php:114
3553
  msgid "Sending..."
3554
  msgstr "Odesílání..."
3555
 
3556
- #: ../src/Tribe/View_Helpers.php:276
3557
  msgid "Vanuatu"
3558
  msgstr "Vanuatu"
3559
 
3560
- #: ../src/Tribe/Tickets/Tickets_Pro.php:140
3561
  msgid "Columns"
3562
  msgstr "Sloupce"
3563
 
3564
- #: ../src/Tribe/View_Helpers.php:277
3565
  msgid "Venezuela"
3566
  msgstr "Venezuela"
3567
 
3568
- #: ../src/Tribe/Tickets/Tickets_Pro.php:140
3569
  msgid "You can use Screen Options to select which columns you want to see. The selection works in the table below, in the email, for print and for the CSV export."
3570
  msgstr "Pomocí záložky &#8222;Nastavení zobrazených informací&#8220; si můžete vybrat, které sloupce chcete zobrazit. Tento výběr se projeví při výpisu, při odesílání emailem, při tisku a při exportu do CSV souboru."
3571
 
3572
- #: ../src/Tribe/View_Helpers.php:278
3573
  msgid "Viet Nam"
3574
  msgstr "Vietnam"
3575
 
3576
- #: ../src/Tribe/Tickets/Tickets_Pro.php:230
3577
  msgid "Yes"
3578
  msgstr "Ano"
3579
 
3580
- #: ../src/Tribe/View_Helpers.php:279
3581
  msgid "Virgin Islands (British)"
3582
  msgstr "Britské Panenské ostrovy"
3583
 
3584
- #: ../src/Tribe/Tickets/Tickets_Pro.php:262
3585
  msgid "attendees"
3586
  msgstr "ucastnici"
3587
 
3588
- #: ../src/Tribe/View_Helpers.php:280
3589
  msgid "Virgin Islands (U.S.)"
3590
  msgstr "Americké Panenské ostrovy"
3591
 
3592
- #: ../src/Tribe/Tickets/Tickets_Pro.php:316
3593
  msgid "Attendee List for: %s"
3594
  msgstr "Seznam účastníků na: %s"
3595
 
3596
- #: ../src/Tribe/Validate.php:76 ../src/Tribe/Validate.php:117
3597
  msgid "Invalid or incomplete field passed"
3598
  msgstr "Zadáno neplatné nebo neúplné pole"
3599
 
3600
- #: ../src/Tribe/Validate.php:77 ../src/Tribe/Validate.php:112
3601
- #: ../src/Tribe/Validate.php:118
3602
  msgid "Field ID:"
3603
  msgstr "ID pole:"
3604
 
3605
- #: ../src/Tribe/Validate.php:111
3606
  msgid "Non-existant field validation function passed"
3607
  msgstr "Zadána neexistující validační funkce pole"
3608
 
3609
- #: ../src/Tribe/Validate.php:112
3610
  msgctxt "non-existant function name passed for field validation"
3611
  msgid "with function name:"
3612
  msgstr "se jménem funkce:"
3613
 
3614
- #: ../src/Tribe/Validate.php:135 ../src/Tribe/Validate.php:151
3615
  msgid "%s must contain numbers and letters only"
3616
  msgstr "%s se musí skládat pouze z číslic a písmen"
3617
 
3618
- #: ../src/Tribe/Validate.php:167
3619
  msgid "%s must contain numbers, letters and dots only"
3620
  msgstr "%s se musí skládat pouze z číslic, písmen a teček."
3621
 
3622
- #: ../src/Tribe/Validate.php:181
3623
  msgid "%s must be a positive number."
3624
  msgstr "%s musí být kladné číslo."
3625
 
3626
- #: ../src/Tribe/Validate.php:196
3627
  msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
3628
  msgstr "%s musí být platným názvem v URL (číslice, písmena, pomlčky, a podtržítka)."
3629
 
3630
- #: ../src/Tribe/Validate.php:211
3631
  msgid "%s must be a valid absolute URL."
3632
  msgstr "%s musí být platná absolutní adresa URL."
3633
 
3634
- #: ../src/Tribe/Validate.php:227 ../src/Tribe/Validate.php:244
3635
- #: ../src/Tribe/Validate.php:266
3636
  msgid "%s must have a value that's part of its options."
3637
  msgstr "%s musí mít hodnotu, která je jednou z možných voleb."
3638
 
3639
- #: ../src/Tribe/Validate.php:280
3640
  msgid "Comparison validation failed because no comparison value was provided, for field %s"
3641
  msgstr "Kontrola porovnávání se nezdařila, protože nebyla zadána porovnávací hodnota pro pole %s"
3642
 
3643
- #: ../src/Tribe/Validate.php:287
3644
  msgid "%s cannot be the same as %s."
3645
  msgstr "%s nemůže být stejné jako %s."
3646
 
3647
- #: ../src/Tribe/Validate.php:289
3648
  msgid "%s cannot be a duplicate"
3649
  msgstr "%s nemůže být duplicitní"
3650
 
3651
- #: ../src/Tribe/Validate.php:305
3652
  msgid "%s must be a number or percentage."
3653
  msgstr "%s musí být číslo nebo procento."
3654
 
3655
- #: ../src/Tribe/Validate.php:359
3656
  msgid "%s must be a number between 0 and 21."
3657
  msgstr "%s musí být číslo v rozmezí 0 až 21."
3658
 
3659
- #: ../src/Tribe/Validate.php:375
3660
  msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
3661
  msgstr "%s se musí skládat pouze z písmen, číslic, pomlček, apostrofů a mezer."
3662
 
3663
- #: ../src/Tribe/Validate.php:391
3664
  msgid "%s must consist of letters, spaces, apostrophes, and dashes."
3665
  msgstr "%s se musí skládat pouze z písmen, mezer, apostrofů a pomlček."
3666
 
3667
- #: ../src/Tribe/Validate.php:405
3668
  msgid "%s must consist of 5 numbers."
3669
  msgstr "%s se musí skládat z 5 čísel."
3670
 
3671
- #: ../src/Tribe/Validate.php:419
3672
  msgid "%s must be a phone number."
3673
  msgstr "%s musí být telefonní číslo."
3674
 
3675
- #: ../src/Tribe/Validate.php:435
3676
  msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
3677
  msgstr "Seznam zemí musí být formátován jako jedna země na řádek v následujícím formátu: <br>US, United States <br> UK, United Kingdom."
3678
 
3679
- #: ../src/Tribe/View_Helpers.php:26 ../src/Tribe/View_Helpers.php:45
3680
  msgid "Select a Country:"
3681
  msgstr "Vyberte zemi:"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: The Events Calendar\n"
12
 
13
+ #. Description of the plugin/theme
14
+ msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome."
15
+ msgstr ""
16
+
17
+ #. Author of the plugin/theme
18
+ msgid "Modern Tribe, Inc."
19
+ msgstr ""
20
+
21
+ #. Author URI of the plugin/theme
22
+ msgid "http://m.tri.be/1x"
23
+ msgstr ""
24
+
25
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:62
26
+ msgid "<a href=\"%s\">Edit the page slug</a>"
27
+ msgstr ""
28
+
29
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:63
30
+ msgid "Ask the site administrator to edit the page slug"
31
+ msgstr ""
32
+
33
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:68
34
+ msgid "<a href=\"%s\">edit The Events Calendar settings</a>."
35
+ msgstr ""
36
+
37
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:69
38
+ msgid " ask the site administrator set a different Events URL slug."
39
+ msgstr ""
40
+
41
+ #: src/Tribe/Admin/Timezone_Updater.php:77
42
+ msgid "Please wait while timezone data is added to your events."
43
+ msgstr ""
44
+
45
+ #: src/Tribe/Admin/Timezone_Updater.php:78
46
+ msgid "Update complete: timezone data has been added to all events in the database."
47
+ msgstr ""
48
+
49
+ #: src/Tribe/Admin/Timezone_Updater.php:87
50
+ msgid "%d%% complete"
51
+ msgstr ""
52
+
53
+ #: src/Tribe/Admin/Timezone_Updater.php:105
54
+ msgid "A problem stopped the timezone update process from completing. Please refresh and try again."
55
+ msgstr ""
56
+
57
+ #: src/Tribe/Importer/Column_Mapper.php:64
58
+ msgid "Event Currency Symbol"
59
+ msgstr ""
60
+
61
+ #: src/Tribe/Importer/Column_Mapper.php:65
62
+ msgid "Event Currency Position"
63
+ msgstr ""
64
+
65
+ #: src/Tribe/Importer/Column_Mapper.php:67
66
+ msgid "Event Tags"
67
+ msgstr ""
68
+
69
+ #: src/Tribe/Main.php:2241
70
+ msgid "page"
71
+ msgstr ""
72
+
73
+ #: src/Tribe/Main.php:2242
74
+ msgid "event"
75
+ msgstr ""
76
+
77
+ #: src/Tribe/Main.php:2243
78
+ msgid "events"
79
+ msgstr ""
80
+
81
+ #: src/Tribe/Main.php:2244
82
+ msgid "all"
83
+ msgstr ""
84
+
85
+ #: src/Tribe/Settings.php:261
86
+ msgid "Save Changes"
87
+ msgstr ""
88
+
89
+ #: src/Tribe/Template/Day.php:136
90
+ msgid "No matching %1$s listed under %2$s scheduled for <strong>%3$s</strong>. Please try another day."
91
+ msgstr ""
92
+
93
+ #: src/Tribe/Template/Day.php:138
94
+ msgid "No %1$s scheduled for <strong>%2$s</strong>. Please try another day."
95
+ msgstr ""
96
+
97
+ #: src/Tribe/Template/Month.php:287
98
+ msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
99
+ msgstr ""
100
+
101
+ #: src/Tribe/Template_Factory.php:355
102
+ msgid "No results were found for %1$s in or near <strong>\"%2$s\"</strong>."
103
+ msgstr ""
104
+
105
+ #: src/Tribe/Template_Factory.php:357
106
+ msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
107
+ msgstr ""
108
+
109
+ #: src/Tribe/Template_Factory.php:359 src/Tribe/Template_Factory.php:364
110
+ msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
111
+ msgstr ""
112
+
113
+ #: src/admin-views/events-meta-box.php:121
114
+ msgid "Timezone:"
115
+ msgstr ""
116
+
117
+ #: src/admin-views/tickets/attendees.php:103
118
+ msgid "Sold %1$d %2$s"
119
+ msgstr ""
120
+
121
+ #: src/admin-views/tickets/attendees.php:106
122
+ msgid "Sold %1$d of %2$d %3$s"
123
+ msgstr ""
124
+
125
+ #: src/admin-views/tickets/list.php:69
126
+ msgid "Sold %1$d of %2$d"
127
+ msgstr ""
128
+
129
+ #: src/admin-views/tribe-options-general.php:94
130
+ msgid "You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=\"%1$s\">%2$s</a>. In order to edit the slug here, <a href=\"%3$soptions-permalink.php\">enable pretty permalinks</a>."
131
+ msgstr ""
132
+
133
+ #: src/admin-views/tribe-options-help.php:199
134
+ msgid "If you find that you aren't getting the level of service you've come to expect from Modern Tribe, shoot us an email at %1$s or tweet %2$s and tell us why. We'll do what we can to make it right."
135
+ msgstr ""
136
+
137
+ #: src/admin-views/tribe-options-licenses.php:13
138
+ msgid "<p>The license key you received when completing your purchase from %1$s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. <strong>Find your license keys at <a href=\"%2$s\" target=\"_blank\">%3$s</a></strong>.</p> <p>Each paid add-on has its own unique license key. Simply paste the key into its appropriate field on below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message.</p> <p>If you're seeing a red message telling you that your key isn't valid or is out of installs, visit <a href=\"%4$s\" target=\"_blank\">%5$s</a> to manage your installs or renew / upgrade your license.</p><p>Not seeing an update but expecting one? In WordPress, go to <a href=\"%6$s\">Dashboard > Updates</a> and click \"Check Again\".</p>"
139
+ msgstr ""
140
+
141
+ #: src/admin-views/tribe-options-timezones.php:4
142
+ msgid "Enable timezone support"
143
+ msgstr ""
144
+
145
+ #: src/admin-views/tribe-options-timezones.php:6
146
+ msgid "Update Timezone Data"
147
+ msgstr ""
148
+
149
+ #: src/admin-views/tribe-options-timezones.php:7
150
+ msgid "Click this button to update your database and take advantage of additional timezone capabilities. Please <a href=\"%s\" target=\"_blank\">configure WordPress</a> to use the correct timezone before clicking this button!"
151
+ msgstr ""
152
+
153
+ #: src/admin-views/tribe-options-timezones.php:27
154
+ msgid "Timezone Settings"
155
+ msgstr ""
156
+
157
+ #: src/admin-views/tribe-options-timezones.php:35
158
+ msgid "Timezone mode"
159
+ msgstr ""
160
+
161
+ #: src/admin-views/tribe-options-timezones.php:39
162
+ msgid "Use the local timezones for each event"
163
+ msgstr ""
164
+
165
+ #: src/admin-views/tribe-options-timezones.php:40
166
+ msgid "Use the sitewide timezone everywhere"
167
+ msgstr ""
168
+
169
+ #: src/admin-views/tribe-options-timezones.php:45
170
+ msgid "Show timezone"
171
+ msgstr ""
172
+
173
+ #: src/admin-views/tribe-options-timezones.php:46
174
+ msgid "Appends the timezone to the end of event scheduling information &ndash; this can be useful when you have events in numerous different timezones."
175
+ msgstr ""
176
+
177
+ #: src/functions/template-tags/general.php:411
178
+ msgctxt "category list label"
179
+ msgid "%s Category"
180
+ msgid_plural "%s Categories"
181
+ msgstr[0] ""
182
+ msgstr[1] ""
183
+ msgstr[2] ""
184
+
185
+ #: src/io/csv/admin-views/general.php:48
186
+ msgid "Save Settings"
187
+ msgstr ""
188
+
189
+ #: src/Tribe/Activation_Page.php:38
190
  msgid "Go to plugins page"
191
  msgstr ""
192
 
193
+ #: src/Tribe/Activation_Page.php:38
194
  msgid "Return to Plugins page"
195
  msgstr ""
196
 
197
+ #: src/Tribe/Activation_Page.php:46
198
  msgid "Go to WordPress Updates page"
199
  msgstr ""
200
 
201
+ #: src/Tribe/Activation_Page.php:46
202
  msgid "Return to WordPress Updates"
203
  msgstr ""
204
 
205
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88
206
  msgid "Create New %s"
207
  msgstr ""
208
 
209
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:148
210
  msgid "Add another organizer"
211
  msgstr ""
212
 
213
+ #: src/Tribe/Cost_Utils.php:108
214
  msgctxt "Cost range separator"
215
  msgid " - "
216
  msgstr ""
217
 
218
+ #: src/Tribe/PUE/Checker.php:416
219
  msgid "unknown date"
220
  msgstr ""
221
 
222
+ #: src/Tribe/Support.php:142
223
  msgid "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
224
  msgstr ""
225
 
226
+ #: src/admin-views/tribe-options-help.php:155
227
  msgid "If you're looking for help with The Events Calendar, you've come to the right place. We are committed to helping make your calendar be spectacular... and hope the resources provided below will help get you there."
228
  msgstr ""
229
 
230
+ #: src/admin-views/tribe-options-help.php:209
231
  msgid "Hi! We are Modern Tribe and we are here to help you be awesome. Thanks so much for installing our labor of love!"
232
  msgstr ""
233
 
234
+ #: src/admin-views/tribe-options-help.php:231
235
  msgid "Support Resources To Help You Be Awesome"
236
  msgstr ""
237
 
238
+ #: src/admin-views/tribe-options-licenses.php:17
239
  msgid ""
240
  "<strong> Using our plugins in a multisite network? </strong>\n"
241
  "\t\tPlease note that your license key will be applied to the entire network, not just this site."
242
  msgstr ""
243
 
244
+ #: src/admin-views/tribe-options-licenses.php:20
245
  msgid ""
246
  "Only license fields for <strong>network activated</strong> plugins will be\n"
247
  "\t\tlisted on this screen. "
248
  msgstr ""
249
 
250
+ #: src/Tribe/View_Helpers.php:334
251
  msgid "Louisiana"
252
  msgstr "Louisiana"
253
 
254
+ #: src/Tribe/View_Helpers.php:335
 
 
 
 
255
  msgid "Maine"
256
  msgstr "Maine"
257
 
258
+ #: src/admin-views/tribe-options-help.php:200
259
  msgid "More..."
260
  msgstr "Více..."
261
 
262
+ #: src/Tribe/View_Helpers.php:336
263
  msgid "Maryland"
264
  msgstr "Maryland"
265
 
266
+ #: src/Tribe/View_Helpers.php:337
267
  msgid "Massachusetts"
268
  msgstr "Massachusetts"
269
 
270
+ #: src/Tribe/View_Helpers.php:338
271
  msgid "Michigan"
272
  msgstr "Michigan"
273
 
274
+ #: src/admin-views/tribe-options-help.php:241
275
  msgid "Forums: Because Everyone Needs A Buddy"
276
  msgstr "Fórum: Protože každý potřebuje parťáka"
277
 
278
+ #: src/Tribe/View_Helpers.php:339
279
  msgid "Minnesota"
280
  msgstr "Minnesota"
281
 
282
+ #: src/admin-views/tribe-options-help.php:251
283
  msgid "Not getting help?"
284
  msgstr "Nedostává se vám pomoci?"
285
 
286
+ #: src/Tribe/View_Helpers.php:340
287
  msgid "Mississippi"
288
  msgstr "Mississippi"
289
 
290
+ #: src/admin-views/tribe-options-help.php:277
291
  msgid "Latest Version:"
292
  msgstr "Nejnovější verze:"
293
 
294
+ #: src/Tribe/View_Helpers.php:341
295
  msgid "Missouri"
296
  msgstr "Missouri"
297
 
298
+ #: src/admin-views/tribe-options-help.php:279
299
  msgid "Author:"
300
  msgstr "Autor:"
301
 
302
+ #: src/Tribe/View_Helpers.php:342
303
  msgid "Montana"
304
  msgstr "Montana"
305
 
306
+ #: src/admin-views/tribe-options-help.php:279
307
  msgid "Modern Tribe Inc"
308
  msgstr "Modern Tribe Inc"
309
 
310
+ #: src/Tribe/View_Helpers.php:343
311
  msgid "Nebraska"
312
  msgstr "Nebraska"
313
 
314
+ #: src/admin-views/tribe-options-help.php:284
315
  msgid "Requires:"
316
  msgstr "Vyžaduje:"
317
 
318
+ #: src/Tribe/View_Helpers.php:344
319
  msgid "Nevada"
320
  msgstr "Nevada"
321
 
322
+ #: src/admin-views/tribe-options-help.php:284
323
  msgid "WordPress "
324
  msgstr "WordPress"
325
 
326
+ #: src/Tribe/View_Helpers.php:345
327
  msgid "New Hampshire"
328
  msgstr "New Hampshire"
329
 
330
+ #: src/admin-views/tribe-options-help.php:295
331
  msgid "Wordpress.org Plugin Page"
332
  msgstr "Oficiální stránka pluginu v adresáři WordPressu"
333
 
334
+ #: src/Tribe/View_Helpers.php:346
335
  msgid "New Jersey"
336
  msgstr "New Jersey"
337
 
338
+ #: src/admin-views/tribe-options-help.php:301
339
  msgid "Average Rating"
340
  msgstr "Průměrné hodnocení"
341
 
342
+ #: src/Tribe/View_Helpers.php:347
343
  msgid "New Mexico"
344
  msgstr "Nové Mexiko"
345
 
346
+ #: src/admin-views/tribe-options-help.php:307
347
  msgid "Based on %d rating"
348
  msgid_plural "Based on %d ratings"
349
  msgstr[0] "Hodnotil %d uživatel"
350
  msgstr[1] "Hodnotili %d uživatelé"
351
  msgstr[2] "Hodnotilo %d uživatelů"
352
 
353
+ #: src/Tribe/View_Helpers.php:348
354
  msgid "New York"
355
  msgstr "New York"
356
 
357
+ #: src/admin-views/tribe-options-help.php:317
358
  msgid "Give us 5 stars!"
359
  msgstr "Dejte nám 5 hvězdiček"
360
 
361
+ #: src/Tribe/View_Helpers.php:349
362
  msgid "North Carolina"
363
  msgstr "Severní Karolína"
364
 
365
+ #: src/admin-views/tribe-options-help.php:321
366
  msgid "Premium Add-Ons"
367
  msgstr "Premium doplňky"
368
 
369
+ #: src/Tribe/View_Helpers.php:350
370
  msgid "North Dakota"
371
  msgstr "Severní Dakota"
372
 
373
+ #: src/admin-views/tribe-options-help.php:330
374
  msgid "(Coming Soon!)"
375
  msgstr "(Připravujeme)"
376
 
377
+ #: src/Tribe/View_Helpers.php:351
378
  msgid "Ohio"
379
  msgstr "Ohio"
380
 
381
+ #: src/admin-views/tribe-options-help.php:340
382
  msgid "News and Tutorials"
383
  msgstr "Aktuality a návody"
384
 
385
+ #: src/Tribe/View_Helpers.php:352
386
  msgid "Oklahoma"
387
  msgstr "Oklahoma"
388
 
389
+ #: src/admin-views/tribe-options-network.php:15
390
  msgid "Network Settings"
391
  msgstr "Nastavení v síti webů"
392
 
393
+ #: src/Tribe/View_Helpers.php:353
394
  msgid "Oregon"
395
  msgstr "Oregon"
396
 
397
+ #: src/admin-views/tribe-options-network.php:19
398
  msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
399
  msgstr "Zde si můžete změnit veškerá globální nastavení pluginu The Events Calendar pro celou síť webů."
400
 
401
+ #: src/Tribe/View_Helpers.php:354
402
  msgid "Pennsylvania"
403
  msgstr "Pensylvánie"
404
 
405
+ #: src/admin-views/tribe-options-network.php:27
406
  msgid "Hide the following settings tabs on every site:"
407
  msgstr "Skrýt následující panely s nastavením na každém webu:"
408
 
409
+ #: src/Tribe/View_Helpers.php:355
410
  msgid "Rhode Island"
411
  msgstr "Rhode Island"
412
 
413
+ #: src/admin-views/tickets/attendees.php:46
414
+ #: src/admin-views/venue-meta-box.php:34
415
+ #: src/functions/advanced-functions/meta_registration.php:176
416
  msgid "Address:"
417
  msgstr "Adresa:"
418
 
419
+ #: src/Tribe/View_Helpers.php:356
420
  msgid "South Carolina"
421
  msgstr "Jižní Karolína"
422
 
423
+ #: src/admin-views/venue-meta-box.php:41
424
  msgid "City:"
425
  msgstr "Město:"
426
 
427
+ #: src/Tribe/View_Helpers.php:357
428
  msgid "South Dakota"
429
  msgstr "Jižní Dakota"
430
 
431
+ #: src/admin-views/venue-meta-box.php:48
432
  msgid "Country:"
433
  msgstr "Země:"
434
 
435
+ #: src/Tribe/View_Helpers.php:358
436
  msgid "Tennessee"
437
  msgstr "Tennessee"
438
 
439
+ #: src/admin-views/venue-meta-box.php:88
440
  msgid "State or Province:"
441
  msgstr "Kraj:"
442
 
443
+ #: src/Tribe/View_Helpers.php:359
444
  msgid "Texas"
445
  msgstr "Texas"
446
 
447
+ #: src/admin-views/venue-meta-box.php:92
448
  msgid "Select a State:"
449
  msgstr "Vyberte stát:"
450
 
451
+ #: src/Tribe/View_Helpers.php:360
452
  msgid "Utah"
453
  msgstr "Utah"
454
 
455
+ #: src/admin-views/venue-meta-box.php:105
456
  msgid "Postal Code:"
457
  msgstr "PSČ:"
458
 
459
+ #: src/Tribe/View_Helpers.php:361
460
  msgid "Vermont"
461
  msgstr "Vermont"
462
 
463
+ #: src/admin-views/venue-meta-box.php:137
464
+ #: src/admin-views/venue-meta-box.php:159
465
  msgid "Show Google Map:"
466
  msgstr "Zobrazit Google mapu:"
467
 
468
+ #: src/Tribe/View_Helpers.php:362
469
  msgid "Virginia"
470
  msgstr "Virginie"
471
 
472
+ #: src/admin-views/venue-meta-box.php:147
473
+ #: src/admin-views/venue-meta-box.php:169
474
  msgid "Show Google Maps Link:"
475
  msgstr "Zobrazit odkaz na Mapy Google:"
476
 
477
+ #: src/Tribe/View_Helpers.php:363
478
  msgid "Washington"
479
  msgstr "Washington"
480
 
481
+ #: src/admin-views/widget-admin-list.php:13
482
  msgid "Title:"
483
  msgstr "Název:"
484
 
485
+ #: src/Tribe/View_Helpers.php:364
486
  msgid "West Virginia"
487
  msgstr "Západní Virginie"
488
 
489
+ #: src/admin-views/widget-admin-list.php:18
490
  msgid "Show:"
491
  msgstr "Zobrazit:"
492
 
493
+ #: src/Tribe/View_Helpers.php:365
494
  msgid "Wisconsin"
495
  msgstr "Wisconsin"
496
 
497
+ #: src/admin-views/widget-admin-list.php:28
498
  msgid "Show widget only if there are upcoming events:"
499
  msgstr "Zobrazit widget pouze pokud jsou nadcházející akce:"
500
 
501
+ #: src/Tribe/View_Helpers.php:366
502
  msgid "Wyoming"
503
  msgstr "Wyoming"
504
 
505
+ #: src/functions/advanced-functions/meta_registration.php:16
506
+ #: src/views/modules/meta/details.php:30
507
  msgid "Details"
508
  msgstr "Podrobnosti"
509
 
510
+ #: src/Tribe/iCal.php:28
511
  msgctxt "feed link"
512
  msgid "&raquo;"
513
  msgstr "&raquo;"
514
 
515
+ #: src/functions/advanced-functions/meta_registration.php:80
516
  msgid "Event Tags:"
517
  msgstr "Štítky akce:"
518
 
519
+ #: src/Tribe/iCal.php:29
520
  msgid "%1$s %2$s iCal Feed"
521
  msgstr "%1$s %2$s iCal Feed"
522
 
523
+ #: src/functions/advanced-functions/meta_registration.php:112
524
  msgid "Origin:"
525
  msgstr "Původ:"
526
 
527
+ #: src/Tribe/iCal.php:75
528
  msgid "Add to Google Calendar"
529
  msgstr "Přidat do Google kalendáře"
530
 
531
+ #: src/functions/advanced-functions/meta_registration.php:286
532
  msgid "%s:"
533
  msgstr "%s:"
534
 
535
+ #: src/Tribe/iCal.php:75
536
  msgid "Google Calendar"
537
  msgstr "Kalendář Google"
538
 
539
+ #: src/functions/template-tags/date.php:261
540
  msgid "The function needs to be passed an $event or used in the loop."
541
  msgstr ""
542
 
543
+ #: src/Tribe/iCal.php:76
544
  msgid "Download .ics file"
545
  msgstr "Stáhnout .ics soubor"
546
 
547
+ #: src/functions/template-tags/day.php:107
548
  msgid "<span>&laquo;</span> Previous Day"
549
  msgstr "<span>&laquo;</span> Předchozí den"
550
 
551
+ #: src/Tribe/iCal.php:76
552
  msgid "iCal Export"
553
  msgstr "Exportovat do iCal"
554
 
555
+ #: src/functions/template-tags/day.php:109
556
  msgid "Next Day <span>&raquo;</span>"
557
  msgstr "Následující den <span>&raquo;</span>"
558
 
559
+ #: src/Tribe/iCal.php:106
560
  msgid "Month's %s"
561
  msgstr "Měsíční %s"
562
 
563
+ #: src/functions/template-tags/day.php:111
564
  msgid "Yesterday"
565
  msgstr "Včera"
566
 
567
+ #: src/Tribe/iCal.php:109
568
  msgid "Week's %s"
569
  msgstr "Týdenní %s"
570
 
571
+ #: src/functions/template-tags/day.php:113
572
  msgid "Tomorrow"
573
  msgstr "Zítra"
574
 
575
+ #: src/Tribe/iCal.php:112
576
  msgid "Day's %s"
577
  msgstr "Denní %s"
578
 
579
+ #: src/functions/template-tags/deprecated.php:1283
580
  msgid "Category"
581
  msgstr "Rubrika"
582
 
583
+ #: src/Tribe/iCal.php:115
584
  msgid "Listed %s"
585
  msgstr "Zobrazeny %s"
586
 
587
+ #: src/functions/template-tags/general.php:450
588
  msgid "Tags:"
589
  msgstr "Štítky:"
590
 
591
+ #: src/Tribe/iCal.php:120
592
  msgid "Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps"
593
  msgstr ""
594
 
595
+ #: src/functions/template-tags/general.php:562
596
  msgid "Loading %s"
597
  msgstr "Načítání %s"
598
 
599
+ #: src/admin-views/admin-update-message.php:9
600
+ #: src/admin-views/admin-welcome-message.php:11
601
  msgid "You are running Version %s and deserve a hug :-)"
602
  msgstr "Používáte verzi %s a zasloužíte si obejmout :-)"
603
 
604
+ #: src/Tribe/Cost_Utils.php:123
605
  msgid "Free"
606
  msgstr "Zdarma"
607
 
608
+ #: src/admin-views/admin-update-message.php:32
609
  msgid "Keep the Core Plugin <strong>FREE</strong>!"
610
  msgstr "Ponechat Core Plugin <strong>ZDARMA</strong>!"
611
 
612
+ #: src/functions/template-tags/general.php:1488
613
  msgid "Calendar powered by %sThe Events Calendar%s"
614
  msgstr "Vytvořeno pomocí %sThe Events Calendar%s"
615
 
616
+ #: src/admin-views/admin-update-message.php:33
617
  msgid "Every time you rate <strong>5 stars</strong>, a fairy is born. Okay maybe not, but more happy users mean more contributions and help on the forums. The community NEEDS your voice."
618
  msgstr ""
619
 
620
+ #: src/functions/template-tags/loop.php:131
621
  msgid "Upcoming %s"
622
  msgstr "Nadcházející %s"
623
 
624
+ #: src/admin-views/admin-update-message.php:34
625
+ #: src/admin-views/admin-welcome-message.php:22
626
  msgid "Rate It"
627
  msgstr "Ohodnotit"
628
 
629
+ #: src/functions/template-tags/loop.php:145
630
  msgid "%1$s for %2$s - %3$s"
631
  msgstr ""
632
 
633
+ #: src/admin-views/admin-update-message.php:37
634
  msgid "PSST... Want a Discount?"
635
  msgstr ""
636
 
637
+ #: src/functions/template-tags/loop.php:147
638
  msgid "Past %s"
639
  msgstr ""
640
 
641
+ #: src/admin-views/admin-update-message.php:38
642
  msgid "We send out discounts to our core users via our newsletter."
643
  msgstr ""
644
 
645
+ #: src/functions/template-tags/loop.php:152
646
+ #: src/functions/template-tags/loop.php:161
647
  msgid "%1$s for %2$s"
648
  msgstr ""
649
 
650
+ #: src/admin-views/admin-update-message.php:43
651
+ #: src/admin-views/admin-welcome-message.php:31
652
  msgid "Sign Up"
653
  msgstr "Přihlásit"
654
 
655
+ #: src/functions/template-tags/options.php:20
656
  msgid "Your current Events URL is %s"
657
  msgstr "Vaše současná URL adresa pro Akce je %s"
658
 
659
+ #: src/admin-views/admin-update-message.php:49
660
  msgid "Looking for Something Special?"
661
  msgstr "Hledáte něco speciálního?"
662
 
663
+ #: src/functions/template-tags/options.php:29
664
  msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
665
  msgstr "<strong>Nelze</strong> použít stejný název v URL jako výše uvedený. Ten by měl být v ideálním případě v množném čísle a tento v jednotném.<br />Vaše URL adresa pro jednotlivou Akci vypadá takto: %s"
666
 
667
+ #: src/admin-views/admin-update-message.php:51
668
  msgid "Pro"
669
  msgstr "Pro"
670
 
671
+ #: src/io/csv/admin-views/columns.php:22
672
  msgid "Column Mapping: %s"
673
  msgstr "Mapování sloupců: %s"
674
 
675
+ #: src/admin-views/admin-update-message.php:53
676
  msgid "Community Events"
677
  msgstr ""
678
 
679
+ #: src/io/csv/admin-views/columns.php:27
680
  msgid "Columns have been mapped based on your last import. Please ensure the selected fields match the columns in your CSV file."
681
  msgstr ""
682
 
683
+ #: src/admin-views/admin-update-message.php:54
684
  msgid "Filters"
685
  msgstr "Filtry"
686
 
687
+ #: src/io/csv/admin-views/columns.php:32
688
  msgid "Column Headings"
689
  msgstr "Záhlaví sloupců"
690
 
691
+ #: src/admin-views/admin-update-message.php:55
692
  msgid "Facebook"
693
  msgstr "Facebook"
694
 
695
+ #: src/io/csv/admin-views/columns.php:33
696
  msgid "Event Fields"
697
  msgstr "Pole akce"
698
 
699
+ #: src/admin-views/admin-update-message.php:58
700
+ #: src/admin-views/admin-welcome-message.php:53
701
  msgid "News For Events Users"
702
  msgstr ""
703
 
704
+ #: src/io/csv/admin-views/columns.php:44
705
  msgid "Perform Import"
706
  msgstr "Importovat"
707
 
708
+ #: src/admin-views/admin-welcome-message.php:19
709
  msgid "Keep The Events Calendar Core FREE"
710
  msgstr ""
711
 
712
+ #: src/io/csv/admin-views/general.php:10
713
  msgid "The Events Calendar: Import"
714
  msgstr "The Events Calendar: Import"
715
 
716
+ #: src/admin-views/admin-welcome-message.php:20
717
  msgid "5 star ratings help us bring TEC to more users. More happy users mean more support, more features, and more of everything you know and love about The Events Calendar. We couldn't do this without your support."
718
  msgstr ""
719
 
720
+ #: src/io/csv/admin-views/general.php:12
721
  msgid "Instructions"
722
  msgstr "Instrukce"
723
 
724
+ #: src/admin-views/admin-welcome-message.php:21
725
  msgid "Rate it five stars today!"
726
  msgstr "Ohodnotit 5 hvězdičkami ještě dnes!"
727
 
728
+ #: src/io/csv/admin-views/general.php:14
729
  msgid "To import events, first select a %sDefault Import Event Status%s below to assign to your imported events."
730
  msgstr ""
731
 
732
+ #: src/admin-views/admin-welcome-message.php:25
733
  msgid "Newsletter Signup"
734
  msgstr ""
735
 
736
+ #: src/io/csv/admin-views/general.php:17
737
  msgid "Once your setting is saved, move to the applicable Import tab to select import specific criteria."
738
  msgstr ""
739
 
740
+ #: src/admin-views/admin-welcome-message.php:26
741
  msgid "Stay in touch with The Events Calendar Pro. We send out periodic updates, key developer notices, and even the occasional discount."
742
  msgstr ""
743
 
744
+ #: src/io/csv/admin-views/general.php:24
745
  msgid "Import Settings"
746
  msgstr "Nastavení importu"
747
 
748
+ #: src/admin-views/admin-welcome-message.php:40
749
+ #: src/admin-views/tribe-options-help.php:221
750
  msgid "Getting Started"
751
  msgstr "Začínáme"
752
 
753
+ #: src/io/csv/admin-views/general.php:27
754
  msgid "Default imported event status:"
755
  msgstr ""
756
 
757
+ #: src/admin-views/admin-welcome-message.php:41
758
  msgid "Check out the New User Primer &amp; Tutorials"
759
  msgstr ""
760
 
761
+ #: src/io/csv/admin-views/general.php:30
762
  msgid "Published"
763
  msgstr "Publikováno"
764
 
765
+ #: src/admin-views/admin-welcome-message.php:43
766
  msgid "Looking for More Features?"
767
  msgstr "Hledáte další funkce?"
768
 
769
+ #: src/io/csv/admin-views/general.php:31
770
  msgid "Pending"
771
  msgstr "Čekající na schválení"
772
 
773
+ #: src/admin-views/admin-welcome-message.php:44
774
  msgid "Addons for Community, Tickets, Filters, Facebook and more."
775
  msgstr ""
776
 
777
+ #: src/io/csv/admin-views/general.php:32
778
  msgid "Draft"
779
  msgstr "Koncept"
780
 
781
+ #: src/admin-views/admin-welcome-message.php:46
782
  msgid "Support Resources"
783
  msgstr ""
784
 
785
+ #: src/io/csv/admin-views/header.php:17
786
  msgid "Events Import"
787
  msgstr "Importovat Akce"
788
 
789
+ #: src/admin-views/admin-welcome-message.php:47
790
  msgid "FAQs, Documentation, Tutorials and Forums"
791
  msgstr "FAQs, Dokumentace, Návody a Fóra"
792
 
793
+ #: src/io/csv/admin-views/import.php:17
794
  msgid "Import Instructions"
795
  msgstr "Instrukce pro importování"
796
 
797
+ #: src/admin-views/admin-welcome-message.php:50
798
  msgid "Release Notes"
799
  msgstr ""
800
 
801
+ #: src/io/csv/admin-views/import.php:20
802
  msgid "If your events have Organizers or Venues, please import those first."
803
  msgstr "Pokud vaše akce mají Pořadatele nebo Místa konání, importujte je prosím jako první."
804
 
805
+ #: src/admin-views/admin-welcome-message.php:51
806
  msgid "Get the Skinny on the Latest Updates"
807
  msgstr ""
808
 
809
+ #: src/io/csv/admin-views/import.php:21
810
  msgid "To import organizers or venues:"
811
  msgstr "Pro import Pořadatelů a Míst konání:"
812
 
813
+ #: src/admin-views/admin-welcome-message.php:54
814
  msgid "Product Releases, Tutorials and Community Activity"
815
  msgstr ""
816
 
817
+ #: src/io/csv/admin-views/import.php:23
818
  msgid "Select the appropriate import type."
819
  msgstr "Vyberte příslušný typ importu."
820
 
821
+ #: src/admin-views/app-shop.php:4
822
  msgid "Tribe Event Add-Ons"
823
  msgstr "Tribe doplňky pro akce"
824
 
825
+ #: src/io/csv/admin-views/import.php:24 src/io/csv/admin-views/import.php:30
 
826
  msgid "Upload a CSV file with one record on each line. The first line may contain column names (check the box below)."
827
  msgstr "Nahrajte CSV soubor s jedním záznamem na každém řádku. První řádek může obsahovat záhlaví sloupců (zaškrtněte políčko níže)."
828
 
829
+ #: src/admin-views/app-shop.php:54
830
  msgid "Version"
831
  msgstr "Verze"
832
 
833
+ #: src/io/csv/admin-views/import.php:25
834
  msgid "One column in your CSV should have the Organizer/Venue name. All other fields are optional."
835
  msgstr "Jeden ze sloupců ve vašem CSV souboru by měl obsahovat jméno Pořadatele/Místa konání. Ostatní pole jsou volitelná."
836
 
837
+ #: src/admin-views/app-shop.php:57
838
  msgid "Last Update"
839
  msgstr "Poslední aktualizace"
840
 
841
+ #: src/io/csv/admin-views/import.php:26 src/io/csv/admin-views/import.php:32
 
842
  msgid "After you upload your file, you'll have the opportunity to indicate how the columns in your CSV map to fields in The Events Calendar."
843
  msgstr "Po nahrání souboru budete mít možnost namapovat jednotlivé sloupce vašeho CSV na patřičná pole v pluginu The Events Calendar."
844
 
845
+ #: src/admin-views/event-sidebar-options.php:13
846
  msgid "Hide From %s Listings"
847
  msgstr ""
848
 
849
+ #: src/io/csv/admin-views/import.php:28
850
  msgid "After importing your Organizers and Venues, import your Events:"
851
  msgstr "Po naimportování vašich Pořadatelů a Míst konání můžete importovat vaše Akce:"
852
 
853
+ #: src/admin-views/event-sidebar-options.php:15
854
  msgid "Sticky in Month View"
855
  msgstr ""
856
 
857
+ #: src/io/csv/admin-views/import.php:31
858
  msgid "One column in your CSV should have the Event title. Another should have the Event start date. All other fields are optional."
859
  msgstr "Jeden ze sloupců ve vašem CSV souboru by měl obsahovat jméno akce. Další by měl obsahovat počáteční datum akce. Ostatní pole jsou volitelná."
860
 
861
+ #: src/admin-views/event-sidebar-options.php:16
862
  msgid "When events are sticky in month view, they'll display first in the list of events shown within a given day block."
863
  msgstr ""
864
 
865
+ #: src/io/csv/admin-views/import.php:36
866
  msgid "Questions? <a href=\"%s\">Watch the video</a>."
867
  msgstr "Máte dotazy? <a href=\"%s\">Podívejte se na video</a>."
868
 
869
+ #: src/admin-views/events-meta-box.php:60
870
  msgid "Time &amp; Date"
871
  msgstr "Čas &amp; Datum"
872
 
873
+ #: src/io/csv/admin-views/import.php:43
874
  msgid "Import Type:"
875
  msgstr "Typ importu:"
876
 
877
+ #: src/admin-views/events-meta-box.php:67
878
  msgid "You have changed the recurrence rules of this %1$s. Saving the %1$s will update all future %2$s. If you did not mean to change all %2$s, then please refresh the page."
879
  msgstr ""
880
 
881
+ #: src/io/csv/admin-views/import.php:55
882
  msgid "CSV File:"
883
  msgstr "CSV soubor:"
884
 
885
+ #: src/admin-views/events-meta-box.php:70
886
  msgid "All Day %s:"
887
  msgstr "Celý den %s:"
888
 
889
+ #: src/io/csv/admin-views/import.php:59
890
  msgid "Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file is UTF-8 encoded? Make sure to specify the character encoding when you save the file, or pass it through a <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>conversion tool</a>."
891
  msgstr "Nahrajte správně formátovaný CSV soubor v kódování UTF-8. Nejste si jisti, zda je váš soubor v kódování UTF-8? Ujistěte se, že jste při ukládání souboru zadali správné kódování znaků, nebo jej převeďte prostřednictvím <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>konverzního nástroje</a>."
892
 
893
+ #: src/admin-views/events-meta-box.php:76
894
  msgid "Start Date &amp; Time:"
895
  msgstr "Datum a čas zahájení:"
896
 
897
+ #: src/io/csv/admin-views/import.php:67
898
  msgid "This file has column names in the first row"
899
  msgstr "Soubor má v prvním řádku záhlaví sloupců"
900
 
901
+ #: src/admin-views/events-meta-box.php:80
902
+ #: src/admin-views/events-meta-box.php:101
903
  msgid "YYYY-MM-DD"
904
  msgstr "RRRR-MM-DD"
905
 
906
+ #: src/io/csv/admin-views/import.php:78
907
  msgid "Import CSV File"
908
  msgstr "Importovat CSV soubor"
909
 
910
+ #: src/admin-views/events-meta-box.php:98
911
  msgid "End Date &amp; Time:"
912
  msgstr "Datum a čas ukončení:"
913
 
914
+ #: src/io/csv/admin-views/result.php:15
915
  msgid "Import Result"
916
  msgstr "Výsledek importu"
917
 
918
+ #: src/admin-views/events-meta-box.php:147
919
  msgid "Location"
920
  msgstr "Místo"
921
 
922
+ #: src/io/csv/admin-views/result.php:17
923
  msgid "Import complete!"
924
  msgstr "Importování bylo dokončeno!"
925
 
926
+ #: src/admin-views/events-meta-box.php:195
927
  msgid "%s Website"
928
  msgstr "%s Www"
929
 
930
+ #: src/io/csv/admin-views/result.php:19
931
  msgid "Inserted: %d"
932
  msgstr "Vloženo: %d"
933
 
934
+ #: src/admin-views/events-meta-box.php:198
935
  msgid "URL:"
936
  msgstr "URL adresa:"
937
 
938
+ #: src/io/csv/admin-views/result.php:20
939
  msgid "Updated: %d"
940
  msgstr "Aktualizováno: %d"
941
 
942
+ #: src/admin-views/events-meta-box.php:229
943
  msgid "%s Cost"
944
  msgstr "%s Cena"
945
 
946
+ #: src/io/csv/admin-views/result.php:21
947
  msgid "Skipped: %d"
948
  msgstr "Vynecháno: %d"
949
 
950
+ #: src/admin-views/events-meta-box.php:232
951
  msgid "Currency Symbol:"
952
  msgstr "Symbol měny:"
953
 
954
+ #: src/io/csv/admin-views/result.php:25
955
  msgid "The import statistics above have the following meaning:"
956
  msgstr "Výše uvedená statistika importu má následující význam:"
957
 
958
+ #: src/admin-views/events-meta-box.php:247
959
  msgctxt "Currency symbol position"
960
  msgid "Before cost"
961
  msgstr "Před cenou"
962
 
963
+ #: src/io/csv/admin-views/result.php:26
964
  msgid "<ol><li><strong>Inserted:</strong> A new item was inserted successfully.</li><li><strong>Updated:</strong> An item was found with the same name and/or start date. The existing item was updated with the new value from the file.</li><li><strong>Skipped:</strong> A row was found in the CSV file that could not be imported. Please see below for the invalid rows.</li></ol>"
965
  msgstr "<ol><li><strong>Vloženo:</strong> Nový záznam byl úspěšně vložen.</li><li><strong>Aktualizováno:</strong> Byl nalezen záznam se stejným jménem a/nebo počátečním datem. Existující záznam byl aktualizován s novou hodnotou ze souboru.</li><li><strong>Vynecháno:</strong> V souboru CSV byl nalezen řádek, který nemohl být importován. Údaje o neplatných řádcích naleznete níže.</li></ol>"
966
 
967
+ #: src/admin-views/events-meta-box.php:250
968
  msgctxt "Currency symbol position"
969
  msgid "After cost"
970
  msgstr "Za cenou"
971
 
972
+ #: src/io/csv/admin-views/result.php:29
973
  msgid "Skipped row numbers: %s"
974
  msgstr "Čísla vynechaných řádků: %s"
975
 
976
+ #: src/admin-views/events-meta-box.php:255
977
+ #: src/functions/advanced-functions/meta_registration.php:48
978
+ #: src/views/modules/meta/details.php:100
979
  msgid "Cost:"
980
  msgstr "Cena:"
981
 
982
+ #: src/admin-views/events-meta-box.php:263
983
  msgid "Enter a 0 for %s that are free or leave blank to hide the field."
984
  msgstr ""
985
 
986
+ #: src/admin-views/new-organizer-meta-section.php:15
987
+ #: src/admin-views/organizer-meta-box.php:24
988
+ #: src/admin-views/venue-meta-box.php:25
989
  msgid "%s Name:"
990
  msgstr "%s Jméno:"
991
 
992
+ #: src/views/day/nav.php:16
993
  msgid "Day Navigation"
994
  msgstr "Navigece ve dnech"
995
 
996
+ #: src/admin-views/new-organizer-meta-section.php:21
997
+ #: src/admin-views/organizer-meta-box.php:31
998
+ #: src/admin-views/tickets/attendees.php:54
999
+ #: src/admin-views/venue-meta-box.php:112
1000
+ #: src/functions/advanced-functions/meta_registration.php:159
1001
+ #: src/functions/advanced-functions/meta_registration.php:238
1002
+ #: src/views/modules/meta/organizer.php:41 src/views/modules/meta/venue.php:40
 
1003
  msgid "Phone:"
1004
  msgstr "Telefon:"
1005
 
1006
+ #: src/views/day/single-event.php:66 src/views/list/single-event.php:70
1007
  msgid "Find out more"
1008
  msgstr "Více informací"
1009
 
1010
+ #: src/admin-views/new-organizer-meta-section.php:27
1011
+ #: src/admin-views/organizer-meta-box.php:37
1012
+ #: src/admin-views/tickets/attendees.php:63
1013
+ #: src/admin-views/venue-meta-box.php:119
1014
+ #: src/functions/advanced-functions/meta_registration.php:96
1015
+ #: src/functions/advanced-functions/meta_registration.php:191
1016
+ #: src/functions/advanced-functions/meta_registration.php:270
1017
+ #: src/views/modules/meta/details.php:125
1018
+ #: src/views/modules/meta/organizer.php:63 src/views/modules/meta/venue.php:45
 
1019
  msgid "Website:"
1020
  msgstr "Webová stránka:"
1021
 
1022
+ #: src/views/list/nav.php:19
1023
  msgid "%s List Navigation"
1024
  msgstr "%s Seznam - navigace"
1025
 
1026
+ #: src/admin-views/new-organizer-meta-section.php:35
1027
+ #: src/admin-views/organizer-meta-box.php:43
1028
+ #: src/functions/advanced-functions/meta_registration.php:254
1029
+ #: src/views/modules/meta/organizer.php:52
1030
  msgid "Email:"
1031
  msgstr "Email:"
1032
 
1033
+ #: src/views/list/nav.php:25
1034
  msgid "<span>&laquo;</span> Previous %s"
1035
  msgstr "<span>&laquo;</span> Předchozí %s"
1036
 
1037
+ #: src/admin-views/new-organizer-meta-section.php:39
1038
+ #: src/admin-views/organizer-meta-box.php:44
1039
  msgid "You may want to consider <a href=\"http://wordpress.org/plugins/tags/obfuscate\">obfuscating</a> any e-mail address published on your site to best avoid it getting harvested by spammers."
1040
  msgstr "Aby váš web nebyl zdrojem pro spammery, je vhodné <a href=\"http://wordpress.org/plugins/tags/obfuscate\">maskovat</a> všechny emailové adresy zveřejněné na vašich stránkách."
1041
 
1042
+ #: src/views/list/nav.php:32
1043
  msgid "Next %s <span>&raquo;</span>"
1044
  msgstr "Další %s <span>&raquo;</span>"
1045
 
1046
+ #: src/admin-views/new-organizer-meta-section.php:69
1047
+ #: src/admin-views/organizer-meta-box.php:75
1048
+ #: src/admin-views/venue-meta-box.php:193
1049
  msgid "%s Name Already Exists"
1050
  msgstr "%s Jméno již existuje"
1051
 
1052
+ #: src/views/modules/bar.php:30 src/views/modules/bar.php:61
1053
  msgid "Find %s"
1054
  msgstr "Najít %s"
1055
 
1056
+ #: src/admin-views/tickets/attendees.php:17
1057
  msgid "Event Summary"
1058
  msgstr "Přehled akce"
1059
 
1060
+ #: src/views/modules/bar.php:37
1061
  msgid "Event Views Navigation"
1062
  msgstr "Navigace pro zobrazení akce"
1063
 
1064
+ #: src/admin-views/tickets/attendees.php:26
1065
  msgid "Event Details"
1066
  msgstr "Údaje o akci"
1067
 
1068
+ #: src/views/modules/bar.php:38
1069
  msgid "View As"
1070
  msgstr "Zobrazit jako"
1071
 
1072
+ #: src/admin-views/tickets/attendees.php:28
1073
  msgid "Start Date / Time:"
1074
  msgstr "Datum / čas zahájení:"
1075
 
1076
+ #: src/views/modules/meta/details.php:119
1077
  msgid "%s Tags:"
1078
  msgstr "%s Štítky:"
1079
 
1080
+ #: src/admin-views/tickets/attendees.php:32
1081
  msgid "End Date / Time:"
1082
  msgstr "Datum / čas ukončení:"
1083
 
1084
+ #: src/functions/template-tags/general.php:1312
1085
  msgid "%s for"
1086
  msgstr "%s pro"
1087
 
1088
+ #: src/admin-views/tickets/attendees.php:82
1089
  msgid "Ticket Sales"
1090
  msgstr "Prodeje vstupenek"
1091
 
1092
+ #: src/functions/template-tags/general.php:1311
1093
  msgid "Find out more »"
1094
  msgstr "Zobrazit více »"
1095
 
1096
+ #: src/admin-views/tickets/attendees.php:99
1097
  msgid "(%d awaiting review)"
1098
  msgid_plural "(%d awaiting review)"
1099
  msgstr[0] "(%d čekající hodnocení)"
1100
  msgstr[1] "(%d čekající hodnocení)"
1101
  msgstr[2] "(%d čekajících hodnocení)"
1102
 
1103
+ #: src/views/month/nav.php:18
1104
  msgid "Calendar Month Navigation"
1105
  msgstr "Navigace pro měsíce v kalendáři"
1106
 
1107
+ #: src/views/month/single-day.php:43
 
 
 
 
1108
  msgid "View 1 %1$s"
1109
  msgid_plural "View All %2$s %3$s"
1110
  msgstr[0] "Zobrazit 1 %1$s"
1111
  msgstr[1] "Zobrazit všechny %2$s %3$s"
1112
  msgstr[2] "Zobrazit všechny %2$s %3$s"
1113
 
1114
+ #: src/views/single-event.php:27
 
 
 
 
1115
  msgid "&laquo; All %s"
1116
  msgstr "&laquo; Vše %s"
1117
 
1118
+ #: src/admin-views/tickets/attendees.php:127
1119
  msgid "Tickets sold:"
1120
  msgstr "Prodáno vstupenek:"
1121
 
1122
+ #: src/views/single-event.php:46 src/views/single-event.php:79
1123
  msgid "%s Navigation"
1124
  msgstr "%s Navigace"
1125
 
1126
+ #: src/admin-views/tickets/attendees.php:136
1127
  msgid "Finalized:"
1128
  msgstr ""
1129
 
1130
+ #: src/views/tickets/attendees-email.php:24
1131
  msgid "Attendee List"
1132
  msgstr "Seznam účastníků"
1133
 
1134
+ #: src/admin-views/tickets/attendees.php:139
1135
  msgid "Awaiting review:"
1136
  msgstr "Čekající na schválení:"
1137
 
1138
+ #: src/views/tickets/email.php:26
1139
  msgid "Your tickets"
1140
  msgstr "Vaše vstupenky"
1141
 
1142
+ #: src/admin-views/tickets/attendees.php:148
1143
  msgid "Checked in:"
1144
  msgstr "Zaškrtnutých:"
1145
 
1146
+ #: src/views/tickets/email.php:309
1147
  msgid "Ticket Type"
1148
  msgstr "Typ vstupenky"
1149
 
1150
+ #: src/admin-views/tickets/attendees.php:170
1151
  msgid "Send the attendee list by email"
1152
  msgstr "Poslat seznam účastníků emailem"
1153
 
1154
+ #: src/views/tickets/email.php:313
1155
  msgid "Purchaser"
1156
  msgstr "Kupující"
1157
 
1158
+ #: src/admin-views/tickets/attendees.php:174
1159
  msgid "Select a User:"
1160
  msgstr "Vybrat uživatele:"
1161
 
1162
+ #: src/views/widgets/list-widget.php:65
1163
  msgid "View All %s"
1164
  msgstr "Zobrazit všechny %s"
1165
 
1166
+ #: src/admin-views/tickets/attendees.php:179
1167
  msgid "Select..."
1168
  msgstr "Vybrat"
1169
 
1170
+ #: src/views/widgets/list-widget.php:71
1171
  msgid "There are no upcoming %s at this time."
1172
  msgstr ""
1173
 
1174
+ #: src/admin-views/tickets/attendees.php:184
1175
  msgid "or"
1176
  msgstr "nebo"
1177
 
1178
+ #: src/admin-views/tickets/attendees.php:186
1179
  msgid "Email Address:"
1180
  msgstr "Emailová adresa:"
1181
 
1182
+ #: src/admin-views/tickets/list.php:21
1183
  msgid "Edit"
1184
  msgstr "Upravit"
1185
 
1186
+ #: src/admin-views/tickets/list.php:24
1187
  msgid "Edit in %s"
1188
  msgstr "Upravit v %s"
1189
 
1190
+ #: src/admin-views/tickets/list.php:27
1191
  msgid "View"
1192
  msgstr "Zobrazit"
1193
 
1194
+ #: src/admin-views/tickets/list.php:67
1195
  msgid "Sold %d"
1196
  msgstr "Prodáno %d"
1197
 
1198
+ #: src/admin-views/tickets/meta-box.php:23
 
 
 
 
1199
  msgid "This event was created using Community Events. Are you sure you want to sell tickets for it?"
1200
  msgstr "Tato akce byla vytvořena pomocí Komunitních akcí. Opravdu si přejete prodávat vstupenky na tuto akci?"
1201
 
1202
+ #: src/admin-views/tickets/meta-box.php:34
1203
  msgid "Upload image for the ticket header"
1204
  msgstr "Nahrát obrázek pro záhlaví vstupenky"
1205
 
1206
+ #: src/admin-views/tickets/meta-box.php:35
1207
  msgid "The maximum image size in the email will be 580px wide by any height, and then scaled for mobile. If you would like \"retina\" support use an image sized to 1160px wide."
1208
  msgstr "Maximální velikost obrázku v emailu bude 580 pixelů na šířku s volnou výškou a pro mobilní zařízení bude obrázek následně zmenšen. Pokud chcete mít podporu pro \"Retina\" displej, použijte obrázek široký 1160 pixelů."
1209
 
1210
+ #: src/admin-views/tickets/meta-box.php:38
1211
  msgid "Select an Image"
1212
  msgstr "Zvolit obrázek"
1213
 
1214
+ #: src/admin-views/tickets/meta-box.php:46
1215
  msgid "Remove"
1216
  msgstr "Odstranit"
1217
 
1218
+ #: src/admin-views/tickets/meta-box.php:64
1219
+ #: src/admin-views/tickets/meta-box.php:74
1220
  msgid "Add new ticket"
1221
  msgstr "Přidat novou vstupenku"
1222
 
1223
+ #: src/admin-views/tickets/meta-box.php:75
1224
  msgid "Edit ticket"
1225
  msgstr "Upravit vstupenku"
1226
 
1227
+ #: src/admin-views/tickets/meta-box.php:80
1228
  msgid "Sell using:"
1229
  msgstr "Prodej pomocí:"
1230
 
1231
+ #: src/admin-views/tickets/meta-box.php:97
1232
  msgid "Ticket Name:"
1233
  msgstr "Název vstupenky:"
1234
 
1235
+ #: src/admin-views/tickets/meta-box.php:104
1236
  msgid "Ticket Description:"
1237
  msgstr "Popis vstupenky:"
1238
 
1239
+ #: src/admin-views/tickets/meta-box.php:113
1240
  msgid "Price:"
1241
  msgstr "Cena:"
1242
 
1243
+ #: src/admin-views/tickets/meta-box.php:119
1244
  msgid "(0 or empty for free tickets)"
1245
  msgstr "(pro vstupné zdarma ponechte prázdné nebo zadejte 0)"
1246
 
1247
+ #: src/admin-views/tickets/meta-box.php:125
1248
  msgid "Sale Price:"
1249
  msgstr "Akční cena:"
1250
 
1251
+ #: src/admin-views/tickets/meta-box.php:131
1252
  msgid "(Current sale price - this can be managed via the product editor)"
1253
  msgstr "(Aktuální cena - může být upravena přes editor produktů)"
1254
 
1255
+ #: src/admin-views/tickets/meta-box.php:137
1256
  msgid "Start sale:"
1257
  msgstr "Začátek prodeje:"
1258
 
1259
+ #: src/admin-views/tickets/meta-box.php:161
1260
  msgid "End sale:"
1261
  msgstr "Konec prodeje:"
1262
 
1263
+ #: src/admin-views/tickets/meta-box.php:183
1264
  msgid "When will ticket sales occur? If you don't set a start/end date for sales, tickets will be available from now until the event ends."
1265
  msgstr "Kdy nastane prodej vstupenek? Pokud nenastavíte začátek a konec prodeje, budou vstupenky k dispozici od této chvíle až do ukončení akce."
1266
 
1267
+ #: src/admin-views/tickets/meta-box.php:195
1268
  msgid "Save this ticket"
1269
  msgstr "Uložit vstupenku"
1270
 
1271
+ #: src/admin-views/tribe-options-display.php:4
1272
  msgid "Default Events Template"
1273
  msgstr "Výchozí šablona akcí"
1274
 
1275
+ #: src/admin-views/tribe-options-display.php:5
1276
  msgid "Default Page Template"
1277
  msgstr "Výchozí šablona stránky"
1278
 
1279
+ #: src/admin-views/tribe-options-display.php:51
1280
  msgid "Display Settings"
1281
  msgstr "Nastavení zobrazení"
1282
 
1283
+ #: src/admin-views/tribe-options-display.php:56
1284
  msgid "The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme.</p><p>There are going to be situations where no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications."
1285
  msgstr ""
1286
 
1287
+ #: src/admin-views/tribe-options-display.php:70
1288
  msgid "Basic Template Settings"
1289
  msgstr "Základní nastavení šablony"
1290
 
1291
+ #: src/admin-views/tribe-options-display.php:74
1292
  msgid "Default stylesheet used for events templates"
1293
  msgstr "Výchozí CSS styl použitý pro šablony akcí"
1294
 
1295
+ #: src/admin-views/tribe-options-display.php:77
1296
  msgid "Skeleton Styles"
1297
  msgstr "Základní styly"
1298
 
1299
+ #: src/admin-views/tribe-options-display.php:79
1300
  msgid "Only includes enough css to achieve complex layouts like calendar and week view."
1301
  msgstr "Zahrnují pouze CSS pro dosažení složitějších rozvržení prvků jako je kalendář a týdenní přehled."
1302
 
1303
+ #: src/admin-views/tribe-options-display.php:81
1304
  msgid "Full Styles"
1305
  msgstr "Úplné styly"
1306
 
1307
+ #: src/admin-views/tribe-options-display.php:83
1308
  msgid "More detailed styling, tries to grab styles from your theme."
1309
  msgstr "Detailnější stylování, pokusí se převzít styly z vaší šablony."
1310
 
1311
+ #: src/admin-views/tribe-options-display.php:85
1312
  msgid "Tribe Events Styles"
1313
  msgstr "Tribe Events styly"
1314
 
1315
+ #: src/admin-views/tribe-options-display.php:87
1316
  msgid "A fully designed and styled theme for your events pages."
1317
  msgstr "Plně navržená a nastylovaná šablona pro stránky vašich akcí."
1318
 
1319
+ #: src/admin-views/tribe-options-display.php:94
1320
  msgid "Events template"
1321
  msgstr "Šablona akcí"
1322
 
1323
+ #: src/admin-views/tribe-options-display.php:95
1324
  msgid "Choose a page template to control the appearance of your calendar and event content."
1325
  msgstr "Vyberte šablonu stránky, která ovlivní vzhled vašeho kalendáře a obsahu akce."
1326
 
1327
+ #: src/admin-views/tribe-options-display.php:103
1328
  msgid "Enable event views"
1329
  msgstr "Povolit zobrazení akcí"
1330
 
1331
+ #: src/admin-views/tribe-options-display.php:104
1332
  msgid "You must select at least one view."
1333
  msgstr "Musíte vybrat alespoň jedno zobrazení."
1334
 
1335
+ #: src/admin-views/tribe-options-display.php:111
1336
  msgid "Default view"
1337
  msgstr "Výchozí zobrazení"
1338
 
1339
+ #: src/admin-views/tribe-options-display.php:119
1340
  msgid "Disable the Event Search Bar"
1341
  msgstr "Vypnout vyhledávací lištu akcí"
1342
 
1343
+ #: src/admin-views/tribe-options-display.php:120
1344
  msgid "Check this to use the classic header."
1345
  msgstr "Zaškrtněte tuto volbu pokud chcete použít klasickou hlavičku."
1346
 
1347
+ #: src/admin-views/tribe-options-display.php:126
1348
  msgid "Month view events per day"
1349
  msgstr "Počet akcí na den v měsíčním přehledu"
1350
 
1351
+ #: src/admin-views/tribe-options-display.php:127
1352
  msgid "Change the default 3 events per day in month view. Please note there may be performance issues if you set this too high. <a href=\"%s\">Read more</a>."
1353
  msgstr ""
1354
 
1355
+ #: src/admin-views/tribe-options-display.php:134
1356
  msgid "Enable the Month View Cache"
1357
  msgstr "Povolit cache Měsíčního přehledu"
1358
 
1359
+ #: src/admin-views/tribe-options-display.php:135
1360
  msgid "Check this to cache your month view HTML in transients, which can help improve calendar speed on sites with many events. <a href=\"%s\">Read more</a>."
1361
  msgstr ""
1362
 
1363
+ #: src/admin-views/tribe-options-display.php:141
1364
  msgid "Date Format Settings"
1365
  msgstr "Nastavení formátu data"
1366
 
1367
+ #: src/admin-views/tribe-options-display.php:145
1368
  msgid "<p>The following three fields accept the date format options available to the php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Learn how to make your own date format here</a>.</p>"
1369
  msgstr ""
1370
 
1371
+ #: src/admin-views/tribe-options-display.php:149
1372
  msgid "Date with year"
1373
  msgstr "Datum se zobrazením roku"
1374
 
1375
+ #: src/admin-views/tribe-options-display.php:150
1376
  msgid "Enter the format to use for displaying dates with the year. Used when showing an event from a past or future year, also used for dates in view headers."
1377
  msgstr "Zadejte formát k použití pro zobrazení dat s rokem. Používá se při zobrazení události z minulosti nebo pro budoucí rok, bude také použitý pro data zobrazená v záhlaví."
1378
 
1379
+ #: src/admin-views/tribe-options-display.php:157
1380
  msgid "Date without year"
1381
  msgstr "Datum bez zobrazení roku"
1382
 
1383
+ #: src/admin-views/tribe-options-display.php:158
1384
  msgid "Enter the format to use for displaying dates without a year. Used when showing an event from the current year."
1385
  msgstr ""
1386
 
1387
+ #: src/admin-views/tribe-options-display.php:165
1388
  msgid "Month and year format"
1389
  msgstr "Formát měsíce a roku"
1390
 
1391
+ #: src/admin-views/tribe-options-display.php:166
1392
  msgid "Enter the format to use for dates that show a month and year only. Used on month view."
1393
  msgstr ""
1394
 
1395
+ #: src/admin-views/tribe-options-display.php:173
1396
  msgid "Date time separator"
1397
  msgstr "Oddělovač času"
1398
 
1399
+ #: src/admin-views/tribe-options-display.php:174
1400
  msgid "Enter the separator that will be placed between the date and time, when both are shown."
1401
  msgstr ""
1402
 
1403
+ #: src/admin-views/tribe-options-display.php:181
1404
  msgid "Time range separator"
1405
  msgstr "Oddělovač času"
1406
 
1407
+ #: src/admin-views/tribe-options-display.php:182
1408
  msgid "Enter the separator that will be used between the start and end time of an event."
1409
  msgstr ""
1410
 
1411
+ #: src/admin-views/tribe-options-display.php:189
1412
  msgid "Datepicker Date Format"
1413
  msgstr ""
1414
 
1415
+ #: src/admin-views/tribe-options-display.php:190
1416
  msgid "Select the date format to use in datepickers"
1417
  msgstr ""
1418
 
1419
+ #: src/admin-views/tribe-options-display.php:207
1420
  msgid "Advanced Template Settings"
1421
  msgstr "Rozšířená nastavení šablony"
1422
 
1423
+ #: src/admin-views/tribe-options-display.php:211
1424
  msgid "Add HTML before event content"
1425
  msgstr "Přidat HTML kód před obsah akce"
1426
 
1427
+ #: src/admin-views/tribe-options-display.php:212
1428
  msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
1429
  msgstr "Pokud se vyznáte v HTML, můžete zde přidat dodatečný kód před šablonu akce. Některé šablony mohou toto vyžadovat jako pomoc při stylování nebo rozložení prvků."
1430
 
1431
+ #: src/admin-views/tribe-options-display.php:217
1432
  msgid "Add HTML after event content"
1433
  msgstr "Přidat HTML kód za obsah akce"
1434
 
1435
+ #: src/admin-views/tribe-options-display.php:218
1436
  msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
1437
  msgstr "Pokud se vyznáte v HTML, můžete zde přidat dodatečný kód za šablonu akce. Některé šablony mohou toto vyžadovat jako pomoc při stylování nebo rozložení prvků."
1438
 
1439
+ #: src/admin-views/tribe-options-general.php:12
1440
  msgid "Finding & extending your calendar."
1441
  msgstr "Nalezení a přidání dalších funkcí do vašeho kalendáře."
1442
 
1443
+ #: src/admin-views/tribe-options-general.php:17
1444
  msgid "Finding your calendar."
1445
  msgstr "Nalezení vašeho kalendáře."
1446
 
1447
+ #: src/admin-views/tribe-options-general.php:22
1448
  msgid "Where's my calendar?"
1449
  msgstr "Kde najdu svůj kalendář?"
1450
 
1451
+ #: src/admin-views/tribe-options-general.php:22
1452
  msgid "Right here"
1453
  msgstr "Přímo zde"
1454
 
1455
+ #: src/admin-views/tribe-options-general.php:26
1456
  msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
1457
  msgstr "Hledáte další funkce, včetně opakujících se akcí, vlastní meta data, komunitní akce, prodej vstupenek a další?"
1458
 
1459
+ #: src/admin-views/tribe-options-general.php:26
1460
  msgid "Check out the available add-ons"
1461
  msgstr "Prohlédněte si dostupné doplňky"
1462
 
1463
+ #: src/admin-views/tribe-options-general.php:31
1464
  msgid "We hope our plugin is helping you out."
1465
  msgstr "Doufáme, že je náš plugin pro vás užitečný."
1466
 
1467
+ #: src/admin-views/tribe-options-general.php:35
1468
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
1469
  msgstr "Říkáte si: \"Wow, to je ale úžasný plugin! Měl bych poděkovat Modern Tribe za jejich těžkou práci.\" Největším poděkováním, které bychom si mohli přát je uznání. Stačí přidat malý textový odkaz v dolní části vašeho kalendáře odkazující na projekt The Events Calendar."
1470
 
1471
+ #: src/admin-views/tribe-options-general.php:35
1472
+ #: src/admin-views/tribe-options-general.php:40
1473
  msgid "See an example of the link"
1474
  msgstr "Prohlédněte si příklad odkazu"
1475
 
1476
+ #: src/admin-views/tribe-options-general.php:40
1477
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project."
1478
  msgstr "Říkáte si: \"Wow, to je ale úžasný plugin! Měl bych poděkovat Modern Tribe za jejich těžkou práci.\" Největším poděkováním, které bychom si mohli přát je uznání. Stačí přidat malý textový odkaz v dolní části vašeho kalendáře odkazující na projekt The Events Calendar."
1479
 
1480
+ #: src/admin-views/tribe-options-general.php:45
1481
  msgid "Show The Events Calendar link"
1482
  msgstr "Zobrazit odkaz na stránky pluginu The Events Calendar"
1483
 
1484
+ #: src/admin-views/tribe-options-general.php:59
1485
  msgid "General Settings"
1486
  msgstr "Obecné nastavení"
1487
 
1488
+ #: src/admin-views/tribe-options-general.php:63
1489
  msgid "Number of events to show per page"
1490
  msgstr "Počet zobrazených akcí na stránku"
1491
 
1492
+ #: src/admin-views/tribe-options-general.php:70
1493
  msgid "Use Javascript to control date filtering"
1494
  msgstr "Použít Javascript pro filtrování podle data"
1495
 
1496
+ #: src/admin-views/tribe-options-general.php:71
1497
  msgid "This option is disabled when \"Disable the Event Search Bar\" is checked on the Display settings tab."
1498
  msgstr "Tato volba není aktivní pokud je na panelu Zobrazování zaškrtnuta volba \"Vypnout vyhledávací lištu akcí\"."
1499
 
1500
+ #: src/admin-views/tribe-options-general.php:71
1501
  msgid "Enable live ajax for datepicker on front end (User submit not required)."
1502
  msgstr "Povolit živý ajax pro datepicker na front endu (uživatel nemusí potvrzovat výběr tlačítkem)."
1503
 
1504
+ #: src/admin-views/tribe-options-general.php:79
1505
  msgid "Show comments"
1506
  msgstr "Zobrazit komentáře"
1507
 
1508
+ #: src/admin-views/tribe-options-general.php:80
1509
  msgid "Enable comments on event pages."
1510
  msgstr "Povolit komentáře na stránkách akce."
1511
 
1512
+ #: src/admin-views/tribe-options-general.php:86
1513
  msgid "Include events in main blog loop"
1514
  msgstr "Zahrnout akce do hlavního výpisu příspěvků"
1515
 
1516
+ #: src/admin-views/tribe-options-general.php:87
1517
  msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
1518
  msgstr "Zobrazit akce spolu s ostatními příspěvky na webu. Pokud je tato volba zaškrtnuta, akce se budou také nadále zobrazovat na výchozí stránce akcí."
1519
 
1520
+ #: src/admin-views/tribe-options-general.php:93
1521
+ #: src/admin-views/tribe-options-general.php:99
1522
  msgid "Events URL slug"
1523
  msgstr "Název v URL u akcí"
1524
 
1525
+ #: src/admin-views/tribe-options-general.php:106
1526
+ #: src/functions/template-tags/options.php:20
 
 
 
 
1527
  msgid "The slug used for building the events URL."
1528
  msgstr "Název v URL použitý při tvorbě URL adres Akcí."
1529
 
1530
+ #: src/admin-views/tribe-options-general.php:106
1531
  msgid "Your current events URL is: %s"
1532
  msgstr "Vaše současná URL adresa pro Akce je: %s"
1533
 
1534
+ #: src/admin-views/tribe-options-general.php:111
1535
+ #: src/functions/template-tags/options.php:39
1536
  msgid "Here is the iCal feed URL for your events:"
1537
  msgstr "Zde je URL adresa iCal zdroje vašich akcí:"
1538
 
1539
+ #: src/admin-views/tribe-options-general.php:116
1540
  msgid "Single event URL slug"
1541
  msgstr "Název v URL u jednotlivé akce"
1542
 
1543
+ #: src/admin-views/tribe-options-general.php:123
1544
  msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
1545
  msgstr "Výše uvedený by měl být v ideálním případě v množném čísle a tento v jednotném.<br />Vaše URL adresa pro jednotlivou Akci je: %s"
1546
 
1547
+ #: src/admin-views/tribe-options-general.php:128
1548
  msgid "End of day cutoff"
1549
  msgstr "Mezní hranice pro konec dne"
1550
 
1551
+ #: src/admin-views/tribe-options-general.php:149
1552
  msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
1553
  msgstr "Máte akci, která trvá i po půlnoci? Zde si můžete nastavit čas kdy akce daného dne končí a tím zabráníte aby se tato akce zobrazila v kalendáři následujícího dne."
1554
 
1555
+ #: src/admin-views/tribe-options-general.php:154
1556
  msgid "Default currency symbol"
1557
  msgstr "Výchozí symbol měny"
1558
 
1559
+ #: src/admin-views/tribe-options-general.php:155
1560
  msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
1561
  msgstr "Zadejte výchozí symbol měny pro vstupné na akci. Berte na vědomí, že tato volba a její případná změna se projeví pouze u nových akcí, ale nikoliv zpětně."
1562
 
1563
+ #: src/admin-views/tribe-options-general.php:162
1564
  msgid "Currency symbol follows value"
1565
  msgstr "Symbol měny uvádět za hodnotou"
1566
 
1567
+ #: src/admin-views/tribe-options-general.php:163
1568
  msgid "The currency symbol normally precedes the value. Enabling this option positions the symbol after the value."
1569
  msgstr "Symbol měny se obvykle uvádí před hodnotou. Zaškrtnutím této volby se symbol vloží za hodnotu."
1570
 
1571
+ #: src/admin-views/tribe-options-general.php:169
1572
  msgid "Map Settings"
1573
  msgstr "Nastavení map"
1574
 
1575
+ #: src/admin-views/tribe-options-general.php:173
1576
  msgid "Enable Google Maps"
1577
  msgstr "Povolit Mapy Google"
1578
 
1579
+ #: src/admin-views/tribe-options-general.php:174
1580
  msgid "Check to enable maps for events and venues."
1581
  msgstr "Zaškrtnutím této volby povolíte mapy pro akce a místa konání."
1582
 
1583
+ #: src/admin-views/tribe-options-general.php:181
1584
  msgid "Google Maps default zoom level"
1585
  msgstr "Výchozí měřítko Map Google"
1586
 
1587
+ #: src/admin-views/tribe-options-general.php:182
1588
  msgid "0 = zoomed out; 21 = zoomed in."
1589
  msgstr "0 = oddálený; 21 = přiblížený."
1590
 
1591
+ #: src/admin-views/tribe-options-general.php:190
1592
  msgid "Miscellaneous Settings"
1593
  msgstr "Další nastavení"
1594
 
1595
+ #: src/admin-views/tribe-options-general.php:194
1596
  msgid "Duplicate Venues &amp; Organizers"
1597
  msgstr "Duplicitní Místa konání a Pořadatelé"
1598
 
1599
+ #: src/admin-views/tribe-options-general.php:194
1600
  msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
1601
  msgstr "Při aktualizaci pluginu The Events Calendar z verze starší než 3.0 se může stát, že objevíte duplicitní zaznamy u pořadatelů a míst konání. Kliknutím na toto tlačítko dojde k automatickému sloučení identických míst konání a pořadatelů."
1602
 
1603
+ #: src/admin-views/tribe-options-general.php:211
1604
  msgid "Debug mode"
1605
  msgstr "Debug režim"
1606
 
1607
+ #: src/admin-views/tribe-options-general.php:217
1608
  msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
1609
  msgstr "Zaškrtnutím této volby se budou zapisovat debug informace. Standardně se budou zapisovat do chybového logu PHP na vašem serveru. Pokud si přejete, aby se zprávy protokolu zobrazovaly ve vašem prohlížeči, pak doporučujeme nainstalovat %s a podívat se do záložky \"Tribe\" v debug výstupu."
1610
 
1611
+ #: src/admin-views/tribe-options-general.php:217
1612
  msgid "Debug Bar Plugin"
1613
  msgstr "Debug Bar Plugin"
1614
 
1615
+ #: src/admin-views/tribe-options-general.php:199
1616
  msgid "View Welcome Page"
1617
  msgstr "Zobrazit uvítací stránku"
1618
 
1619
+ #: src/admin-views/tribe-options-general.php:199
1620
  msgid "View the page that displayed when you initially installed the plugin."
1621
  msgstr ""
1622
 
1623
+ #: src/admin-views/tribe-options-general.php:204
1624
  msgid "View Update Page"
1625
  msgstr "Zobrazit stránku s aktualizacemi"
1626
 
1627
+ #: src/admin-views/tribe-options-general.php:204
1628
  msgid "View the page that displayed when you updated the plugin."
1629
  msgstr ""
1630
 
1631
+ #: src/admin-views/tribe-options-help.php:33
1632
  msgctxt "not available"
1633
  msgid "n/a"
1634
  msgstr "není k dispozici"
1635
 
1636
+ #: src/admin-views/tribe-options-help.php:34
1637
  msgid "You need to upgrade!"
1638
  msgstr "Je třeba provést aktualizaci!"
1639
 
1640
+ #: src/admin-views/tribe-options-help.php:34
1641
  msgid "You are up to date!"
1642
  msgstr "Používáte nejnovější verzi!"
1643
 
1644
+ #: src/admin-views/tribe-options-help.php:63
1645
  msgid "The Events Calendar PRO"
1646
  msgstr "The Events Calendar Pro"
1647
 
1648
+ #: src/admin-views/tribe-options-help.php:72
1649
  msgid "The Events Calendar: Eventbrite Tickets"
1650
  msgstr "The Events Calendar: Eventbrite Tickets"
1651
 
1652
+ #: src/admin-views/tribe-options-help.php:81
1653
  msgid "The Events Calendar: Community Events"
1654
  msgstr "The Events Calendar: Community Events"
1655
 
1656
+ #: src/Tribe/View_Helpers.php:281
1657
  msgid "Wallis And Futuna Islands"
1658
  msgstr "Wallis a Futuna"
1659
 
1660
+ #: src/admin-views/tribe-options-help.php:90
1661
  msgid "The Events Calendar: Facebook Events"
1662
  msgstr "The Events Calendar: Facebook Events"
1663
 
1664
+ #: src/Tribe/View_Helpers.php:282
1665
  msgid "Western Sahara"
1666
  msgstr "Západní Sahara"
1667
 
1668
+ #: src/admin-views/tribe-options-help.php:99
1669
  msgid "The Events Calendar: WooCommerce Tickets"
1670
  msgstr "The Events Calendar: WooCommerce Tickets"
1671
 
1672
+ #: src/Tribe/View_Helpers.php:283
1673
  msgid "Yemen"
1674
  msgstr "Jemen"
1675
 
1676
+ #: src/admin-views/tribe-options-help.php:109
1677
  msgid "The Events Calendar: EDD Tickets"
1678
  msgstr "The Events Calendar: EDD Tickets"
1679
 
1680
+ #: src/Tribe/View_Helpers.php:284
1681
  msgid "Zambia"
1682
  msgstr "Zambie"
1683
 
1684
+ #: src/admin-views/tribe-options-help.php:119
1685
  msgid "The Events Calendar: WPEC Tickets"
1686
  msgstr "The Events Calendar: WPEC Tickets"
1687
 
1688
+ #: src/Tribe/View_Helpers.php:285
1689
  msgid "Zimbabwe"
1690
  msgstr "Zimbabwe"
1691
 
1692
+ #: src/admin-views/tribe-options-help.php:129
1693
  msgid "The Events Calendar: Shopp Tickets"
1694
  msgstr "The Events Calendar: Shopp Tickets"
1695
 
1696
+ #: src/Tribe/View_Helpers.php:316
1697
  msgid "Alabama"
1698
  msgstr "Alabama"
1699
 
1700
+ #: src/admin-views/tribe-options-help.php:139
1701
  msgid "The Events Calendar: Filter Bar"
1702
  msgstr "The Events Calendar: Filter Bar"
1703
 
1704
+ #: src/Tribe/View_Helpers.php:317
1705
  msgid "Alaska"
1706
  msgstr "Aljaška"
1707
 
1708
+ #: src/Tribe/View_Helpers.php:318
1709
  msgid "Arizona"
1710
  msgstr "Arizona"
1711
 
1712
+ #: src/admin-views/tribe-options-help.php:164
1713
  msgid "If this is your first time using The Events Calendar, you're in for a treat and are already well on your way to creating a first event. Here are some basics we've found helpful for users jumping into it for the first time:"
1714
  msgstr "Pokud teprve začínáte s pluginem The Events Calendar, čeká vás příjemné překvapení a jste již na cestě k vytvoření vaší první akce. Zde je několik základních informací, které mohou být užitečné pro začátečníky:"
1715
 
1716
+ #: src/Tribe/View_Helpers.php:319
1717
  msgid "Arkansas"
1718
  msgstr "Arkansas"
1719
 
1720
+ #: src/admin-views/tribe-options-help.php:167
1721
  msgid "%sOur New User Primer%s was designed for folks in your exact position. Featuring both step-by-step videos and written walkthroughs that feature accompanying screenshots, the primer aims to take you from zero to hero in no time."
1722
  msgstr "%sNaše příručka nového uživatele%s byla vytvořena přávě pro vás. Pomocí video průvodců a popisných návodů se screenshoty přestanete být pouhým začátečníkem ve velmi krátkém čase."
1723
 
1724
+ #: src/Tribe/View_Helpers.php:320
1725
  msgid "California"
1726
  msgstr "Kalifornie"
1727
 
1728
+ #: src/admin-views/tribe-options-help.php:169
1729
  msgid "%sInstallation/Setup FAQs%s from our support page can help give an overview of what the plugin can and cannot do. This section of the FAQs may be helpful as it aims to address any basic install questions not addressed by the new user primer."
1730
  msgstr "%sFAQ k instalaci a nastavení%s na naší stránce podpory vám poskytne přehled o tom, co plugin může a nemůže dělat. Tato sekce často kladených otázek ohledně základní instalace je užitečná zejména v případech, které nejsou řešeny v příručce nového uživatele."
1731
 
1732
+ #: src/Tribe/View_Helpers.php:321
1733
  msgid "Colorado"
1734
  msgstr "Colorado"
1735
 
1736
+ #: src/admin-views/tribe-options-help.php:171
1737
  msgid "Otherwise, if you're feeling adventurous, you can get started by heading to the Events menu and adding your first event."
1738
  msgstr "Pokud jste ale dobrodružné povahy, můžete rovnou přejít do nabídky Akce a vytvořit vaši první akci."
1739
 
1740
+ #: src/Tribe/View_Helpers.php:322
1741
  msgid "Connecticut"
1742
  msgstr "Connecticut"
1743
 
1744
+ #: src/admin-views/tribe-options-help.php:175
1745
  msgid "We've redone our support page from the ground up in an effort to better help our users. Head over to our %sSupport Page%s and you'll find lots of great resources, including:"
1746
  msgstr "Abychom mohli lépe pomoci našim uživatelům, naši stránku podpory jsme předělali úplně od základů. Vydejte se tedy na naši %sstránku podpory%s, kde najdete spoustu skvělých informačních zdrojů, včetně:"
1747
 
1748
+ #: src/Tribe/View_Helpers.php:323
1749
  msgid "Delaware"
1750
  msgstr "Delaware"
1751
 
1752
+ #: src/admin-views/tribe-options-help.php:177
1753
  msgid "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar &amp; Events Calendar PRO"
1754
  msgstr "%sŠablonové tagy, funkce, háky a filtry%s implementované v pluginu The Events Calendar a Events Calendar PRO"
1755
 
1756
+ #: src/Tribe/View_Helpers.php:324
1757
  msgid "District of Columbia"
1758
  msgstr "District of Columbia"
1759
 
1760
+ #: src/admin-views/tribe-options-help.php:179
1761
  msgid "%sFrequently Asked Questions%s ranging from the most basic setup questions to advanced themer tweaks"
1762
  msgstr "%sČasto kladené otázky%s pokrývající dotazy na základní nastavení až po pokročilé vychytávky v šablonách"
1763
 
1764
+ #: src/Tribe/View_Helpers.php:325
1765
  msgid "Florida"
1766
  msgstr "Florida"
1767
 
1768
+ #: src/admin-views/tribe-options-help.php:182
1769
  msgid "%sTutorials%s written by both members of our team and users from the community, covering custom queries, integration with third-party themes and plugins, etc."
1770
  msgstr "%sNávody%s jak od členů našeho týmu tak i od uživatelů z komunity vysvětlují tematiku vlastních dotazů či integraci s pluginy a šablonami třetích stran, apod."
1771
 
1772
+ #: src/Tribe/View_Helpers.php:327
1773
  msgid "Hawaii"
1774
  msgstr "Havaj"
1775
 
1776
+ #: src/admin-views/tribe-options-help.php:184
1777
  msgid "Release notes for painting an overall picture of the plugin's lifecycle and when features/bug fixes were introduced."
1778
  msgstr "Poznámky k verzi pro nastíněníí celkového obrazu o životním cyklu pluginu a kdy byly zavedeny funkce či opraveny chyby."
1779
 
1780
+ #: src/Tribe/View_Helpers.php:328
1781
  msgid "Idaho"
1782
  msgstr "Idaho"
1783
 
1784
+ #: src/admin-views/tribe-options-help.php:186
1785
  msgid "%sAdd-on documentation%s for all of Modern Tribe's official extensions for The Events Calendar (including WooTickets, Community Events, Eventbrite Tickets, Facebook Events, etc)"
1786
  msgstr "%sDokumentace k doplňkům%s pro všechny oficiální doplňky od Modern Tribe pro plugin The Events Calendar (včetně WooTickets, Community Events, Eventbrite Tickets, Facebook Events, atd.)"
1787
 
1788
+ #: src/Tribe/View_Helpers.php:329
1789
  msgid "Illinois"
1790
  msgstr "Illinois"
1791
 
1792
+ #: src/admin-views/tribe-options-help.php:188
1793
  msgid "We've also got a %sModern Tribe UserVoice%s page where we're actively watching for feature ideas from the community. If after playing with the plugin and reviewing the resources above, you're finding a feature isn't present that should be, let us know. Vote up existing feature requests or add your own, and help us shape the future of the products business in a way that best meets the community's needs."
1794
  msgstr "Máme také stránku %sModern Tribe UserVoice%s, kde aktivně sledujeme nápady z komunity na nové funkce. Pokud po vyzkoušení pluginu a prozkoumání výše uvedených zdrojů vás napadne funkce, kterou plugin nemá a měl by mít, dejte nám vědět. Hlasujte pro stávající požadavky na nové funkce nebo přidejte své vlastní a pomozte nám tak utvářet budoucnost produktu způsobem, který nejlépe vyhovuje potřebám komunity."
1795
 
1796
+ #: src/Tribe/View_Helpers.php:330
1797
  msgid "Indiana"
1798
  msgstr "Indiana"
1799
 
1800
+ #: src/admin-views/tribe-options-help.php:192
1801
  msgid "Written documentation can only take things so far...sometimes, you need help from a real person. This is where our %ssupport forums%s come into play."
1802
  msgstr "Písemná dokumentace má přeci jenom své limity a někdy zkrátka potřebujete pomoc od skutečné osoby. A právě zde vstupují do hry naše %sfóra podpory%s."
1803
 
1804
+ #: src/Tribe/View_Helpers.php:331
1805
  msgid "Iowa"
1806
  msgstr "Iowa"
1807
 
1808
+ #: src/admin-views/tribe-options-help.php:193
1809
  msgid "Users of the free The Events Calendar should post their support concerns to the plugin's %sWordPress.org support forum%s. While we are happy to help identify and fix bugs that are reported at WordPress.org, please make sure to read our %ssupport expectations sticky thread%s before posting so you understand our limitations."
1810
  msgstr "Uživatelé bezplatné verze pluginu The Events Calendar by měli posílat své dotazy na %sfórum podpory na WordPress.org%s. Přestože rádi pomůžeme identifikovat a opravit chyby, které jsou hlášeny na webu WordPress.org, před posláním příspěvku si prosím přečtěte naše %szvýrazněné vlákno očekávané podpory%s, abyste lépe pochopili naše omezení."
1811
 
1812
+ #: src/Tribe/View_Helpers.php:332
1813
  msgid "Kansas"
1814
  msgstr "Kansas"
1815
 
1816
+ #: src/admin-views/tribe-options-help.php:194
1817
  msgid "We hit the WordPress.org forum throughout the week, watching for bugs. If you report a legitimate bug that we're able to reproduce, we will log it and patch for an upcoming release. However we are unfortunately unable to provide customization tips or assist in integrating with 3rd party plugins or themes."
1818
  msgstr "Fórum na WordPress.org sledujeme během celého týdne kvůli přehledu o nahlášených chybách. Pokud ohlásíte legitimní chybu, kterou jsme schopni reprodukovat, my ji zaznamenáme a vydáme opravu v nadcházející verzi. Nicméně bohužel nejsme schopni poskytovat rady pro přizpůsobení nebo pomáhat při integraci s pluginy nebo šablonami třetích stran."
1819
 
1820
+ #: src/Tribe/View_Helpers.php:333
1821
  msgid "Kentucky"
1822
  msgstr "Kentucky"
1823
 
1824
+ #: src/admin-views/tribe-options-help.php:195
1825
  msgid "If you're a user of The Events Calendar and would like more support, please %spurchase a PRO license%s. We hit the PRO forums daily, and can provide a deeper level of customization/integration support for paying users than we can on WordPress.org."
1826
  msgstr "Pokud jste uživatelem pluginu The Events Calendar a chtěli byste větší podporu, zvažte %szakoupení PRO licence%s. Naše PRO fórum sledujeme každý den a platícím uživatelům můžeme poskytnout větší míru podpory ohledně přizpůsobení či integrace než uživatelům na webu WordPress.org."
1827
 
1828
+ #: src/Tribe/View_Helpers.php:47
1829
  msgid "Afghanistan"
1830
  msgstr "Afghánistán"
1831
 
1832
+ #: src/Tribe/View_Helpers.php:48
1833
  msgid "Albania"
1834
  msgstr "Albánie"
1835
 
1836
+ #: src/Tribe/View_Helpers.php:49
1837
  msgid "Algeria"
1838
  msgstr "Alžírsko"
1839
 
1840
+ #: src/Tribe/API.php:437
1841
  msgid "Unnamed Venue"
1842
  msgstr "Neznámé místo konání"
1843
 
1844
+ #: src/Tribe/View_Helpers.php:50
1845
  msgid "American Samoa"
1846
  msgstr "Americká Samoa"
1847
 
1848
+ #: src/Tribe/API.php:517 src/Tribe/View_Helpers.php:46
1849
+ #: src/functions/template-tags/venue.php:272
1850
  msgid "United States"
1851
  msgstr "Spojené státy"
1852
 
1853
+ #: src/Tribe/View_Helpers.php:51
1854
  msgid "Andorra"
1855
  msgstr "Andorra"
1856
 
1857
+ #: src/Tribe/Activation_Page.php:196
1858
  msgid "Welcome to The Events Calendar"
1859
  msgstr "Vítejte v The Events Calendar"
1860
 
1861
+ #: src/Tribe/View_Helpers.php:52
1862
  msgid "Angola"
1863
  msgstr "Angola"
1864
 
1865
+ #: src/Tribe/Activation_Page.php:216
1866
  msgid "Thanks for Updating The Events Calendar"
1867
  msgstr ""
1868
 
1869
+ #: src/Tribe/View_Helpers.php:53
1870
  msgid "Anguilla"
1871
  msgstr "Anguilla"
1872
 
1873
+ #: src/Tribe/Admin_List.php:219 src/Tribe/Main.php:1295
1874
  msgid "%s Categories"
1875
  msgstr "%s Kategorie"
1876
 
1877
+ #: src/Tribe/View_Helpers.php:54
1878
  msgid "Antarctica"
1879
  msgstr "Antarktida"
1880
 
1881
+ #: src/Tribe/Admin_List.php:225
1882
  msgid "Start Date"
1883
  msgstr "Počáteční datum"
1884
 
1885
+ #: src/Tribe/View_Helpers.php:55
1886
  msgid "Antigua And Barbuda"
1887
  msgstr "Antigua a Barbuda"
1888
 
1889
+ #: src/Tribe/Admin_List.php:226
1890
  msgid "End Date"
1891
  msgstr "Koncové datum"
1892
 
1893
+ #: src/Tribe/View_Helpers.php:56
1894
  msgid "Argentina"
1895
  msgstr "Argentina"
1896
 
1897
+ #: src/Tribe/Admin_List.php:304
1898
  msgid "All %s"
1899
  msgstr "Celkem %s"
1900
 
1901
+ #: src/Tribe/View_Helpers.php:57
1902
  msgid "Armenia"
1903
  msgstr "Arménie"
1904
 
1905
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:37
1906
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:69
1907
+ #: src/views/modules/meta/details.php:40 src/views/modules/meta/details.php:65
 
1908
  msgid "Start:"
1909
  msgstr "Zahájení:"
1910
 
1911
+ #: src/Tribe/View_Helpers.php:58
1912
  msgid "Aruba"
1913
  msgstr "Aruba"
1914
 
1915
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:46
1916
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:78
1917
+ #: src/views/modules/meta/details.php:45 src/views/modules/meta/details.php:70
 
1918
  msgid "End:"
1919
  msgstr "Ukončení:"
1920
 
1921
+ #: src/Tribe/View_Helpers.php:59
1922
  msgid "Australia"
1923
  msgstr "Austrálie"
1924
 
1925
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:57
1926
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:89
1927
+ #: src/views/modules/meta/details.php:55 src/views/modules/meta/details.php:80
 
1928
  msgid "Date:"
1929
  msgstr "Datum:"
1930
 
1931
+ #: src/Tribe/View_Helpers.php:60
1932
  msgid "Austria"
1933
  msgstr "Rakousko"
1934
 
1935
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:100
1936
+ #: src/Tribe/Advanced_Functions/Register_Meta.php:111
1937
+ #: src/views/modules/meta/details.php:85
1938
  msgid "Time:"
1939
  msgstr "Čas:"
1940
 
1941
+ #: src/Tribe/View_Helpers.php:61
1942
  msgid "Azerbaijan"
1943
  msgstr "Ázerbájdžán"
1944
 
1945
+ #: src/functions/template-tags/google-map.php:46
 
1946
  msgid "Click to view a Google Map"
1947
  msgstr "Klikněte pro zobrazení ve službě Mapy Google"
1948
 
1949
+ #: src/Tribe/View_Helpers.php:62
1950
  msgid "Bahamas"
1951
  msgstr "Bahamy"
1952
 
1953
+ #: src/functions/template-tags/google-map.php:47
 
1954
  msgid "+ Google Map"
1955
  msgstr "+ Mapa Google"
1956
 
1957
+ #: src/Tribe/View_Helpers.php:63
1958
  msgid "Bahrain"
1959
  msgstr "Bahrajn"
1960
 
1961
+ #: src/Tribe/Amalgamator.php:260 src/admin-views/tribe-options-general.php:194
 
1962
  msgid "Merge Duplicates"
1963
  msgstr "Sloučit duplicity"
1964
 
1965
+ #: src/Tribe/View_Helpers.php:64
1966
  msgid "Bangladesh"
1967
  msgstr "Bangladéš"
1968
 
1969
+ #: src/Tribe/App_Shop.php:63 src/Tribe/App_Shop.php:64
1970
+ #: src/Tribe/App_Shop.php:94
1971
  msgid "Event Add-Ons"
1972
  msgstr "Doplňky pro akce"
1973
 
1974
+ #: src/Tribe/View_Helpers.php:65
1975
  msgid "Barbados"
1976
  msgstr "Barbados"
1977
 
1978
+ #: src/Tribe/Credits.php:31
1979
  msgid "This calendar is powered by The Events Calendar."
1980
  msgstr "Kaledář běží na pluginu The Events Calendar."
1981
 
1982
+ #: src/Tribe/View_Helpers.php:66
1983
  msgid "Belarus"
1984
  msgstr "Bělorusko"
1985
 
1986
+ #: src/Tribe/Credits.php:48
1987
  msgid "Rate <strong>The Events Calendar</strong> <a href=\"%1$s\" target=\"_blank\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href=\"%1$s\" target=\"_blank\">WordPress.org</a> to keep this plugin free. Thanks from the friendly folks at Modern Tribe."
1988
  msgstr ""
1989
 
1990
+ #: src/Tribe/View_Helpers.php:67
1991
  msgid "Belgium"
1992
  msgstr "Belgie"
1993
 
1994
+ #: src/Tribe/Credits.php:48
1995
  msgid "http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5"
1996
  msgstr "http://wordpress.org/support/view/plugin-reviews/the-events-calendar?filter=5"
1997
 
1998
+ #: src/Tribe/View_Helpers.php:68
1999
  msgid "Belize"
2000
  msgstr "Belize"
2001
 
2002
+ #: src/Tribe/Field.php:209
2003
  msgid "Invalid field type specified"
2004
  msgstr "Uvedený typ pole je neplatný"
2005
 
2006
+ #: src/Tribe/View_Helpers.php:69
2007
  msgid "Benin"
2008
  msgstr "Benin"
2009
 
2010
+ #: src/Tribe/Field.php:466
2011
  msgid "No radio options specified"
2012
  msgstr "Nebyly specifikovány položky přepínače"
2013
 
2014
+ #: src/Tribe/View_Helpers.php:70
2015
  msgid "Bermuda"
2016
  msgstr "Bermudy"
2017
 
2018
+ #: src/Tribe/Field.php:502
2019
  msgid "No checkbox options specified"
2020
  msgstr "Nebyly specifikovány položky zaškrtávacího políčka"
2021
 
2022
+ #: src/Tribe/View_Helpers.php:71
2023
  msgid "Bhutan"
2024
  msgstr "Bhútán"
2025
 
2026
+ #: src/Tribe/Field.php:558
2027
  msgid "No select options specified"
2028
  msgstr "Nebyly specifikovány položky rozbalovacího seznamu"
2029
 
2030
+ #: src/Tribe/View_Helpers.php:72
2031
  msgid "Bolivia"
2032
  msgstr "Bolívie"
2033
 
2034
+ #: src/Tribe/Importer/Admin_Page.php:15 src/Tribe/Importer/Admin_Page.php:16
2035
+ #: src/Tribe/Main.php:4011
2036
  msgid "Import"
2037
  msgstr "Importovat"
2038
 
2039
+ #: src/Tribe/View_Helpers.php:73
2040
  msgid "Bosnia And Herzegowina"
2041
  msgstr "Bosna a Hercegovina"
2042
 
2043
+ #: src/Tribe/Importer/Admin_Page.php:54 src/Tribe/Importer/Admin_Page.php:187
 
2044
  msgid "The file went away. Please try again."
2045
  msgstr "Soubor není k dispozici. Zkuste to prosím znovu."
2046
 
2047
+ #: src/Tribe/View_Helpers.php:74
2048
  msgid "Botswana"
2049
  msgstr "Botswana"
2050
 
2051
+ #: src/Tribe/Importer/Admin_Page.php:95 src/Tribe/Main.php:777
2052
  msgid "General"
2053
  msgstr "Obecné"
2054
 
2055
+ #: src/Tribe/View_Helpers.php:75
2056
  msgid "Bouvet Island"
2057
  msgstr "Bouvetův ostrov"
2058
 
2059
+ #: src/Tribe/Importer/Admin_Page.php:96
2060
  msgid "Import: CSV"
2061
  msgstr "CSV import:"
2062
 
2063
+ #: src/Tribe/View_Helpers.php:76
2064
  msgid "Brazil"
2065
  msgstr "Brazílie"
2066
 
2067
+ #: src/Tribe/Importer/Admin_Page.php:153
2068
  msgid "We were unable to process your request. Please try again."
2069
  msgstr "Nepodařilo se zpracovat váš požadavek. Zkuste to prosím znovu."
2070
 
2071
+ #: src/Tribe/View_Helpers.php:77
2072
  msgid "British Indian Ocean Territory"
2073
  msgstr "Britské indickooceánské území"
2074
 
2075
+ #: src/Tribe/Importer/Admin_Page.php:194
2076
  msgid "<p>The following fields are required for a successful import:</p>"
2077
  msgstr "<p>Pro úspěšný import jsou vyžadována následující pole:</p>"
2078
 
2079
+ #: src/Tribe/View_Helpers.php:78
2080
  msgid "Brunei Darussalam"
2081
  msgstr "Brunej"
2082
 
2083
+ #: src/Tribe/Importer/Column_Mapper.php:33
2084
  msgid "Do Not Import"
2085
  msgstr "Neimportovat"
2086
 
2087
+ #: src/Tribe/View_Helpers.php:79
2088
  msgid "Bulgaria"
2089
  msgstr "Bulharsko"
2090
 
2091
+ #: src/Tribe/Importer/Column_Mapper.php:52
2092
  msgid "Event Name"
2093
  msgstr "Název akce"
2094
 
2095
+ #: src/Tribe/View_Helpers.php:80
2096
  msgid "Burkina Faso"
2097
  msgstr "Burkina Faso"
2098
 
2099
+ #: src/Tribe/Importer/Column_Mapper.php:53
2100
  msgid "Event Description"
2101
  msgstr "Popis akce"
2102
 
2103
+ #: src/Tribe/View_Helpers.php:81
2104
  msgid "Burundi"
2105
  msgstr "Burundi"
2106
 
2107
+ #: src/Tribe/Importer/Column_Mapper.php:54
2108
  msgid "Event Start Date"
2109
  msgstr "Počáteční datum akce"
2110
 
2111
+ #: src/Tribe/View_Helpers.php:82
2112
  msgid "Cambodia"
2113
  msgstr "Kambodža"
2114
 
2115
+ #: src/Tribe/Importer/Column_Mapper.php:55
2116
  msgid "Event Start Time"
2117
  msgstr "Čas zahájení akce"
2118
 
2119
+ #: src/Tribe/View_Helpers.php:83
2120
  msgid "Cameroon"
2121
  msgstr "Kamerun"
2122
 
2123
+ #: src/Tribe/Importer/Column_Mapper.php:56
2124
  msgid "Event End Date"
2125
  msgstr "Koncové datum akce"
2126
 
2127
+ #: src/Tribe/View_Helpers.php:84
2128
  msgid "Canada"
2129
  msgstr "Kanada"
2130
 
2131
+ #: src/Tribe/Importer/Column_Mapper.php:57
2132
  msgid "Event End Time"
2133
  msgstr "Čas ukončení akce"
2134
 
2135
+ #: src/Tribe/View_Helpers.php:85
2136
  msgid "Cape Verde"
2137
  msgstr "Kapverdy"
2138
 
2139
+ #: src/Tribe/Importer/Column_Mapper.php:58
2140
  msgid "All Day Event"
2141
  msgstr "Celodenní akce"
2142
 
2143
+ #: src/Tribe/View_Helpers.php:86
2144
  msgid "Cayman Islands"
2145
  msgstr "Kajmanské ostrovy"
2146
 
2147
+ #: src/Tribe/Importer/Column_Mapper.php:59
2148
  msgid "Event Venue Name"
2149
  msgstr "Místo konání akce"
2150
 
2151
+ #: src/Tribe/View_Helpers.php:87
2152
  msgid "Central African Republic"
2153
  msgstr "Středoafrická republika"
2154
 
2155
+ #: src/Tribe/Importer/Column_Mapper.php:60
2156
  msgid "Event Organizer Name"
2157
  msgstr "Jméno pořadatele akce"
2158
 
2159
+ #: src/Tribe/View_Helpers.php:88
2160
  msgid "Chad"
2161
  msgstr "Čad"
2162
 
2163
+ #: src/Tribe/Importer/Column_Mapper.php:61
2164
  msgid "Event Show Map Link"
2165
  msgstr "Zobrazit odkaz na mapu akce"
2166
 
2167
+ #: src/Tribe/View_Helpers.php:89
2168
  msgid "Chile"
2169
  msgstr "Chile"
2170
 
2171
+ #: src/Tribe/Importer/Column_Mapper.php:62
2172
  msgid "Event Show Map"
2173
  msgstr "Zobrazit mapu akce"
2174
 
2175
+ #: src/Tribe/View_Helpers.php:90
2176
  msgid "China"
2177
  msgstr "Čína"
2178
 
2179
+ #: src/Tribe/Importer/Column_Mapper.php:63
2180
  msgid "Event Cost"
2181
  msgstr "Vstupné na akci"
2182
 
2183
+ #: src/Tribe/View_Helpers.php:91
2184
  msgid "Christmas Island"
2185
  msgstr "Vánoční ostrov"
2186
 
2187
+ #: src/Tribe/View_Helpers.php:92
2188
  msgid "Cocos (Keeling) Islands"
2189
  msgstr "Kokosové (Keelingovy) ostrovy"
2190
 
2191
+ #: src/Tribe/Importer/Column_Mapper.php:66
2192
  msgid "Event Category"
2193
  msgstr "Rubrika akcí"
2194
 
2195
+ #: src/Tribe/View_Helpers.php:93
2196
  msgid "Colombia"
2197
  msgstr "Kolumbie"
2198
 
2199
+ #: src/Tribe/Importer/Column_Mapper.php:68
2200
  msgid "Event Website"
2201
  msgstr "Webová stránka akce"
2202
 
2203
+ #: src/Tribe/View_Helpers.php:94
2204
  msgid "Comoros"
2205
  msgstr "Komory"
2206
 
2207
+ #: src/Tribe/Importer/Column_Mapper.php:74
2208
  msgid "Venue Name"
2209
  msgstr "Místo konání"
2210
 
2211
+ #: src/Tribe/View_Helpers.php:95
2212
  msgid "Congo"
2213
  msgstr "Republika Kongo"
2214
 
2215
+ #: src/Tribe/Importer/Column_Mapper.php:75
2216
  msgid "Venue Country"
2217
  msgstr "Země místa konání"
2218
 
2219
+ #: src/Tribe/View_Helpers.php:96
2220
  msgid "Congo, The Democratic Republic Of The"
2221
  msgstr "Demokratická republika Kongo"
2222
 
2223
+ #: src/Tribe/Importer/Column_Mapper.php:76
2224
  msgid "Venue Address"
2225
  msgstr "Adresa místa konání"
2226
 
2227
+ #: src/Tribe/View_Helpers.php:97
2228
  msgid "Cook Islands"
2229
  msgstr "Cookovy ostrovy"
2230
 
2231
+ #: src/Tribe/Importer/Column_Mapper.php:77
2232
  msgid "Venue Address 2"
2233
  msgstr "Adresa místa konání 2"
2234
 
2235
+ #: src/Tribe/View_Helpers.php:98
2236
  msgid "Costa Rica"
2237
  msgstr "Kostarika"
2238
 
2239
+ #: src/Tribe/Importer/Column_Mapper.php:78
2240
  msgid "Venue City"
2241
  msgstr "Město místa konání"
2242
 
2243
+ #: src/Tribe/View_Helpers.php:99
2244
  msgid "Cote D'Ivoire"
2245
  msgstr "Pobřeží slonoviny"
2246
 
2247
+ #: src/Tribe/Importer/Column_Mapper.php:79
2248
  msgid "Venue State/Province"
2249
  msgstr "Kraj místa konání"
2250
 
2251
+ #: src/Tribe/View_Helpers.php:100
2252
  msgid "Croatia (Local Name: Hrvatska)"
2253
  msgstr "Chorvatsko"
2254
 
2255
+ #: src/Tribe/Importer/Column_Mapper.php:80
2256
  msgid "Venue Zip"
2257
  msgstr "PSČ místa konání"
2258
 
2259
+ #: src/Tribe/View_Helpers.php:101
2260
  msgid "Cuba"
2261
  msgstr "Kuba"
2262
 
2263
+ #: src/Tribe/Importer/Column_Mapper.php:81
2264
  msgid "Venue Phone"
2265
  msgstr "Telefon místa konání"
2266
 
2267
+ #: src/Tribe/View_Helpers.php:102
2268
  msgid "Cyprus"
2269
  msgstr "Kypr"
2270
 
2271
+ #: src/Tribe/Importer/Column_Mapper.php:82
2272
  msgid "Venue Website"
2273
  msgstr "Webové stránky místa konání"
2274
 
2275
+ #: src/Tribe/View_Helpers.php:103
2276
  msgid "Czech Republic"
2277
  msgstr "Česká republika"
2278
 
2279
+ #: src/Tribe/Importer/Column_Mapper.php:88
2280
  msgid "Organizer Name"
2281
  msgstr "Jméno pořadatele"
2282
 
2283
+ #: src/Tribe/View_Helpers.php:104
2284
  msgid "Denmark"
2285
  msgstr "Dánsko"
2286
 
2287
+ #: src/Tribe/Importer/Column_Mapper.php:89
2288
  msgid "Organizer Email"
2289
  msgstr "Email pořadatele"
2290
 
2291
+ #: src/Tribe/View_Helpers.php:105
2292
  msgid "Djibouti"
2293
  msgstr "Džibutsko"
2294
 
2295
+ #: src/Tribe/Importer/Column_Mapper.php:90
2296
  msgid "Organizer Website"
2297
  msgstr "Web pořadatele"
2298
 
2299
+ #: src/Tribe/View_Helpers.php:106
2300
  msgid "Dominica"
2301
  msgstr "Dominika"
2302
 
2303
+ #: src/Tribe/Importer/Column_Mapper.php:91
2304
  msgid "Organizer Phone"
2305
  msgstr "Telefon pořadatele"
2306
 
2307
+ #: src/Tribe/View_Helpers.php:107
2308
  msgid "Dominican Republic"
2309
  msgstr "Dominikánská republika"
2310
 
2311
+ #: src/Tribe/Importer/File_Importer.php:38
2312
  msgid "No importer defined for %s"
2313
  msgstr "Pro %s není definovaný importer"
2314
 
2315
+ #: src/Tribe/View_Helpers.php:108
2316
  msgid "East Timor"
2317
  msgstr "Východní Timor"
2318
 
2319
+ #: src/Tribe/Importer/File_Importer.php:110
2320
  msgid "Missing required fields in row %d."
2321
  msgstr "Chybí vyžadovaná pole v řádku %d."
2322
 
2323
+ #: src/Tribe/View_Helpers.php:109
2324
  msgid "Ecuador"
2325
  msgstr "Ekvádor"
2326
 
2327
+ #: src/Tribe/Importer/File_Importer.php:118
2328
  msgid "Failed to import record in row %d."
2329
  msgstr "Nepodařilo se importovat záznam v řádku %d."
2330
 
2331
+ #: src/Tribe/View_Helpers.php:110
2332
  msgid "Egypt"
2333
  msgstr "Egypt"
2334
 
2335
+ #: src/Tribe/Importer/File_Importer.php:127
2336
  msgid "%s (post ID %d) updated."
2337
  msgstr "Příspěvek %s (ID: %d) byl aktualizován."
2338
 
2339
+ #: src/Tribe/View_Helpers.php:111
2340
  msgid "El Salvador"
2341
  msgstr "Salvador"
2342
 
2343
+ #: src/Tribe/Importer/File_Importer.php:131
2344
  msgid "%s (post ID %d) created."
2345
  msgstr "Příspěvek %s (ID: %d) byl vytvořen."
2346
 
2347
+ #: src/Tribe/View_Helpers.php:112
2348
  msgid "Equatorial Guinea"
2349
  msgstr "Rovníková Guinea"
2350
 
2351
+ #: src/Tribe/Importer/File_Uploader.php:28
2352
  msgid "Temporary file not found. Could not save %s."
2353
  msgstr "Dočasný soubor nebyl nalezen. Nepodařilo se uložit soubor %s."
2354
 
2355
+ #: src/Tribe/View_Helpers.php:113
2356
  msgid "Eritrea"
2357
  msgstr "Eritrea"
2358
 
2359
+ #: src/Tribe/Importer/File_Uploader.php:36
2360
  msgid "Could not save %s."
2361
  msgstr "Soubor %s nelze uložit."
2362
 
2363
+ #: src/Tribe/View_Helpers.php:114
2364
  msgid "Estonia"
2365
  msgstr "Estonsko"
2366
 
2367
+ #: src/Tribe/Importer/Options.php:29 src/Tribe/Settings.php:520
2368
  msgid "Settings saved."
2369
  msgstr "Nastavení bylo uloženo."
2370
 
2371
+ #: src/Tribe/View_Helpers.php:115
2372
  msgid "Ethiopia"
2373
  msgstr "Etiopie"
2374
 
2375
+ #: src/Tribe/List_Widget.php:30
2376
  msgid "A widget that displays upcoming events."
2377
  msgstr "Widget, který zobrazuje seznam nadcházejících akcí."
2378
 
2379
+ #: src/Tribe/View_Helpers.php:116
2380
  msgid "Falkland Islands (Malvinas)"
2381
  msgstr "Falklandy (Malvíny)"
2382
 
2383
+ #: src/Tribe/List_Widget.php:38
2384
  msgid "Events List"
2385
  msgstr "Seznam akcí"
2386
 
2387
+ #: src/Tribe/View_Helpers.php:117
2388
  msgid "Faroe Islands"
2389
  msgstr "Faerské ostrovy"
2390
 
2391
+ #: src/Tribe/List_Widget.php:172
2392
  msgid "Upcoming Events"
2393
  msgstr "Nadcházející akce"
2394
 
2395
+ #: src/Tribe/View_Helpers.php:118
2396
  msgid "Fiji"
2397
  msgstr "Fidži"
2398
 
2399
+ #: src/Tribe/Main.php:503 src/functions/template-tags/venue.php:52
2400
+ #: src/io/csv/admin-views/import.php:45
2401
  msgid "Venues"
2402
  msgstr "Místa konání"
2403
 
2404
+ #: src/Tribe/View_Helpers.php:119
2405
  msgid "Finland"
2406
  msgstr "Finsko"
2407
 
2408
+ #: src/Tribe/Main.php:511
2409
+ #: src/functions/advanced-functions/meta_registration.php:126
2410
+ #: src/functions/template-tags/venue.php:41
2411
  msgid "Venue"
2412
  msgstr "Místo konání"
2413
 
2414
+ #: src/Tribe/View_Helpers.php:120
2415
  msgid "France"
2416
  msgstr "Francie"
2417
 
2418
+ #: src/Tribe/Main.php:519 src/functions/template-tags/organizer.php:82
2419
+ #: src/io/csv/admin-views/import.php:46
2420
  msgid "Organizers"
2421
  msgstr "Pořadatelé"
2422
 
2423
+ #: src/Tribe/View_Helpers.php:121
2424
  msgid "France, Metropolitan"
2425
  msgstr "Metropolitní Francie"
2426
 
2427
+ #: src/Tribe/Main.php:527
2428
+ #: src/functions/advanced-functions/meta_registration.php:205
2429
+ #: src/functions/template-tags/organizer.php:71
2430
  msgid "Organizer"
2431
  msgstr "Pořadatel"
2432
 
2433
+ #: src/Tribe/View_Helpers.php:122
2434
  msgid "French Guiana"
2435
  msgstr "Francouzská Guyana"
2436
 
2437
+ #: src/Tribe/Main.php:535 src/functions/template-tags/general.php:71
2438
+ #: src/io/csv/admin-views/import.php:47
2439
  msgid "Events"
2440
  msgstr "Akce"
2441
 
2442
+ #: src/Tribe/View_Helpers.php:123
2443
  msgid "French Polynesia"
2444
  msgstr "Francouzská Polynésie"
2445
 
2446
+ #: src/Tribe/Main.php:543 src/functions/template-tags/general.php:60
2447
  msgid "Event"
2448
  msgstr "Akce"
2449
 
2450
+ #: src/Tribe/View_Helpers.php:124
2451
  msgid "French Southern Territories"
2452
  msgstr "Francouzská jižní a antarktická území"
2453
 
2454
+ #. Plugin Name of the plugin/theme
2455
+ #: src/Tribe/Main.php:583 src/Tribe/Settings.php:132
2456
+ #: src/admin-views/tribe-options-help.php:272
2457
  msgid "The Events Calendar"
2458
  msgstr "The Events Calendar"
2459
 
2460
+ #: src/Tribe/View_Helpers.php:125
2461
  msgid "Gabon"
2462
  msgstr "Gabon"
2463
 
2464
+ #: src/Tribe/Main.php:588
2465
  msgid "month"
2466
  msgstr "měsíc"
2467
 
2468
+ #: src/Tribe/View_Helpers.php:126
2469
  msgid "Gambia"
2470
  msgstr "Gambie"
2471
 
2472
+ #: src/Tribe/Main.php:589
2473
  msgid "list"
2474
  msgstr "seznam"
2475
 
2476
+ #: src/Tribe/View_Helpers.php:127 src/Tribe/View_Helpers.php:326
2477
  msgid "Georgia"
2478
  msgstr "Gruzie"
2479
 
2480
+ #: src/Tribe/Main.php:590
2481
  msgid "upcoming"
2482
  msgstr "nadcházející"
2483
 
2484
+ #: src/Tribe/View_Helpers.php:128
2485
  msgid "Germany"
2486
  msgstr "Německo"
2487
 
2488
+ #: src/Tribe/Main.php:591
2489
  msgid "past"
2490
  msgstr "uplynulé"
2491
 
2492
+ #: src/Tribe/View_Helpers.php:129
2493
  msgid "Ghana"
2494
  msgstr "Ghana"
2495
 
2496
+ #: src/Tribe/Main.php:592
2497
  msgid "day"
2498
  msgstr "den"
2499
 
2500
+ #: src/Tribe/View_Helpers.php:130
2501
  msgid "Gibraltar"
2502
  msgstr "Gibraltar"
2503
 
2504
+ #: src/Tribe/Main.php:593
2505
  msgid "today"
2506
  msgstr "dnes"
2507
 
2508
+ #: src/Tribe/View_Helpers.php:131
2509
  msgid "Greece"
2510
  msgstr "Řecko"
2511
 
2512
+ #: src/Tribe/Main.php:620
2513
  msgid "Initializing Tribe Events on %s"
2514
  msgstr "Initializing Tribe Events on %s"
2515
 
2516
+ #: src/Tribe/View_Helpers.php:132
2517
  msgid "Greenland"
2518
  msgstr "Grónsko"
2519
 
2520
+ #: src/Tribe/Main.php:697
2521
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
2522
  msgstr "Vaše verze pluginu The Events Calendar není dostatečně aktuální s jedním z jeho doplňků. Proveďte prosím %saktualizaci.%s"
2523
 
2524
+ #: src/Tribe/View_Helpers.php:133
2525
  msgid "Grenada"
2526
  msgstr "Grenada"
2527
 
2528
+ #: src/Tribe/Main.php:709
2529
  msgid "The following plugins are out of date: <b>%s</b>. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %sLearn More%s."
2530
  msgstr ""
2531
 
2532
+ #: src/Tribe/View_Helpers.php:134
2533
  msgid "Guadeloupe"
2534
  msgstr "Guadeloupe"
2535
 
2536
+ #: src/Tribe/Main.php:819 src/admin-views/tribe-options-licenses.php:33
2537
  msgid "Licenses"
2538
  msgstr "Licence"
2539
 
2540
+ #: src/Tribe/View_Helpers.php:135
2541
  msgid "Guam"
2542
  msgstr "Guam"
2543
 
2544
+ #: src/Tribe/View_Helpers.php:136
 
 
 
 
2545
  msgid "Guatemala"
2546
  msgstr "Guatemala"
2547
 
2548
+ #: src/Tribe/Main.php:778
2549
  msgid "Display"
2550
  msgstr "Zobrazování"
2551
 
2552
+ #: src/Tribe/View_Helpers.php:137
2553
  msgid "Guinea"
2554
  msgstr "Guinea"
2555
 
2556
+ #: src/Tribe/Main.php:782 src/Tribe/Main.php:4054 src/Tribe/Main.php:4149
 
2557
  msgid "Help"
2558
  msgstr "Nápověda"
2559
 
2560
+ #: src/Tribe/View_Helpers.php:138
2561
  msgid "Guinea-Bissau"
2562
  msgstr "Guinea-Bissau"
2563
 
2564
+ #: src/Tribe/Main.php:920
2565
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
2566
  msgstr "Omlouváme se, ale plugin The Events Calendar vyžaduje alespoň WordPress %s. Aktualizujte si prosím svůj WordPress."
2567
 
2568
+ #: src/Tribe/View_Helpers.php:139
2569
  msgid "Guyana"
2570
  msgstr "Guyana"
2571
 
2572
+ #: src/Tribe/Main.php:923
2573
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
2574
  msgstr "Omlouváme se, ale plugin The Events Calendar vyžaduje alespoň PHP %s. Požádejte svého poskytovatele webhostingu o přechod na novější verzi PHP."
2575
 
2576
+ #: src/Tribe/View_Helpers.php:140
2577
  msgid "Haiti"
2578
  msgstr "Haiti"
2579
 
2580
+ #: src/Tribe/Main.php:1197 src/Tribe/Main.php:2240
2581
  msgid "category"
2582
  msgstr "rubrika"
2583
 
2584
+ #: src/Tribe/View_Helpers.php:141
2585
  msgid "Heard And Mc Donald Islands"
2586
  msgstr "Heardův ostrov a McDonaldovy ostrovy"
2587
 
2588
+ #: src/Tribe/Main.php:1208 src/Tribe/Main.php:2239
2589
  msgid "tag"
2590
  msgstr "stitek"
2591
 
2592
+ #: src/Tribe/View_Helpers.php:142
2593
  msgid "Holy See (Vatican City State)"
2594
  msgstr "Svatý stolec (Vatikán)"
2595
 
2596
+ #: src/Tribe/Main.php:1243 src/Tribe/Main.php:1261 src/Tribe/Main.php:1279
 
2597
  msgid "Add New"
2598
  msgstr "Vytvořit akci"
2599
 
2600
+ #: src/Tribe/View_Helpers.php:143
2601
  msgid "Honduras"
2602
  msgstr "Honduras"
2603
 
2604
+ #: src/Tribe/Main.php:1244 src/Tribe/Main.php:1262 src/Tribe/Main.php:1280
2605
+ #: src/Tribe/Main.php:1405 src/Tribe/Main.php:1406
 
2606
  msgid "Add New %s"
2607
  msgstr "Přidat nový %s"
2608
 
2609
+ #: src/Tribe/View_Helpers.php:144
2610
  msgid "Hong Kong"
2611
  msgstr "Hongkong"
2612
 
2613
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:112 src/Tribe/Main.php:1245
2614
+ #: src/Tribe/Main.php:1263 src/Tribe/Main.php:1281 src/Tribe/Main.php:1425
2615
+ #: src/Tribe/Main.php:1477 src/Tribe/Main.php:3998
 
2616
  msgid "Edit %s"
2617
  msgstr "Upravit %s"
2618
 
2619
+ #: src/Tribe/View_Helpers.php:145
2620
  msgid "Hungary"
2621
  msgstr "Maďarsko"
2622
 
2623
+ #: src/Tribe/Main.php:1246 src/Tribe/Main.php:1264 src/Tribe/Main.php:1282
 
2624
  msgid "New %s"
2625
  msgstr "Nové %s"
2626
 
2627
+ #: src/Tribe/View_Helpers.php:146
2628
  msgid "Iceland"
2629
  msgstr "Island"
2630
 
2631
+ #: src/Tribe/Main.php:1247 src/Tribe/Main.php:1265 src/Tribe/Main.php:1283
 
2632
  msgid "View %s"
2633
  msgstr "Zobrazit %s"
2634
 
2635
+ #: src/Tribe/View_Helpers.php:147
2636
  msgid "India"
2637
  msgstr "Indie"
2638
 
2639
+ #: src/Tribe/Main.php:1248 src/Tribe/Main.php:1266 src/Tribe/Main.php:1284
 
2640
  msgid "Search %s"
2641
  msgstr "Hledat %s"
2642
 
2643
+ #: src/Tribe/View_Helpers.php:148
2644
  msgid "Indonesia"
2645
  msgstr "Indonésie"
2646
 
2647
+ #: src/Tribe/Main.php:1249 src/Tribe/Main.php:1267 src/Tribe/Main.php:1285
 
2648
  msgid "No %s found"
2649
  msgstr "Žádné %s nenalezeny"
2650
 
2651
+ #: src/Tribe/View_Helpers.php:149
2652
  msgid "Iran (Islamic Republic Of)"
2653
  msgstr "Írán"
2654
 
2655
+ #: src/Tribe/Main.php:1250 src/Tribe/Main.php:1268 src/Tribe/Main.php:1286
 
2656
  msgid "No %s found in Trash"
2657
  msgstr "Žádný %s nebyl v koši nalezen"
2658
 
2659
+ #: src/Tribe/View_Helpers.php:150
2660
  msgid "Iraq"
2661
  msgstr "Irák"
2662
 
2663
+ #: src/Tribe/Main.php:1296
2664
  msgid "%s Category"
2665
  msgstr "%s Kategorie"
2666
 
2667
+ #: src/Tribe/View_Helpers.php:151
2668
  msgid "Ireland"
2669
  msgstr "Irsko"
2670
 
2671
+ #: src/Tribe/Main.php:1297
2672
  msgid "Search %s Categories"
2673
  msgstr "Hledat %s v kategoriích"
2674
 
2675
+ #: src/Tribe/View_Helpers.php:152
2676
  msgid "Israel"
2677
  msgstr "Izrael"
2678
 
2679
+ #: src/Tribe/Main.php:1298
2680
  msgid "All %s Categories"
2681
  msgstr "Všechny %s Kategorie"
2682
 
2683
+ #: src/Tribe/View_Helpers.php:153
2684
  msgid "Italy"
2685
  msgstr "Itálie"
2686
 
2687
+ #: src/Tribe/Main.php:1299
2688
  msgid "Parent %s Category"
2689
  msgstr ""
2690
 
2691
+ #: src/Tribe/View_Helpers.php:154
2692
  msgid "Jamaica"
2693
  msgstr "Jamajka"
2694
 
2695
+ #: src/Tribe/Main.php:1300
2696
  msgid "Parent %s Category:"
2697
  msgstr ""
2698
 
2699
+ #: src/Tribe/View_Helpers.php:155
2700
  msgid "Japan"
2701
  msgstr "Japonsko"
2702
 
2703
+ #: src/Tribe/Main.php:1301
2704
  msgid "Edit %s Category"
2705
  msgstr "Upravit %s Kategorii"
2706
 
2707
+ #: src/Tribe/View_Helpers.php:156
2708
  msgid "Jordan"
2709
  msgstr "Jordánsko"
2710
 
2711
+ #: src/Tribe/Main.php:1302
2712
  msgid "Update %s Category"
2713
  msgstr "Aktualizovat %s Kategorii"
2714
 
2715
+ #: src/Tribe/View_Helpers.php:157
2716
  msgid "Kazakhstan"
2717
  msgstr "Kazachstán"
2718
 
2719
+ #: src/Tribe/Main.php:1303
2720
  msgid "Add New %s Category"
2721
  msgstr "Přuidat novou %s kategorii"
2722
 
2723
+ #: src/Tribe/View_Helpers.php:158
2724
  msgid "Kenya"
2725
  msgstr "Keňa"
2726
 
2727
+ #: src/Tribe/Main.php:1304
2728
  msgid "New %s Category Name"
2729
  msgstr "Nové %s jména kategorií"
2730
 
2731
+ #: src/Tribe/View_Helpers.php:159
2732
  msgid "Kiribati"
2733
  msgstr "Kiribati"
2734
 
2735
+ #: src/Tribe/Main.php:1320
2736
  msgid "%1$s updated. <a href=\"%2$s\">View %3$s</a>"
2737
  msgstr "%1$s aktualiozováno. <a href=\"%2$s\">Zobrazit %3$s</a>"
2738
 
2739
+ #: src/Tribe/View_Helpers.php:160
2740
  msgid "Korea, Democratic People's Republic Of"
2741
  msgstr "Severní Korea"
2742
 
2743
+ #: src/Tribe/Main.php:1321 src/Tribe/Main.php:1357 src/Tribe/Main.php:1376
 
2744
  msgid "Custom field updated."
2745
  msgstr "Uživatelské pole bylo aktualizováno."
2746
 
2747
+ #: src/Tribe/View_Helpers.php:161
2748
  msgid "Korea, Republic Of"
2749
  msgstr "Jižní Korea"
2750
 
2751
+ #: src/Tribe/Main.php:1322 src/Tribe/Main.php:1358 src/Tribe/Main.php:1377
 
2752
  msgid "Custom field deleted."
2753
  msgstr "Uživatelské pole bylo smazáno."
2754
 
2755
+ #: src/Tribe/View_Helpers.php:162
2756
  msgid "Kuwait"
2757
  msgstr "Kuvajt"
2758
 
2759
+ #: src/Tribe/Main.php:1323 src/Tribe/Main.php:1356 src/Tribe/Main.php:1359
2760
+ #: src/Tribe/Main.php:1375 src/Tribe/Main.php:1378
 
2761
  msgid "%s updated."
2762
  msgstr "%s aktualizováno."
2763
 
2764
+ #: src/Tribe/View_Helpers.php:163
2765
  msgid "Kyrgyzstan"
2766
  msgstr "Kyrgyzstán"
2767
 
2768
+ #: src/Tribe/Main.php:1325
2769
  msgid "%1$s restored to revision from %2$s"
2770
  msgstr ""
2771
 
2772
+ #: src/Tribe/View_Helpers.php:164
2773
  msgid "Lao People's Democratic Republic"
2774
  msgstr "Laos"
2775
 
2776
+ #: src/Tribe/Main.php:1327
2777
  msgid "Event published. <a href=\"%1$s\">View %2$s</a>"
2778
  msgstr "Akce publikována. <a href=\"%1$s\">Zobrazit %2$s</a>"
2779
 
2780
+ #: src/Tribe/View_Helpers.php:165
2781
  msgid "Latvia"
2782
  msgstr "Lotyšsko"
2783
 
2784
+ #: src/Tribe/Main.php:1331 src/Tribe/Main.php:1363 src/Tribe/Main.php:1382
 
2785
  msgid "%s saved."
2786
  msgstr "%s uloženo."
2787
 
2788
+ #: src/Tribe/View_Helpers.php:166
2789
  msgid "Lebanon"
2790
  msgstr "Libanon"
2791
 
2792
+ #: src/Tribe/Main.php:1333
2793
  msgid "%1$s submitted. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2794
  msgstr ""
2795
 
2796
+ #: src/Tribe/View_Helpers.php:167
2797
  msgid "Lesotho"
2798
  msgstr "Lesotho"
2799
 
2800
+ #: src/Tribe/Main.php:1339
2801
  msgid "%1$s scheduled for: <strong>%2$s</strong>. <a target=\"_blank\" href=\"%3$s\">Preview %4$s</a>"
2802
  msgstr ""
2803
 
2804
+ #: src/Tribe/View_Helpers.php:168
2805
  msgid "Liberia"
2806
  msgstr "Libérie"
2807
 
2808
+ #: src/Tribe/Main.php:1342 src/Tribe/Main.php:1368 src/Tribe/Main.php:1387
 
2809
  msgid "M j, Y @ G:i"
2810
  msgstr "j.n.Y, G:i"
2811
 
2812
+ #: src/Tribe/View_Helpers.php:169
2813
  msgid "Libya"
2814
  msgstr "Libye"
2815
 
2816
+ #: src/Tribe/Main.php:1347
2817
  msgid "%1$s draft updated. <a target=\"_blank\" href=\"%2$s\">Preview %3$s</a>"
2818
  msgstr ""
2819
 
2820
+ #: src/Tribe/View_Helpers.php:170
2821
  msgid "Liechtenstein"
2822
  msgstr "Lichtenštejnsko"
2823
 
2824
+ #: src/Tribe/Main.php:1361 src/Tribe/Main.php:1380
2825
  msgid "%s restored to revision from %s"
2826
  msgstr "%s obnoveno do stavu revize od %s"
2827
 
2828
+ #: src/Tribe/View_Helpers.php:171
2829
  msgid "Lithuania"
2830
  msgstr "Litva"
2831
 
2832
+ #: src/Tribe/Main.php:1362 src/Tribe/Main.php:1381
2833
  msgid "%s published."
2834
  msgstr "%s publikováno."
2835
 
2836
+ #: src/Tribe/View_Helpers.php:172
2837
  msgid "Luxembourg"
2838
  msgstr "Lucembursko"
2839
 
2840
+ #: src/Tribe/Main.php:1364 src/Tribe/Main.php:1383
2841
  msgid "%s submitted."
2842
  msgstr "%s uloženo."
2843
 
2844
+ #: src/Tribe/View_Helpers.php:173
2845
  msgid "Macau"
2846
  msgstr "Macao"
2847
 
2848
+ #: src/Tribe/Main.php:1366 src/Tribe/Main.php:1385
2849
  msgid "%s scheduled for: <strong>%2$s</strong>."
2850
  msgstr "%s naplánováno na: <strong>%2$s</strong>."
2851
 
2852
+ #: src/Tribe/View_Helpers.php:174
2853
  msgid "Macedonia"
2854
  msgstr "Makedonie"
2855
 
2856
+ #: src/Tribe/Main.php:1370 src/Tribe/Main.php:1389
2857
  msgid "%s draft updated."
2858
  msgstr "%s koncept aktualizován."
2859
 
2860
+ #: src/Tribe/View_Helpers.php:175
2861
  msgid "Madagascar"
2862
  msgstr "Madagaskar"
2863
 
2864
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88 src/Tribe/Main.php:1424
2865
+ #: src/Tribe/Main.php:1475
2866
  msgid "Use Saved %s:"
2867
  msgstr "Použít uloženou %s"
2868
 
2869
+ #: src/Tribe/View_Helpers.php:176
2870
  msgid "Malawi"
2871
  msgstr "Malawi"
2872
 
2873
+ #: src/Tribe/Main.php:1452
2874
  msgid "Without a defined location your event will not display a <a href=\"https://support.google.com/webmasters/answer/164506\" target=\"_blank\">Google Rich Snippet</a> on the search results."
2875
  msgstr ""
2876
 
2877
+ #: src/Tribe/View_Helpers.php:177
2878
  msgid "Malaysia"
2879
  msgstr "Malajsie"
2880
 
2881
+ #: src/Tribe/Main.php:1543 src/Tribe/Main.php:1625
2882
  msgid "Use New %s"
2883
  msgstr "Použít novou %s"
2884
 
2885
+ #: src/Tribe/View_Helpers.php:178
2886
  msgid "Maldives"
2887
  msgstr "Maledivy"
2888
 
2889
+ #: src/Tribe/Main.php:1545 src/Tribe/Main.php:1627
2890
  msgid "My %s"
2891
  msgstr "Moje %s"
2892
 
2893
+ #: src/Tribe/View_Helpers.php:179
2894
  msgid "Mali"
2895
  msgstr "Mali"
2896
 
2897
+ #: src/Tribe/Main.php:1550 src/Tribe/Main.php:1632
2898
  msgid "Available %s"
2899
  msgstr "Dostupné %s"
2900
 
2901
+ #: src/Tribe/View_Helpers.php:180
2902
  msgid "Malta"
2903
  msgstr "Malta"
2904
 
2905
+ #: src/Tribe/Main.php:1561 src/Tribe/Main.php:1643
2906
  msgid "No saved %s exists."
2907
  msgstr ""
2908
 
2909
+ #: src/Tribe/View_Helpers.php:181
2910
  msgid "Marshall Islands"
2911
  msgstr "Marshallovy ostrovy"
2912
 
2913
+ #: src/Tribe/Main.php:1787
2914
  msgid "Next"
2915
  msgstr "Další"
2916
 
2917
+ #: src/Tribe/View_Helpers.php:182
2918
  msgid "Martinique"
2919
  msgstr "Martinik"
2920
 
2921
+ #: src/Tribe/Main.php:1788
2922
  msgid "Prev"
2923
  msgstr "Předchozí"
2924
 
2925
+ #: src/Tribe/View_Helpers.php:183
2926
  msgid "Mauritania"
2927
  msgstr "Mauritánie"
2928
 
2929
+ #: src/Tribe/Main.php:1789 src/functions/template-tags/day.php:105
2930
  msgid "Today"
2931
  msgstr "Dnes"
2932
 
2933
+ #: src/Tribe/View_Helpers.php:184
2934
  msgid "Mauritius"
2935
  msgstr "Mauricius"
2936
 
2937
+ #: src/Tribe/Main.php:1790
2938
  msgid "Done"
2939
  msgstr "Hotovo"
2940
 
2941
+ #: src/Tribe/View_Helpers.php:185
2942
  msgid "Mayotte"
2943
  msgstr "Mayotte"
2944
 
2945
+ #: src/Tribe/Main.php:1964
2946
  msgid "Network"
2947
  msgstr "Síť webů"
2948
 
2949
+ #: src/Tribe/View_Helpers.php:186
2950
  msgid "Mexico"
2951
  msgstr "Mexiko"
2952
 
2953
+ #: src/Tribe/Main.php:3508 src/Tribe/Main.php:3543
2954
+ #: src/functions/template-tags/day.php:158
2955
+ #: src/functions/template-tags/day.php:180
2956
  msgid "Date out of range."
2957
  msgstr "Datum je mimo platný rozsah."
2958
 
2959
+ #: src/Tribe/View_Helpers.php:187
2960
  msgid "Micronesia, Federated States Of"
2961
  msgstr "Mikronésie"
2962
 
2963
+ #: src/Tribe/Main.php:3579
2964
  msgid "%s Options"
2965
  msgstr "%s Nastavení"
2966
 
2967
+ #: src/Tribe/View_Helpers.php:188
2968
  msgid "Moldova, Republic Of"
2969
  msgstr "Moldavsko"
2970
 
2971
+ #: src/Tribe/Main.php:3586 src/Tribe/Main.php:3597
2972
  msgid "%s Information"
2973
  msgstr "%s Informace"
2974
 
2975
+ #: src/Tribe/View_Helpers.php:189
2976
  msgid "Monaco"
2977
  msgstr "Monako"
2978
 
2979
+ #: src/Tribe/Main.php:3810
2980
  msgid "Support"
2981
  msgstr "Podpora"
2982
 
2983
+ #: src/Tribe/View_Helpers.php:190
2984
  msgid "Mongolia"
2985
  msgstr "Mongolsko"
2986
 
2987
+ #: src/Tribe/Main.php:3813
2988
  msgid "View All Add-Ons"
2989
  msgstr "Prohlédnout všechny doplňky"
2990
 
2991
+ #: src/Tribe/View_Helpers.php:191
2992
  msgid "Montenegro"
2993
  msgstr "Černá Hora"
2994
 
2995
+ #: src/Tribe/Main.php:3834
2996
  msgid "News from Modern Tribe"
2997
  msgstr "Novinky od Modern Tribe"
2998
 
2999
+ #: src/Tribe/View_Helpers.php:192
3000
  msgid "Montserrat"
3001
  msgstr "Montserrat"
3002
 
3003
+ #: src/Tribe/Main.php:3883
3004
  msgid "Additional Functionality"
3005
  msgstr "Další funkce"
3006
 
3007
+ #: src/Tribe/View_Helpers.php:193
3008
  msgid "Morocco"
3009
  msgstr "Maroko"
3010
 
3011
+ #: src/Tribe/Main.php:3888
3012
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
3013
  msgstr "Hledáte další funkce, včetně opakujících se akcí, prodeje vstupenek, veřejně přidávaných akcí, nových způsobů zobrazení a další?"
3014
 
3015
+ #: src/Tribe/View_Helpers.php:194
3016
  msgid "Mozambique"
3017
  msgstr "Mosambik"
3018
 
3019
+ #: src/Tribe/Main.php:3889
3020
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
3021
  msgstr "Podívejte se na <a href=\"%s\">dostupné doplňky</a>."
3022
 
3023
+ #: src/Tribe/View_Helpers.php:195
3024
  msgid "Myanmar"
3025
  msgstr "Myanmar"
3026
 
3027
+ #: src/Tribe/Main.php:3940
3028
  msgid "%s"
3029
  msgstr ""
3030
 
3031
+ #: src/Tribe/View_Helpers.php:196
3032
  msgid "Namibia"
3033
  msgstr "Namibie"
3034
 
3035
+ #: src/Tribe/Main.php:3977 src/Tribe/Main.php:4073
3036
  msgid "View Calendar"
3037
  msgstr "Zobrazit kalendář"
3038
 
3039
+ #: src/Tribe/View_Helpers.php:197
3040
  msgid "Nauru"
3041
  msgstr "Nauru"
3042
 
3043
+ #: src/Tribe/Main.php:3987
3044
  msgid "Add %s"
3045
  msgstr "Přidat %s"
3046
 
3047
+ #: src/Tribe/View_Helpers.php:198
3048
  msgid "Nepal"
3049
  msgstr "Nepál"
3050
 
3051
+ #: src/Tribe/Main.php:4019
3052
  msgid "CSV"
3053
  msgstr "CSV"
3054
 
3055
+ #: src/Tribe/View_Helpers.php:199
3056
  msgid "Netherlands"
3057
  msgstr "Nizozemsko"
3058
 
3059
+ #: src/Tribe/Main.php:4041 src/Tribe/Main.php:4131 src/Tribe/Settings.php:161
 
3060
  msgid "Settings"
3061
  msgstr "Nastavení"
3062
 
3063
+ #: src/Tribe/View_Helpers.php:200
3064
  msgid "Netherlands Antilles"
3065
  msgstr "Nizozemské Antily"
3066
 
3067
+ #: src/Tribe/Main.php:4132
3068
  msgid "Calendar"
3069
  msgstr "Kalendář"
3070
 
3071
+ #: src/Tribe/View_Helpers.php:201
3072
  msgid "New Caledonia"
3073
  msgstr "Nová Kaledonie"
3074
 
3075
+ #: src/Tribe/Main.php:4208
3076
  msgid "List"
3077
  msgstr "Seznam"
3078
 
3079
+ #: src/Tribe/View_Helpers.php:202
3080
  msgid "New Zealand"
3081
  msgstr "Nový Zéland"
3082
 
3083
+ #: src/Tribe/Main.php:4226
3084
  msgid "Month"
3085
  msgstr "Měsíc"
3086
 
3087
+ #: src/Tribe/View_Helpers.php:203
3088
  msgid "Nicaragua"
3089
  msgstr "Nikaragua"
3090
 
3091
+ #: src/Tribe/Main.php:4243
3092
  msgid "Day"
3093
  msgstr "Den"
3094
 
3095
+ #: src/Tribe/View_Helpers.php:204
3096
  msgid "Niger"
3097
  msgstr "Niger"
3098
 
3099
+ #: src/Tribe/Main.php:4268 src/Tribe/Main.php:4269
3100
  msgid "Search"
3101
  msgstr "Hledat"
3102
 
3103
+ #: src/Tribe/View_Helpers.php:205
3104
  msgid "Nigeria"
3105
  msgstr "Nigérie"
3106
 
3107
+ #: src/Tribe/Main.php:4293 src/Tribe/Main.php:4309
3108
  msgid "Date"
3109
  msgstr "Datum"
3110
 
3111
+ #: src/Tribe/View_Helpers.php:206
3112
  msgid "Niue"
3113
  msgstr "Niue"
3114
 
3115
+ #: src/Tribe/Main.php:4296
3116
  msgid "%s In"
3117
  msgstr "%s V"
3118
 
3119
+ #: src/Tribe/View_Helpers.php:207
3120
  msgid "Norfolk Island"
3121
  msgstr "Norfolk"
3122
 
3123
+ #: src/Tribe/Main.php:4298
3124
  msgid "%s From"
3125
  msgstr "%s Od"
3126
 
3127
+ #: src/Tribe/View_Helpers.php:208
3128
  msgid "Northern Mariana Islands"
3129
  msgstr "Severní Mariany"
3130
 
3131
+ #: src/Tribe/Main.php:4300
3132
  msgid "Day Of"
3133
  msgstr "Den z"
3134
 
3135
+ #: src/Tribe/View_Helpers.php:209
3136
  msgid "Norway"
3137
  msgstr "Norsko"
3138
 
3139
+ #: src/Tribe/Main.php:4375
3140
  msgid "Once Every 30 Mins"
3141
  msgstr "Jednou za 30 minut"
3142
 
3143
+ #: src/Tribe/View_Helpers.php:210
3144
  msgid "Oman"
3145
  msgstr "Omán"
3146
 
3147
+ #: src/Tribe/Options_Exception.php:19 src/Tribe/Post_Exception.php:22
3148
  msgid "Error"
3149
  msgstr "Chyba"
3150
 
3151
+ #: src/Tribe/View_Helpers.php:211
3152
  msgid "Pakistan"
3153
  msgstr "Pákistán"
3154
 
3155
+ #: src/Tribe/PUE/Checker.php:304
3156
  msgid "License Key"
3157
  msgstr "Licenční klíč"
3158
 
3159
+ #: src/Tribe/View_Helpers.php:212
3160
  msgid "Palau"
3161
  msgstr "Palau"
3162
 
3163
+ #: src/Tribe/PUE/Checker.php:305
3164
  msgid "A valid license key is required for support and updates"
3165
  msgstr "Platný licenční klíč je vyžadován pro podporu a aktualizace"
3166
 
3167
+ #: src/Tribe/View_Helpers.php:213
3168
  msgid "Panama"
3169
  msgstr "Panama"
3170
 
3171
+ #: src/Tribe/PUE/Checker.php:377
3172
  msgid "License key(s) updated."
3173
  msgstr "Licenční klíč(e) byl aktualizován."
3174
 
3175
+ #: src/Tribe/View_Helpers.php:214
3176
  msgid "Papua New Guinea"
3177
  msgstr "Papua-Nová Guinea"
3178
 
3179
+ #: src/Tribe/PUE/Checker.php:419
3180
  msgid "Sorry, key validation server is not available."
3181
  msgstr "Omlouváme se, ale server k ověření klíče není dostupný."
3182
 
3183
+ #: src/Tribe/View_Helpers.php:215
3184
  msgid "Paraguay"
3185
  msgstr "Paraguay"
3186
 
3187
+ #: src/Tribe/PUE/Checker.php:421
3188
  msgid "Sorry, this key is expired."
3189
  msgstr "Omlouváme se, ale platnost tohoto klíče skončila."
3190
 
3191
+ #: src/Tribe/View_Helpers.php:216
3192
  msgid "Peru"
3193
  msgstr "Peru"
3194
 
3195
+ #: src/Tribe/PUE/Checker.php:424
3196
  msgid "Sorry, this key is out of installs."
3197
  msgstr "Omlouváme se, ale tento klíč je mimo instalaci."
3198
 
3199
+ #: src/Tribe/View_Helpers.php:217
3200
  msgid "Philippines"
3201
  msgstr "Filipíny"
3202
 
3203
+ #: src/Tribe/PUE/Checker.php:425
3204
  msgid "Why am I seeing this message?"
3205
  msgstr "Proč vidím tuto zprávu?"
3206
 
3207
+ #: src/Tribe/View_Helpers.php:218
3208
  msgid "Pitcairn"
3209
  msgstr "Pitcairnovy ostrovy"
3210
 
3211
+ #: src/Tribe/PUE/Checker.php:428
3212
  msgid "Sorry, this key is not valid."
3213
  msgstr "Omlouváme se, ale tento klíč není platný."
3214
 
3215
+ #: src/Tribe/View_Helpers.php:219
3216
  msgid "Poland"
3217
  msgstr "Polsko"
3218
 
3219
+ #: src/Tribe/PUE/Checker.php:430
3220
  msgid "Valid Key! Expires on %s"
3221
  msgstr "Platný klíč! Platnost tohoto klíče skončí %s"
3222
 
3223
+ #: src/Tribe/View_Helpers.php:220
3224
  msgid "Portugal"
3225
  msgstr "Portugalsko"
3226
 
3227
+ #: src/Tribe/PUE/Checker.php:436
3228
  msgid "Hmmm... something's wrong with this validator. Please contact <a href=\"%s\">support.</a>"
3229
  msgstr "Hmmm... něco je špatně s tímto validátorem. Kontaktujte prosím <a href=\"%s\">podporu.</a>"
3230
 
3231
+ #: src/Tribe/View_Helpers.php:221
3232
  msgid "Puerto Rico"
3233
  msgstr "Portoriko"
3234
 
3235
+ #: src/Tribe/Settings.php:160 src/Tribe/Settings.php:176
3236
  msgid "The Events Calendar Settings"
3237
  msgstr "Nastavení pro The Events Calendar"
3238
 
3239
+ #: src/Tribe/View_Helpers.php:222
3240
  msgid "Qatar"
3241
  msgstr "Katar"
3242
 
3243
+ #: src/Tribe/Settings.php:176
3244
  msgid "Events Settings"
3245
  msgstr "Nastavení akcí"
3246
 
3247
+ #: src/Tribe/View_Helpers.php:223
3248
  msgid "Reunion"
3249
  msgstr "Réunion"
3250
 
3251
+ #: src/Tribe/Settings.php:239
3252
  msgid "%s Settings"
3253
  msgstr "Nastavení %s"
3254
 
3255
+ #: src/Tribe/View_Helpers.php:224
3256
  msgid "Romania"
3257
  msgstr "Rumunsko"
3258
 
3259
+ #: src/Tribe/Settings.php:253
3260
  msgid "You've requested a non-existent tab."
3261
  msgstr "Požadovaný panel neexistuje."
3262
 
3263
+ #: src/Tribe/View_Helpers.php:225
3264
  msgid "Russian Federation"
3265
  msgstr "Rusko"
3266
 
3267
+ #: src/Tribe/View_Helpers.php:226
 
 
 
 
3268
  msgid "Rwanda"
3269
  msgstr "Rwanda"
3270
 
3271
+ #: src/Tribe/Settings.php:309
3272
  msgid "You don't have permission to do that."
3273
  msgstr "Nemáte dostatečné oprávnění pro tuto činnost."
3274
 
3275
+ #: src/Tribe/View_Helpers.php:227
3276
  msgid "Saint Kitts And Nevis"
3277
  msgstr "Svatý Kryštof a Nevis"
3278
 
3279
+ #: src/Tribe/Settings.php:315
3280
  msgid "The request was sent insecurely."
3281
  msgstr "Požadavek byl odeslán nezabezpečený."
3282
 
3283
+ #: src/Tribe/View_Helpers.php:228
3284
  msgid "Saint Lucia"
3285
  msgstr "Svatá Lucie"
3286
 
3287
+ #: src/Tribe/Settings.php:321
3288
  msgid "The request wasn't sent from this tab."
3289
  msgstr "Požadavek nebyl odeslán z tohoto panelu."
3290
 
3291
+ #: src/Tribe/View_Helpers.php:229
3292
  msgid "Saint Vincent And The Grenadines"
3293
  msgstr "Svatý Vincenc a Grenadiny"
3294
 
3295
+ #: src/Tribe/Settings.php:489
3296
  msgid "Your form had the following errors:"
3297
  msgstr "Ve formuláři se vyskytly následující chyby:"
3298
 
3299
+ #: src/Tribe/View_Helpers.php:230
3300
  msgid "Samoa"
3301
  msgstr "Samoa"
3302
 
3303
+ #: src/Tribe/Settings.php:498
3304
  msgid "None of your settings were saved. Please try again."
3305
  msgstr "Žádné z vašich nastavení nebylo uloženo. Zkuste to prosím znovu."
3306
 
3307
+ #: src/Tribe/View_Helpers.php:231
3308
  msgid "San Marino"
3309
  msgstr "San Marino"
3310
 
3311
+ #: src/Tribe/Settings.php:498
3312
  msgid "The above setting was not saved. Other settings were successfully saved."
3313
  msgid_plural "The above settings were not saved. Other settings were successfully saved."
3314
  msgstr[0] "Výše uvedené nastavení nebylo uloženo. Ostatní nastavení byla úspěšně uložena."
3315
  msgstr[1] "Výše uvedená nastavení nebyla uložena. Ostatní nastavení byla úspěšně uložena."
3316
  msgstr[2] "Výše uvedená nastavení nebyla uložena. Ostatní nastavení byla úspěšně uložena."
3317
 
3318
+ #: src/Tribe/View_Helpers.php:232
3319
  msgid "Sao Tome And Principe"
3320
  msgstr "Svatý Tomáš a Princův ostrov"
3321
 
3322
+ #: src/Tribe/Settings_Tab.php:224
3323
  msgid "There are no fields setup for this tab yet."
3324
  msgstr "Pro tento panel nejsou zatím nastavena žádná pole."
3325
 
3326
+ #: src/Tribe/View_Helpers.php:233
3327
  msgid "Saudi Arabia"
3328
  msgstr "Saúdská Arábie"
3329
 
3330
+ #: src/Tribe/Support.php:46
3331
  msgid "Sometimes it's hard to tell what's going wrong without knowing more about your system steup. For your convenience, we've put together a little report on what's cooking under the hood."
3332
  msgstr "Někdy je těžké říct, co je špatně bez podrobnějších informací o nastavení vašeho systému. Proto jsme sestavili malou zprávu o tom, co máte pod kapotou."
3333
 
3334
+ #: src/Tribe/View_Helpers.php:234
3335
  msgid "Senegal"
3336
  msgstr "Senegal"
3337
 
3338
+ #: src/Tribe/Support.php:47
3339
  msgid "If you suspect that the problem you're having is related to another plugin, or we're just plain having trouble reproducing your bug report, please copy and send all of this to our support team."
3340
  msgstr "Pokud máte podezření, že váš problém má spojitost s jiným pluginem anebo jen zkrátka máme potíže s reprodukcí vašeho chybového hlášení, prosím zkopírujte a pošlete to vše našemu týmu technické podpory."
3341
 
3342
+ #: src/Tribe/View_Helpers.php:235
3343
  msgid "Serbia"
3344
  msgstr "Srbsko"
3345
 
3346
+ #: src/Tribe/Support.php:51
3347
  msgid "System Information"
3348
  msgstr "Informace o systému"
3349
 
3350
+ #: src/Tribe/View_Helpers.php:236
3351
  msgid "Seychelles"
3352
  msgstr "Seychely"
3353
 
3354
+ #: src/Tribe/Support.php:137
3355
  msgid "Unknown or not set"
3356
  msgstr "Neznámý nebo nenastavený"
3357
 
3358
+ #: src/Tribe/View_Helpers.php:237
3359
  msgid "Sierra Leone"
3360
  msgstr "Sierra Leone"
3361
 
3362
+ #: src/Tribe/Template/Day.php:99 src/Tribe/Template/Day.php:115
3363
  msgid "All Day"
3364
  msgstr "Celý den"
3365
 
3366
+ #: src/Tribe/View_Helpers.php:238
3367
  msgid "Singapore"
3368
  msgstr "Singapur"
3369
 
3370
+ #: src/Tribe/Template/Day.php:102 src/Tribe/Template/Day.php:118
3371
  msgid "Ongoing"
3372
  msgstr "Probíhající"
3373
 
3374
+ #: src/Tribe/View_Helpers.php:239
3375
  msgid "Slovakia (Slovak Republic)"
3376
  msgstr "Slovensko"
3377
 
3378
+ #: src/Tribe/View_Helpers.php:240
 
 
 
 
3379
  msgid "Slovenia"
3380
  msgstr "Slovinsko"
3381
 
3382
+ #: src/Tribe/View_Helpers.php:241
 
 
 
 
3383
  msgid "Solomon Islands"
3384
  msgstr "Šalamounovy ostrovy"
3385
 
3386
+ #: src/Tribe/Template/Month.php:284
3387
  msgid "There were no results found for <strong>\"%s\"</strong> this month. Try searching next month."
3388
  msgstr "Nebyly nalezeny žádné záznamy pro <strong>\"%s\"</strong> v tomto měsíci. Zkuste hledat v dalším měsíci."
3389
 
3390
+ #: src/Tribe/View_Helpers.php:242
3391
  msgid "Somalia"
3392
  msgstr "Somálsko"
3393
 
3394
+ #: src/Tribe/View_Helpers.php:243
 
 
 
 
3395
  msgid "South Africa"
3396
  msgstr "Jihoafrická republika"
3397
 
3398
+ #: src/Tribe/Template/Month.php:289 src/Tribe/Template_Factory.php:366
3399
  msgid "There were no results found."
3400
  msgstr "Nebyly nalezeny žádné záznamy."
3401
 
3402
+ #: src/Tribe/View_Helpers.php:244
3403
  msgid "South Georgia, South Sandwich Islands"
3404
  msgstr "Jižní Georgie a Jižní Sandwichovy ostrovy"
3405
 
3406
+ #: src/Tribe/Template/Month.php:692
3407
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
3408
  msgstr ""
3409
 
3410
+ #: src/Tribe/View_Helpers.php:245
3411
  msgid "Spain"
3412
  msgstr "Španělsko"
3413
 
3414
+ #: src/Tribe/Template/Single_Event.php:120
3415
  msgid "This %s has passed."
3416
  msgstr "%s již proběhla."
3417
 
3418
+ #: src/Tribe/View_Helpers.php:246
3419
  msgid "Sri Lanka"
3420
  msgstr "Šrí Lanka"
3421
 
3422
+ #: src/Tribe/Template_Factory.php:353
3423
  msgid "There were no results found for <strong>\"%s\"</strong>."
3424
  msgstr "Nebyly nalezeny žádné záznamy pro <strong>\"%s\"</strong>."
3425
 
3426
+ #: src/Tribe/View_Helpers.php:247
3427
  msgid "St. Helena"
3428
  msgstr "Svatá Helena"
3429
 
3430
+ #: src/Tribe/View_Helpers.php:248
 
 
 
 
3431
  msgid "St. Pierre And Miquelon"
3432
  msgstr "Saint-Pierre a Miquelon"
3433
 
3434
+ #: src/Tribe/View_Helpers.php:249
 
 
 
 
3435
  msgid "Sudan"
3436
  msgstr "Súdán"
3437
 
3438
+ #: src/Tribe/View_Helpers.php:250
 
 
 
 
3439
  msgid "Suriname"
3440
  msgstr "Surinam"
3441
 
3442
+ #: src/Tribe/Template_Factory.php:361
3443
  msgid "No previous %s "
3444
  msgstr ""
3445
 
3446
+ #: src/Tribe/View_Helpers.php:251
3447
  msgid "Svalbard And Jan Mayen Islands"
3448
  msgstr "Špicberky"
3449
 
3450
+ #: src/Tribe/Templates.php:618
3451
  msgid "Template overrides should be moved to the correct subdirectory: %s"
3452
  msgstr "Přepisy šablon je třeba přemístit do správného podadresáře: %s"
3453
 
3454
+ #: src/Tribe/View_Helpers.php:252
3455
  msgid "Swaziland"
3456
  msgstr "Svazijsko"
3457
 
3458
+ #: src/Tribe/Templates.php:660
3459
  msgid "Template overrides should be moved to the correct subdirectory: tribe_get_template_part('%s')"
3460
  msgstr "Přepisy šablon je třeba přemístit do správného podadresáře: tribe_get_template_part('%s')"
3461
 
3462
+ #: src/Tribe/View_Helpers.php:253
3463
  msgid "Sweden"
3464
  msgstr "Švédsko"
3465
 
3466
+ #: src/Tribe/Tickets/Attendees_Table.php:74
3467
  msgid "Order #"
3468
  msgstr "Objednávka č."
3469
 
3470
+ #: src/Tribe/View_Helpers.php:254
3471
  msgid "Switzerland"
3472
  msgstr "Švýcarsko"
3473
 
3474
+ #: src/Tribe/Tickets/Attendees_Table.php:75
3475
  msgid "Order Status"
3476
  msgstr "Stav objednávky"
3477
 
3478
+ #: src/Tribe/View_Helpers.php:255
3479
  msgid "Syrian Arab Republic"
3480
  msgstr "Sýrie"
3481
 
3482
+ #: src/Tribe/Tickets/Attendees_Table.php:76
3483
  msgid "Purchaser name"
3484
  msgstr "Jméno kupce"
3485
 
3486
+ #: src/Tribe/View_Helpers.php:256
3487
  msgid "Taiwan"
3488
  msgstr "Tchaj-wan (Čínská republika)"
3489
 
3490
+ #: src/Tribe/Tickets/Attendees_Table.php:77
3491
  msgid "Purchaser email"
3492
  msgstr "Email kupce"
3493
 
3494
+ #: src/Tribe/View_Helpers.php:257
3495
  msgid "Tajikistan"
3496
  msgstr "Tádžikistán"
3497
 
3498
+ #: src/Tribe/Tickets/Attendees_Table.php:78
3499
  msgid "Ticket type"
3500
  msgstr "Typ vstupenky"
3501
 
3502
+ #: src/Tribe/View_Helpers.php:258
3503
  msgid "Tanzania, United Republic Of"
3504
  msgstr "Tanzanie"
3505
 
3506
+ #: src/Tribe/Tickets/Attendees_Table.php:79 src/views/tickets/email.php:305
 
3507
  msgid "Ticket #"
3508
  msgstr "Vstupenka č."
3509
 
3510
+ #: src/Tribe/View_Helpers.php:259
3511
  msgid "Thailand"
3512
  msgstr "Thajsko"
3513
 
3514
+ #: src/Tribe/Tickets/Attendees_Table.php:80 src/views/tickets/email.php:317
 
3515
  msgid "Security Code"
3516
  msgstr "Kontrolní kód"
3517
 
3518
+ #: src/Tribe/View_Helpers.php:260
3519
  msgid "Togo"
3520
  msgstr "Togo"
3521
 
3522
+ #: src/Tribe/Tickets/Attendees_Table.php:81
3523
+ #: src/Tribe/Tickets/Attendees_Table.php:166
3524
+ #: src/Tribe/Tickets/Attendees_Table.php:238
3525
  msgid "Check in"
3526
  msgstr "Zaškrtnout"
3527
 
3528
+ #: src/Tribe/View_Helpers.php:261
3529
  msgid "Tokelau"
3530
  msgstr "Tokelau"
3531
 
3532
+ #: src/Tribe/Tickets/Attendees_Table.php:167
3533
+ #: src/Tribe/Tickets/Attendees_Table.php:239
3534
  msgid "Undo Check in"
3535
  msgstr "Zrušit zaškrtnutí"
3536
 
3537
+ #: src/Tribe/View_Helpers.php:262
3538
  msgid "Tonga"
3539
  msgstr "Tonga"
3540
 
3541
+ #: src/Tribe/Tickets/Attendees_Table.php:211
3542
  msgid "Print"
3543
  msgstr "Tisk"
3544
 
3545
+ #: src/Tribe/View_Helpers.php:263
3546
  msgid "Trinidad And Tobago"
3547
  msgstr "Trinidad a Tobago"
3548
 
3549
+ #: src/Tribe/Tickets/Attendees_Table.php:212
3550
  msgid "Email"
3551
  msgstr "Email"
3552
 
3553
+ #: src/Tribe/View_Helpers.php:264
3554
  msgid "Tunisia"
3555
  msgstr "Tunisko"
3556
 
3557
+ #: src/Tribe/Tickets/Attendees_Table.php:213 src/Tribe/iCal.php:119
3558
  msgid "Export"
3559
  msgstr "Export"
3560
 
3561
+ #: src/Tribe/View_Helpers.php:265
3562
  msgid "Turkey"
3563
  msgstr "Turecko"
3564
 
3565
+ #: src/Tribe/Tickets/Attendees_Table.php:219
3566
  msgid "Filter by purchaser name, ticket #, order # or security code"
3567
  msgstr ""
3568
 
3569
+ #: src/Tribe/View_Helpers.php:266
3570
  msgid "Turkmenistan"
3571
  msgstr "Turkmenistán"
3572
 
3573
+ #: src/Tribe/Tickets/Attendees_Table.php:240
3574
+ #: src/admin-views/tickets/list.php:22
3575
  msgid "Delete"
3576
  msgstr "Smazat"
3577
 
3578
+ #: src/Tribe/View_Helpers.php:267
3579
  msgid "Turks And Caicos Islands"
3580
  msgstr "Turks a Caicos"
3581
 
3582
+ #: src/Tribe/Tickets/Metabox.php:26 src/admin-views/admin-update-message.php:52
 
3583
  msgid "Tickets"
3584
  msgstr "Vstupenky"
3585
 
3586
+ #: src/Tribe/View_Helpers.php:268
3587
  msgid "Tuvalu"
3588
  msgstr "Tuvalu"
3589
 
3590
+ #: src/Tribe/Tickets/Metabox.php:71
3591
  msgid "Ticket header image"
3592
  msgstr "Obrázek v záhlaví vstupenky"
3593
 
3594
+ #: src/Tribe/View_Helpers.php:269
3595
  msgid "Uganda"
3596
  msgstr "Uganda"
3597
 
3598
+ #: src/Tribe/Tickets/Metabox.php:72
3599
  msgid "Set as ticket header"
3600
  msgstr "Použít jako obrázek v záhlaví vstupenky"
3601
 
3602
+ #: src/Tribe/View_Helpers.php:270
3603
  msgid "Ukraine"
3604
  msgstr "Ukrajina"
3605
 
3606
+ #: src/Tribe/Tickets/Tickets.php:328
3607
  msgid "Your ticket has been saved."
3608
  msgstr "Vaše vstupenka byla uložena."
3609
 
3610
+ #: src/Tribe/View_Helpers.php:271
3611
  msgid "United Arab Emirates"
3612
  msgstr "Spojené arabské emiráty"
3613
 
3614
+ #: src/Tribe/Tickets/Tickets.php:409
3615
  msgid "Your ticket has been deleted."
3616
  msgstr "Vaše vstupenka byla smazána."
3617
 
3618
+ #: src/Tribe/View_Helpers.php:272
3619
  msgid "United Kingdom"
3620
  msgstr "Spojené království"
3621
 
3622
+ #: src/Tribe/Tickets/Tickets_Pro.php:78 src/admin-views/tickets/list.php:41
 
3623
  msgid "See who purchased tickets to this event"
3624
  msgstr "Kdo si koupil vstupenky na tuto akci"
3625
 
3626
+ #: src/Tribe/View_Helpers.php:273
3627
  msgid "United States Minor Outlying Islands"
3628
  msgstr "Menší odlehlé ostrovy Spojených států amerických"
3629
 
3630
+ #: src/Tribe/Tickets/Tickets_Pro.php:78
3631
+ #: src/admin-views/tickets/attendees.php:11 src/admin-views/tickets/list.php:41
 
3632
  msgid "Attendees"
3633
  msgstr "Účastníci"
3634
 
3635
+ #: src/Tribe/View_Helpers.php:274
3636
  msgid "Uruguay"
3637
  msgstr "Uruguay"
3638
 
3639
+ #: src/Tribe/Tickets/Tickets_Pro.php:113
3640
  msgid "You need to select a user or type a valid email address"
3641
  msgstr "Je třeba vybrat uživatele nebo zadat platnou emailovou adresu"
3642
 
3643
+ #: src/Tribe/View_Helpers.php:275
3644
  msgid "Uzbekistan"
3645
  msgstr "Uzbekistán"
3646
 
3647
+ #: src/Tribe/Tickets/Tickets_Pro.php:114
3648
  msgid "Sending..."
3649
  msgstr "Odesílání..."
3650
 
3651
+ #: src/Tribe/View_Helpers.php:276
3652
  msgid "Vanuatu"
3653
  msgstr "Vanuatu"
3654
 
3655
+ #: src/Tribe/Tickets/Tickets_Pro.php:140
3656
  msgid "Columns"
3657
  msgstr "Sloupce"
3658
 
3659
+ #: src/Tribe/View_Helpers.php:277
3660
  msgid "Venezuela"
3661
  msgstr "Venezuela"
3662
 
3663
+ #: src/Tribe/Tickets/Tickets_Pro.php:140
3664
  msgid "You can use Screen Options to select which columns you want to see. The selection works in the table below, in the email, for print and for the CSV export."
3665
  msgstr "Pomocí záložky &#8222;Nastavení zobrazených informací&#8220; si můžete vybrat, které sloupce chcete zobrazit. Tento výběr se projeví při výpisu, při odesílání emailem, při tisku a při exportu do CSV souboru."
3666
 
3667
+ #: src/Tribe/View_Helpers.php:278
3668
  msgid "Viet Nam"
3669
  msgstr "Vietnam"
3670
 
3671
+ #: src/Tribe/Tickets/Tickets_Pro.php:230
3672
  msgid "Yes"
3673
  msgstr "Ano"
3674
 
3675
+ #: src/Tribe/View_Helpers.php:279
3676
  msgid "Virgin Islands (British)"
3677
  msgstr "Britské Panenské ostrovy"
3678
 
3679
+ #: src/Tribe/Tickets/Tickets_Pro.php:262
3680
  msgid "attendees"
3681
  msgstr "ucastnici"
3682
 
3683
+ #: src/Tribe/View_Helpers.php:280
3684
  msgid "Virgin Islands (U.S.)"
3685
  msgstr "Americké Panenské ostrovy"
3686
 
3687
+ #: src/Tribe/Tickets/Tickets_Pro.php:316
3688
  msgid "Attendee List for: %s"
3689
  msgstr "Seznam účastníků na: %s"
3690
 
3691
+ #: src/Tribe/Validate.php:76 src/Tribe/Validate.php:117
3692
  msgid "Invalid or incomplete field passed"
3693
  msgstr "Zadáno neplatné nebo neúplné pole"
3694
 
3695
+ #: src/Tribe/Validate.php:77 src/Tribe/Validate.php:112
3696
+ #: src/Tribe/Validate.php:118
3697
  msgid "Field ID:"
3698
  msgstr "ID pole:"
3699
 
3700
+ #: src/Tribe/Validate.php:111
3701
  msgid "Non-existant field validation function passed"
3702
  msgstr "Zadána neexistující validační funkce pole"
3703
 
3704
+ #: src/Tribe/Validate.php:112
3705
  msgctxt "non-existant function name passed for field validation"
3706
  msgid "with function name:"
3707
  msgstr "se jménem funkce:"
3708
 
3709
+ #: src/Tribe/Validate.php:135 src/Tribe/Validate.php:151
3710
  msgid "%s must contain numbers and letters only"
3711
  msgstr "%s se musí skládat pouze z číslic a písmen"
3712
 
3713
+ #: src/Tribe/Validate.php:167
3714
  msgid "%s must contain numbers, letters and dots only"
3715
  msgstr "%s se musí skládat pouze z číslic, písmen a teček."
3716
 
3717
+ #: src/Tribe/Validate.php:181
3718
  msgid "%s must be a positive number."
3719
  msgstr "%s musí být kladné číslo."
3720
 
3721
+ #: src/Tribe/Validate.php:196
3722
  msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
3723
  msgstr "%s musí být platným názvem v URL (číslice, písmena, pomlčky, a podtržítka)."
3724
 
3725
+ #: src/Tribe/Validate.php:211
3726
  msgid "%s must be a valid absolute URL."
3727
  msgstr "%s musí být platná absolutní adresa URL."
3728
 
3729
+ #: src/Tribe/Validate.php:227 src/Tribe/Validate.php:244
3730
+ #: src/Tribe/Validate.php:266
3731
  msgid "%s must have a value that's part of its options."
3732
  msgstr "%s musí mít hodnotu, která je jednou z možných voleb."
3733
 
3734
+ #: src/Tribe/Validate.php:280
3735
  msgid "Comparison validation failed because no comparison value was provided, for field %s"
3736
  msgstr "Kontrola porovnávání se nezdařila, protože nebyla zadána porovnávací hodnota pro pole %s"
3737
 
3738
+ #: src/Tribe/Validate.php:287
3739
  msgid "%s cannot be the same as %s."
3740
  msgstr "%s nemůže být stejné jako %s."
3741
 
3742
+ #: src/Tribe/Validate.php:289
3743
  msgid "%s cannot be a duplicate"
3744
  msgstr "%s nemůže být duplicitní"
3745
 
3746
+ #: src/Tribe/Validate.php:305
3747
  msgid "%s must be a number or percentage."
3748
  msgstr "%s musí být číslo nebo procento."
3749
 
3750
+ #: src/Tribe/Validate.php:359
3751
  msgid "%s must be a number between 0 and 21."
3752
  msgstr "%s musí být číslo v rozmezí 0 až 21."
3753
 
3754
+ #: src/Tribe/Validate.php:375
3755
  msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
3756
  msgstr "%s se musí skládat pouze z písmen, číslic, pomlček, apostrofů a mezer."
3757
 
3758
+ #: src/Tribe/Validate.php:391
3759
  msgid "%s must consist of letters, spaces, apostrophes, and dashes."
3760
  msgstr "%s se musí skládat pouze z písmen, mezer, apostrofů a pomlček."
3761
 
3762
+ #: src/Tribe/Validate.php:405
3763
  msgid "%s must consist of 5 numbers."
3764
  msgstr "%s se musí skládat z 5 čísel."
3765
 
3766
+ #: src/Tribe/Validate.php:419
3767
  msgid "%s must be a phone number."
3768
  msgstr "%s musí být telefonní číslo."
3769
 
3770
+ #: src/Tribe/Validate.php:435
3771
  msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
3772
  msgstr "Seznam zemí musí být formátován jako jedna země na řádek v následujícím formátu: <br>US, United States <br> UK, United Kingdom."
3773
 
3774
+ #: src/Tribe/View_Helpers.php:26 src/Tribe/View_Helpers.php:45
3775
  msgid "Select a Country:"
3776
  msgstr "Vyberte zemi:"
lang/tribe-events-calendar-da_DK.mo CHANGED
Binary file
lang/tribe-events-calendar-da_DK.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the The Events Calendar package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-07-03 14:21:05+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,3668 +10,3766 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: The Events Calendar\n"
12
 
13
- #: ../src/Tribe/Activation_Page.php:39
14
- msgid "Go to plugins page"
15
  msgstr ""
16
 
17
- #: ../src/Tribe/Activation_Page.php:39
18
- msgid "Return to Plugins page"
19
  msgstr ""
20
 
21
- #: ../src/Tribe/Activation_Page.php:47
22
- msgid "Go to WordPress Updates page"
23
  msgstr ""
24
 
25
- #: ../src/Tribe/Activation_Page.php:47
26
- msgid "Return to WordPress Updates"
27
  msgstr ""
28
 
29
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88
30
- msgid "Create New %s"
31
  msgstr ""
32
 
33
- #: ../src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:149
34
- msgid "Add another organizer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  msgstr ""
36
 
37
- #: ../src/Tribe/Cost_Utils.php:108
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  msgctxt "Cost range separator"
39
  msgid " - "
40
- msgstr ""
41
 
42
- #: ../src/Tribe/PUE/Checker.php:416
43
  msgid "unknown date"
44
- msgstr ""
45
 
46
- #: ../src/Tribe/Support.php:142
47
  msgid "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
48
  msgstr ""
49
 
50
- #: ../src/admin-views/tribe-options-help.php:94
51
  msgid "If you're looking for help with The Events Calendar, you've come to the right place. We are committed to helping make your calendar be spectacular... and hope the resources provided below will help get you there."
52
- msgstr ""
53
 
54
- #: ../src/admin-views/tribe-options-help.php:142
55
  msgid "Hi! We are Modern Tribe and we are here to help you be awesome. Thanks so much for installing our labor of love!"
56
- msgstr ""
57
 
58
- #: ../src/admin-views/tribe-options-help.php:151
59
  msgid "Support Resources To Help You Be Awesome"
60
- msgstr ""
61
 
62
- #: ../src/admin-views/tribe-options-licenses.php:17
63
  msgid ""
64
  "<strong> Using our plugins in a multisite network? </strong>\n"
65
  "\t\tPlease note that your license key will be applied to the entire network, not just this site."
66
  msgstr ""
 
 
67
 
68
- #: ../src/admin-views/tribe-options-licenses.php:20
69
  msgid ""
70
  "Only license fields for <strong>network activated</strong> plugins will be\n"
71
  "\t\tlisted on this screen. "
72
  msgstr ""
 
 
73
 
74
- #: ../src/Tribe/View_Helpers.php:334
75
  msgid "Louisiana"
76
  msgstr "Louisiana"
77
 
78
- #: ../src/admin-views/tribe-options-help.php:132
79
- msgid "If you find that you aren't getting the level of service you've come to expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us why. We'll do what we can to make it right."
80
- msgstr "Hvis du ikke synes, du får det serviceniveau, du forventer af Modern Tribe, så send os en email på %s eller tweet %s og fortæl os hvorfor. Vi vil gøre hvad vi kan for at rette op på det."
81
-
82
- #: ../src/Tribe/View_Helpers.php:335
83
  msgid "Maine"
84
  msgstr "Maine"
85
 
86
- #: ../src/admin-views/tribe-options-help.php:133
87
  msgid "More..."
88
  msgstr "Mere…"
89
 
90
- #: ../src/Tribe/View_Helpers.php:336
91
  msgid "Maryland"
92
  msgstr "Maryland"
93
 
94
- #: ../src/Tribe/View_Helpers.php:337
95
  msgid "Massachusetts"
96
  msgstr "Massachusetts"
97
 
98
- #: ../src/Tribe/View_Helpers.php:338
99
  msgid "Michigan"
100
  msgstr "Michigan"
101
 
102
- #: ../src/admin-views/tribe-options-help.php:154
103
  msgid "Forums: Because Everyone Needs A Buddy"
104
  msgstr "Fora: Fordi alle har brug for en ven"
105
 
106
- #: ../src/Tribe/View_Helpers.php:339
107
  msgid "Minnesota"
108
  msgstr "Minnesota"
109
 
110
- #: ../src/admin-views/tribe-options-help.php:157
111
  msgid "Not getting help?"
112
  msgstr "Får du ingen Hjælp?"
113
 
114
- #: ../src/Tribe/View_Helpers.php:340
115
  msgid "Mississippi"
116
  msgstr "Mississippi"
117
 
118
- #: ../src/admin-views/tribe-options-help.php:174
119
  msgid "Latest Version:"
120
  msgstr "Seneste version:"
121
 
122
- #: ../src/Tribe/View_Helpers.php:341
123
  msgid "Missouri"
124
  msgstr "Missouri"
125
 
126
- #: ../src/admin-views/tribe-options-help.php:176
127
  msgid "Author:"
128
  msgstr "Forfatter:"
129
 
130
- #: ../src/Tribe/View_Helpers.php:342
131
  msgid "Montana"
132
  msgstr "Montana"
133
 
134
- #: ../src/admin-views/tribe-options-help.php:176
135
  msgid "Modern Tribe Inc"
136
  msgstr "Modern Tribe Inc"
137
 
138
- #: ../src/Tribe/View_Helpers.php:343
139
  msgid "Nebraska"
140
  msgstr "Nebraska"
141
 
142
- #: ../src/admin-views/tribe-options-help.php:179
143
  msgid "Requires:"
144
  msgstr "Kræver:"
145
 
146
- #: ../src/Tribe/View_Helpers.php:344
147
  msgid "Nevada"
148
  msgstr "Nevada"
149
 
150
- #: ../src/admin-views/tribe-options-help.php:179
151
  msgid "WordPress "
152
  msgstr "WordPress "
153
 
154
- #: ../src/Tribe/View_Helpers.php:345
155
  msgid "New Hampshire"
156
  msgstr "New Hampshire"
157
 
158
- #: ../src/admin-views/tribe-options-help.php:181
159
  msgid "Wordpress.org Plugin Page"
160
  msgstr "Wordpress.org Plugin side"
161
 
162
- #: ../src/Tribe/View_Helpers.php:346
163
  msgid "New Jersey"
164
  msgstr "New Jersey"
165
 
166
- #: ../src/admin-views/tribe-options-help.php:187
167
  msgid "Average Rating"
168
  msgstr "Gns. Rating"
169
 
170
- #: ../src/Tribe/View_Helpers.php:347
171
  msgid "New Mexico"
172
  msgstr "New Mexico"
173
 
174
- #: ../src/admin-views/tribe-options-help.php:193
175
  msgid "Based on %d rating"
176
  msgid_plural "Based on %d ratings"
177
  msgstr[0] "Baseret på %d rating"
178
  msgstr[1] "Baseret på %d ratings"
179
 
180
- #: ../src/Tribe/View_Helpers.php:348
181
  msgid "New York"
182
  msgstr "New York"
183
 
184
- #: ../src/admin-views/tribe-options-help.php:195
185
  msgid "Give us 5 stars!"
186
  msgstr "Giv os 5 stjerner!"
187
 
188
- #: ../src/Tribe/View_Helpers.php:349
189
  msgid "North Carolina"
190
  msgstr "North Carolina"
191
 
192
- #: ../src/admin-views/tribe-options-help.php:199
193
  msgid "Premium Add-Ons"
194
  msgstr "Premium Add-Ons"
195
 
196
- #: ../src/Tribe/View_Helpers.php:350
197
  msgid "North Dakota"
198
  msgstr "North Dakota"
199
 
200
- #: ../src/admin-views/tribe-options-help.php:208
201
  msgid "(Coming Soon!)"
202
  msgstr "(Kommer snart!)"
203
 
204
- #: ../src/Tribe/View_Helpers.php:351
205
  msgid "Ohio"
206
  msgstr "Ohio"
207
 
208
- #: ../src/admin-views/tribe-options-help.php:218
209
  msgid "News and Tutorials"
210
  msgstr "News and Tutorials"
211
 
212
- #: ../src/Tribe/View_Helpers.php:352
213
  msgid "Oklahoma"
214
  msgstr "Oklahoma"
215
 
216
- #: ../src/admin-views/tribe-options-network.php:15
217
  msgid "Network Settings"
218
  msgstr "Netværksindstillinger"
219
 
220
- #: ../src/Tribe/View_Helpers.php:353
221
  msgid "Oregon"
222
  msgstr "Oregon"
223
 
224
- #: ../src/admin-views/tribe-options-network.php:19
225
  msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
226
  msgstr "Her kan alle globale netværksindstillinger for Modern Tribe's The Events Calendar indstilles."
227
 
228
- #: ../src/Tribe/View_Helpers.php:354
229
  msgid "Pennsylvania"
230
  msgstr "Pennsylvania"
231
 
232
- #: ../src/admin-views/tribe-options-network.php:27
233
  msgid "Hide the following settings tabs on every site:"
234
  msgstr "Gem følgende indstillingsfaner på alle sites:"
235
 
236
- #: ../src/Tribe/View_Helpers.php:355
237
  msgid "Rhode Island"
238
  msgstr "Rhode Island"
239
 
240
- #: ../src/admin-views/venue-meta-box.php:34
241
- #: ../src/functions/advanced-functions/meta_registration.php:176
 
242
  msgid "Address:"
243
  msgstr "Adresse:"
244
 
245
- #: ../src/Tribe/View_Helpers.php:356
246
  msgid "South Carolina"
247
  msgstr "South Carolina"
248
 
249
- #: ../src/admin-views/venue-meta-box.php:41
250
  msgid "City:"
251
  msgstr "By:"
252
 
253
- #: ../src/Tribe/View_Helpers.php:357
254
  msgid "South Dakota"
255
  msgstr "South Dakota"
256
 
257
- #: ../src/admin-views/venue-meta-box.php:48
258
  msgid "Country:"
259
  msgstr "Land:"
260
 
261
- #: ../src/Tribe/View_Helpers.php:358
262
  msgid "Tennessee"
263
  msgstr "Tennessee"
264
 
265
- #: ../src/admin-views/venue-meta-box.php:88
266
  msgid "State or Province:"
267
  msgstr "Område/provins:"
268
 
269
- #: ../src/Tribe/View_Helpers.php:359
270
  msgid "Texas"
271
  msgstr "Texas"
272
 
273
- #: ../src/admin-views/venue-meta-box.php:92
274
  msgid "Select a State:"
275
  msgstr "Stat:"
276
 
277
- #: ../src/Tribe/View_Helpers.php:360
278
  msgid "Utah"
279
  msgstr "Utah"
280
 
281
- #: ../src/admin-views/venue-meta-box.php:105
282
  msgid "Postal Code:"
283
  msgstr "Postnummer:"
284
 
285
- #: ../src/Tribe/View_Helpers.php:361
286
  msgid "Vermont"
287
  msgstr "Vermont"
288
 
289
- #: ../src/admin-views/venue-meta-box.php:137
290
- #: ../src/admin-views/venue-meta-box.php:159
291
  msgid "Show Google Map:"
292
  msgstr "Vis Google Map kortvisning:"
293
 
294
- #: ../src/Tribe/View_Helpers.php:362
295
  msgid "Virginia"
296
  msgstr "Virginia"
297
 
298
- #: ../src/admin-views/venue-meta-box.php:147
299
- #: ../src/admin-views/venue-meta-box.php:169
300
  msgid "Show Google Maps Link:"
301
  msgstr "Vis Google Map link:"
302
 
303
- #: ../src/Tribe/View_Helpers.php:363
304
  msgid "Washington"
305
  msgstr "Washington"
306
 
307
- #: ../src/admin-views/widget-admin-list.php:13
308
  msgid "Title:"
309
  msgstr "Titel:"
310
 
311
- #: ../src/Tribe/View_Helpers.php:364
312
  msgid "West Virginia"
313
  msgstr "West Virginia"
314
 
315
- #: ../src/admin-views/widget-admin-list.php:18
316
  msgid "Show:"
317
  msgstr "Vis:"
318
 
319
- #: ../src/Tribe/View_Helpers.php:365
320
  msgid "Wisconsin"
321
  msgstr "Wisconsin"
322
 
323
- #: ../src/admin-views/widget-admin-list.php:28
324
  msgid "Show widget only if there are upcoming events:"
325
  msgstr "Widget vises kun, hvis der er planlagt fremtidige begivenheder:"
326
 
327
- #: ../src/Tribe/View_Helpers.php:366
328
  msgid "Wyoming"
329
  msgstr "Wyoming"
330
 
331
- #: ../src/functions/advanced-functions/meta_registration.php:16
332
- #: ../src/views/modules/meta/details.php:30
333
  msgid "Details"
334
  msgstr "Detaljer"
335
 
336
- #: ../src/Tribe/iCal.php:28
337
  msgctxt "feed link"
338
  msgid "&raquo;"
339
  msgstr "&raquo;"
340
 
341
- #: ../src/functions/advanced-functions/meta_registration.php:80
342
  msgid "Event Tags:"
343
  msgstr "Begivenheds-tags:"
344
 
345
- #: ../src/Tribe/iCal.php:29
346
  msgid "%1$s %2$s iCal Feed"
347
  msgstr "%1$s %2$s iCal Feed"
348
 
349
- #: ../src/functions/advanced-functions/meta_registration.php:112
350
  msgid "Origin:"
351
  msgstr "Oprindelse:"
352
 
353
- #: ../src/Tribe/iCal.php:75
354
  msgid "Add to Google Calendar"
355
  msgstr "Tilfø til Google Calendar"
356
 
357
- #: ../src/functions/advanced-functions/meta_registration.php:286
358
  msgid "%s:"
359
  msgstr "%s:"
360
 
361
- #: ../src/Tribe/iCal.php:75
362
  msgid "Google Calendar"
363
  msgstr "Google kalender"
364
 
365
- #: ../src/functions/template-tags/date.php:285
366
  msgid "The function needs to be passed an $event or used in the loop."
367
  msgstr "Denne funktion skal være efter en $begivenhed eller bruges i et loop. "
368
 
369
- #: ../src/Tribe/iCal.php:76
370
  msgid "Download .ics file"
371
  msgstr "Download .ics file"
372
 
373
- #: ../src/functions/template-tags/day.php:107
374
  msgid "<span>&laquo;</span> Previous Day"
375
  msgstr "<span>&laquo;</span> Tidligere"
376
 
377
- #: ../src/Tribe/iCal.php:76
378
  msgid "iCal Export"
379
  msgstr "Eksportér"
380
 
381
- #: ../src/functions/template-tags/day.php:109
382
  msgid "Next Day <span>&raquo;</span>"
383
  msgstr "Kommende <span>&raquo;</span>"
384
 
385
- #: ../src/Tribe/iCal.php:106
386
  msgid "Month's %s"
387
  msgstr "Måneders %s"
388
 
389
- #: ../src/functions/template-tags/day.php:111
390
  msgid "Yesterday"
391
  msgstr "I går"
392
 
393
- #: ../src/Tribe/iCal.php:109
394
  msgid "Week's %s"
395
  msgstr "Ugers %s"
396
 
397
- #: ../src/functions/template-tags/day.php:113
398
  msgid "Tomorrow"
399
  msgstr "Comoros"
400
 
401
- #: ../src/Tribe/iCal.php:112
402
  msgid "Day's %s"
403
  msgstr "Dages %s"
404
 
405
- #: ../src/functions/template-tags/deprecated.php:1283
406
  msgid "Category"
407
  msgstr "Kategori"
408
 
409
- #: ../src/Tribe/iCal.php:115
410
  msgid "Listed %s"
411
  msgstr "Listet %s"
412
 
413
- #: ../src/functions/template-tags/general.php:441
414
  msgid "Tags:"
415
  msgstr "Tags:"
416
 
417
- #: ../src/Tribe/iCal.php:120
418
  msgid "Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps"
419
  msgstr "Brug denne kalender for at dele kalender data på Google Calendar, Apple iCal og andre kompatible apps"
420
 
421
- #: ../src/functions/template-tags/general.php:553
422
  msgid "Loading %s"
423
  msgstr "Indlæser %s"
424
 
425
- #: ../src/admin-views/admin-update-message.php:9
426
- #: ../src/admin-views/admin-welcome-message.php:11
427
  msgid "You are running Version %s and deserve a hug :-)"
428
  msgstr "Du kører version %s og fortjener et knus :-)"
429
 
430
- #: ../src/Tribe/Cost_Utils.php:123
431
  msgid "Free"
432
  msgstr "Gratis"
433
 
434
- #: ../src/admin-views/admin-update-message.php:32
435
  msgid "Keep the Core Plugin <strong>FREE</strong>!"
436
  msgstr "Behold Core Plugin <strong>FREE</strong>!"
437
 
438
- #: ../src/functions/template-tags/general.php:1455
439
  msgid "Calendar powered by %sThe Events Calendar%s"
440
  msgstr "Powered by %sThe Events Calendar%s"
441
 
442
- #: ../src/admin-views/admin-update-message.php:33
443
  msgid "Every time you rate <strong>5 stars</strong>, a fairy is born. Okay maybe not, but more happy users mean more contributions and help on the forums. The community NEEDS your voice."
444
  msgstr "Hver gang du stemmer <strong>5 stars</strong>, bliver en fe født. Okay måske ikke, men flere glade bruger betyder flere bidrag og hjælp i forummerne. Fællesskabet har BRUG for din stemme. "
445
 
446
- #: ../src/functions/template-tags/loop.php:131
447
  msgid "Upcoming %s"
448
  msgstr "Kommende %s"
449
 
450
- #: ../src/admin-views/admin-update-message.php:34
451
- #: ../src/admin-views/admin-welcome-message.php:22
452
  msgid "Rate It"
453
  msgstr "Stem"
454
 
455
- #: ../src/functions/template-tags/loop.php:145
456
  msgid "%1$s for %2$s - %3$s"
457
  msgstr "%1$s for %2$s - %3$s"
458
 
459
- #: ../src/admin-views/admin-update-message.php:37
460
  msgid "PSST... Want a Discount?"
461
  msgstr "PSST... Vil du have rabat?"
462
 
463
- #: ../src/functions/template-tags/loop.php:147
464
  msgid "Past %s"
465
  msgstr "Tidligere %s"
466
 
467
- #: ../src/admin-views/admin-update-message.php:38
468
  msgid "We send out discounts to our core users via our newsletter."
469
  msgstr "Vi sender rabatter til vores kerne-brugere via vores nyhedsbrev"
470
 
471
- #: ../src/functions/template-tags/loop.php:152
472
- #: ../src/functions/template-tags/loop.php:161
473
  msgid "%1$s for %2$s"
474
  msgstr "%1$s for %2$s"
475
 
476
- #: ../src/admin-views/admin-update-message.php:43
477
- #: ../src/admin-views/admin-welcome-message.php:31
478
  msgid "Sign Up"
479
  msgstr "Tilmeld dig"
480
 
481
- #: ../src/functions/template-tags/options.php:20
482
  msgid "Your current Events URL is %s"
483
  msgstr "Linket til nuværende begivenhed er %s"
484
 
485
- #: ../src/admin-views/admin-update-message.php:49
486
  msgid "Looking for Something Special?"
487
  msgstr "På udkig efter noget specielt?"
488
 
489
- #: ../src/functions/template-tags/options.php:29
490
  msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
491
  msgstr "Der <strong>må ikke</strong> benyttes samme korte link titel som ovenfor. Titlen ovenfor bør være i flertal, og denne titel bør være i ental. <br /> Linket til individuellet begivenheder er: %s"
492
 
493
- #: ../src/admin-views/admin-update-message.php:51
494
  msgid "Pro"
495
  msgstr "Pro"
496
 
497
- #: ../src/io/csv/admin-views/columns.php:22
498
  msgid "Column Mapping: %s"
499
  msgstr "Kolonnematch: %s."
500
 
501
- #: ../src/admin-views/admin-update-message.php:53
502
  msgid "Community Events"
503
  msgstr "Community begivenheder"
504
 
505
- #: ../src/io/csv/admin-views/columns.php:27
506
  msgid "Columns have been mapped based on your last import. Please ensure the selected fields match the columns in your CSV file."
507
  msgstr "Kolonner er blevet kortlagt på baggrund af din sidste import. Sørg venligst for at de udvalgte felter matcher kolonnerne i din CSV-fil."
508
 
509
- #: ../src/admin-views/admin-update-message.php:54
510
  msgid "Filters"
511
  msgstr "Filtre"
512
 
513
- #: ../src/io/csv/admin-views/columns.php:32
514
  msgid "Column Headings"
515
  msgstr "Kolonneoverskrifter"
516
 
517
- #: ../src/admin-views/admin-update-message.php:55
518
  msgid "Facebook"
519
  msgstr "Facebook"
520
 
521
- #: ../src/io/csv/admin-views/columns.php:33
522
  msgid "Event Fields"
523
  msgstr "Begivenhedsfelter"
524
 
525
- #: ../src/admin-views/admin-update-message.php:58
526
- #: ../src/admin-views/admin-welcome-message.php:53
527
  msgid "News For Events Users"
528
  msgstr "Nyheder for begivenhedsbrugere"
529
 
530
- #: ../src/io/csv/admin-views/columns.php:44
531
  msgid "Perform Import"
532
  msgstr "Udfør import"
533
 
534
- #: ../src/admin-views/admin-welcome-message.php:19
535
  msgid "Keep The Events Calendar Core FREE"
536
  msgstr "Behold The Events Calendar Core FREE"
537
 
538
- #: ../src/io/csv/admin-views/general.php:10
539
  msgid "The Events Calendar: Import"
540
  msgstr "The Events Calendar: Importer"
541
 
542
- #: ../src/admin-views/admin-welcome-message.php:20
543
  msgid "5 star ratings help us bring TEC to more users. More happy users mean more support, more features, and more of everything you know and love about The Events Calendar. We couldn't do this without your support."
544
  msgstr "Ved at give os 5 stjerner, hjælper du os med at udbrede TEC til endnu flere brugere. Flere brugere betyder mere support, funktioner og mere af det hele som du allerede kender og elsker ved TEC. Vi kan ikke udrette dette uden din hjælp!"
545
 
546
- #: ../src/io/csv/admin-views/general.php:12
547
  msgid "Instructions"
548
  msgstr "Instruktioner"
549
 
550
- #: ../src/admin-views/admin-welcome-message.php:21
551
  msgid "Rate it five stars today!"
552
  msgstr "Giv den fem stjerner i dag!"
553
 
554
- #: ../src/io/csv/admin-views/general.php:14
555
  msgid "To import events, first select a %sDefault Import Event Status%s below to assign to your imported events."
556
  msgstr "For at importere begivenheder vælg og tildel først en %sDefault Import Event Status%s nedenfor til dine importerede begivenheder"
557
 
558
- #: ../src/admin-views/admin-welcome-message.php:25
559
  msgid "Newsletter Signup"
560
  msgstr "Tilmeld dig nyhedsbrevet"
561
 
562
- #: ../src/io/csv/admin-views/general.php:17
563
  msgid "Once your setting is saved, move to the applicable Import tab to select import specific criteria."
564
  msgstr "Når du har valgt og gemt dine indstillinger, skal du fortsætte til den relevante Import fane for at angive dine importkriterier "
565
 
566
- #: ../src/admin-views/admin-welcome-message.php:26
567
  msgid "Stay in touch with The Events Calendar Pro. We send out periodic updates, key developer notices, and even the occasional discount."
568
  msgstr "Hold dig orienteret om The Events Calendar Pro. Vi udsender med mellemrum opdateringer, nyheder fra vores udviklere og gode tilbud"
569
 
570
- #: ../src/io/csv/admin-views/general.php:24
571
  msgid "Import Settings"
572
  msgstr "Importer indstillinger"
573
 
574
- #: ../src/admin-views/admin-welcome-message.php:40
575
- #: ../src/admin-views/tribe-options-help.php:148
576
  msgid "Getting Started"
577
  msgstr "Kom i gang"
578
 
579
- #: ../src/io/csv/admin-views/general.php:27
580
  msgid "Default imported event status:"
581
  msgstr "Status for std. Importerede begivenheder"
582
 
583
- #: ../src/admin-views/admin-welcome-message.php:41
584
  msgid "Check out the New User Primer &amp; Tutorials"
585
  msgstr "Se og læs de nye tutorials"
586
 
587
- #: ../src/io/csv/admin-views/general.php:30
588
  msgid "Published"
589
  msgstr "Udgivet"
590
 
591
- #: ../src/admin-views/admin-welcome-message.php:43
592
  msgid "Looking for More Features?"
593
  msgstr "På udkig efter yderligere funktioner?"
594
 
595
- #: ../src/io/csv/admin-views/general.php:31
596
  msgid "Pending"
597
  msgstr "Afventer"
598
 
599
- #: ../src/admin-views/admin-welcome-message.php:44
600
  msgid "Addons for Community, Tickets, Filters, Facebook and more."
601
  msgstr "Tilføjelser til community, billetter, filtre, Facebook og andre"
602
 
603
- #: ../src/io/csv/admin-views/general.php:32
604
  msgid "Draft"
605
  msgstr "Kladde"
606
 
607
- #: ../src/admin-views/admin-welcome-message.php:46
608
  msgid "Support Resources"
609
  msgstr "Support ressourcer"
610
 
611
- #: ../src/io/csv/admin-views/header.php:17
612
  msgid "Events Import"
613
  msgstr "Begivenheds-import"
614
 
615
- #: ../src/admin-views/admin-welcome-message.php:47
616
  msgid "FAQs, Documentation, Tutorials and Forums"
617
  msgstr "FAQ's, dokumentation, tutorials og fora"
618
 
619
- #: ../src/io/csv/admin-views/import.php:17
620
  msgid "Import Instructions"
621
  msgstr "Importinstruktioner"
622
 
623
- #: ../src/admin-views/admin-welcome-message.php:50
624
  msgid "Release Notes"
625
  msgstr "Release Noter"
626
 
627
- #: ../src/io/csv/admin-views/import.php:20
628
  msgid "If your events have Organizers or Venues, please import those first."
629
  msgstr "Hvis dine begivenheder har organisatorer eller venues, så importér dem venligst først."
630
 
631
- #: ../src/admin-views/admin-welcome-message.php:51
632
  msgid "Get the Skinny on the Latest Updates"
633
  msgstr "Få et hurtigt overblik over de seneste opdateringer"
634
 
635
- #: ../src/io/csv/admin-views/import.php:21
636
  msgid "To import organizers or venues:"
637
  msgstr "For at importere arrangører eller venues:"
638
 
639
- #: ../src/admin-views/admin-welcome-message.php:54
640
  msgid "Product Releases, Tutorials and Community Activity"
641
  msgstr "Produktudgivelser, tutorials og community aktiviteter"
642
 
643
- #: ../src/io/csv/admin-views/import.php:23
644
  msgid "Select the appropriate import type."
645
  msgstr "Vælg den passende importtype."
646
 
647
- #: ../src/admin-views/app-shop.php:4
648
  msgid "Tribe Event Add-Ons"
649
  msgstr "Tribe Event Add-Ons"
650
 
651
- #: ../src/io/csv/admin-views/import.php:24
652
- #: ../src/io/csv/admin-views/import.php:30
653
  msgid "Upload a CSV file with one record on each line. The first line may contain column names (check the box below)."
654
  msgstr "Upload en CSV fil med en post på hver linje. Den første linje må indeholde kolonnenavne (afkryds boksen herunder)."
655
 
656
- #: ../src/admin-views/app-shop.php:54
657
  msgid "Version"
658
  msgstr "Version"
659
 
660
- #: ../src/io/csv/admin-views/import.php:25
661
  msgid "One column in your CSV should have the Organizer/Venue name. All other fields are optional."
662
  msgstr "En kolonne i din CSV bør have organisator/venue navnet. Alle andre felter er valgfrie."
663
 
664
- #: ../src/admin-views/app-shop.php:57
665
  msgid "Last Update"
666
  msgstr "Senest opdateret"
667
 
668
- #: ../src/io/csv/admin-views/import.php:26
669
- #: ../src/io/csv/admin-views/import.php:32
670
  msgid "After you upload your file, you'll have the opportunity to indicate how the columns in your CSV map to fields in The Events Calendar."
671
  msgstr "Efter du har uploadet din fil, får du mulighed for at angive hvordan kollonnerne i din CSV skal matche felterne i The Events Calendar."
672
 
673
- #: ../src/admin-views/event-sidebar-options.php:13
674
  msgid "Hide From %s Listings"
675
  msgstr "Gem fra %s Lister"
676
 
677
- #: ../src/io/csv/admin-views/import.php:28
678
  msgid "After importing your Organizers and Venues, import your Events:"
679
  msgstr "Importer dine events efter import af organisatorer og venues:"
680
 
681
- #: ../src/admin-views/event-sidebar-options.php:15
682
  msgid "Sticky in Month View"
683
  msgstr "Klæbende i månedsvisning"
684
 
685
- #: ../src/io/csv/admin-views/import.php:31
686
  msgid "One column in your CSV should have the Event title. Another should have the Event start date. All other fields are optional."
687
  msgstr "En kolonne i din CSV bør have begivenhedstitlen. En anden bør have begivenhedens start-dato. Alle andre felter er valgfrie."
688
 
689
- #: ../src/admin-views/event-sidebar-options.php:16
690
  msgid "When events are sticky in month view, they'll display first in the list of events shown within a given day block."
691
  msgstr "Når begivenheder er sticky i månedsvisning, vil de vises først i listen over begivenheder i en given dags blok."
692
 
693
- #: ../src/io/csv/admin-views/import.php:36
694
  msgid "Questions? <a href=\"%s\">Watch the video</a>."
695
  msgstr "Spørgsmål? <a href=\"%s\">Se videoen</a>."
696
 
697
- #: ../src/admin-views/events-meta-box.php:37
698
  msgid "Time &amp; Date"
699
  msgstr "Tidspunkt &amp; Dato"
700
 
701
- #: ../src/io/csv/admin-views/import.php:43
702
  msgid "Import Type:"
703
  msgstr "Importtype"
704
 
705
- #: ../src/admin-views/events-meta-box.php:44
706
  msgid "You have changed the recurrence rules of this %1$s. Saving the %1$s will update all future %2$s. If you did not mean to change all %2$s, then please refresh the page."
707
  msgstr "Du har ændret gentagelsereglen for denne %1$s. Hvis du gemmer %1$s vil du opdatere alle fremtidige %2$s. Hvis du ikke vil ændre alle %2$s, så opdater venligst siden. "
708
 
709
- #: ../src/io/csv/admin-views/import.php:55
710
  msgid "CSV File:"
711
  msgstr "CSV fil:"
712
 
713
- #: ../src/admin-views/events-meta-box.php:47
714
  msgid "All Day %s:"
715
  msgstr "Hele dagen %s:"
716
 
717
- #: ../src/io/csv/admin-views/import.php:59
718
  msgid "Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file is UTF-8 encoded? Make sure to specify the character encoding when you save the file, or pass it through a <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>conversion tool</a>."
719
  msgstr "Opload en fornuftigt formateret UTF-8 encoded CSV fil. Er du ikke sikker på, om din fil er UTF-8 encoded? Sørg for at specificere character encoding, når du gemmer filen eller send den igennem et <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>konverteringsværktøj</a>."
720
 
721
- #: ../src/admin-views/events-meta-box.php:53
722
  msgid "Start Date &amp; Time:"
723
  msgstr "Starttidspunkt"
724
 
725
- #: ../src/io/csv/admin-views/import.php:67
726
  msgid "This file has column names in the first row"
727
  msgstr "Denne fil har kolonnenavne i første række"
728
 
729
- #: ../src/admin-views/events-meta-box.php:57
730
- #: ../src/admin-views/events-meta-box.php:78
731
  msgid "YYYY-MM-DD"
732
  msgstr "YYYY-MM-DD"
733
 
734
- #: ../src/io/csv/admin-views/import.php:78
735
  msgid "Import CSV File"
736
  msgstr "Importer CSV fil"
737
 
738
- #: ../src/admin-views/events-meta-box.php:75
739
  msgid "End Date &amp; Time:"
740
  msgstr "Sluttidspunkt"
741
 
742
- #: ../src/io/csv/admin-views/result.php:15
743
  msgid "Import Result"
744
  msgstr "Importer resultat"
745
 
746
- #: ../src/admin-views/events-meta-box.php:103
747
  msgid "Location"
748
  msgstr "Lokation"
749
 
750
- #: ../src/io/csv/admin-views/result.php:17
751
  msgid "Import complete!"
752
  msgstr "Import fuldført!"
753
 
754
- #: ../src/admin-views/events-meta-box.php:124
755
  msgid "%s Website"
756
  msgstr "%s Website"
757
 
758
- #: ../src/io/csv/admin-views/result.php:19
759
  msgid "Inserted: %d"
760
  msgstr "Indsat: %d"
761
 
762
- #: ../src/admin-views/events-meta-box.php:127
763
  msgid "URL:"
764
  msgstr "URL:"
765
 
766
- #: ../src/io/csv/admin-views/result.php:20
767
  msgid "Updated: %d"
768
  msgstr "Opdateret: %d"
769
 
770
- #: ../src/admin-views/events-meta-box.php:141
771
  msgid "%s Cost"
772
  msgstr "%s pris"
773
 
774
- #: ../src/io/csv/admin-views/result.php:21
775
  msgid "Skipped: %d"
776
  msgstr "Sprunget over: %d"
777
 
778
- #: ../src/admin-views/events-meta-box.php:144
779
  msgid "Currency Symbol:"
780
  msgstr "Valuta:"
781
 
782
- #: ../src/io/csv/admin-views/result.php:25
783
  msgid "The import statistics above have the following meaning:"
784
  msgstr "Importstatistikken oven for betyder følgende:"
785
 
786
- #: ../src/admin-views/events-meta-box.php:159
787
  msgctxt "Currency symbol position"
788
  msgid "Before cost"
789
  msgstr "Før pris"
790
 
791
- #: ../src/io/csv/admin-views/result.php:26
792
  msgid "<ol><li><strong>Inserted:</strong> A new item was inserted successfully.</li><li><strong>Updated:</strong> An item was found with the same name and/or start date. The existing item was updated with the new value from the file.</li><li><strong>Skipped:</strong> A row was found in the CSV file that could not be imported. Please see below for the invalid rows.</li></ol>"
793
  msgstr "<ol><li><strong>Indsat:</strong> Et nyt element blev indsat korrekt.</li><li><strong>Opdateret:</strong> Et element med samme navn og/eller startdato blev fundet. Det eksisterende element blev opdateret med den nye værdi fra filen.</li><li><strong>Sprunget over:</strong> En række i CSV filen kunne ikke importeres. Se venligst nedenfor vedrørende ugyldige rækker.</li></ol>"
794
 
795
- #: ../src/admin-views/events-meta-box.php:162
796
  msgctxt "Currency symbol position"
797
  msgid "After cost"
798
  msgstr "Efter pris"
799
 
800
- #: ../src/io/csv/admin-views/result.php:29
801
  msgid "Skipped row numbers: %s"
802
  msgstr "Sprang over rækkenumre: %s"
803
 
804
- #: ../src/admin-views/events-meta-box.php:167
805
- #: ../src/functions/advanced-functions/meta_registration.php:48
806
- #: ../src/views/modules/meta/details.php:100
807
  msgid "Cost:"
808
  msgstr "Pris:"
809
 
810
- #: ../src/admin-views/events-meta-box.php:175
811
  msgid "Enter a 0 for %s that are free or leave blank to hide the field."
812
  msgstr "Indsæt et 0 for %s som er gratis eller lad feltet stå tomt for at skjule det"
813
 
814
- #: ../src/admin-views/new-organizer-meta-section.php:15
815
- #: ../src/admin-views/organizer-meta-box.php:15
816
- #: ../src/admin-views/venue-meta-box.php:25
817
  msgid "%s Name:"
818
  msgstr "%s Navn på stedet:"
819
 
820
- #: ../src/views/day/nav.php:16
821
  msgid "Day Navigation"
822
  msgstr "Begivenhedsvisning"
823
 
824
- #: ../src/admin-views/new-organizer-meta-section.php:21
825
- #: ../src/admin-views/organizer-meta-box.php:22
826
- #: ../src/admin-views/tickets/attendees.php:52
827
- #: ../src/admin-views/venue-meta-box.php:112
828
- #: ../src/functions/advanced-functions/meta_registration.php:159
829
- #: ../src/functions/advanced-functions/meta_registration.php:238
830
- #: ../src/views/modules/meta/organizer.php:41
831
- #: ../src/views/modules/meta/venue.php:40
832
  msgid "Phone:"
833
  msgstr "Telefon:"
834
 
835
- #: ../src/views/day/single-event.php:66 ../src/views/list/single-event.php:70
836
  msgid "Find out more"
837
  msgstr "Lær mere"
838
 
839
- #: ../src/admin-views/new-organizer-meta-section.php:27
840
- #: ../src/admin-views/organizer-meta-box.php:28
841
- #: ../src/admin-views/tickets/attendees.php:61
842
- #: ../src/admin-views/venue-meta-box.php:119
843
- #: ../src/functions/advanced-functions/meta_registration.php:96
844
- #: ../src/functions/advanced-functions/meta_registration.php:191
845
- #: ../src/functions/advanced-functions/meta_registration.php:270
846
- #: ../src/views/modules/meta/details.php:125
847
- #: ../src/views/modules/meta/organizer.php:63
848
- #: ../src/views/modules/meta/venue.php:45
849
  msgid "Website:"
850
  msgstr "Hjemmeside:"
851
 
852
- #: ../src/views/list/nav.php:19
853
  msgid "%s List Navigation"
854
  msgstr "%s Liste Navigation"
855
 
856
- #: ../src/admin-views/new-organizer-meta-section.php:33
857
- #: ../src/admin-views/organizer-meta-box.php:34
858
- #: ../src/functions/advanced-functions/meta_registration.php:254
859
- #: ../src/views/modules/meta/organizer.php:52
860
  msgid "Email:"
861
  msgstr "E-mail:"
862
 
863
- #: ../src/views/list/nav.php:25
864
  msgid "<span>&laquo;</span> Previous %s"
865
  msgstr "<span>&laquo;</span> Forrige %s"
866
 
867
- #: ../src/admin-views/new-organizer-meta-section.php:34
868
- #: ../src/admin-views/organizer-meta-box.php:35
869
  msgid "You may want to consider <a href=\"http://wordpress.org/plugins/tags/obfuscate\">obfuscating</a> any e-mail address published on your site to best avoid it getting harvested by spammers."
870
  msgstr "Du skulle måske overveje at <a href=\"http://wordpress.org/plugins/tags/obfuscate\">skjule</a> de e-mail adresser, der er publiceret på dit site for at undgå, at de bliver høstet af spammere."
871
 
872
- #: ../src/views/list/nav.php:32
873
  msgid "Next %s <span>&raquo;</span>"
874
  msgstr "Næste %s <span>&raquo;</span>"
875
 
876
- #: ../src/admin-views/new-organizer-meta-section.php:60
877
- #: ../src/admin-views/organizer-meta-box.php:57
878
- #: ../src/admin-views/venue-meta-box.php:193
879
  msgid "%s Name Already Exists"
880
  msgstr "%s Navnet eksisterer allerede"
881
 
882
- #: ../src/views/modules/bar.php:30 ../src/views/modules/bar.php:61
883
  msgid "Find %s"
884
  msgstr "Find %s"
885
 
886
- #: ../src/admin-views/tickets/attendees.php:17
887
  msgid "Event Summary"
888
  msgstr "Oversigt"
889
 
890
- #: ../src/views/modules/bar.php:37
891
  msgid "Event Views Navigation"
892
  msgstr "Event views visning"
893
 
894
- #: ../src/admin-views/tickets/attendees.php:23
895
  msgid "Event Details"
896
  msgstr "Detaljer"
897
 
898
- #: ../src/views/modules/bar.php:38
899
  msgid "View As"
900
  msgstr "Vis som"
901
 
902
- #: ../src/admin-views/tickets/attendees.php:25
903
  msgid "Start Date / Time:"
904
  msgstr "Starttidspunkt / dato"
905
 
906
- #: ../src/views/modules/meta/details.php:119
907
  msgid "%s Tags:"
908
  msgstr "%s Tags:"
909
 
910
- #: ../src/admin-views/tickets/attendees.php:29
911
  msgid "End Date / Time:"
912
  msgstr "Sluttidspunkt / dato"
913
 
914
- #: ../src/functions/template-tags/general.php:1279
915
  msgid "%s for"
916
  msgstr "%s for"
917
 
918
- #: ../src/admin-views/tickets/attendees.php:69
919
  msgid "Ticket Sales"
920
  msgstr "Billetsalg"
921
 
922
- #: ../src/functions/template-tags/general.php:1278
923
  msgid "Find out more »"
924
  msgstr "Find ud af mere"
925
 
926
- #: ../src/admin-views/tickets/attendees.php:86
927
  msgid "(%d awaiting review)"
928
  msgid_plural "(%d awaiting review)"
929
  msgstr[0] "(%d afventer gennemsyn)"
930
  msgstr[1] "(%d afventer gennemsyn)"
931
 
932
- #: ../src/views/month/nav.php:18
933
  msgid "Calendar Month Navigation"
934
  msgstr "Månedsvisning"
935
 
936
- #: ../src/admin-views/tickets/attendees.php:90
937
- msgid "Sold %d %s"
938
- msgstr "Solgte %d %s"
939
-
940
- #: ../src/views/month/single-day.php:43
941
  msgid "View 1 %1$s"
942
  msgid_plural "View All %2$s %3$s"
943
  msgstr[0] "Gennemse 1 %1$s"
944
  msgstr[1] "Gennemse alle %2$s %3$s"
945
 
946
- #: ../src/admin-views/tickets/attendees.php:93
947
- msgid "Sold %d of %d %s"
948
- msgstr "Solgte %d af %d %s"
949
-
950
- #: ../src/views/single-event.php:27
951
  msgid "&laquo; All %s"
952
  msgstr "&laquo; Alle %s"
953
 
954
- #: ../src/admin-views/tickets/attendees.php:111
955
  msgid "Tickets sold:"
956
  msgstr "Solgte billetter:"
957
 
958
- #: ../src/views/single-event.php:46 ../src/views/single-event.php:91
959
  msgid "%s Navigation"
960
  msgstr "%s Navigation"
961
 
962
- #: ../src/admin-views/tickets/attendees.php:118
963
  msgid "Finalized:"
964
  msgstr "Afsluttede:"
965
 
966
- #: ../src/views/tickets/attendees-email.php:24
967
  msgid "Attendee List"
968
  msgstr "Deltagerliste"
969
 
970
- #: ../src/admin-views/tickets/attendees.php:121
971
  msgid "Awaiting review:"
972
  msgstr "Afventer gennemsyn"
973
 
974
- #: ../src/views/tickets/email.php:26
975
  msgid "Your tickets"
976
  msgstr "Dine billetter"
977
 
978
- #: ../src/admin-views/tickets/attendees.php:128
979
  msgid "Checked in:"
980
  msgstr "Tjekket ind:"
981
 
982
- #: ../src/views/tickets/email.php:309
983
  msgid "Ticket Type"
984
  msgstr "Billettype"
985
 
986
- #: ../src/admin-views/tickets/attendees.php:146
987
  msgid "Send the attendee list by email"
988
  msgstr "Send deltagerlisten pr. e-mail"
989
 
990
- #: ../src/views/tickets/email.php:313
991
  msgid "Purchaser"
992
  msgstr "Køber"
993
 
994
- #: ../src/admin-views/tickets/attendees.php:150
995
  msgid "Select a User:"
996
  msgstr "Vælg en bruger:"
997
 
998
- #: ../src/views/widgets/list-widget.php:65
999
  msgid "View All %s"
1000
  msgstr "Se alle %s"
1001
 
1002
- #: ../src/admin-views/tickets/attendees.php:155
1003
  msgid "Select..."
1004
  msgstr "Vælg..."
1005
 
1006
- #: ../src/views/widgets/list-widget.php:71
1007
  msgid "There are no upcoming %s at this time."
1008
  msgstr "Der er ingen kommende %s på dette tidspunkt"
1009
 
1010
- #: ../src/admin-views/tickets/attendees.php:160
1011
  msgid "or"
1012
  msgstr "eller"
1013
 
1014
- #: ../src/admin-views/tickets/attendees.php:162
1015
  msgid "Email Address:"
1016
  msgstr "E-mailadresse"
1017
 
1018
- #: ../src/admin-views/tickets/list.php:21
1019
  msgid "Edit"
1020
  msgstr "Rediger"
1021
 
1022
- #: ../src/admin-views/tickets/list.php:24
1023
  msgid "Edit in %s"
1024
  msgstr "Rediger i %s"
1025
 
1026
- #: ../src/admin-views/tickets/list.php:27
1027
  msgid "View"
1028
  msgstr "Gå til"
1029
 
1030
- #: ../src/admin-views/tickets/list.php:67
1031
  msgid "Sold %d"
1032
  msgstr "Solgt %d"
1033
 
1034
- #: ../src/admin-views/tickets/list.php:69
1035
- msgid "Sold %d of %d"
1036
- msgstr "Solgt %d af %d"
1037
-
1038
- #: ../src/admin-views/tickets/meta-box.php:23
1039
  msgid "This event was created using Community Events. Are you sure you want to sell tickets for it?"
1040
  msgstr "Denne begivenhed blev oprettet med Community Events. Er du sikker på at du vil sælge billetter til begivenheden?"
1041
 
1042
- #: ../src/admin-views/tickets/meta-box.php:34
1043
  msgid "Upload image for the ticket header"
1044
  msgstr "Upload billede til billettens overskrift"
1045
 
1046
- #: ../src/admin-views/tickets/meta-box.php:35
1047
  msgid "The maximum image size in the email will be 580px wide by any height, and then scaled for mobile. If you would like \"retina\" support use an image sized to 1160px wide."
1048
  msgstr "580px i bredden (ingen begrænsninger i højden) anbefales til e-mails og til mobilsurfing. 1160px i bredden anbefales til enheder med \"retina\" skærme."
1049
 
1050
- #: ../src/admin-views/tickets/meta-box.php:38
1051
  msgid "Select an Image"
1052
  msgstr "Vælg et billede"
1053
 
1054
- #: ../src/admin-views/tickets/meta-box.php:46
1055
  msgid "Remove"
1056
  msgstr "Fjern"
1057
 
1058
- #: ../src/admin-views/tickets/meta-box.php:64
1059
- #: ../src/admin-views/tickets/meta-box.php:74
1060
  msgid "Add new ticket"
1061
  msgstr "Tilføj ny billet"
1062
 
1063
- #: ../src/admin-views/tickets/meta-box.php:75
1064
  msgid "Edit ticket"
1065
  msgstr "Rediger billet"
1066
 
1067
- #: ../src/admin-views/tickets/meta-box.php:80
1068
  msgid "Sell using:"
1069
  msgstr "Sælg med:"
1070
 
1071
- #: ../src/admin-views/tickets/meta-box.php:97
1072
  msgid "Ticket Name:"
1073
  msgstr "Billetnavn:"
1074
 
1075
- #: ../src/admin-views/tickets/meta-box.php:104
1076
  msgid "Ticket Description:"
1077
  msgstr "Billetbeskrivelse:"
1078
 
1079
- #: ../src/admin-views/tickets/meta-box.php:113
1080
  msgid "Price:"
1081
  msgstr "Pris:"
1082
 
1083
- #: ../src/admin-views/tickets/meta-box.php:119
1084
  msgid "(0 or empty for free tickets)"
1085
  msgstr "(0 eller ikke flere gratis billetter) "
1086
 
1087
- #: ../src/admin-views/tickets/meta-box.php:125
1088
  msgid "Sale Price:"
1089
  msgstr "Udsalgspris"
1090
 
1091
- #: ../src/admin-views/tickets/meta-box.php:131
1092
  msgid "(Current sale price - this can be managed via the product editor)"
1093
  msgstr "(Nuværende pris - Dette kan ændres vha. produkt editoren)"
1094
 
1095
- #: ../src/admin-views/tickets/meta-box.php:137
1096
  msgid "Start sale:"
1097
  msgstr "Åben billetsalg:"
1098
 
1099
- #: ../src/admin-views/tickets/meta-box.php:161
1100
  msgid "End sale:"
1101
  msgstr "Afslut billetsalg:"
1102
 
1103
- #: ../src/admin-views/tickets/meta-box.php:183
1104
  msgid "When will ticket sales occur? If you don't set a start/end date for sales, tickets will be available from now until the event ends."
1105
  msgstr "Hvornår er billetsalget åbent? "
1106
 
1107
- #: ../src/admin-views/tickets/meta-box.php:195
1108
  msgid "Save this ticket"
1109
  msgstr "Gem denne billet"
1110
 
1111
- #: ../src/admin-views/tribe-options-display.php:4
1112
  msgid "Default Events Template"
1113
  msgstr "Standardskabelon for begivenheder"
1114
 
1115
- #: ../src/admin-views/tribe-options-display.php:5
1116
  msgid "Default Page Template"
1117
  msgstr "Standardskabelon for sider"
1118
 
1119
- #: ../src/admin-views/tribe-options-display.php:32
1120
  msgid "Display Settings"
1121
  msgstr "Vis indstillinger"
1122
 
1123
- #: ../src/admin-views/tribe-options-display.php:37
1124
  msgid "The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme.</p><p>There are going to be situations where no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications."
1125
  msgstr "Indstillingerne nedenfor styrer visningen af din kalender. Hvis tingene ikke ser rigtige ud, så prøv at skifte mellem de tre \"style sheet\" muligheder eller vælg en side-skabelon fra dit tema. </p> <p> Der vil være situationer, hvor ingen ud-af-boksen skabelon er 100 % perfekt. Tjek vores <a href=\"%s\"> vores themer's guide </a> for instruktioner om brugerdefinerede ændringer."
1126
 
1127
- #: ../src/admin-views/tribe-options-display.php:51
1128
  msgid "Basic Template Settings"
1129
  msgstr "Layoutindstillinger"
1130
 
1131
- #: ../src/admin-views/tribe-options-display.php:55
1132
  msgid "Default stylesheet used for events templates"
1133
  msgstr "Standardlayout til begivenhedsskabeloner"
1134
 
1135
- #: ../src/admin-views/tribe-options-display.php:58
1136
  msgid "Skeleton Styles"
1137
  msgstr "Simple layouts"
1138
 
1139
- #: ../src/admin-views/tribe-options-display.php:60
1140
  msgid "Only includes enough css to achieve complex layouts like calendar and week view."
1141
  msgstr "Inkluderer kun tilstrækkelig css til at opnå komplekse layouts såsom kalender- og ugevisning."
1142
 
1143
- #: ../src/admin-views/tribe-options-display.php:62
1144
  msgid "Full Styles"
1145
  msgstr "Normale layouts"
1146
 
1147
- #: ../src/admin-views/tribe-options-display.php:64
1148
  msgid "More detailed styling, tries to grab styles from your theme."
1149
  msgstr "Mere detaljeret styling, forsøger at bruge styles fra dit theme."
1150
 
1151
- #: ../src/admin-views/tribe-options-display.php:66
1152
  msgid "Tribe Events Styles"
1153
  msgstr "Tribe layouts"
1154
 
1155
- #: ../src/admin-views/tribe-options-display.php:68
1156
  msgid "A fully designed and styled theme for your events pages."
1157
  msgstr "Et fuldt designet og stylet theme til dine begivenhedssider."
1158
 
1159
- #: ../src/admin-views/tribe-options-display.php:75
1160
  msgid "Events template"
1161
  msgstr "Begivenhedsskabelon"
1162
 
1163
- #: ../src/admin-views/tribe-options-display.php:76
1164
  msgid "Choose a page template to control the appearance of your calendar and event content."
1165
  msgstr "Vælg en sideskabelon til visning af din kalender og begivenheder"
1166
 
1167
- #: ../src/admin-views/tribe-options-display.php:84
1168
  msgid "Enable event views"
1169
  msgstr "Tillad visning af begivenheder"
1170
 
1171
- #: ../src/admin-views/tribe-options-display.php:85
1172
  msgid "You must select at least one view."
1173
  msgstr "Vælg mindst én visningstype."
1174
 
1175
- #: ../src/admin-views/tribe-options-display.php:92
1176
  msgid "Default view"
1177
  msgstr "Standardvisning"
1178
 
1179
- #: ../src/admin-views/tribe-options-display.php:100
1180
  msgid "Disable the Event Search Bar"
1181
  msgstr "Deaktiver begivenhedssøgefeltet"
1182
 
1183
- #: ../src/admin-views/tribe-options-display.php:101
1184
  msgid "Check this to use the classic header."
1185
  msgstr "Sæt kryds i denne, hvis du vil bruge det klassiske sidehoved."
1186
 
1187
- #: ../src/admin-views/tribe-options-display.php:107
1188
  msgid "Month view events per day"
1189
  msgstr "Månedsvisning begivenheder pr. dag"
1190
 
1191
- #: ../src/admin-views/tribe-options-display.php:108
1192
  msgid "Change the default 3 events per day in month view. Please note there may be performance issues if you set this too high. <a href=\"%s\">Read more</a>."
1193
  msgstr "Ændr standarden for 3 begivenhder pr dag i månedsvisning. Bemærk, at der kan være problemer med ydeevnen, hvis du indstiller denne for højt. <a href=\"%s\"> Læs mere </a>."
1194
 
1195
- #: ../src/admin-views/tribe-options-display.php:115
1196
  msgid "Enable the Month View Cache"
1197
  msgstr "Aktiver månedsvisning Cache"
1198
 
1199
- #: ../src/admin-views/tribe-options-display.php:116
1200
  msgid "Check this to cache your month view HTML in transients, which can help improve calendar speed on sites with many events. <a href=\"%s\">Read more</a>."
1201
  msgstr "Markér denne for at cache din månedsvisning HTML i transienter, hvilket kan hjælpe med at forbedre kalenderhastigheden på sider med mange begivenheder. <a href=\"%s\"> Læs mere </a>."
1202
 
1203
- #: ../src/admin-views/tribe-options-display.php:122
1204
  msgid "Date Format Settings"
1205
  msgstr "Generelle indstillinger"
1206
 
1207
- #: ../src/admin-views/tribe-options-display.php:126
1208
  msgid "<p>The following three fields accept the date format options available to the php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Learn how to make your own date format here</a>.</p>"
1209
  msgstr "<p>Følgende tre felter accepterer dato format mulighederne som er tilgængelige i php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Her kan du se, hvordqan du laver dine egne dato formater</a>.</p>"
1210
 
1211
- #: ../src/admin-views/tribe-options-display.php:130
1212
  msgid "Date with year"
1213
  msgstr "Dato med årsangivelse"
1214
 
1215
- #: ../src/admin-views/tribe-options-display.php:131
1216
  msgid "Enter the format to use for displaying dates with the year. Used when showing an event from a past or future year, also used for dates in view headers."
1217
  msgstr "Indtast det format som du ønsker der skal bruges, når der indtastes dato med årsangivelse. Dette bruges når der vises en event fra tidligere år, eller en event fra kommende år. Bliver også brugt til dato visning i overskrifter."
1218
 
1219
- #: ../src/admin-views/tribe-options-display.php:138
1220
  msgid "Date without year"
1221
  msgstr "Dato uden årsangivelse"
1222
 
1223
- #: ../src/admin-views/tribe-options-display.php:139
1224
  msgid "Enter the format to use for displaying dates without a year. Used when showing an event from the current year."
1225
  msgstr "Indtast det format som du ønsker der skal bruges når der indtastes dato uden årsangivelse. Dette bruges når der vises en event fra det aktuelle år."
1226
 
1227
- #: ../src/admin-views/tribe-options-display.php:146
1228
  msgid "Month and year format"
1229
  msgstr "Måned og år format"
1230
 
1231
- #: ../src/admin-views/tribe-options-display.php:147
1232
  msgid "Enter the format to use for dates that show a month and year only. Used on month view."
1233
  msgstr "Indtast det format som skal bruges når der skal vises en måned eller en årsangivelse. Bliver brugt ved måneds visning."
1234
 
1235
- #: ../src/admin-views/tribe-options-display.php:154
1236
  msgid "Date time separator"
1237
  msgstr "Dato og tid seperator"
1238
 
1239
- #: ../src/admin-views/tribe-options-display.php:155
1240
  msgid "Enter the separator that will be placed between the date and time, when both are shown."
1241
  msgstr "Indtast den seperator som skal bruges imellem dato og tidsangivelse, når de begge vises."
1242
 
1243
- #: ../src/admin-views/tribe-options-display.php:162
1244
  msgid "Time range separator"
1245
  msgstr "Tidsangivelses seperator"
1246
 
1247
- #: ../src/admin-views/tribe-options-display.php:163
1248
  msgid "Enter the separator that will be used between the start and end time of an event."
1249
  msgstr "Tilføj den seperator som der skal bruges imellem start og slut tidspunkt for en event."
1250
 
1251
- #: ../src/admin-views/tribe-options-display.php:170
1252
  msgid "Datepicker Date Format"
1253
  msgstr "Dato format"
1254
 
1255
- #: ../src/admin-views/tribe-options-display.php:171
1256
  msgid "Select the date format to use in datepickers"
1257
  msgstr "Vælg det dato format som skal bruges når der vælges dato"
1258
 
1259
- #: ../src/admin-views/tribe-options-display.php:188
1260
  msgid "Advanced Template Settings"
1261
  msgstr "Advancerede skabelonindstillinger"
1262
 
1263
- #: ../src/admin-views/tribe-options-display.php:192
1264
  msgid "Add HTML before event content"
1265
  msgstr "Tilføj HTML før indholdet i begivenheden"
1266
 
1267
- #: ../src/admin-views/tribe-options-display.php:193
1268
  msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
1269
  msgstr "Du kan tilføje HTML før begivenheden. Dette kan være en hjælp, hvis layoutet eller visningen skal finjusteres."
1270
 
1271
- #: ../src/admin-views/tribe-options-display.php:198
1272
  msgid "Add HTML after event content"
1273
  msgstr "Tilføj HTML efter indholdet i begivenheden"
1274
 
1275
- #: ../src/admin-views/tribe-options-display.php:199
1276
  msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
1277
  msgstr "Du kan tilføje HTML efter begivenheden. Dette kan være en hjælp, hvis layoutet eller visningen skal finjusteres."
1278
 
1279
- #: ../src/admin-views/tribe-options-general.php:12
1280
  msgid "Finding & extending your calendar."
1281
  msgstr "Find og udvid din kalender."
1282
 
1283
- #: ../src/admin-views/tribe-options-general.php:17
1284
  msgid "Finding your calendar."
1285
  msgstr "Find din calendar."
1286
 
1287
- #: ../src/admin-views/tribe-options-general.php:22
1288
  msgid "Where's my calendar?"
1289
  msgstr "Hvor er min kalender?"
1290
 
1291
- #: ../src/admin-views/tribe-options-general.php:22
1292
  msgid "Right here"
1293
  msgstr "Lige her"
1294
 
1295
- #: ../src/admin-views/tribe-options-general.php:26
1296
  msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
1297
  msgstr "Leder du efter yderligere funktionaliteter, såsom gentagende begivenheder, custom meta, community begivenheder og billetsalg?"
1298
 
1299
- #: ../src/admin-views/tribe-options-general.php:26
1300
  msgid "Check out the available add-ons"
1301
  msgstr "Se tilgængelige tilføjelser"
1302
 
1303
- #: ../src/admin-views/tribe-options-general.php:31
1304
  msgid "We hope our plugin is helping you out."
1305
  msgstr "Vi håber du er glad for vores plugin."
1306
 
1307
- #: ../src/admin-views/tribe-options-general.php:35
1308
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
1309
  msgstr "Det bedste vi ved er at få anerkendelse. Hvis du tænker \"Wow, jeg er imponeret! Jeg burde takke Modern Tribe for deres arbejde.\", så tilføj et lille link til The Events Calendar i bunden af din kalender."
1310
 
1311
- #: ../src/admin-views/tribe-options-general.php:35
1312
- #: ../src/admin-views/tribe-options-general.php:40
1313
  msgid "See an example of the link"
1314
  msgstr "Se eksempel på link"
1315
 
1316
- #: ../src/admin-views/tribe-options-general.php:40
1317
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project."
1318
  msgstr "Det bedste vi ved er at få anerkendelse. Hvis du tænker \"Wow, jeg er imponeret! Jeg burde takke Modern Tribe for deres arbejde.\", så tilføj et lille link til The Events Calendar i bunden af din kalender."
1319
 
1320
- #: ../src/admin-views/tribe-options-general.php:45
1321
  msgid "Show The Events Calendar link"
1322
  msgstr "Tilføj link til The Events Calendar"
1323
 
1324
- #: ../src/admin-views/tribe-options-general.php:59
1325
  msgid "General Settings"
1326
  msgstr "Generelle indstillinger"
1327
 
1328
- #: ../src/admin-views/tribe-options-general.php:63
1329
  msgid "Number of events to show per page"
1330
  msgstr "Antal begivenheder pr. side"
1331
 
1332
- #: ../src/admin-views/tribe-options-general.php:70
1333
  msgid "Use Javascript to control date filtering"
1334
  msgstr "Brug Javascript til at styre datofiltreringen"
1335
 
1336
- #: ../src/admin-views/tribe-options-general.php:71
1337
  msgid "This option is disabled when \"Disable the Event Search Bar\" is checked on the Display settings tab."
1338
  msgstr "Denne valgmulighed er deaktiveret når \"Deaktiver begivenhedssøgefeltet\" er krydset af i Visningsindstillinger fanebladet."
1339
 
1340
- #: ../src/admin-views/tribe-options-general.php:71
1341
  msgid "Enable live ajax for datepicker on front end (User submit not required)."
1342
  msgstr "Aktiver live ajax for datovælgeren i front end (Brugerindsendelse ikke påkrævet)"
1343
 
1344
- #: ../src/admin-views/tribe-options-general.php:79
1345
  msgid "Show comments"
1346
  msgstr "Vis kommentarer"
1347
 
1348
- #: ../src/admin-views/tribe-options-general.php:80
1349
  msgid "Enable comments on event pages."
1350
  msgstr "Tillad kommentarer på begivenheder."
1351
 
1352
- #: ../src/admin-views/tribe-options-general.php:86
1353
  msgid "Include events in main blog loop"
1354
  msgstr "Inkluder begivenheder i din blog"
1355
 
1356
- #: ../src/admin-views/tribe-options-general.php:87
1357
  msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
1358
  msgstr "Vis begivenheder i din blog sammen med andre indlæg. Begivenheder vil fortsat også kunne vises som normalt."
1359
 
1360
- #: ../src/admin-views/tribe-options-general.php:93
1361
- #: ../src/admin-views/tribe-options-general.php:99
1362
  msgid "Events URL slug"
1363
  msgstr "Kort link titel"
1364
 
1365
- #: ../src/admin-views/tribe-options-general.php:94
1366
- msgid "You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=\"%s\">%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php\">enable pretty permalinks</a>."
1367
- msgstr "Du kan ikke redigere den korte link titel, eftersom du ikke har aktiveret permanente links. Den nuværende URL for begivenhedens side er <a href=\"%s\">%s</a>. For at aktivere permanente links <a href=\"%soptions-permalink.php\">klik her</a>."
1368
-
1369
- #: ../src/admin-views/tribe-options-general.php:106
1370
- #: ../src/functions/template-tags/options.php:20
1371
  msgid "The slug used for building the events URL."
1372
  msgstr "Den korte titel bruges som element i begivenhedens link."
1373
 
1374
- #: ../src/admin-views/tribe-options-general.php:106
1375
  msgid "Your current events URL is: %s"
1376
  msgstr "Link: %s"
1377
 
1378
- #: ../src/admin-views/tribe-options-general.php:111
1379
- #: ../src/functions/template-tags/options.php:39
1380
  msgid "Here is the iCal feed URL for your events:"
1381
  msgstr "iCal link til dine begivenheder:"
1382
 
1383
- #: ../src/admin-views/tribe-options-general.php:116
1384
  msgid "Single event URL slug"
1385
  msgstr "Link til begivenhed"
1386
 
1387
- #: ../src/admin-views/tribe-options-general.php:123
1388
  msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
1389
  msgstr "Ovenstående burde være i flertal, men er i ental. <br /> Linket til din begivenhed er: %s"
1390
 
1391
- #: ../src/admin-views/tribe-options-general.php:128
1392
  msgid "End of day cutoff"
1393
  msgstr "Afslutningstidspunkt på dagen"
1394
 
1395
- #: ../src/admin-views/tribe-options-general.php:149
1396
  msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
1397
  msgstr "Har du en begivenhed, der løber forbi midnat? Vælg et tidspunkt efter den begivenheds afslutning for at undgå, at begivenheden vises på næste dags kalender."
1398
 
1399
- #: ../src/admin-views/tribe-options-general.php:154
1400
  msgid "Default currency symbol"
1401
  msgstr "Standardsymbol for valuta"
1402
 
1403
- #: ../src/admin-views/tribe-options-general.php:155
1404
  msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
1405
  msgstr "Indstil standardsymbolet for valuta til prisen for deltagelse i begivenheder. En ændring af denne indstilling påvirker kun fremtidige begivenheder."
1406
 
1407
- #: ../src/admin-views/tribe-options-general.php:162
1408
  msgid "Currency symbol follows value"
1409
  msgstr "Møntfodssymbol følger værdi"
1410
 
1411
- #: ../src/admin-views/tribe-options-general.php:163
1412
  msgid "The currency symbol normally precedes the value. Enabling this option positions the symbol after the value."
1413
  msgstr "Møntfodssymbolet vises normalt foran værdien. Aktivering af denne valgmulighed viser symbolet efter værdien."
1414
 
1415
- #: ../src/admin-views/tribe-options-general.php:169
1416
  msgid "Map Settings"
1417
  msgstr "Kortindstillinger"
1418
 
1419
- #: ../src/admin-views/tribe-options-general.php:173
1420
  msgid "Enable Google Maps"
1421
  msgstr "Aktiver Google Maps"
1422
 
1423
- #: ../src/admin-views/tribe-options-general.php:174
1424
  msgid "Check to enable maps for events and venues."
1425
  msgstr "Markér for at aktivere kortfunktioner for begivenheder og steder."
1426
 
1427
- #: ../src/admin-views/tribe-options-general.php:181
1428
  msgid "Google Maps default zoom level"
1429
  msgstr "Google Maps standard zoom niveau "
1430
 
1431
- #: ../src/admin-views/tribe-options-general.php:182
1432
  msgid "0 = zoomed out; 21 = zoomed in."
1433
  msgstr "0 = zoomed ud; 21 = zoomed ind."
1434
 
1435
- #: ../src/admin-views/tribe-options-general.php:190
1436
  msgid "Miscellaneous Settings"
1437
  msgstr "Avancerede indstillinger"
1438
 
1439
- #: ../src/admin-views/tribe-options-general.php:194
1440
  msgid "Duplicate Venues &amp; Organizers"
1441
  msgstr "Dublering af steder &amp; arrangører"
1442
 
1443
- #: ../src/admin-views/tribe-options-general.php:194
1444
  msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
1445
  msgstr "Ved opgradering fra en præ-3.0 version af The Events Calendar kan der ske en dublering af steder og arrangører. Klik denne knap for at fjerne dubletter."
1446
 
1447
- #: ../src/admin-views/tribe-options-general.php:211
1448
  msgid "Debug mode"
1449
  msgstr "Debug mode"
1450
 
1451
- #: ../src/admin-views/tribe-options-general.php:217
1452
  msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
1453
  msgstr "Debug information gemmes normal i din servers PHP error log. Ønsker du at se debug informationer i din browser, anbefaler vi at du installerer %s og leder efter \"Tribe\" blandt debug informationerne."
1454
 
1455
- #: ../src/admin-views/tribe-options-general.php:217
1456
  msgid "Debug Bar Plugin"
1457
  msgstr "Debug Bar Plugin"
1458
 
1459
- #: ../src/admin-views/tribe-options-general.php:199
1460
  msgid "View Welcome Page"
1461
  msgstr "Se velkomst-siden"
1462
 
1463
- #: ../src/admin-views/tribe-options-general.php:199
1464
  msgid "View the page that displayed when you initially installed the plugin."
1465
  msgstr "Se opdaterings-siden"
1466
 
1467
- #: ../src/admin-views/tribe-options-general.php:204
1468
  msgid "View Update Page"
1469
  msgstr "Se opdaterings-siden"
1470
 
1471
- #: ../src/admin-views/tribe-options-general.php:204
1472
  msgid "View the page that displayed when you updated the plugin."
1473
  msgstr "Vis siden som du så da du opdaterede vores plugin"
1474
 
1475
- #: ../src/admin-views/tribe-options-help.php:28
1476
  msgctxt "not available"
1477
  msgid "n/a"
1478
  msgstr "n/a"
1479
 
1480
- #: ../src/admin-views/tribe-options-help.php:29
1481
  msgid "You need to upgrade!"
1482
  msgstr "Opgradering kræves!"
1483
 
1484
- #: ../src/admin-views/tribe-options-help.php:29
1485
  msgid "You are up to date!"
1486
  msgstr "Du har den nyeste version!"
1487
 
1488
- #: ../src/admin-views/tribe-options-help.php:52
1489
  msgid "The Events Calendar PRO"
1490
  msgstr "The Events Calendar PRO"
1491
 
1492
- #: ../src/admin-views/tribe-options-help.php:56
1493
  msgid "The Events Calendar: Eventbrite Tickets"
1494
  msgstr "Eventbrite Tickets "
1495
 
1496
- #: ../src/admin-views/tribe-options-help.php:60
1497
  msgid "The Events Calendar: Community Events"
1498
  msgstr "Community Events "
1499
 
1500
- #: ../src/Tribe/View_Helpers.php:281
1501
  msgid "Wallis And Futuna Islands"
1502
  msgstr "Wallis And Futuna Islands"
1503
 
1504
- #: ../src/admin-views/tribe-options-help.php:64
1505
  msgid "The Events Calendar: Facebook Events"
1506
  msgstr "Facebook Events "
1507
 
1508
- #: ../src/Tribe/View_Helpers.php:282
1509
  msgid "Western Sahara"
1510
  msgstr "Western Sahara"
1511
 
1512
- #: ../src/admin-views/tribe-options-help.php:68
1513
  msgid "The Events Calendar: WooCommerce Tickets"
1514
  msgstr "The Events Calendar: WooCommerce Tickets"
1515
 
1516
- #: ../src/Tribe/View_Helpers.php:283
1517
  msgid "Yemen"
1518
  msgstr "Yemen"
1519
 
1520
- #: ../src/admin-views/tribe-options-help.php:73
1521
  msgid "The Events Calendar: EDD Tickets"
1522
  msgstr "The Events Calendar: EDD Tickets"
1523
 
1524
- #: ../src/Tribe/View_Helpers.php:284
1525
  msgid "Zambia"
1526
  msgstr "Zambia"
1527
 
1528
- #: ../src/admin-views/tribe-options-help.php:78
1529
  msgid "The Events Calendar: WPEC Tickets"
1530
  msgstr "The Events Calendar: WPEC Tickets"
1531
 
1532
- #: ../src/Tribe/View_Helpers.php:285
1533
  msgid "Zimbabwe"
1534
  msgstr "Zimbabwe"
1535
 
1536
- #: ../src/admin-views/tribe-options-help.php:83
1537
  msgid "The Events Calendar: Shopp Tickets"
1538
  msgstr "The Events Calendar: Shopp Tickets"
1539
 
1540
- #: ../src/Tribe/View_Helpers.php:316
1541
  msgid "Alabama"
1542
  msgstr "Alabama"
1543
 
1544
- #: ../src/admin-views/tribe-options-help.php:88
1545
  msgid "The Events Calendar: Filter Bar"
1546
  msgstr "The Events Calendar: Filter Bar"
1547
 
1548
- #: ../src/Tribe/View_Helpers.php:317
1549
  msgid "Alaska"
1550
  msgstr "Alaska"
1551
 
1552
- #: ../src/Tribe/View_Helpers.php:318
1553
  msgid "Arizona"
1554
  msgstr "Arizona"
1555
 
1556
- #: ../src/admin-views/tribe-options-help.php:97
1557
  msgid "If this is your first time using The Events Calendar, you're in for a treat and are already well on your way to creating a first event. Here are some basics we've found helpful for users jumping into it for the first time:"
1558
  msgstr "Hvis det er første gang, du bruger The Events Calendar, har du noget at se frem til og er godt på vej til at oprette din første begivenhed. Her er noget basisviden, der har vist sig at være værdifuld for brugere, der hopper ud i det for første gang:"
1559
 
1560
- #: ../src/Tribe/View_Helpers.php:319
1561
  msgid "Arkansas"
1562
  msgstr "Arkansas"
1563
 
1564
- #: ../src/admin-views/tribe-options-help.php:100
1565
  msgid "%sOur New User Primer%s was designed for folks in your exact position. Featuring both step-by-step videos and written walkthroughs that feature accompanying screenshots, the primer aims to take you from zero to hero in no time."
1566
  msgstr "%sVores nye User Primer%s er designet til folk i din situation. Her finder du både trin-for-trin videoer og skrevne gennemgange med tilhørende screenshots. Primeren sigter mod at flytte dig fra nul til helt på ingen tid."
1567
 
1568
- #: ../src/Tribe/View_Helpers.php:320
1569
  msgid "California"
1570
  msgstr "California"
1571
 
1572
- #: ../src/admin-views/tribe-options-help.php:102
1573
  msgid "%sInstallation/Setup FAQs%s from our support page can help give an overview of what the plugin can and cannot do. This section of the FAQs may be helpful as it aims to address any basic install questions not addressed by the new user primer."
1574
  msgstr "%sInstallation/Setup FAQs%s fra vores support side kan hjælpe med at give overblik over, hvad plugin'et kan og ikke kan. Denne sektion af FAQ'erne kan være nyttig, da den sigter mod at besvare basale installationsspørgsmål, der ikke besvares i vores nye user primer."
1575
 
1576
- #: ../src/Tribe/View_Helpers.php:321
1577
  msgid "Colorado"
1578
  msgstr "Colorado"
1579
 
1580
- #: ../src/admin-views/tribe-options-help.php:104
1581
  msgid "Otherwise, if you're feeling adventurous, you can get started by heading to the Events menu and adding your first event."
1582
  msgstr "Ellers, hvis du er eventyrlysten, kan du komme igang ved at gå til begivenheds-menuen og oprette din første begivenhed."
1583
 
1584
- #: ../src/Tribe/View_Helpers.php:322
1585
  msgid "Connecticut"
1586
  msgstr "Connecticut"
1587
 
1588
- #: ../src/admin-views/tribe-options-help.php:108
1589
  msgid "We've redone our support page from the ground up in an effort to better help our users. Head over to our %sSupport Page%s and you'll find lots of great resources, including:"
1590
  msgstr "Vi har ombygget vores support side fra bunden i et forsøg på bedre at kunne hjælpe vore brugere. Smut hen på vores %ssupport side%s og du vil finde masser af gode ressourcer, herunder:"
1591
 
1592
- #: ../src/Tribe/View_Helpers.php:323
1593
  msgid "Delaware"
1594
  msgstr "Delaware"
1595
 
1596
- #: ../src/admin-views/tribe-options-help.php:110
1597
  msgid "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar &amp; Events Calendar PRO"
1598
  msgstr "%sTemplate tags, funktioner, hooks og filtre%s The Events Calendar &amp; Events Calendar PRO"
1599
 
1600
- #: ../src/Tribe/View_Helpers.php:324
1601
  msgid "District of Columbia"
1602
  msgstr "District of Columbia"
1603
 
1604
- #: ../src/admin-views/tribe-options-help.php:112
1605
  msgid "%sFrequently Asked Questions%s ranging from the most basic setup questions to advanced themer tweaks"
1606
  msgstr "%sOfte stillede spørgsmål (FAQ)%s rangerende fra de mest basale opsætningsspørgsmål til avancerede theme-tilrettelser"
1607
 
1608
- #: ../src/Tribe/View_Helpers.php:325
1609
  msgid "Florida"
1610
  msgstr "Florida"
1611
 
1612
- #: ../src/admin-views/tribe-options-help.php:115
1613
  msgid "%sTutorials%s written by both members of our team and users from the community, covering custom queries, integration with third-party themes and plugins, etc."
1614
  msgstr "%sTutorials%s skrevet af både medlemmer af vores team og brugere fra fællesskabet, der dækker tilpassede forespørgsler, integration til tredjeparts themes og plugins m.m."
1615
 
1616
- #: ../src/Tribe/View_Helpers.php:327
1617
  msgid "Hawaii"
1618
  msgstr "Hawaii"
1619
 
1620
- #: ../src/admin-views/tribe-options-help.php:117
1621
  msgid "Release notes for painting an overall picture of the plugin's lifecycle and when features/bug fixes were introduced."
1622
  msgstr "Udgivelsesnoter for at male det overordnede billede af plugin'ets livscyklus og hvornår features/fejlrettelser blev introduceret."
1623
 
1624
- #: ../src/Tribe/View_Helpers.php:328
1625
  msgid "Id
2
  # This file is distributed under the same license as the The Events Calendar package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-09-02 12:55:45+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: The Events Calendar\n"
12
 
13
+ #. Description of the plugin/theme
14
+ msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome."
15
  msgstr ""
16
 
17
+ #. Author of the plugin/theme
18
+ msgid "Modern Tribe, Inc."
19
  msgstr ""
20
 
21
+ #. Author URI of the plugin/theme
22
+ msgid "http://m.tri.be/1x"
23
  msgstr ""
24
 
25
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:62
26
+ msgid "<a href=\"%s\">Edit the page slug</a>"
27
  msgstr ""
28
 
29
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:63
30
+ msgid "Ask the site administrator to edit the page slug"
31
  msgstr ""
32
 
33
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:68
34
+ msgid "<a href=\"%s\">edit The Events Calendar settings</a>."
35
+ msgstr ""
36
+
37
+ #: src/Tribe/Admin/Notice/Archive_Slug_Conflict.php:69
38
+ msgid " ask the site administrator set a different Events URL slug."
39
+ msgstr ""
40
+
41
+ #: src/Tribe/Admin/Timezone_Updater.php:77
42
+ msgid "Please wait while timezone data is added to your events."
43
+ msgstr ""
44
+
45
+ #: src/Tribe/Admin/Timezone_Updater.php:78
46
+ msgid "Update complete: timezone data has been added to all events in the database."
47
+ msgstr ""
48
+
49
+ #: src/Tribe/Admin/Timezone_Updater.php:87
50
+ msgid "%d%% complete"
51
+ msgstr ""
52
+
53
+ #: src/Tribe/Admin/Timezone_Updater.php:105
54
+ msgid "A problem stopped the timezone update process from completing. Please refresh and try again."
55
+ msgstr ""
56
+
57
+ #: src/Tribe/Importer/Column_Mapper.php:64
58
+ msgid "Event Currency Symbol"
59
+ msgstr ""
60
+
61
+ #: src/Tribe/Importer/Column_Mapper.php:65
62
+ msgid "Event Currency Position"
63
+ msgstr ""
64
+
65
+ #: src/Tribe/Importer/Column_Mapper.php:67
66
+ msgid "Event Tags"
67
+ msgstr ""
68
+
69
+ #: src/Tribe/Main.php:2241
70
+ msgid "page"
71
+ msgstr ""
72
+
73
+ #: src/Tribe/Main.php:2242
74
+ msgid "event"
75
+ msgstr ""
76
+
77
+ #: src/Tribe/Main.php:2243
78
+ msgid "events"
79
+ msgstr ""
80
+
81
+ #: src/Tribe/Main.php:2244
82
+ msgid "all"
83
+ msgstr ""
84
+
85
+ #: src/Tribe/Settings.php:261
86
+ msgid "Save Changes"
87
+ msgstr ""
88
+
89
+ #: src/Tribe/Template/Day.php:136
90
+ msgid "No matching %1$s listed under %2$s scheduled for <strong>%3$s</strong>. Please try another day."
91
+ msgstr ""
92
+
93
+ #: src/Tribe/Template/Day.php:138
94
+ msgid "No %1$s scheduled for <strong>%2$s</strong>. Please try another day."
95
+ msgstr ""
96
+
97
+ #: src/Tribe/Template/Month.php:287
98
+ msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
99
+ msgstr ""
100
+
101
+ #: src/Tribe/Template_Factory.php:355
102
+ msgid "No results were found for %1$s in or near <strong>\"%2$s\"</strong>."
103
+ msgstr ""
104
+
105
+ #: src/Tribe/Template_Factory.php:357
106
+ msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
107
+ msgstr ""
108
+
109
+ #: src/Tribe/Template_Factory.php:359 src/Tribe/Template_Factory.php:364
110
+ msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
111
+ msgstr ""
112
+
113
+ #: src/admin-views/events-meta-box.php:121
114
+ msgid "Timezone:"
115
+ msgstr ""
116
+
117
+ #: src/admin-views/tickets/attendees.php:103
118
+ msgid "Sold %1$d %2$s"
119
+ msgstr ""
120
+
121
+ #: src/admin-views/tickets/attendees.php:106
122
+ msgid "Sold %1$d of %2$d %3$s"
123
+ msgstr ""
124
+
125
+ #: src/admin-views/tickets/list.php:69
126
+ msgid "Sold %1$d of %2$d"
127
+ msgstr ""
128
+
129
+ #: src/admin-views/tribe-options-general.php:94
130
+ msgid "You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=\"%1$s\">%2$s</a>. In order to edit the slug here, <a href=\"%3$soptions-permalink.php\">enable pretty permalinks</a>."
131
+ msgstr ""
132
+
133
+ #: src/admin-views/tribe-options-help.php:199
134
+ msgid "If you find that you aren't getting the level of service you've come to expect from Modern Tribe, shoot us an email at %1$s or tweet %2$s and tell us why. We'll do what we can to make it right."
135
+ msgstr ""
136
+
137
+ #: src/admin-views/tribe-options-licenses.php:13
138
+ msgid "<p>The license key you received when completing your purchase from %1$s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. <strong>Find your license keys at <a href=\"%2$s\" target=\"_blank\">%3$s</a></strong>.</p> <p>Each paid add-on has its own unique license key. Simply paste the key into its appropriate field on below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message.</p> <p>If you're seeing a red message telling you that your key isn't valid or is out of installs, visit <a href=\"%4$s\" target=\"_blank\">%5$s</a> to manage your installs or renew / upgrade your license.</p><p>Not seeing an update but expecting one? In WordPress, go to <a href=\"%6$s\">Dashboard > Updates</a> and click \"Check Again\".</p>"
139
+ msgstr ""
140
+
141
+ #: src/admin-views/tribe-options-timezones.php:4
142
+ msgid "Enable timezone support"
143
+ msgstr ""
144
+
145
+ #: src/admin-views/tribe-options-timezones.php:6
146
+ msgid "Update Timezone Data"
147
+ msgstr ""
148
+
149
+ #: src/admin-views/tribe-options-timezones.php:7
150
+ msgid "Click this button to update your database and take advantage of additional timezone capabilities. Please <a href=\"%s\" target=\"_blank\">configure WordPress</a> to use the correct timezone before clicking this button!"
151
+ msgstr ""
152
+
153
+ #: src/admin-views/tribe-options-timezones.php:27
154
+ msgid "Timezone Settings"
155
+ msgstr ""
156
+
157
+ #: src/admin-views/tribe-options-timezones.php:35
158
+ msgid "Timezone mode"
159
+ msgstr ""
160
+
161
+ #: src/admin-views/tribe-options-timezones.php:39
162
+ msgid "Use the local timezones for each event"
163
+ msgstr ""
164
+
165
+ #: src/admin-views/tribe-options-timezones.php:40
166
+ msgid "Use the sitewide timezone everywhere"
167
+ msgstr ""
168
+
169
+ #: src/admin-views/tribe-options-timezones.php:45
170
+ msgid "Show timezone"
171
+ msgstr ""
172
+
173
+ #: src/admin-views/tribe-options-timezones.php:46
174
+ msgid "Appends the timezone to the end of event scheduling information &ndash; this can be useful when you have events in numerous different timezones."
175
  msgstr ""
176
 
177
+ #: src/functions/template-tags/general.php:411
178
+ msgctxt "category list label"
179
+ msgid "%s Category"
180
+ msgid_plural "%s Categories"
181
+ msgstr[0] ""
182
+ msgstr[1] ""
183
+
184
+ #: src/io/csv/admin-views/general.php:48
185
+ msgid "Save Settings"
186
+ msgstr ""
187
+
188
+ #: src/Tribe/Activation_Page.php:38
189
+ msgid "Go to plugins page"
190
+ msgstr "Gå til plugin siden"
191
+
192
+ #: src/Tribe/Activation_Page.php:38
193
+ msgid "Return to Plugins page"
194
+ msgstr "Vend tilbage til plugin siden"
195
+
196
+ #: src/Tribe/Activation_Page.php:46
197
+ msgid "Go to WordPress Updates page"
198
+ msgstr "Gå til WordPress opdaterings siden"
199
+
200
+ #: src/Tribe/Activation_Page.php:46
201
+ msgid "Return to WordPress Updates"
202
+ msgstr "Vend tilbage til WordPress Opdateringer"
203
+
204
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:88
205
+ msgid "Create New %s"
206
+ msgstr "Opret Ny %s"
207
+
208
+ #: src/Tribe/Admin/Organizer_Chooser_Meta_Box.php:148
209
+ msgid "Add another organizer"
210
+ msgstr "Tilføj en anden eventmaker"
211
+
212
+ #: src/Tribe/Cost_Utils.php:108
213
  msgctxt "Cost range separator"
214
  msgid " - "
215
+ msgstr " - "
216
 
217
+ #: src/Tribe/PUE/Checker.php:416
218
  msgid "unknown date"
219
+ msgstr "Ukendt dato"
220
 
221
+ #: src/Tribe/Support.php:142
222
  msgid "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
223
  msgstr ""
224
 
225
+ #: src/admin-views/tribe-options-help.php:155
226
  msgid "If you're looking for help with The Events Calendar, you've come to the right place. We are committed to helping make your calendar be spectacular... and hope the resources provided below will help get you there."
227
+ msgstr "Hvis du mangler hjælp til The Event Calendar, har du fundet det rigtige sted. Vi har forpligtet os til at hjælpe dig med at gøre din kalender speciel."
228
 
229
+ #: src/admin-views/tribe-options-help.php:209
230
  msgid "Hi! We are Modern Tribe and we are here to help you be awesome. Thanks so much for installing our labor of love!"
231
+ msgstr "Hej! vi er Modern Tribe og vi er her for at hjælpe dig med at få en fed side. Tak fordi du indstallerede vores program."
232
 
233
+ #: src/admin-views/tribe-options-help.php:231
234
  msgid "Support Resources To Help You Be Awesome"
235
+ msgstr "Support ressourcer der hjælper til at at blive bedre "
236
 
237
+ #: src/admin-views/tribe-options-licenses.php:17
238
  msgid ""
239
  "<strong> Using our plugins in a multisite network? </strong>\n"
240
  "\t\tPlease note that your license key will be applied to the entire network, not just this site."
241
  msgstr ""
242
+ "<strong> Bruger du vores plugin på et multisite netwærk? </strong>\n"
243
+ "→\t→\tVær opmærksom på at din licensnøgle bliver tilføjet til hele dit netværk og ikke kun den her side."
244
 
245
+ #: src/admin-views/tribe-options-licenses.php:20
246
  msgid ""
247
  "Only license fields for <strong>network activated</strong> plugins will be\n"
248
  "\t\tlisted on this screen. "
249
  msgstr ""
250
+ "Kun licens felter for <strong>netværk aktiverede</strong> plugins vil være\n"
251
+ "→\t→\tlistet på denne side. "
252
 
253
+ #: src/Tribe/View_Helpers.php:334
254
  msgid "Louisiana"
255
  msgstr "Louisiana"
256
 
257
+ #: src/Tribe/View_Helpers.php:335
 
 
 
 
258
  msgid "Maine"
259
  msgstr "Maine"
260
 
261
+ #: src/admin-views/tribe-options-help.php:200
262
  msgid "More..."
263
  msgstr "Mere…"
264
 
265
+ #: src/Tribe/View_Helpers.php:336
266
  msgid "Maryland"
267
  msgstr "Maryland"
268
 
269
+ #: src/Tribe/View_Helpers.php:337
270
  msgid "Massachusetts"
271
  msgstr "Massachusetts"
272
 
273
+ #: src/Tribe/View_Helpers.php:338
274
  msgid "Michigan"
275
  msgstr "Michigan"
276
 
277
+ #: src/admin-views/tribe-options-help.php:241
278
  msgid "Forums: Because Everyone Needs A Buddy"
279
  msgstr "Fora: Fordi alle har brug for en ven"
280
 
281
+ #: src/Tribe/View_Helpers.php:339
282
  msgid "Minnesota"
283
  msgstr "Minnesota"
284
 
285
+ #: src/admin-views/tribe-options-help.php:251
286
  msgid "Not getting help?"
287
  msgstr "Får du ingen Hjælp?"
288
 
289
+ #: src/Tribe/View_Helpers.php:340
290
  msgid "Mississippi"
291
  msgstr "Mississippi"
292
 
293
+ #: src/admin-views/tribe-options-help.php:277
294
  msgid "Latest Version:"
295
  msgstr "Seneste version:"
296
 
297
+ #: src/Tribe/View_Helpers.php:341
298
  msgid "Missouri"
299
  msgstr "Missouri"
300
 
301
+ #: src/admin-views/tribe-options-help.php:279
302
  msgid "Author:"
303
  msgstr "Forfatter:"
304
 
305
+ #: src/Tribe/View_Helpers.php:342
306
  msgid "Montana"
307
  msgstr "Montana"
308
 
309
+ #: src/admin-views/tribe-options-help.php:279
310
  msgid "Modern Tribe Inc"
311
  msgstr "Modern Tribe Inc"
312
 
313
+ #: src/Tribe/View_Helpers.php:343
314
  msgid "Nebraska"
315
  msgstr "Nebraska"
316
 
317
+ #: src/admin-views/tribe-options-help.php:284
318
  msgid "Requires:"
319
  msgstr "Kræver:"
320
 
321
+ #: src/Tribe/View_Helpers.php:344
322
  msgid "Nevada"
323
  msgstr "Nevada"
324
 
325
+ #: src/admin-views/tribe-options-help.php:284
326
  msgid "WordPress "
327
  msgstr "WordPress "
328
 
329
+ #: src/Tribe/View_Helpers.php:345
330
  msgid "New Hampshire"
331
  msgstr "New Hampshire"
332
 
333
+ #: src/admin-views/tribe-options-help.php:295
334
  msgid "Wordpress.org Plugin Page"
335
  msgstr "Wordpress.org Plugin side"
336
 
337
+ #: src/Tribe/View_Helpers.php:346
338
  msgid "New Jersey"
339
  msgstr "New Jersey"
340
 
341
+ #: src/admin-views/tribe-options-help.php:301
342
  msgid "Average Rating"
343
  msgstr "Gns. Rating"
344
 
345
+ #: src/Tribe/View_Helpers.php:347
346
  msgid "New Mexico"
347
  msgstr "New Mexico"
348
 
349
+ #: src/admin-views/tribe-options-help.php:307
350
  msgid "Based on %d rating"
351
  msgid_plural "Based on %d ratings"
352
  msgstr[0] "Baseret på %d rating"
353
  msgstr[1] "Baseret på %d ratings"
354
 
355
+ #: src/Tribe/View_Helpers.php:348
356
  msgid "New York"
357
  msgstr "New York"
358
 
359
+ #: src/admin-views/tribe-options-help.php:317
360
  msgid "Give us 5 stars!"
361
  msgstr "Giv os 5 stjerner!"
362
 
363
+ #: src/Tribe/View_Helpers.php:349
364
  msgid "North Carolina"
365
  msgstr "North Carolina"
366
 
367
+ #: src/admin-views/tribe-options-help.php:321
368
  msgid "Premium Add-Ons"
369
  msgstr "Premium Add-Ons"
370
 
371
+ #: src/Tribe/View_Helpers.php:350
372
  msgid "North Dakota"
373
  msgstr "North Dakota"
374
 
375
+ #: src/admin-views/tribe-options-help.php:330
376
  msgid "(Coming Soon!)"
377
  msgstr "(Kommer snart!)"
378
 
379
+ #: src/Tribe/View_Helpers.php:351
380
  msgid "Ohio"
381
  msgstr "Ohio"
382
 
383
+ #: src/admin-views/tribe-options-help.php:340
384
  msgid "News and Tutorials"
385
  msgstr "News and Tutorials"
386
 
387
+ #: src/Tribe/View_Helpers.php:352
388
  msgid "Oklahoma"
389
  msgstr "Oklahoma"
390
 
391
+ #: src/admin-views/tribe-options-network.php:15
392
  msgid "Network Settings"
393
  msgstr "Netværksindstillinger"
394
 
395
+ #: src/Tribe/View_Helpers.php:353
396
  msgid "Oregon"
397
  msgstr "Oregon"
398
 
399
+ #: src/admin-views/tribe-options-network.php:19
400
  msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
401
  msgstr "Her kan alle globale netværksindstillinger for Modern Tribe's The Events Calendar indstilles."
402
 
403
+ #: src/Tribe/View_Helpers.php:354
404
  msgid "Pennsylvania"
405
  msgstr "Pennsylvania"
406
 
407
+ #: src/admin-views/tribe-options-network.php:27
408
  msgid "Hide the following settings tabs on every site:"
409
  msgstr "Gem følgende indstillingsfaner på alle sites:"
410
 
411
+ #: src/Tribe/View_Helpers.php:355
412
  msgid "Rhode Island"
413
  msgstr "Rhode Island"
414
 
415
+ #: src/admin-views/tickets/attendees.php:46
416
+ #: src/admin-views/venue-meta-box.php:34
417
+ #: src/functions/advanced-functions/meta_registration.php:176
418
  msgid "Address:"
419
  msgstr "Adresse:"
420
 
421
+ #: src/Tribe/View_Helpers.php:356
422
  msgid "South Carolina"
423
  msgstr "South Carolina"
424
 
425
+ #: src/admin-views/venue-meta-box.php:41
426
  msgid "City:"
427
  msgstr "By:"
428
 
429
+ #: src/Tribe/View_Helpers.php:357
430
  msgid "South Dakota"
431
  msgstr "South Dakota"
432
 
433
+ #: src/admin-views/venue-meta-box.php:48
434
  msgid "Country:"
435
  msgstr "Land:"
436
 
437
+ #: src/Tribe/View_Helpers.php:358
438
  msgid "Tennessee"
439
  msgstr "Tennessee"
440
 
441
+ #: src/admin-views/venue-meta-box.php:88
442
  msgid "State or Province:"
443
  msgstr "Område/provins:"
444
 
445
+ #: src/Tribe/View_Helpers.php:359
446
  msgid "Texas"
447
  msgstr "Texas"
448
 
449
+ #: src/admin-views/venue-meta-box.php:92
450
  msgid "Select a State:"
451
  msgstr "Stat:"
452
 
453
+ #: src/Tribe/View_Helpers.php:360
454
  msgid "Utah"
455
  msgstr "Utah"
456
 
457
+ #: src/admin-views/venue-meta-box.php:105
458
  msgid "Postal Code:"
459
  msgstr "Postnummer:"
460
 
461
+ #: src/Tribe/View_Helpers.php:361
462
  msgid "Vermont"
463
  msgstr "Vermont"
464
 
465
+ #: src/admin-views/venue-meta-box.php:137
466
+ #: src/admin-views/venue-meta-box.php:159
467
  msgid "Show Google Map:"
468
  msgstr "Vis Google Map kortvisning:"
469
 
470
+ #: src/Tribe/View_Helpers.php:362
471
  msgid "Virginia"
472
  msgstr "Virginia"
473
 
474
+ #: src/admin-views/venue-meta-box.php:147
475
+ #: src/admin-views/venue-meta-box.php:169
476
  msgid "Show Google Maps Link:"
477
  msgstr "Vis Google Map link:"
478
 
479
+ #: src/Tribe/View_Helpers.php:363
480
  msgid "Washington"
481
  msgstr "Washington"
482
 
483
+ #: src/admin-views/widget-admin-list.php:13
484
  msgid "Title:"
485
  msgstr "Titel:"
486
 
487
+ #: src/Tribe/View_Helpers.php:364
488
  msgid "West Virginia"
489
  msgstr "West Virginia"
490
 
491
+ #: src/admin-views/widget-admin-list.php:18
492
  msgid "Show:"
493
  msgstr "Vis:"
494
 
495
+ #: src/Tribe/View_Helpers.php:365
496
  msgid "Wisconsin"
497
  msgstr "Wisconsin"
498
 
499
+ #: src/admin-views/widget-admin-list.php:28
500
  msgid "Show widget only if there are upcoming events:"
501
  msgstr "Widget vises kun, hvis der er planlagt fremtidige begivenheder:"
502
 
503
+ #: src/Tribe/View_Helpers.php:366
504
  msgid "Wyoming"
505
  msgstr "Wyoming"
506
 
507
+ #: src/functions/advanced-functions/meta_registration.php:16
508
+ #: src/views/modules/meta/details.php:30
509
  msgid "Details"
510
  msgstr "Detaljer"
511
 
512
+ #: src/Tribe/iCal.php:28
513
  msgctxt "feed link"
514
  msgid "&raquo;"
515
  msgstr "&raquo;"
516
 
517
+ #: src/functions/advanced-functions/meta_registration.php:80
518
  msgid "Event Tags:"
519
  msgstr "Begivenheds-tags:"
520
 
521
+ #: src/Tribe/iCal.php:29
522
  msgid "%1$s %2$s iCal Feed"
523
  msgstr "%1$s %2$s iCal Feed"
524
 
525
+ #: src/functions/advanced-functions/meta_registration.php:112
526
  msgid "Origin:"
527
  msgstr "Oprindelse:"
528
 
529
+ #: src/Tribe/iCal.php:75
530
  msgid "Add to Google Calendar"
531
  msgstr "Tilfø til Google Calendar"
532
 
533
+ #: src/functions/advanced-functions/meta_registration.php:286
534
  msgid "%s:"
535
  msgstr "%s:"
536
 
537
+ #: src/Tribe/iCal.php:75
538
  msgid "Google Calendar"
539
  msgstr "Google kalender"
540
 
541
+ #: src/functions/template-tags/date.php:261
542
  msgid "The function needs to be passed an $event or used in the loop."
543
  msgstr "Denne funktion skal være efter en $begivenhed eller bruges i et loop. "
544
 
545
+ #: src/Tribe/iCal.php:76
546
  msgid "Download .ics file"
547
  msgstr "Download .ics file"
548
 
549
+ #: src/functions/template-tags/day.php:107
550
  msgid "<span>&laquo;</span> Previous Day"
551
  msgstr "<span>&laquo;</span> Tidligere"
552
 
553
+ #: src/Tribe/iCal.php:76
554
  msgid "iCal Export"
555
  msgstr "Eksportér"
556
 
557
+ #: src/functions/template-tags/day.php:109
558
  msgid "Next Day <span>&raquo;</span>"
559
  msgstr "Kommende <span>&raquo;</span>"
560
 
561
+ #: src/Tribe/iCal.php:106
562
  msgid "Month's %s"
563
  msgstr "Måneders %s"
564
 
565
+ #: src/functions/template-tags/day.php:111
566
  msgid "Yesterday"
567
  msgstr "I går"
568
 
569
+ #: src/Tribe/iCal.php:109
570
  msgid "Week's %s"
571
  msgstr "Ugers %s"
572
 
573
+ #: src/functions/template-tags/day.php:113
574
  msgid "Tomorrow"
575
  msgstr "Comoros"
576
 
577
+ #: src/Tribe/iCal.php:112
578
  msgid "Day's %s"
579
  msgstr "Dages %s"
580
 
581
+ #: src/functions/template-tags/deprecated.php:1283
582
  msgid "Category"
583
  msgstr "Kategori"
584
 
585
+ #: src/Tribe/iCal.php:115
586
  msgid "Listed %s"
587
  msgstr "Listet %s"
588
 
589
+ #: src/functions/template-tags/general.php:450
590
  msgid "Tags:"
591
  msgstr "Tags:"
592
 
593
+ #: src/Tribe/iCal.php:120
594
  msgid "Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps"
595
  msgstr "Brug denne kalender for at dele kalender data på Google Calendar, Apple iCal og andre kompatible apps"
596
 
597
+ #: src/functions/template-tags/general.php:562
598
  msgid "Loading %s"
599
  msgstr "Indlæser %s"
600
 
601
+ #: src/admin-views/admin-update-message.php:9
602
+ #: src/admin-views/admin-welcome-message.php:11
603
  msgid "You are running Version %s and deserve a hug :-)"
604
  msgstr "Du kører version %s og fortjener et knus :-)"
605
 
606
+ #: src/Tribe/Cost_Utils.php:123
607
  msgid "Free"
608
  msgstr "Gratis"
609
 
610
+ #: src/admin-views/admin-update-message.php:32
611
  msgid "Keep the Core Plugin <strong>FREE</strong>!"
612
  msgstr "Behold Core Plugin <strong>FREE</strong>!"
613
 
614
+ #: src/functions/template-tags/general.php:1488
615
  msgid "Calendar powered by %sThe Events Calendar%s"
616
  msgstr "Powered by %sThe Events Calendar%s"
617
 
618
+ #: src/admin-views/admin-update-message.php:33
619
  msgid "Every time you rate <strong>5 stars</strong>, a fairy is born. Okay maybe not, but more happy users mean more contributions and help on the forums. The community NEEDS your voice."
620
  msgstr "Hver gang du stemmer <strong>5 stars</strong>, bliver en fe født. Okay måske ikke, men flere glade bruger betyder flere bidrag og hjælp i forummerne. Fællesskabet har BRUG for din stemme. "
621
 
622
+ #: src/functions/template-tags/loop.php:131
623
  msgid "Upcoming %s"
624
  msgstr "Kommende %s"
625
 
626
+ #: src/admin-views/admin-update-message.php:34
627
+ #: src/admin-views/admin-welcome-message.php:22
628
  msgid "Rate It"
629
  msgstr "Stem"
630
 
631
+ #: src/functions/template-tags/loop.php:145
632
  msgid "%1$s for %2$s - %3$s"
633
  msgstr "%1$s for %2$s - %3$s"
634
 
635
+ #: src/admin-views/admin-update-message.php:37
636
  msgid "PSST... Want a Discount?"
637
  msgstr "PSST... Vil du have rabat?"
638
 
639
+ #: src/functions/template-tags/loop.php:147
640
  msgid "Past %s"
641
  msgstr "Tidligere %s"
642
 
643
+ #: src/admin-views/admin-update-message.php:38
644
  msgid "We send out discounts to our core users via our newsletter."
645
  msgstr "Vi sender rabatter til vores kerne-brugere via vores nyhedsbrev"
646
 
647
+ #: src/functions/template-tags/loop.php:152
648
+ #: src/functions/template-tags/loop.php:161
649
  msgid "%1$s for %2$s"
650
  msgstr "%1$s for %2$s"
651
 
652
+ #: src/admin-views/admin-update-message.php:43
653
+ #: src/admin-views/admin-welcome-message.php:31
654
  msgid "Sign Up"
655
  msgstr "Tilmeld dig"
656
 
657
+ #: src/functions/template-tags/options.php:20
658
  msgid "Your current Events URL is %s"
659
  msgstr "Linket til nuværende begivenhed er %s"
660
 
661
+ #: src/admin-views/admin-update-message.php:49
662
  msgid "Looking for Something Special?"
663
  msgstr "På udkig efter noget specielt?"
664
 
665
+ #: src/functions/template-tags/options.php:29
666
  msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
667
  msgstr "Der <strong>må ikke</strong> benyttes samme korte link titel som ovenfor. Titlen ovenfor bør være i flertal, og denne titel bør være i ental. <br /> Linket til individuellet begivenheder er: %s"
668
 
669
+ #: src/admin-views/admin-update-message.php:51
670
  msgid "Pro"
671
  msgstr "Pro"
672
 
673
+ #: src/io/csv/admin-views/columns.php:22
674
  msgid "Column Mapping: %s"
675
  msgstr "Kolonnematch: %s."
676
 
677
+ #: src/admin-views/admin-update-message.php:53
678
  msgid "Community Events"
679
  msgstr "Community begivenheder"
680
 
681
+ #: src/io/csv/admin-views/columns.php:27
682
  msgid "Columns have been mapped based on your last import. Please ensure the selected fields match the columns in your CSV file."
683
  msgstr "Kolonner er blevet kortlagt på baggrund af din sidste import. Sørg venligst for at de udvalgte felter matcher kolonnerne i din CSV-fil."
684
 
685
+ #: src/admin-views/admin-update-message.php:54
686
  msgid "Filters"
687
  msgstr "Filtre"
688
 
689
+ #: src/io/csv/admin-views/columns.php:32
690
  msgid "Column Headings"
691
  msgstr "Kolonneoverskrifter"
692
 
693
+ #: src/admin-views/admin-update-message.php:55
694
  msgid "Facebook"
695
  msgstr "Facebook"
696
 
697
+ #: src/io/csv/admin-views/columns.php:33
698
  msgid "Event Fields"
699
  msgstr "Begivenhedsfelter"
700
 
701
+ #: src/admin-views/admin-update-message.php:58
702
+ #: src/admin-views/admin-welcome-message.php:53
703
  msgid "News For Events Users"
704
  msgstr "Nyheder for begivenhedsbrugere"
705
 
706
+ #: src/io/csv/admin-views/columns.php:44
707
  msgid "Perform Import"
708
  msgstr "Udfør import"
709
 
710
+ #: src/admin-views/admin-welcome-message.php:19
711
  msgid "Keep The Events Calendar Core FREE"
712
  msgstr "Behold The Events Calendar Core FREE"
713
 
714
+ #: src/io/csv/admin-views/general.php:10
715
  msgid "The Events Calendar: Import"
716
  msgstr "The Events Calendar: Importer"
717
 
718
+ #: src/admin-views/admin-welcome-message.php:20
719
  msgid "5 star ratings help us bring TEC to more users. More happy users mean more support, more features, and more of everything you know and love about The Events Calendar. We couldn't do this without your support."
720
  msgstr "Ved at give os 5 stjerner, hjælper du os med at udbrede TEC til endnu flere brugere. Flere brugere betyder mere support, funktioner og mere af det hele som du allerede kender og elsker ved TEC. Vi kan ikke udrette dette uden din hjælp!"
721
 
722
+ #: src/io/csv/admin-views/general.php:12
723
  msgid "Instructions"
724
  msgstr "Instruktioner"
725
 
726
+ #: src/admin-views/admin-welcome-message.php:21
727
  msgid "Rate it five stars today!"
728
  msgstr "Giv den fem stjerner i dag!"
729
 
730
+ #: src/io/csv/admin-views/general.php:14
731
  msgid "To import events, first select a %sDefault Import Event Status%s below to assign to your imported events."
732
  msgstr "For at importere begivenheder vælg og tildel først en %sDefault Import Event Status%s nedenfor til dine importerede begivenheder"
733
 
734
+ #: src/admin-views/admin-welcome-message.php:25
735
  msgid "Newsletter Signup"
736
  msgstr "Tilmeld dig nyhedsbrevet"
737
 
738
+ #: src/io/csv/admin-views/general.php:17
739
  msgid "Once your setting is saved, move to the applicable Import tab to select import specific criteria."
740
  msgstr "Når du har valgt og gemt dine indstillinger, skal du fortsætte til den relevante Import fane for at angive dine importkriterier "
741
 
742
+ #: src/admin-views/admin-welcome-message.php:26
743
  msgid "Stay in touch with The Events Calendar Pro. We send out periodic updates, key developer notices, and even the occasional discount."
744
  msgstr "Hold dig orienteret om The Events Calendar Pro. Vi udsender med mellemrum opdateringer, nyheder fra vores udviklere og gode tilbud"
745
 
746
+ #: src/io/csv/admin-views/general.php:24
747
  msgid "Import Settings"
748
  msgstr "Importer indstillinger"
749
 
750
+ #: src/admin-views/admin-welcome-message.php:40
751
+ #: src/admin-views/tribe-options-help.php:221
752
  msgid "Getting Started"
753
  msgstr "Kom i gang"
754
 
755
+ #: src/io/csv/admin-views/general.php:27
756
  msgid "Default imported event status:"
757
  msgstr "Status for std. Importerede begivenheder"
758
 
759
+ #: src/admin-views/admin-welcome-message.php:41
760
  msgid "Check out the New User Primer &amp; Tutorials"
761
  msgstr "Se og læs de nye tutorials"
762
 
763
+ #: src/io/csv/admin-views/general.php:30
764
  msgid "Published"
765
  msgstr "Udgivet"
766
 
767
+ #: src/admin-views/admin-welcome-message.php:43
768
  msgid "Looking for More Features?"
769
  msgstr "På udkig efter yderligere funktioner?"
770
 
771
+ #: src/io/csv/admin-views/general.php:31
772
  msgid "Pending"
773
  msgstr "Afventer"
774
 
775
+ #: src/admin-views/admin-welcome-message.php:44
776
  msgid "Addons for Community, Tickets, Filters, Facebook and more."
777
  msgstr "Tilføjelser til community, billetter, filtre, Facebook og andre"
778
 
779
+ #: src/io/csv/admin-views/general.php:32
780
  msgid "Draft"
781
  msgstr "Kladde"
782
 
783
+ #: src/admin-views/admin-welcome-message.php:46
784
  msgid "Support Resources"
785
  msgstr "Support ressourcer"
786
 
787
+ #: src/io/csv/admin-views/header.php:17
788
  msgid "Events Import"
789
  msgstr "Begivenheds-import"
790
 
791
+ #: src/admin-views/admin-welcome-message.php:47
792
  msgid "FAQs, Documentation, Tutorials and Forums"
793
  msgstr "FAQ's, dokumentation, tutorials og fora"
794
 
795
+ #: src/io/csv/admin-views/import.php:17
796
  msgid "Import Instructions"
797
  msgstr "Importinstruktioner"
798
 
799
+ #: src/admin-views/admin-welcome-message.php:50
800
  msgid "Release Notes"
801
  msgstr "Release Noter"
802
 
803
+ #: src/io/csv/admin-views/import.php:20
804
  msgid "If your events have Organizers or Venues, please import those first."
805
  msgstr "Hvis dine begivenheder har organisatorer eller venues, så importér dem venligst først."
806
 
807
+ #: src/admin-views/admin-welcome-message.php:51
808
  msgid "Get the Skinny on the Latest Updates"
809
  msgstr "Få et hurtigt overblik over de seneste opdateringer"
810
 
811
+ #: src/io/csv/admin-views/import.php:21
812
  msgid "To import organizers or venues:"
813
  msgstr "For at importere arrangører eller venues:"
814
 
815
+ #: src/admin-views/admin-welcome-message.php:54
816
  msgid "Product Releases, Tutorials and Community Activity"
817
  msgstr "Produktudgivelser, tutorials og community aktiviteter"
818
 
819
+ #: src/io/csv/admin-views/import.php:23
820
  msgid "Select the appropriate import type."
821
  msgstr "Vælg den passende importtype."
822
 
823
+ #: src/admin-views/app-shop.php:4
824
  msgid "Tribe Event Add-Ons"
825
  msgstr "Tribe Event Add-Ons"
826
 
827
+ #: src/io/csv/admin-views/import.php:24 src/io/csv/admin-views/import.php:30
 
828
  msgid "Upload a CSV file with one record on each line. The first line may contain column names (check the box below)."
829
  msgstr "Upload en CSV fil med en post på hver linje. Den første linje må indeholde kolonnenavne (afkryds boksen herunder)."
830
 
831
+ #: src/admin-views/app-shop.php:54
832
  msgid "Version"
833
  msgstr "Version"
834
 
835
+ #: src/io/csv/admin-views/import.php:25
836
  msgid "One column in your CSV should have the Organizer/Venue name. All other fields are optional."
837
  msgstr "En kolonne i din CSV bør have organisator/venue navnet. Alle andre felter er valgfrie."
838
 
839
+ #: src/admin-views/app-shop.php:57
840
  msgid "Last Update"
841
  msgstr "Senest opdateret"
842
 
843
+ #: src/io/csv/admin-views/import.php:26 src/io/csv/admin-views/import.php:32
 
844
  msgid "After you upload your file, you'll have the opportunity to indicate how the columns in your CSV map to fields in The Events Calendar."
845
  msgstr "Efter du har uploadet din fil, får du mulighed for at angive hvordan kollonnerne i din CSV skal matche felterne i The Events Calendar."
846
 
847
+ #: src/admin-views/event-sidebar-options.php:13
848
  msgid "Hide From %s Listings"
849
  msgstr "Gem fra %s Lister"
850
 
851
+ #: src/io/csv/admin-views/import.php:28
852
  msgid "After importing your Organizers and Venues, import your Events:"
853
  msgstr "Importer dine events efter import af organisatorer og venues:"
854
 
855
+ #: src/admin-views/event-sidebar-options.php:15
856
  msgid "Sticky in Month View"
857
  msgstr "Klæbende i månedsvisning"
858
 
859
+ #: src/io/csv/admin-views/import.php:31
860
  msgid "One column in your CSV should have the Event title. Another should have the Event start date. All other fields are optional."
861
  msgstr "En kolonne i din CSV bør have begivenhedstitlen. En anden bør have begivenhedens start-dato. Alle andre felter er valgfrie."
862
 
863
+ #: src/admin-views/event-sidebar-options.php:16
864
  msgid "When events are sticky in month view, they'll display first in the list of events shown within a given day block."
865
  msgstr "Når begivenheder er sticky i månedsvisning, vil de vises først i listen over begivenheder i en given dags blok."
866
 
867
+ #: src/io/csv/admin-views/import.php:36
868
  msgid "Questions? <a href=\"%s\">Watch the video</a>."
869
  msgstr "Spørgsmål? <a href=\"%s\">Se videoen</a>."
870
 
871
+ #: src/admin-views/events-meta-box.php:60
872
  msgid "Time &amp; Date"
873
  msgstr "Tidspunkt &amp; Dato"
874
 
875
+ #: src/io/csv/admin-views/import.php:43
876
  msgid "Import Type:"
877
  msgstr "Importtype"
878
 
879
+ #: src/admin-views/events-meta-box.php:67
880
  msgid "You have changed the recurrence rules of this %1$s. Saving the %1$s will update all future %2$s. If you did not mean to change all %2$s, then please refresh the page."
881
  msgstr "Du har ændret gentagelsereglen for denne %1$s. Hvis du gemmer %1$s vil du opdatere alle fremtidige %2$s. Hvis du ikke vil ændre alle %2$s, så opdater venligst siden. "
882
 
883
+ #: src/io/csv/admin-views/import.php:55
884
  msgid "CSV File:"
885
  msgstr "CSV fil:"
886
 
887
+ #: src/admin-views/events-meta-box.php:70
888
  msgid "All Day %s:"
889
  msgstr "Hele dagen %s:"
890
 
891
+ #: src/io/csv/admin-views/import.php:59
892
  msgid "Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file is UTF-8 encoded? Make sure to specify the character encoding when you save the file, or pass it through a <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>conversion tool</a>."
893
  msgstr "Opload en fornuftigt formateret UTF-8 encoded CSV fil. Er du ikke sikker på, om din fil er UTF-8 encoded? Sørg for at specificere character encoding, når du gemmer filen eller send den igennem et <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>konverteringsværktøj</a>."
894
 
895
+ #: src/admin-views/events-meta-box.php:76
896
  msgid "Start Date &amp; Time:"
897
  msgstr "Starttidspunkt"
898
 
899
+ #: src/io/csv/admin-views/import.php:67
900
  msgid "This file has column names in the first row"
901
  msgstr "Denne fil har kolonnenavne i første række"
902
 
903
+ #: src/admin-views/events-meta-box.php:80
904
+ #: src/admin-views/events-meta-box.php:101
905
  msgid "YYYY-MM-DD"
906
  msgstr "YYYY-MM-DD"
907
 
908
+ #: src/io/csv/admin-views/import.php:78
909
  msgid "Import CSV File"
910
  msgstr "Importer CSV fil"
911
 
912
+ #: src/admin-views/events-meta-box.php:98
913
  msgid "End Date &amp; Time:"
914
  msgstr "Sluttidspunkt"
915
 
916
+ #: src/io/csv/admin-views/result.php:15
917
  msgid "Import Result"
918
  msgstr "Importer resultat"
919
 
920
+ #: src/admin-views/events-meta-box.php:147
921
  msgid "Location"
922
  msgstr "Lokation"
923
 
924
+ #: src/io/csv/admin-views/result.php:17
925
  msgid "Import complete!"
926
  msgstr "Import fuldført!"
927
 
928
+ #: src/admin-views/events-meta-box.php:195
929
  msgid "%s Website"
930
  msgstr "%s Website"
931
 
932
+ #: src/io/csv/admin-views/result.php:19
933
  msgid "Inserted: %d"
934
  msgstr "Indsat: %d"
935
 
936
+ #: src/admin-views/events-meta-box.php:198
937
  msgid "URL:"
938
  msgstr "URL:"
939
 
940
+ #: src/io/csv/admin-views/result.php:20
941
  msgid "Updated: %d"
942
  msgstr "Opdateret: %d"
943
 
944
+ #: src/admin-views/events-meta-box.php:229
945
  msgid "%s Cost"
946
  msgstr "%s pris"
947
 
948
+ #: src/io/csv/admin-views/result.php:21
949
  msgid "Skipped: %d"
950
  msgstr "Sprunget over: %d"
951
 
952
+ #: src/admin-views/events-meta-box.php:232
953
  msgid "Currency Symbol:"
954
  msgstr "Valuta:"
955
 
956
+ #: src/io/csv/admin-views/result.php:25
957
  msgid "The import statistics above have the following meaning:"
958
  msgstr "Importstatistikken oven for betyder følgende:"
959
 
960
+ #: src/admin-views/events-meta-box.php:247
961
  msgctxt "Currency symbol position"
962
  msgid "Before cost"
963
  msgstr "Før pris"
964
 
965
+ #: src/io/csv/admin-views/result.php:26
966
  msgid "<ol><li><strong>Inserted:</strong> A new item was inserted successfully.</li><li><strong>Updated:</strong> An item was found with the same name and/or start date. The existing item was updated with the new value from the file.</li><li><strong>Skipped:</strong> A row was found in the CSV file that could not be imported. Please see below for the invalid rows.</li></ol>"
967
  msgstr "<ol><li><strong>Indsat:</strong> Et nyt element blev indsat korrekt.</li><li><strong>Opdateret:</strong> Et element med samme navn og/eller startdato blev fundet. Det eksisterende element blev opdateret med den nye værdi fra filen.</li><li><strong>Sprunget over:</strong> En række i CSV filen kunne ikke importeres. Se venligst nedenfor vedrørende ugyldige rækker.</li></ol>"
968
 
969
+ #: src/admin-views/events-meta-box.php:250
970
  msgctxt "Currency symbol position"
971
  msgid "After cost"
972
  msgstr "Efter pris"
973
 
974
+ #: src/io/csv/admin-views/result.php:29
975
  msgid "Skipped row numbers: %s"
976
  msgstr "Sprang over rækkenumre: %s"
977
 
978
+ #: src/admin-views/events-meta-box.php:255
979
+ #: src/functions/advanced-functions/meta_registration.php:48
980
+ #: src/views/modules/meta/details.php:100
981
  msgid "Cost:"
982
  msgstr "Pris:"
983
 
984
+ #: src/admin-views/events-meta-box.php:263
985
  msgid "Enter a 0 for %s that are free or leave blank to hide the field."
986
  msgstr "Indsæt et 0 for %s som er gratis eller lad feltet stå tomt for at skjule det"
987
 
988
+ #: src/admin-views/new-organizer-meta-section.php:15
989
+ #: src/admin-views/organizer-meta-box.php:24
990
+ #: src/admin-views/venue-meta-box.php:25
991
  msgid "%s Name:"
992
  msgstr "%s Navn på stedet:"
993
 
994
+ #: src/views/day/nav.php:16
995
  msgid "Day Navigation"
996
  msgstr "Begivenhedsvisning"
997
 
998
+ #: src/admin-views/new-organizer-meta-section.php:21
999
+ #: src/admin-views/organizer-meta-box.php:31
1000
+ #: src/admin-views/tickets/attendees.php:54
1001
+ #: src/admin-views/venue-meta-box.php:112
1002
+ #: src/functions/advanced-functions/meta_registration.php:159
1003
+ #: src/functions/advanced-functions/meta_registration.php:238
1004
+ #: src/views/modules/meta/organizer.php:41 src/views/modules/meta/venue.php:40
 
1005
  msgid "Phone:"
1006
  msgstr "Telefon:"
1007
 
1008
+ #: src/views/day/single-event.php:66 src/views/list/single-event.php:70
1009
  msgid "Find out more"
1010
  msgstr "Lær mere"
1011
 
1012
+ #: src/admin-views/new-organizer-meta-section.php:27
1013
+ #: src/admin-views/organizer-meta-box.php:37
1014
+ #: src/admin-views/tickets/attendees.php:63
1015
+ #: src/admin-views/venue-meta-box.php:119
1016
+ #: src/functions/advanced-functions/meta_registration.php:96
1017
+ #: src/functions/advanced-functions/meta_registration.php:191
1018
+ #: src/functions/advanced-functions/meta_registration.php:270
1019
+ #: src/views/modules/meta/details.php:125
1020
+ #: src/views/modules/meta/organizer.php:63 src/views/modules/meta/venue.php:45
 
1021
  msgid "Website:"
1022
  msgstr "Hjemmeside:"
1023
 
1024
+ #: src/views/list/nav.php:19
1025
  msgid "%s List Navigation"
1026
  msgstr "%s Liste Navigation"
1027
 
1028
+ #: src/admin-views/new-organizer-meta-section.php:35
1029
+ #: src/admin-views/organizer-meta-box.php:43
1030
+ #: src/functions/advanced-functions/meta_registration.php:254
1031
+ #: src/views/modules/meta/organizer.php:52
1032
  msgid "Email:"
1033
  msgstr "E-mail:"
1034
 
1035
+ #: src/views/list/nav.php:25
1036
  msgid "<span>&laquo;</span> Previous %s"
1037
  msgstr "<span>&laquo;</span> Forrige %s"
1038
 
1039
+ #: src/admin-views/new-organizer-meta-section.php:39
1040
+ #: src/admin-views/organizer-meta-box.php:44
1041
  msgid "You may want to consider <a href=\"http://wordpress.org/plugins/tags/obfuscate\">obfuscating</a> any e-mail address published on your site to best avoid it getting harvested by spammers."
1042
  msgstr "Du skulle måske overveje at <a href=\"http://wordpress.org/plugins/tags/obfuscate\">skjule</a> de e-mail adresser, der er publiceret på dit site for at undgå, at de bliver høstet af spammere."
1043
 
1044
+ #: src/views/list/nav.php:32
1045
  msgid "Next %s <span>&raquo;</span>"
1046
  msgstr "Næste %s <span>&raquo;</span>"
1047
 
1048
+ #: src/admin-views/new-organizer-meta-section.php:69
1049
+ #: src/admin-views/organizer-meta-box.php:75
1050
+ #: src/admin-views/venue-meta-box.php:193
1051
  msgid "%s Name Already Exists"
1052
  msgstr "%s Navnet eksisterer allerede"
1053
 
1054
+ #: src/views/modules/bar.php:30 src/views/modules/bar.php:61
1055
  msgid "Find %s"
1056
  msgstr "Find %s"
1057
 
1058
+ #: src/admin-views/tickets/attendees.php:17
1059
  msgid "Event Summary"
1060
  msgstr "Oversigt"
1061
 
1062
+ #: src/views/modules/bar.php:37
1063
  msgid "Event Views Navigation"
1064
  msgstr "Event views visning"
1065
 
1066
+ #: src/admin-views/tickets/attendees.php:26
1067
  msgid "Event Details"
1068
  msgstr "Detaljer"
1069
 
1070
+ #: src/views/modules/bar.php:38
1071
  msgid "View As"
1072
  msgstr "Vis som"
1073
 
1074
+ #: src/admin-views/tickets/attendees.php:28
1075
  msgid "Start Date / Time:"
1076
  msgstr "Starttidspunkt / dato"
1077
 
1078
+ #: src/views/modules/meta/details.php:119
1079
  msgid "%s Tags:"
1080
  msgstr "%s Tags:"
1081
 
1082
+ #: src/admin-views/tickets/attendees.php:32
1083
  msgid "End Date / Time:"
1084
  msgstr "Sluttidspunkt / dato"
1085
 
1086
+ #: src/functions/template-tags/general.php:1312
1087
  msgid "%s for"
1088
  msgstr "%s for"
1089
 
1090
+ #: src/admin-views/tickets/attendees.php:82
1091
  msgid "Ticket Sales"
1092
  msgstr "Billetsalg"
1093
 
1094
+ #: src/functions/template-tags/general.php:1311
1095
  msgid "Find out more »"
1096
  msgstr "Find ud af mere"
1097
 
1098
+ #: src/admin-views/tickets/attendees.php:99
1099
  msgid "(%d awaiting review)"
1100
  msgid_plural "(%d awaiting review)"
1101
  msgstr[0] "(%d afventer gennemsyn)"
1102
  msgstr[1] "(%d afventer gennemsyn)"
1103
 
1104
+ #: src/views/month/nav.php:18
1105
  msgid "Calendar Month Navigation"
1106
  msgstr "Månedsvisning"
1107
 
1108
+ #: src/views/month/single-day.php:43
 
 
 
 
1109
  msgid "View 1 %1$s"
1110
  msgid_plural "View All %2$s %3$s"
1111
  msgstr[0] "Gennemse 1 %1$s"
1112
  msgstr[1] "Gennemse alle %2$s %3$s"
1113
 
1114
+ #: src/views/single-event.php:27
 
 
 
 
1115
  msgid "&laquo; All %s"
1116
  msgstr "&laquo; Alle %s"
1117
 
1118
+ #: src/admin-views/tickets/attendees.php:127
1119
  msgid "Tickets sold:"
1120
  msgstr "Solgte billetter:"
1121
 
1122
+ #: src/views/single-event.php:46 src/views/single-event.php:79
1123
  msgid "%s Navigation"
1124
  msgstr "%s Navigation"
1125
 
1126
+ #: src/admin-views/tickets/attendees.php:136
1127
  msgid "Finalized:"
1128
  msgstr "Afsluttede:"
1129
 
1130
+ #: src/views/tickets/attendees-email.php:24
1131
  msgid "Attendee List"
1132
  msgstr "Deltagerliste"
1133
 
1134
+ #: src/admin-views/tickets/attendees.php:139
1135
  msgid "Awaiting review:"
1136
  msgstr "Afventer gennemsyn"
1137
 
1138
+ #: src/views/tickets/email.php:26
1139
  msgid "Your tickets"
1140
  msgstr "Dine billetter"
1141
 
1142
+ #: src/admin-views/tickets/attendees.php:148
1143
  msgid "Checked in:"
1144
  msgstr "Tjekket ind:"
1145
 
1146
+ #: src/views/tickets/email.php:309
1147
  msgid "Ticket Type"
1148
  msgstr "Billettype"
1149
 
1150
+ #: src/admin-views/tickets/attendees.php:170
1151
  msgid "Send the attendee list by email"
1152
  msgstr "Send deltagerlisten pr. e-mail"
1153
 
1154
+ #: src/views/tickets/email.php:313
1155
  msgid "Purchaser"
1156
  msgstr "Køber"
1157
 
1158
+ #: src/admin-views/tickets/attendees.php:174
1159
  msgid "Select a User:"
1160
  msgstr "Vælg en bruger:"
1161
 
1162
+ #: src/views/widgets/list-widget.php:65
1163
  msgid "View All %s"
1164
  msgstr "Se alle %s"
1165
 
1166
+ #: src/admin-views/tickets/attendees.php:179
1167
  msgid "Select..."
1168
  msgstr "Vælg..."
1169
 
1170
+ #: src/views/widgets/list-widget.php:71
1171
  msgid "There are no upcoming %s at this time."
1172
  msgstr "Der er ingen kommende %s på dette tidspunkt"
1173
 
1174
+ #: src/admin-views/tickets/attendees.php:184
1175
  msgid "or"
1176
  msgstr "eller"
1177
 
1178
+ #: src/admin-views/tickets/attendees.php:186
1179
  msgid "Email Address:"
1180
  msgstr "E-mailadresse"
1181
 
1182
+ #: src/admin-views/tickets/list.php:21
1183
  msgid "Edit"
1184
  msgstr "Rediger"
1185
 
1186
+ #: src/admin-views/tickets/list.php:24
1187
  msgid "Edit in %s"
1188
  msgstr "Rediger i %s"
1189
 
1190
+ #: src/admin-views/tickets/list.php:27
1191
  msgid "View"
1192
  msgstr "Gå til"
1193
 
1194
+ #: src/admin-views/tickets/list.php:67
1195
  msgid "Sold %d"
1196
  msgstr "Solgt %d"
1197
 
1198
+ #: src/admin-views/tickets/meta-box.php:23
 
 
 
 
1199
  msgid "This event was created using Community Events. Are you sure you want to sell tickets for it?"
1200
  msgstr "Denne begivenhed blev oprettet med Community Events. Er du sikker på at du vil sælge billetter til begivenheden?"
1201
 
1202
+ #: src/admin-views/tickets/meta-box.php:34
1203
  msgid "Upload image for the ticket header"
1204
  msgstr "Upload billede til billettens overskrift"
1205
 
1206
+ #: src/admin-views/tickets/meta-box.php:35
1207
  msgid "The maximum image size in the email will be 580px wide by any height, and then scaled for mobile. If you would like \"retina\" support use an image sized to 1160px wide."
1208
  msgstr "580px i bredden (ingen begrænsninger i højden) anbefales til e-mails og til mobilsurfing. 1160px i bredden anbefales til enheder med \"retina\" skærme."
1209
 
1210
+ #: src/admin-views/tickets/meta-box.php:38
1211
  msgid "Select an Image"
1212
  msgstr "Vælg et billede"
1213
 
1214
+ #: src/admin-views/tickets/meta-box.php:46
1215
  msgid "Remove"
1216
  msgstr "Fjern"
1217
 
1218
+ #: src/admin-views/tickets/meta-box.php:64
1219
+ #: src/admin-views/tickets/meta-box.php:74
1220
  msgid "Add new ticket"
1221
  msgstr "Tilføj ny billet"
1222
 
1223
+ #: src/admin-views/tickets/meta-box.php:75
1224
  msgid "Edit ticket"
1225
  msgstr "Rediger billet"
1226
 
1227
+ #: src/admin-views/tickets/meta-box.php:80
1228
  msgid "Sell using:"
1229
  msgstr "Sælg med:"
1230
 
1231
+ #: src/admin-views/tickets/meta-box.php:97
1232
  msgid "Ticket Name:"
1233
  msgstr "Billetnavn:"
1234
 
1235
+ #: src/admin-views/tickets/meta-box.php:104
1236
  msgid "Ticket Description:"
1237
  msgstr "Billetbeskrivelse:"
1238
 
1239
+ #: src/admin-views/tickets/meta-box.php:113
1240
  msgid "Price:"
1241
  msgstr "Pris:"
1242
 
1243
+ #: src/admin-views/tickets/meta-box.php:119
1244
  msgid "(0 or empty for free tickets)"
1245
  msgstr "(0 eller ikke flere gratis billetter) "
1246
 
1247
+ #: src/admin-views/tickets/meta-box.php:125
1248
  msgid "Sale Price:"
1249
  msgstr "Udsalgspris"
1250
 
1251
+ #: src/admin-views/tickets/meta-box.php:131
1252
  msgid "(Current sale price - this can be managed via the product editor)"
1253
  msgstr "(Nuværende pris - Dette kan ændres vha. produkt editoren)"
1254
 
1255
+ #: src/admin-views/tickets/meta-box.php:137
1256
  msgid "Start sale:"
1257
  msgstr "Åben billetsalg:"
1258
 
1259
+ #: src/admin-views/tickets/meta-box.php:161
1260
  msgid "End sale:"
1261
  msgstr "Afslut billetsalg:"
1262
 
1263
+ #: src/admin-views/tickets/meta-box.php:183
1264
  msgid "When will ticket sales occur? If you don't set a start/end date for sales, tickets will be available from now until the event ends."
1265
  msgstr "Hvornår er billetsalget åbent? "
1266
 
1267
+ #: src/admin-views/tickets/meta-box.php:195
1268
  msgid "Save this ticket"
1269
  msgstr "Gem denne billet"
1270
 
1271
+ #: src/admin-views/tribe-options-display.php:4
1272
  msgid "Default Events Template"
1273
  msgstr "Standardskabelon for begivenheder"
1274
 
1275
+ #: src/admin-views/tribe-options-display.php:5
1276
  msgid "Default Page Template"
1277
  msgstr "Standardskabelon for sider"
1278
 
1279
+ #: src/admin-views/tribe-options-display.php:51
1280
  msgid "Display Settings"
1281
  msgstr "Vis indstillinger"
1282
 
1283
+ #: src/admin-views/tribe-options-display.php:56
1284
  msgid "The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme.</p><p>There are going to be situations where no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications."
1285
  msgstr "Indstillingerne nedenfor styrer visningen af din kalender. Hvis tingene ikke ser rigtige ud, så prøv at skifte mellem de tre \"style sheet\" muligheder eller vælg en side-skabelon fra dit tema. </p> <p> Der vil være situationer, hvor ingen ud-af-boksen skabelon er 100 % perfekt. Tjek vores <a href=\"%s\"> vores themer's guide </a> for instruktioner om brugerdefinerede ændringer."
1286
 
1287
+ #: src/admin-views/tribe-options-display.php:70
1288
  msgid "Basic Template Settings"
1289
  msgstr "Layoutindstillinger"
1290
 
1291
+ #: src/admin-views/tribe-options-display.php:74
1292
  msgid "Default stylesheet used for events templates"
1293
  msgstr "Standardlayout til begivenhedsskabeloner"
1294
 
1295
+ #: src/admin-views/tribe-options-display.php:77
1296
  msgid "Skeleton Styles"
1297
  msgstr "Simple layouts"
1298
 
1299
+ #: src/admin-views/tribe-options-display.php:79
1300
  msgid "Only includes enough css to achieve complex layouts like calendar and week view."
1301
  msgstr "Inkluderer kun tilstrækkelig css til at opnå komplekse layouts såsom kalender- og ugevisning."
1302
 
1303
+ #: src/admin-views/tribe-options-display.php:81
1304
  msgid "Full Styles"
1305
  msgstr "Normale layouts"
1306
 
1307
+ #: src/admin-views/tribe-options-display.php:83
1308
  msgid "More detailed styling, tries to grab styles from your theme."
1309
  msgstr "Mere detaljeret styling, forsøger at bruge styles fra dit theme."
1310
 
1311
+ #: src/admin-views/tribe-options-display.php:85
1312
  msgid "Tribe Events Styles"
1313
  msgstr "Tribe layouts"
1314
 
1315
+ #: src/admin-views/tribe-options-display.php:87
1316
  msgid "A fully designed and styled theme for your events pages."
1317
  msgstr "Et fuldt designet og stylet theme til dine begivenhedssider."
1318
 
1319
+ #: src/admin-views/tribe-options-display.php:94
1320
  msgid "Events template"
1321
  msgstr "Begivenhedsskabelon"
1322
 
1323
+ #: src/admin-views/tribe-options-display.php:95
1324
  msgid "Choose a page template to control the appearance of your calendar and event content."
1325
  msgstr "Vælg en sideskabelon til visning af din kalender og begivenheder"
1326
 
1327
+ #: src/admin-views/tribe-options-display.php:103
1328
  msgid "Enable event views"
1329
  msgstr "Tillad visning af begivenheder"
1330
 
1331
+ #: src/admin-views/tribe-options-display.php:104
1332
  msgid "You must select at least one view."
1333
  msgstr "Vælg mindst én visningstype."
1334
 
1335
+ #: src/admin-views/tribe-options-display.php:111
1336
  msgid "Default view"
1337
  msgstr "Standardvisning"
1338
 
1339
+ #: src/admin-views/tribe-options-display.php:119
1340
  msgid "Disable the Event Search Bar"
1341
  msgstr "Deaktiver begivenhedssøgefeltet"
1342
 
1343
+ #: src/admin-views/tribe-options-display.php:120
1344
  msgid "Check this to use the classic header."
1345
  msgstr "Sæt kryds i denne, hvis du vil bruge det klassiske sidehoved."
1346
 
1347
+ #: src/admin-views/tribe-options-display.php:126
1348
  msgid "Month view events per day"
1349
  msgstr "Månedsvisning begivenheder pr. dag"
1350
 
1351
+ #: src/admin-views/tribe-options-display.php:127
1352
  msgid "Change the default 3 events per day in month view. Please note there may be performance issues if you set this too high. <a href=\"%s\">Read more</a>."
1353
  msgstr "Ændr standarden for 3 begivenhder pr dag i månedsvisning. Bemærk, at der kan være problemer med ydeevnen, hvis du indstiller denne for højt. <a href=\"%s\"> Læs mere </a>."
1354
 
1355
+ #: src/admin-views/tribe-options-display.php:134
1356
  msgid "Enable the Month View Cache"
1357
  msgstr "Aktiver månedsvisning Cache"
1358
 
1359
+ #: src/admin-views/tribe-options-display.php:135
1360
  msgid "Check this to cache your month view HTML in transients, which can help improve calendar speed on sites with many events. <a href=\"%s\">Read more</a>."
1361
  msgstr "Markér denne for at cache din månedsvisning HTML i transienter, hvilket kan hjælpe med at forbedre kalenderhastigheden på sider med mange begivenheder. <a href=\"%s\"> Læs mere </a>."
1362
 
1363
+ #: src/admin-views/tribe-options-display.php:141
1364
  msgid "Date Format Settings"
1365
  msgstr "Generelle indstillinger"
1366
 
1367
+ #: src/admin-views/tribe-options-display.php:145
1368
  msgid "<p>The following three fields accept the date format options available to the php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Learn how to make your own date format here</a>.</p>"
1369
  msgstr "<p>Følgende tre felter accepterer dato format mulighederne som er tilgængelige i php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Her kan du se, hvordqan du laver dine egne dato formater</a>.</p>"
1370
 
1371
+ #: src/admin-views/tribe-options-display.php:149
1372
  msgid "Date with year"
1373
  msgstr "Dato med årsangivelse"
1374
 
1375
+ #: src/admin-views/tribe-options-display.php:150
1376
  msgid "Enter the format to use for displaying dates with the year. Used when showing an event from a past or future year, also used for dates in view headers."
1377
  msgstr "Indtast det format som du ønsker der skal bruges, når der indtastes dato med årsangivelse. Dette bruges når der vises en event fra tidligere år, eller en event fra kommende år. Bliver også brugt til dato visning i overskrifter."
1378
 
1379
+ #: src/admin-views/tribe-options-display.php:157
1380
  msgid "Date without year"
1381
  msgstr "Dato uden årsangivelse"
1382
 
1383
+ #: src/admin-views/tribe-options-display.php:158
1384
  msgid "Enter the format to use for displaying dates without a year. Used when showing an event from the current year."
1385
  msgstr "Indtast det format som du ønsker der skal bruges når der indtastes dato uden årsangivelse. Dette bruges når der vises en event fra det aktuelle år."
1386
 
1387
+ #: src/admin-views/tribe-options-display.php:165
1388
  msgid "Month and year format"
1389
  msgstr "Måned og år format"
1390
 
1391
+ #: src/admin-views/tribe-options-display.php:166
1392
  msgid "Enter the format to use for dates that show a month and year only. Used on month view."
1393
  msgstr "Indtast det format som skal bruges når der skal vises en måned eller en årsangivelse. Bliver brugt ved måneds visning."
1394
 
1395
+ #: src/admin-views/tribe-options-display.php:173
1396
  msgid "Date time separator"
1397
  msgstr "Dato og tid seperator"
1398
 
1399
+ #: src/admin-views/tribe-options-display.php:174
1400
  msgid "Enter the separator that will be placed between the date and time, when both are shown."
1401
  msgstr "Indtast den seperator som skal bruges imellem dato og tidsangivelse, når de begge vises."
1402
 
1403
+ #: src/admin-views/tribe-options-display.php:181
1404
  msgid "Time range separator"
1405
  msgstr "Tidsangivelses seperator"
1406
 
1407
+ #: src/admin-views/tribe-options-display.php:182
1408
  msgid "Enter the separator that will be used between the start and end time of an event."
1409
  msgstr "Tilføj den seperator som der skal bruges imellem start og slut tidspunkt for en event."
1410
 
1411
+ #: src/admin-views/tribe-options-display.php:189
1412
  msgid "Datepicker Date Format"
1413
  msgstr "Dato format"
1414
 
1415
+ #: src/admin-views/tribe-options-display.php:190
1416
  msgid "Select the date format to use in datepickers"
1417
  msgstr "Vælg det dato format som skal bruges når der vælges dato"
1418
 
1419
+ #: src/admin-views/tribe-options-display.php:207
1420
  msgid "Advanced Template Settings"
1421
  msgstr "Advancerede skabelonindstillinger"
1422
 
1423
+ #: src/admin-views/tribe-options-display.php:211
1424
  msgid "Add HTML before event content"
1425
  msgstr "Tilføj HTML før indholdet i begivenheden"
1426
 
1427
+ #: src/admin-views/tribe-options-display.php:212
1428
  msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
1429
  msgstr "Du kan tilføje HTML før begivenheden. Dette kan være en hjælp, hvis layoutet eller visningen skal finjusteres."
1430
 
1431
+ #: src/admin-views/tribe-options-display.php:217
1432
  msgid "Add HTML after event content"
1433
  msgstr "Tilføj HTML efter indholdet i begivenheden"
1434
 
1435
+ #: src/admin-views/tribe-options-display.php:218
1436
  msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
1437
  msgstr "Du kan tilføje HTML efter begivenheden. Dette kan være en hjælp, hvis layoutet eller visningen skal finjusteres."
1438
 
1439
+ #: src/admin-views/tribe-options-general.php:12
1440
  msgid "Finding & extending your calendar."
1441
  msgstr "Find og udvid din kalender."
1442
 
1443
+ #: src/admin-views/tribe-options-general.php:17
1444
  msgid "Finding your calendar."
1445
  msgstr "Find din calendar."
1446
 
1447
+ #: src/admin-views/tribe-options-general.php:22
1448
  msgid "Where's my calendar?"
1449
  msgstr "Hvor er min kalender?"
1450
 
1451
+ #: src/admin-views/tribe-options-general.php:22
1452
  msgid "Right here"
1453
  msgstr "Lige her"
1454
 
1455
+ #: src/admin-views/tribe-options-general.php:26
1456
  msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
1457
  msgstr "Leder du efter yderligere funktionaliteter, såsom gentagende begivenheder, custom meta, community begivenheder og billetsalg?"
1458
 
1459
+ #: src/admin-views/tribe-options-general.php:26
1460
  msgid "Check out the available add-ons"
1461
  msgstr "Se tilgængelige tilføjelser"
1462
 
1463
+ #: src/admin-views/tribe-options-general.php:31
1464
  msgid "We hope our plugin is helping you out."
1465
  msgstr "Vi håber du er glad for vores plugin."
1466
 
1467
+ #: src/admin-views/tribe-options-general.php:35
1468
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
1469
  msgstr "Det bedste vi ved er at få anerkendelse. Hvis du tænker \"Wow, jeg er imponeret! Jeg burde takke Modern Tribe for deres arbejde.\", så tilføj et lille link til The Events Calendar i bunden af din kalender."
1470
 
1471
+ #: src/admin-views/tribe-options-general.php:35
1472
+ #: src/admin-views/tribe-options-general.php:40
1473
  msgid "See an example of the link"
1474
  msgstr "Se eksempel på link"
1475
 
1476
+ #: src/admin-views/tribe-options-general.php:40
1477
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project."
1478
  msgstr "Det bedste vi ved er at få anerkendelse. Hvis du tænker \"Wow, jeg er imponeret! Jeg burde takke Modern Tribe for deres arbejde.\", så tilføj et lille link til The Events Calendar i bunden af din kalender."
1479
 
1480
+ #: src/admin-views/tribe-options-general.php:45
1481
  msgid "Show The Events Calendar link"
1482
  msgstr "Tilføj link til The Events Calendar"
1483
 
1484
+ #: src/admin-views/tribe-options-general.php:59
1485
  msgid "General Settings"
1486
  msgstr "Generelle indstillinger"
1487
 
1488
+ #: src/admin-views/tribe-options-general.php:63
1489
  msgid "Number of events to show per page"
1490
  msgstr "Antal begivenheder pr. side"
1491
 
1492
+ #: src/admin-views/tribe-options-general.php:70
1493
  msgid "Use Javascript to control date filtering"
1494
  msgstr "Brug Javascript til at styre datofiltreringen"
1495
 
1496
+ #: src/admin-views/tribe-options-general.php:71
1497
  msgid "This option is disabled when \"Disable the Event Search Bar\" is checked on the Display settings tab."
1498
  msgstr "Denne valgmulighed er deaktiveret når \"Deaktiver begivenhedssøgefeltet\" er krydset af i Visningsindstillinger fanebladet."
1499
 
1500
+ #: src/admin-views/tribe-options-general.php:71
1501
  msgid "Enable live ajax for datepicker on front end (User submit not required)."
1502
  msgstr "Aktiver live ajax for datovælgeren i front end (Brugerindsendelse ikke påkrævet)"
1503
 
1504
+ #: src/admin-views/tribe-options-general.php:79
1505
  msgid "Show comments"
1506
  msgstr "Vis kommentarer"
1507
 
1508
+ #: src/admin-views/tribe-options-general.php:80
1509
  msgid "Enable comments on event pages."
1510
  msgstr "Tillad kommentarer på begivenheder."
1511
 
1512
+ #: src/admin-views/tribe-options-general.php:86
1513
  msgid "Include events in main blog loop"
1514
  msgstr "Inkluder begivenheder i din blog"
1515
 
1516
+ #: src/admin-views/tribe-options-general.php:87
1517
  msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
1518
  msgstr "Vis begivenheder i din blog sammen med andre indlæg. Begivenheder vil fortsat også kunne vises som normalt."
1519
 
1520
+ #: src/admin-views/tribe-options-general.php:93
1521
+ #: src/admin-views/tribe-options-general.php:99
1522
  msgid "Events URL slug"
1523
  msgstr "Kort link titel"
1524
 
1525
+ #: src/admin-views/tribe-options-general.php:106
1526
+ #: src/functions/template-tags/options.php:20
 
 
 
 
1527
  msgid "The slug used for building the events URL."
1528
  msgstr "Den korte titel bruges som element i begivenhedens link."
1529
 
1530
+ #: src/admin-views/tribe-options-general.php:106
1531
  msgid "Your current events URL is: %s"
1532
  msgstr "Link: %s"
1533
 
1534
+ #: src/admin-views/tribe-options-general.php:111
1535
+ #: src/functions/template-tags/options.php:39
1536
  msgid "Here is the iCal feed URL for your events:"
1537
  msgstr "iCal link til dine begivenheder:"
1538
 
1539
+ #: src/admin-views/tribe-options-general.php:116
1540
  msgid "Single event URL slug"
1541
  msgstr "Link til begivenhed"
1542
 
1543
+ #: src/admin-views/tribe-options-general.php:123
1544
  msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
1545
  msgstr "Ovenstående burde være i flertal, men er i ental. <br /> Linket til din begivenhed er: %s"
1546
 
1547
+ #: src/admin-views/tribe-options-general.php:128
1548
  msgid "End of day cutoff"
1549
  msgstr "Afslutningstidspunkt på dagen"
1550
 
1551
+ #: src/admin-views/tribe-options-general.php:149
1552
  msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
1553
  msgstr "Har du en begivenhed, der løber forbi midnat? Vælg et tidspunkt efter den begivenheds afslutning for at undgå, at begivenheden vises på næste dags kalender."
1554
 
1555
+ #: src/admin-views/tribe-options-general.php:154
1556
  msgid "Default currency symbol"
1557
  msgstr "Standardsymbol for valuta"
1558
 
1559
+ #: src/admin-views/tribe-options-general.php:155
1560
  msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
1561
  msgstr "Indstil standardsymbolet for valuta til prisen for deltagelse i begivenheder. En ændring af denne indstilling påvirker kun fremtidige begivenheder."
1562
 
1563
+ #: src/admin-views/tribe-options-general.php:162
1564
  msgid "Currency symbol follows value"
1565
  msgstr "Møntfodssymbol følger værdi"
1566
 
1567
+ #: src/admin-views/tribe-options-general.php:163
1568
  msgid "The currency symbol normally precedes the value. Enabling this option positions the symbol after the value."
1569
  msgstr "Møntfodssymbolet vises normalt foran værdien. Aktivering af denne valgmulighed viser symbolet efter værdien."
1570
 
1571
+ #: src/admin-views/tribe-options-general.php:169
1572
  msgid "Map Settings"
1573
  msgstr "Kortindstillinger"
1574
 
1575
+ #: src/admin-views/tribe-options-general.php:173
1576
  msgid "Enable Google Maps"
1577
  msgstr "Aktiver Google Maps"
1578
 
1579
+ #: src/admin-views/tribe-options-general.php:174
1580
  msgid "Check to enable maps for events and venues."
1581
  msgstr "Markér for at aktivere kortfunktioner for begivenheder og steder."
1582
 
1583
+ #: src/admin-views/tribe-options-general.php:181
1584
  msgid "Google Maps default zoom level"
1585
  msgstr "Google Maps standard zoom niveau "
1586
 
1587
+ #: src/admin-views/tribe-options-general.php:182
1588
  msgid "0 = zoomed out; 21 = zoomed in."
1589
  msgstr "0 = zoomed ud; 21 = zoomed ind."
1590
 
1591
+ #: src/admin-views/tribe-options-general.php:190
1592
  msgid "Miscellaneous Settings"
1593
  msgstr "Avancerede indstillinger"
1594
 
1595
+ #: src/admin-views/tribe-options-general.php:194
1596
  msgid "Duplicate Venues &amp; Organizers"
1597
  msgstr "Dublering af steder &amp; arrangører"
1598
 
1599
+ #: src/admin-views/tribe-options-general.php:194
1600
  msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
1601
  msgstr "Ved opgradering fra en præ-3.0 version af The Events Calendar kan der ske en dublering af steder og arrangører. Klik denne knap for at fjerne dubletter."
1602
 
1603
+ #: src/admin-views/tribe-options-general.php:211
1604
  msgid "Debug mode"
1605
  msgstr "Debug mode"
1606
 
1607
+ #: src/admin-views/tribe-options-general.php:217
1608
  msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
1609
  msgstr "Debug information gemmes normal i din servers PHP error log. Ønsker du at se debug informationer i din browser, anbefaler vi at du installerer %s og leder efter \"Tribe\" blandt debug informationerne."
1610
 
1611
+ #: src/admin-views/tribe-options-general.php:217
1612
  msgid "Debug Bar Plugin"
1613
  msgstr "Debug Bar Plugin"
1614
 
1615
+ #: src/admin-views/tribe-options-general.php:199
1616
  msgid "View Welcome Page"
1617
  msgstr "Se velkomst-siden"
1618
 
1619
+ #: src/admin-views/tribe-options-general.php:199
1620
  msgid "View the page that displayed when you initially installed the plugin."
1621
  msgstr "Se opdaterings-siden"
1622
 
1623
+ #: src/admin-views/tribe-options-general.php:204
1624
  msgid "View Update Page"
1625
  msgstr "Se opdaterings-siden"
1626
 
1627
+ #: src/admin-views/tribe-options-general.php:204
1628
  msgid "View the page that displayed when you updated the plugin."
1629
  msgstr "Vis siden som du så da du opdaterede vores plugin"
1630
 
1631
+ #: src/admin-views/tribe-options-help.php:33
1632
  msgctxt "not available"
1633
  msgid "n/a"
1634
  msgstr "n/a"
1635
 
1636
+ #: src/admin-views/tribe-options-help.php:34
1637
  msgid "You need to upgrade!"
1638
  msgstr "Opgradering kræves!"
1639
 
1640
+ #: src/admin-views/tribe-options-help.php:34
1641
  msgid "You are up to date!"
1642
  msgstr "Du har den nyeste version!"
1643
 
1644
+ #: src/admin-views/tribe-options-help.php:63
1645
  msgid "The Events Calendar PRO"
1646
  msgstr "The Events Calendar PRO"
1647
 
1648
+ #: src/admin-views/tribe-options-help.php:72
1649
  msgid "The Events Calendar: Eventbrite Tickets"
1650
  msgstr "Eventbrite Tickets "
1651
 
1652
+ #: src/admin-views/tribe-options-help.php:81
1653
  msgid "The Events Calendar: Community Events"
1654
  msgstr "Community Events "
1655
 
1656
+ #: src/Tribe/View_Helpers.php:281
1657
  msgid "Wallis And Futuna Islands"
1658
  msgstr "Wallis And Futuna Islands"
1659
 
1660
+ #: src/admin-views/tribe-options-help.php:90
1661
  msgid "The Events Calendar: Facebook Events"
1662
  msgstr "Facebook Events "
1663
 
1664
+ #: src/Tribe/View_Helpers.php:282
1665
  msgid "Western Sahara"
1666
  msgstr "Western Sahara"
1667
 
1668
+ #: src/admin-views/tribe-options-help.php:99
1669
  msgid "The Events Calendar: WooCommerce Tickets"
1670
  msgstr "The Events Calendar: WooCommerce Tickets"
1671
 
1672
+ #: src/Tribe/View_Helpers.php:283
1673
  msgid "Yemen"
1674
  msgstr "Yemen"
1675
 
1676
+ #: src/admin-views/tribe-options-help.php:109
1677
  msgid "The Events Calendar: EDD Tickets"
1678
  msgstr "The Events Calendar: EDD Tickets"
1679
 
1680
+ #: src/Tribe/View_Helpers.php:284
1681
  msgid "Zambia"
1682
  msgstr "Zambia"
1683
 
1684
+ #: src/admin-views/tribe-options-help.php:119
1685
  msgid "The Events Calendar: WPEC Tickets"
1686
  msgstr "The Events Calendar: WPEC Tickets"
1687
 
1688
+ #: src/Tribe/View_Helpers.php:285
1689
  msgid "Zimbabwe"
1690
  msgstr "Zimbabwe"
1691
 
1692
+ #: src/admin-views/tribe-options-help.php:129
1693
  msgid "The Events Calendar: Shopp Tickets"
1694
  msgstr "The Events Calendar: Shopp Tickets"
1695
 
1696
+ #: src/Tribe/View_Helpers.php:316
1697
  msgid "Alabama"
1698
  msgstr "Alabama"
1699
 
1700
+ #: src/admin-views/tribe-options-help.php:139
1701
  msgid "The Events Calendar: Filter Bar"
1702
  msgstr "The Events Calendar: Filter Bar"
1703
 
1704
+ #: src/Tribe/View_Helpers.php:317
1705
  msgid "Alaska"
1706
  msgstr "Alaska"
1707
 
1708
+ #: src/Tribe/View_Helpers.php:318
1709
  msgid "Arizona"
1710
  msgstr "Arizona"
1711
 
1712
+ #: src/admin-views/tribe-options-help.php:164
1713
  msgid "If this is your first time using The Events Calendar, you're in for a treat and are already well on your way to creating a first event. Here are some basics we've found helpful for users jumping into it for the first time:"
1714
  msgstr "Hvis det er første gang, du bruger The Events Calendar, har du noget at se frem til og er godt på vej til at oprette din første begivenhed. Her er noget basisviden, der har vist sig at være værdifuld for brugere, der hopper ud i det for første gang:"
1715
 
1716
+ #: src/Tribe/View_Helpers.php:319
1717
  msgid "Arkansas"
1718
  msgstr "Arkansas"
1719
 
1720
+ #: src/admin-views/tribe-options-help.php:167
1721
  msgid "%sOur New User Primer%s was designed for folks in your exact position. Featuring both step-by-step videos and written walkthroughs that feature accompanying screenshots, the primer aims to take you from zero to hero in no time."
1722
  msgstr "%sVores nye User Primer%s er designet til folk i din situation. Her finder du både trin-for-trin videoer og skrevne gennemgange med tilhørende screenshots. Primeren sigter mod at flytte dig fra nul til helt på ingen tid."
1723
 
1724
+ #: src/Tribe/View_Helpers.php:320
1725
  msgid "California"
1726
  msgstr "California"
1727
 
1728
+ #: src/admin-views/tribe-options-help.php:169
1729
  msgid "%sInstallation/Setup FAQs%s from our support page can help give an overview of what the plugin can and cannot do. This section of the FAQs may be helpful as it aims to address any basic install questions not addressed by the new user primer."
1730
  msgstr "%sInstallation/Setup FAQs%s fra vores support side kan hjælpe med at give overblik over, hvad plugin'et kan og ikke kan. Denne sektion af FAQ'erne kan være nyttig, da den sigter mod at besvare basale installationsspørgsmål, der ikke besvares i vores nye user primer."
1731
 
1732
+ #: src/Tribe/View_Helpers.php:321
1733
  msgid "Colorado"
1734
  msgstr "Colorado"
1735
 
1736
+ #: src/admin-views/tribe-options-help.php:171
1737
  msgid "Otherwise, if you're feeling adventurous, you can get started by heading to the Events menu and adding your first event."
1738
  msgstr "Ellers, hvis du er eventyrlysten, kan du komme igang ved at gå til begivenheds-menuen og oprette din første begivenhed."
1739
 
1740
+ #: src/Tribe/View_Helpers.php:322
1741
  msgid "Connecticut"
1742
  msgstr "Connecticut"
1743
 
1744
+ #: src/admin-views/tribe-options-help.php:175
1745
  msgid "We've redone our support page from the ground up in an effort to better help our users. Head over to our %sSupport Page%s and you'll find lots of great resources, including:"
1746
  msgstr "Vi har ombygget vores support side fra bunden i et forsøg på bedre at kunne hjælpe vore brugere. Smut hen på vores %ssupport side%s og du vil finde masser af gode ressourcer, herunder:"
1747
 
1748
+ #: src/Tribe/View_Helpers.php:323
1749
  msgid "Delaware"
1750
  msgstr "Delaware"
1751
 
1752
+ #: src/admin-views/tribe-options-help.php:177
1753
  msgid "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar &amp; Events Calendar PRO"
1754
  msgstr "%sTemplate tags, funktioner, hooks og filtre%s The Events Calendar &amp; Events Calendar PRO"
1755
 
1756
+ #: src/Tribe/View_Helpers.php:324
1757
  msgid "District of Columbia"
1758
  msgstr "District of Columbia"
1759
 
1760
+ #: src/admin-views/tribe-options-help.php:179
1761
  msgid "%sFrequently Asked Questions%s ranging from the most basic setup questions to advanced themer tweaks"
1762
  msgstr "%sOfte stillede spørgsmål (FAQ)%s rangerende fra de mest basale opsætningsspørgsmål til avancerede theme-tilrettelser"
1763
 
1764
+ #: src/Tribe/View_Helpers.php:325
1765
  msgid "Florida"
1766
  msgstr "Florida"
1767
 
1768
+ #: src/admin-views/tribe-options-help.php:182
1769
  msgid "%sTutorials%s written by both members of our team and users from the community, covering custom queries, integration with third-party themes and plugins, etc."
1770
  msgstr "%sTutorials%s skrevet af både medlemmer af vores team og brugere fra fællesskabet, der dækker tilpassede forespørgsler, integration til tredjeparts themes og plugins m.m."
1771
 
1772
+ #: src/Tribe/View_Helpers.php:327
1773
  msgid "Hawaii"
1774
  msgstr "Hawaii"
1775
 
1776
+ #: src/admin-views/tribe-options-help.php:184
1777
  msgid "Release notes for painting an overall picture of the plugin's lifecycle and when features/bug fixes were introduced."
1778
  msgstr "Udgivelsesnoter for at male det overordnede billede af plugin'ets livscyklus og hvornår features/fejlrettelser blev introduceret."
1779
 
1780
+ #: src/Tribe/View_Helpers.php:328
1781
  msgid "Id